From ec555bad5d08bdb588a8e7ea02ede151c3d33f85 Mon Sep 17 00:00:00 2001 From: RainbowBird Date: Sat, 28 Jun 2025 17:51:09 +0800 Subject: [PATCH] refactor: rename icon-animation (#243) --- .../src/composables/{useIconAnimation.ts => icon-animation.ts} | 0 apps/stage-tamagotchi/src/pages/settings/models/index.vue | 2 +- apps/stage-tamagotchi/src/pages/settings/modules/index.vue | 2 +- apps/stage-tamagotchi/src/pages/settings/providers/index.vue | 2 +- apps/stage-tamagotchi/src/pages/settings/scene/index.vue | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename apps/stage-tamagotchi/src/composables/{useIconAnimation.ts => icon-animation.ts} (100%) diff --git a/apps/stage-tamagotchi/src/composables/useIconAnimation.ts b/apps/stage-tamagotchi/src/composables/icon-animation.ts similarity index 100% rename from apps/stage-tamagotchi/src/composables/useIconAnimation.ts rename to apps/stage-tamagotchi/src/composables/icon-animation.ts diff --git a/apps/stage-tamagotchi/src/pages/settings/models/index.vue b/apps/stage-tamagotchi/src/pages/settings/models/index.vue index 41015d54e..a8da1cdef 100644 --- a/apps/stage-tamagotchi/src/pages/settings/models/index.vue +++ b/apps/stage-tamagotchi/src/pages/settings/models/index.vue @@ -6,7 +6,7 @@ import { ref } from 'vue' import IconAnimation from '../../../components/IconAnimation.vue' import Live2DSettings from '../../../components/Widgets/Live2DSettings.vue' -import { useIconAnimation } from '../../../composables/useIconAnimation' +import { useIconAnimation } from '../../../composables/icon-animation' const live2dContainerRef = ref() const live2dCanvasRef = ref>() diff --git a/apps/stage-tamagotchi/src/pages/settings/modules/index.vue b/apps/stage-tamagotchi/src/pages/settings/modules/index.vue index 990797f70..d9cdc50bc 100644 --- a/apps/stage-tamagotchi/src/pages/settings/modules/index.vue +++ b/apps/stage-tamagotchi/src/pages/settings/modules/index.vue @@ -4,7 +4,7 @@ import { computed } from 'vue' import { useI18n } from 'vue-i18n' import IconAnimation from '../../../components/IconAnimation.vue' -import { useIconAnimation } from '../../../composables/useIconAnimation' +import { useIconAnimation } from '../../../composables/icon-animation' const { t } = useI18n() diff --git a/apps/stage-tamagotchi/src/pages/settings/providers/index.vue b/apps/stage-tamagotchi/src/pages/settings/providers/index.vue index 2fe7e0858..5d129209d 100644 --- a/apps/stage-tamagotchi/src/pages/settings/providers/index.vue +++ b/apps/stage-tamagotchi/src/pages/settings/providers/index.vue @@ -4,7 +4,7 @@ import { useProvidersStore } from '@proj-airi/stage-ui/stores' import { storeToRefs } from 'pinia' import IconAnimation from '../../../components/IconAnimation.vue' -import { useIconAnimation } from '../../../composables/useIconAnimation' +import { useIconAnimation } from '../../../composables/icon-animation' const providersStore = useProvidersStore() const { diff --git a/apps/stage-tamagotchi/src/pages/settings/scene/index.vue b/apps/stage-tamagotchi/src/pages/settings/scene/index.vue index 9723cec7c..678643a38 100644 --- a/apps/stage-tamagotchi/src/pages/settings/scene/index.vue +++ b/apps/stage-tamagotchi/src/pages/settings/scene/index.vue @@ -1,6 +1,6 @@