From 71e4ad2c71efea471923ea47f01bfda841387f81 Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Sun, 10 Mar 2024 01:31:42 +0000 Subject: Use nuxt auto import magic --- components/editor/OptionsPanel.vue | 18 ++ components/editor/Sidebar.vue | 28 +++ components/editor/SidebarCategory.vue | 95 ++++++++++ components/editor/SidebarQuest.vue | 68 ++++++++ .../editor/category/ChildrenOptionsPanel.vue | 51 ++++++ components/editor/category/OptionsPanel.vue | 52 ++++++ components/editor/quest/OptionsPanel.vue | 131 ++++++++++++++ components/editor/quest/TasksOptionsPanel.vue | 84 +++++++++ components/editor/quest/modal/Delete.vue | 30 ++++ components/editor/quest/modal/Duplicate.vue | 58 +++++++ components/editor/quest/modal/Rename.vue | 58 +++++++ components/editor/task/Configuration.vue | 182 +++++++++++++++++++ components/editor/task/ConfigurationRow.vue | 193 +++++++++++++++++++++ components/editor/task/modal/Change.vue | 61 +++++++ components/editor/task/modal/Create.vue | 75 ++++++++ 15 files changed, 1184 insertions(+) create mode 100644 components/editor/OptionsPanel.vue create mode 100644 components/editor/Sidebar.vue create mode 100644 components/editor/SidebarCategory.vue create mode 100644 components/editor/SidebarQuest.vue create mode 100644 components/editor/category/ChildrenOptionsPanel.vue create mode 100644 components/editor/category/OptionsPanel.vue create mode 100644 components/editor/quest/OptionsPanel.vue create mode 100644 components/editor/quest/TasksOptionsPanel.vue create mode 100644 components/editor/quest/modal/Delete.vue create mode 100644 components/editor/quest/modal/Duplicate.vue create mode 100644 components/editor/quest/modal/Rename.vue create mode 100644 components/editor/task/Configuration.vue create mode 100644 components/editor/task/ConfigurationRow.vue create mode 100644 components/editor/task/modal/Change.vue create mode 100644 components/editor/task/modal/Create.vue (limited to 'components/editor') diff --git a/components/editor/OptionsPanel.vue b/components/editor/OptionsPanel.vue new file mode 100644 index 0000000..1415d84 --- /dev/null +++ b/components/editor/OptionsPanel.vue @@ -0,0 +1,18 @@ + + + + + \ No newline at end of file diff --git a/components/editor/Sidebar.vue b/components/editor/Sidebar.vue new file mode 100644 index 0000000..a46cdbe --- /dev/null +++ b/components/editor/Sidebar.vue @@ -0,0 +1,28 @@ + + + + + \ No newline at end of file diff --git a/components/editor/SidebarCategory.vue b/components/editor/SidebarCategory.vue new file mode 100644 index 0000000..3e0db9b --- /dev/null +++ b/components/editor/SidebarCategory.vue @@ -0,0 +1,95 @@ + + + + + \ No newline at end of file diff --git a/components/editor/SidebarQuest.vue b/components/editor/SidebarQuest.vue new file mode 100644 index 0000000..a7b3e3f --- /dev/null +++ b/components/editor/SidebarQuest.vue @@ -0,0 +1,68 @@ + + + + + \ No newline at end of file diff --git a/components/editor/category/ChildrenOptionsPanel.vue b/components/editor/category/ChildrenOptionsPanel.vue new file mode 100644 index 0000000..57dcef2 --- /dev/null +++ b/components/editor/category/ChildrenOptionsPanel.vue @@ -0,0 +1,51 @@ + + + + + diff --git a/components/editor/category/OptionsPanel.vue b/components/editor/category/OptionsPanel.vue new file mode 100644 index 0000000..112b063 --- /dev/null +++ b/components/editor/category/OptionsPanel.vue @@ -0,0 +1,52 @@ + + + + + diff --git a/components/editor/quest/OptionsPanel.vue b/components/editor/quest/OptionsPanel.vue new file mode 100644 index 0000000..de32abb --- /dev/null +++ b/components/editor/quest/OptionsPanel.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/components/editor/quest/TasksOptionsPanel.vue b/components/editor/quest/TasksOptionsPanel.vue new file mode 100644 index 0000000..7742408 --- /dev/null +++ b/components/editor/quest/TasksOptionsPanel.vue @@ -0,0 +1,84 @@ + + + + + + diff --git a/components/editor/quest/modal/Delete.vue b/components/editor/quest/modal/Delete.vue new file mode 100644 index 0000000..47c6388 --- /dev/null +++ b/components/editor/quest/modal/Delete.vue @@ -0,0 +1,30 @@ + + + + + \ No newline at end of file diff --git a/components/editor/quest/modal/Duplicate.vue b/components/editor/quest/modal/Duplicate.vue new file mode 100644 index 0000000..e089222 --- /dev/null +++ b/components/editor/quest/modal/Duplicate.vue @@ -0,0 +1,58 @@ + + + + + \ No newline at end of file diff --git a/components/editor/quest/modal/Rename.vue b/components/editor/quest/modal/Rename.vue new file mode 100644 index 0000000..7339219 --- /dev/null +++ b/components/editor/quest/modal/Rename.vue @@ -0,0 +1,58 @@ + + + + + \ No newline at end of file diff --git a/components/editor/task/Configuration.vue b/components/editor/task/Configuration.vue new file mode 100644 index 0000000..f408726 --- /dev/null +++ b/components/editor/task/Configuration.vue @@ -0,0 +1,182 @@ + + + + + diff --git a/components/editor/task/ConfigurationRow.vue b/components/editor/task/ConfigurationRow.vue new file mode 100644 index 0000000..fa512b6 --- /dev/null +++ b/components/editor/task/ConfigurationRow.vue @@ -0,0 +1,193 @@ + + + + + \ No newline at end of file diff --git a/components/editor/task/modal/Change.vue b/components/editor/task/modal/Change.vue new file mode 100644 index 0000000..db7d96b --- /dev/null +++ b/components/editor/task/modal/Change.vue @@ -0,0 +1,61 @@ + + + + + \ No newline at end of file diff --git a/components/editor/task/modal/Create.vue b/components/editor/task/modal/Create.vue new file mode 100644 index 0000000..d286759 --- /dev/null +++ b/components/editor/task/modal/Create.vue @@ -0,0 +1,75 @@ + + + + + \ No newline at end of file -- cgit v1.2.3-70-g09d2