@una-ui/nuxt 0.4.0-beta.5 → 0.5.0-beta.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/dist/module.json +5 -1
- package/dist/module.mjs +2 -1
- package/dist/runtime/components/elements/Accordion.vue +3 -2
- package/dist/runtime/components/elements/Alert.vue +1 -1
- package/dist/runtime/components/elements/Avatar.vue +2 -0
- package/dist/runtime/components/elements/Badge.vue +1 -1
- package/dist/runtime/components/elements/Link.vue.d.ts +1 -1
- package/dist/runtime/components/forms/Input.vue +1 -1
- package/dist/runtime/components/forms/Slider.vue +63 -0
- package/dist/runtime/components/navigation/NavLink.vue +2 -0
- package/dist/runtime/components/slots/AvatarGroupDefault.d.ts +2 -2
- package/dist/runtime/components/slots/FormGroupDefault.d.ts +1 -1
- package/dist/runtime/components/slots/FormGroupLabel.d.ts +6 -5
- package/dist/runtime/composables/{useUnaSettings.mjs → useUnaSettings.js} +1 -1
- package/dist/runtime/composables/useUnaThemes.d.ts +1 -1
- package/dist/runtime/composables/{useUnaThemes.mjs → useUnaThemes.js} +1 -1
- package/dist/runtime/plugins/{theme.client.mjs → theme.client.js} +1 -1
- package/dist/runtime/plugins/{theme.server.mjs → theme.server.js} +1 -1
- package/dist/runtime/types/accordion.d.ts +6 -1
- package/dist/runtime/types/avatar-group.d.ts +1 -1
- package/dist/runtime/types/avatar.d.ts +4 -0
- package/dist/runtime/types/form-group.d.ts +3 -3
- package/dist/runtime/types/index.d.ts +18 -17
- package/dist/runtime/types/index.js +18 -0
- package/dist/runtime/types/nav-link-group.d.ts +1 -1
- package/dist/runtime/types/nav-link.d.ts +2 -2
- package/dist/runtime/types/slider.d.ts +37 -0
- package/dist/runtime/types/switch.js +0 -0
- package/dist/runtime/utils/cn.d.ts +2 -0
- package/dist/runtime/utils/cn.js +5 -0
- package/dist/runtime/utils/index.d.ts +1 -0
- package/dist/runtime/utils/{index.mjs → index.js} +1 -0
- package/dist/types.d.mts +1 -16
- package/dist/types.d.ts +1 -16
- package/package.json +23 -19
- package/playground/.nuxt/components.d.ts +126 -94
- package/playground/.nuxt/imports.d.ts +12 -5
- package/playground/.nuxt/nuxt.d.ts +5 -4
- package/playground/.nuxt/types/app-defaults.d.ts +7 -0
- package/playground/.nuxt/types/app.config.d.ts +2 -4
- package/playground/.nuxt/types/build.d.ts +22 -0
- package/playground/.nuxt/types/imports.d.ts +1142 -1042
- package/playground/.nuxt/types/middleware.d.ts +6 -0
- package/playground/.nuxt/types/nitro-config.d.ts +1 -1
- package/playground/.nuxt/types/nitro-imports.d.ts +128 -119
- package/playground/.nuxt/types/nitro-nuxt.d.ts +4 -1
- package/playground/.nuxt/types/nitro-routes.d.ts +1 -1
- package/playground/.nuxt/types/plugins.d.ts +19 -11
- package/playground/.nuxt/types/schema.d.ts +13 -8
- package/playground/.nuxt/types/vue-shim.d.ts +0 -5
- package/dist/runtime/types/index.mjs +0 -17
- package/playground/.nuxt/vue-router-stub.d.ts +0 -1
- /package/dist/runtime/components/slots/{AvatarGroupDefault.mjs → AvatarGroupDefault.js} +0 -0
- /package/dist/runtime/components/slots/{FormGroupDefault.mjs → FormGroupDefault.js} +0 -0
- /package/dist/runtime/components/slots/{FormGroupLabel.mjs → FormGroupLabel.js} +0 -0
- /package/dist/runtime/types/{accordion.mjs → accordion.js} +0 -0
- /package/dist/runtime/types/{alert.mjs → alert.js} +0 -0
- /package/dist/runtime/types/{avatar-group.mjs → avatar-group.js} +0 -0
- /package/dist/runtime/types/{avatar.mjs → avatar.js} +0 -0
- /package/dist/runtime/types/{badge.mjs → badge.js} +0 -0
- /package/dist/runtime/types/{button.mjs → button.js} +0 -0
- /package/dist/runtime/types/{checkbox.mjs → checkbox.js} +0 -0
- /package/dist/runtime/types/{form-group.mjs → form-group.js} +0 -0
- /package/dist/runtime/types/{icon.mjs → icon.js} +0 -0
- /package/dist/runtime/types/{indicator.mjs → indicator.js} +0 -0
- /package/dist/runtime/types/{input.mjs → input.js} +0 -0
- /package/dist/runtime/types/{kbd.mjs → kbd.js} +0 -0
- /package/dist/runtime/types/{link.mjs → link.js} +0 -0
- /package/dist/runtime/types/{nav-link-group.mjs → nav-link-group.js} +0 -0
- /package/dist/runtime/types/{nav-link.mjs → nav-link.js} +0 -0
- /package/dist/runtime/types/{radio.mjs → radio.js} +0 -0
- /package/dist/runtime/types/{switch.mjs → slider.js} +0 -0
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
|
|
2
|
+
import type { DefineComponent, SlotsType } from 'vue'
|
|
3
|
+
type IslandComponent<T extends DefineComponent> = T & DefineComponent<{}, {refresh: () => Promise<void>}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, SlotsType<{ fallback: { error: unknown } }>>
|
|
4
|
+
interface _GlobalComponents {
|
|
5
|
+
'Accordion': typeof import("../components/Accordion.vue")['default']
|
|
5
6
|
'ColorMode': typeof import("../components/ColorMode.vue")['default']
|
|
6
7
|
'Extractor': typeof import("../components/Extractor.vue")['default']
|
|
7
8
|
'Form': typeof import("../components/Form.vue")['default']
|
|
8
9
|
'Radio': typeof import("../components/Radio.vue")['default']
|
|
10
|
+
'Slider': typeof import("../components/Slider.vue")['default']
|
|
9
11
|
'Switch': typeof import("../components/Switch.vue")['default']
|
|
10
12
|
'Tester': typeof import("../components/Tester.vue")['default']
|
|
11
13
|
'NAccordion': typeof import("../../src/runtime/components/elements/Accordion.vue")['default']
|
|
@@ -22,37 +24,42 @@ declare module 'vue' {
|
|
|
22
24
|
'NFormGroup': typeof import("../../src/runtime/components/forms/FormGroup.vue")['default']
|
|
23
25
|
'NInput': typeof import("../../src/runtime/components/forms/Input.vue")['default']
|
|
24
26
|
'NRadio': typeof import("../../src/runtime/components/forms/Radio.vue")['default']
|
|
27
|
+
'NSlider': typeof import("../../src/runtime/components/forms/Slider.vue")['default']
|
|
25
28
|
'NSwitch': typeof import("../../src/runtime/components/forms/Switch.vue")['default']
|
|
26
29
|
'NThemeSwitcher': typeof import("../../src/runtime/components/misc/ThemeSwitcher.vue")['default']
|
|
27
30
|
'NNavLink': typeof import("../../src/runtime/components/navigation/NavLink.vue")['default']
|
|
28
31
|
'NNavLinkGroup': typeof import("../../src/runtime/components/navigation/NavLinkGroup.vue")['default']
|
|
29
|
-
'UnoIcon': typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.
|
|
30
|
-
'NuxtWelcome': typeof import("../../../../node_modules/.pnpm
|
|
31
|
-
'NuxtLayout': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
32
|
-
'NuxtErrorBoundary': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
33
|
-
'ClientOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
34
|
-
'DevOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
35
|
-
'ServerPlaceholder': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
36
|
-
'NuxtLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
37
|
-
'NuxtLoadingIndicator': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
38
|
-
'
|
|
39
|
-
'
|
|
40
|
-
'
|
|
41
|
-
'
|
|
42
|
-
'
|
|
43
|
-
'
|
|
44
|
-
'
|
|
45
|
-
'
|
|
46
|
-
'
|
|
47
|
-
'
|
|
48
|
-
'
|
|
49
|
-
'
|
|
50
|
-
'
|
|
51
|
-
'
|
|
32
|
+
'UnoIcon': typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.61.5_magicast@0.3.4_postcss@8.4.39_rollup@4.18.1_vite@5.3.4_@types+node@20.14._eqe5lugm5phyelt7nf6gsrj7oi/node_modules/@unocss/nuxt/runtime/UnoIcon.vue")['default']
|
|
33
|
+
'NuxtWelcome': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/welcome")['default']
|
|
34
|
+
'NuxtLayout': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
|
|
35
|
+
'NuxtErrorBoundary': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
|
|
36
|
+
'ClientOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/client-only")['default']
|
|
37
|
+
'DevOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/dev-only")['default']
|
|
38
|
+
'ServerPlaceholder': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/server-placeholder")['default']
|
|
39
|
+
'NuxtLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-link")['default']
|
|
40
|
+
'NuxtLoadingIndicator': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
|
|
41
|
+
'NuxtRouteAnnouncer': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
|
|
42
|
+
'NuxtImg': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
|
|
43
|
+
'NuxtPicture': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
|
|
44
|
+
'ColorScheme': typeof import("../../../../node_modules/.pnpm/@nuxtjs+color-mode@3.4.2_magicast@0.3.4_rollup@4.18.1/node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue")['default']
|
|
45
|
+
'NuxtPage': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
|
|
46
|
+
'NoScript': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['NoScript']
|
|
47
|
+
'Link': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Link']
|
|
48
|
+
'Base': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Base']
|
|
49
|
+
'Title': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Title']
|
|
50
|
+
'Meta': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Meta']
|
|
51
|
+
'Style': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Style']
|
|
52
|
+
'Head': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Head']
|
|
53
|
+
'Html': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Html']
|
|
54
|
+
'Body': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Body']
|
|
55
|
+
'NuxtIsland': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-island")['default']
|
|
56
|
+
'NuxtRouteAnnouncer': IslandComponent<typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
57
|
+
'LazyAccordion': typeof import("../components/Accordion.vue")['default']
|
|
52
58
|
'LazyColorMode': typeof import("../components/ColorMode.vue")['default']
|
|
53
59
|
'LazyExtractor': typeof import("../components/Extractor.vue")['default']
|
|
54
60
|
'LazyForm': typeof import("../components/Form.vue")['default']
|
|
55
61
|
'LazyRadio': typeof import("../components/Radio.vue")['default']
|
|
62
|
+
'LazySlider': typeof import("../components/Slider.vue")['default']
|
|
56
63
|
'LazySwitch': typeof import("../components/Switch.vue")['default']
|
|
57
64
|
'LazyTester': typeof import("../components/Tester.vue")['default']
|
|
58
65
|
'LazyNAccordion': typeof import("../../src/runtime/components/elements/Accordion.vue")['default']
|
|
@@ -69,33 +76,48 @@ declare module 'vue' {
|
|
|
69
76
|
'LazyNFormGroup': typeof import("../../src/runtime/components/forms/FormGroup.vue")['default']
|
|
70
77
|
'LazyNInput': typeof import("../../src/runtime/components/forms/Input.vue")['default']
|
|
71
78
|
'LazyNRadio': typeof import("../../src/runtime/components/forms/Radio.vue")['default']
|
|
79
|
+
'LazyNSlider': typeof import("../../src/runtime/components/forms/Slider.vue")['default']
|
|
72
80
|
'LazyNSwitch': typeof import("../../src/runtime/components/forms/Switch.vue")['default']
|
|
73
81
|
'LazyNThemeSwitcher': typeof import("../../src/runtime/components/misc/ThemeSwitcher.vue")['default']
|
|
74
82
|
'LazyNNavLink': typeof import("../../src/runtime/components/navigation/NavLink.vue")['default']
|
|
75
83
|
'LazyNNavLinkGroup': typeof import("../../src/runtime/components/navigation/NavLinkGroup.vue")['default']
|
|
76
|
-
'LazyUnoIcon': typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.
|
|
77
|
-
'LazyNuxtWelcome': typeof import("../../../../node_modules/.pnpm
|
|
78
|
-
'LazyNuxtLayout': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
79
|
-
'LazyNuxtErrorBoundary': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
80
|
-
'LazyClientOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
81
|
-
'LazyDevOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
82
|
-
'LazyServerPlaceholder': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
83
|
-
'LazyNuxtLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
84
|
-
'LazyNuxtLoadingIndicator': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
85
|
-
'
|
|
86
|
-
'
|
|
87
|
-
'
|
|
88
|
-
'
|
|
89
|
-
'
|
|
90
|
-
'
|
|
91
|
-
'
|
|
92
|
-
'
|
|
93
|
-
'
|
|
94
|
-
'
|
|
95
|
-
'
|
|
96
|
-
'
|
|
97
|
-
'
|
|
98
|
-
|
|
84
|
+
'LazyUnoIcon': typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.61.5_magicast@0.3.4_postcss@8.4.39_rollup@4.18.1_vite@5.3.4_@types+node@20.14._eqe5lugm5phyelt7nf6gsrj7oi/node_modules/@unocss/nuxt/runtime/UnoIcon.vue")['default']
|
|
85
|
+
'LazyNuxtWelcome': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/welcome")['default']
|
|
86
|
+
'LazyNuxtLayout': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
|
|
87
|
+
'LazyNuxtErrorBoundary': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
|
|
88
|
+
'LazyClientOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/client-only")['default']
|
|
89
|
+
'LazyDevOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/dev-only")['default']
|
|
90
|
+
'LazyServerPlaceholder': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/server-placeholder")['default']
|
|
91
|
+
'LazyNuxtLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-link")['default']
|
|
92
|
+
'LazyNuxtLoadingIndicator': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
|
|
93
|
+
'LazyNuxtRouteAnnouncer': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
|
|
94
|
+
'LazyNuxtImg': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
|
|
95
|
+
'LazyNuxtPicture': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
|
|
96
|
+
'LazyColorScheme': typeof import("../../../../node_modules/.pnpm/@nuxtjs+color-mode@3.4.2_magicast@0.3.4_rollup@4.18.1/node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue")['default']
|
|
97
|
+
'LazyNuxtPage': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
|
|
98
|
+
'LazyNoScript': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['NoScript']
|
|
99
|
+
'LazyLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Link']
|
|
100
|
+
'LazyBase': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Base']
|
|
101
|
+
'LazyTitle': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Title']
|
|
102
|
+
'LazyMeta': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Meta']
|
|
103
|
+
'LazyStyle': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Style']
|
|
104
|
+
'LazyHead': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Head']
|
|
105
|
+
'LazyHtml': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Html']
|
|
106
|
+
'LazyBody': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Body']
|
|
107
|
+
'LazyNuxtIsland': typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-island")['default']
|
|
108
|
+
'LazyNuxtRouteAnnouncer': IslandComponent<typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
declare module '@vue/runtime-core' {
|
|
112
|
+
export interface GlobalComponents extends _GlobalComponents { }
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
declare module '@vue/runtime-dom' {
|
|
116
|
+
export interface GlobalComponents extends _GlobalComponents { }
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
declare module 'vue' {
|
|
120
|
+
export interface GlobalComponents extends _GlobalComponents { }
|
|
99
121
|
}
|
|
100
122
|
|
|
101
123
|
export const Accordion: typeof import("../components/Accordion.vue")['default']
|
|
@@ -103,6 +125,7 @@ export const ColorMode: typeof import("../components/ColorMode.vue")['default']
|
|
|
103
125
|
export const Extractor: typeof import("../components/Extractor.vue")['default']
|
|
104
126
|
export const Form: typeof import("../components/Form.vue")['default']
|
|
105
127
|
export const Radio: typeof import("../components/Radio.vue")['default']
|
|
128
|
+
export const Slider: typeof import("../components/Slider.vue")['default']
|
|
106
129
|
export const Switch: typeof import("../components/Switch.vue")['default']
|
|
107
130
|
export const Tester: typeof import("../components/Tester.vue")['default']
|
|
108
131
|
export const NAccordion: typeof import("../../src/runtime/components/elements/Accordion.vue")['default']
|
|
@@ -119,37 +142,42 @@ export const NCheckbox: typeof import("../../src/runtime/components/forms/Checkb
|
|
|
119
142
|
export const NFormGroup: typeof import("../../src/runtime/components/forms/FormGroup.vue")['default']
|
|
120
143
|
export const NInput: typeof import("../../src/runtime/components/forms/Input.vue")['default']
|
|
121
144
|
export const NRadio: typeof import("../../src/runtime/components/forms/Radio.vue")['default']
|
|
145
|
+
export const NSlider: typeof import("../../src/runtime/components/forms/Slider.vue")['default']
|
|
122
146
|
export const NSwitch: typeof import("../../src/runtime/components/forms/Switch.vue")['default']
|
|
123
147
|
export const NThemeSwitcher: typeof import("../../src/runtime/components/misc/ThemeSwitcher.vue")['default']
|
|
124
148
|
export const NNavLink: typeof import("../../src/runtime/components/navigation/NavLink.vue")['default']
|
|
125
149
|
export const NNavLinkGroup: typeof import("../../src/runtime/components/navigation/NavLinkGroup.vue")['default']
|
|
126
|
-
export const UnoIcon: typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.
|
|
127
|
-
export const NuxtWelcome: typeof import("../../../../node_modules/.pnpm
|
|
128
|
-
export const NuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
129
|
-
export const NuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
130
|
-
export const ClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
131
|
-
export const DevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
132
|
-
export const ServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
133
|
-
export const NuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
134
|
-
export const NuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
135
|
-
export const
|
|
136
|
-
export const
|
|
137
|
-
export const
|
|
138
|
-
export const
|
|
139
|
-
export const
|
|
140
|
-
export const
|
|
141
|
-
export const
|
|
142
|
-
export const
|
|
143
|
-
export const
|
|
144
|
-
export const
|
|
145
|
-
export const
|
|
146
|
-
export const
|
|
147
|
-
export const
|
|
150
|
+
export const UnoIcon: typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.61.5_magicast@0.3.4_postcss@8.4.39_rollup@4.18.1_vite@5.3.4_@types+node@20.14._eqe5lugm5phyelt7nf6gsrj7oi/node_modules/@unocss/nuxt/runtime/UnoIcon.vue")['default']
|
|
151
|
+
export const NuxtWelcome: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/welcome")['default']
|
|
152
|
+
export const NuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
|
|
153
|
+
export const NuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
|
|
154
|
+
export const ClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/client-only")['default']
|
|
155
|
+
export const DevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/dev-only")['default']
|
|
156
|
+
export const ServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/server-placeholder")['default']
|
|
157
|
+
export const NuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-link")['default']
|
|
158
|
+
export const NuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
|
|
159
|
+
export const NuxtRouteAnnouncer: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
|
|
160
|
+
export const NuxtImg: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
|
|
161
|
+
export const NuxtPicture: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
|
|
162
|
+
export const ColorScheme: typeof import("../../../../node_modules/.pnpm/@nuxtjs+color-mode@3.4.2_magicast@0.3.4_rollup@4.18.1/node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue")['default']
|
|
163
|
+
export const NuxtPage: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
|
|
164
|
+
export const NoScript: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['NoScript']
|
|
165
|
+
export const Link: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Link']
|
|
166
|
+
export const Base: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Base']
|
|
167
|
+
export const Title: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Title']
|
|
168
|
+
export const Meta: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Meta']
|
|
169
|
+
export const Style: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Style']
|
|
170
|
+
export const Head: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Head']
|
|
171
|
+
export const Html: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Html']
|
|
172
|
+
export const Body: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Body']
|
|
173
|
+
export const NuxtIsland: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-island")['default']
|
|
174
|
+
export const NuxtRouteAnnouncer: IslandComponent<typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
148
175
|
export const LazyAccordion: typeof import("../components/Accordion.vue")['default']
|
|
149
176
|
export const LazyColorMode: typeof import("../components/ColorMode.vue")['default']
|
|
150
177
|
export const LazyExtractor: typeof import("../components/Extractor.vue")['default']
|
|
151
178
|
export const LazyForm: typeof import("../components/Form.vue")['default']
|
|
152
179
|
export const LazyRadio: typeof import("../components/Radio.vue")['default']
|
|
180
|
+
export const LazySlider: typeof import("../components/Slider.vue")['default']
|
|
153
181
|
export const LazySwitch: typeof import("../components/Switch.vue")['default']
|
|
154
182
|
export const LazyTester: typeof import("../components/Tester.vue")['default']
|
|
155
183
|
export const LazyNAccordion: typeof import("../../src/runtime/components/elements/Accordion.vue")['default']
|
|
@@ -166,31 +194,35 @@ export const LazyNCheckbox: typeof import("../../src/runtime/components/forms/Ch
|
|
|
166
194
|
export const LazyNFormGroup: typeof import("../../src/runtime/components/forms/FormGroup.vue")['default']
|
|
167
195
|
export const LazyNInput: typeof import("../../src/runtime/components/forms/Input.vue")['default']
|
|
168
196
|
export const LazyNRadio: typeof import("../../src/runtime/components/forms/Radio.vue")['default']
|
|
197
|
+
export const LazyNSlider: typeof import("../../src/runtime/components/forms/Slider.vue")['default']
|
|
169
198
|
export const LazyNSwitch: typeof import("../../src/runtime/components/forms/Switch.vue")['default']
|
|
170
199
|
export const LazyNThemeSwitcher: typeof import("../../src/runtime/components/misc/ThemeSwitcher.vue")['default']
|
|
171
200
|
export const LazyNNavLink: typeof import("../../src/runtime/components/navigation/NavLink.vue")['default']
|
|
172
201
|
export const LazyNNavLinkGroup: typeof import("../../src/runtime/components/navigation/NavLinkGroup.vue")['default']
|
|
173
|
-
export const LazyUnoIcon: typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.
|
|
174
|
-
export const LazyNuxtWelcome: typeof import("../../../../node_modules/.pnpm
|
|
175
|
-
export const LazyNuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
176
|
-
export const LazyNuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
177
|
-
export const LazyClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
178
|
-
export const LazyDevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
179
|
-
export const LazyServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
180
|
-
export const LazyNuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
181
|
-
export const LazyNuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
182
|
-
export const
|
|
183
|
-
export const
|
|
184
|
-
export const
|
|
185
|
-
export const
|
|
186
|
-
export const
|
|
187
|
-
export const
|
|
188
|
-
export const
|
|
189
|
-
export const
|
|
190
|
-
export const
|
|
191
|
-
export const
|
|
192
|
-
export const
|
|
193
|
-
export const
|
|
194
|
-
export const
|
|
202
|
+
export const LazyUnoIcon: typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.61.5_magicast@0.3.4_postcss@8.4.39_rollup@4.18.1_vite@5.3.4_@types+node@20.14._eqe5lugm5phyelt7nf6gsrj7oi/node_modules/@unocss/nuxt/runtime/UnoIcon.vue")['default']
|
|
203
|
+
export const LazyNuxtWelcome: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/welcome")['default']
|
|
204
|
+
export const LazyNuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
|
|
205
|
+
export const LazyNuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
|
|
206
|
+
export const LazyClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/client-only")['default']
|
|
207
|
+
export const LazyDevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/dev-only")['default']
|
|
208
|
+
export const LazyServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/server-placeholder")['default']
|
|
209
|
+
export const LazyNuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-link")['default']
|
|
210
|
+
export const LazyNuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
|
|
211
|
+
export const LazyNuxtRouteAnnouncer: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
|
|
212
|
+
export const LazyNuxtImg: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
|
|
213
|
+
export const LazyNuxtPicture: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
|
|
214
|
+
export const LazyColorScheme: typeof import("../../../../node_modules/.pnpm/@nuxtjs+color-mode@3.4.2_magicast@0.3.4_rollup@4.18.1/node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue")['default']
|
|
215
|
+
export const LazyNuxtPage: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
|
|
216
|
+
export const LazyNoScript: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['NoScript']
|
|
217
|
+
export const LazyLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Link']
|
|
218
|
+
export const LazyBase: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Base']
|
|
219
|
+
export const LazyTitle: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Title']
|
|
220
|
+
export const LazyMeta: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Meta']
|
|
221
|
+
export const LazyStyle: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Style']
|
|
222
|
+
export const LazyHead: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Head']
|
|
223
|
+
export const LazyHtml: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Html']
|
|
224
|
+
export const LazyBody: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/head/runtime/components")['Body']
|
|
225
|
+
export const LazyNuxtIsland: typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/nuxt-island")['default']
|
|
226
|
+
export const LazyNuxtRouteAnnouncer: IslandComponent<typeof import("../../../../node_modules/.pnpm/nuxt@3.12.3_@parcel+watcher@2.4.1_@types+node@20.14.11_eslint@8.57.0_ioredis@5.4.1_magicast@0_leplkxuf4g24xss27hacjje4ki/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
195
227
|
|
|
196
228
|
export const componentNames: string[]
|
|
@@ -1,27 +1,34 @@
|
|
|
1
|
+
export { useConsentScriptTrigger, useAnalyticsPageEvent, useElementScriptTrigger, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm } from '#app/composables/script-stubs';
|
|
1
2
|
export { isVue2, isVue3 } from 'vue-demi';
|
|
2
3
|
export { defineNuxtLink } from '#app/components/nuxt-link';
|
|
3
|
-
export { useNuxtApp, defineNuxtPlugin, definePayloadPlugin, useRuntimeConfig, defineAppConfig } from '#app/nuxt';
|
|
4
|
+
export { useNuxtApp, tryUseNuxtApp, defineNuxtPlugin, definePayloadPlugin, useRuntimeConfig, defineAppConfig } from '#app/nuxt';
|
|
4
5
|
export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
|
|
6
|
+
export { setInterval } from '#app/compat/interval';
|
|
5
7
|
export { useAppConfig, updateAppConfig } from '#app/config';
|
|
6
8
|
export { defineNuxtComponent } from '#app/composables/component';
|
|
7
9
|
export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData } from '#app/composables/asyncData';
|
|
8
10
|
export { useHydration } from '#app/composables/hydrate';
|
|
11
|
+
export { callOnce } from '#app/composables/once';
|
|
9
12
|
export { useState, clearNuxtState } from '#app/composables/state';
|
|
10
13
|
export { clearError, createError, isNuxtError, showError, useError } from '#app/composables/error';
|
|
11
14
|
export { useFetch, useLazyFetch } from '#app/composables/fetch';
|
|
12
|
-
export { useCookie } from '#app/composables/cookie';
|
|
13
|
-
export { prerenderRoutes, useRequestHeaders, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
|
|
15
|
+
export { useCookie, refreshCookie } from '#app/composables/cookie';
|
|
16
|
+
export { onPrehydrate, prerenderRoutes, useRequestHeader, useRequestHeaders, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
|
|
14
17
|
export { onNuxtReady } from '#app/composables/ready';
|
|
15
18
|
export { preloadComponents, prefetchComponents, preloadRouteComponents } from '#app/composables/preload';
|
|
16
19
|
export { abortNavigation, addRouteMiddleware, defineNuxtRouteMiddleware, setPageLayout, navigateTo, useRoute, useRouter, onBeforeRouteLeave, onBeforeRouteUpdate } from '#app/composables/router';
|
|
17
20
|
export { isPrerendered, loadPayload, preloadPayload, definePayloadReducer, definePayloadReviver } from '#app/composables/payload';
|
|
21
|
+
export { useLoadingIndicator } from '#app/composables/loading-indicator';
|
|
18
22
|
export { getAppManifest, getRouteRules } from '#app/composables/manifest';
|
|
19
23
|
export { reloadNuxtApp } from '#app/composables/chunk';
|
|
20
24
|
export { useRequestURL } from '#app/composables/url';
|
|
25
|
+
export { usePreviewMode } from '#app/composables/preview';
|
|
26
|
+
export { useId } from '#app/composables/id';
|
|
27
|
+
export { useRouteAnnouncer } from '#app/composables/route-announcer';
|
|
21
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, defineModel, defineOptions, defineSlots, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, Component, ComponentPublicInstance, ComputedRef, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode } from 'vue';
|
|
22
29
|
export { computedAsync, asyncComputed, computedEager, eagerComputed, computedInject, computedWithControl, controlledComputed, createEventHook, createGlobalState, createInjectionState, createReusableTemplate, createSharedComposable, createTemplatePromise, createUnrefFn, extendRef, injectLocal, isDefined, makeDestructurable, onClickOutside, onKeyStroke, onLongPress, onStartTyping, provideLocal, reactify, createReactiveFn, reactifyObject, reactiveComputed, reactiveOmit, reactivePick, refAutoReset, autoResetRef, refDebounced, useDebounce, debouncedRef, refDefault, refThrottled, useThrottle, throttledRef, refWithControl, controlledRef, syncRef, syncRefs, templateRef, toReactive, resolveRef, resolveUnref, tryOnBeforeMount, tryOnBeforeUnmount, tryOnMounted, tryOnScopeDispose, tryOnUnmounted, unrefElement, until, useActiveElement, useAnimate, useArrayDifference, useArrayEvery, useArrayFilter, useArrayFind, useArrayFindIndex, useArrayFindLast, useArrayIncludes, useArrayJoin, useArrayMap, useArrayReduce, useArraySome, useArrayUnique, useAsyncQueue, useAsyncState, useBase64, useBattery, useBluetooth, useBreakpoints, useBroadcastChannel, useBrowserLocation, useCached, useClipboard, useClipboardItems, useCloned, useConfirmDialog, useCounter, useCssVar, useCurrentElement, useCycleList, useDark, useDateFormat, useDebouncedRefHistory, useDebounceFn, useDeviceMotion, useDeviceOrientation, useDevicePixelRatio, useDevicesList, useDisplayMedia, useDocumentVisibility, useDraggable, useDropZone, useElementBounding, useElementByPoint, useElementHover, useElementSize, useElementVisibility, useEventBus, useEventListener, useEventSource, useEyeDropper, useFavicon, useFileDialog, useFileSystemAccess, useFocus, useFocusWithin, useFps, useFullscreen, useGamepad, useGeolocation, useIdle, useInfiniteScroll, useIntersectionObserver, useInterval, useIntervalFn, useKeyModifier, useLastChanged, useLocalStorage, useMagicKeys, useManualRefHistory, useMediaControls, useMediaQuery, useMemoize, useMemory, useMounted, useMouse, useMouseInElement, useMousePressed, useMutationObserver, useNavigatorLanguage, useNetwork, useNow, useObjectUrl, useOffsetPagination, useOnline, usePageLeave, useParallax, useParentElement, usePerformanceObserver, usePermission, usePointer, usePointerLock, usePointerSwipe, usePreferredColorScheme, usePreferredContrast, usePreferredDark, usePreferredLanguages, usePreferredReducedMotion, usePrevious, useRafFn, useRefHistory, useResizeObserver, useScreenOrientation, useScreenSafeArea, useScriptTag, useScroll, useScrollLock, useSessionStorage, useShare, useSorted, useSpeechRecognition, useSpeechSynthesis, useStepper, useStorageAsync, useStyleTag, useSupported, useSwipe, useTemplateRefsList, useTextareaAutosize, useTextDirection, useTextSelection, useThrottledRefHistory, useThrottleFn, useTimeAgo, useTimeout, useTimeoutFn, useTimeoutPoll, useTimestamp, useToggle, useToNumber, useToString, useTransition, useUrlSearchParams, useUserMedia, useVibrate, useVirtualList, useVModel, useVModels, useWakeLock, useWebNotification, useWebSocket, useWebWorker, useWebWorkerFn, useWindowFocus, useWindowScroll, useWindowSize, watchArray, watchAtMost, watchDebounced, debouncedWatch, watchDeep, watchIgnorable, ignorableWatch, watchImmediate, watchOnce, watchPausable, pausableWatch, watchThrottled, throttledWatch, watchTriggerable, watchWithFilter, whenever } from '@vueuse/core';
|
|
23
30
|
export { injectHead, useHead, useSeoMeta, useHeadSafe, useServerHead, useServerSeoMeta, useServerHeadSafe } from '@unhead/vue';
|
|
24
31
|
export { useUnaSettings } from '../../src/runtime/composables/useUnaSettings';
|
|
25
32
|
export { useUnaThemes } from '../../src/runtime/composables/useUnaThemes';
|
|
26
|
-
export { useColorMode } from '../../../../node_modules/.pnpm/@nuxtjs+color-mode@3.
|
|
27
|
-
export { useNuxtDevTools } from '../../../../node_modules/.pnpm/@nuxt+devtools@1.
|
|
33
|
+
export { useColorMode } from '../../../../node_modules/.pnpm/@nuxtjs+color-mode@3.4.2_magicast@0.3.4_rollup@4.18.1/node_modules/@nuxtjs/color-mode/dist/runtime/composables';
|
|
34
|
+
export { useNuxtDevTools } from '../../../../node_modules/.pnpm/@nuxt+devtools@1.3.9_rollup@3.29.4_vite@5.3.4_@types+node@20.14.11_sass@1.77.8_terser@5.31.3_/node_modules/@nuxt/devtools/dist/runtime/use-nuxt-devtools';
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
// Generated by nuxi
|
|
2
2
|
/// <reference types="../src/module" />
|
|
3
|
-
/// <reference types="@nuxt/devtools" />
|
|
4
3
|
/// <reference types="@nuxt/telemetry" />
|
|
4
|
+
/// <reference types="@nuxt/devtools" />
|
|
5
5
|
/// <reference types="nuxt" />
|
|
6
|
+
/// <reference path="types/app-defaults.d.ts" />
|
|
6
7
|
/// <reference path="types/plugins.d.ts" />
|
|
7
|
-
/// <reference path="types/
|
|
8
|
+
/// <reference path="types/build.d.ts" />
|
|
8
9
|
/// <reference path="types/schema.d.ts" />
|
|
9
10
|
/// <reference path="types/app.config.d.ts" />
|
|
10
11
|
/// <reference types="vite/client" />
|
|
12
|
+
/// <reference path="types/middleware.d.ts" />
|
|
11
13
|
/// <reference path="components.d.ts" />
|
|
12
|
-
/// <reference path="types/imports.d.ts" />
|
|
13
14
|
/// <reference path="imports.d.ts" />
|
|
14
|
-
/// <reference path="
|
|
15
|
+
/// <reference path="types/imports.d.ts" />
|
|
15
16
|
/// <reference path="schema/nuxt.schema.d.ts" />
|
|
16
17
|
/// <reference path="types/nitro.d.ts" />
|
|
17
18
|
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
|
|
2
2
|
import type { CustomAppConfig } from 'nuxt/schema'
|
|
3
3
|
import type { Defu } from 'defu'
|
|
4
|
-
import cfg0 from "
|
|
4
|
+
import cfg0 from "../../app.config"
|
|
5
5
|
|
|
6
6
|
declare const inlineConfig = {
|
|
7
|
-
"nuxt": {
|
|
8
|
-
"buildId": "dev"
|
|
9
|
-
},
|
|
7
|
+
"nuxt": {},
|
|
10
8
|
"una": {
|
|
11
9
|
"primary": "yellow",
|
|
12
10
|
"gray": "stone"
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare module "#build/app-component.mjs";
|
|
2
|
+
declare module "#build/nitro.client.mjs";
|
|
3
|
+
declare module "#build/plugins/client.mjs";
|
|
4
|
+
declare module "#build/css.mjs";
|
|
5
|
+
declare module "#build/fetch.mjs";
|
|
6
|
+
declare module "#build/error-component.mjs";
|
|
7
|
+
declare module "#build/layouts.mjs";
|
|
8
|
+
declare module "#build/middleware.mjs";
|
|
9
|
+
declare module "#build/nuxt.config.mjs";
|
|
10
|
+
declare module "#build/paths.mjs";
|
|
11
|
+
declare module "#build/root-component.mjs";
|
|
12
|
+
declare module "#build/plugins/server.mjs";
|
|
13
|
+
declare module "#build/test-component-wrapper.mjs";
|
|
14
|
+
declare module "#build/unocss.mjs";
|
|
15
|
+
declare module "#build/color-mode-options.mjs";
|
|
16
|
+
declare module "#build/devtools/settings.mjs";
|
|
17
|
+
declare module "#build/pages.mjs";
|
|
18
|
+
declare module "#build/unhead-plugins.mjs";
|
|
19
|
+
declare module "#build/unhead.config.mjs";
|
|
20
|
+
declare module "#build/components.plugin.mjs";
|
|
21
|
+
declare module "#build/component-names.mjs";
|
|
22
|
+
declare module "#build/components.islands.mjs";
|