diff --git a/src/MobileApp.vue b/src/MobileApp.vue index 6847b585..62b6e953 100644 --- a/src/MobileApp.vue +++ b/src/MobileApp.vue @@ -27,7 +27,7 @@ import { getTheme, isEnableAnimate } from '@/lib/settings.ts'; import { initMapProvider } from '@/lib/map/index.ts'; import { isUserLogined, isUserUnlocked } from '@/lib/userstate.ts'; import { setExpenseAndIncomeAmountColor } from '@/lib/ui/common.ts'; -import { isModalShowing, setAppFontSize } from '@/lib/ui/mobile.js'; +import { isModalShowing, setAppFontSize } from '@/lib/ui/mobile.ts'; const { tt, getCurrentLanguageInfo, setLanguage, initLocale } = useI18n(); diff --git a/src/components/mobile/ColorSelectionSheet.vue b/src/components/mobile/ColorSelectionSheet.vue index 3bcb2c9b..d99fc385 100644 --- a/src/components/mobile/ColorSelectionSheet.vue +++ b/src/components/mobile/ColorSelectionSheet.vue @@ -36,7 +36,7 @@ import { useI18n } from '@/locales/helpers.ts'; import type { ColorValue, ColorInfo } from '@/core/color.ts'; import { arrayContainsFieldValue } from '@/lib/common.ts'; import { getColorsInRows } from '@/lib/color.ts'; -import { scrollToSelectedItem } from '@/lib/ui/mobile.js'; +import { scrollToSelectedItem } from '@/lib/ui/mobile.ts'; const props = defineProps<{ modelValue: ColorValue; diff --git a/src/components/mobile/DateTimeSelectionSheet.vue b/src/components/mobile/DateTimeSelectionSheet.vue index f5bd6073..5487d955 100644 --- a/src/components/mobile/DateTimeSelectionSheet.vue +++ b/src/components/mobile/DateTimeSelectionSheet.vue @@ -64,7 +64,7 @@ import { getTimeValues, getCombinedDateAndTimeValues } from '@/lib/datetime.ts'; -import { createInlinePicker } from '@/lib/ui/mobile.js'; +import { createInlinePicker } from '@/lib/ui/mobile.ts'; export default { props: [ diff --git a/src/components/mobile/IconSelectionSheet.vue b/src/components/mobile/IconSelectionSheet.vue index 5c02bc3a..0bb129b4 100644 --- a/src/components/mobile/IconSelectionSheet.vue +++ b/src/components/mobile/IconSelectionSheet.vue @@ -36,7 +36,7 @@ import { useI18n } from '@/locales/helpers.ts'; import type { IconInfo, IconInfoWithId } from '@/core/icon.ts'; import { arrayContainsFieldValue } from '@/lib/common.ts'; import { getIconsInRows } from '@/lib/icon.ts'; -import { scrollToSelectedItem } from '@/lib/ui/mobile.js'; +import { scrollToSelectedItem } from '@/lib/ui/mobile.ts'; const props = defineProps<{ modelValue: string; diff --git a/src/components/mobile/ListItemSelectionSheet.vue b/src/components/mobile/ListItemSelectionSheet.vue index 5d1b1bfc..071aa796 100644 --- a/src/components/mobile/ListItemSelectionSheet.vue +++ b/src/components/mobile/ListItemSelectionSheet.vue @@ -32,7 +32,7 @@