@una-ui/nuxt 0.4.0-beta.0 → 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 +4 -3
- 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 -106
- package/playground/.nuxt/imports.d.ts +12 -6
- 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 -1045
- 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,12 +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
|
-
'Dropdown': typeof import("../components/Dropdown.vue")['default']
|
|
7
7
|
'Extractor': typeof import("../components/Extractor.vue")['default']
|
|
8
8
|
'Form': typeof import("../components/Form.vue")['default']
|
|
9
9
|
'Radio': typeof import("../components/Radio.vue")['default']
|
|
10
|
+
'Slider': typeof import("../components/Slider.vue")['default']
|
|
10
11
|
'Switch': typeof import("../components/Switch.vue")['default']
|
|
11
12
|
'Tester': typeof import("../components/Tester.vue")['default']
|
|
12
13
|
'NAccordion': typeof import("../../src/runtime/components/elements/Accordion.vue")['default']
|
|
@@ -15,8 +16,6 @@ declare module 'vue' {
|
|
|
15
16
|
'NAvatarGroup': typeof import("../../src/runtime/components/elements/AvatarGroup.vue")['default']
|
|
16
17
|
'NBadge': typeof import("../../src/runtime/components/elements/Badge.vue")['default']
|
|
17
18
|
'NButton': typeof import("../../src/runtime/components/elements/Button.vue")['default']
|
|
18
|
-
'NDropdown': typeof import("../../src/runtime/components/elements/Dropdown/Dropdown.vue")['default']
|
|
19
|
-
'NDropdownMenuItem': typeof import("../../src/runtime/components/elements/Dropdown/DropdownMenuItem.vue")['default']
|
|
20
19
|
'NIcon': typeof import("../../src/runtime/components/elements/Icon.vue")['default']
|
|
21
20
|
'NIndicator': typeof import("../../src/runtime/components/elements/Indicator.vue")['default']
|
|
22
21
|
'NKbd': typeof import("../../src/runtime/components/elements/Kbd.vue")['default']
|
|
@@ -25,38 +24,42 @@ declare module 'vue' {
|
|
|
25
24
|
'NFormGroup': typeof import("../../src/runtime/components/forms/FormGroup.vue")['default']
|
|
26
25
|
'NInput': typeof import("../../src/runtime/components/forms/Input.vue")['default']
|
|
27
26
|
'NRadio': typeof import("../../src/runtime/components/forms/Radio.vue")['default']
|
|
27
|
+
'NSlider': typeof import("../../src/runtime/components/forms/Slider.vue")['default']
|
|
28
28
|
'NSwitch': typeof import("../../src/runtime/components/forms/Switch.vue")['default']
|
|
29
29
|
'NThemeSwitcher': typeof import("../../src/runtime/components/misc/ThemeSwitcher.vue")['default']
|
|
30
30
|
'NNavLink': typeof import("../../src/runtime/components/navigation/NavLink.vue")['default']
|
|
31
31
|
'NNavLinkGroup': typeof import("../../src/runtime/components/navigation/NavLinkGroup.vue")['default']
|
|
32
|
-
'UnoIcon': typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.
|
|
33
|
-
'NuxtWelcome': typeof import("../../../../node_modules/.pnpm
|
|
34
|
-
'NuxtLayout': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
35
|
-
'NuxtErrorBoundary': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
36
|
-
'ClientOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
37
|
-
'DevOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
38
|
-
'ServerPlaceholder': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
39
|
-
'NuxtLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
40
|
-
'NuxtLoadingIndicator': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
41
|
-
'
|
|
42
|
-
'
|
|
43
|
-
'
|
|
44
|
-
'
|
|
45
|
-
'
|
|
46
|
-
'
|
|
47
|
-
'
|
|
48
|
-
'
|
|
49
|
-
'
|
|
50
|
-
'
|
|
51
|
-
'
|
|
52
|
-
'
|
|
53
|
-
'
|
|
54
|
-
'
|
|
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']
|
|
55
58
|
'LazyColorMode': typeof import("../components/ColorMode.vue")['default']
|
|
56
|
-
'LazyDropdown': typeof import("../components/Dropdown.vue")['default']
|
|
57
59
|
'LazyExtractor': typeof import("../components/Extractor.vue")['default']
|
|
58
60
|
'LazyForm': typeof import("../components/Form.vue")['default']
|
|
59
61
|
'LazyRadio': typeof import("../components/Radio.vue")['default']
|
|
62
|
+
'LazySlider': typeof import("../components/Slider.vue")['default']
|
|
60
63
|
'LazySwitch': typeof import("../components/Switch.vue")['default']
|
|
61
64
|
'LazyTester': typeof import("../components/Tester.vue")['default']
|
|
62
65
|
'LazyNAccordion': typeof import("../../src/runtime/components/elements/Accordion.vue")['default']
|
|
@@ -65,8 +68,6 @@ declare module 'vue' {
|
|
|
65
68
|
'LazyNAvatarGroup': typeof import("../../src/runtime/components/elements/AvatarGroup.vue")['default']
|
|
66
69
|
'LazyNBadge': typeof import("../../src/runtime/components/elements/Badge.vue")['default']
|
|
67
70
|
'LazyNButton': typeof import("../../src/runtime/components/elements/Button.vue")['default']
|
|
68
|
-
'LazyNDropdown': typeof import("../../src/runtime/components/elements/Dropdown/Dropdown.vue")['default']
|
|
69
|
-
'LazyNDropdownMenuItem': typeof import("../../src/runtime/components/elements/Dropdown/DropdownMenuItem.vue")['default']
|
|
70
71
|
'LazyNIcon': typeof import("../../src/runtime/components/elements/Icon.vue")['default']
|
|
71
72
|
'LazyNIndicator': typeof import("../../src/runtime/components/elements/Indicator.vue")['default']
|
|
72
73
|
'LazyNKbd': typeof import("../../src/runtime/components/elements/Kbd.vue")['default']
|
|
@@ -75,41 +76,56 @@ declare module 'vue' {
|
|
|
75
76
|
'LazyNFormGroup': typeof import("../../src/runtime/components/forms/FormGroup.vue")['default']
|
|
76
77
|
'LazyNInput': typeof import("../../src/runtime/components/forms/Input.vue")['default']
|
|
77
78
|
'LazyNRadio': typeof import("../../src/runtime/components/forms/Radio.vue")['default']
|
|
79
|
+
'LazyNSlider': typeof import("../../src/runtime/components/forms/Slider.vue")['default']
|
|
78
80
|
'LazyNSwitch': typeof import("../../src/runtime/components/forms/Switch.vue")['default']
|
|
79
81
|
'LazyNThemeSwitcher': typeof import("../../src/runtime/components/misc/ThemeSwitcher.vue")['default']
|
|
80
82
|
'LazyNNavLink': typeof import("../../src/runtime/components/navigation/NavLink.vue")['default']
|
|
81
83
|
'LazyNNavLinkGroup': typeof import("../../src/runtime/components/navigation/NavLinkGroup.vue")['default']
|
|
82
|
-
'LazyUnoIcon': typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.
|
|
83
|
-
'LazyNuxtWelcome': typeof import("../../../../node_modules/.pnpm
|
|
84
|
-
'LazyNuxtLayout': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
85
|
-
'LazyNuxtErrorBoundary': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
86
|
-
'LazyClientOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
87
|
-
'LazyDevOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
88
|
-
'LazyServerPlaceholder': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
89
|
-
'LazyNuxtLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
90
|
-
'LazyNuxtLoadingIndicator': typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
91
|
-
'
|
|
92
|
-
'
|
|
93
|
-
'
|
|
94
|
-
'
|
|
95
|
-
'
|
|
96
|
-
'
|
|
97
|
-
'
|
|
98
|
-
'
|
|
99
|
-
'
|
|
100
|
-
'
|
|
101
|
-
'
|
|
102
|
-
'
|
|
103
|
-
'
|
|
104
|
-
|
|
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 { }
|
|
105
121
|
}
|
|
106
122
|
|
|
107
123
|
export const Accordion: typeof import("../components/Accordion.vue")['default']
|
|
108
124
|
export const ColorMode: typeof import("../components/ColorMode.vue")['default']
|
|
109
|
-
export const Dropdown: typeof import("../components/Dropdown.vue")['default']
|
|
110
125
|
export const Extractor: typeof import("../components/Extractor.vue")['default']
|
|
111
126
|
export const Form: typeof import("../components/Form.vue")['default']
|
|
112
127
|
export const Radio: typeof import("../components/Radio.vue")['default']
|
|
128
|
+
export const Slider: typeof import("../components/Slider.vue")['default']
|
|
113
129
|
export const Switch: typeof import("../components/Switch.vue")['default']
|
|
114
130
|
export const Tester: typeof import("../components/Tester.vue")['default']
|
|
115
131
|
export const NAccordion: typeof import("../../src/runtime/components/elements/Accordion.vue")['default']
|
|
@@ -118,8 +134,6 @@ export const NAvatar: typeof import("../../src/runtime/components/elements/Avata
|
|
|
118
134
|
export const NAvatarGroup: typeof import("../../src/runtime/components/elements/AvatarGroup.vue")['default']
|
|
119
135
|
export const NBadge: typeof import("../../src/runtime/components/elements/Badge.vue")['default']
|
|
120
136
|
export const NButton: typeof import("../../src/runtime/components/elements/Button.vue")['default']
|
|
121
|
-
export const NDropdown: typeof import("../../src/runtime/components/elements/Dropdown/Dropdown.vue")['default']
|
|
122
|
-
export const NDropdownMenuItem: typeof import("../../src/runtime/components/elements/Dropdown/DropdownMenuItem.vue")['default']
|
|
123
137
|
export const NIcon: typeof import("../../src/runtime/components/elements/Icon.vue")['default']
|
|
124
138
|
export const NIndicator: typeof import("../../src/runtime/components/elements/Indicator.vue")['default']
|
|
125
139
|
export const NKbd: typeof import("../../src/runtime/components/elements/Kbd.vue")['default']
|
|
@@ -128,38 +142,42 @@ export const NCheckbox: typeof import("../../src/runtime/components/forms/Checkb
|
|
|
128
142
|
export const NFormGroup: typeof import("../../src/runtime/components/forms/FormGroup.vue")['default']
|
|
129
143
|
export const NInput: typeof import("../../src/runtime/components/forms/Input.vue")['default']
|
|
130
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']
|
|
131
146
|
export const NSwitch: typeof import("../../src/runtime/components/forms/Switch.vue")['default']
|
|
132
147
|
export const NThemeSwitcher: typeof import("../../src/runtime/components/misc/ThemeSwitcher.vue")['default']
|
|
133
148
|
export const NNavLink: typeof import("../../src/runtime/components/navigation/NavLink.vue")['default']
|
|
134
149
|
export const NNavLinkGroup: typeof import("../../src/runtime/components/navigation/NavLinkGroup.vue")['default']
|
|
135
|
-
export const UnoIcon: typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.
|
|
136
|
-
export const NuxtWelcome: typeof import("../../../../node_modules/.pnpm
|
|
137
|
-
export const NuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
138
|
-
export const NuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
139
|
-
export const ClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
140
|
-
export const DevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
141
|
-
export const ServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
142
|
-
export const NuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
143
|
-
export const NuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
144
|
-
export const
|
|
145
|
-
export const
|
|
146
|
-
export const
|
|
147
|
-
export const
|
|
148
|
-
export const
|
|
149
|
-
export const
|
|
150
|
-
export const
|
|
151
|
-
export const
|
|
152
|
-
export const
|
|
153
|
-
export const
|
|
154
|
-
export const
|
|
155
|
-
export const
|
|
156
|
-
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']>
|
|
157
175
|
export const LazyAccordion: typeof import("../components/Accordion.vue")['default']
|
|
158
176
|
export const LazyColorMode: typeof import("../components/ColorMode.vue")['default']
|
|
159
|
-
export const LazyDropdown: typeof import("../components/Dropdown.vue")['default']
|
|
160
177
|
export const LazyExtractor: typeof import("../components/Extractor.vue")['default']
|
|
161
178
|
export const LazyForm: typeof import("../components/Form.vue")['default']
|
|
162
179
|
export const LazyRadio: typeof import("../components/Radio.vue")['default']
|
|
180
|
+
export const LazySlider: typeof import("../components/Slider.vue")['default']
|
|
163
181
|
export const LazySwitch: typeof import("../components/Switch.vue")['default']
|
|
164
182
|
export const LazyTester: typeof import("../components/Tester.vue")['default']
|
|
165
183
|
export const LazyNAccordion: typeof import("../../src/runtime/components/elements/Accordion.vue")['default']
|
|
@@ -168,8 +186,6 @@ export const LazyNAvatar: typeof import("../../src/runtime/components/elements/A
|
|
|
168
186
|
export const LazyNAvatarGroup: typeof import("../../src/runtime/components/elements/AvatarGroup.vue")['default']
|
|
169
187
|
export const LazyNBadge: typeof import("../../src/runtime/components/elements/Badge.vue")['default']
|
|
170
188
|
export const LazyNButton: typeof import("../../src/runtime/components/elements/Button.vue")['default']
|
|
171
|
-
export const LazyNDropdown: typeof import("../../src/runtime/components/elements/Dropdown/Dropdown.vue")['default']
|
|
172
|
-
export const LazyNDropdownMenuItem: typeof import("../../src/runtime/components/elements/Dropdown/DropdownMenuItem.vue")['default']
|
|
173
189
|
export const LazyNIcon: typeof import("../../src/runtime/components/elements/Icon.vue")['default']
|
|
174
190
|
export const LazyNIndicator: typeof import("../../src/runtime/components/elements/Indicator.vue")['default']
|
|
175
191
|
export const LazyNKbd: typeof import("../../src/runtime/components/elements/Kbd.vue")['default']
|
|
@@ -178,31 +194,35 @@ export const LazyNCheckbox: typeof import("../../src/runtime/components/forms/Ch
|
|
|
178
194
|
export const LazyNFormGroup: typeof import("../../src/runtime/components/forms/FormGroup.vue")['default']
|
|
179
195
|
export const LazyNInput: typeof import("../../src/runtime/components/forms/Input.vue")['default']
|
|
180
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']
|
|
181
198
|
export const LazyNSwitch: typeof import("../../src/runtime/components/forms/Switch.vue")['default']
|
|
182
199
|
export const LazyNThemeSwitcher: typeof import("../../src/runtime/components/misc/ThemeSwitcher.vue")['default']
|
|
183
200
|
export const LazyNNavLink: typeof import("../../src/runtime/components/navigation/NavLink.vue")['default']
|
|
184
201
|
export const LazyNNavLinkGroup: typeof import("../../src/runtime/components/navigation/NavLinkGroup.vue")['default']
|
|
185
|
-
export const LazyUnoIcon: typeof import("../../../../node_modules/.pnpm/@unocss+nuxt@0.
|
|
186
|
-
export const LazyNuxtWelcome: typeof import("../../../../node_modules/.pnpm
|
|
187
|
-
export const LazyNuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
188
|
-
export const LazyNuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
189
|
-
export const LazyClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
190
|
-
export const LazyDevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
191
|
-
export const LazyServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
192
|
-
export const LazyNuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
193
|
-
export const LazyNuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@3.
|
|
194
|
-
export const
|
|
195
|
-
export const
|
|
196
|
-
export const
|
|
197
|
-
export const
|
|
198
|
-
export const
|
|
199
|
-
export const
|
|
200
|
-
export const
|
|
201
|
-
export const
|
|
202
|
-
export const
|
|
203
|
-
export const
|
|
204
|
-
export const
|
|
205
|
-
export const
|
|
206
|
-
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']>
|
|
207
227
|
|
|
208
228
|
export const componentNames: string[]
|
|
@@ -1,28 +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
|
-
export { usePopper } from '../../src/runtime/composables/usePopper';
|
|
25
31
|
export { useUnaSettings } from '../../src/runtime/composables/useUnaSettings';
|
|
26
32
|
export { useUnaThemes } from '../../src/runtime/composables/useUnaThemes';
|
|
27
|
-
export { useColorMode } from '../../../../node_modules/.pnpm/@nuxtjs+color-mode@3.
|
|
28
|
-
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"
|