From 2aca4247c5d0c7061a300517178dd31316b65fab Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Thu, 15 Feb 2024 14:01:30 +0000 Subject: Initial commit --- src/components/Control/Button.vue | 54 ++++++ src/components/Control/Checkbox.vue | 42 +++++ src/components/Control/TrueFalseSwitch.vue | 54 ++++++ .../Category/CategoryChildrenOptionsPanel.vue | 53 ++++++ .../Editor/Category/CategoryOptionsPanel.vue | 54 ++++++ src/components/Editor/EditorOptionsPanel.vue | 18 ++ src/components/Editor/EditorPane.vue | 157 +++++++++++++++++ src/components/Editor/EditorSidebar.vue | 28 +++ src/components/Editor/EditorSidebarCategory.vue | 94 ++++++++++ src/components/Editor/EditorSidebarQuest.vue | 68 ++++++++ src/components/Editor/Quest/QuestOptionsPanel.vue | 154 +++++++++++++++++ .../Editor/Quest/QuestTasksOptionsPanel.vue | 75 ++++++++ .../Editor/Quest/Task/TaskConfiguration.vue | 191 +++++++++++++++++++++ .../Editor/Quest/Task/TaskConfigurationRow.vue | 156 +++++++++++++++++ src/components/Header/SiteHeader.vue | 43 +++++ 15 files changed, 1241 insertions(+) create mode 100644 src/components/Control/Button.vue create mode 100644 src/components/Control/Checkbox.vue create mode 100644 src/components/Control/TrueFalseSwitch.vue create mode 100644 src/components/Editor/Category/CategoryChildrenOptionsPanel.vue create mode 100644 src/components/Editor/Category/CategoryOptionsPanel.vue create mode 100644 src/components/Editor/EditorOptionsPanel.vue create mode 100644 src/components/Editor/EditorPane.vue create mode 100644 src/components/Editor/EditorSidebar.vue create mode 100644 src/components/Editor/EditorSidebarCategory.vue create mode 100644 src/components/Editor/EditorSidebarQuest.vue create mode 100644 src/components/Editor/Quest/QuestOptionsPanel.vue create mode 100644 src/components/Editor/Quest/QuestTasksOptionsPanel.vue create mode 100644 src/components/Editor/Quest/Task/TaskConfiguration.vue create mode 100644 src/components/Editor/Quest/Task/TaskConfigurationRow.vue create mode 100644 src/components/Header/SiteHeader.vue (limited to 'src/components') diff --git a/src/components/Control/Button.vue b/src/components/Control/Button.vue new file mode 100644 index 0000000..044cca1 --- /dev/null +++ b/src/components/Control/Button.vue @@ -0,0 +1,54 @@ + + + + + \ No newline at end of file diff --git a/src/components/Control/Checkbox.vue b/src/components/Control/Checkbox.vue new file mode 100644 index 0000000..e0325e7 --- /dev/null +++ b/src/components/Control/Checkbox.vue @@ -0,0 +1,42 @@ + + + + + \ No newline at end of file diff --git a/src/components/Control/TrueFalseSwitch.vue b/src/components/Control/TrueFalseSwitch.vue new file mode 100644 index 0000000..a0a3392 --- /dev/null +++ b/src/components/Control/TrueFalseSwitch.vue @@ -0,0 +1,54 @@ + + + + + \ No newline at end of file diff --git a/src/components/Editor/Category/CategoryChildrenOptionsPanel.vue b/src/components/Editor/Category/CategoryChildrenOptionsPanel.vue new file mode 100644 index 0000000..6e96f64 --- /dev/null +++ b/src/components/Editor/Category/CategoryChildrenOptionsPanel.vue @@ -0,0 +1,53 @@ + + + + + + diff --git a/src/components/Editor/Category/CategoryOptionsPanel.vue b/src/components/Editor/Category/CategoryOptionsPanel.vue new file mode 100644 index 0000000..f7d548c --- /dev/null +++ b/src/components/Editor/Category/CategoryOptionsPanel.vue @@ -0,0 +1,54 @@ + + + + + + diff --git a/src/components/Editor/EditorOptionsPanel.vue b/src/components/Editor/EditorOptionsPanel.vue new file mode 100644 index 0000000..1415d84 --- /dev/null +++ b/src/components/Editor/EditorOptionsPanel.vue @@ -0,0 +1,18 @@ + + + + + \ No newline at end of file diff --git a/src/components/Editor/EditorPane.vue b/src/components/Editor/EditorPane.vue new file mode 100644 index 0000000..6245e56 --- /dev/null +++ b/src/components/Editor/EditorPane.vue @@ -0,0 +1,157 @@ + + + + + \ No newline at end of file diff --git a/src/components/Editor/EditorSidebar.vue b/src/components/Editor/EditorSidebar.vue new file mode 100644 index 0000000..c9539fa --- /dev/null +++ b/src/components/Editor/EditorSidebar.vue @@ -0,0 +1,28 @@ + + + + + \ No newline at end of file diff --git a/src/components/Editor/EditorSidebarCategory.vue b/src/components/Editor/EditorSidebarCategory.vue new file mode 100644 index 0000000..932b36b --- /dev/null +++ b/src/components/Editor/EditorSidebarCategory.vue @@ -0,0 +1,94 @@ + + + + + \ No newline at end of file diff --git a/src/components/Editor/EditorSidebarQuest.vue b/src/components/Editor/EditorSidebarQuest.vue new file mode 100644 index 0000000..08f1625 --- /dev/null +++ b/src/components/Editor/EditorSidebarQuest.vue @@ -0,0 +1,68 @@ + + + + + \ No newline at end of file diff --git a/src/components/Editor/Quest/QuestOptionsPanel.vue b/src/components/Editor/Quest/QuestOptionsPanel.vue new file mode 100644 index 0000000..3495d60 --- /dev/null +++ b/src/components/Editor/Quest/QuestOptionsPanel.vue @@ -0,0 +1,154 @@ + + + + + + diff --git a/src/components/Editor/Quest/QuestTasksOptionsPanel.vue b/src/components/Editor/Quest/QuestTasksOptionsPanel.vue new file mode 100644 index 0000000..12b1263 --- /dev/null +++ b/src/components/Editor/Quest/QuestTasksOptionsPanel.vue @@ -0,0 +1,75 @@ + + + + + + + diff --git a/src/components/Editor/Quest/Task/TaskConfiguration.vue b/src/components/Editor/Quest/Task/TaskConfiguration.vue new file mode 100644 index 0000000..5c6613a --- /dev/null +++ b/src/components/Editor/Quest/Task/TaskConfiguration.vue @@ -0,0 +1,191 @@ + + + + + + diff --git a/src/components/Editor/Quest/Task/TaskConfigurationRow.vue b/src/components/Editor/Quest/Task/TaskConfigurationRow.vue new file mode 100644 index 0000000..fb872a8 --- /dev/null +++ b/src/components/Editor/Quest/Task/TaskConfigurationRow.vue @@ -0,0 +1,156 @@ + + + + + \ No newline at end of file diff --git a/src/components/Header/SiteHeader.vue b/src/components/Header/SiteHeader.vue new file mode 100644 index 0000000..f51e970 --- /dev/null +++ b/src/components/Header/SiteHeader.vue @@ -0,0 +1,43 @@ + + + \ No newline at end of file -- cgit v1.2.3-70-g09d2