From addf95bc7e1e694cd9ba7797c8b0847bfecaf54c Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Tue, 12 Mar 2024 17:48:23 +0000 Subject: Add nuxt prefixes back to component file names --- components/editor/EditorOptionsPanel.vue | 19 +++ components/editor/EditorSidebar.vue | 103 ++++++++++++ components/editor/EditorSidebarCategory.vue | 95 +++++++++++ .../editor/EditorSidebarMainConfiguration.vue | 57 +++++++ components/editor/EditorSidebarQuest.vue | 68 ++++++++ components/editor/OptionsPanel.vue | 19 --- components/editor/Sidebar.vue | 103 ------------ components/editor/SidebarCategory.vue | 95 ----------- components/editor/SidebarMainConfiguration.vue | 57 ------- components/editor/SidebarQuest.vue | 68 -------- .../editor/category/ChildrenOptionsPanel.vue | 51 ------ .../EditorCategoryChildrenOptionsPanel.vue | 51 ++++++ .../editor/category/EditorCategoryOptionsPanel.vue | 52 ++++++ components/editor/category/OptionsPanel.vue | 52 ------ .../editor/quest/EditorQuestOptionsPanel.vue | 129 ++++++++++++++ .../editor/quest/EditorQuestTasksOptionsPanel.vue | 83 +++++++++ components/editor/quest/OptionsPanel.vue | 129 -------------- components/editor/quest/TasksOptionsPanel.vue | 83 --------- components/editor/quest/modal/Delete.vue | 30 ---- components/editor/quest/modal/Duplicate.vue | 58 ------- .../editor/quest/modal/EditorQuestModalDelete.vue | 30 ++++ .../quest/modal/EditorQuestModalDuplicate.vue | 58 +++++++ .../editor/quest/modal/EditorQuestModalRename.vue | 58 +++++++ .../editor/quest/modal/EditorQuestModalYaml.vue | 59 +++++++ components/editor/quest/modal/Rename.vue | 58 ------- components/editor/quest/modal/Yaml.vue | 59 ------- components/editor/task/Configuration.vue | 184 -------------------- components/editor/task/ConfigurationRow.vue | 185 --------------------- components/editor/task/EditorTaskConfiguration.vue | 184 ++++++++++++++++++++ .../editor/task/EditorTaskConfigurationRow.vue | 185 +++++++++++++++++++++ components/editor/task/modal/Change.vue | 61 ------- components/editor/task/modal/Create.vue | 77 --------- .../editor/task/modal/EditorTaskModalChange.vue | 61 +++++++ .../editor/task/modal/EditorTaskModalCreate.vue | 77 +++++++++ 34 files changed, 1369 insertions(+), 1369 deletions(-) create mode 100644 components/editor/EditorOptionsPanel.vue create mode 100644 components/editor/EditorSidebar.vue create mode 100644 components/editor/EditorSidebarCategory.vue create mode 100644 components/editor/EditorSidebarMainConfiguration.vue create mode 100644 components/editor/EditorSidebarQuest.vue delete mode 100644 components/editor/OptionsPanel.vue delete mode 100644 components/editor/Sidebar.vue delete mode 100644 components/editor/SidebarCategory.vue delete mode 100644 components/editor/SidebarMainConfiguration.vue delete mode 100644 components/editor/SidebarQuest.vue delete mode 100644 components/editor/category/ChildrenOptionsPanel.vue create mode 100644 components/editor/category/EditorCategoryChildrenOptionsPanel.vue create mode 100644 components/editor/category/EditorCategoryOptionsPanel.vue delete mode 100644 components/editor/category/OptionsPanel.vue create mode 100644 components/editor/quest/EditorQuestOptionsPanel.vue create mode 100644 components/editor/quest/EditorQuestTasksOptionsPanel.vue delete mode 100644 components/editor/quest/OptionsPanel.vue delete mode 100644 components/editor/quest/TasksOptionsPanel.vue delete mode 100644 components/editor/quest/modal/Delete.vue delete mode 100644 components/editor/quest/modal/Duplicate.vue create mode 100644 components/editor/quest/modal/EditorQuestModalDelete.vue create mode 100644 components/editor/quest/modal/EditorQuestModalDuplicate.vue create mode 100644 components/editor/quest/modal/EditorQuestModalRename.vue create mode 100644 components/editor/quest/modal/EditorQuestModalYaml.vue delete mode 100644 components/editor/quest/modal/Rename.vue delete mode 100644 components/editor/quest/modal/Yaml.vue delete mode 100644 components/editor/task/Configuration.vue delete mode 100644 components/editor/task/ConfigurationRow.vue create mode 100644 components/editor/task/EditorTaskConfiguration.vue create mode 100644 components/editor/task/EditorTaskConfigurationRow.vue delete mode 100644 components/editor/task/modal/Change.vue delete mode 100644 components/editor/task/modal/Create.vue create mode 100644 components/editor/task/modal/EditorTaskModalChange.vue create mode 100644 components/editor/task/modal/EditorTaskModalCreate.vue diff --git a/components/editor/EditorOptionsPanel.vue b/components/editor/EditorOptionsPanel.vue new file mode 100644 index 0000000..7cf8982 --- /dev/null +++ b/components/editor/EditorOptionsPanel.vue @@ -0,0 +1,19 @@ + + + + + \ No newline at end of file diff --git a/components/editor/EditorSidebar.vue b/components/editor/EditorSidebar.vue new file mode 100644 index 0000000..992dd86 --- /dev/null +++ b/components/editor/EditorSidebar.vue @@ -0,0 +1,103 @@ + + + + + \ No newline at end of file diff --git a/components/editor/EditorSidebarCategory.vue b/components/editor/EditorSidebarCategory.vue new file mode 100644 index 0000000..9dedf33 --- /dev/null +++ b/components/editor/EditorSidebarCategory.vue @@ -0,0 +1,95 @@ + + + + + \ No newline at end of file diff --git a/components/editor/EditorSidebarMainConfiguration.vue b/components/editor/EditorSidebarMainConfiguration.vue new file mode 100644 index 0000000..c4727c6 --- /dev/null +++ b/components/editor/EditorSidebarMainConfiguration.vue @@ -0,0 +1,57 @@ + + + + + \ No newline at end of file diff --git a/components/editor/EditorSidebarQuest.vue b/components/editor/EditorSidebarQuest.vue new file mode 100644 index 0000000..422e8c6 --- /dev/null +++ b/components/editor/EditorSidebarQuest.vue @@ -0,0 +1,68 @@ + + + + + \ No newline at end of file diff --git a/components/editor/OptionsPanel.vue b/components/editor/OptionsPanel.vue deleted file mode 100644 index 7cf8982..0000000 --- a/components/editor/OptionsPanel.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - - - \ No newline at end of file diff --git a/components/editor/Sidebar.vue b/components/editor/Sidebar.vue deleted file mode 100644 index 992dd86..0000000 --- a/components/editor/Sidebar.vue +++ /dev/null @@ -1,103 +0,0 @@ - - - - - \ No newline at end of file diff --git a/components/editor/SidebarCategory.vue b/components/editor/SidebarCategory.vue deleted file mode 100644 index 9dedf33..0000000 --- a/components/editor/SidebarCategory.vue +++ /dev/null @@ -1,95 +0,0 @@ - - - - - \ No newline at end of file diff --git a/components/editor/SidebarMainConfiguration.vue b/components/editor/SidebarMainConfiguration.vue deleted file mode 100644 index c4727c6..0000000 --- a/components/editor/SidebarMainConfiguration.vue +++ /dev/null @@ -1,57 +0,0 @@ - - - - - \ No newline at end of file diff --git a/components/editor/SidebarQuest.vue b/components/editor/SidebarQuest.vue deleted file mode 100644 index 422e8c6..0000000 --- a/components/editor/SidebarQuest.vue +++ /dev/null @@ -1,68 +0,0 @@ - - - - - \ No newline at end of file diff --git a/components/editor/category/ChildrenOptionsPanel.vue b/components/editor/category/ChildrenOptionsPanel.vue deleted file mode 100644 index 57dcef2..0000000 --- a/components/editor/category/ChildrenOptionsPanel.vue +++ /dev/null @@ -1,51 +0,0 @@ - - - - - diff --git a/components/editor/category/EditorCategoryChildrenOptionsPanel.vue b/components/editor/category/EditorCategoryChildrenOptionsPanel.vue new file mode 100644 index 0000000..57dcef2 --- /dev/null +++ b/components/editor/category/EditorCategoryChildrenOptionsPanel.vue @@ -0,0 +1,51 @@ + + + + + diff --git a/components/editor/category/EditorCategoryOptionsPanel.vue b/components/editor/category/EditorCategoryOptionsPanel.vue new file mode 100644 index 0000000..112b063 --- /dev/null +++ b/components/editor/category/EditorCategoryOptionsPanel.vue @@ -0,0 +1,52 @@ + + + + + diff --git a/components/editor/category/OptionsPanel.vue b/components/editor/category/OptionsPanel.vue deleted file mode 100644 index 112b063..0000000 --- a/components/editor/category/OptionsPanel.vue +++ /dev/null @@ -1,52 +0,0 @@ - - - - - diff --git a/components/editor/quest/EditorQuestOptionsPanel.vue b/components/editor/quest/EditorQuestOptionsPanel.vue new file mode 100644 index 0000000..5aaff23 --- /dev/null +++ b/components/editor/quest/EditorQuestOptionsPanel.vue @@ -0,0 +1,129 @@ + + + + + diff --git a/components/editor/quest/EditorQuestTasksOptionsPanel.vue b/components/editor/quest/EditorQuestTasksOptionsPanel.vue new file mode 100644 index 0000000..cb4b109 --- /dev/null +++ b/components/editor/quest/EditorQuestTasksOptionsPanel.vue @@ -0,0 +1,83 @@ + + + + + + diff --git a/components/editor/quest/OptionsPanel.vue b/components/editor/quest/OptionsPanel.vue deleted file mode 100644 index 5aaff23..0000000 --- a/components/editor/quest/OptionsPanel.vue +++ /dev/null @@ -1,129 +0,0 @@ - - - - - diff --git a/components/editor/quest/TasksOptionsPanel.vue b/components/editor/quest/TasksOptionsPanel.vue deleted file mode 100644 index cb4b109..0000000 --- a/components/editor/quest/TasksOptionsPanel.vue +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - diff --git a/components/editor/quest/modal/Delete.vue b/components/editor/quest/modal/Delete.vue deleted file mode 100644 index e81bcc7..0000000 --- a/components/editor/quest/modal/Delete.vue +++ /dev/null @@ -1,30 +0,0 @@ - - - - - \ No newline at end of file diff --git a/components/editor/quest/modal/Duplicate.vue b/components/editor/quest/modal/Duplicate.vue deleted file mode 100644 index 73a2fd0..0000000 --- a/components/editor/quest/modal/Duplicate.vue +++ /dev/null @@ -1,58 +0,0 @@ - - - - - \ No newline at end of file diff --git a/components/editor/quest/modal/EditorQuestModalDelete.vue b/components/editor/quest/modal/EditorQuestModalDelete.vue new file mode 100644 index 0000000..e81bcc7 --- /dev/null +++ b/components/editor/quest/modal/EditorQuestModalDelete.vue @@ -0,0 +1,30 @@ + + + + + \ No newline at end of file diff --git a/components/editor/quest/modal/EditorQuestModalDuplicate.vue b/components/editor/quest/modal/EditorQuestModalDuplicate.vue new file mode 100644 index 0000000..73a2fd0 --- /dev/null +++ b/components/editor/quest/modal/EditorQuestModalDuplicate.vue @@ -0,0 +1,58 @@ + + + + + \ No newline at end of file diff --git a/components/editor/quest/modal/EditorQuestModalRename.vue b/components/editor/quest/modal/EditorQuestModalRename.vue new file mode 100644 index 0000000..3d846aa --- /dev/null +++ b/components/editor/quest/modal/EditorQuestModalRename.vue @@ -0,0 +1,58 @@ + + + + + \ No newline at end of file diff --git a/components/editor/quest/modal/EditorQuestModalYaml.vue b/components/editor/quest/modal/EditorQuestModalYaml.vue new file mode 100644 index 0000000..365055c --- /dev/null +++ b/components/editor/quest/modal/EditorQuestModalYaml.vue @@ -0,0 +1,59 @@ + + +