From a57b6be7057cb17dfa1604935b5ea4baa6e2e10e Mon Sep 17 00:00:00 2001 From: Christian Hartmann Date: Sat, 15 Feb 2025 14:47:37 +0100 Subject: [PATCH] chore: Refactor imports to use the new component paths in Vue files Signed-off-by: Christian Hartmann --- src/Forms.vue | 16 +++++++-------- src/FormsEmptyContent.vue | 6 +++--- src/FormsSettings.vue | 6 +++--- src/FormsSubmit.vue | 2 +- src/components/AppNavigationForm.vue | 12 +++++------ src/components/ArchivedFormsModal.vue | 2 +- src/components/OptionInputDialog.vue | 6 +++--- src/components/PillMenu.vue | 6 +++--- src/components/QRDialog.vue | 2 +- src/components/Questions/AnswerInput.vue | 4 ++-- src/components/Questions/Question.vue | 10 +++++----- src/components/Questions/QuestionDate.vue | 2 +- src/components/Questions/QuestionDropdown.vue | 8 ++++---- src/components/Questions/QuestionFile.vue | 14 ++++++------- src/components/Questions/QuestionMultiple.vue | 14 ++++++------- src/components/Questions/QuestionShort.vue | 6 +++--- src/components/Results/Submission.vue | 4 ++-- .../SidebarTabs/SettingsSidebarTab.vue | 4 ++-- .../SidebarTabs/SharingSearchDiv.vue | 2 +- .../SidebarTabs/SharingShareDiv.vue | 12 +++++------ .../SidebarTabs/SharingSidebarTab.vue | 8 ++++---- .../SidebarTabs/TransferOwnership.vue | 8 ++++---- src/components/TopBar.vue | 2 +- src/views/Create.vue | 12 +++++------ src/views/Results.vue | 20 +++++++++---------- src/views/Sidebar.vue | 4 ++-- src/views/Submit.vue | 14 ++++++------- 27 files changed, 103 insertions(+), 103 deletions(-) diff --git a/src/Forms.vue b/src/Forms.vue index ec98b713d..f2da75d48 100644 --- a/src/Forms.vue +++ b/src/Forms.vue @@ -146,14 +146,14 @@ import axios from '@nextcloud/axios' import moment from '@nextcloud/moment' import { useIsMobile } from '@nextcloud/vue' -import NcAppContent from '@nextcloud/vue/dist/Components/NcAppContent.js' -import NcAppNavigation from '@nextcloud/vue/dist/Components/NcAppNavigation.js' -import NcAppNavigationCaption from '@nextcloud/vue/dist/Components/NcAppNavigationCaption.js' -import NcAppNavigationNew from '@nextcloud/vue/dist/Components/NcAppNavigationNew.js' -import NcButton from '@nextcloud/vue/dist/Components/NcButton.js' -import NcContent from '@nextcloud/vue/dist/Components/NcContent.js' -import NcEmptyContent from '@nextcloud/vue/dist/Components/NcEmptyContent.js' -import NcLoadingIcon from '@nextcloud/vue/dist/Components/NcLoadingIcon.js' +import NcAppContent from '@nextcloud/vue/components/NcAppContent' +import NcAppNavigation from '@nextcloud/vue/components/NcAppNavigation' +import NcAppNavigationCaption from '@nextcloud/vue/components/NcAppNavigationCaption' +import NcAppNavigationNew from '@nextcloud/vue/components/NcAppNavigationNew' +import NcButton from '@nextcloud/vue/components/NcButton' +import NcContent from '@nextcloud/vue/components/NcContent' +import NcEmptyContent from '@nextcloud/vue/components/NcEmptyContent' +import NcLoadingIcon from '@nextcloud/vue/components/NcLoadingIcon' import IconArchive from 'vue-material-design-icons/Archive.vue' import IconPlus from 'vue-material-design-icons/Plus.vue' diff --git a/src/FormsEmptyContent.vue b/src/FormsEmptyContent.vue index 8bf6e7649..e9d771613 100644 --- a/src/FormsEmptyContent.vue +++ b/src/FormsEmptyContent.vue @@ -19,9 +19,9 @@