From f28c770a1635a67730c4e469e6c8cc16208c3807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laureline=20Val=C3=A9rie=20David?= Date: Tue, 2 Jul 2024 14:20:29 +0200 Subject: [PATCH] Skeleton for dynamic styles --- components/utils/DynamicStyles.vue | 7 ++++++ components/viewer/StyleObj.vue | 25 +++++++++++++++++++ components/viewer/StyleProject.vue | 16 +++++++++++++ components/viewer/StyleRow.vue | 23 ++++++++++++++++++ components/viewer/ViewProjectRow.vue | 8 ++++++- composables/project.ts | 36 ++++++++++++++++++++++++++++ pages/index.vue | 5 ++-- 7 files changed, 116 insertions(+), 4 deletions(-) create mode 100644 components/utils/DynamicStyles.vue create mode 100644 components/viewer/StyleObj.vue create mode 100644 components/viewer/StyleProject.vue create mode 100644 components/viewer/StyleRow.vue diff --git a/components/utils/DynamicStyles.vue b/components/utils/DynamicStyles.vue new file mode 100644 index 0000000..7a1f5f4 --- /dev/null +++ b/components/utils/DynamicStyles.vue @@ -0,0 +1,7 @@ + + + diff --git a/components/viewer/StyleObj.vue b/components/viewer/StyleObj.vue new file mode 100644 index 0000000..20e8c2c --- /dev/null +++ b/components/viewer/StyleObj.vue @@ -0,0 +1,25 @@ + + + diff --git a/components/viewer/StyleProject.vue b/components/viewer/StyleProject.vue new file mode 100644 index 0000000..ee825c3 --- /dev/null +++ b/components/viewer/StyleProject.vue @@ -0,0 +1,16 @@ + + + diff --git a/components/viewer/StyleRow.vue b/components/viewer/StyleRow.vue new file mode 100644 index 0000000..78844bf --- /dev/null +++ b/components/viewer/StyleRow.vue @@ -0,0 +1,23 @@ + + + diff --git a/components/viewer/ViewProjectRow.vue b/components/viewer/ViewProjectRow.vue index b301946..0404b1f 100644 --- a/components/viewer/ViewProjectRow.vue +++ b/components/viewer/ViewProjectRow.vue @@ -1,5 +1,10 @@