mapomodule 1.0.0-alpha.55 → 1.0.0-alpha.57
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/.nuxt/components.d.ts +53 -135
- package/.nuxt/eslint.config.d.mts +3 -3
- package/.nuxt/eslint.config.mjs +3 -3
- package/.nuxt/i18n.options.mjs +0 -71
- package/.nuxt/imports.d.ts +8 -8
- package/.nuxt/nuxt.d.ts +4 -5
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/tsconfig.json +71 -72
- package/.nuxt/tsconfig.server.json +50 -35
- package/.nuxt/types/build.d.ts +1 -2
- package/.nuxt/types/components.d.ts +97 -0
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +325 -313
- package/.nuxt/types/nitro-imports.d.ts +130 -130
- package/.nuxt/types/nitro-routes.d.ts +1 -1
- package/.nuxt/types/plugins.d.ts +19 -25
- package/.nuxt/types/schema.d.ts +55 -53
- package/.output/server/node_modules/@babel/parser/lib/index.js +14595 -0
- package/.output/server/node_modules/@babel/parser/package.json +50 -0
- package/.output/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +6741 -0
- package/.output/server/node_modules/@vue/compiler-core/package.json +58 -0
- package/.output/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +689 -0
- package/.output/server/node_modules/@vue/compiler-dom/package.json +57 -0
- package/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +1411 -0
- package/.output/server/node_modules/@vue/compiler-ssr/package.json +34 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/api/api.js +2 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/api/app.js +2 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/api/component.js +2 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/api/context.js +2 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/api/hooks.js +2 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/api/index.js +22 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/api/util.js +2 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/const.js +5 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/env.js +17 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/index.js +45 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/plugin.js +2 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/proxy.js +111 -0
- package/.output/server/node_modules/@vue/devtools-api/lib/cjs/time.js +28 -0
- package/.output/server/node_modules/@vue/devtools-api/package.json +37 -0
- package/.output/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +1807 -0
- package/.output/server/node_modules/@vue/reactivity/package.json +55 -0
- package/.output/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +6732 -0
- package/.output/server/node_modules/@vue/runtime-core/package.json +52 -0
- package/.output/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1703 -0
- package/.output/server/node_modules/@vue/runtime-dom/package.json +60 -0
- package/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +879 -0
- package/.output/server/node_modules/@vue/server-renderer/package.json +55 -0
- package/.output/server/node_modules/@vue/shared/dist/shared.cjs.prod.js +604 -0
- package/.output/server/node_modules/@vue/shared/package.json +47 -0
- package/.output/server/node_modules/devalue/index.js +3 -0
- package/.output/server/node_modules/devalue/package.json +37 -0
- package/.output/server/node_modules/devalue/src/base64.js +110 -0
- package/.output/server/node_modules/devalue/src/constants.js +6 -0
- package/.output/server/node_modules/devalue/src/parse.js +195 -0
- package/.output/server/node_modules/devalue/src/stringify.js +261 -0
- package/.output/server/node_modules/devalue/src/uneval.js +403 -0
- package/.output/server/node_modules/devalue/src/utils.js +114 -0
- package/.output/server/node_modules/entities/lib/decode.js +536 -0
- package/.output/server/node_modules/entities/lib/decode_codepoint.js +76 -0
- package/.output/server/node_modules/entities/lib/generated/decode-data-html.js +9 -0
- package/.output/server/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
- package/.output/server/node_modules/entities/package.json +90 -0
- package/.output/server/node_modules/estree-walker/dist/umd/estree-walker.js +344 -0
- package/.output/server/node_modules/estree-walker/package.json +37 -0
- package/.output/server/node_modules/hookable/dist/index.mjs +290 -0
- package/.output/server/node_modules/hookable/package.json +49 -0
- package/.output/server/node_modules/source-map-js/lib/array-set.js +121 -0
- package/.output/server/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/.output/server/node_modules/source-map-js/lib/base64.js +67 -0
- package/.output/server/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/.output/server/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/.output/server/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/.output/server/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/.output/server/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/.output/server/node_modules/source-map-js/lib/source-node.js +413 -0
- package/.output/server/node_modules/source-map-js/lib/util.js +594 -0
- package/.output/server/node_modules/source-map-js/package.json +71 -0
- package/.output/server/node_modules/source-map-js/source-map.js +8 -0
- package/.output/server/node_modules/ufo/dist/index.mjs +638 -0
- package/.output/server/node_modules/ufo/package.json +47 -0
- package/.output/server/node_modules/unhead/dist/index.mjs +9 -0
- package/.output/server/node_modules/unhead/dist/parser.mjs +508 -0
- package/.output/server/node_modules/unhead/dist/plugins.mjs +101 -0
- package/.output/server/node_modules/unhead/dist/scripts.mjs +30 -0
- package/.output/server/node_modules/unhead/dist/server.mjs +182 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.B578PsDV.mjs +266 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.BPM0-cfG.mjs +44 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.BYvz9V1x.mjs +43 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.BpRRHAhY.mjs +194 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.CApf5sj3.mjs +148 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.DH45uomy.mjs +180 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.DQc16pHI.mjs +196 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.DZbvapt-.mjs +70 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.Djo8ep_Y.mjs +166 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.yem5I2v_.mjs +38 -0
- package/.output/server/node_modules/unhead/dist/utils.mjs +5 -0
- package/.output/server/node_modules/unhead/package.json +105 -0
- package/.output/server/node_modules/vue/dist/vue.cjs.js +80 -0
- package/.output/server/node_modules/vue/dist/vue.cjs.prod.js +66 -0
- package/.output/server/node_modules/vue/index.js +7 -0
- package/.output/server/node_modules/vue/index.mjs +1 -0
- package/.output/server/node_modules/vue/package.json +112 -0
- package/.output/server/node_modules/vue/server-renderer/index.mjs +1 -0
- package/.output/server/node_modules/vue-bundle-renderer/dist/runtime.mjs +301 -0
- package/.output/server/node_modules/vue-bundle-renderer/package.json +55 -0
- package/.output/server/node_modules/vue-router/dist/devtools-BLCumUwL.mjs +1218 -0
- package/.output/server/node_modules/vue-router/dist/vue-router.mjs +1557 -0
- package/.output/server/node_modules/vue-router/package.json +154 -0
- package/.output/server/node_modules/vue-router/vue-router.node.mjs +2 -0
- package/CHANGELOG.md +16 -0
- package/package.json +3 -3
- package/.nuxt/component-chunk.mjs +0 -1
- package/.nuxt/dev/index.mjs +0 -2228
- package/.nuxt/dev/index.mjs.map +0 -1
- package/.nuxt/dist/server/client.manifest.json +0 -18
- package/.nuxt/dist/server/client.manifest.mjs +0 -1
- package/.nuxt/dist/server/server.mjs +0 -1
- package/.nuxt/nitro.json +0 -17
package/.nuxt/components.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import type { DefineComponent, SlotsType } from 'vue'
|
|
3
|
-
type IslandComponent<T
|
|
3
|
+
type IslandComponent<T> = DefineComponent<{}, {refresh: () => Promise<void>}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, SlotsType<{ fallback: { error: unknown } }>> & T
|
|
4
|
+
|
|
4
5
|
type HydrationStrategies = {
|
|
5
6
|
hydrateOnVisible?: IntersectionObserverInit | true
|
|
6
7
|
hydrateOnIdle?: number | true
|
|
@@ -10,89 +11,8 @@ type HydrationStrategies = {
|
|
|
10
11
|
hydrateWhen?: boolean
|
|
11
12
|
hydrateNever?: true
|
|
12
13
|
}
|
|
13
|
-
type LazyComponent<T> =
|
|
14
|
-
interface _GlobalComponents {
|
|
15
|
-
'ButtonUI': typeof import("../../@mapomodule/uikit/components/ButtonUI.vue")['default']
|
|
16
|
-
'HelloWorldUI': typeof import("../../@mapomodule/uikit/components/HelloWorldUI.vue")['default']
|
|
17
|
-
'LangSwitcher': typeof import("../../@mapomodule/uikit/components/LangSwitcher.vue")['default']
|
|
18
|
-
'Login': typeof import("../../@mapomodule/uikit/components/Login.vue")['default']
|
|
19
|
-
'LogoutButton': typeof import("../../@mapomodule/uikit/components/LogoutButton.vue")['default']
|
|
20
|
-
'LayoutSidebar': typeof import("../../@mapomodule/uikit/components/layout/Sidebar/Sidebar.vue")['default']
|
|
21
|
-
'LayoutSidebarList': typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarList.vue")['default']
|
|
22
|
-
'LayoutSidebarListItem': typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarListItem.vue")['default']
|
|
23
|
-
'LayoutSidebarProfile': typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarProfile.vue")['default']
|
|
24
|
-
'LayoutSidebarTitle': typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarTitle.vue")['default']
|
|
25
|
-
'LayoutTopbar': typeof import("../../@mapomodule/uikit/components/layout/Topbar/Topbar.vue")['default']
|
|
26
|
-
'LayoutRoutebuilder': typeof import("../../@mapomodule/uikit/components/layout/routebuilder")['default']
|
|
27
|
-
'NuxtWelcome': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/welcome.vue")['default']
|
|
28
|
-
'NuxtLayout': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
|
|
29
|
-
'NuxtErrorBoundary': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
|
|
30
|
-
'ClientOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/client-only")['default']
|
|
31
|
-
'DevOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/dev-only")['default']
|
|
32
|
-
'ServerPlaceholder': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/server-placeholder")['default']
|
|
33
|
-
'NuxtLink': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-link")['default']
|
|
34
|
-
'NuxtLoadingIndicator': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
|
|
35
|
-
'NuxtTime': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
|
|
36
|
-
'NuxtRouteAnnouncer': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
|
|
37
|
-
'NuxtImg': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
|
|
38
|
-
'NuxtPicture': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
|
|
39
|
-
'NuxtLinkLocale': typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.16_eslint@9.28.0_jiti@2.4.2__magicast@0.3.5_ro_a2bde89ab75206f602ddd423f8e0d671/node_modules/@nuxtjs/i18n/dist/runtime/components/NuxtLinkLocale")['default']
|
|
40
|
-
'SwitchLocalePathLink': typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.16_eslint@9.28.0_jiti@2.4.2__magicast@0.3.5_ro_a2bde89ab75206f602ddd423f8e0d671/node_modules/@nuxtjs/i18n/dist/runtime/components/SwitchLocalePathLink")['default']
|
|
41
|
-
'NuxtPage': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/pages/runtime/page")['default']
|
|
42
|
-
'NoScript': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['NoScript']
|
|
43
|
-
'Link': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Link']
|
|
44
|
-
'Base': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Base']
|
|
45
|
-
'Title': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Title']
|
|
46
|
-
'Meta': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Meta']
|
|
47
|
-
'Style': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Style']
|
|
48
|
-
'Head': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Head']
|
|
49
|
-
'Html': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Html']
|
|
50
|
-
'Body': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Body']
|
|
51
|
-
'NuxtIsland': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-island")['default']
|
|
52
|
-
'NuxtRouteAnnouncer': IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
53
|
-
'LazyButtonUI': LazyComponent<typeof import("../../@mapomodule/uikit/components/ButtonUI.vue")['default']>
|
|
54
|
-
'LazyHelloWorldUI': LazyComponent<typeof import("../../@mapomodule/uikit/components/HelloWorldUI.vue")['default']>
|
|
55
|
-
'LazyLangSwitcher': LazyComponent<typeof import("../../@mapomodule/uikit/components/LangSwitcher.vue")['default']>
|
|
56
|
-
'LazyLogin': LazyComponent<typeof import("../../@mapomodule/uikit/components/Login.vue")['default']>
|
|
57
|
-
'LazyLogoutButton': LazyComponent<typeof import("../../@mapomodule/uikit/components/LogoutButton.vue")['default']>
|
|
58
|
-
'LazyLayoutSidebar': LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/Sidebar/Sidebar.vue")['default']>
|
|
59
|
-
'LazyLayoutSidebarList': LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarList.vue")['default']>
|
|
60
|
-
'LazyLayoutSidebarListItem': LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarListItem.vue")['default']>
|
|
61
|
-
'LazyLayoutSidebarProfile': LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarProfile.vue")['default']>
|
|
62
|
-
'LazyLayoutSidebarTitle': LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarTitle.vue")['default']>
|
|
63
|
-
'LazyLayoutTopbar': LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/Topbar/Topbar.vue")['default']>
|
|
64
|
-
'LazyLayoutRoutebuilder': LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/routebuilder")['default']>
|
|
65
|
-
'LazyNuxtWelcome': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
|
|
66
|
-
'LazyNuxtLayout': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
|
|
67
|
-
'LazyNuxtErrorBoundary': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
|
|
68
|
-
'LazyClientOnly': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/client-only")['default']>
|
|
69
|
-
'LazyDevOnly': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/dev-only")['default']>
|
|
70
|
-
'LazyServerPlaceholder': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
71
|
-
'LazyNuxtLink': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
|
|
72
|
-
'LazyNuxtLoadingIndicator': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
|
|
73
|
-
'LazyNuxtTime': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
|
|
74
|
-
'LazyNuxtRouteAnnouncer': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
|
|
75
|
-
'LazyNuxtImg': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']>
|
|
76
|
-
'LazyNuxtPicture': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']>
|
|
77
|
-
'LazyNuxtLinkLocale': LazyComponent<typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.16_eslint@9.28.0_jiti@2.4.2__magicast@0.3.5_ro_a2bde89ab75206f602ddd423f8e0d671/node_modules/@nuxtjs/i18n/dist/runtime/components/NuxtLinkLocale")['default']>
|
|
78
|
-
'LazySwitchLocalePathLink': LazyComponent<typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.16_eslint@9.28.0_jiti@2.4.2__magicast@0.3.5_ro_a2bde89ab75206f602ddd423f8e0d671/node_modules/@nuxtjs/i18n/dist/runtime/components/SwitchLocalePathLink")['default']>
|
|
79
|
-
'LazyNuxtPage': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/pages/runtime/page")['default']>
|
|
80
|
-
'LazyNoScript': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
|
|
81
|
-
'LazyLink': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Link']>
|
|
82
|
-
'LazyBase': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Base']>
|
|
83
|
-
'LazyTitle': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Title']>
|
|
84
|
-
'LazyMeta': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Meta']>
|
|
85
|
-
'LazyStyle': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Style']>
|
|
86
|
-
'LazyHead': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Head']>
|
|
87
|
-
'LazyHtml': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Html']>
|
|
88
|
-
'LazyBody': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/head/runtime/components")['Body']>
|
|
89
|
-
'LazyNuxtIsland': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/nuxt-island")['default']>
|
|
90
|
-
'LazyNuxtRouteAnnouncer': LazyComponent<IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/server-placeholder")['default']>>
|
|
91
|
-
}
|
|
14
|
+
type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {}, {}, { hydrated: () => void }> & T
|
|
92
15
|
|
|
93
|
-
declare module 'vue' {
|
|
94
|
-
export interface GlobalComponents extends _GlobalComponents { }
|
|
95
|
-
}
|
|
96
16
|
|
|
97
17
|
export const ButtonUI: typeof import("../../@mapomodule/uikit/components/ButtonUI.vue")['default']
|
|
98
18
|
export const HelloWorldUI: typeof import("../../@mapomodule/uikit/components/HelloWorldUI.vue")['default']
|
|
@@ -106,32 +26,31 @@ export const LayoutSidebarProfile: typeof import("../../@mapomodule/uikit/compon
|
|
|
106
26
|
export const LayoutSidebarTitle: typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarTitle.vue")['default']
|
|
107
27
|
export const LayoutTopbar: typeof import("../../@mapomodule/uikit/components/layout/Topbar/Topbar.vue")['default']
|
|
108
28
|
export const LayoutRoutebuilder: typeof import("../../@mapomodule/uikit/components/layout/routebuilder")['default']
|
|
109
|
-
export const NuxtWelcome: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
110
|
-
export const NuxtLayout: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
111
|
-
export const NuxtErrorBoundary: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
112
|
-
export const ClientOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
113
|
-
export const DevOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
114
|
-
export const ServerPlaceholder: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
115
|
-
export const NuxtLink: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
116
|
-
export const NuxtLoadingIndicator: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
117
|
-
export const NuxtTime: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
118
|
-
export const NuxtRouteAnnouncer: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
119
|
-
export const NuxtImg: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
120
|
-
export const NuxtPicture: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
121
|
-
export const NuxtLinkLocale: typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.
|
|
122
|
-
export const SwitchLocalePathLink: typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.
|
|
123
|
-
export const NuxtPage: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
124
|
-
export const NoScript: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
125
|
-
export const Link: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
126
|
-
export const Base: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
127
|
-
export const Title: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
128
|
-
export const Meta: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
129
|
-
export const Style: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
130
|
-
export const Head: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
131
|
-
export const Html: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
132
|
-
export const Body: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
133
|
-
export const NuxtIsland: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
134
|
-
export const NuxtRouteAnnouncer: IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
29
|
+
export const NuxtWelcome: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/welcome.vue")['default']
|
|
30
|
+
export const NuxtLayout: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
|
|
31
|
+
export const NuxtErrorBoundary: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
|
|
32
|
+
export const ClientOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/client-only")['default']
|
|
33
|
+
export const DevOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/dev-only")['default']
|
|
34
|
+
export const ServerPlaceholder: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/server-placeholder")['default']
|
|
35
|
+
export const NuxtLink: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-link")['default']
|
|
36
|
+
export const NuxtLoadingIndicator: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
|
|
37
|
+
export const NuxtTime: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
|
|
38
|
+
export const NuxtRouteAnnouncer: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
|
|
39
|
+
export const NuxtImg: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
|
|
40
|
+
export const NuxtPicture: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
|
|
41
|
+
export const NuxtLinkLocale: typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.22_eslint@9.38.0_jiti@2.6.1__magicast@0.3.5_ro_3db5fffeb15343c114128339696b906e/node_modules/@nuxtjs/i18n/dist/runtime/components/NuxtLinkLocale")['default']
|
|
42
|
+
export const SwitchLocalePathLink: typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.22_eslint@9.38.0_jiti@2.6.1__magicast@0.3.5_ro_3db5fffeb15343c114128339696b906e/node_modules/@nuxtjs/i18n/dist/runtime/components/SwitchLocalePathLink")['default']
|
|
43
|
+
export const NuxtPage: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/pages/runtime/page")['default']
|
|
44
|
+
export const NoScript: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['NoScript']
|
|
45
|
+
export const Link: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Link']
|
|
46
|
+
export const Base: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Base']
|
|
47
|
+
export const Title: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Title']
|
|
48
|
+
export const Meta: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Meta']
|
|
49
|
+
export const Style: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Style']
|
|
50
|
+
export const Head: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Head']
|
|
51
|
+
export const Html: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Html']
|
|
52
|
+
export const Body: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Body']
|
|
53
|
+
export const NuxtIsland: typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-island")['default']
|
|
135
54
|
export const LazyButtonUI: LazyComponent<typeof import("../../@mapomodule/uikit/components/ButtonUI.vue")['default']>
|
|
136
55
|
export const LazyHelloWorldUI: LazyComponent<typeof import("../../@mapomodule/uikit/components/HelloWorldUI.vue")['default']>
|
|
137
56
|
export const LazyLangSwitcher: LazyComponent<typeof import("../../@mapomodule/uikit/components/LangSwitcher.vue")['default']>
|
|
@@ -144,31 +63,30 @@ export const LazyLayoutSidebarProfile: LazyComponent<typeof import("../../@mapom
|
|
|
144
63
|
export const LazyLayoutSidebarTitle: LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/Sidebar/SidebarTitle.vue")['default']>
|
|
145
64
|
export const LazyLayoutTopbar: LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/Topbar/Topbar.vue")['default']>
|
|
146
65
|
export const LazyLayoutRoutebuilder: LazyComponent<typeof import("../../@mapomodule/uikit/components/layout/routebuilder")['default']>
|
|
147
|
-
export const LazyNuxtWelcome: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
148
|
-
export const LazyNuxtLayout: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
149
|
-
export const LazyNuxtErrorBoundary: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
150
|
-
export const LazyClientOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
151
|
-
export const LazyDevOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
152
|
-
export const LazyServerPlaceholder: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
153
|
-
export const LazyNuxtLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
154
|
-
export const LazyNuxtLoadingIndicator: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
155
|
-
export const LazyNuxtTime: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
156
|
-
export const LazyNuxtRouteAnnouncer: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
157
|
-
export const LazyNuxtImg: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
158
|
-
export const LazyNuxtPicture: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
159
|
-
export const LazyNuxtLinkLocale: LazyComponent<typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.
|
|
160
|
-
export const LazySwitchLocalePathLink: LazyComponent<typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.
|
|
161
|
-
export const LazyNuxtPage: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
162
|
-
export const LazyNoScript: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
163
|
-
export const LazyLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
164
|
-
export const LazyBase: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
165
|
-
export const LazyTitle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
166
|
-
export const LazyMeta: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
167
|
-
export const LazyStyle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
168
|
-
export const LazyHead: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
169
|
-
export const LazyHtml: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
170
|
-
export const LazyBody: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
171
|
-
export const LazyNuxtIsland: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
172
|
-
export const LazyNuxtRouteAnnouncer: LazyComponent<IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/app/components/server-placeholder")['default']>>
|
|
66
|
+
export const LazyNuxtWelcome: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
|
|
67
|
+
export const LazyNuxtLayout: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
|
|
68
|
+
export const LazyNuxtErrorBoundary: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
|
|
69
|
+
export const LazyClientOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/client-only")['default']>
|
|
70
|
+
export const LazyDevOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/dev-only")['default']>
|
|
71
|
+
export const LazyServerPlaceholder: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
72
|
+
export const LazyNuxtLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
|
|
73
|
+
export const LazyNuxtLoadingIndicator: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
|
|
74
|
+
export const LazyNuxtTime: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
|
|
75
|
+
export const LazyNuxtRouteAnnouncer: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
|
|
76
|
+
export const LazyNuxtImg: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']>
|
|
77
|
+
export const LazyNuxtPicture: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']>
|
|
78
|
+
export const LazyNuxtLinkLocale: LazyComponent<typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.22_eslint@9.38.0_jiti@2.6.1__magicast@0.3.5_ro_3db5fffeb15343c114128339696b906e/node_modules/@nuxtjs/i18n/dist/runtime/components/NuxtLinkLocale")['default']>
|
|
79
|
+
export const LazySwitchLocalePathLink: LazyComponent<typeof import("../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.22_eslint@9.38.0_jiti@2.6.1__magicast@0.3.5_ro_3db5fffeb15343c114128339696b906e/node_modules/@nuxtjs/i18n/dist/runtime/components/SwitchLocalePathLink")['default']>
|
|
80
|
+
export const LazyNuxtPage: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/pages/runtime/page")['default']>
|
|
81
|
+
export const LazyNoScript: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
|
|
82
|
+
export const LazyLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Link']>
|
|
83
|
+
export const LazyBase: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Base']>
|
|
84
|
+
export const LazyTitle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Title']>
|
|
85
|
+
export const LazyMeta: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Meta']>
|
|
86
|
+
export const LazyStyle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Style']>
|
|
87
|
+
export const LazyHead: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Head']>
|
|
88
|
+
export const LazyHtml: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Html']>
|
|
89
|
+
export const LazyBody: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/head/runtime/components")['Body']>
|
|
90
|
+
export const LazyNuxtIsland: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/app/components/nuxt-island")['default']>
|
|
173
91
|
|
|
174
92
|
export const componentNames: string[]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { FlatConfigComposer } from "../../../node_modules/.pnpm/eslint-flat-config-utils@2.1.
|
|
2
|
-
import { defineFlatConfigs } from "../../../node_modules/.pnpm/@nuxt+eslint-config@1.2.0_@typescript-eslint+utils@8.
|
|
3
|
-
import type { NuxtESLintConfigOptionsResolved } from "../../../node_modules/.pnpm/@nuxt+eslint-config@1.2.0_@typescript-eslint+utils@8.
|
|
1
|
+
import type { FlatConfigComposer } from "../../../node_modules/.pnpm/eslint-flat-config-utils@2.1.4/node_modules/eslint-flat-config-utils/dist/index.mjs"
|
|
2
|
+
import { defineFlatConfigs } from "../../../node_modules/.pnpm/@nuxt+eslint-config@1.2.0_@typescript-eslint+utils@8.46.2_eslint@9.38.0_jiti@2.6.1__typ_00415214dc7acfb382fc6912a4255f36/node_modules/@nuxt/eslint-config/dist/flat.mjs"
|
|
3
|
+
import type { NuxtESLintConfigOptionsResolved } from "../../../node_modules/.pnpm/@nuxt+eslint-config@1.2.0_@typescript-eslint+utils@8.46.2_eslint@9.38.0_jiti@2.6.1__typ_00415214dc7acfb382fc6912a4255f36/node_modules/@nuxt/eslint-config/dist/flat.mjs"
|
|
4
4
|
|
|
5
5
|
declare const configs: FlatConfigComposer
|
|
6
6
|
declare const options: NuxtESLintConfigOptionsResolved
|
package/.nuxt/eslint.config.mjs
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import typegen from '../../../node_modules/.pnpm/eslint-typegen@2.
|
|
7
|
-
import { createConfigForNuxt, defineFlatConfigs, resolveOptions } from '../../../node_modules/.pnpm/@nuxt+eslint-config@1.2.0_@typescript-eslint+utils@8.
|
|
6
|
+
import typegen from '../../../node_modules/.pnpm/eslint-typegen@2.3.0_eslint@9.38.0_jiti@2.6.1_/node_modules/eslint-typegen/dist/index.mjs';
|
|
7
|
+
import { createConfigForNuxt, defineFlatConfigs, resolveOptions } from '../../../node_modules/.pnpm/@nuxt+eslint-config@1.2.0_@typescript-eslint+utils@8.46.2_eslint@9.38.0_jiti@2.6.1__typ_00415214dc7acfb382fc6912a4255f36/node_modules/@nuxt/eslint-config/dist/flat.mjs';
|
|
8
8
|
import { fileURLToPath } from 'url';
|
|
9
9
|
|
|
10
10
|
const r = (...args) => fileURLToPath(new URL(...args, import.meta.url))
|
|
@@ -37,7 +37,7 @@ configs.append(
|
|
|
37
37
|
{
|
|
38
38
|
name: 'nuxt/import-globals',
|
|
39
39
|
languageOptions: {
|
|
40
|
-
globals: Object.fromEntries(["useScriptTriggerConsent","useScriptEventPage","useScriptTriggerElement","useScript","useScriptGoogleAnalytics","useScriptPlausibleAnalytics","useScriptCrisp","useScriptClarity","useScriptCloudflareWebAnalytics","useScriptFathomAnalytics","useScriptMatomoAnalytics","useScriptGoogleTagManager","useScriptGoogleAdsense","useScriptSegment","useScriptMetaPixel","useScriptXPixel","useScriptIntercom","useScriptHotjar","useScriptStripe","useScriptLemonSqueezy","useScriptVimeoPlayer","useScriptYouTubePlayer","useScriptGoogleMaps","useScriptNpm","useScriptUmamiAnalytics","useScriptSnapchatPixel","useScriptRybbitAnalytics","isVue2","isVue3","defineNuxtLink","useNuxtApp","tryUseNuxtApp","defineNuxtPlugin","definePayloadPlugin","useRuntimeConfig","defineAppConfig","useAppConfig","updateAppConfig","defineNuxtComponent","useAsyncData","useLazyAsyncData","useNuxtData","refreshNuxtData","clearNuxtData","useHydration","callOnce","useState","clearNuxtState","clearError","createError","isNuxtError","showError","useError","useFetch","useLazyFetch","useCookie","refreshCookie","onPrehydrate","prerenderRoutes","useRequestHeader","useRequestHeaders","useResponseHeader","useRequestEvent","useRequestFetch","setResponseStatus","onNuxtReady","preloadComponents","prefetchComponents","preloadRouteComponents","abortNavigation","addRouteMiddleware","defineNuxtRouteMiddleware","setPageLayout","navigateTo","useRoute","useRouter","isPrerendered","loadPayload","preloadPayload","definePayloadReducer","definePayloadReviver","useLoadingIndicator","getAppManifest","getRouteRules","reloadNuxtApp","useRequestURL","usePreviewMode","useRouteAnnouncer","useRuntimeHook","useHead","useHeadSafe","useServerHeadSafe","useServerHead","useSeoMeta","useServerSeoMeta","injectHead","onBeforeRouteLeave","onBeforeRouteUpdate","withCtx","withDirectives","withKeys","withMemo","withModifiers","withScopeId","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onServerPrefetch","onUnmounted","onUpdated","computed","customRef","isProxy","isReactive","isReadonly","isRef","markRaw","proxyRefs","reactive","readonly","ref","shallowReactive","shallowReadonly","shallowRef","toRaw","toRef","toRefs","triggerRef","unref","watch","watchEffect","watchPostEffect","watchSyncEffect","isShallow","effect","effectScope","getCurrentScope","onScopeDispose","defineComponent","defineAsyncComponent","resolveComponent","getCurrentInstance","h","inject","hasInjectionContext","nextTick","provide","mergeModels","toValue","useModel","useAttrs","useCssModule","useCssVars","useSlots","useTransitionState","useId","useTemplateRef","useShadowRoot","Component","ComponentPublicInstance","ComputedRef","DirectiveBinding","ExtractDefaultPropTypes","ExtractPropTypes","ExtractPublicPropTypes","InjectionKey","PropType","Ref","MaybeRef","MaybeRefOrGetter","VNode","WritableComputedRef","requestIdleCallback","cancelIdleCallback","useAppStore","IAppState","ISidebarState","TAppStore","useMediaStore","IMediaState","useUserStore","IUserState","IInfo","IModelPermissions","IRawPermissions","ILoginParams","TUserStore","useCustomFetch","createRepository","transformRequestInMultipart","useDate","useLocale","useDefaults","useDisplay","useLayout","useRtl","useTheme","useI18n","useRouteBaseName","useLocalePath","useLocaleRoute","useSwitchLocalePath","useLocaleHead","useBrowserLocale","useCookieLocale","useSetI18nParams","defineI18nRoute","defineI18nLocale","defineI18nConfig","
|
|
40
|
+
globals: Object.fromEntries(["useScriptTriggerConsent","useScriptEventPage","useScriptTriggerElement","useScript","useScriptGoogleAnalytics","useScriptPlausibleAnalytics","useScriptCrisp","useScriptClarity","useScriptCloudflareWebAnalytics","useScriptFathomAnalytics","useScriptMatomoAnalytics","useScriptGoogleTagManager","useScriptGoogleAdsense","useScriptSegment","useScriptMetaPixel","useScriptXPixel","useScriptIntercom","useScriptHotjar","useScriptStripe","useScriptLemonSqueezy","useScriptVimeoPlayer","useScriptYouTubePlayer","useScriptGoogleMaps","useScriptNpm","useScriptUmamiAnalytics","useScriptSnapchatPixel","useScriptRybbitAnalytics","useScriptDatabuddyAnalytics","useScriptRedditPixel","useScriptPayPal","isVue2","isVue3","defineNuxtLink","useNuxtApp","tryUseNuxtApp","defineNuxtPlugin","definePayloadPlugin","useRuntimeConfig","defineAppConfig","useAppConfig","updateAppConfig","defineNuxtComponent","useAsyncData","useLazyAsyncData","useNuxtData","refreshNuxtData","clearNuxtData","useHydration","callOnce","useState","clearNuxtState","clearError","createError","isNuxtError","showError","useError","useFetch","useLazyFetch","useCookie","refreshCookie","onPrehydrate","prerenderRoutes","useRequestHeader","useRequestHeaders","useResponseHeader","useRequestEvent","useRequestFetch","setResponseStatus","onNuxtReady","preloadComponents","prefetchComponents","preloadRouteComponents","abortNavigation","addRouteMiddleware","defineNuxtRouteMiddleware","setPageLayout","navigateTo","useRoute","useRouter","isPrerendered","loadPayload","preloadPayload","definePayloadReducer","definePayloadReviver","useLoadingIndicator","getAppManifest","getRouteRules","reloadNuxtApp","useRequestURL","usePreviewMode","useRouteAnnouncer","useRuntimeHook","useHead","useHeadSafe","useServerHeadSafe","useServerHead","useSeoMeta","useServerSeoMeta","injectHead","onBeforeRouteLeave","onBeforeRouteUpdate","withCtx","withDirectives","withKeys","withMemo","withModifiers","withScopeId","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onServerPrefetch","onUnmounted","onUpdated","computed","customRef","isProxy","isReactive","isReadonly","isRef","markRaw","proxyRefs","reactive","readonly","ref","shallowReactive","shallowReadonly","shallowRef","toRaw","toRef","toRefs","triggerRef","unref","watch","watchEffect","watchPostEffect","watchSyncEffect","onWatcherCleanup","isShallow","effect","effectScope","getCurrentScope","onScopeDispose","defineComponent","defineAsyncComponent","resolveComponent","getCurrentInstance","h","inject","hasInjectionContext","nextTick","provide","mergeModels","toValue","useModel","useAttrs","useCssModule","useCssVars","useSlots","useTransitionState","useId","useTemplateRef","useShadowRoot","Component","ComponentPublicInstance","ComputedRef","DirectiveBinding","ExtractDefaultPropTypes","ExtractPropTypes","ExtractPublicPropTypes","InjectionKey","PropType","Ref","MaybeRef","MaybeRefOrGetter","VNode","WritableComputedRef","requestIdleCallback","cancelIdleCallback","setInterval","definePageMeta","useLink","defineLazyHydrationComponent","useAppStore","IAppState","ISidebarState","TAppStore","useMediaStore","IMediaState","useUserStore","IUserState","IInfo","IModelPermissions","IRawPermissions","ILoginParams","TUserStore","useCustomFetch","createRepository","transformRequestInMultipart","useDate","useLocale","useDefaults","useDisplay","useLayout","useRtl","useTheme","useGoTo","useI18n","useRouteBaseName","useLocalePath","useLocaleRoute","useSwitchLocalePath","useLocaleHead","useBrowserLocale","useCookieLocale","useSetI18nParams","defineI18nRoute","defineI18nLocale","defineI18nConfig","useNitroApp","useRuntimeConfig","useAppConfig","defineNitroPlugin","nitroPlugin","defineCachedFunction","defineCachedEventHandler","cachedFunction","cachedEventHandler","useStorage","defineRenderHandler","defineRouteMeta","getRouteRules","useEvent","defineTask","runTask","defineNitroErrorHandler","appendCorsHeaders","appendCorsPreflightHeaders","appendHeader","appendHeaders","appendResponseHeader","appendResponseHeaders","assertMethod","callNodeListener","clearResponseHeaders","clearSession","createApp","createAppEventHandler","createError","createEvent","createEventStream","createRouter","defaultContentType","defineEventHandler","defineLazyEventHandler","defineNodeListener","defineNodeMiddleware","defineRequestMiddleware","defineResponseMiddleware","defineWebSocket","defineWebSocketHandler","deleteCookie","dynamicEventHandler","eventHandler","fetchWithEvent","fromNodeMiddleware","fromPlainHandler","fromWebHandler","getCookie","getHeader","getHeaders","getMethod","getProxyRequestHeaders","getQuery","getRequestFingerprint","getRequestHeader","getRequestHeaders","getRequestHost","getRequestIP","getRequestPath","getRequestProtocol","getRequestURL","getRequestWebStream","getResponseHeader","getResponseHeaders","getResponseStatus","getResponseStatusText","getRouterParam","getRouterParams","getSession","getValidatedQuery","getValidatedRouterParams","handleCacheHeaders","handleCors","isCorsOriginAllowed","isError","isEvent","isEventHandler","isMethod","isPreflightRequest","isStream","isWebResponse","lazyEventHandler","parseCookies","promisifyNodeListener","proxyRequest","readBody","readFormData","readMultipartFormData","readRawBody","readValidatedBody","removeResponseHeader","sanitizeStatusCode","sanitizeStatusMessage","sealSession","send","sendError","sendIterable","sendNoContent","sendProxy","sendRedirect","sendStream","sendWebResponse","serveStatic","setCookie","setHeader","setHeaders","setResponseHeader","setResponseHeaders","setResponseStatus","splitCookiesString","toEventHandler","toNodeListener","toPlainHandler","toWebHandler","toWebRequest","unsealSession","updateSession","useBase","useSession","writeEarlyHints","__buildAssetsURL","__publicAssetsURL","defineAppConfig","defineI18nLocale","defineI18nConfig"].map(i => [i, 'readonly'])),
|
|
41
41
|
},
|
|
42
42
|
}
|
|
43
43
|
)
|
package/.nuxt/i18n.options.mjs
CHANGED
|
@@ -137,76 +137,5 @@ export const DEFAULT_COOKIE_KEY = "i18n_redirected"
|
|
|
137
137
|
export const DEFAULT_DYNAMIC_PARAMS_KEY = "nuxtI18nInternal"
|
|
138
138
|
export const SWITCH_LOCALE_PATH_LINK_IDENTIFIER = "nuxt-i18n-slp"
|
|
139
139
|
/** client **/
|
|
140
|
-
if(import.meta.hot) {
|
|
141
140
|
|
|
142
|
-
function deepEqual(a, b, ignoreKeys = []) {
|
|
143
|
-
// Same reference?
|
|
144
|
-
if (a === b) return true
|
|
145
|
-
|
|
146
|
-
// Check if either is null or not an object
|
|
147
|
-
if (a == null || b == null || typeof a !== 'object' || typeof b !== 'object') {
|
|
148
|
-
return false
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
// Get top-level keys, excluding ignoreKeys
|
|
152
|
-
const keysA = Object.keys(a).filter(k => !ignoreKeys.includes(k))
|
|
153
|
-
const keysB = Object.keys(b).filter(k => !ignoreKeys.includes(k))
|
|
154
|
-
|
|
155
|
-
// Must have the same number of keys (after ignoring)
|
|
156
|
-
if (keysA.length !== keysB.length) {
|
|
157
|
-
return false
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
// Check each property
|
|
161
|
-
for (const key of keysA) {
|
|
162
|
-
if (!keysB.includes(key)) {
|
|
163
|
-
return false
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
const valA = a[key]
|
|
167
|
-
const valB = b[key]
|
|
168
|
-
|
|
169
|
-
// Compare functions stringified
|
|
170
|
-
if (typeof valA === 'function' && typeof valB === 'function') {
|
|
171
|
-
if (valA.toString() !== valB.toString()) {
|
|
172
|
-
return false
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
// If nested, do a normal recursive check (no ignoring at deeper levels)
|
|
176
|
-
else if (typeof valA === 'object' && typeof valB === 'object') {
|
|
177
|
-
if (!deepEqual(valA, valB)) {
|
|
178
|
-
return false
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
// Compare primitive values
|
|
182
|
-
else if (valA !== valB) {
|
|
183
|
-
return false
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
return true
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
async function loadCfg(config) {
|
|
193
|
-
const nuxt = useNuxtApp()
|
|
194
|
-
const { default: resolver } = await config()
|
|
195
|
-
return typeof resolver === 'function' ? await nuxt.runWithContext(() => resolver()) : resolver
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
import.meta.hot.accept("../../@mapomodule/uikit/i18n/locales/en-US.ts", async mod => {
|
|
200
|
-
localeLoaders["en"][0].load = () => Promise.resolve(mod.default)
|
|
201
|
-
await useNuxtApp()._nuxtI18nDev.resetI18nProperties("en")
|
|
202
|
-
})
|
|
203
|
-
|
|
204
|
-
import.meta.hot.accept("../../@mapomodule/uikit/i18n/locales/it-IT.ts", async mod => {
|
|
205
|
-
localeLoaders["it"][0].load = () => Promise.resolve(mod.default)
|
|
206
|
-
await useNuxtApp()._nuxtI18nDev.resetI18nProperties("it")
|
|
207
|
-
})
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
}
|
|
212
141
|
/** client-end **/
|
package/.nuxt/imports.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptCrisp, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptUmamiAnalytics, useScriptSnapchatPixel, useScriptRybbitAnalytics } from '#app/composables/script-stubs';
|
|
1
|
+
export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptCrisp, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptUmamiAnalytics, useScriptSnapchatPixel, useScriptRybbitAnalytics, useScriptDatabuddyAnalytics, useScriptRedditPixel, useScriptPayPal } from '#app/composables/script-stubs';
|
|
2
2
|
export { isVue2, isVue3 } from 'vue-demi';
|
|
3
3
|
export { defineNuxtLink } from '#app/components/nuxt-link';
|
|
4
4
|
export { useNuxtApp, tryUseNuxtApp, defineNuxtPlugin, definePayloadPlugin, useRuntimeConfig, defineAppConfig } from '#app/nuxt';
|
|
@@ -25,17 +25,17 @@ export { useRouteAnnouncer } from '#app/composables/route-announcer';
|
|
|
25
25
|
export { useRuntimeHook } from '#app/composables/runtime-hook';
|
|
26
26
|
export { useHead, useHeadSafe, useServerHeadSafe, useServerHead, useSeoMeta, useServerSeoMeta, injectHead } from '#app/composables/head';
|
|
27
27
|
export { onBeforeRouteLeave, onBeforeRouteUpdate, useLink } from 'vue-router';
|
|
28
|
-
export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot, Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue';
|
|
28
|
+
export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, onWatcherCleanup, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot, Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue';
|
|
29
29
|
export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
|
|
30
|
+
export { setInterval } from '#app/compat/interval';
|
|
31
|
+
export { definePageMeta } from '../../../node_modules/.pnpm/nuxt@3.19.3_@parcel+watcher@2.5.1_@types+node@24.9.1_@vue+compiler-sfc@3.5.22_db0@0.3.4_ba5fa498351622d8732d425e08f2ed3c/node_modules/nuxt/dist/pages/runtime/composables';
|
|
32
|
+
export { defineLazyHydrationComponent } from '#app/composables/lazy-hydration';
|
|
30
33
|
export { useAppStore, IAppState, ISidebarState, TAppStore } from '../../@mapomodule/store/src/runtime/stores/app';
|
|
31
34
|
export { useMediaStore, IMediaState } from '../../@mapomodule/store/src/runtime/stores/media';
|
|
32
35
|
export { useUserStore, IUserState, IInfo, IModelPermissions, IRawPermissions, ILoginParams, TUserStore } from '../../@mapomodule/store/src/runtime/stores/user';
|
|
33
36
|
export { useCustomFetch } from '../../@mapomodule/store/src/runtime/composables/useCustomFetch';
|
|
34
37
|
export { createRepository } from '../../@mapomodule/core/src/runtime/api-utils/crud';
|
|
35
38
|
export { transformRequestInMultipart } from '../../@mapomodule/core/src/runtime/api-utils/multipart';
|
|
36
|
-
export { useDate } from 'vuetify
|
|
37
|
-
export {
|
|
38
|
-
export {
|
|
39
|
-
export { useRouteBaseName, useLocalePath, useLocaleRoute, useSwitchLocalePath, useLocaleHead, useBrowserLocale, useCookieLocale, useSetI18nParams, defineI18nRoute, defineI18nLocale, defineI18nConfig } from '../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.16_eslint@9.28.0_jiti@2.4.2__magicast@0.3.5_ro_a2bde89ab75206f602ddd423f8e0d671/node_modules/@nuxtjs/i18n/dist/runtime/composables/index';
|
|
40
|
-
export { useNuxtDevTools } from '../../../node_modules/.pnpm/@nuxt+devtools@2.5.0_vite@6.3.5_@types+node@24.0.0_jiti@2.4.2_sass-embedded@1.89.2_ters_e1cfc31d2a52e262f472c17eade96f6a/node_modules/@nuxt/devtools/dist/runtime/use-nuxt-devtools';
|
|
41
|
-
export { definePageMeta } from '../../../node_modules/.pnpm/nuxt@3.17.5_@parcel+watcher@2.5.1_@types+node@24.0.0_db0@0.3.2_encoding@0.1.13_eslint@9_accf3cf09593a492c13fcabd4d4fcd63/node_modules/nuxt/dist/pages/runtime/composables';
|
|
39
|
+
export { useDate, useLocale, useDefaults, useDisplay, useLayout, useRtl, useTheme, useGoTo } from 'vuetify';
|
|
40
|
+
export { useI18n } from '../../../node_modules/.pnpm/vue-i18n@10.0.8_vue@3.5.22_typescript@5.8.3_/node_modules/vue-i18n/dist/vue-i18n';
|
|
41
|
+
export { useRouteBaseName, useLocalePath, useLocaleRoute, useSwitchLocalePath, useLocaleHead, useBrowserLocale, useCookieLocale, useSetI18nParams, defineI18nRoute, defineI18nLocale, defineI18nConfig } from '../../../node_modules/.pnpm/@nuxtjs+i18n@9.3.1_@vue+compiler-dom@3.5.22_eslint@9.38.0_jiti@2.6.1__magicast@0.3.5_ro_3db5fffeb15343c114128339696b906e/node_modules/@nuxtjs/i18n/dist/runtime/composables/index';
|
package/.nuxt/nuxt.d.ts
CHANGED
|
@@ -2,13 +2,12 @@
|
|
|
2
2
|
/// <reference types="@nuxt/eslint" />
|
|
3
3
|
/// <reference types="@nuxt/test-utils" />
|
|
4
4
|
/// <reference types="@nuxt/eslint" />
|
|
5
|
-
/// <reference types="vuetify-nuxt-module" />
|
|
6
5
|
/// <reference types="@mapomodule/core" />
|
|
7
|
-
/// <reference types="@mapomodule/integrations" />
|
|
8
6
|
/// <reference types="@nuxtjs/i18n" />
|
|
9
7
|
/// <reference types="@mapomodule/store" />
|
|
10
|
-
/// <reference types="
|
|
8
|
+
/// <reference types="vuetify-nuxt-module" />
|
|
11
9
|
/// <reference types="@nuxt/devtools" />
|
|
10
|
+
/// <reference types="@nuxt/telemetry" />
|
|
12
11
|
/// <reference path="types/builder-env.d.ts" />
|
|
13
12
|
/// <reference types="nuxt" />
|
|
14
13
|
/// <reference path="types/app-defaults.d.ts" />
|
|
@@ -20,14 +19,14 @@
|
|
|
20
19
|
/// <reference types="vuetify" />
|
|
21
20
|
/// <reference types="vuetify-nuxt-module/custom-configuration" />
|
|
22
21
|
/// <reference types="vuetify-nuxt-module/configuration" />
|
|
23
|
-
/// <reference path="../../../node_modules/.pnpm/vuetify-nuxt-module@0.18.
|
|
22
|
+
/// <reference path="../../../node_modules/.pnpm/vuetify-nuxt-module@0.18.8_magicast@0.3.5_typescript@5.8.3_vite@7.1.11_@types+node@24.9_3e3f2eb793276dae7640ffc8bd2cfea9/node_modules/vuetify-nuxt-module/dist/runtime/plugins/types" />
|
|
24
23
|
/// <reference path="types/i18n-plugin.d.ts" />
|
|
25
24
|
/// <reference types="vue-router" />
|
|
26
25
|
/// <reference path="types/middleware.d.ts" />
|
|
27
26
|
/// <reference path="types/nitro-middleware.d.ts" />
|
|
28
27
|
/// <reference path="types/layouts.d.ts" />
|
|
29
28
|
/// <reference path="types/view-transitions.d.ts" />
|
|
30
|
-
/// <reference path="components.d.ts" />
|
|
29
|
+
/// <reference path="types/components.d.ts" />
|
|
31
30
|
/// <reference path="imports.d.ts" />
|
|
32
31
|
/// <reference path="types/imports.d.ts" />
|
|
33
32
|
/// <reference path="schema/nuxt.schema.d.ts" />
|
package/.nuxt/nuxt.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"_hash": "
|
|
2
|
+
"_hash": "0u9MPAoPloDrX-ooEVbgigROzxX1epNFmnh3z0LYbpE",
|
|
3
3
|
"project": {
|
|
4
4
|
"rootDir": "/Volumes/Development/Lotrek/Projects/mapo/packages/mapomodule"
|
|
5
5
|
},
|
|
6
6
|
"versions": {
|
|
7
|
-
"nuxt": "3.
|
|
7
|
+
"nuxt": "3.19.3"
|
|
8
8
|
}
|
|
9
9
|
}
|