From 159f1b5a1ad8d9ddbd590622b5d3722152b719f9 Mon Sep 17 00:00:00 2001 From: axolotle Date: Sat, 24 Feb 2024 14:33:11 +0100 Subject: [PATCH] chore: component names to PascalCase --- app/src/App.vue | 70 +++--- app/src/components/AdressInputSelect.vue | 18 +- app/src/components/CardCollapse.vue | 16 +- app/src/components/CardDeckFeed.vue | 2 +- app/src/components/ConfigPanel.vue | 14 +- app/src/components/ConfigPanels.vue | 8 +- app/src/components/MessageListGroup.vue | 10 +- app/src/components/QueryHeader.vue | 8 +- app/src/components/RecursiveListGroup.vue | 22 +- app/src/components/RoutableTabs.vue | 22 +- app/src/components/globals/AbstractForm.vue | 20 +- app/src/components/globals/Breadcrumb.vue | 14 +- app/src/components/globals/Card.vue | 24 +- app/src/components/globals/CardForm.vue | 16 +- app/src/components/globals/DescriptionRow.vue | 12 +- app/src/components/globals/ExplainWhat.vue | 10 +- app/src/components/globals/FormField.vue | 12 +- app/src/components/globals/ReadOnlyField.vue | 12 +- app/src/components/globals/TopBar.vue | 10 +- app/src/components/globals/ViewBase.vue | 10 +- app/src/components/globals/ViewSearch.vue | 24 +- app/src/components/globals/YunoAlert.vue | 8 +- .../components/globals/YunoListGroupItem.vue | 6 +- .../globals/formItems/ButtonItem.vue | 6 +- .../globals/formItems/CheckboxItem.vue | 4 +- .../components/globals/formItems/FileItem.vue | 12 +- .../globals/formItems/InputItem.vue | 2 +- .../globals/formItems/MarkdownItem.vue | 2 +- .../globals/formItems/ReadOnlyAlertItem.vue | 8 +- .../globals/formItems/SelectItem.vue | 2 +- .../components/globals/formItems/TagsItem.vue | 2 +- .../globals/formItems/TagsSelectizeItem.vue | 42 ++-- .../globals/formItems/TextAreaItem.vue | 2 +- .../globals/skeletons/CardButtonsSkeleton.vue | 14 +- .../globals/skeletons/CardFormSkeleton.vue | 30 +-- .../globals/skeletons/CardInfoSkeleton.vue | 22 +- .../globals/skeletons/CardListSkeleton.vue | 18 +- .../globals/skeletons/ListGroupSkeleton.vue | 12 +- app/src/views/Home.vue | 12 +- app/src/views/Login.vue | 12 +- app/src/views/PostInstall.vue | 48 ++-- app/src/views/_partials/DomainForm.vue | 52 ++--- app/src/views/_partials/ErrorDisplay.vue | 18 +- app/src/views/_partials/HistoryConsole.vue | 36 +-- .../views/_partials/ReconnectingDisplay.vue | 22 +- app/src/views/_partials/ViewLockOverlay.vue | 16 +- app/src/views/_partials/WaitingDisplay.vue | 20 +- app/src/views/_partials/WarningDisplay.vue | 10 +- app/src/views/app/AppCatalog.vue | 140 +++++------ app/src/views/app/AppInfo.vue | 220 +++++++++--------- app/src/views/app/AppInstall.vue | 96 ++++---- app/src/views/app/AppList.vue | 20 +- app/src/views/backup/Backup.vue | 10 +- app/src/views/backup/BackupCreate.vue | 52 ++--- app/src/views/backup/BackupInfo.vue | 78 +++---- app/src/views/backup/BackupList.vue | 22 +- app/src/views/diagnosis/Diagnosis.vue | 76 +++--- app/src/views/domain/DomainAdd.vue | 6 +- app/src/views/domain/DomainDns.vue | 38 +-- app/src/views/domain/DomainInfo.vue | 90 +++---- app/src/views/domain/DomainList.vue | 20 +- app/src/views/group/GroupCreate.vue | 6 +- app/src/views/group/GroupList.vue | 72 +++--- app/src/views/service/ServiceInfo.vue | 52 ++--- app/src/views/service/ServiceList.vue | 16 +- app/src/views/tool/ToolFirewall.vue | 64 ++--- app/src/views/tool/ToolList.vue | 12 +- app/src/views/tool/ToolLog.vue | 52 ++--- app/src/views/tool/ToolLogs.vue | 20 +- app/src/views/tool/ToolMigrations.vue | 68 +++--- app/src/views/tool/ToolPower.vue | 24 +- app/src/views/tool/ToolSettings.vue | 8 +- app/src/views/tool/ToolWebadmin.vue | 6 +- app/src/views/update/SystemUpdate.vue | 74 +++--- app/src/views/user/UserCreate.vue | 34 +-- app/src/views/user/UserEdit.vue | 72 +++--- app/src/views/user/UserImport.vue | 10 +- app/src/views/user/UserInfo.vue | 80 +++---- app/src/views/user/UserList.vue | 38 +-- 79 files changed, 1184 insertions(+), 1184 deletions(-) diff --git a/app/src/App.vue b/app/src/App.vue index c751e218..6dfd21b7 100644 --- a/app/src/App.vue +++ b/app/src/App.vue @@ -2,8 +2,8 @@
- - + @@ -13,67 +13,67 @@ YunoHost logo - + - + - - + +
- - + +
- - - - - + + + +
-
+ - +
@@ -209,7 +209,7 @@ main { top: 0; transform: translate(-100vw, 0); } - // hack to hide last transition provoqued by the element change + // hack to hide last transition provoqued by the element change // while disabling the transitions in ToolWebAdmin .static ~ .animated { display: none; diff --git a/app/src/components/AdressInputSelect.vue b/app/src/components/AdressInputSelect.vue index 7a74748a..be38533c 100644 --- a/app/src/components/AdressInputSelect.vue +++ b/app/src/components/AdressInputSelect.vue @@ -1,6 +1,6 @@