nuxt-ignis 0.3.2 → 0.4.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.data/content/contents.sqlite +0 -0
- package/.env +8 -2
- package/.nuxt/app.config.mjs +2 -2
- package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
- package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
- package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
- package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
- package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
- package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
- package/.nuxt/components.d.ts +606 -394
- package/.nuxt/content/components.ts +107 -98
- package/.nuxt/content/database.compressed.mjs +1 -1
- package/.nuxt/content/manifest.ts +6 -6
- package/.nuxt/content/sql_dump.txt +5 -0
- package/.nuxt/content/types.d.ts +8 -0
- package/.nuxt/dev/index.mjs +1598 -550
- package/.nuxt/dev/index.mjs.map +1 -1
- package/.nuxt/dist/server/client.manifest.json +2 -2
- package/.nuxt/dist/server/client.manifest.mjs +2 -2
- package/.nuxt/eslint-typegen.d.ts +256 -225
- package/.nuxt/eslint.config.d.mts +3 -3
- package/.nuxt/eslint.config.mjs +11 -11
- package/.nuxt/imports.d.ts +74 -56
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/mdc-image-component.mjs +1 -1
- package/.nuxt/module/@nuxtjs-sitemap.d.ts +9 -8
- package/.nuxt/module/nuxt-robots.d.ts +37 -7
- package/.nuxt/{modules/@nuxt-scripts.d.ts → module/nuxt-scripts.d.ts} +1 -2
- package/.nuxt/module/nuxt-seo-utils.assets.d.ts +3 -3
- package/.nuxt/module/nuxt-seo-utils.d.ts +20 -6
- package/.nuxt/module/nuxt-site-config.d.ts +8 -8
- package/.nuxt/nitro.json +5 -5
- package/.nuxt/nuxt.d.ts +14 -11
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/tsconfig.json +235 -153
- package/.nuxt/tsconfig.server.json +126 -92
- package/.nuxt/types/app.config.d.ts +2 -2
- package/.nuxt/types/build.d.ts +2 -1
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +413 -318
- package/.nuxt/types/nitro-config.d.ts +2 -2
- package/.nuxt/types/nitro-imports.d.ts +143 -134
- package/.nuxt/types/nitro-nuxt.d.ts +2 -0
- package/.nuxt/types/nitro-routes.d.ts +17 -17
- package/.nuxt/types/plugins.d.ts +35 -34
- package/.nuxt/types/schema.d.ts +360 -36
- package/.nuxt/ui/avatar.ts +1 -1
- package/.nuxt/ui/card.ts +1 -1
- package/.nuxt/ui/carousel.ts +1 -1
- package/.nuxt/ui/command-palette.ts +1 -0
- package/.nuxt/ui/drawer.ts +1 -1
- package/.nuxt/ui/index.ts +2 -0
- package/.nuxt/ui/input-menu.ts +24 -10
- package/.nuxt/ui/input-tags.ts +310 -0
- package/.nuxt/ui/modal.ts +1 -1
- package/.nuxt/ui/navigation-menu.ts +1 -1
- package/.nuxt/ui/select-menu.ts +11 -6
- package/.nuxt/ui/select.ts +11 -6
- package/.nuxt/ui/table.ts +3 -2
- package/.nuxt/ui/timeline.ts +321 -0
- package/.nuxt/ui/toaster.ts +1 -1
- package/.nuxt/ui-image-component.ts +1 -1
- package/app.vue +4 -8
- package/assets/css/ignis-nuxt-ui.css +24 -0
- package/assets/css/{open-props.css → ignis-open-props.css} +1 -1
- package/assets/css/ignis-tailwind.css +23 -0
- package/assets/css/ignis.css +31 -0
- package/bin/make-eslint.js +55 -0
- package/components/CurrentTime.vue +1 -1
- package/components/ignis/IgnisConfig.vue +38 -0
- package/components/{AppFeature.vue → ignis/IgnisFeature.vue} +2 -1
- package/components/ignis/IgnisFeatureList.vue +125 -0
- package/components/ignis/IgnisFooter.vue +2 -2
- package/components/ignis/IgnisHeader.vue +4 -3
- package/components/ignis/IgnisInfo.vue +14 -13
- package/components/ignis/IgnisWelcome.vue +65 -0
- package/composables/useTranslation.ts +18 -9
- package/composables/useValibot.ts +16 -0
- package/composables/useZod.ts +16 -0
- package/features.ts +97 -15
- package/formkit.config.ts +8 -8
- package/i18n/locales/en.json +12 -4
- package/nuxt.config.ts +44 -6
- package/package.json +32 -20
- package/pages/_ignis-config.vue +3 -0
- package/pages/_ignis-info.vue +3 -0
- package/pages/index.vue +4 -6
- package/plugins/errorHandler.ts +26 -0
- package/public/_ignis-config.json +97 -0
- package/test/config/css-multiple.txt +30 -0
- package/test/config/css-nuxt-ui.txt +34 -0
- package/test/config/css-open-props.txt +2307 -0
- package/test/config/css-single.txt +28 -0
- package/test/config/css-tailwind.txt +58 -0
- package/test/config/custom-lang.txt +27 -0
- package/test/config/db-neon.txt +28 -0
- package/test/config/db-supabase.txt +31 -0
- package/test/config/default.txt +27 -0
- package/test/config/equipment-1-composable.txt +33 -0
- package/test/config/equipment-2-plugins.txt +34 -0
- package/test/config/equipment-all.txt +39 -0
- package/test/config/forms-formkit.txt +32 -0
- package/test/config/forms-vueform.txt +28 -0
- package/test/config/i18n.txt +38 -0
- package/test/config/no-default-css.txt +24 -0
- package/test/config/open-props.txt +2306 -0
- package/test/config/seo-ssr-false.txt +35 -0
- package/test/config/ui-nuxt-ui.txt +33 -0
- package/test/config/ui-tailwind.txt +57 -0
- package/test/config.test.ts +162 -0
- package/test/features/charts.txt +4 -0
- package/test/features/custom-css.txt +4 -0
- package/test/features/custom-title.txt +4 -0
- package/test/features/db-neon.txt +3 -2
- package/test/features/db-off.txt +3 -2
- package/test/features/db-supabase.txt +3 -2
- package/test/features/default.txt +3 -2
- package/test/features/disable-core.txt +2 -1
- package/test/features/enable-all.txt +3 -2
- package/test/features/equipment.txt +4 -0
- package/test/features/forms-formkit.txt +3 -2
- package/test/features/forms-off.txt +3 -2
- package/test/features/forms-vueform.txt +3 -2
- package/test/features/no-default-css.txt +4 -0
- package/test/features/regexp.txt +4 -0
- package/test/features/ui-nuxt-ui.txt +3 -2
- package/test/features/ui-off.txt +3 -2
- package/test/features/ui-tailwind.txt +3 -2
- package/test/features/validation-off.txt +4 -0
- package/test/features/validation-valibot.txt +5 -0
- package/test/features/validation-zod.txt +5 -0
- package/test/features.test.ts +84 -0
- package/utils/config/content.ts +35 -0
- package/utils/config/formkit.ts +23 -0
- package/utils/config/vueform.ts +25 -0
- package/utils/consola.ts +23 -13
- package/utils/content.ts +12 -25
- package/utils/formkit.ts +16 -0
- package/utils/vueform.ts +14 -11
- package/vueform.config.ts +3 -5
- package/.nuxt/content/sql_dump +0 -6
- package/app.config.ts +0 -3
- package/assets/css/nuxt-ui.css +0 -16
- package/assets/css/tailwind.css +0 -15
- package/components/AppFeatureList.vue +0 -119
- package/content/second.md +0 -11
- package/pages/ignis.vue +0 -3
- package/pages/second.vue +0 -59
- package/tailwind.config.ts +0 -29
- package/utils/config/content.config.ts +0 -12
- package/utils/config/vueform.config.ts +0 -20
package/.nuxt/types/imports.d.ts
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
// Generated by auto imports
|
|
2
2
|
export {}
|
|
3
3
|
declare global {
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
4
|
+
const CurveType: typeof import('../../node_modules/.pnpm/nuxt-charts@0.1.11_@unovis+_fd218e8e553bc6a6c252f87ba83af80a/node_modules/nuxt-charts/dist/runtime/vue-chrts')['CurveType']
|
|
5
|
+
const LegendPosition: typeof import('../../node_modules/.pnpm/nuxt-charts@0.1.11_@unovis+_fd218e8e553bc6a6c252f87ba83af80a/node_modules/nuxt-charts/dist/runtime/vue-chrts')['LegendPosition']
|
|
6
|
+
const Orientation: typeof import('../../node_modules/.pnpm/nuxt-charts@0.1.11_@unovis+_fd218e8e553bc6a6c252f87ba83af80a/node_modules/nuxt-charts/dist/runtime/vue-chrts')['Orientation']
|
|
7
|
+
const abortNavigation: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['abortNavigation']
|
|
8
|
+
const acceptHMRUpdate: typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['acceptHMRUpdate']
|
|
9
|
+
const addRouteMiddleware: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['addRouteMiddleware']
|
|
10
|
+
const anyOf: typeof import('magic-regexp')['anyOf']
|
|
7
11
|
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
|
|
8
12
|
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
|
|
9
|
-
const avatarGroupInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
10
|
-
const buttonGroupInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
11
|
-
const callOnce: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
12
|
-
const cancelIdleCallback: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
13
|
-
const
|
|
14
|
-
const
|
|
15
|
-
const
|
|
13
|
+
const avatarGroupInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useAvatarGroup')['avatarGroupInjectionKey']
|
|
14
|
+
const buttonGroupInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useButtonGroup')['buttonGroupInjectionKey']
|
|
15
|
+
const callOnce: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/once')['callOnce']
|
|
16
|
+
const cancelIdleCallback: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/compat/idle-callback')['cancelIdleCallback']
|
|
17
|
+
const carriageReturn: typeof import('magic-regexp')['carriageReturn']
|
|
18
|
+
const caseInsensitive: typeof import('magic-regexp')['caseInsensitive']
|
|
19
|
+
const char: typeof import('magic-regexp')['char']
|
|
20
|
+
const charIn: typeof import('magic-regexp')['charIn']
|
|
21
|
+
const charNotIn: typeof import('magic-regexp')['charNotIn']
|
|
22
|
+
const clearError: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['clearError']
|
|
23
|
+
const clearNuxtData: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['clearNuxtData']
|
|
24
|
+
const clearNuxtState: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/state')['clearNuxtState']
|
|
16
25
|
const computed: typeof import('vue')['computed']
|
|
17
26
|
const computedAsync: typeof import('@vueuse/core')['computedAsync']
|
|
18
27
|
const computedEager: typeof import('@vueuse/core')['computedEager']
|
|
@@ -20,88 +29,99 @@ declare global {
|
|
|
20
29
|
const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
|
|
21
30
|
const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
|
|
22
31
|
const controlledRef: typeof import('@vueuse/core')['controlledRef']
|
|
23
|
-
const createError: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
32
|
+
const createError: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['createError']
|
|
24
33
|
const createEventHook: typeof import('@vueuse/core')['createEventHook']
|
|
25
34
|
const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
|
|
26
35
|
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
|
|
27
36
|
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
|
|
28
37
|
const createRef: typeof import('@vueuse/core')['createRef']
|
|
38
|
+
const createRegExp: typeof import('magic-regexp')['createRegExp']
|
|
29
39
|
const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate']
|
|
30
40
|
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
|
|
31
|
-
const createSitePathResolver: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
41
|
+
const createSitePathResolver: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['createSitePathResolver']
|
|
32
42
|
const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise']
|
|
33
43
|
const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
|
|
34
44
|
const customRef: typeof import('vue')['customRef']
|
|
35
45
|
const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
|
|
36
46
|
const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
|
|
37
|
-
const defineAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
47
|
+
const defineAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['defineAppConfig']
|
|
38
48
|
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
|
39
49
|
const defineComponent: typeof import('vue')['defineComponent']
|
|
40
|
-
const
|
|
41
|
-
const
|
|
42
|
-
const
|
|
43
|
-
const
|
|
44
|
-
const
|
|
45
|
-
const
|
|
46
|
-
const
|
|
47
|
-
const
|
|
48
|
-
const
|
|
49
|
-
const
|
|
50
|
-
const
|
|
51
|
-
const
|
|
52
|
-
const
|
|
53
|
-
const
|
|
54
|
-
const
|
|
55
|
-
const
|
|
56
|
-
const
|
|
57
|
-
const
|
|
50
|
+
const defineI18nConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nConfig']
|
|
51
|
+
const defineI18nLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nLocale']
|
|
52
|
+
const defineI18nRoute: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nRoute']
|
|
53
|
+
const defineLocale: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/defineLocale')['defineLocale']
|
|
54
|
+
const defineNuxtComponent: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/component')['defineNuxtComponent']
|
|
55
|
+
const defineNuxtLink: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/components/nuxt-link')['defineNuxtLink']
|
|
56
|
+
const defineNuxtPlugin: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['defineNuxtPlugin']
|
|
57
|
+
const defineNuxtRouteMiddleware: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['defineNuxtRouteMiddleware']
|
|
58
|
+
const defineOgImage: typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.9_@unhead_bf4420914050247538d8522926ae518b/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImage']
|
|
59
|
+
const defineOgImageComponent: typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.9_@unhead_bf4420914050247538d8522926ae518b/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImageComponent']
|
|
60
|
+
const defineOgImageScreenshot: typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.9_@unhead_bf4420914050247538d8522926ae518b/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImageScreenshot']
|
|
61
|
+
const definePageMeta: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/pages/runtime/composables')['definePageMeta']
|
|
62
|
+
const definePayloadPlugin: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['definePayloadPlugin']
|
|
63
|
+
const definePayloadReducer: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['definePayloadReducer']
|
|
64
|
+
const definePayloadReviver: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['definePayloadReviver']
|
|
65
|
+
const defineShortcuts: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/defineShortcuts')['defineShortcuts']
|
|
66
|
+
const defineStore: typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['defineStore']
|
|
67
|
+
const digit: typeof import('magic-regexp')['digit']
|
|
68
|
+
const dotAll: typeof import('magic-regexp')['dotAll']
|
|
58
69
|
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
|
|
59
70
|
const effect: typeof import('vue')['effect']
|
|
60
71
|
const effectScope: typeof import('vue')['effectScope']
|
|
72
|
+
const exactly: typeof import('magic-regexp')['exactly']
|
|
73
|
+
const extendLocale: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/defineLocale')['extendLocale']
|
|
61
74
|
const extendRef: typeof import('@vueuse/core')['extendRef']
|
|
62
|
-
const extractShortcuts: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
63
|
-
const formBusInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
64
|
-
const formFieldInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
65
|
-
const formInputsInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
66
|
-
const formLoadingInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
67
|
-
const formOptionsInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
75
|
+
const extractShortcuts: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/defineShortcuts')['extractShortcuts']
|
|
76
|
+
const formBusInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formBusInjectionKey']
|
|
77
|
+
const formFieldInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formFieldInjectionKey']
|
|
78
|
+
const formInputsInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formInputsInjectionKey']
|
|
79
|
+
const formLoadingInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formLoadingInjectionKey']
|
|
80
|
+
const formOptionsInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formOptionsInjectionKey']
|
|
68
81
|
const formatNeonError: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['formatNeonError']
|
|
69
|
-
const getAppManifest: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
82
|
+
const getAppManifest: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/manifest')['getAppManifest']
|
|
70
83
|
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
71
84
|
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
72
|
-
const getRouteRules: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
85
|
+
const getRouteRules: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/manifest')['getRouteRules']
|
|
86
|
+
const global: typeof import('magic-regexp')['global']
|
|
73
87
|
const h: typeof import('vue')['h']
|
|
74
88
|
const hasInjectionContext: typeof import('vue')['hasInjectionContext']
|
|
75
89
|
const ignisTailwindcssFix: typeof import('../../utils/tailwind')['ignisTailwindcssFix']
|
|
76
90
|
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
|
77
91
|
const initConsola: typeof import('../../utils/consola')['initConsola']
|
|
78
92
|
const inject: typeof import('vue')['inject']
|
|
79
|
-
const injectHead: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
93
|
+
const injectHead: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['injectHead']
|
|
80
94
|
const injectLocal: typeof import('@vueuse/core')['injectLocal']
|
|
81
|
-
const inputIdInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
95
|
+
const inputIdInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['inputIdInjectionKey']
|
|
82
96
|
const isDefined: typeof import('@vueuse/core')['isDefined']
|
|
83
97
|
const isNeonError: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['isNeonError']
|
|
84
98
|
const isNeonSuccess: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['isNeonSuccess']
|
|
85
|
-
const isNuxtError: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
86
|
-
const isPrerendered: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
99
|
+
const isNuxtError: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['isNuxtError']
|
|
100
|
+
const isPrerendered: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['isPrerendered']
|
|
87
101
|
const isProxy: typeof import('vue')['isProxy']
|
|
88
102
|
const isReactive: typeof import('vue')['isReactive']
|
|
89
103
|
const isReadonly: typeof import('vue')['isReadonly']
|
|
90
104
|
const isRef: typeof import('vue')['isRef']
|
|
91
105
|
const isShallow: typeof import('vue')['isShallow']
|
|
92
|
-
const isVue2: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
93
|
-
const isVue3: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
94
|
-
const kbdKeysMap: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
106
|
+
const isVue2: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/compat/vue-demi')['isVue2']
|
|
107
|
+
const isVue3: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/compat/vue-demi')['isVue3']
|
|
108
|
+
const kbdKeysMap: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useKbd')['kbdKeysMap']
|
|
109
|
+
const letter: typeof import('magic-regexp')['letter']
|
|
110
|
+
const linefeed: typeof import('magic-regexp')['linefeed']
|
|
95
111
|
const loadContentConfig: typeof import('../../utils/content')['loadContentConfig']
|
|
96
|
-
const
|
|
97
|
-
const loadPayload: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
98
|
-
const
|
|
112
|
+
const loadFormkitConfig: typeof import('../../utils/formkit')['loadFormkitConfig']
|
|
113
|
+
const loadPayload: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['loadPayload']
|
|
114
|
+
const loadVueformConfig: typeof import('../../utils/vueform')['loadVueformConfig']
|
|
115
|
+
const localeContextInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useLocale')['localeContextInjectionKey']
|
|
99
116
|
const log: typeof import('../../utils/consola')['log']
|
|
100
117
|
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
|
|
101
118
|
const markRaw: typeof import('vue')['markRaw']
|
|
119
|
+
const maybe: typeof import('magic-regexp')['maybe']
|
|
102
120
|
const mergeModels: typeof import('vue')['mergeModels']
|
|
103
|
-
const
|
|
121
|
+
const multiline: typeof import('magic-regexp')['multiline']
|
|
122
|
+
const navigateTo: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['navigateTo']
|
|
104
123
|
const nextTick: typeof import('vue')['nextTick']
|
|
124
|
+
const not: typeof import('magic-regexp')['not']
|
|
105
125
|
const onActivated: typeof import('vue')['onActivated']
|
|
106
126
|
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
|
107
127
|
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
|
|
@@ -115,8 +135,8 @@ declare global {
|
|
|
115
135
|
const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
|
|
116
136
|
const onLongPress: typeof import('@vueuse/core')['onLongPress']
|
|
117
137
|
const onMounted: typeof import('vue')['onMounted']
|
|
118
|
-
const onNuxtReady: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
119
|
-
const onPrehydrate: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
138
|
+
const onNuxtReady: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ready')['onNuxtReady']
|
|
139
|
+
const onPrehydrate: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['onPrehydrate']
|
|
120
140
|
const onRenderTracked: typeof import('vue')['onRenderTracked']
|
|
121
141
|
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
|
|
122
142
|
const onScopeDispose: typeof import('vue')['onScopeDispose']
|
|
@@ -124,22 +144,23 @@ declare global {
|
|
|
124
144
|
const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
|
|
125
145
|
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
126
146
|
const onUpdated: typeof import('vue')['onUpdated']
|
|
147
|
+
const oneOrMore: typeof import('magic-regexp')['oneOrMore']
|
|
127
148
|
const parseMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser')['parseMarkdown']
|
|
128
149
|
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
|
129
|
-
const portalTargetInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
130
|
-
const prefetchComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
131
|
-
const preloadComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
132
|
-
const preloadPayload: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
133
|
-
const preloadRouteComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
134
|
-
const prerenderRoutes: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
150
|
+
const portalTargetInjectionKey: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/usePortal')['portalTargetInjectionKey']
|
|
151
|
+
const prefetchComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preload')['prefetchComponents']
|
|
152
|
+
const preloadComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preload')['preloadComponents']
|
|
153
|
+
const preloadPayload: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['preloadPayload']
|
|
154
|
+
const preloadRouteComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preload')['preloadRouteComponents']
|
|
155
|
+
const prerenderRoutes: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['prerenderRoutes']
|
|
135
156
|
const provide: typeof import('vue')['provide']
|
|
136
157
|
const provideLocal: typeof import('@vueuse/core')['provideLocal']
|
|
137
158
|
const proxyRefs: typeof import('vue')['proxyRefs']
|
|
138
159
|
const pslo: typeof import('../../utils/pslo-utils')['pslo']
|
|
139
|
-
const queryCollection: typeof import('../../node_modules/.pnpm/@nuxt+content@3.
|
|
140
|
-
const queryCollectionItemSurroundings: typeof import('../../node_modules/.pnpm/@nuxt+content@3.
|
|
141
|
-
const queryCollectionNavigation: typeof import('../../node_modules/.pnpm/@nuxt+content@3.
|
|
142
|
-
const queryCollectionSearchSections: typeof import('../../node_modules/.pnpm/@nuxt+content@3.
|
|
160
|
+
const queryCollection: typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app')['queryCollection']
|
|
161
|
+
const queryCollectionItemSurroundings: typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionItemSurroundings']
|
|
162
|
+
const queryCollectionNavigation: typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionNavigation']
|
|
163
|
+
const queryCollectionSearchSections: typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionSearchSections']
|
|
143
164
|
const reactify: typeof import('@vueuse/core')['reactify']
|
|
144
165
|
const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
|
|
145
166
|
const reactive: typeof import('vue')['reactive']
|
|
@@ -153,25 +174,27 @@ declare global {
|
|
|
153
174
|
const refDefault: typeof import('@vueuse/core')['refDefault']
|
|
154
175
|
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
|
155
176
|
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
|
156
|
-
const refreshCookie: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
157
|
-
const refreshNuxtData: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
158
|
-
const reloadNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
159
|
-
const requestIdleCallback: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
177
|
+
const refreshCookie: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/cookie')['refreshCookie']
|
|
178
|
+
const refreshNuxtData: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['refreshNuxtData']
|
|
179
|
+
const reloadNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/chunk')['reloadNuxtApp']
|
|
180
|
+
const requestIdleCallback: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/compat/idle-callback')['requestIdleCallback']
|
|
160
181
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
161
182
|
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
162
183
|
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
163
184
|
const scanI18NSources: typeof import('../../utils/i18n-sources')['scanI18NSources']
|
|
164
185
|
const scanI18Names: typeof import('../../utils/i18n-sources')['scanI18Names']
|
|
165
|
-
const setPageLayout: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
166
|
-
const setResponseStatus: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
186
|
+
const setPageLayout: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['setPageLayout']
|
|
187
|
+
const setResponseStatus: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['setResponseStatus']
|
|
167
188
|
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
168
189
|
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
169
190
|
const shallowRef: typeof import('vue')['shallowRef']
|
|
170
|
-
const showError: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
171
|
-
const
|
|
191
|
+
const showError: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['showError']
|
|
192
|
+
const sticky: typeof import('magic-regexp')['sticky']
|
|
193
|
+
const storeToRefs: typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['storeToRefs']
|
|
172
194
|
const stringifyMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify')['stringifyMarkdown']
|
|
173
195
|
const syncRef: typeof import('@vueuse/core')['syncRef']
|
|
174
196
|
const syncRefs: typeof import('@vueuse/core')['syncRefs']
|
|
197
|
+
const tab: typeof import('magic-regexp')['tab']
|
|
175
198
|
const templateRef: typeof import('@vueuse/core')['templateRef']
|
|
176
199
|
const throttledRef: typeof import('@vueuse/core')['throttledRef']
|
|
177
200
|
const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
|
|
@@ -186,16 +209,17 @@ declare global {
|
|
|
186
209
|
const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted']
|
|
187
210
|
const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
|
|
188
211
|
const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
|
|
189
|
-
const tryUseNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
212
|
+
const tryUseNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['tryUseNuxtApp']
|
|
213
|
+
const unicode: typeof import('magic-regexp')['unicode']
|
|
190
214
|
const unref: typeof import('vue')['unref']
|
|
191
215
|
const unrefElement: typeof import('@vueuse/core')['unrefElement']
|
|
192
216
|
const until: typeof import('@vueuse/core')['until']
|
|
193
217
|
const unwrapSlot: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/utils/node')['flatUnwrap']
|
|
194
|
-
const updateAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
195
|
-
const updateSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
218
|
+
const updateAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/config')['updateAppConfig']
|
|
219
|
+
const updateSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/updateSiteConfig')['updateSiteConfig']
|
|
196
220
|
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
|
197
221
|
const useAnimate: typeof import('@vueuse/core')['useAnimate']
|
|
198
|
-
const useAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
222
|
+
const useAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/config')['useAppConfig']
|
|
199
223
|
const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
|
|
200
224
|
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
|
|
201
225
|
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
|
|
@@ -208,30 +232,31 @@ declare global {
|
|
|
208
232
|
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
|
|
209
233
|
const useArraySome: typeof import('@vueuse/core')['useArraySome']
|
|
210
234
|
const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
|
|
211
|
-
const useAsyncData: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
235
|
+
const useAsyncData: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['useAsyncData']
|
|
212
236
|
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
|
|
213
237
|
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
|
|
214
238
|
const useAttrs: typeof import('vue')['useAttrs']
|
|
215
|
-
const useAvatarGroup: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
239
|
+
const useAvatarGroup: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useAvatarGroup')['useAvatarGroup']
|
|
216
240
|
const useBase64: typeof import('@vueuse/core')['useBase64']
|
|
217
241
|
const useBattery: typeof import('@vueuse/core')['useBattery']
|
|
218
242
|
const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
|
|
219
|
-
const
|
|
243
|
+
const useBotDetection: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.4.0_magica_3de84b4d65efe3da9ef650e630493095/node_modules/@nuxtjs/robots/dist/runtime/app/composables/useBotDetection')['useBotDetection']
|
|
244
|
+
const useBreadcrumbItems: typeof import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.13_magic_5167a9e69abea5d70bb713d54b4fdb44/node_modules/nuxt-seo-utils/dist/runtime/app/composables/useBreadcrumbItems')['useBreadcrumbItems']
|
|
220
245
|
const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
|
|
221
246
|
const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
|
|
222
|
-
const useBrowserLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
247
|
+
const useBrowserLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useBrowserLocale']
|
|
223
248
|
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
|
|
224
|
-
const useButtonGroup: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
249
|
+
const useButtonGroup: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useButtonGroup')['useButtonGroup']
|
|
225
250
|
const useCached: typeof import('@vueuse/core')['useCached']
|
|
226
251
|
const useClipboard: typeof import('@vueuse/core')['useClipboard']
|
|
227
252
|
const useClipboardItems: typeof import('@vueuse/core')['useClipboardItems']
|
|
228
253
|
const useCloned: typeof import('@vueuse/core')['useCloned']
|
|
229
254
|
const useColorMode: typeof import('../../node_modules/.pnpm/@nuxtjs+color-mode@3.5.2_magicast@0.3.5/node_modules/@nuxtjs/color-mode/dist/runtime/composables')['useColorMode']
|
|
230
|
-
const useComponentIcons: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
255
|
+
const useComponentIcons: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useComponentIcons')['useComponentIcons']
|
|
231
256
|
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
|
|
232
|
-
const useCookie: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
233
|
-
const useCookieLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
234
|
-
const useCountdown: typeof import('@
|
|
257
|
+
const useCookie: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/cookie')['useCookie']
|
|
258
|
+
const useCookieLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useCookieLocale']
|
|
259
|
+
const useCountdown: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/composables')['useCountdown']
|
|
235
260
|
const useCounter: typeof import('@vueuse/core')['useCounter']
|
|
236
261
|
const useCssModule: typeof import('vue')['useCssModule']
|
|
237
262
|
const useCssVar: typeof import('@vueuse/core')['useCssVar']
|
|
@@ -251,57 +276,70 @@ declare global {
|
|
|
251
276
|
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
|
252
277
|
const useDraggable: typeof import('@vueuse/core')['useDraggable']
|
|
253
278
|
const useDropZone: typeof import('@vueuse/core')['useDropZone']
|
|
279
|
+
const useEasings: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/composables')['useEasings']
|
|
254
280
|
const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
|
255
281
|
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
|
256
282
|
const useElementHover: typeof import('@vueuse/core')['useElementHover']
|
|
257
283
|
const useElementSize: typeof import('@vueuse/core')['useElementSize']
|
|
258
284
|
const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
|
|
259
|
-
const useError: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
285
|
+
const useError: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['useError']
|
|
260
286
|
const useEventBus: typeof import('@vueuse/core')['useEventBus']
|
|
261
287
|
const useEventListener: typeof import('@vueuse/core')['useEventListener']
|
|
262
288
|
const useEventSource: typeof import('@vueuse/core')['useEventSource']
|
|
263
289
|
const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
|
|
264
290
|
const useFavicon: typeof import('@vueuse/core')['useFavicon']
|
|
265
|
-
const useFetch: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
291
|
+
const useFetch: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/fetch')['useFetch']
|
|
266
292
|
const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
|
|
267
293
|
const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
|
|
268
294
|
const useFocus: typeof import('@vueuse/core')['useFocus']
|
|
269
295
|
const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
|
|
270
|
-
const useFormField: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
296
|
+
const useFormField: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['useFormField']
|
|
271
297
|
const useFps: typeof import('@vueuse/core')['useFps']
|
|
272
298
|
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
|
|
273
299
|
const useGamepad: typeof import('@vueuse/core')['useGamepad']
|
|
274
300
|
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
|
|
275
|
-
const useHead: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
276
|
-
const useHeadSafe: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
277
|
-
const useHydration: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
278
|
-
const useI18n: typeof import('../../node_modules/.pnpm/vue-i18n@10.0.
|
|
301
|
+
const useHead: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useHead']
|
|
302
|
+
const useHeadSafe: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useHeadSafe']
|
|
303
|
+
const useHydration: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/hydrate')['useHydration']
|
|
304
|
+
const useI18n: typeof import('../../node_modules/.pnpm/vue-i18n@10.0.8_vue@3.5.17_typescript@5.8.3_/node_modules/vue-i18n/dist/vue-i18n')['useI18n']
|
|
279
305
|
const useId: typeof import('vue')['useId']
|
|
280
306
|
const useIdle: typeof import('@vueuse/core')['useIdle']
|
|
281
307
|
const useIgnisT: typeof import('../../composables/useTranslation')['useIgnisT']
|
|
282
|
-
const useImage: typeof import('../../node_modules/.pnpm/@nuxt+image@1.10.0_@
|
|
308
|
+
const useImage: typeof import('../../node_modules/.pnpm/@nuxt+image@1.10.0_@netlify_50d57983e0799a62bc0b2b1b9b64ff97/node_modules/@nuxt/image/dist/runtime/composables')['useImage']
|
|
283
309
|
const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
|
|
284
310
|
const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver']
|
|
285
311
|
const useInterval: typeof import('@vueuse/core')['useInterval']
|
|
286
312
|
const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
|
|
287
|
-
const useKbd: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
313
|
+
const useKbd: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useKbd')['useKbd']
|
|
288
314
|
const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
|
|
289
315
|
const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
|
|
290
|
-
const useLazyAsyncData: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
291
|
-
const useLazyFetch: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
316
|
+
const useLazyAsyncData: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['useLazyAsyncData']
|
|
317
|
+
const useLazyFetch: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/fetch')['useLazyFetch']
|
|
292
318
|
const useLink: typeof import('vue-router')['useLink']
|
|
293
|
-
const useLoadingIndicator: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
319
|
+
const useLoadingIndicator: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/loading-indicator')['useLoadingIndicator']
|
|
294
320
|
const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
|
|
295
|
-
const useLocale: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
296
|
-
const useLocaleHead: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
297
|
-
const useLocalePath: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
298
|
-
const useLocaleRoute: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
321
|
+
const useLocale: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useLocale')['useLocale']
|
|
322
|
+
const useLocaleHead: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocaleHead']
|
|
323
|
+
const useLocalePath: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocalePath']
|
|
324
|
+
const useLocaleRoute: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocaleRoute']
|
|
325
|
+
const useMagicAccordion: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicAccordion')['useMagicAccordion']
|
|
326
|
+
const useMagicCommand: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicCommand')['useMagicCommand']
|
|
327
|
+
const useMagicCookie: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicCookie')['useMagicCookie']
|
|
328
|
+
const useMagicDraggable: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicDraggable')['useMagicDraggable']
|
|
329
|
+
const useMagicDrawer: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicDrawer')['useMagicDrawer']
|
|
330
|
+
const useMagicEmitter: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicEmitter')['useMagicEmitter']
|
|
299
331
|
const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
|
|
332
|
+
const useMagicMenu: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicMenu')['useMagicMenu']
|
|
333
|
+
const useMagicModal: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicModal')['useMagicModal']
|
|
334
|
+
const useMagicPie: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicPie')['useMagicPie']
|
|
335
|
+
const useMagicPlayer: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicPlayer')['useMagicPlayer']
|
|
336
|
+
const useMagicToast: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicToast')['useMagicToast']
|
|
300
337
|
const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
|
|
301
338
|
const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
|
|
302
339
|
const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
|
|
303
340
|
const useMemoize: typeof import('@vueuse/core')['useMemoize']
|
|
304
341
|
const useMemory: typeof import('@vueuse/core')['useMemory']
|
|
342
|
+
const useMetaViewport: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/composables')['useMetaViewport']
|
|
305
343
|
const useModel: typeof import('vue')['useModel']
|
|
306
344
|
const useMounted: typeof import('@vueuse/core')['useMounted']
|
|
307
345
|
const useMouse: typeof import('@vueuse/core')['useMouse']
|
|
@@ -311,103 +349,104 @@ declare global {
|
|
|
311
349
|
const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
|
|
312
350
|
const useNeon: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/composables/useNeon')['useNeon']
|
|
313
351
|
const useNetwork: typeof import('@vueuse/core')['useNetwork']
|
|
314
|
-
const useNitroOrigin: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
315
|
-
const useNonce: typeof import('../../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.
|
|
352
|
+
const useNitroOrigin: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/useNitroOrigin')['useNitroOrigin']
|
|
353
|
+
const useNonce: typeof import('../../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.45.1/node_modules/nuxt-security/dist/runtime/composables/nonce')['useNonce']
|
|
316
354
|
const useNow: typeof import('@vueuse/core')['useNow']
|
|
317
|
-
const useNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
318
|
-
const useNuxtData: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
319
|
-
const useNuxtDevTools: typeof import('../../node_modules/.pnpm/@nuxt+devtools@2.
|
|
355
|
+
const useNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['useNuxtApp']
|
|
356
|
+
const useNuxtData: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['useNuxtData']
|
|
357
|
+
const useNuxtDevTools: typeof import('../../node_modules/.pnpm/@nuxt+devtools@2.6.2_vite@6_020cd78f6486b7d96884778659d6ec48/node_modules/@nuxt/devtools/dist/runtime/use-nuxt-devtools')['useNuxtDevTools']
|
|
320
358
|
const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
|
|
321
359
|
const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
|
|
322
360
|
const useOnline: typeof import('@vueuse/core')['useOnline']
|
|
323
|
-
const useOverlay: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
361
|
+
const useOverlay: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useOverlay')['useOverlay']
|
|
324
362
|
const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
|
|
325
363
|
const useParallax: typeof import('@vueuse/core')['useParallax']
|
|
326
364
|
const useParentElement: typeof import('@vueuse/core')['useParentElement']
|
|
327
365
|
const usePerformanceObserver: typeof import('@vueuse/core')['usePerformanceObserver']
|
|
328
366
|
const usePermission: typeof import('@vueuse/core')['usePermission']
|
|
329
|
-
const usePinia: typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.
|
|
367
|
+
const usePinia: typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['usePinia']
|
|
330
368
|
const usePointer: typeof import('@vueuse/core')['usePointer']
|
|
331
369
|
const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
|
|
332
370
|
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
|
|
333
|
-
const usePortal: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
371
|
+
const usePortal: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/usePortal')['usePortal']
|
|
334
372
|
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
|
|
335
373
|
const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
|
|
336
374
|
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
|
|
337
375
|
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
|
|
338
376
|
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
|
|
339
377
|
const usePreferredReducedTransparency: typeof import('@vueuse/core')['usePreferredReducedTransparency']
|
|
340
|
-
const usePreviewMode: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
378
|
+
const usePreviewMode: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preview')['usePreviewMode']
|
|
341
379
|
const usePrevious: typeof import('@vueuse/core')['usePrevious']
|
|
342
380
|
const useRafFn: typeof import('@vueuse/core')['useRafFn']
|
|
343
381
|
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
|
|
344
|
-
const useRequestEvent: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
345
|
-
const useRequestFetch: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
346
|
-
const useRequestHeader: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
347
|
-
const useRequestHeaders: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
348
|
-
const useRequestURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
382
|
+
const useRequestEvent: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useRequestEvent']
|
|
383
|
+
const useRequestFetch: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useRequestFetch']
|
|
384
|
+
const useRequestHeader: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useRequestHeader']
|
|
385
|
+
const useRequestHeaders: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useRequestHeaders']
|
|
386
|
+
const useRequestURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/url')['useRequestURL']
|
|
349
387
|
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
|
|
350
|
-
const useResponseHeader: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
351
|
-
const useRobotsRule: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.
|
|
352
|
-
const useRoute: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
353
|
-
const useRouteAnnouncer: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
354
|
-
const useRouteBaseName: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
355
|
-
const useRouter: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
356
|
-
const useRuntimeConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
357
|
-
const useRuntimeHook: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
388
|
+
const useResponseHeader: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useResponseHeader']
|
|
389
|
+
const useRobotsRule: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.4.0_magica_3de84b4d65efe3da9ef650e630493095/node_modules/@nuxtjs/robots/dist/runtime/app/composables/useRobotsRule')['useRobotsRule']
|
|
390
|
+
const useRoute: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['useRoute']
|
|
391
|
+
const useRouteAnnouncer: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/route-announcer')['useRouteAnnouncer']
|
|
392
|
+
const useRouteBaseName: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useRouteBaseName']
|
|
393
|
+
const useRouter: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['useRouter']
|
|
394
|
+
const useRuntimeConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['useRuntimeConfig']
|
|
395
|
+
const useRuntimeHook: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/runtime-hook')['useRuntimeHook']
|
|
358
396
|
const useSSRWidth: typeof import('@vueuse/core')['useSSRWidth']
|
|
359
397
|
const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
|
|
360
398
|
const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
|
|
361
|
-
const useScript: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
362
|
-
const useScriptClarity: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
363
|
-
const useScriptCloudflareWebAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
364
|
-
const useScriptCrisp: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
365
|
-
const useScriptEventPage: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
366
|
-
const useScriptFathomAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
367
|
-
const useScriptGoogleAdsense: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
368
|
-
const useScriptGoogleAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
369
|
-
const useScriptGoogleMaps: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
370
|
-
const useScriptGoogleTagManager: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
371
|
-
const useScriptHotjar: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
372
|
-
const useScriptIntercom: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
373
|
-
const useScriptLemonSqueezy: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
374
|
-
const useScriptMatomoAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
375
|
-
const useScriptMetaPixel: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
376
|
-
const useScriptNpm: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
377
|
-
const useScriptPlausibleAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
378
|
-
const useScriptRybbitAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
379
|
-
const useScriptSegment: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
380
|
-
const useScriptSnapchatPixel: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
381
|
-
const useScriptStripe: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
399
|
+
const useScript: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/composables/useScript')['useScript']
|
|
400
|
+
const useScriptClarity: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/clarity')['useScriptClarity']
|
|
401
|
+
const useScriptCloudflareWebAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/cloudflare-web-analytics')['useScriptCloudflareWebAnalytics']
|
|
402
|
+
const useScriptCrisp: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/crisp')['useScriptCrisp']
|
|
403
|
+
const useScriptEventPage: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/composables/useScriptEventPage')['useScriptEventPage']
|
|
404
|
+
const useScriptFathomAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/fathom-analytics')['useScriptFathomAnalytics']
|
|
405
|
+
const useScriptGoogleAdsense: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/google-adsense')['useScriptGoogleAdsense']
|
|
406
|
+
const useScriptGoogleAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/google-analytics')['useScriptGoogleAnalytics']
|
|
407
|
+
const useScriptGoogleMaps: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/google-maps')['useScriptGoogleMaps']
|
|
408
|
+
const useScriptGoogleTagManager: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/google-tag-manager')['useScriptGoogleTagManager']
|
|
409
|
+
const useScriptHotjar: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/hotjar')['useScriptHotjar']
|
|
410
|
+
const useScriptIntercom: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/intercom')['useScriptIntercom']
|
|
411
|
+
const useScriptLemonSqueezy: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/lemon-squeezy')['useScriptLemonSqueezy']
|
|
412
|
+
const useScriptMatomoAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/matomo-analytics')['useScriptMatomoAnalytics']
|
|
413
|
+
const useScriptMetaPixel: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/meta-pixel')['useScriptMetaPixel']
|
|
414
|
+
const useScriptNpm: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/npm')['useScriptNpm']
|
|
415
|
+
const useScriptPlausibleAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/plausible-analytics')['useScriptPlausibleAnalytics']
|
|
416
|
+
const useScriptRybbitAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/rybbit-analytics')['useScriptRybbitAnalytics']
|
|
417
|
+
const useScriptSegment: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/segment')['useScriptSegment']
|
|
418
|
+
const useScriptSnapchatPixel: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/snapchat-pixel')['useScriptSnapchatPixel']
|
|
419
|
+
const useScriptStripe: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/stripe')['useScriptStripe']
|
|
382
420
|
const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
|
|
383
|
-
const useScriptTriggerConsent: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
384
|
-
const useScriptTriggerElement: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
385
|
-
const useScriptUmamiAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
386
|
-
const useScriptVimeoPlayer: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
387
|
-
const useScriptXPixel: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
388
|
-
const useScriptYouTubePlayer: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
421
|
+
const useScriptTriggerConsent: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/composables/useScriptTriggerConsent')['useScriptTriggerConsent']
|
|
422
|
+
const useScriptTriggerElement: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/composables/useScriptTriggerElement')['useScriptTriggerElement']
|
|
423
|
+
const useScriptUmamiAnalytics: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/umami-analytics')['useScriptUmamiAnalytics']
|
|
424
|
+
const useScriptVimeoPlayer: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/vimeo-player')['useScriptVimeoPlayer']
|
|
425
|
+
const useScriptXPixel: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/x-pixel')['useScriptXPixel']
|
|
426
|
+
const useScriptYouTubePlayer: typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/youtube-player')['useScriptYouTubePlayer']
|
|
389
427
|
const useScroll: typeof import('@vueuse/core')['useScroll']
|
|
390
428
|
const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
|
|
391
|
-
const
|
|
392
|
-
const
|
|
393
|
-
const
|
|
394
|
-
const
|
|
429
|
+
const useScrollTo: typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/composables')['useScrollTo']
|
|
430
|
+
const useSeoMeta: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useSeoMeta']
|
|
431
|
+
const useServerHead: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useServerHead']
|
|
432
|
+
const useServerHeadSafe: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useServerHeadSafe']
|
|
433
|
+
const useServerSeoMeta: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useServerSeoMeta']
|
|
395
434
|
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
|
|
396
|
-
const useSetI18nParams: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
435
|
+
const useSetI18nParams: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useSetI18nParams']
|
|
397
436
|
const useShadowRoot: typeof import('vue')['useShadowRoot']
|
|
398
437
|
const useShare: typeof import('@vueuse/core')['useShare']
|
|
399
|
-
const useSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
438
|
+
const useSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/useSiteConfig')['useSiteConfig']
|
|
400
439
|
const useSlots: typeof import('vue')['useSlots']
|
|
401
440
|
const useSorted: typeof import('@vueuse/core')['useSorted']
|
|
402
441
|
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
|
|
403
442
|
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
|
|
404
|
-
const useState: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
443
|
+
const useState: typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/state')['useState']
|
|
405
444
|
const useStepper: typeof import('@vueuse/core')['useStepper']
|
|
406
445
|
const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
|
|
407
446
|
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
|
|
408
447
|
const useSupported: typeof import('@vueuse/core')['useSupported']
|
|
409
448
|
const useSwipe: typeof import('@vueuse/core')['useSwipe']
|
|
410
|
-
const useSwitchLocalePath: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
449
|
+
const useSwitchLocalePath: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useSwitchLocalePath']
|
|
411
450
|
const useT: typeof import('../../composables/useTranslation')['useT']
|
|
412
451
|
const useTemplateRef: typeof import('vue')['useTemplateRef']
|
|
413
452
|
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
|
|
@@ -425,7 +464,7 @@ declare global {
|
|
|
425
464
|
const useTitle: typeof import('@vueuse/core')['useTitle']
|
|
426
465
|
const useToNumber: typeof import('@vueuse/core')['useToNumber']
|
|
427
466
|
const useToString: typeof import('@vueuse/core')['useToString']
|
|
428
|
-
const useToast: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
467
|
+
const useToast: typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useToast')['useToast']
|
|
429
468
|
const useToggle: typeof import('@vueuse/core')['useToggle']
|
|
430
469
|
const useTransition: typeof import('@vueuse/core')['useTransition']
|
|
431
470
|
const useTransitionState: typeof import('vue')['useTransitionState']
|
|
@@ -434,6 +473,7 @@ declare global {
|
|
|
434
473
|
const useUserSession: typeof import('../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/app/composables/session')['useUserSession']
|
|
435
474
|
const useVModel: typeof import('@vueuse/core')['useVModel']
|
|
436
475
|
const useVModels: typeof import('@vueuse/core')['useVModels']
|
|
476
|
+
const useValibot: typeof import('../../composables/useValibot')['useValibot']
|
|
437
477
|
const useVibrate: typeof import('@vueuse/core')['useVibrate']
|
|
438
478
|
const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
|
|
439
479
|
const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
|
|
@@ -444,6 +484,7 @@ declare global {
|
|
|
444
484
|
const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus']
|
|
445
485
|
const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
|
|
446
486
|
const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
|
|
487
|
+
const useZod: typeof import('../../composables/useZod')['useZod']
|
|
447
488
|
const watch: typeof import('vue')['watch']
|
|
448
489
|
const watchArray: typeof import('@vueuse/core')['watchArray']
|
|
449
490
|
const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
|
|
@@ -460,14 +501,19 @@ declare global {
|
|
|
460
501
|
const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
|
|
461
502
|
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
|
462
503
|
const whenever: typeof import('@vueuse/core')['whenever']
|
|
504
|
+
const whitespace: typeof import('magic-regexp')['whitespace']
|
|
463
505
|
const withCtx: typeof import('vue')['withCtx']
|
|
464
506
|
const withDirectives: typeof import('vue')['withDirectives']
|
|
507
|
+
const withIndices: typeof import('magic-regexp')['withIndices']
|
|
465
508
|
const withKeys: typeof import('vue')['withKeys']
|
|
466
509
|
const withMemo: typeof import('vue')['withMemo']
|
|
467
510
|
const withModifiers: typeof import('vue')['withModifiers']
|
|
468
511
|
const withScopeId: typeof import('vue')['withScopeId']
|
|
469
|
-
const withSiteTrailingSlash: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
470
|
-
const withSiteUrl: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
512
|
+
const withSiteTrailingSlash: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['withSiteTrailingSlash']
|
|
513
|
+
const withSiteUrl: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['withSiteUrl']
|
|
514
|
+
const word: typeof import('magic-regexp')['word']
|
|
515
|
+
const wordBoundary: typeof import('magic-regexp')['wordBoundary']
|
|
516
|
+
const wordChar: typeof import('magic-regexp')['wordChar']
|
|
471
517
|
}
|
|
472
518
|
// for type re-export
|
|
473
519
|
declare global {
|
|
@@ -475,6 +521,9 @@ declare global {
|
|
|
475
521
|
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
|
|
476
522
|
import('vue')
|
|
477
523
|
// @ts-ignore
|
|
524
|
+
export type { BulletLegendItemInterface } from '../../node_modules/.pnpm/nuxt-charts@0.1.11_@unovis+_fd218e8e553bc6a6c252f87ba83af80a/node_modules/nuxt-charts/dist/runtime/vue-chrts'
|
|
525
|
+
import('../../node_modules/.pnpm/nuxt-charts@0.1.11_@unovis+_fd218e8e553bc6a6c252f87ba83af80a/node_modules/nuxt-charts/dist/runtime/vue-chrts')
|
|
526
|
+
// @ts-ignore
|
|
478
527
|
export type { UIOptions, DBOptions } from '../../utils/ignis-types'
|
|
479
528
|
import('../../utils/ignis-types')
|
|
480
529
|
}
|
|
@@ -482,18 +531,27 @@ declare global {
|
|
|
482
531
|
import { UnwrapRef } from 'vue'
|
|
483
532
|
declare module 'vue' {
|
|
484
533
|
interface ComponentCustomProperties {
|
|
485
|
-
readonly
|
|
486
|
-
readonly
|
|
487
|
-
readonly
|
|
534
|
+
readonly CurveType: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-charts@0.1.11_@unovis+_fd218e8e553bc6a6c252f87ba83af80a/node_modules/nuxt-charts/dist/runtime/vue-chrts')['CurveType']>
|
|
535
|
+
readonly LegendPosition: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-charts@0.1.11_@unovis+_fd218e8e553bc6a6c252f87ba83af80a/node_modules/nuxt-charts/dist/runtime/vue-chrts')['LegendPosition']>
|
|
536
|
+
readonly Orientation: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-charts@0.1.11_@unovis+_fd218e8e553bc6a6c252f87ba83af80a/node_modules/nuxt-charts/dist/runtime/vue-chrts')['Orientation']>
|
|
537
|
+
readonly abortNavigation: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['abortNavigation']>
|
|
538
|
+
readonly acceptHMRUpdate: UnwrapRef<typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['acceptHMRUpdate']>
|
|
539
|
+
readonly addRouteMiddleware: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['addRouteMiddleware']>
|
|
540
|
+
readonly anyOf: UnwrapRef<typeof import('magic-regexp')['anyOf']>
|
|
488
541
|
readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
|
|
489
542
|
readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
|
|
490
|
-
readonly avatarGroupInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
491
|
-
readonly buttonGroupInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
492
|
-
readonly callOnce: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
493
|
-
readonly cancelIdleCallback: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
494
|
-
readonly
|
|
495
|
-
readonly
|
|
496
|
-
readonly
|
|
543
|
+
readonly avatarGroupInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useAvatarGroup')['avatarGroupInjectionKey']>
|
|
544
|
+
readonly buttonGroupInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useButtonGroup')['buttonGroupInjectionKey']>
|
|
545
|
+
readonly callOnce: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/once')['callOnce']>
|
|
546
|
+
readonly cancelIdleCallback: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/compat/idle-callback')['cancelIdleCallback']>
|
|
547
|
+
readonly carriageReturn: UnwrapRef<typeof import('magic-regexp')['carriageReturn']>
|
|
548
|
+
readonly caseInsensitive: UnwrapRef<typeof import('magic-regexp')['caseInsensitive']>
|
|
549
|
+
readonly char: UnwrapRef<typeof import('magic-regexp')['char']>
|
|
550
|
+
readonly charIn: UnwrapRef<typeof import('magic-regexp')['charIn']>
|
|
551
|
+
readonly charNotIn: UnwrapRef<typeof import('magic-regexp')['charNotIn']>
|
|
552
|
+
readonly clearError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['clearError']>
|
|
553
|
+
readonly clearNuxtData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['clearNuxtData']>
|
|
554
|
+
readonly clearNuxtState: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/state')['clearNuxtState']>
|
|
497
555
|
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
|
498
556
|
readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
|
|
499
557
|
readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
|
|
@@ -501,88 +559,99 @@ declare module 'vue' {
|
|
|
501
559
|
readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
|
|
502
560
|
readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
|
|
503
561
|
readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
|
|
504
|
-
readonly createError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
562
|
+
readonly createError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['createError']>
|
|
505
563
|
readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
|
|
506
564
|
readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
|
|
507
565
|
readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
|
|
508
566
|
readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
|
|
509
567
|
readonly createRef: UnwrapRef<typeof import('@vueuse/core')['createRef']>
|
|
568
|
+
readonly createRegExp: UnwrapRef<typeof import('magic-regexp')['createRegExp']>
|
|
510
569
|
readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
|
|
511
570
|
readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
|
|
512
|
-
readonly createSitePathResolver: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
571
|
+
readonly createSitePathResolver: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['createSitePathResolver']>
|
|
513
572
|
readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
|
|
514
573
|
readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
|
|
515
574
|
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
|
516
575
|
readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
|
|
517
576
|
readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
|
|
518
|
-
readonly defineAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
577
|
+
readonly defineAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['defineAppConfig']>
|
|
519
578
|
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
|
520
579
|
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
521
|
-
readonly
|
|
522
|
-
readonly
|
|
523
|
-
readonly
|
|
524
|
-
readonly
|
|
525
|
-
readonly
|
|
526
|
-
readonly
|
|
527
|
-
readonly
|
|
528
|
-
readonly
|
|
529
|
-
readonly
|
|
530
|
-
readonly
|
|
531
|
-
readonly
|
|
532
|
-
readonly
|
|
533
|
-
readonly
|
|
534
|
-
readonly
|
|
535
|
-
readonly
|
|
536
|
-
readonly
|
|
537
|
-
readonly
|
|
538
|
-
readonly
|
|
580
|
+
readonly defineI18nConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nConfig']>
|
|
581
|
+
readonly defineI18nLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nLocale']>
|
|
582
|
+
readonly defineI18nRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nRoute']>
|
|
583
|
+
readonly defineLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/defineLocale')['defineLocale']>
|
|
584
|
+
readonly defineNuxtComponent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/component')['defineNuxtComponent']>
|
|
585
|
+
readonly defineNuxtLink: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/components/nuxt-link')['defineNuxtLink']>
|
|
586
|
+
readonly defineNuxtPlugin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['defineNuxtPlugin']>
|
|
587
|
+
readonly defineNuxtRouteMiddleware: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['defineNuxtRouteMiddleware']>
|
|
588
|
+
readonly defineOgImage: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.9_@unhead_bf4420914050247538d8522926ae518b/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImage']>
|
|
589
|
+
readonly defineOgImageComponent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.9_@unhead_bf4420914050247538d8522926ae518b/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImageComponent']>
|
|
590
|
+
readonly defineOgImageScreenshot: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.9_@unhead_bf4420914050247538d8522926ae518b/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImageScreenshot']>
|
|
591
|
+
readonly definePageMeta: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/pages/runtime/composables')['definePageMeta']>
|
|
592
|
+
readonly definePayloadPlugin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['definePayloadPlugin']>
|
|
593
|
+
readonly definePayloadReducer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['definePayloadReducer']>
|
|
594
|
+
readonly definePayloadReviver: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['definePayloadReviver']>
|
|
595
|
+
readonly defineShortcuts: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/defineShortcuts')['defineShortcuts']>
|
|
596
|
+
readonly defineStore: UnwrapRef<typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['defineStore']>
|
|
597
|
+
readonly digit: UnwrapRef<typeof import('magic-regexp')['digit']>
|
|
598
|
+
readonly dotAll: UnwrapRef<typeof import('magic-regexp')['dotAll']>
|
|
539
599
|
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
|
|
540
600
|
readonly effect: UnwrapRef<typeof import('vue')['effect']>
|
|
541
601
|
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
602
|
+
readonly exactly: UnwrapRef<typeof import('magic-regexp')['exactly']>
|
|
603
|
+
readonly extendLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/defineLocale')['extendLocale']>
|
|
542
604
|
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
543
|
-
readonly extractShortcuts: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
544
|
-
readonly formBusInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
545
|
-
readonly formFieldInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
546
|
-
readonly formInputsInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
547
|
-
readonly formLoadingInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
548
|
-
readonly formOptionsInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
605
|
+
readonly extractShortcuts: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/defineShortcuts')['extractShortcuts']>
|
|
606
|
+
readonly formBusInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formBusInjectionKey']>
|
|
607
|
+
readonly formFieldInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formFieldInjectionKey']>
|
|
608
|
+
readonly formInputsInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formInputsInjectionKey']>
|
|
609
|
+
readonly formLoadingInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formLoadingInjectionKey']>
|
|
610
|
+
readonly formOptionsInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['formOptionsInjectionKey']>
|
|
549
611
|
readonly formatNeonError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['formatNeonError']>
|
|
550
|
-
readonly getAppManifest: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
612
|
+
readonly getAppManifest: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/manifest')['getAppManifest']>
|
|
551
613
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
552
614
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
553
|
-
readonly getRouteRules: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
615
|
+
readonly getRouteRules: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/manifest')['getRouteRules']>
|
|
616
|
+
readonly global: UnwrapRef<typeof import('magic-regexp')['global']>
|
|
554
617
|
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
555
618
|
readonly hasInjectionContext: UnwrapRef<typeof import('vue')['hasInjectionContext']>
|
|
556
619
|
readonly ignisTailwindcssFix: UnwrapRef<typeof import('../../utils/tailwind')['ignisTailwindcssFix']>
|
|
557
620
|
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
|
|
558
621
|
readonly initConsola: UnwrapRef<typeof import('../../utils/consola')['initConsola']>
|
|
559
622
|
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
560
|
-
readonly injectHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
623
|
+
readonly injectHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['injectHead']>
|
|
561
624
|
readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
|
|
562
|
-
readonly inputIdInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
625
|
+
readonly inputIdInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['inputIdInjectionKey']>
|
|
563
626
|
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
|
|
564
627
|
readonly isNeonError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['isNeonError']>
|
|
565
628
|
readonly isNeonSuccess: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['isNeonSuccess']>
|
|
566
|
-
readonly isNuxtError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
567
|
-
readonly isPrerendered: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
629
|
+
readonly isNuxtError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['isNuxtError']>
|
|
630
|
+
readonly isPrerendered: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['isPrerendered']>
|
|
568
631
|
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
|
569
632
|
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
|
570
633
|
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
|
571
634
|
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
|
572
635
|
readonly isShallow: UnwrapRef<typeof import('vue')['isShallow']>
|
|
573
|
-
readonly isVue2: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
574
|
-
readonly isVue3: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
575
|
-
readonly kbdKeysMap: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
636
|
+
readonly isVue2: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/compat/vue-demi')['isVue2']>
|
|
637
|
+
readonly isVue3: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/compat/vue-demi')['isVue3']>
|
|
638
|
+
readonly kbdKeysMap: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useKbd')['kbdKeysMap']>
|
|
639
|
+
readonly letter: UnwrapRef<typeof import('magic-regexp')['letter']>
|
|
640
|
+
readonly linefeed: UnwrapRef<typeof import('magic-regexp')['linefeed']>
|
|
576
641
|
readonly loadContentConfig: UnwrapRef<typeof import('../../utils/content')['loadContentConfig']>
|
|
577
|
-
readonly
|
|
578
|
-
readonly loadPayload: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
579
|
-
readonly
|
|
642
|
+
readonly loadFormkitConfig: UnwrapRef<typeof import('../../utils/formkit')['loadFormkitConfig']>
|
|
643
|
+
readonly loadPayload: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['loadPayload']>
|
|
644
|
+
readonly loadVueformConfig: UnwrapRef<typeof import('../../utils/vueform')['loadVueformConfig']>
|
|
645
|
+
readonly localeContextInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useLocale')['localeContextInjectionKey']>
|
|
580
646
|
readonly log: UnwrapRef<typeof import('../../utils/consola')['log']>
|
|
581
647
|
readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
|
|
582
648
|
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
|
649
|
+
readonly maybe: UnwrapRef<typeof import('magic-regexp')['maybe']>
|
|
583
650
|
readonly mergeModels: UnwrapRef<typeof import('vue')['mergeModels']>
|
|
584
|
-
readonly
|
|
651
|
+
readonly multiline: UnwrapRef<typeof import('magic-regexp')['multiline']>
|
|
652
|
+
readonly navigateTo: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['navigateTo']>
|
|
585
653
|
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
|
654
|
+
readonly not: UnwrapRef<typeof import('magic-regexp')['not']>
|
|
586
655
|
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
|
587
656
|
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
|
588
657
|
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
|
|
@@ -596,8 +665,8 @@ declare module 'vue' {
|
|
|
596
665
|
readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
|
|
597
666
|
readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
|
|
598
667
|
readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
|
|
599
|
-
readonly onNuxtReady: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
600
|
-
readonly onPrehydrate: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
668
|
+
readonly onNuxtReady: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ready')['onNuxtReady']>
|
|
669
|
+
readonly onPrehydrate: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['onPrehydrate']>
|
|
601
670
|
readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
|
|
602
671
|
readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
|
|
603
672
|
readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
|
|
@@ -605,22 +674,23 @@ declare module 'vue' {
|
|
|
605
674
|
readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
|
|
606
675
|
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
|
607
676
|
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
|
677
|
+
readonly oneOrMore: UnwrapRef<typeof import('magic-regexp')['oneOrMore']>
|
|
608
678
|
readonly parseMarkdown: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser')['parseMarkdown']>
|
|
609
679
|
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
|
|
610
|
-
readonly portalTargetInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
611
|
-
readonly prefetchComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
612
|
-
readonly preloadComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
613
|
-
readonly preloadPayload: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
614
|
-
readonly preloadRouteComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
615
|
-
readonly prerenderRoutes: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
680
|
+
readonly portalTargetInjectionKey: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/usePortal')['portalTargetInjectionKey']>
|
|
681
|
+
readonly prefetchComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preload')['prefetchComponents']>
|
|
682
|
+
readonly preloadComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preload')['preloadComponents']>
|
|
683
|
+
readonly preloadPayload: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/payload')['preloadPayload']>
|
|
684
|
+
readonly preloadRouteComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preload')['preloadRouteComponents']>
|
|
685
|
+
readonly prerenderRoutes: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['prerenderRoutes']>
|
|
616
686
|
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
|
617
687
|
readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
|
|
618
688
|
readonly proxyRefs: UnwrapRef<typeof import('vue')['proxyRefs']>
|
|
619
689
|
readonly pslo: UnwrapRef<typeof import('../../utils/pslo-utils')['pslo']>
|
|
620
|
-
readonly queryCollection: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.
|
|
621
|
-
readonly queryCollectionItemSurroundings: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.
|
|
622
|
-
readonly queryCollectionNavigation: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.
|
|
623
|
-
readonly queryCollectionSearchSections: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.
|
|
690
|
+
readonly queryCollection: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app')['queryCollection']>
|
|
691
|
+
readonly queryCollectionItemSurroundings: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionItemSurroundings']>
|
|
692
|
+
readonly queryCollectionNavigation: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionNavigation']>
|
|
693
|
+
readonly queryCollectionSearchSections: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.6.3_better-_66207faae0d6d35cb6d4aa1fb7f4e239/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionSearchSections']>
|
|
624
694
|
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
|
|
625
695
|
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
|
|
626
696
|
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
|
@@ -634,25 +704,27 @@ declare module 'vue' {
|
|
|
634
704
|
readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
|
|
635
705
|
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
|
|
636
706
|
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
|
|
637
|
-
readonly refreshCookie: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
638
|
-
readonly refreshNuxtData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
639
|
-
readonly reloadNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
640
|
-
readonly requestIdleCallback: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
707
|
+
readonly refreshCookie: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/cookie')['refreshCookie']>
|
|
708
|
+
readonly refreshNuxtData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['refreshNuxtData']>
|
|
709
|
+
readonly reloadNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/chunk')['reloadNuxtApp']>
|
|
710
|
+
readonly requestIdleCallback: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/compat/idle-callback')['requestIdleCallback']>
|
|
641
711
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
642
712
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
643
713
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
644
714
|
readonly scanI18NSources: UnwrapRef<typeof import('../../utils/i18n-sources')['scanI18NSources']>
|
|
645
715
|
readonly scanI18Names: UnwrapRef<typeof import('../../utils/i18n-sources')['scanI18Names']>
|
|
646
|
-
readonly setPageLayout: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
647
|
-
readonly setResponseStatus: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
716
|
+
readonly setPageLayout: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['setPageLayout']>
|
|
717
|
+
readonly setResponseStatus: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['setResponseStatus']>
|
|
648
718
|
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
649
719
|
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
650
720
|
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
651
|
-
readonly showError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
652
|
-
readonly
|
|
721
|
+
readonly showError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['showError']>
|
|
722
|
+
readonly sticky: UnwrapRef<typeof import('magic-regexp')['sticky']>
|
|
723
|
+
readonly storeToRefs: UnwrapRef<typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['storeToRefs']>
|
|
653
724
|
readonly stringifyMarkdown: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify')['stringifyMarkdown']>
|
|
654
725
|
readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
|
|
655
726
|
readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
|
|
727
|
+
readonly tab: UnwrapRef<typeof import('magic-regexp')['tab']>
|
|
656
728
|
readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
|
|
657
729
|
readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
|
|
658
730
|
readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
|
|
@@ -667,16 +739,17 @@ declare module 'vue' {
|
|
|
667
739
|
readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
|
|
668
740
|
readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
|
|
669
741
|
readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
|
|
670
|
-
readonly tryUseNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
742
|
+
readonly tryUseNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['tryUseNuxtApp']>
|
|
743
|
+
readonly unicode: UnwrapRef<typeof import('magic-regexp')['unicode']>
|
|
671
744
|
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
|
672
745
|
readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
|
|
673
746
|
readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
|
|
674
747
|
readonly unwrapSlot: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/utils/node')['flatUnwrap']>
|
|
675
|
-
readonly updateAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
676
|
-
readonly updateSiteConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
748
|
+
readonly updateAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/config')['updateAppConfig']>
|
|
749
|
+
readonly updateSiteConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/updateSiteConfig')['updateSiteConfig']>
|
|
677
750
|
readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
|
|
678
751
|
readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
|
|
679
|
-
readonly useAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
752
|
+
readonly useAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/config')['useAppConfig']>
|
|
680
753
|
readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
|
|
681
754
|
readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
|
|
682
755
|
readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
|
|
@@ -689,30 +762,31 @@ declare module 'vue' {
|
|
|
689
762
|
readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
|
|
690
763
|
readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
|
|
691
764
|
readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
|
|
692
|
-
readonly useAsyncData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
765
|
+
readonly useAsyncData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['useAsyncData']>
|
|
693
766
|
readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
|
|
694
767
|
readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
|
|
695
768
|
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
|
696
|
-
readonly useAvatarGroup: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
769
|
+
readonly useAvatarGroup: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useAvatarGroup')['useAvatarGroup']>
|
|
697
770
|
readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
|
|
698
771
|
readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
|
|
699
772
|
readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
|
|
700
|
-
readonly
|
|
773
|
+
readonly useBotDetection: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.4.0_magica_3de84b4d65efe3da9ef650e630493095/node_modules/@nuxtjs/robots/dist/runtime/app/composables/useBotDetection')['useBotDetection']>
|
|
774
|
+
readonly useBreadcrumbItems: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.13_magic_5167a9e69abea5d70bb713d54b4fdb44/node_modules/nuxt-seo-utils/dist/runtime/app/composables/useBreadcrumbItems')['useBreadcrumbItems']>
|
|
701
775
|
readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
|
|
702
776
|
readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
|
|
703
|
-
readonly useBrowserLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
777
|
+
readonly useBrowserLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useBrowserLocale']>
|
|
704
778
|
readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
|
|
705
|
-
readonly useButtonGroup: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
779
|
+
readonly useButtonGroup: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useButtonGroup')['useButtonGroup']>
|
|
706
780
|
readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
|
|
707
781
|
readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
|
|
708
782
|
readonly useClipboardItems: UnwrapRef<typeof import('@vueuse/core')['useClipboardItems']>
|
|
709
783
|
readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
|
|
710
784
|
readonly useColorMode: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+color-mode@3.5.2_magicast@0.3.5/node_modules/@nuxtjs/color-mode/dist/runtime/composables')['useColorMode']>
|
|
711
|
-
readonly useComponentIcons: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
785
|
+
readonly useComponentIcons: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useComponentIcons')['useComponentIcons']>
|
|
712
786
|
readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
|
|
713
|
-
readonly useCookie: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
714
|
-
readonly useCookieLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
715
|
-
readonly useCountdown: UnwrapRef<typeof import('@
|
|
787
|
+
readonly useCookie: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/cookie')['useCookie']>
|
|
788
|
+
readonly useCookieLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useCookieLocale']>
|
|
789
|
+
readonly useCountdown: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/composables')['useCountdown']>
|
|
716
790
|
readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
|
|
717
791
|
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
|
718
792
|
readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
|
|
@@ -732,57 +806,70 @@ declare module 'vue' {
|
|
|
732
806
|
readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
|
|
733
807
|
readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
|
|
734
808
|
readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
|
|
809
|
+
readonly useEasings: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/composables')['useEasings']>
|
|
735
810
|
readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
|
|
736
811
|
readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
|
|
737
812
|
readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
|
|
738
813
|
readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
|
|
739
814
|
readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
|
|
740
|
-
readonly useError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
815
|
+
readonly useError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/error')['useError']>
|
|
741
816
|
readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
|
|
742
817
|
readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
|
|
743
818
|
readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
|
|
744
819
|
readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
|
|
745
820
|
readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
|
|
746
|
-
readonly useFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
821
|
+
readonly useFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/fetch')['useFetch']>
|
|
747
822
|
readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
|
|
748
823
|
readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
|
|
749
824
|
readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
|
|
750
825
|
readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
|
|
751
|
-
readonly useFormField: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
826
|
+
readonly useFormField: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useFormField')['useFormField']>
|
|
752
827
|
readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
|
|
753
828
|
readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
|
|
754
829
|
readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
|
|
755
830
|
readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
|
|
756
|
-
readonly useHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
757
|
-
readonly useHeadSafe: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
758
|
-
readonly useHydration: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
759
|
-
readonly useI18n: UnwrapRef<typeof import('../../node_modules/.pnpm/vue-i18n@10.0.
|
|
831
|
+
readonly useHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useHead']>
|
|
832
|
+
readonly useHeadSafe: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useHeadSafe']>
|
|
833
|
+
readonly useHydration: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/hydrate')['useHydration']>
|
|
834
|
+
readonly useI18n: UnwrapRef<typeof import('../../node_modules/.pnpm/vue-i18n@10.0.8_vue@3.5.17_typescript@5.8.3_/node_modules/vue-i18n/dist/vue-i18n')['useI18n']>
|
|
760
835
|
readonly useId: UnwrapRef<typeof import('vue')['useId']>
|
|
761
836
|
readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
|
|
762
837
|
readonly useIgnisT: UnwrapRef<typeof import('../../composables/useTranslation')['useIgnisT']>
|
|
763
|
-
readonly useImage: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+image@1.10.0_@
|
|
838
|
+
readonly useImage: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+image@1.10.0_@netlify_50d57983e0799a62bc0b2b1b9b64ff97/node_modules/@nuxt/image/dist/runtime/composables')['useImage']>
|
|
764
839
|
readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
|
|
765
840
|
readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
|
|
766
841
|
readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
|
|
767
842
|
readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
|
|
768
|
-
readonly useKbd: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
843
|
+
readonly useKbd: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useKbd')['useKbd']>
|
|
769
844
|
readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
|
|
770
845
|
readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
|
|
771
|
-
readonly useLazyAsyncData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
772
|
-
readonly useLazyFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
846
|
+
readonly useLazyAsyncData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['useLazyAsyncData']>
|
|
847
|
+
readonly useLazyFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/fetch')['useLazyFetch']>
|
|
773
848
|
readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
|
|
774
|
-
readonly useLoadingIndicator: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
849
|
+
readonly useLoadingIndicator: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/loading-indicator')['useLoadingIndicator']>
|
|
775
850
|
readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
|
|
776
|
-
readonly useLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
777
|
-
readonly useLocaleHead: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
778
|
-
readonly useLocalePath: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
779
|
-
readonly useLocaleRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
851
|
+
readonly useLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useLocale')['useLocale']>
|
|
852
|
+
readonly useLocaleHead: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocaleHead']>
|
|
853
|
+
readonly useLocalePath: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocalePath']>
|
|
854
|
+
readonly useLocaleRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocaleRoute']>
|
|
855
|
+
readonly useMagicAccordion: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicAccordion')['useMagicAccordion']>
|
|
856
|
+
readonly useMagicCommand: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicCommand')['useMagicCommand']>
|
|
857
|
+
readonly useMagicCookie: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicCookie')['useMagicCookie']>
|
|
858
|
+
readonly useMagicDraggable: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicDraggable')['useMagicDraggable']>
|
|
859
|
+
readonly useMagicDrawer: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicDrawer')['useMagicDrawer']>
|
|
860
|
+
readonly useMagicEmitter: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicEmitter')['useMagicEmitter']>
|
|
780
861
|
readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
|
|
862
|
+
readonly useMagicMenu: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicMenu')['useMagicMenu']>
|
|
863
|
+
readonly useMagicModal: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicModal')['useMagicModal']>
|
|
864
|
+
readonly useMagicPie: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicPie')['useMagicPie']>
|
|
865
|
+
readonly useMagicPlayer: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicPlayer')['useMagicPlayer']>
|
|
866
|
+
readonly useMagicToast: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/plugins/MagicToast')['useMagicToast']>
|
|
781
867
|
readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
|
|
782
868
|
readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
|
|
783
869
|
readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
|
|
784
870
|
readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
|
|
785
871
|
readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
|
|
872
|
+
readonly useMetaViewport: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/composables')['useMetaViewport']>
|
|
786
873
|
readonly useModel: UnwrapRef<typeof import('vue')['useModel']>
|
|
787
874
|
readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
|
|
788
875
|
readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
|
|
@@ -792,103 +879,104 @@ declare module 'vue' {
|
|
|
792
879
|
readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
|
|
793
880
|
readonly useNeon: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/composables/useNeon')['useNeon']>
|
|
794
881
|
readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
|
|
795
|
-
readonly useNitroOrigin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
796
|
-
readonly useNonce: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.
|
|
882
|
+
readonly useNitroOrigin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/useNitroOrigin')['useNitroOrigin']>
|
|
883
|
+
readonly useNonce: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.45.1/node_modules/nuxt-security/dist/runtime/composables/nonce')['useNonce']>
|
|
797
884
|
readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
|
|
798
|
-
readonly useNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
799
|
-
readonly useNuxtData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
800
|
-
readonly useNuxtDevTools: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+devtools@2.
|
|
885
|
+
readonly useNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['useNuxtApp']>
|
|
886
|
+
readonly useNuxtData: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/asyncData')['useNuxtData']>
|
|
887
|
+
readonly useNuxtDevTools: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+devtools@2.6.2_vite@6_020cd78f6486b7d96884778659d6ec48/node_modules/@nuxt/devtools/dist/runtime/use-nuxt-devtools')['useNuxtDevTools']>
|
|
801
888
|
readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
|
|
802
889
|
readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
|
|
803
890
|
readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
|
|
804
|
-
readonly useOverlay: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
891
|
+
readonly useOverlay: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useOverlay')['useOverlay']>
|
|
805
892
|
readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
|
|
806
893
|
readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
|
|
807
894
|
readonly useParentElement: UnwrapRef<typeof import('@vueuse/core')['useParentElement']>
|
|
808
895
|
readonly usePerformanceObserver: UnwrapRef<typeof import('@vueuse/core')['usePerformanceObserver']>
|
|
809
896
|
readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
|
|
810
|
-
readonly usePinia: UnwrapRef<typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.
|
|
897
|
+
readonly usePinia: UnwrapRef<typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.2_magicast_0e0e2647aa4468feafd1881175862012/node_modules/@pinia/nuxt/dist/runtime/composables')['usePinia']>
|
|
811
898
|
readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
|
|
812
899
|
readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
|
|
813
900
|
readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
|
|
814
|
-
readonly usePortal: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
901
|
+
readonly usePortal: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/usePortal')['usePortal']>
|
|
815
902
|
readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
|
|
816
903
|
readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
|
|
817
904
|
readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
|
|
818
905
|
readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
|
|
819
906
|
readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
|
|
820
907
|
readonly usePreferredReducedTransparency: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedTransparency']>
|
|
821
|
-
readonly usePreviewMode: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
908
|
+
readonly usePreviewMode: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/preview')['usePreviewMode']>
|
|
822
909
|
readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
|
|
823
910
|
readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
|
|
824
911
|
readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
|
|
825
|
-
readonly useRequestEvent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
826
|
-
readonly useRequestFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
827
|
-
readonly useRequestHeader: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
828
|
-
readonly useRequestHeaders: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
829
|
-
readonly useRequestURL: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
912
|
+
readonly useRequestEvent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useRequestEvent']>
|
|
913
|
+
readonly useRequestFetch: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useRequestFetch']>
|
|
914
|
+
readonly useRequestHeader: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useRequestHeader']>
|
|
915
|
+
readonly useRequestHeaders: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useRequestHeaders']>
|
|
916
|
+
readonly useRequestURL: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/url')['useRequestURL']>
|
|
830
917
|
readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
|
|
831
|
-
readonly useResponseHeader: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
832
|
-
readonly useRobotsRule: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.
|
|
833
|
-
readonly useRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
834
|
-
readonly useRouteAnnouncer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
835
|
-
readonly useRouteBaseName: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
836
|
-
readonly useRouter: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
837
|
-
readonly useRuntimeConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
838
|
-
readonly useRuntimeHook: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
918
|
+
readonly useResponseHeader: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/ssr')['useResponseHeader']>
|
|
919
|
+
readonly useRobotsRule: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.4.0_magica_3de84b4d65efe3da9ef650e630493095/node_modules/@nuxtjs/robots/dist/runtime/app/composables/useRobotsRule')['useRobotsRule']>
|
|
920
|
+
readonly useRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['useRoute']>
|
|
921
|
+
readonly useRouteAnnouncer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/route-announcer')['useRouteAnnouncer']>
|
|
922
|
+
readonly useRouteBaseName: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useRouteBaseName']>
|
|
923
|
+
readonly useRouter: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/router')['useRouter']>
|
|
924
|
+
readonly useRuntimeConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/nuxt')['useRuntimeConfig']>
|
|
925
|
+
readonly useRuntimeHook: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/runtime-hook')['useRuntimeHook']>
|
|
839
926
|
readonly useSSRWidth: UnwrapRef<typeof import('@vueuse/core')['useSSRWidth']>
|
|
840
927
|
readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
|
|
841
928
|
readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
|
|
842
|
-
readonly useScript: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
843
|
-
readonly useScriptClarity: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
844
|
-
readonly useScriptCloudflareWebAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
845
|
-
readonly useScriptCrisp: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
846
|
-
readonly useScriptEventPage: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
847
|
-
readonly useScriptFathomAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
848
|
-
readonly useScriptGoogleAdsense: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
849
|
-
readonly useScriptGoogleAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
850
|
-
readonly useScriptGoogleMaps: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
851
|
-
readonly useScriptGoogleTagManager: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
852
|
-
readonly useScriptHotjar: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
853
|
-
readonly useScriptIntercom: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
854
|
-
readonly useScriptLemonSqueezy: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
855
|
-
readonly useScriptMatomoAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
856
|
-
readonly useScriptMetaPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
857
|
-
readonly useScriptNpm: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
858
|
-
readonly useScriptPlausibleAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
859
|
-
readonly useScriptRybbitAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
860
|
-
readonly useScriptSegment: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
861
|
-
readonly useScriptSnapchatPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
862
|
-
readonly useScriptStripe: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
929
|
+
readonly useScript: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/composables/useScript')['useScript']>
|
|
930
|
+
readonly useScriptClarity: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/clarity')['useScriptClarity']>
|
|
931
|
+
readonly useScriptCloudflareWebAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/cloudflare-web-analytics')['useScriptCloudflareWebAnalytics']>
|
|
932
|
+
readonly useScriptCrisp: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/crisp')['useScriptCrisp']>
|
|
933
|
+
readonly useScriptEventPage: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/composables/useScriptEventPage')['useScriptEventPage']>
|
|
934
|
+
readonly useScriptFathomAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/fathom-analytics')['useScriptFathomAnalytics']>
|
|
935
|
+
readonly useScriptGoogleAdsense: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/google-adsense')['useScriptGoogleAdsense']>
|
|
936
|
+
readonly useScriptGoogleAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/google-analytics')['useScriptGoogleAnalytics']>
|
|
937
|
+
readonly useScriptGoogleMaps: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/google-maps')['useScriptGoogleMaps']>
|
|
938
|
+
readonly useScriptGoogleTagManager: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/google-tag-manager')['useScriptGoogleTagManager']>
|
|
939
|
+
readonly useScriptHotjar: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/hotjar')['useScriptHotjar']>
|
|
940
|
+
readonly useScriptIntercom: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/intercom')['useScriptIntercom']>
|
|
941
|
+
readonly useScriptLemonSqueezy: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/lemon-squeezy')['useScriptLemonSqueezy']>
|
|
942
|
+
readonly useScriptMatomoAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/matomo-analytics')['useScriptMatomoAnalytics']>
|
|
943
|
+
readonly useScriptMetaPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/meta-pixel')['useScriptMetaPixel']>
|
|
944
|
+
readonly useScriptNpm: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/npm')['useScriptNpm']>
|
|
945
|
+
readonly useScriptPlausibleAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/plausible-analytics')['useScriptPlausibleAnalytics']>
|
|
946
|
+
readonly useScriptRybbitAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/rybbit-analytics')['useScriptRybbitAnalytics']>
|
|
947
|
+
readonly useScriptSegment: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/segment')['useScriptSegment']>
|
|
948
|
+
readonly useScriptSnapchatPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/snapchat-pixel')['useScriptSnapchatPixel']>
|
|
949
|
+
readonly useScriptStripe: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/stripe')['useScriptStripe']>
|
|
863
950
|
readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
|
|
864
|
-
readonly useScriptTriggerConsent: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
865
|
-
readonly useScriptTriggerElement: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
866
|
-
readonly useScriptUmamiAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
867
|
-
readonly useScriptVimeoPlayer: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
868
|
-
readonly useScriptXPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
869
|
-
readonly useScriptYouTubePlayer: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.
|
|
951
|
+
readonly useScriptTriggerConsent: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/composables/useScriptTriggerConsent')['useScriptTriggerConsent']>
|
|
952
|
+
readonly useScriptTriggerElement: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/composables/useScriptTriggerElement')['useScriptTriggerElement']>
|
|
953
|
+
readonly useScriptUmamiAnalytics: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/umami-analytics')['useScriptUmamiAnalytics']>
|
|
954
|
+
readonly useScriptVimeoPlayer: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/vimeo-player')['useScriptVimeoPlayer']>
|
|
955
|
+
readonly useScriptXPixel: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/x-pixel')['useScriptXPixel']>
|
|
956
|
+
readonly useScriptYouTubePlayer: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+scripts@0.11.10_@netl_d743ba0b1d9a698f9a2e95b9a392c76c/node_modules/@nuxt/scripts/dist/runtime/registry/youtube-player')['useScriptYouTubePlayer']>
|
|
870
957
|
readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
|
|
871
958
|
readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
|
|
872
|
-
readonly
|
|
873
|
-
readonly
|
|
874
|
-
readonly
|
|
875
|
-
readonly
|
|
959
|
+
readonly useScrollTo: UnwrapRef<typeof import('../../node_modules/.pnpm/@maas+vue-equipment@1.0.0-b_d7b16809710a48a235e359ffa071f391/node_modules/@maas/vue-equipment/dist/composables')['useScrollTo']>
|
|
960
|
+
readonly useSeoMeta: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useSeoMeta']>
|
|
961
|
+
readonly useServerHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useServerHead']>
|
|
962
|
+
readonly useServerHeadSafe: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useServerHeadSafe']>
|
|
963
|
+
readonly useServerSeoMeta: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/head')['useServerSeoMeta']>
|
|
876
964
|
readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
|
|
877
|
-
readonly useSetI18nParams: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
965
|
+
readonly useSetI18nParams: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useSetI18nParams']>
|
|
878
966
|
readonly useShadowRoot: UnwrapRef<typeof import('vue')['useShadowRoot']>
|
|
879
967
|
readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
|
|
880
|
-
readonly useSiteConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
968
|
+
readonly useSiteConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/useSiteConfig')['useSiteConfig']>
|
|
881
969
|
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
|
882
970
|
readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
|
|
883
971
|
readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
|
|
884
972
|
readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
|
|
885
|
-
readonly useState: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
973
|
+
readonly useState: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.7_@netlify+blobs@_69ce98a55e14903ceaa30a48fc27b0b8/node_modules/nuxt/dist/app/composables/state')['useState']>
|
|
886
974
|
readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
|
|
887
975
|
readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
|
|
888
976
|
readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
|
|
889
977
|
readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
|
|
890
978
|
readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
|
|
891
|
-
readonly useSwitchLocalePath: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
979
|
+
readonly useSwitchLocalePath: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.6_@vue+com_39cf3fe219d1a798c6bd28b9d91f9267/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useSwitchLocalePath']>
|
|
892
980
|
readonly useT: UnwrapRef<typeof import('../../composables/useTranslation')['useT']>
|
|
893
981
|
readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
|
|
894
982
|
readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
|
|
@@ -906,7 +994,7 @@ declare module 'vue' {
|
|
|
906
994
|
readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
|
|
907
995
|
readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
|
|
908
996
|
readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
|
|
909
|
-
readonly useToast: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.
|
|
997
|
+
readonly useToast: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/composables/useToast')['useToast']>
|
|
910
998
|
readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
|
|
911
999
|
readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
|
|
912
1000
|
readonly useTransitionState: UnwrapRef<typeof import('vue')['useTransitionState']>
|
|
@@ -915,6 +1003,7 @@ declare module 'vue' {
|
|
|
915
1003
|
readonly useUserSession: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/app/composables/session')['useUserSession']>
|
|
916
1004
|
readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
|
|
917
1005
|
readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
|
|
1006
|
+
readonly useValibot: UnwrapRef<typeof import('../../composables/useValibot')['useValibot']>
|
|
918
1007
|
readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
|
|
919
1008
|
readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
|
|
920
1009
|
readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
|
|
@@ -925,6 +1014,7 @@ declare module 'vue' {
|
|
|
925
1014
|
readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
|
|
926
1015
|
readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
|
|
927
1016
|
readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
|
|
1017
|
+
readonly useZod: UnwrapRef<typeof import('../../composables/useZod')['useZod']>
|
|
928
1018
|
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
|
929
1019
|
readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
|
|
930
1020
|
readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
|
|
@@ -941,13 +1031,18 @@ declare module 'vue' {
|
|
|
941
1031
|
readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
|
|
942
1032
|
readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
|
|
943
1033
|
readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
|
|
1034
|
+
readonly whitespace: UnwrapRef<typeof import('magic-regexp')['whitespace']>
|
|
944
1035
|
readonly withCtx: UnwrapRef<typeof import('vue')['withCtx']>
|
|
945
1036
|
readonly withDirectives: UnwrapRef<typeof import('vue')['withDirectives']>
|
|
1037
|
+
readonly withIndices: UnwrapRef<typeof import('magic-regexp')['withIndices']>
|
|
946
1038
|
readonly withKeys: UnwrapRef<typeof import('vue')['withKeys']>
|
|
947
1039
|
readonly withMemo: UnwrapRef<typeof import('vue')['withMemo']>
|
|
948
1040
|
readonly withModifiers: UnwrapRef<typeof import('vue')['withModifiers']>
|
|
949
1041
|
readonly withScopeId: UnwrapRef<typeof import('vue')['withScopeId']>
|
|
950
|
-
readonly withSiteTrailingSlash: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
951
|
-
readonly withSiteUrl: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
1042
|
+
readonly withSiteTrailingSlash: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['withSiteTrailingSlash']>
|
|
1043
|
+
readonly withSiteUrl: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['withSiteUrl']>
|
|
1044
|
+
readonly word: UnwrapRef<typeof import('magic-regexp')['word']>
|
|
1045
|
+
readonly wordBoundary: UnwrapRef<typeof import('magic-regexp')['wordBoundary']>
|
|
1046
|
+
readonly wordChar: UnwrapRef<typeof import('magic-regexp')['wordChar']>
|
|
952
1047
|
}
|
|
953
1048
|
}
|