nuxt-ignis 0.2.5 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.data/content/contents.sqlite +0 -0
- package/.env +43 -0
- package/.nuxt/app.config.mjs +18 -0
- package/.nuxt/component-chunk.mjs +1 -0
- package/.nuxt/components.d.ts +322 -0
- package/.nuxt/content/components.ts +51 -0
- package/.nuxt/content/database.compressed.mjs +1 -0
- package/.nuxt/content/manifest.ts +33 -0
- package/.nuxt/content/sql_dump +6 -0
- package/.nuxt/content/types.d.ts +13 -0
- package/.nuxt/dist/server/client.manifest.json +18 -0
- package/.nuxt/dist/server/client.manifest.mjs +18 -0
- package/.nuxt/dist/server/server.mjs +1 -0
- package/.nuxt/eslint-typegen.d.ts +9401 -0
- package/.nuxt/eslint.config.d.mts +9 -0
- package/.nuxt/eslint.config.mjs +53 -0
- package/.nuxt/i18n.options.mjs +165 -0
- package/.nuxt/imports.d.ts +82 -0
- package/.nuxt/manifest/latest.json +1 -0
- package/.nuxt/manifest/meta/dev.json +1 -0
- package/.nuxt/mdc-configs.mjs +8 -0
- package/.nuxt/mdc-highlighter.mjs +213 -0
- package/.nuxt/mdc-image-component.mjs +1 -0
- package/.nuxt/mdc-imports.mjs +12 -0
- package/.nuxt/module/@nuxtjs-sitemap.d.ts +28 -0
- package/.nuxt/module/nuxt-robots.d.ts +35 -0
- package/.nuxt/module/nuxt-seo-utils.assets.d.ts +25 -0
- package/.nuxt/module/nuxt-seo-utils.d.ts +22 -0
- package/.nuxt/module/nuxt-site-config.d.ts +43 -0
- package/.nuxt/modules/@nuxt-scripts.d.ts +13 -0
- package/.nuxt/nitro.json +17 -0
- package/.nuxt/nuxt-fonts-global.css +0 -0
- package/.nuxt/nuxt-i18n-logger.mjs +1 -0
- package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
- package/.nuxt/nuxt-icon-server-bundle.mjs +15 -0
- package/.nuxt/nuxt.d.ts +49 -0
- package/.nuxt/nuxt.json +9 -0
- package/.nuxt/schema/nuxt.schema.d.ts +17 -0
- package/.nuxt/schema/nuxt.schema.json +3 -0
- package/.nuxt/tailwind/postcss.mjs +15 -0
- package/.nuxt/tsconfig.json +374 -0
- package/.nuxt/tsconfig.server.json +292 -0
- package/.nuxt/types/app-defaults.d.ts +7 -0
- package/.nuxt/types/app.config.d.ts +31 -0
- package/.nuxt/types/build.d.ts +27 -0
- package/.nuxt/types/builder-env.d.ts +1 -0
- package/.nuxt/types/i18n-plugin.d.ts +104 -0
- package/.nuxt/types/imports.d.ts +899 -0
- package/.nuxt/types/layouts.d.ts +7 -0
- package/.nuxt/types/middleware.d.ts +7 -0
- package/.nuxt/types/neon.d.ts +35 -0
- package/.nuxt/types/nitro-config.d.ts +14 -0
- package/.nuxt/types/nitro-imports.d.ts +405 -0
- package/.nuxt/types/nitro-middleware.d.ts +6 -0
- package/.nuxt/types/nitro-nuxt.d.ts +34 -0
- package/.nuxt/types/nitro-routes.d.ts +81 -0
- package/.nuxt/types/nitro.d.ts +3 -0
- package/.nuxt/types/plugins.d.ts +57 -0
- package/.nuxt/types/schema.d.ts +1372 -0
- package/.nuxt/types/ui.d.ts +35 -0
- package/.nuxt/types/vue-shim.d.ts +0 -0
- package/.nuxt/ui/accordion.ts +20 -0
- package/.nuxt/ui/alert.ts +264 -0
- package/.nuxt/ui/avatar-group.ts +52 -0
- package/.nuxt/ui/avatar.ts +54 -0
- package/.nuxt/ui/badge.ts +263 -0
- package/.nuxt/ui/breadcrumb.ts +45 -0
- package/.nuxt/ui/button-group.ts +16 -0
- package/.nuxt/ui/button.ts +378 -0
- package/.nuxt/ui/calendar.ts +103 -0
- package/.nuxt/ui/card.ts +34 -0
- package/.nuxt/ui/carousel.ts +38 -0
- package/.nuxt/ui/checkbox-group.ts +204 -0
- package/.nuxt/ui/checkbox.ts +236 -0
- package/.nuxt/ui/chip.ts +96 -0
- package/.nuxt/ui/collapsible.ts +6 -0
- package/.nuxt/ui/color-picker.ts +47 -0
- package/.nuxt/ui/command-palette.ts +50 -0
- package/.nuxt/ui/container.ts +3 -0
- package/.nuxt/ui/context-menu.ts +216 -0
- package/.nuxt/ui/drawer.ts +126 -0
- package/.nuxt/ui/dropdown-menu.ts +217 -0
- package/.nuxt/ui/form-field.ts +48 -0
- package/.nuxt/ui/form.ts +3 -0
- package/.nuxt/ui/index.ts +50 -0
- package/.nuxt/ui/input-menu.ts +436 -0
- package/.nuxt/ui/input-number.ts +245 -0
- package/.nuxt/ui/input.ts +289 -0
- package/.nuxt/ui/kbd.ts +31 -0
- package/.nuxt/ui/link.ts +22 -0
- package/.nuxt/ui/modal.ts +29 -0
- package/.nuxt/ui/navigation-menu.ts +501 -0
- package/.nuxt/ui/pagination.ts +13 -0
- package/.nuxt/ui/pin-input.ts +171 -0
- package/.nuxt/ui/popover.ts +6 -0
- package/.nuxt/ui/progress.ts +297 -0
- package/.nuxt/ui/radio-group.ts +350 -0
- package/.nuxt/ui/select-menu.ts +346 -0
- package/.nuxt/ui/select.ts +341 -0
- package/.nuxt/ui/separator.ts +172 -0
- package/.nuxt/ui/skeleton.ts +3 -0
- package/.nuxt/ui/slideover.ts +71 -0
- package/.nuxt/ui/slider.ts +171 -0
- package/.nuxt/ui/stepper.ts +202 -0
- package/.nuxt/ui/switch.ts +131 -0
- package/.nuxt/ui/table.ts +147 -0
- package/.nuxt/ui/tabs.ts +256 -0
- package/.nuxt/ui/textarea.ts +294 -0
- package/.nuxt/ui/toast.ts +81 -0
- package/.nuxt/ui/toaster.ts +91 -0
- package/.nuxt/ui/tooltip.ts +9 -0
- package/.nuxt/ui/tree.ts +154 -0
- package/.nuxt/ui-image-component.ts +1 -0
- package/.nuxt/ui.css +143 -0
- package/app.vue +16 -36
- package/assets/css/nuxt-ui.css +16 -0
- package/assets/css/tailwind.css +10 -44
- package/components/AppFeature.vue +47 -3
- package/components/AppFeatureList.vue +86 -26
- package/components/CurrentTime.vue +9 -9
- package/components/ignis/IgnisFooter.vue +16 -0
- package/components/ignis/IgnisHeader.vue +48 -0
- package/components/ignis/IgnisInfo.vue +26 -0
- package/composables/useTranslation.ts +11 -4
- package/content/second.md +4 -0
- package/features.ts +129 -23
- package/i18n/i18n.config.ts +2 -2
- package/{assets/lang → i18n/locales}/en.json +6 -1
- package/i18n/locales/es.json +4 -0
- package/nuxt.config.ts +26 -2
- package/package.json +71 -79
- package/pages/ignis.vue +3 -0
- package/pages/index.vue +1 -12
- package/tailwind.config.ts +2 -1
- package/utils/i18n-sources.ts +20 -2
- package/vueform.config.ts +20 -0
- package/.gitattributes +0 -2
- package/CHANGELOG.md +0 -72
- package/LICENSE +0 -21
- package/README.md +0 -147
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"forceConsistentCasingInFileNames": true,
|
|
4
|
+
"strict": true,
|
|
5
|
+
"noEmit": true,
|
|
6
|
+
"target": "ESNext",
|
|
7
|
+
"module": "ESNext",
|
|
8
|
+
"moduleResolution": "Bundler",
|
|
9
|
+
"allowJs": true,
|
|
10
|
+
"resolveJsonModule": true,
|
|
11
|
+
"jsx": "preserve",
|
|
12
|
+
"allowSyntheticDefaultImports": true,
|
|
13
|
+
"jsxFactory": "h",
|
|
14
|
+
"jsxFragmentFactory": "Fragment",
|
|
15
|
+
"paths": {
|
|
16
|
+
"#imports": [
|
|
17
|
+
"./types/nitro-imports"
|
|
18
|
+
],
|
|
19
|
+
"~/*": [
|
|
20
|
+
"../*"
|
|
21
|
+
],
|
|
22
|
+
"@/*": [
|
|
23
|
+
"../*"
|
|
24
|
+
],
|
|
25
|
+
"~~/*": [
|
|
26
|
+
"../*"
|
|
27
|
+
],
|
|
28
|
+
"@@/*": [
|
|
29
|
+
"../*"
|
|
30
|
+
],
|
|
31
|
+
"nitropack/types": [
|
|
32
|
+
"../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/types"
|
|
33
|
+
],
|
|
34
|
+
"nitropack/runtime": [
|
|
35
|
+
"../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/runtime"
|
|
36
|
+
],
|
|
37
|
+
"nitropack": [
|
|
38
|
+
"../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack"
|
|
39
|
+
],
|
|
40
|
+
"h3": [
|
|
41
|
+
"../node_modules/.pnpm/h3@1.15.3/node_modules/h3"
|
|
42
|
+
],
|
|
43
|
+
"ofetch": [
|
|
44
|
+
"../node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch"
|
|
45
|
+
],
|
|
46
|
+
"@unhead/vue": [
|
|
47
|
+
"../node_modules/.pnpm/@unhead+vue@2.0.9_vue@3.5.14_typescript@5.8.3_/node_modules/@unhead/vue"
|
|
48
|
+
],
|
|
49
|
+
"@nuxt/devtools": [
|
|
50
|
+
"../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@6_1dedbaa3bcdbced3d429534f9b1d1d28/node_modules/@nuxt/devtools"
|
|
51
|
+
],
|
|
52
|
+
"@vue/runtime-core": [
|
|
53
|
+
"../node_modules/.pnpm/@vue+runtime-core@3.5.14/node_modules/@vue/runtime-core"
|
|
54
|
+
],
|
|
55
|
+
"@vue/compiler-sfc": [
|
|
56
|
+
"../node_modules/.pnpm/@vue+compiler-sfc@3.5.13/node_modules/@vue/compiler-sfc"
|
|
57
|
+
],
|
|
58
|
+
"unplugin-vue-router/client": [
|
|
59
|
+
"../node_modules/.pnpm/unplugin-vue-router@0.12.0__342e1c33f39dae618c97ca8e17bbf51f/node_modules/unplugin-vue-router/client"
|
|
60
|
+
],
|
|
61
|
+
"@nuxt/schema": [
|
|
62
|
+
"../node_modules/.pnpm/@nuxt+schema@3.17.3/node_modules/@nuxt/schema"
|
|
63
|
+
],
|
|
64
|
+
"nuxt": [
|
|
65
|
+
"../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt"
|
|
66
|
+
],
|
|
67
|
+
"vite/client": [
|
|
68
|
+
"../node_modules/.pnpm/vite@6.3.4_@types+node@22.1_855a11929e3608f6cd9638b096d65deb/node_modules/vite/client"
|
|
69
|
+
],
|
|
70
|
+
"#shared": [
|
|
71
|
+
"../shared"
|
|
72
|
+
],
|
|
73
|
+
"assets": [
|
|
74
|
+
"../assets"
|
|
75
|
+
],
|
|
76
|
+
"assets/*": [
|
|
77
|
+
"../assets/*"
|
|
78
|
+
],
|
|
79
|
+
"public": [
|
|
80
|
+
"../public"
|
|
81
|
+
],
|
|
82
|
+
"public/*": [
|
|
83
|
+
"../public/*"
|
|
84
|
+
],
|
|
85
|
+
"#build": [
|
|
86
|
+
"./"
|
|
87
|
+
],
|
|
88
|
+
"#build/*": [
|
|
89
|
+
"./*"
|
|
90
|
+
],
|
|
91
|
+
"#internal/nuxt/paths": [
|
|
92
|
+
"../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/paths"
|
|
93
|
+
],
|
|
94
|
+
"#image": [
|
|
95
|
+
"../node_modules/.pnpm/@nuxt+image@1.10.0_@netlify_b4a362fadc10aa100425ec080018ae5f/node_modules/@nuxt/image/dist/runtime"
|
|
96
|
+
],
|
|
97
|
+
"#image/*": [
|
|
98
|
+
"../node_modules/.pnpm/@nuxt+image@1.10.0_@netlify_b4a362fadc10aa100425ec080018ae5f/node_modules/@nuxt/image/dist/runtime/*"
|
|
99
|
+
],
|
|
100
|
+
"#nuxt-scripts-validator": [
|
|
101
|
+
"../node_modules/.pnpm/@nuxt+scripts@0.11.7_@netli_ebfcefabcbe3d3a1075abfbf8a0e2f1a/node_modules/@nuxt/scripts/dist/runtime/validation/valibot"
|
|
102
|
+
],
|
|
103
|
+
"#nuxt-scripts": [
|
|
104
|
+
"../node_modules/.pnpm/@nuxt+scripts@0.11.7_@netli_ebfcefabcbe3d3a1075abfbf8a0e2f1a/node_modules/@nuxt/scripts/dist/runtime"
|
|
105
|
+
],
|
|
106
|
+
"#nuxt-scripts/*": [
|
|
107
|
+
"../node_modules/.pnpm/@nuxt+scripts@0.11.7_@netli_ebfcefabcbe3d3a1075abfbf8a0e2f1a/node_modules/@nuxt/scripts/dist/runtime/*"
|
|
108
|
+
],
|
|
109
|
+
"#site-config": [
|
|
110
|
+
"../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime"
|
|
111
|
+
],
|
|
112
|
+
"#site-config/*": [
|
|
113
|
+
"../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/*"
|
|
114
|
+
],
|
|
115
|
+
"#robots": [
|
|
116
|
+
"../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime"
|
|
117
|
+
],
|
|
118
|
+
"#robots/*": [
|
|
119
|
+
"../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/*"
|
|
120
|
+
],
|
|
121
|
+
"#sitemap": [
|
|
122
|
+
"../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime"
|
|
123
|
+
],
|
|
124
|
+
"#sitemap/*": [
|
|
125
|
+
"../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/*"
|
|
126
|
+
],
|
|
127
|
+
"#sitemap/content-v3-nitro-path": [
|
|
128
|
+
"../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/nitro"
|
|
129
|
+
],
|
|
130
|
+
"#link-checker": [
|
|
131
|
+
"../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_d24400d70915ab4f212e0d91f974c51c/node_modules/nuxt-link-checker/dist/runtime"
|
|
132
|
+
],
|
|
133
|
+
"#link-checker/*": [
|
|
134
|
+
"../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_d24400d70915ab4f212e0d91f974c51c/node_modules/nuxt-link-checker/dist/runtime/*"
|
|
135
|
+
],
|
|
136
|
+
"#seo-utils": [
|
|
137
|
+
"../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime"
|
|
138
|
+
],
|
|
139
|
+
"#seo-utils/*": [
|
|
140
|
+
"../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/*"
|
|
141
|
+
],
|
|
142
|
+
"#content/components": [
|
|
143
|
+
"./content/components"
|
|
144
|
+
],
|
|
145
|
+
"#content/manifest": [
|
|
146
|
+
"./content/manifest"
|
|
147
|
+
],
|
|
148
|
+
"#mdc-configs": [
|
|
149
|
+
"./mdc-configs"
|
|
150
|
+
],
|
|
151
|
+
"#mdc-highlighter": [
|
|
152
|
+
"./mdc-highlighter"
|
|
153
|
+
],
|
|
154
|
+
"#mdc-imports": [
|
|
155
|
+
"./mdc-imports"
|
|
156
|
+
],
|
|
157
|
+
"#auth-utils": [
|
|
158
|
+
"../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/types/index"
|
|
159
|
+
],
|
|
160
|
+
"#unhead/composables": [
|
|
161
|
+
"../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/head/runtime/composables/v3"
|
|
162
|
+
],
|
|
163
|
+
"vue-i18n": [
|
|
164
|
+
"../node_modules/.pnpm/vue-i18n@10.0.7_vue@3.5.14_typescript@5.8.3_/node_modules/vue-i18n/dist/vue-i18n"
|
|
165
|
+
],
|
|
166
|
+
"@intlify/shared": [
|
|
167
|
+
"../node_modules/.pnpm/@intlify+shared@10.0.7/node_modules/@intlify/shared/dist/shared"
|
|
168
|
+
],
|
|
169
|
+
"@intlify/message-compiler": [
|
|
170
|
+
"../node_modules/.pnpm/@intlify+message-compiler@11.1.3/node_modules/@intlify/message-compiler/dist/message-compiler"
|
|
171
|
+
],
|
|
172
|
+
"@intlify/core-base": [
|
|
173
|
+
"../node_modules/.pnpm/@intlify+core-base@10.0.7/node_modules/@intlify/core-base/dist/core-base"
|
|
174
|
+
],
|
|
175
|
+
"@intlify/core": [
|
|
176
|
+
"../node_modules/.pnpm/@intlify+core@10.0.7/node_modules/@intlify/core/dist/core.node"
|
|
177
|
+
],
|
|
178
|
+
"@intlify/utils/h3": [
|
|
179
|
+
"../node_modules/.pnpm/@intlify+utils@0.13.0/node_modules/@intlify/utils/dist/h3"
|
|
180
|
+
],
|
|
181
|
+
"ufo": [
|
|
182
|
+
"../node_modules/.pnpm/ufo@1.6.1/node_modules/ufo/dist/index"
|
|
183
|
+
],
|
|
184
|
+
"#i18n": [
|
|
185
|
+
"../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/index"
|
|
186
|
+
],
|
|
187
|
+
"#internal-i18n-types": [
|
|
188
|
+
"../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/types"
|
|
189
|
+
],
|
|
190
|
+
"#nuxt-i18n/logger": [
|
|
191
|
+
"./nuxt-i18n-logger"
|
|
192
|
+
],
|
|
193
|
+
"#internal/nuxt-site-config": [
|
|
194
|
+
"../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composable-barrel-deprecated"
|
|
195
|
+
],
|
|
196
|
+
"#internal/nuxt-simple-robots": [
|
|
197
|
+
"../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/composables"
|
|
198
|
+
],
|
|
199
|
+
"#internal/nuxt-simple-robots/*": [
|
|
200
|
+
"../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/composables/*"
|
|
201
|
+
],
|
|
202
|
+
"#internal/nuxt-robots": [
|
|
203
|
+
"../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/composables"
|
|
204
|
+
],
|
|
205
|
+
"#internal/nuxt-robots/*": [
|
|
206
|
+
"../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/composables/*"
|
|
207
|
+
],
|
|
208
|
+
"#link-checker/content-provider": [
|
|
209
|
+
"../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_d24400d70915ab4f212e0d91f974c51c/node_modules/nuxt-link-checker/dist/runtime/server/providers/content-v3"
|
|
210
|
+
],
|
|
211
|
+
"#content/dump": [
|
|
212
|
+
"./content/database.compressed"
|
|
213
|
+
],
|
|
214
|
+
"#content/adapter": [
|
|
215
|
+
"./db0/connectors/better-sqlite3"
|
|
216
|
+
],
|
|
217
|
+
"#content/local-adapter": [
|
|
218
|
+
"./db0/connectors/better-sqlite3"
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
"lib": [
|
|
222
|
+
"esnext",
|
|
223
|
+
"webworker",
|
|
224
|
+
"dom.iterable"
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
"include": [
|
|
228
|
+
"./content/types.d.ts",
|
|
229
|
+
"./types/nitro-nuxt.d.ts",
|
|
230
|
+
"../node_modules/.pnpm/@nuxt+eslint@1.4.1_@vue+com_8c451bd0db1723b495956f8d0e55cc1b/node_modules/@nuxt/eslint/runtime/server",
|
|
231
|
+
"../node_modules/.pnpm/@nuxt+fonts@0.11.4_@netlify_07783006abe5fab7aba60f157af6c9ff/node_modules/@nuxt/fonts/runtime/server",
|
|
232
|
+
"../node_modules/.pnpm/@nuxt+image@1.10.0_@netlify_b4a362fadc10aa100425ec080018ae5f/node_modules/@nuxt/image/runtime/server",
|
|
233
|
+
"../node_modules/.pnpm/@pinia+nuxt@0.11.0_magicast_a67d88851b9ae3b0828837d8cf9ec91f/node_modules/@pinia/nuxt/runtime/server",
|
|
234
|
+
"../node_modules/.pnpm/@nuxt+scripts@0.11.7_@netli_ebfcefabcbe3d3a1075abfbf8a0e2f1a/node_modules/@nuxt/scripts/runtime/server",
|
|
235
|
+
"../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.41.0/node_modules/nuxt-security/runtime/server",
|
|
236
|
+
"../node_modules/.pnpm/@vueuse+nuxt@13.2.0_magicas_69a65d89de749cb2f586f70805f5a9f4/node_modules/@vueuse/nuxt/runtime/server",
|
|
237
|
+
"../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/runtime/server",
|
|
238
|
+
"../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/runtime/server",
|
|
239
|
+
"../node_modules/.pnpm/@vueform+nuxt@1.13.0_magicast@0.3.5/node_modules/@vueform/nuxt/runtime/server",
|
|
240
|
+
"../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module.mjs/runtime/server",
|
|
241
|
+
"../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/runtime/server",
|
|
242
|
+
"../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/runtime/server",
|
|
243
|
+
"../node_modules/.pnpm/nuxt-og-image@5.1.3_@unhead_016a02da852510886427e1ecf476d0e9/node_modules/nuxt-og-image/runtime/server",
|
|
244
|
+
"../node_modules/.pnpm/nuxt-schema-org@5.0.5_@unhe_b80888f2ca0e06559e15161a929f1629/node_modules/nuxt-schema-org/runtime/server",
|
|
245
|
+
"../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_d24400d70915ab4f212e0d91f974c51c/node_modules/nuxt-link-checker/runtime/server",
|
|
246
|
+
"../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/runtime/server",
|
|
247
|
+
"../node_modules/.pnpm/@nuxtjs+seo@3.0.3_@unhead+v_c3ea6f626f53d842ade0154666a94ea6/node_modules/@nuxtjs/seo/runtime/server",
|
|
248
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/runtime/server",
|
|
249
|
+
"../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/runtime/server",
|
|
250
|
+
"../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/runtime/server",
|
|
251
|
+
"../runtime/server",
|
|
252
|
+
"../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@6_1dedbaa3bcdbced3d429534f9b1d1d28/node_modules/@nuxt/devtools/runtime/server",
|
|
253
|
+
"../node_modules/.pnpm/@nuxt+telemetry@2.6.6_magicast@0.3.5/node_modules/@nuxt/telemetry/runtime/server",
|
|
254
|
+
"./module/nuxt-site-config.d.ts",
|
|
255
|
+
"./module/nuxt-robots.d.ts",
|
|
256
|
+
"./module/@nuxtjs-sitemap.d.ts",
|
|
257
|
+
"./types/nitro.d.ts",
|
|
258
|
+
"../**/*",
|
|
259
|
+
"../server/**/*"
|
|
260
|
+
],
|
|
261
|
+
"exclude": [
|
|
262
|
+
"../node_modules",
|
|
263
|
+
"../../node_modules",
|
|
264
|
+
"../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/node_modules",
|
|
265
|
+
"../node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/node_modules",
|
|
266
|
+
"../node_modules/.pnpm/@nuxt+eslint@1.4.1_@vue+com_8c451bd0db1723b495956f8d0e55cc1b/node_modules/@nuxt/eslint/node_modules",
|
|
267
|
+
"../node_modules/.pnpm/@nuxt+fonts@0.11.4_@netlify_07783006abe5fab7aba60f157af6c9ff/node_modules/@nuxt/fonts/node_modules",
|
|
268
|
+
"../node_modules/.pnpm/@nuxt+image@1.10.0_@netlify_b4a362fadc10aa100425ec080018ae5f/node_modules/@nuxt/image/node_modules",
|
|
269
|
+
"../node_modules/.pnpm/@pinia+nuxt@0.11.0_magicast_a67d88851b9ae3b0828837d8cf9ec91f/node_modules/@pinia/nuxt/node_modules",
|
|
270
|
+
"../node_modules/.pnpm/@nuxt+scripts@0.11.7_@netli_ebfcefabcbe3d3a1075abfbf8a0e2f1a/node_modules/@nuxt/scripts/node_modules",
|
|
271
|
+
"../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.41.0/node_modules/nuxt-security/node_modules",
|
|
272
|
+
"../node_modules/.pnpm/@vueuse+nuxt@13.2.0_magicas_69a65d89de749cb2f586f70805f5a9f4/node_modules/@vueuse/nuxt/node_modules",
|
|
273
|
+
"../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/node_modules",
|
|
274
|
+
"../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/node_modules",
|
|
275
|
+
"../node_modules/.pnpm/@vueform+nuxt@1.13.0_magicast@0.3.5/node_modules/@vueform/nuxt/node_modules",
|
|
276
|
+
"../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/node_modules",
|
|
277
|
+
"../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/node_modules",
|
|
278
|
+
"../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/node_modules",
|
|
279
|
+
"../node_modules/.pnpm/nuxt-og-image@5.1.3_@unhead_016a02da852510886427e1ecf476d0e9/node_modules/nuxt-og-image/node_modules",
|
|
280
|
+
"../node_modules/.pnpm/nuxt-schema-org@5.0.5_@unhe_b80888f2ca0e06559e15161a929f1629/node_modules/nuxt-schema-org/node_modules",
|
|
281
|
+
"../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_d24400d70915ab4f212e0d91f974c51c/node_modules/nuxt-link-checker/node_modules",
|
|
282
|
+
"../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/node_modules",
|
|
283
|
+
"../node_modules/.pnpm/@nuxtjs+seo@3.0.3_@unhead+v_c3ea6f626f53d842ade0154666a94ea6/node_modules/@nuxtjs/seo/node_modules",
|
|
284
|
+
"../node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/node_modules",
|
|
285
|
+
"../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/node_modules",
|
|
286
|
+
"../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/node_modules",
|
|
287
|
+
"../node_modules/.pnpm/@nuxt+test-utils@3.15.4_@ty_bca92e2e63a867104d0ff43f57dee84d/node_modules/@nuxt/test-utils/node_modules",
|
|
288
|
+
"../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@6_1dedbaa3bcdbced3d429534f9b1d1d28/node_modules/@nuxt/devtools/node_modules",
|
|
289
|
+
"../node_modules/.pnpm/@nuxt+telemetry@2.6.6_magicast@0.3.5/node_modules/@nuxt/telemetry/node_modules",
|
|
290
|
+
"../dist"
|
|
291
|
+
]
|
|
292
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
|
|
2
|
+
import type { CustomAppConfig } from 'nuxt/schema'
|
|
3
|
+
import type { Defu } from 'defu'
|
|
4
|
+
import cfg0 from "../../app.config"
|
|
5
|
+
|
|
6
|
+
declare const inlineConfig = {
|
|
7
|
+
"nuxt": {}
|
|
8
|
+
}
|
|
9
|
+
type ResolvedAppConfig = Defu<typeof inlineConfig, [typeof cfg0]>
|
|
10
|
+
type IsAny<T> = 0 extends 1 & T ? true : false
|
|
11
|
+
|
|
12
|
+
type MergedAppConfig<Resolved extends Record<string, unknown>, Custom extends Record<string, unknown>> = {
|
|
13
|
+
[K in keyof (Resolved & Custom)]: K extends keyof Custom
|
|
14
|
+
? unknown extends Custom[K]
|
|
15
|
+
? Resolved[K]
|
|
16
|
+
: IsAny<Custom[K]> extends true
|
|
17
|
+
? Resolved[K]
|
|
18
|
+
: Custom[K] extends Record<string, any>
|
|
19
|
+
? Resolved[K] extends Record<string, any>
|
|
20
|
+
? MergedAppConfig<Resolved[K], Custom[K]>
|
|
21
|
+
: Exclude<Custom[K], undefined>
|
|
22
|
+
: Exclude<Custom[K], undefined>
|
|
23
|
+
: Resolved[K]
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
declare module 'nuxt/schema' {
|
|
27
|
+
interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
|
|
28
|
+
}
|
|
29
|
+
declare module '@nuxt/schema' {
|
|
30
|
+
interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
|
|
31
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
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/global-polyfills.mjs";
|
|
8
|
+
declare module "#build/layouts.mjs";
|
|
9
|
+
declare module "#build/middleware.mjs";
|
|
10
|
+
declare module "#build/nuxt.config.mjs";
|
|
11
|
+
declare module "#build/paths.mjs";
|
|
12
|
+
declare module "#build/root-component.mjs";
|
|
13
|
+
declare module "#build/plugins.server.mjs";
|
|
14
|
+
declare module "#build/test-component-wrapper.mjs";
|
|
15
|
+
declare module "#build/image-options.mjs";
|
|
16
|
+
declare module "#build/vueformPlugin.mjs";
|
|
17
|
+
declare module "#build/nuxt-site-config/i18n-plugin-deps.mjs";
|
|
18
|
+
declare module "#build/devtools/settings.mjs";
|
|
19
|
+
declare module "#build/runtime.vue-devtools-client.L5ay4O7kgZNEEgK69Bd8jwwajUpSKGGhvS0AAyHS7XA.js";
|
|
20
|
+
declare module "#build/routes.mjs";
|
|
21
|
+
declare module "#build/pages.mjs";
|
|
22
|
+
declare module "#build/router.options.mjs";
|
|
23
|
+
declare module "#build/unhead-options.mjs";
|
|
24
|
+
declare module "#build/unhead.config.mjs";
|
|
25
|
+
declare module "#build/components.plugin.mjs";
|
|
26
|
+
declare module "#build/component-names.mjs";
|
|
27
|
+
declare module "#build/components.islands.mjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "vite/client";
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
// Generated by @nuxtjs/i18n
|
|
2
|
+
import type { ExportedGlobalComposer, Composer } from 'vue-i18n'
|
|
3
|
+
import type { NuxtI18nRoutingCustomProperties, ComposerCustomProperties } from '../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/types.ts'
|
|
4
|
+
import type { Strategies, Directions, LocaleObject } from '../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/types.d.ts'
|
|
5
|
+
|
|
6
|
+
declare module 'vue-i18n' {
|
|
7
|
+
interface ComposerCustom extends ComposerCustomProperties<LocaleObject[]> {}
|
|
8
|
+
interface ExportedGlobalComposer extends NuxtI18nRoutingCustomProperties<LocaleObject[]> {}
|
|
9
|
+
interface VueI18n extends NuxtI18nRoutingCustomProperties<LocaleObject[]> {}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare module '@intlify/core-base' {
|
|
13
|
+
// generated based on configured locales
|
|
14
|
+
interface GeneratedTypeConfig {
|
|
15
|
+
locale: "en"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
declare module '#app' {
|
|
21
|
+
interface NuxtApp {
|
|
22
|
+
$i18n: ExportedGlobalComposer & Composer & NuxtI18nRoutingCustomProperties<LocaleObject[]>
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
declare module 'vue-router' {
|
|
28
|
+
import type { RouteNamedMapI18n } from 'vue-router/auto-routes'
|
|
29
|
+
|
|
30
|
+
export interface TypesConfig {
|
|
31
|
+
RouteNamedMapI18n: RouteNamedMapI18n
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type RouteMapI18n =
|
|
35
|
+
TypesConfig extends Record<'RouteNamedMapI18n', infer RouteNamedMap> ? RouteNamedMap : RouteMapGeneric
|
|
36
|
+
|
|
37
|
+
// Prefer named resolution for i18n
|
|
38
|
+
export type RouteLocationNamedI18n<Name extends keyof RouteMapI18n = keyof RouteMapI18n> =
|
|
39
|
+
| Name
|
|
40
|
+
| Omit<RouteLocationAsRelativeI18n, 'path'> & { path?: string }
|
|
41
|
+
/**
|
|
42
|
+
* Note: disabled route path string autocompletion, this can break depending on `strategy`
|
|
43
|
+
* this can be enabled again after route resolve has been improved.
|
|
44
|
+
*/
|
|
45
|
+
// | RouteLocationAsStringI18n
|
|
46
|
+
// | RouteLocationAsPathI18n
|
|
47
|
+
|
|
48
|
+
export type RouteLocationRawI18n<Name extends keyof RouteMapI18n = keyof RouteMapI18n> =
|
|
49
|
+
RouteMapGeneric extends RouteMapI18n
|
|
50
|
+
? RouteLocationAsStringI18n | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric
|
|
51
|
+
:
|
|
52
|
+
| _LiteralUnion<RouteLocationAsStringTypedList<RouteMapI18n>[Name], string>
|
|
53
|
+
| RouteLocationAsRelativeTypedList<RouteMapI18n>[Name]
|
|
54
|
+
|
|
55
|
+
export type RouteLocationResolvedI18n<Name extends keyof RouteMapI18n = keyof RouteMapI18n> =
|
|
56
|
+
RouteMapGeneric extends RouteMapI18n
|
|
57
|
+
? RouteLocationResolvedGeneric
|
|
58
|
+
: RouteLocationResolvedTypedList<RouteMapI18n>[Name]
|
|
59
|
+
|
|
60
|
+
export interface RouteLocationNormalizedLoadedTypedI18n<
|
|
61
|
+
RouteMapI18n extends RouteMapGeneric = RouteMapGeneric,
|
|
62
|
+
Name extends keyof RouteMapI18n = keyof RouteMapI18n
|
|
63
|
+
> extends RouteLocationNormalizedLoadedGeneric {
|
|
64
|
+
name: Extract<Name, string | symbol>
|
|
65
|
+
params: RouteMapI18n[Name]['params']
|
|
66
|
+
}
|
|
67
|
+
export type RouteLocationNormalizedLoadedTypedListI18n<RouteMapOriginal extends RouteMapGeneric = RouteMapGeneric> = {
|
|
68
|
+
[N in keyof RouteMapOriginal]: RouteLocationNormalizedLoadedTypedI18n<RouteMapOriginal, N>
|
|
69
|
+
}
|
|
70
|
+
export type RouteLocationNormalizedLoadedI18n<Name extends keyof RouteMapI18n = keyof RouteMapI18n> =
|
|
71
|
+
RouteMapGeneric extends RouteMapI18n
|
|
72
|
+
? RouteLocationNormalizedLoadedGeneric
|
|
73
|
+
: RouteLocationNormalizedLoadedTypedListI18n<RouteMapI18n>[Name]
|
|
74
|
+
|
|
75
|
+
type _LiteralUnion<LiteralType, BaseType extends string = string> = LiteralType | (BaseType & Record<never, never>)
|
|
76
|
+
|
|
77
|
+
export type RouteLocationAsStringI18n<Name extends keyof RouteMapI18n = keyof RouteMapI18n> =
|
|
78
|
+
RouteMapGeneric extends RouteMapI18n
|
|
79
|
+
? string
|
|
80
|
+
: _LiteralUnion<RouteLocationAsStringTypedList<RouteMapI18n>[Name], string>
|
|
81
|
+
|
|
82
|
+
export type RouteLocationAsRelativeI18n<Name extends keyof RouteMapI18n = keyof RouteMapI18n> =
|
|
83
|
+
RouteMapGeneric extends RouteMapI18n
|
|
84
|
+
? RouteLocationAsRelativeGeneric
|
|
85
|
+
: RouteLocationAsRelativeTypedList<RouteMapI18n>[Name]
|
|
86
|
+
|
|
87
|
+
export type RouteLocationAsPathI18n<Name extends keyof RouteMapI18n = keyof RouteMapI18n> =
|
|
88
|
+
RouteMapGeneric extends RouteMapI18n ? RouteLocationAsPathGeneric : RouteLocationAsPathTypedList<RouteMapI18n>[Name]
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Helper to generate a type safe version of the {@link RouteLocationAsRelative} type.
|
|
92
|
+
*/
|
|
93
|
+
export interface RouteLocationAsRelativeTypedI18n<
|
|
94
|
+
RouteMapI18n extends RouteMapGeneric = RouteMapGeneric,
|
|
95
|
+
Name extends keyof RouteMapI18n = keyof RouteMapI18n
|
|
96
|
+
> extends RouteLocationAsRelativeGeneric {
|
|
97
|
+
name?: Extract<Name, string | symbol>
|
|
98
|
+
params?: RouteMapI18n[Name]['paramsRaw']
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
export {}
|