nuxt-ignis 0.3.0 → 0.3.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 +43 -0
- package/.nuxt/components.d.ts +132 -0
- package/.nuxt/content/components.ts +51 -0
- package/.nuxt/content/database.compressed.mjs +1 -0
- package/.nuxt/content/manifest.ts +33 -0
- package/.nuxt/content/sql_dump +6 -0
- package/.nuxt/content/types.d.ts +13 -0
- package/.nuxt/dist/server/client.manifest.mjs +18 -1
- package/.nuxt/eslint.config.mjs +1 -1
- package/.nuxt/i18n.options.mjs +165 -0
- package/.nuxt/imports.d.ts +16 -0
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/mdc-configs.mjs +8 -0
- package/.nuxt/mdc-highlighter.mjs +213 -0
- package/.nuxt/mdc-image-component.mjs +1 -0
- package/.nuxt/mdc-imports.mjs +12 -0
- package/.nuxt/module/@nuxtjs-sitemap.d.ts +28 -0
- package/.nuxt/module/nuxt-robots.d.ts +35 -0
- package/.nuxt/module/nuxt-seo-utils.assets.d.ts +25 -0
- package/.nuxt/module/nuxt-seo-utils.d.ts +22 -0
- package/.nuxt/module/nuxt-site-config.d.ts +43 -0
- package/.nuxt/nitro.json +3 -3
- package/.nuxt/nuxt-i18n-logger.mjs +1 -0
- package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
- package/.nuxt/nuxt-icon-server-bundle.mjs +15 -0
- package/.nuxt/nuxt.d.ts +20 -5
- package/.nuxt/tailwind/postcss.mjs +15 -0
- package/.nuxt/tsconfig.json +151 -0
- package/.nuxt/tsconfig.server.json +140 -0
- package/.nuxt/types/build.d.ts +2 -0
- package/.nuxt/types/i18n-plugin.d.ts +104 -0
- package/.nuxt/types/imports.d.ts +70 -0
- package/.nuxt/types/neon.d.ts +35 -0
- package/.nuxt/types/nitro-imports.d.ts +263 -1
- package/.nuxt/types/nitro-routes.d.ts +61 -0
- package/.nuxt/types/plugins.d.ts +21 -2
- package/.nuxt/types/schema.d.ts +924 -2
- package/.nuxt/types/ui.d.ts +35 -0
- package/.nuxt/ui/accordion.ts +20 -0
- package/.nuxt/ui/alert.ts +264 -0
- package/.nuxt/ui/avatar-group.ts +52 -0
- package/.nuxt/ui/avatar.ts +54 -0
- package/.nuxt/ui/badge.ts +263 -0
- package/.nuxt/ui/breadcrumb.ts +45 -0
- package/.nuxt/ui/button-group.ts +16 -0
- package/.nuxt/ui/button.ts +378 -0
- package/.nuxt/ui/calendar.ts +103 -0
- package/.nuxt/ui/card.ts +34 -0
- package/.nuxt/ui/carousel.ts +38 -0
- package/.nuxt/ui/checkbox-group.ts +204 -0
- package/.nuxt/ui/checkbox.ts +236 -0
- package/.nuxt/ui/chip.ts +96 -0
- package/.nuxt/ui/collapsible.ts +6 -0
- package/.nuxt/ui/color-picker.ts +47 -0
- package/.nuxt/ui/command-palette.ts +50 -0
- package/.nuxt/ui/container.ts +3 -0
- package/.nuxt/ui/context-menu.ts +216 -0
- package/.nuxt/ui/drawer.ts +126 -0
- package/.nuxt/ui/dropdown-menu.ts +217 -0
- package/.nuxt/ui/form-field.ts +48 -0
- package/.nuxt/ui/form.ts +3 -0
- package/.nuxt/ui/index.ts +50 -0
- package/.nuxt/ui/input-menu.ts +436 -0
- package/.nuxt/ui/input-number.ts +245 -0
- package/.nuxt/ui/input.ts +289 -0
- package/.nuxt/ui/kbd.ts +31 -0
- package/.nuxt/ui/link.ts +22 -0
- package/.nuxt/ui/modal.ts +29 -0
- package/.nuxt/ui/navigation-menu.ts +501 -0
- package/.nuxt/ui/pagination.ts +13 -0
- package/.nuxt/ui/pin-input.ts +171 -0
- package/.nuxt/ui/popover.ts +6 -0
- package/.nuxt/ui/progress.ts +297 -0
- package/.nuxt/ui/radio-group.ts +350 -0
- package/.nuxt/ui/select-menu.ts +346 -0
- package/.nuxt/ui/select.ts +341 -0
- package/.nuxt/ui/separator.ts +172 -0
- package/.nuxt/ui/skeleton.ts +3 -0
- package/.nuxt/ui/slideover.ts +71 -0
- package/.nuxt/ui/slider.ts +171 -0
- package/.nuxt/ui/stepper.ts +202 -0
- package/.nuxt/ui/switch.ts +131 -0
- package/.nuxt/ui/table.ts +147 -0
- package/.nuxt/ui/tabs.ts +256 -0
- package/.nuxt/ui/textarea.ts +294 -0
- package/.nuxt/ui/toast.ts +81 -0
- package/.nuxt/ui/toaster.ts +91 -0
- package/.nuxt/ui/tooltip.ts +9 -0
- package/.nuxt/ui/tree.ts +154 -0
- package/.nuxt/ui-image-component.ts +1 -0
- package/.nuxt/ui.css +143 -0
- package/features.ts +30 -22
- package/package.json +2 -1
- package/tailwind.config.ts +1 -1
- package/.nuxt/dev/index.mjs +0 -2948
- package/.nuxt/dev/index.mjs.map +0 -1
package/.nuxt/types/imports.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare global {
|
|
|
26
26
|
const createRef: typeof import('@vueuse/core')['createRef']
|
|
27
27
|
const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate']
|
|
28
28
|
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
|
|
29
|
+
const createSitePathResolver: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['createSitePathResolver']
|
|
29
30
|
const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise']
|
|
30
31
|
const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
|
|
31
32
|
const customRef: typeof import('vue')['customRef']
|
|
@@ -34,10 +35,16 @@ declare global {
|
|
|
34
35
|
const defineAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['defineAppConfig']
|
|
35
36
|
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
|
36
37
|
const defineComponent: typeof import('vue')['defineComponent']
|
|
38
|
+
const defineI18nConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nConfig']
|
|
39
|
+
const defineI18nLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nLocale']
|
|
40
|
+
const defineI18nRoute: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nRoute']
|
|
37
41
|
const defineNuxtComponent: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/component')['defineNuxtComponent']
|
|
38
42
|
const defineNuxtLink: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/components/nuxt-link')['defineNuxtLink']
|
|
39
43
|
const defineNuxtPlugin: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['defineNuxtPlugin']
|
|
40
44
|
const defineNuxtRouteMiddleware: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/router')['defineNuxtRouteMiddleware']
|
|
45
|
+
const defineOgImage: typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.3_@unhead_016a02da852510886427e1ecf476d0e9/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImage']
|
|
46
|
+
const defineOgImageComponent: typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.3_@unhead_016a02da852510886427e1ecf476d0e9/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImageComponent']
|
|
47
|
+
const defineOgImageScreenshot: typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.3_@unhead_016a02da852510886427e1ecf476d0e9/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImageScreenshot']
|
|
41
48
|
const definePageMeta: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/pages/runtime/composables')['definePageMeta']
|
|
42
49
|
const definePayloadPlugin: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['definePayloadPlugin']
|
|
43
50
|
const definePayloadReducer: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/payload')['definePayloadReducer']
|
|
@@ -47,6 +54,7 @@ declare global {
|
|
|
47
54
|
const effect: typeof import('vue')['effect']
|
|
48
55
|
const effectScope: typeof import('vue')['effectScope']
|
|
49
56
|
const extendRef: typeof import('@vueuse/core')['extendRef']
|
|
57
|
+
const formatNeonError: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['formatNeonError']
|
|
50
58
|
const getAppManifest: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/manifest')['getAppManifest']
|
|
51
59
|
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
52
60
|
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
@@ -59,6 +67,8 @@ declare global {
|
|
|
59
67
|
const injectHead: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['injectHead']
|
|
60
68
|
const injectLocal: typeof import('@vueuse/core')['injectLocal']
|
|
61
69
|
const isDefined: typeof import('@vueuse/core')['isDefined']
|
|
70
|
+
const isNeonError: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['isNeonError']
|
|
71
|
+
const isNeonSuccess: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['isNeonSuccess']
|
|
62
72
|
const isNuxtError: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/error')['isNuxtError']
|
|
63
73
|
const isPrerendered: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/payload')['isPrerendered']
|
|
64
74
|
const isProxy: typeof import('vue')['isProxy']
|
|
@@ -97,6 +107,7 @@ declare global {
|
|
|
97
107
|
const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
|
|
98
108
|
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
99
109
|
const onUpdated: typeof import('vue')['onUpdated']
|
|
110
|
+
const parseMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser')['parseMarkdown']
|
|
100
111
|
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
|
101
112
|
const prefetchComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/preload')['prefetchComponents']
|
|
102
113
|
const preloadComponents: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/preload')['preloadComponents']
|
|
@@ -107,6 +118,10 @@ declare global {
|
|
|
107
118
|
const provideLocal: typeof import('@vueuse/core')['provideLocal']
|
|
108
119
|
const proxyRefs: typeof import('vue')['proxyRefs']
|
|
109
120
|
const pslo: typeof import('../../utils/pslo-utils')['pslo']
|
|
121
|
+
const queryCollection: typeof import('../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/app')['queryCollection']
|
|
122
|
+
const queryCollectionItemSurroundings: typeof import('../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionItemSurroundings']
|
|
123
|
+
const queryCollectionNavigation: typeof import('../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionNavigation']
|
|
124
|
+
const queryCollectionSearchSections: typeof import('../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionSearchSections']
|
|
110
125
|
const reactify: typeof import('@vueuse/core')['reactify']
|
|
111
126
|
const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
|
|
112
127
|
const reactive: typeof import('vue')['reactive']
|
|
@@ -136,6 +151,7 @@ declare global {
|
|
|
136
151
|
const shallowRef: typeof import('vue')['shallowRef']
|
|
137
152
|
const showError: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/error')['showError']
|
|
138
153
|
const storeToRefs: typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.0_magicast_a67d88851b9ae3b0828837d8cf9ec91f/node_modules/@pinia/nuxt/dist/runtime/composables')['storeToRefs']
|
|
154
|
+
const stringifyMarkdown: typeof import('../../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify')['stringifyMarkdown']
|
|
139
155
|
const syncRef: typeof import('@vueuse/core')['syncRef']
|
|
140
156
|
const syncRefs: typeof import('@vueuse/core')['syncRefs']
|
|
141
157
|
const templateRef: typeof import('@vueuse/core')['templateRef']
|
|
@@ -156,7 +172,9 @@ declare global {
|
|
|
156
172
|
const unref: typeof import('vue')['unref']
|
|
157
173
|
const unrefElement: typeof import('@vueuse/core')['unrefElement']
|
|
158
174
|
const until: typeof import('@vueuse/core')['until']
|
|
175
|
+
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']
|
|
159
176
|
const updateAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/config')['updateAppConfig']
|
|
177
|
+
const updateSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/updateSiteConfig')['updateSiteConfig']
|
|
160
178
|
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
|
161
179
|
const useAnimate: typeof import('@vueuse/core')['useAnimate']
|
|
162
180
|
const useAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/config')['useAppConfig']
|
|
@@ -179,8 +197,10 @@ declare global {
|
|
|
179
197
|
const useBase64: typeof import('@vueuse/core')['useBase64']
|
|
180
198
|
const useBattery: typeof import('@vueuse/core')['useBattery']
|
|
181
199
|
const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
|
|
200
|
+
const useBreadcrumbItems: typeof import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/app/composables/useBreadcrumbItems')['useBreadcrumbItems']
|
|
182
201
|
const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
|
|
183
202
|
const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
|
|
203
|
+
const useBrowserLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useBrowserLocale']
|
|
184
204
|
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
|
|
185
205
|
const useCached: typeof import('@vueuse/core')['useCached']
|
|
186
206
|
const useClipboard: typeof import('@vueuse/core')['useClipboard']
|
|
@@ -189,6 +209,7 @@ declare global {
|
|
|
189
209
|
const useColorMode: typeof import('@vueuse/core')['useColorMode']
|
|
190
210
|
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
|
|
191
211
|
const useCookie: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/cookie')['useCookie']
|
|
212
|
+
const useCookieLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useCookieLocale']
|
|
192
213
|
const useCountdown: typeof import('@vueuse/core')['useCountdown']
|
|
193
214
|
const useCounter: typeof import('@vueuse/core')['useCounter']
|
|
194
215
|
const useCssModule: typeof import('vue')['useCssModule']
|
|
@@ -232,6 +253,7 @@ declare global {
|
|
|
232
253
|
const useHead: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['useHead']
|
|
233
254
|
const useHeadSafe: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['useHeadSafe']
|
|
234
255
|
const useHydration: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/hydrate')['useHydration']
|
|
256
|
+
const useI18n: typeof import('../../node_modules/.pnpm/vue-i18n@10.0.7_vue@3.5.14_typescript@5.8.3_/node_modules/vue-i18n/dist/vue-i18n')['useI18n']
|
|
235
257
|
const useId: typeof import('vue')['useId']
|
|
236
258
|
const useIdle: typeof import('@vueuse/core')['useIdle']
|
|
237
259
|
const useIgnisT: typeof import('../../composables/useTranslation')['useIgnisT']
|
|
@@ -247,6 +269,9 @@ declare global {
|
|
|
247
269
|
const useLink: typeof import('vue-router')['useLink']
|
|
248
270
|
const useLoadingIndicator: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/loading-indicator')['useLoadingIndicator']
|
|
249
271
|
const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
|
|
272
|
+
const useLocaleHead: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocaleHead']
|
|
273
|
+
const useLocalePath: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocalePath']
|
|
274
|
+
const useLocaleRoute: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocaleRoute']
|
|
250
275
|
const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
|
|
251
276
|
const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
|
|
252
277
|
const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
|
|
@@ -260,7 +285,9 @@ declare global {
|
|
|
260
285
|
const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
|
|
261
286
|
const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
|
|
262
287
|
const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
|
|
288
|
+
const useNeon: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/composables/useNeon')['useNeon']
|
|
263
289
|
const useNetwork: typeof import('@vueuse/core')['useNetwork']
|
|
290
|
+
const useNitroOrigin: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/useNitroOrigin')['useNitroOrigin']
|
|
264
291
|
const useNonce: typeof import('../../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.41.0/node_modules/nuxt-security/dist/runtime/composables/nonce')['useNonce']
|
|
265
292
|
const useNow: typeof import('@vueuse/core')['useNow']
|
|
266
293
|
const useNuxtApp: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['useNuxtApp']
|
|
@@ -295,8 +322,10 @@ declare global {
|
|
|
295
322
|
const useRequestURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/url')['useRequestURL']
|
|
296
323
|
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
|
|
297
324
|
const useResponseHeader: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/ssr')['useResponseHeader']
|
|
325
|
+
const useRobotsRule: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/app/composables/useRobotsRule')['useRobotsRule']
|
|
298
326
|
const useRoute: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/router')['useRoute']
|
|
299
327
|
const useRouteAnnouncer: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/route-announcer')['useRouteAnnouncer']
|
|
328
|
+
const useRouteBaseName: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useRouteBaseName']
|
|
300
329
|
const useRouter: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/router')['useRouter']
|
|
301
330
|
const useRuntimeConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['useRuntimeConfig']
|
|
302
331
|
const useRuntimeHook: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/runtime-hook')['useRuntimeHook']
|
|
@@ -338,8 +367,10 @@ declare global {
|
|
|
338
367
|
const useServerHeadSafe: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['useServerHeadSafe']
|
|
339
368
|
const useServerSeoMeta: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['useServerSeoMeta']
|
|
340
369
|
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
|
|
370
|
+
const useSetI18nParams: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useSetI18nParams']
|
|
341
371
|
const useShadowRoot: typeof import('vue')['useShadowRoot']
|
|
342
372
|
const useShare: typeof import('@vueuse/core')['useShare']
|
|
373
|
+
const useSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/useSiteConfig')['useSiteConfig']
|
|
343
374
|
const useSlots: typeof import('vue')['useSlots']
|
|
344
375
|
const useSorted: typeof import('@vueuse/core')['useSorted']
|
|
345
376
|
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
|
|
@@ -350,6 +381,7 @@ declare global {
|
|
|
350
381
|
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
|
|
351
382
|
const useSupported: typeof import('@vueuse/core')['useSupported']
|
|
352
383
|
const useSwipe: typeof import('@vueuse/core')['useSwipe']
|
|
384
|
+
const useSwitchLocalePath: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useSwitchLocalePath']
|
|
353
385
|
const useT: typeof import('../../composables/useTranslation')['useT']
|
|
354
386
|
const useTemplateRef: typeof import('vue')['useTemplateRef']
|
|
355
387
|
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
|
|
@@ -372,6 +404,7 @@ declare global {
|
|
|
372
404
|
const useTransitionState: typeof import('vue')['useTransitionState']
|
|
373
405
|
const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
|
|
374
406
|
const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
|
|
407
|
+
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']
|
|
375
408
|
const useVModel: typeof import('@vueuse/core')['useVModel']
|
|
376
409
|
const useVModels: typeof import('@vueuse/core')['useVModels']
|
|
377
410
|
const useVibrate: typeof import('@vueuse/core')['useVibrate']
|
|
@@ -406,6 +439,8 @@ declare global {
|
|
|
406
439
|
const withMemo: typeof import('vue')['withMemo']
|
|
407
440
|
const withModifiers: typeof import('vue')['withModifiers']
|
|
408
441
|
const withScopeId: typeof import('vue')['withScopeId']
|
|
442
|
+
const withSiteTrailingSlash: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['withSiteTrailingSlash']
|
|
443
|
+
const withSiteUrl: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['withSiteUrl']
|
|
409
444
|
}
|
|
410
445
|
// for type re-export
|
|
411
446
|
declare global {
|
|
@@ -445,6 +480,7 @@ declare module 'vue' {
|
|
|
445
480
|
readonly createRef: UnwrapRef<typeof import('@vueuse/core')['createRef']>
|
|
446
481
|
readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
|
|
447
482
|
readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
|
|
483
|
+
readonly createSitePathResolver: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['createSitePathResolver']>
|
|
448
484
|
readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
|
|
449
485
|
readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
|
|
450
486
|
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
|
@@ -453,10 +489,16 @@ declare module 'vue' {
|
|
|
453
489
|
readonly defineAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['defineAppConfig']>
|
|
454
490
|
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
|
455
491
|
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
492
|
+
readonly defineI18nConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nConfig']>
|
|
493
|
+
readonly defineI18nLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nLocale']>
|
|
494
|
+
readonly defineI18nRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['defineI18nRoute']>
|
|
456
495
|
readonly defineNuxtComponent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/component')['defineNuxtComponent']>
|
|
457
496
|
readonly defineNuxtLink: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/components/nuxt-link')['defineNuxtLink']>
|
|
458
497
|
readonly defineNuxtPlugin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['defineNuxtPlugin']>
|
|
459
498
|
readonly defineNuxtRouteMiddleware: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/router')['defineNuxtRouteMiddleware']>
|
|
499
|
+
readonly defineOgImage: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.3_@unhead_016a02da852510886427e1ecf476d0e9/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImage']>
|
|
500
|
+
readonly defineOgImageComponent: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.3_@unhead_016a02da852510886427e1ecf476d0e9/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImageComponent']>
|
|
501
|
+
readonly defineOgImageScreenshot: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-og-image@5.1.3_@unhead_016a02da852510886427e1ecf476d0e9/node_modules/nuxt-og-image/dist/runtime/app/composables/mock')['defineOgImageScreenshot']>
|
|
460
502
|
readonly definePageMeta: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/pages/runtime/composables')['definePageMeta']>
|
|
461
503
|
readonly definePayloadPlugin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['definePayloadPlugin']>
|
|
462
504
|
readonly definePayloadReducer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/payload')['definePayloadReducer']>
|
|
@@ -466,6 +508,7 @@ declare module 'vue' {
|
|
|
466
508
|
readonly effect: UnwrapRef<typeof import('vue')['effect']>
|
|
467
509
|
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
468
510
|
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
511
|
+
readonly formatNeonError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['formatNeonError']>
|
|
469
512
|
readonly getAppManifest: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/manifest')['getAppManifest']>
|
|
470
513
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
471
514
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
@@ -478,6 +521,8 @@ declare module 'vue' {
|
|
|
478
521
|
readonly injectHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['injectHead']>
|
|
479
522
|
readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
|
|
480
523
|
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
|
|
524
|
+
readonly isNeonError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['isNeonError']>
|
|
525
|
+
readonly isNeonSuccess: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/utils/neonErrors')['isNeonSuccess']>
|
|
481
526
|
readonly isNuxtError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/error')['isNuxtError']>
|
|
482
527
|
readonly isPrerendered: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/payload')['isPrerendered']>
|
|
483
528
|
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
|
@@ -516,6 +561,7 @@ declare module 'vue' {
|
|
|
516
561
|
readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
|
|
517
562
|
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
|
518
563
|
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
|
564
|
+
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']>
|
|
519
565
|
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
|
|
520
566
|
readonly prefetchComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/preload')['prefetchComponents']>
|
|
521
567
|
readonly preloadComponents: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/preload')['preloadComponents']>
|
|
@@ -526,6 +572,10 @@ declare module 'vue' {
|
|
|
526
572
|
readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
|
|
527
573
|
readonly proxyRefs: UnwrapRef<typeof import('vue')['proxyRefs']>
|
|
528
574
|
readonly pslo: UnwrapRef<typeof import('../../utils/pslo-utils')['pslo']>
|
|
575
|
+
readonly queryCollection: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/app')['queryCollection']>
|
|
576
|
+
readonly queryCollectionItemSurroundings: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionItemSurroundings']>
|
|
577
|
+
readonly queryCollectionNavigation: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionNavigation']>
|
|
578
|
+
readonly queryCollectionSearchSections: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/app')['queryCollectionSearchSections']>
|
|
529
579
|
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
|
|
530
580
|
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
|
|
531
581
|
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
|
@@ -555,6 +605,7 @@ declare module 'vue' {
|
|
|
555
605
|
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
556
606
|
readonly showError: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/error')['showError']>
|
|
557
607
|
readonly storeToRefs: UnwrapRef<typeof import('../../node_modules/.pnpm/@pinia+nuxt@0.11.0_magicast_a67d88851b9ae3b0828837d8cf9ec91f/node_modules/@pinia/nuxt/dist/runtime/composables')['storeToRefs']>
|
|
608
|
+
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']>
|
|
558
609
|
readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
|
|
559
610
|
readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
|
|
560
611
|
readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
|
|
@@ -575,7 +626,9 @@ declare module 'vue' {
|
|
|
575
626
|
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
|
576
627
|
readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
|
|
577
628
|
readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
|
|
629
|
+
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']>
|
|
578
630
|
readonly updateAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/config')['updateAppConfig']>
|
|
631
|
+
readonly updateSiteConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/updateSiteConfig')['updateSiteConfig']>
|
|
579
632
|
readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
|
|
580
633
|
readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
|
|
581
634
|
readonly useAppConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/config')['useAppConfig']>
|
|
@@ -598,8 +651,10 @@ declare module 'vue' {
|
|
|
598
651
|
readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
|
|
599
652
|
readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
|
|
600
653
|
readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
|
|
654
|
+
readonly useBreadcrumbItems: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/app/composables/useBreadcrumbItems')['useBreadcrumbItems']>
|
|
601
655
|
readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
|
|
602
656
|
readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
|
|
657
|
+
readonly useBrowserLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useBrowserLocale']>
|
|
603
658
|
readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
|
|
604
659
|
readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
|
|
605
660
|
readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
|
|
@@ -608,6 +663,7 @@ declare module 'vue' {
|
|
|
608
663
|
readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
|
|
609
664
|
readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
|
|
610
665
|
readonly useCookie: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/cookie')['useCookie']>
|
|
666
|
+
readonly useCookieLocale: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useCookieLocale']>
|
|
611
667
|
readonly useCountdown: UnwrapRef<typeof import('@vueuse/core')['useCountdown']>
|
|
612
668
|
readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
|
|
613
669
|
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
|
@@ -651,6 +707,7 @@ declare module 'vue' {
|
|
|
651
707
|
readonly useHead: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['useHead']>
|
|
652
708
|
readonly useHeadSafe: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['useHeadSafe']>
|
|
653
709
|
readonly useHydration: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/hydrate')['useHydration']>
|
|
710
|
+
readonly useI18n: UnwrapRef<typeof import('../../node_modules/.pnpm/vue-i18n@10.0.7_vue@3.5.14_typescript@5.8.3_/node_modules/vue-i18n/dist/vue-i18n')['useI18n']>
|
|
654
711
|
readonly useId: UnwrapRef<typeof import('vue')['useId']>
|
|
655
712
|
readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
|
|
656
713
|
readonly useIgnisT: UnwrapRef<typeof import('../../composables/useTranslation')['useIgnisT']>
|
|
@@ -666,6 +723,9 @@ declare module 'vue' {
|
|
|
666
723
|
readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
|
|
667
724
|
readonly useLoadingIndicator: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/loading-indicator')['useLoadingIndicator']>
|
|
668
725
|
readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
|
|
726
|
+
readonly useLocaleHead: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocaleHead']>
|
|
727
|
+
readonly useLocalePath: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocalePath']>
|
|
728
|
+
readonly useLocaleRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useLocaleRoute']>
|
|
669
729
|
readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
|
|
670
730
|
readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
|
|
671
731
|
readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
|
|
@@ -679,7 +739,9 @@ declare module 'vue' {
|
|
|
679
739
|
readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
|
|
680
740
|
readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
|
|
681
741
|
readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
|
|
742
|
+
readonly useNeon: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/composables/useNeon')['useNeon']>
|
|
682
743
|
readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
|
|
744
|
+
readonly useNitroOrigin: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/useNitroOrigin')['useNitroOrigin']>
|
|
683
745
|
readonly useNonce: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.41.0/node_modules/nuxt-security/dist/runtime/composables/nonce')['useNonce']>
|
|
684
746
|
readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
|
|
685
747
|
readonly useNuxtApp: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['useNuxtApp']>
|
|
@@ -714,8 +776,10 @@ declare module 'vue' {
|
|
|
714
776
|
readonly useRequestURL: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/url')['useRequestURL']>
|
|
715
777
|
readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
|
|
716
778
|
readonly useResponseHeader: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/ssr')['useResponseHeader']>
|
|
779
|
+
readonly useRobotsRule: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/app/composables/useRobotsRule')['useRobotsRule']>
|
|
717
780
|
readonly useRoute: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/router')['useRoute']>
|
|
718
781
|
readonly useRouteAnnouncer: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/route-announcer')['useRouteAnnouncer']>
|
|
782
|
+
readonly useRouteBaseName: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useRouteBaseName']>
|
|
719
783
|
readonly useRouter: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/router')['useRouter']>
|
|
720
784
|
readonly useRuntimeConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/nuxt')['useRuntimeConfig']>
|
|
721
785
|
readonly useRuntimeHook: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/runtime-hook')['useRuntimeHook']>
|
|
@@ -757,8 +821,10 @@ declare module 'vue' {
|
|
|
757
821
|
readonly useServerHeadSafe: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['useServerHeadSafe']>
|
|
758
822
|
readonly useServerSeoMeta: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/composables/head')['useServerSeoMeta']>
|
|
759
823
|
readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
|
|
824
|
+
readonly useSetI18nParams: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useSetI18nParams']>
|
|
760
825
|
readonly useShadowRoot: UnwrapRef<typeof import('vue')['useShadowRoot']>
|
|
761
826
|
readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
|
|
827
|
+
readonly useSiteConfig: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/useSiteConfig')['useSiteConfig']>
|
|
762
828
|
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
|
763
829
|
readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
|
|
764
830
|
readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
|
|
@@ -769,6 +835,7 @@ declare module 'vue' {
|
|
|
769
835
|
readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
|
|
770
836
|
readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
|
|
771
837
|
readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
|
|
838
|
+
readonly useSwitchLocalePath: UnwrapRef<typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index')['useSwitchLocalePath']>
|
|
772
839
|
readonly useT: UnwrapRef<typeof import('../../composables/useTranslation')['useT']>
|
|
773
840
|
readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
|
|
774
841
|
readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
|
|
@@ -791,6 +858,7 @@ declare module 'vue' {
|
|
|
791
858
|
readonly useTransitionState: UnwrapRef<typeof import('vue')['useTransitionState']>
|
|
792
859
|
readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
|
|
793
860
|
readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
|
|
861
|
+
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']>
|
|
794
862
|
readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
|
|
795
863
|
readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
|
|
796
864
|
readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
|
|
@@ -825,5 +893,7 @@ declare module 'vue' {
|
|
|
825
893
|
readonly withMemo: UnwrapRef<typeof import('vue')['withMemo']>
|
|
826
894
|
readonly withModifiers: UnwrapRef<typeof import('vue')['withModifiers']>
|
|
827
895
|
readonly withScopeId: UnwrapRef<typeof import('vue')['withScopeId']>
|
|
896
|
+
readonly withSiteTrailingSlash: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['withSiteTrailingSlash']>
|
|
897
|
+
readonly withSiteUrl: UnwrapRef<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/app/composables/utils')['withSiteUrl']>
|
|
828
898
|
}
|
|
829
899
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type * as types from '../utils/neonTypes'
|
|
2
|
+
|
|
3
|
+
declare global {
|
|
4
|
+
export type NeonSSLModeOption = types.NeonSSLModeOption
|
|
5
|
+
export type NeonError = types.NeonError
|
|
6
|
+
export type NeonStatusResult = types.NeonStatusResult
|
|
7
|
+
|
|
8
|
+
export type NeonColumnObject = types.NeonColumnObject
|
|
9
|
+
export type NeonTableObject = types.NeonTableObject
|
|
10
|
+
export type NeonWhereCondition = types.NeonWhereCondition
|
|
11
|
+
export type NeonWhereOperator = types.NeonWhereOperator
|
|
12
|
+
export type NeonWhereObject = types.NeonWhereObject
|
|
13
|
+
export type NeonSortDirection = types.NeonSortDirection
|
|
14
|
+
export type NeonOrderObject = types.NeonOrderObject
|
|
15
|
+
|
|
16
|
+
export type NeonDataType<T> = types.NeonDataType<T>
|
|
17
|
+
export type NeonCountType = types.NeonCountType
|
|
18
|
+
export type NeonEditType = types.NeonEditType
|
|
19
|
+
export type NeonStatusType = types.NeonStatusType
|
|
20
|
+
|
|
21
|
+
export type NeonColumnType = types.NeonColumnType
|
|
22
|
+
export type NeonTableType = types.NeonTableType
|
|
23
|
+
export type NeonFromType = types.NeonFromType
|
|
24
|
+
export type NeonWhereType = types.NeonWhereType
|
|
25
|
+
export type NeonOrderType = types.NeonOrderType
|
|
26
|
+
export type NeonInsertType = types.NeonInsertType
|
|
27
|
+
export type NeonUpdateType = types.NeonUpdateType
|
|
28
|
+
export type NeonBodyType = types.NeonBodyType
|
|
29
|
+
|
|
30
|
+
export type NeonCountQuery = types.NeonCountQuery
|
|
31
|
+
export type NeonSelectQuery = types.NeonSelectQuery
|
|
32
|
+
export type NeonInsertQuery = types.NeonInsertQuery
|
|
33
|
+
export type NeonUpdateQuery = types.NeonUpdateQuery
|
|
34
|
+
export type NeonDeleteQuery = types.NeonDeleteQuery
|
|
35
|
+
}
|