nuxt-ignis 0.3.2 → 0.4.0-rc.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 +8 -2
- package/.nuxt/app.config.mjs +2 -2
- package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
- package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
- package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
- package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
- package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
- package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
- package/.nuxt/components.d.ts +606 -394
- package/.nuxt/content/components.ts +107 -98
- package/.nuxt/content/database.compressed.mjs +1 -1
- package/.nuxt/content/manifest.ts +6 -6
- package/.nuxt/content/sql_dump.txt +5 -0
- package/.nuxt/content/types.d.ts +8 -0
- package/.nuxt/dev/index.mjs +1598 -550
- package/.nuxt/dev/index.mjs.map +1 -1
- package/.nuxt/dist/server/client.manifest.json +2 -2
- package/.nuxt/dist/server/client.manifest.mjs +2 -2
- package/.nuxt/eslint-typegen.d.ts +256 -225
- package/.nuxt/eslint.config.d.mts +3 -3
- package/.nuxt/eslint.config.mjs +11 -11
- package/.nuxt/imports.d.ts +74 -56
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/mdc-image-component.mjs +1 -1
- package/.nuxt/module/@nuxtjs-sitemap.d.ts +9 -8
- package/.nuxt/module/nuxt-robots.d.ts +37 -7
- package/.nuxt/{modules/@nuxt-scripts.d.ts → module/nuxt-scripts.d.ts} +1 -2
- package/.nuxt/module/nuxt-seo-utils.assets.d.ts +3 -3
- package/.nuxt/module/nuxt-seo-utils.d.ts +20 -6
- package/.nuxt/module/nuxt-site-config.d.ts +8 -8
- package/.nuxt/nitro.json +5 -5
- package/.nuxt/nuxt.d.ts +14 -11
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/tsconfig.json +235 -153
- package/.nuxt/tsconfig.server.json +126 -92
- package/.nuxt/types/app.config.d.ts +2 -2
- package/.nuxt/types/build.d.ts +2 -1
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +413 -318
- package/.nuxt/types/nitro-config.d.ts +2 -2
- package/.nuxt/types/nitro-imports.d.ts +143 -134
- package/.nuxt/types/nitro-nuxt.d.ts +2 -0
- package/.nuxt/types/nitro-routes.d.ts +17 -17
- package/.nuxt/types/plugins.d.ts +35 -34
- package/.nuxt/types/schema.d.ts +360 -36
- package/.nuxt/ui/avatar.ts +1 -1
- package/.nuxt/ui/card.ts +1 -1
- package/.nuxt/ui/carousel.ts +1 -1
- package/.nuxt/ui/command-palette.ts +1 -0
- package/.nuxt/ui/drawer.ts +1 -1
- package/.nuxt/ui/index.ts +2 -0
- package/.nuxt/ui/input-menu.ts +24 -10
- package/.nuxt/ui/input-tags.ts +310 -0
- package/.nuxt/ui/modal.ts +1 -1
- package/.nuxt/ui/navigation-menu.ts +1 -1
- package/.nuxt/ui/select-menu.ts +11 -6
- package/.nuxt/ui/select.ts +11 -6
- package/.nuxt/ui/table.ts +3 -2
- package/.nuxt/ui/timeline.ts +321 -0
- package/.nuxt/ui/toaster.ts +1 -1
- package/.nuxt/ui-image-component.ts +1 -1
- package/app.vue +4 -8
- package/assets/css/ignis-nuxt-ui.css +24 -0
- package/assets/css/{open-props.css → ignis-open-props.css} +1 -1
- package/assets/css/ignis-tailwind.css +23 -0
- package/assets/css/ignis.css +31 -0
- package/bin/make-eslint.js +55 -0
- package/components/CurrentTime.vue +1 -1
- package/components/ignis/IgnisConfig.vue +38 -0
- package/components/{AppFeature.vue → ignis/IgnisFeature.vue} +2 -1
- package/components/ignis/IgnisFeatureList.vue +125 -0
- package/components/ignis/IgnisFooter.vue +2 -2
- package/components/ignis/IgnisHeader.vue +4 -3
- package/components/ignis/IgnisInfo.vue +14 -13
- package/components/ignis/IgnisWelcome.vue +65 -0
- package/composables/useTranslation.ts +18 -9
- package/composables/useValibot.ts +16 -0
- package/composables/useZod.ts +16 -0
- package/features.ts +97 -15
- package/formkit.config.ts +8 -8
- package/i18n/locales/en.json +12 -4
- package/nuxt.config.ts +44 -6
- package/package.json +32 -20
- package/pages/_ignis-config.vue +3 -0
- package/pages/_ignis-info.vue +3 -0
- package/pages/index.vue +4 -6
- package/plugins/errorHandler.ts +26 -0
- package/public/_ignis-config.json +97 -0
- package/test/config/css-multiple.txt +30 -0
- package/test/config/css-nuxt-ui.txt +34 -0
- package/test/config/css-open-props.txt +2307 -0
- package/test/config/css-single.txt +28 -0
- package/test/config/css-tailwind.txt +58 -0
- package/test/config/custom-lang.txt +27 -0
- package/test/config/db-neon.txt +28 -0
- package/test/config/db-supabase.txt +31 -0
- package/test/config/default.txt +27 -0
- package/test/config/equipment-1-composable.txt +33 -0
- package/test/config/equipment-2-plugins.txt +34 -0
- package/test/config/equipment-all.txt +39 -0
- package/test/config/forms-formkit.txt +32 -0
- package/test/config/forms-vueform.txt +28 -0
- package/test/config/i18n.txt +38 -0
- package/test/config/no-default-css.txt +24 -0
- package/test/config/open-props.txt +2306 -0
- package/test/config/seo-ssr-false.txt +35 -0
- package/test/config/ui-nuxt-ui.txt +33 -0
- package/test/config/ui-tailwind.txt +57 -0
- package/test/config.test.ts +162 -0
- package/test/features/charts.txt +4 -0
- package/test/features/custom-css.txt +4 -0
- package/test/features/custom-title.txt +4 -0
- package/test/features/db-neon.txt +3 -2
- package/test/features/db-off.txt +3 -2
- package/test/features/db-supabase.txt +3 -2
- package/test/features/default.txt +3 -2
- package/test/features/disable-core.txt +2 -1
- package/test/features/enable-all.txt +3 -2
- package/test/features/equipment.txt +4 -0
- package/test/features/forms-formkit.txt +3 -2
- package/test/features/forms-off.txt +3 -2
- package/test/features/forms-vueform.txt +3 -2
- package/test/features/no-default-css.txt +4 -0
- package/test/features/regexp.txt +4 -0
- package/test/features/ui-nuxt-ui.txt +3 -2
- package/test/features/ui-off.txt +3 -2
- package/test/features/ui-tailwind.txt +3 -2
- package/test/features/validation-off.txt +4 -0
- package/test/features/validation-valibot.txt +5 -0
- package/test/features/validation-zod.txt +5 -0
- package/test/features.test.ts +84 -0
- package/utils/config/content.ts +35 -0
- package/utils/config/formkit.ts +23 -0
- package/utils/config/vueform.ts +25 -0
- package/utils/consola.ts +23 -13
- package/utils/content.ts +12 -25
- package/utils/formkit.ts +16 -0
- package/utils/vueform.ts +14 -11
- package/vueform.config.ts +3 -5
- package/.nuxt/content/sql_dump +0 -6
- package/app.config.ts +0 -3
- package/assets/css/nuxt-ui.css +0 -16
- package/assets/css/tailwind.css +0 -15
- package/components/AppFeatureList.vue +0 -119
- package/content/second.md +0 -11
- package/pages/ignis.vue +0 -3
- package/pages/second.vue +0 -59
- package/tailwind.config.ts +0 -29
- package/utils/config/content.config.ts +0 -12
- package/utils/config/vueform.config.ts +0 -20
|
@@ -2,41 +2,41 @@
|
|
|
2
2
|
|
|
3
3
|
declare module 'nitropack' {
|
|
4
4
|
interface NitroRouteRules {
|
|
5
|
-
site?: import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
5
|
+
site?: import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigInput
|
|
6
6
|
}
|
|
7
7
|
interface NitroRouteConfig {
|
|
8
|
-
site?: import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
8
|
+
site?: import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/types').SiteConfig
|
|
9
9
|
}
|
|
10
10
|
interface NitroRuntimeHooks {
|
|
11
|
-
'site-config:init': (ctx: import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
11
|
+
'site-config:init': (ctx: import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/types').HookSiteConfigInitContext) => void | Promise<void>
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
declare module 'h3' {
|
|
16
16
|
interface H3EventContext {
|
|
17
|
-
siteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
17
|
+
siteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
|
|
18
18
|
siteConfigNitroOrigin: string
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
declare module '@nuxt/schema' {
|
|
23
23
|
interface Nuxt {
|
|
24
|
-
_siteConfig?: import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
24
|
+
_siteConfig?: import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
declare module 'nuxt/app' {
|
|
28
28
|
interface NuxtApp {
|
|
29
|
-
$nuxtSiteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
29
|
+
$nuxtSiteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
declare module '#app' {
|
|
33
33
|
interface NuxtApp {
|
|
34
|
-
$nuxtSiteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
34
|
+
$nuxtSiteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
declare global {
|
|
38
38
|
interface Window {
|
|
39
|
-
__NUXT_SITE_CONFIG__: import('../../node_modules/.pnpm/nuxt-site-config@3.
|
|
39
|
+
__NUXT_SITE_CONFIG__: import('../../node_modules/.pnpm/nuxt-site-config@3.2.2_magi_ccbb3c107a56d5c102e6d8c3d6c0e996/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigResolved
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
|
package/.nuxt/nitro.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
"date": "2025-
|
|
2
|
+
"date": "2025-07-19T16:29:53.198Z",
|
|
3
3
|
"preset": "nitro-dev",
|
|
4
4
|
"framework": {
|
|
5
5
|
"name": "nuxt",
|
|
6
|
-
"version": "3.17.
|
|
6
|
+
"version": "3.17.7"
|
|
7
7
|
},
|
|
8
8
|
"versions": {
|
|
9
|
-
"nitro": "2.
|
|
9
|
+
"nitro": "2.12.3"
|
|
10
10
|
},
|
|
11
11
|
"dev": {
|
|
12
|
-
"pid":
|
|
12
|
+
"pid": 6580,
|
|
13
13
|
"workerAddress": {
|
|
14
|
-
"socketPath": "\\\\.\\pipe\\nitro-worker-
|
|
14
|
+
"socketPath": "\\\\.\\pipe\\nitro-worker-6580-3-2-5426.sock"
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
}
|
package/.nuxt/nuxt.d.ts
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
|
+
/// <reference types="@vueuse/nuxt" />
|
|
2
|
+
/// <reference types="magic-regexp" />
|
|
3
|
+
/// <reference types="@nuxt/eslint" />
|
|
1
4
|
/// <reference types="@nuxt/fonts" />
|
|
2
5
|
/// <reference types="@nuxt/scripts" />
|
|
3
|
-
/// <reference types="@nuxt/eslint" />
|
|
4
|
-
/// <reference types="@nuxt/ui" />
|
|
5
|
-
/// <reference types="nuxt-neon" />
|
|
6
6
|
/// <reference types="@nuxt/image" />
|
|
7
|
-
/// <reference types="@pinia/nuxt" />
|
|
8
|
-
/// <reference types="@vueform/nuxt" />
|
|
9
7
|
/// <reference types="nuxt-security" />
|
|
10
|
-
/// <reference types="@
|
|
11
|
-
/// <reference types="@
|
|
8
|
+
/// <reference types="@nuxt/ui" />
|
|
9
|
+
/// <reference types="@pinia/nuxt" />
|
|
10
|
+
/// <reference types="nuxt-neon" />
|
|
12
11
|
/// <reference types="nuxt-auth-utils" />
|
|
13
12
|
/// <reference types="@nuxt/content" />
|
|
14
13
|
/// <reference types="@nuxtjs/i18n" />
|
|
15
|
-
/// <reference types="@nuxt
|
|
16
|
-
/// <reference types="
|
|
14
|
+
/// <reference types="@vueform/nuxt" />
|
|
15
|
+
/// <reference types="nuxt-charts" />
|
|
17
16
|
/// <reference types="@nuxt/eslint" />
|
|
18
17
|
/// <reference types="@nuxt/telemetry" />
|
|
18
|
+
/// <reference types="@nuxt/test-utils" />
|
|
19
|
+
/// <reference types="@nuxt/devtools" />
|
|
20
|
+
/// <reference types="@maas/vue-equipment" />
|
|
21
|
+
/// <reference types="@nuxtjs/seo" />
|
|
19
22
|
/// <reference path="types/builder-env.d.ts" />
|
|
20
23
|
/// <reference types="nuxt" />
|
|
21
24
|
/// <reference path="types/app-defaults.d.ts" />
|
|
@@ -25,7 +28,7 @@
|
|
|
25
28
|
/// <reference path="types/app.config.d.ts" />
|
|
26
29
|
/// <reference types="@pinia/nuxt" />
|
|
27
30
|
/// <reference path="types/ui.d.ts" />
|
|
28
|
-
/// <reference path="../node_modules/.pnpm/@nuxt+ui@3.
|
|
31
|
+
/// <reference path="../node_modules/.pnpm/@nuxt+ui@3.2.0_@babel+parse_0c7c80b60823251f6a11b1ece8f0e39d/node_modules/@nuxt/ui/dist/runtime/types/app.config.d.ts" />
|
|
29
32
|
/// <reference path="types/neon.d.ts" />
|
|
30
33
|
/// <reference types="@vueform/vueform" />
|
|
31
34
|
/// <reference path="module/nuxt-site-config.d.ts" />
|
|
@@ -43,7 +46,7 @@
|
|
|
43
46
|
/// <reference path="imports.d.ts" />
|
|
44
47
|
/// <reference path="types/imports.d.ts" />
|
|
45
48
|
/// <reference path="schema/nuxt.schema.d.ts" />
|
|
46
|
-
/// <reference path="
|
|
49
|
+
/// <reference path="module/nuxt-scripts.d.ts" />
|
|
47
50
|
/// <reference path="types/i18n-plugin.d.ts" />
|
|
48
51
|
/// <reference path="types/nitro.d.ts" />
|
|
49
52
|
/// <reference path="./eslint-typegen.d.ts" />
|
package/.nuxt/nuxt.json
CHANGED