nuxt-ignis 0.3.1 → 0.3.2
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 +3 -3
- package/.nuxt/app.config.mjs +227 -1
- package/.nuxt/components.d.ts +372 -140
- package/.nuxt/content/components.ts +93 -36
- package/.nuxt/dev/index.mjs +7601 -0
- package/.nuxt/dev/index.mjs.map +1 -0
- package/.nuxt/dist/server/client.manifest.json +2 -2
- package/.nuxt/dist/server/client.manifest.mjs +2 -2
- package/.nuxt/eslint.config.d.mts +2 -2
- package/.nuxt/eslint.config.mjs +2 -2
- package/.nuxt/imports.d.ts +57 -42
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/module/@nuxtjs-sitemap.d.ts +8 -8
- package/.nuxt/module/nuxt-robots.d.ts +3 -3
- package/.nuxt/module/nuxt-seo-utils.d.ts +6 -6
- package/.nuxt/module/nuxt-site-config.d.ts +8 -8
- package/.nuxt/nitro.json +4 -4
- package/.nuxt/nuxt.d.ts +12 -10
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/schema/nuxt.schema.d.ts +193 -0
- package/.nuxt/schema/nuxt.schema.json +261 -1
- package/.nuxt/tsconfig.json +133 -110
- package/.nuxt/tsconfig.server.json +82 -64
- package/.nuxt/types/app.config.d.ts +227 -1
- package/.nuxt/types/build.d.ts +2 -1
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +318 -264
- package/.nuxt/types/neon.d.ts +136 -34
- package/.nuxt/types/nitro-imports.d.ts +40 -40
- package/.nuxt/types/nitro-routes.d.ts +21 -18
- package/.nuxt/types/plugins.d.ts +37 -33
- package/.nuxt/types/schema.d.ts +72 -12
- package/.nuxt/types/ui.d.ts +1 -1
- package/.nuxt/ui/checkbox-group.ts +1 -1
- package/.nuxt/ui/context-menu.ts +2 -1
- package/.nuxt/ui/dropdown-menu.ts +2 -1
- package/.nuxt/ui/input-menu.ts +2 -2
- package/.nuxt/ui/navigation-menu.ts +43 -34
- package/.nuxt/ui/radio-group.ts +1 -1
- package/.nuxt/ui/select-menu.ts +2 -2
- package/.nuxt/ui/select.ts +2 -2
- package/.nuxt/ui/tooltip.ts +1 -1
- package/.nuxt/ui.css +4 -1
- package/content.config.ts +6 -10
- package/features.ts +14 -1
- package/nuxt.config.ts +1 -1
- package/package.json +13 -13
- package/server/api/neonTest.ts +7 -5
- package/test/features/db-neon.txt +3 -0
- package/test/features/db-off.txt +3 -0
- package/test/features/db-supabase.txt +3 -0
- package/test/features/default.txt +3 -0
- package/test/features/disable-core.txt +3 -0
- package/test/features/enable-all.txt +4 -0
- package/test/features/forms-formkit.txt +3 -0
- package/test/features/forms-off.txt +3 -0
- package/test/features/forms-vueform.txt +3 -0
- package/test/features/ui-nuxt-ui.txt +3 -0
- package/test/features/ui-off.txt +3 -0
- package/test/features/ui-tailwind.txt +4 -0
- package/test/features.test.ts +191 -0
- package/utils/config/content.config.ts +12 -0
- package/utils/config/vueform.config.ts +20 -0
- package/utils/content.ts +31 -0
- package/utils/tailwind.ts +19 -0
- package/utils/vueform.ts +16 -0
- package/vueform.config.ts +4 -16
- package/.nuxt/component-chunk.mjs +0 -1
- package/.nuxt/dist/server/server.mjs +0 -1
- package/.nuxt/tailwind/postcss.mjs +0 -15
package/.nuxt/types/plugins.d.ts
CHANGED
|
@@ -6,47 +6,51 @@ type Decorate<T extends Record<string, any>> = { [K in keyof T as K extends stri
|
|
|
6
6
|
type InjectionType<A extends Plugin> = A extends {default: Plugin<infer T>} ? Decorate<T> : unknown
|
|
7
7
|
|
|
8
8
|
type NuxtAppInjections =
|
|
9
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@pinia+nuxt@0.11.
|
|
10
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
11
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
12
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
9
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@pinia+nuxt@0.11.1_magicast_e0c2249d771533613ae168043fed6c1a/node_modules/@pinia/nuxt/dist/runtime/payload-plugin.js")> &
|
|
10
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/app/plugins/revive-payload.client.js")> &
|
|
11
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/head/runtime/plugins/unhead.js")> &
|
|
12
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/pages/runtime/plugins/router.js")> &
|
|
13
13
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/app/plugins/session.server.js")> &
|
|
14
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-site-config@3.1.
|
|
15
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
14
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/app/plugins/0.siteConfig.js")> &
|
|
15
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/app/plugins/browser-devtools-timing.client.js")> &
|
|
16
16
|
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/plugins/websocket.dev.js")> &
|
|
17
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
18
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
19
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
20
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
21
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
22
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
23
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
24
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@pinia+nuxt@0.11.
|
|
25
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
26
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.
|
|
27
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@
|
|
28
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@
|
|
17
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/app/plugins/navigation-repaint.client.js")> &
|
|
18
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/app/plugins/check-outdated-build.client.js")> &
|
|
19
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/app/plugins/revive-payload.server.js")> &
|
|
20
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/app/plugins/chunk-reload.client.js")> &
|
|
21
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+i18n@9.5.5_@vue+com_579c2d5abe0704eafcdbb50a0fdc3c2c/node_modules/@nuxtjs/i18n/dist/runtime/plugins/switch-locale-path-ssr.js")> &
|
|
22
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+i18n@9.5.5_@vue+com_579c2d5abe0704eafcdbb50a0fdc3c2c/node_modules/@nuxtjs/i18n/dist/runtime/plugins/route-locale-detect.js")> &
|
|
23
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+i18n@9.5.5_@vue+com_579c2d5abe0704eafcdbb50a0fdc3c2c/node_modules/@nuxtjs/i18n/dist/runtime/plugins/i18n.js")> &
|
|
24
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@pinia+nuxt@0.11.1_magicast_e0c2249d771533613ae168043fed6c1a/node_modules/@pinia/nuxt/dist/runtime/plugin.vue3.js")> &
|
|
25
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/pages/runtime/plugins/prefetch.client.js")> &
|
|
26
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/pages/runtime/plugins/check-if-page-unused.js")> &
|
|
27
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@6_fa467e014788db69f8d6c82360d52d80/node_modules/@nuxt/devtools/dist/runtime/plugins/devtools.server.js")> &
|
|
28
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@6_fa467e014788db69f8d6c82360d52d80/node_modules/@nuxt/devtools/dist/runtime/plugins/devtools.client.js")> &
|
|
29
29
|
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/app/plugins/session.client.js")> &
|
|
30
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.
|
|
31
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.
|
|
32
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.
|
|
33
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.
|
|
34
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-link-checker@4.3.
|
|
35
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+robots@5.2.
|
|
36
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-site-config@3.1.
|
|
37
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-neon@0.6.
|
|
38
|
-
InjectionType<typeof import("../../node_modules/.pnpm
|
|
39
|
-
InjectionType<typeof import("../../node_modules/.pnpm
|
|
40
|
-
InjectionType<typeof import("../../node_modules/.pnpm
|
|
41
|
-
InjectionType<typeof import("../../node_modules/.pnpm/@
|
|
42
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt
|
|
43
|
-
InjectionType<typeof import("../../node_modules/.pnpm/nuxt
|
|
30
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/app/plugins/siteConfig.js")> &
|
|
31
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/app/plugins/inferSeoMetaPlugin.js")> &
|
|
32
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/app/plugins/titles.js")> &
|
|
33
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/app/plugins/defaultsWaitI18n.js")> &
|
|
34
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_43086d7c38f03d707b1b2f292f1c8605/node_modules/nuxt-link-checker/dist/runtime/app/plugins/ui.client.js")> &
|
|
35
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/app/plugins/robot-meta.server.js")> &
|
|
36
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/app/plugins/i18n.js")> &
|
|
37
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/plugin.js")> &
|
|
38
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+ui@3.1.3_@babel+parse_613e1594b66d71503080dcdd941c3dc5/node_modules/@nuxt/ui/dist/runtime/plugins/colors.js")> &
|
|
39
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+color-mode@3.5.2_magicast@0.3.5/node_modules/@nuxtjs/color-mode/dist/runtime/plugin.server.js")> &
|
|
40
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+color-mode@3.5.2_magicast@0.3.5/node_modules/@nuxtjs/color-mode/dist/runtime/plugin.client.js")> &
|
|
41
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+icon@1.13.0_magicast@_3dcaa2a356d6f220d30fc0914c6e284d/node_modules/@nuxt/icon/dist/runtime/plugin.js")> &
|
|
42
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/app/plugins/dev-server-logs.js")> &
|
|
43
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/app/plugins/check-if-layout-used.js")> &
|
|
44
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/pages/runtime/plugins/prerender.server.js")> &
|
|
45
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxtjs+i18n@9.5.5_@vue+com_579c2d5abe0704eafcdbb50a0fdc3c2c/node_modules/@nuxtjs/i18n/dist/runtime/plugins/ssg-detect.js")> &
|
|
46
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/app/plugins/1.absoluteImageUrls.server.js")> &
|
|
47
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/app/plugins/0.routeRules.js")>
|
|
44
48
|
|
|
45
49
|
declare module '#app' {
|
|
46
50
|
interface NuxtApp extends NuxtAppInjections { }
|
|
47
51
|
|
|
48
52
|
interface NuxtAppLiterals {
|
|
49
|
-
pluginName: 'vue-devtools-client' | 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'session-fetch-plugin' | 'nuxt-site-config:init' | 'nuxt:browser-devtools-timing' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'i18n:plugin:switch-locale-path-ssr' | 'i18n:plugin:route-locale-detect' | 'i18n:plugin' | 'pinia' | 'nuxt:global-components' | 'nuxt:prefetch' | 'nuxt:checkIfPageUnused' | 'nuxt-seo:fallback-titles' | 'nuxt-seo:defaults' | 'nuxt-site-config:i18n' | 'nuxt:checkIfLayoutUsed' | 'i18n:plugin:ssg-detect'
|
|
53
|
+
pluginName: 'vue-devtools-client' | 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'session-fetch-plugin' | 'nuxt-site-config:init' | 'nuxt:browser-devtools-timing' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'i18n:plugin:switch-locale-path-ssr' | 'i18n:plugin:route-locale-detect' | 'i18n:plugin' | 'pinia' | 'nuxt:global-components' | 'nuxt:prefetch' | 'nuxt:checkIfPageUnused' | 'nuxt-seo:fallback-titles' | 'nuxt-seo:defaults' | 'nuxt-site-config:i18n' | '@nuxt/icon' | 'nuxt:checkIfLayoutUsed' | 'i18n:plugin:ssg-detect'
|
|
50
54
|
}
|
|
51
55
|
}
|
|
52
56
|
|
package/.nuxt/types/schema.d.ts
CHANGED
|
@@ -29,6 +29,18 @@ declare module '@nuxt/schema' {
|
|
|
29
29
|
* Configuration for `@vueuse/nuxt`
|
|
30
30
|
*/
|
|
31
31
|
["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
32
|
+
/**
|
|
33
|
+
* Configuration for `@nuxt/icon`
|
|
34
|
+
*/
|
|
35
|
+
["icon"]: typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
36
|
+
/**
|
|
37
|
+
* Configuration for `@nuxtjs/color-mode`
|
|
38
|
+
*/
|
|
39
|
+
["colorMode"]: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
40
|
+
/**
|
|
41
|
+
* Configuration for `@nuxt/ui`
|
|
42
|
+
*/
|
|
43
|
+
["ui"]: typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
32
44
|
/**
|
|
33
45
|
* Configuration for `nuxt-neon`
|
|
34
46
|
*/
|
|
@@ -42,9 +54,9 @@ declare module '@nuxt/schema' {
|
|
|
42
54
|
*/
|
|
43
55
|
["vueform"]: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
44
56
|
/**
|
|
45
|
-
* Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
57
|
+
* Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module`
|
|
46
58
|
*/
|
|
47
|
-
["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
59
|
+
["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
48
60
|
/**
|
|
49
61
|
* Configuration for `@nuxtjs/robots`
|
|
50
62
|
*/
|
|
@@ -127,6 +139,18 @@ declare module '@nuxt/schema' {
|
|
|
127
139
|
* Configuration for `@vueuse/nuxt`
|
|
128
140
|
*/
|
|
129
141
|
["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
142
|
+
/**
|
|
143
|
+
* Configuration for `@nuxt/icon`
|
|
144
|
+
*/
|
|
145
|
+
["icon"]?: typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
146
|
+
/**
|
|
147
|
+
* Configuration for `@nuxtjs/color-mode`
|
|
148
|
+
*/
|
|
149
|
+
["colorMode"]?: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
150
|
+
/**
|
|
151
|
+
* Configuration for `@nuxt/ui`
|
|
152
|
+
*/
|
|
153
|
+
["ui"]?: typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
130
154
|
/**
|
|
131
155
|
* Configuration for `nuxt-neon`
|
|
132
156
|
*/
|
|
@@ -140,9 +164,9 @@ declare module '@nuxt/schema' {
|
|
|
140
164
|
*/
|
|
141
165
|
["vueform"]?: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
142
166
|
/**
|
|
143
|
-
* Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
167
|
+
* Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module`
|
|
144
168
|
*/
|
|
145
|
-
["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
169
|
+
["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
146
170
|
/**
|
|
147
171
|
* Configuration for `@nuxtjs/robots`
|
|
148
172
|
*/
|
|
@@ -195,7 +219,7 @@ declare module '@nuxt/schema' {
|
|
|
195
219
|
* Configuration for `@nuxt/telemetry`
|
|
196
220
|
*/
|
|
197
221
|
["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
198
|
-
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["nuxt-neon", Exclude<NuxtConfig["neon"], boolean>] | ["@nuxtjs/i18n", Exclude<NuxtConfig["i18n"], boolean>] | ["@vueform/nuxt", Exclude<NuxtConfig["vueform"], boolean>] | ["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
222
|
+
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxtjs/color-mode", Exclude<NuxtConfig["colorMode"], boolean>] | ["@nuxt/ui", Exclude<NuxtConfig["ui"], boolean>] | ["nuxt-neon", Exclude<NuxtConfig["neon"], boolean>] | ["@nuxtjs/i18n", Exclude<NuxtConfig["i18n"], boolean>] | ["@vueform/nuxt", Exclude<NuxtConfig["vueform"], boolean>] | ["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module", Exclude<NuxtConfig["site"], boolean>] | ["@nuxtjs/robots", Exclude<NuxtConfig["robots"], boolean>] | ["@nuxtjs/sitemap", Exclude<NuxtConfig["sitemap"], boolean>] | ["nuxt-og-image", Exclude<NuxtConfig["ogImage"], boolean>] | ["nuxt-schema-org", Exclude<NuxtConfig["schemaOrg"], boolean>] | ["nuxt-link-checker", Exclude<NuxtConfig["linkChecker"], boolean>] | ["nuxt-seo-utils", Exclude<NuxtConfig["seo"], boolean>] | ["@nuxtjs/seo", Exclude<NuxtConfig["nuxtseo"], boolean>] | ["@nuxtjs/mdc", Exclude<NuxtConfig["mdc"], boolean>] | ["@nuxt/content", Exclude<NuxtConfig["content"], boolean>] | ["nuxt-auth-utils", Exclude<NuxtConfig["auth"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
|
|
199
223
|
}
|
|
200
224
|
}
|
|
201
225
|
declare module 'nuxt/schema' {
|
|
@@ -235,6 +259,21 @@ declare module 'nuxt/schema' {
|
|
|
235
259
|
* @see https://www.npmjs.com/package/@vueuse/nuxt
|
|
236
260
|
*/
|
|
237
261
|
["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
262
|
+
/**
|
|
263
|
+
* Configuration for `@nuxt/icon`
|
|
264
|
+
* @see https://www.npmjs.com/package/@nuxt/icon
|
|
265
|
+
*/
|
|
266
|
+
["icon"]: typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
267
|
+
/**
|
|
268
|
+
* Configuration for `@nuxtjs/color-mode`
|
|
269
|
+
* @see https://www.npmjs.com/package/@nuxtjs/color-mode
|
|
270
|
+
*/
|
|
271
|
+
["colorMode"]: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
272
|
+
/**
|
|
273
|
+
* Configuration for `@nuxt/ui`
|
|
274
|
+
* @see https://ui.nuxt.com/getting-started/installation/nuxt
|
|
275
|
+
*/
|
|
276
|
+
["ui"]: typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
238
277
|
/**
|
|
239
278
|
* Configuration for `nuxt-neon`
|
|
240
279
|
* @see https://www.npmjs.com/package/nuxt-neon
|
|
@@ -251,10 +290,10 @@ declare module 'nuxt/schema' {
|
|
|
251
290
|
*/
|
|
252
291
|
["vueform"]: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
253
292
|
/**
|
|
254
|
-
* Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
255
|
-
* @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
293
|
+
* Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module`
|
|
294
|
+
* @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module
|
|
256
295
|
*/
|
|
257
|
-
["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
296
|
+
["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? O : Record<string, any>
|
|
258
297
|
/**
|
|
259
298
|
* Configuration for `@nuxtjs/robots`
|
|
260
299
|
* @see https://www.npmjs.com/package/@nuxtjs/robots
|
|
@@ -357,6 +396,21 @@ declare module 'nuxt/schema' {
|
|
|
357
396
|
* @see https://www.npmjs.com/package/@vueuse/nuxt
|
|
358
397
|
*/
|
|
359
398
|
["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
399
|
+
/**
|
|
400
|
+
* Configuration for `@nuxt/icon`
|
|
401
|
+
* @see https://www.npmjs.com/package/@nuxt/icon
|
|
402
|
+
*/
|
|
403
|
+
["icon"]?: typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
404
|
+
/**
|
|
405
|
+
* Configuration for `@nuxtjs/color-mode`
|
|
406
|
+
* @see https://www.npmjs.com/package/@nuxtjs/color-mode
|
|
407
|
+
*/
|
|
408
|
+
["colorMode"]?: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
409
|
+
/**
|
|
410
|
+
* Configuration for `@nuxt/ui`
|
|
411
|
+
* @see https://ui.nuxt.com/getting-started/installation/nuxt
|
|
412
|
+
*/
|
|
413
|
+
["ui"]?: typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
360
414
|
/**
|
|
361
415
|
* Configuration for `nuxt-neon`
|
|
362
416
|
* @see https://www.npmjs.com/package/nuxt-neon
|
|
@@ -373,10 +427,10 @@ declare module 'nuxt/schema' {
|
|
|
373
427
|
*/
|
|
374
428
|
["vueform"]?: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
375
429
|
/**
|
|
376
|
-
* Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
377
|
-
* @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
430
|
+
* Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module`
|
|
431
|
+
* @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module
|
|
378
432
|
*/
|
|
379
|
-
["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
433
|
+
["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
380
434
|
/**
|
|
381
435
|
* Configuration for `@nuxtjs/robots`
|
|
382
436
|
* @see https://www.npmjs.com/package/@nuxtjs/robots
|
|
@@ -442,7 +496,7 @@ declare module 'nuxt/schema' {
|
|
|
442
496
|
* @see https://www.npmjs.com/package/@nuxt/telemetry
|
|
443
497
|
*/
|
|
444
498
|
["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
445
|
-
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["nuxt-neon", Exclude<NuxtConfig["neon"], boolean>] | ["@nuxtjs/i18n", Exclude<NuxtConfig["i18n"], boolean>] | ["@vueform/nuxt", Exclude<NuxtConfig["vueform"], boolean>] | ["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
499
|
+
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxtjs/color-mode", Exclude<NuxtConfig["colorMode"], boolean>] | ["@nuxt/ui", Exclude<NuxtConfig["ui"], boolean>] | ["nuxt-neon", Exclude<NuxtConfig["neon"], boolean>] | ["@nuxtjs/i18n", Exclude<NuxtConfig["i18n"], boolean>] | ["@vueform/nuxt", Exclude<NuxtConfig["vueform"], boolean>] | ["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module", Exclude<NuxtConfig["site"], boolean>] | ["@nuxtjs/robots", Exclude<NuxtConfig["robots"], boolean>] | ["@nuxtjs/sitemap", Exclude<NuxtConfig["sitemap"], boolean>] | ["nuxt-og-image", Exclude<NuxtConfig["ogImage"], boolean>] | ["nuxt-schema-org", Exclude<NuxtConfig["schemaOrg"], boolean>] | ["nuxt-link-checker", Exclude<NuxtConfig["linkChecker"], boolean>] | ["nuxt-seo-utils", Exclude<NuxtConfig["seo"], boolean>] | ["@nuxtjs/seo", Exclude<NuxtConfig["nuxtseo"], boolean>] | ["@nuxtjs/mdc", Exclude<NuxtConfig["mdc"], boolean>] | ["@nuxt/content", Exclude<NuxtConfig["content"], boolean>] | ["nuxt-auth-utils", Exclude<NuxtConfig["auth"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
|
|
446
500
|
}
|
|
447
501
|
interface RuntimeConfig {
|
|
448
502
|
app: {
|
|
@@ -605,6 +659,10 @@ declare module 'nuxt/schema' {
|
|
|
605
659
|
sri: boolean,
|
|
606
660
|
},
|
|
607
661
|
|
|
662
|
+
icon: {
|
|
663
|
+
serverKnownCssClasses: Array<any>,
|
|
664
|
+
},
|
|
665
|
+
|
|
608
666
|
neonHost: string,
|
|
609
667
|
|
|
610
668
|
neonUser: string,
|
|
@@ -1248,6 +1306,8 @@ declare module 'nuxt/schema' {
|
|
|
1248
1306
|
|
|
1249
1307
|
neonRawWarning: boolean,
|
|
1250
1308
|
|
|
1309
|
+
neonDebugSQL: boolean,
|
|
1310
|
+
|
|
1251
1311
|
"nuxt-link-checker": {
|
|
1252
1312
|
version: string,
|
|
1253
1313
|
|
package/.nuxt/types/ui.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { TVConfig } from '@nuxt/ui'
|
|
|
3
3
|
import type { defaultConfig } from 'tailwind-variants'
|
|
4
4
|
import colors from 'tailwindcss/colors'
|
|
5
5
|
|
|
6
|
-
const icons = {"arrowLeft":"i-lucide-arrow-left","arrowRight":"i-lucide-arrow-right","check":"i-lucide-check","chevronDoubleLeft":"i-lucide-chevrons-left","chevronDoubleRight":"i-lucide-chevrons-right","chevronDown":"i-lucide-chevron-down","chevronLeft":"i-lucide-chevron-left","chevronRight":"i-lucide-chevron-right","chevronUp":"i-lucide-chevron-up","close":"i-lucide-x","ellipsis":"i-lucide-ellipsis","external":"i-lucide-arrow-up-right","folder":"i-lucide-folder","folderOpen":"i-lucide-folder-open","loading":"i-lucide-
|
|
6
|
+
const icons = {"arrowLeft":"i-lucide-arrow-left","arrowRight":"i-lucide-arrow-right","check":"i-lucide-check","chevronDoubleLeft":"i-lucide-chevrons-left","chevronDoubleRight":"i-lucide-chevrons-right","chevronDown":"i-lucide-chevron-down","chevronLeft":"i-lucide-chevron-left","chevronRight":"i-lucide-chevron-right","chevronUp":"i-lucide-chevron-up","close":"i-lucide-x","ellipsis":"i-lucide-ellipsis","external":"i-lucide-arrow-up-right","folder":"i-lucide-folder","folderOpen":"i-lucide-folder-open","loading":"i-lucide-loader-circle","minus":"i-lucide-minus","plus":"i-lucide-plus","search":"i-lucide-search"};
|
|
7
7
|
|
|
8
8
|
type NeutralColor = 'slate' | 'gray' | 'zinc' | 'neutral' | 'stone' | (string & {})
|
|
9
9
|
type Color = Exclude<keyof typeof colors, 'inherit' | 'current' | 'transparent' | 'black' | 'white' | NeutralColor> | (string & {})
|
|
@@ -127,7 +127,7 @@ export default {
|
|
|
127
127
|
"orientation": "horizontal" as typeof orientation[number],
|
|
128
128
|
"variant": "table" as typeof variant[number],
|
|
129
129
|
"class": {
|
|
130
|
-
"item": "first-of-type:rounded-
|
|
130
|
+
"item": "first-of-type:rounded-s-lg last-of-type:rounded-e-lg",
|
|
131
131
|
"fieldset": "gap-0 -space-x-px"
|
|
132
132
|
}
|
|
133
133
|
},
|
package/.nuxt/ui/context-menu.ts
CHANGED
|
@@ -18,7 +18,8 @@ const size = [
|
|
|
18
18
|
|
|
19
19
|
export default {
|
|
20
20
|
"slots": {
|
|
21
|
-
"content": "min-w-32 bg-default shadow-lg rounded-md ring ring-default
|
|
21
|
+
"content": "min-w-32 bg-default shadow-lg rounded-md ring ring-default overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-context-menu-content-transform-origin) flex flex-col",
|
|
22
|
+
"viewport": "relative divide-y divide-default scroll-py-1 overflow-y-auto flex-1",
|
|
22
23
|
"group": "p-1 isolate",
|
|
23
24
|
"label": "w-full flex items-center font-semibold text-highlighted",
|
|
24
25
|
"separator": "-mx-1 my-1 h-px bg-border",
|
|
@@ -18,7 +18,8 @@ const size = [
|
|
|
18
18
|
|
|
19
19
|
export default {
|
|
20
20
|
"slots": {
|
|
21
|
-
"content": "min-w-32 bg-default shadow-lg rounded-md ring ring-default
|
|
21
|
+
"content": "min-w-32 bg-default shadow-lg rounded-md ring ring-default overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-dropdown-menu-content-transform-origin) flex flex-col",
|
|
22
|
+
"viewport": "relative divide-y divide-default scroll-py-1 overflow-y-auto flex-1",
|
|
22
23
|
"arrow": "fill-default",
|
|
23
24
|
"group": "p-1 isolate",
|
|
24
25
|
"label": "w-full flex items-center font-semibold text-highlighted",
|
package/.nuxt/ui/input-menu.ts
CHANGED
|
@@ -38,8 +38,8 @@ export default {
|
|
|
38
38
|
"trailing": "group absolute inset-y-0 end-0 flex items-center disabled:cursor-not-allowed disabled:opacity-75",
|
|
39
39
|
"trailingIcon": "shrink-0 text-dimmed",
|
|
40
40
|
"arrow": "fill-default",
|
|
41
|
-
"content": "max-h-60 w-(--reka-combobox-trigger-width) bg-default shadow-lg rounded-md ring ring-default overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-combobox-content-transform-origin) pointer-events-auto",
|
|
42
|
-
"viewport": "divide-y divide-default scroll-py-1",
|
|
41
|
+
"content": "max-h-60 w-(--reka-combobox-trigger-width) bg-default shadow-lg rounded-md ring ring-default overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-combobox-content-transform-origin) pointer-events-auto flex flex-col",
|
|
42
|
+
"viewport": "relative divide-y divide-default scroll-py-1 overflow-y-auto flex-1",
|
|
43
43
|
"group": "p-1 isolate",
|
|
44
44
|
"empty": "py-2 text-center text-sm text-muted",
|
|
45
45
|
"label": "font-semibold text-highlighted",
|
|
@@ -43,24 +43,25 @@ export default {
|
|
|
43
43
|
"linkLeadingIcon": "shrink-0 size-5",
|
|
44
44
|
"linkLeadingAvatar": "shrink-0",
|
|
45
45
|
"linkLeadingAvatarSize": "2xs",
|
|
46
|
-
"linkTrailing": "ms-auto inline-flex gap-1.5 items-center",
|
|
46
|
+
"linkTrailing": "group ms-auto inline-flex gap-1.5 items-center",
|
|
47
47
|
"linkTrailingBadge": "shrink-0",
|
|
48
48
|
"linkTrailingBadgeSize": "sm",
|
|
49
49
|
"linkTrailingIcon": "size-5 transform shrink-0 group-data-[state=open]:rotate-180 transition-transform duration-200",
|
|
50
50
|
"linkLabel": "truncate",
|
|
51
51
|
"linkLabelExternalIcon": "inline-block size-3 align-top text-dimmed",
|
|
52
|
-
"childList": "",
|
|
52
|
+
"childList": "isolate",
|
|
53
|
+
"childLabel": "text-xs text-highlighted",
|
|
53
54
|
"childItem": "",
|
|
54
|
-
"childLink": "group size-full
|
|
55
|
-
"childLinkWrapper": "
|
|
55
|
+
"childLink": "group relative size-full flex items-start text-start text-sm before:absolute before:z-[-1] before:rounded-md focus:outline-none focus-visible:outline-none dark:focus-visible:outline-none focus-visible:before:ring-inset focus-visible:before:ring-2",
|
|
56
|
+
"childLinkWrapper": "min-w-0",
|
|
56
57
|
"childLinkIcon": "size-5 shrink-0",
|
|
57
|
-
"childLinkLabel": "
|
|
58
|
+
"childLinkLabel": "truncate",
|
|
58
59
|
"childLinkLabelExternalIcon": "inline-block size-3 align-top text-dimmed",
|
|
59
|
-
"childLinkDescription": "text-
|
|
60
|
+
"childLinkDescription": "text-muted",
|
|
60
61
|
"separator": "px-2 h-px bg-border",
|
|
61
62
|
"viewportWrapper": "absolute top-full left-0 flex w-full",
|
|
62
63
|
"viewport": "relative overflow-hidden bg-default shadow-lg rounded-md ring ring-default h-(--reka-navigation-menu-viewport-height) w-full transition-[width,height,left] duration-200 origin-[top_center] data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] z-[1]",
|
|
63
|
-
"content": "
|
|
64
|
+
"content": "",
|
|
64
65
|
"indicator": "absolute data-[state=visible]:animate-[fade-in_100ms_ease-out] data-[state=hidden]:animate-[fade-out_100ms_ease-in] data-[state=hidden]:opacity-0 bottom-0 z-[2] w-(--reka-navigation-menu-indicator-size) translate-x-(--reka-navigation-menu-indicator-position) flex h-2.5 items-end justify-center overflow-hidden transition-[translate,width] duration-200",
|
|
65
66
|
"arrow": "relative top-[50%] size-2.5 rotate-45 border border-default bg-default z-[1] rounded-xs"
|
|
66
67
|
},
|
|
@@ -68,31 +69,31 @@ export default {
|
|
|
68
69
|
"color": {
|
|
69
70
|
"primary": {
|
|
70
71
|
"link": "focus-visible:before:ring-primary",
|
|
71
|
-
"childLink": "focus-visible:
|
|
72
|
+
"childLink": "focus-visible:before:ring-primary"
|
|
72
73
|
},
|
|
73
74
|
"secondary": {
|
|
74
75
|
"link": "focus-visible:before:ring-secondary",
|
|
75
|
-
"childLink": "focus-visible:
|
|
76
|
+
"childLink": "focus-visible:before:ring-secondary"
|
|
76
77
|
},
|
|
77
78
|
"success": {
|
|
78
79
|
"link": "focus-visible:before:ring-success",
|
|
79
|
-
"childLink": "focus-visible:
|
|
80
|
+
"childLink": "focus-visible:before:ring-success"
|
|
80
81
|
},
|
|
81
82
|
"info": {
|
|
82
83
|
"link": "focus-visible:before:ring-info",
|
|
83
|
-
"childLink": "focus-visible:
|
|
84
|
+
"childLink": "focus-visible:before:ring-info"
|
|
84
85
|
},
|
|
85
86
|
"warning": {
|
|
86
87
|
"link": "focus-visible:before:ring-warning",
|
|
87
|
-
"childLink": "focus-visible:
|
|
88
|
+
"childLink": "focus-visible:before:ring-warning"
|
|
88
89
|
},
|
|
89
90
|
"error": {
|
|
90
91
|
"link": "focus-visible:before:ring-error",
|
|
91
|
-
"childLink": "focus-visible:
|
|
92
|
+
"childLink": "focus-visible:before:ring-error"
|
|
92
93
|
},
|
|
93
94
|
"neutral": {
|
|
94
95
|
"link": "focus-visible:before:ring-inverted",
|
|
95
|
-
"childLink": "focus-visible:
|
|
96
|
+
"childLink": "focus-visible:before:ring-inverted"
|
|
96
97
|
}
|
|
97
98
|
},
|
|
98
99
|
"highlightColor": {
|
|
@@ -114,11 +115,16 @@ export default {
|
|
|
114
115
|
"list": "flex items-center",
|
|
115
116
|
"item": "py-2",
|
|
116
117
|
"link": "px-2.5 py-1.5 before:inset-x-px before:inset-y-0",
|
|
117
|
-
"childList": "grid p-2"
|
|
118
|
+
"childList": "grid p-2",
|
|
119
|
+
"childLink": "px-3 py-2 gap-2 before:inset-x-px before:inset-y-0",
|
|
120
|
+
"childLinkLabel": "font-medium",
|
|
121
|
+
"content": "absolute top-0 left-0 w-full"
|
|
118
122
|
},
|
|
119
123
|
"vertical": {
|
|
120
124
|
"root": "flex-col",
|
|
121
|
-
"link": "flex-row px-2.5 py-1.5 before:inset-y-px before:inset-x-0"
|
|
125
|
+
"link": "flex-row px-2.5 py-1.5 before:inset-y-px before:inset-x-0",
|
|
126
|
+
"childLabel": "px-1.5 py-0.5",
|
|
127
|
+
"childLink": "p-1.5 gap-1.5 before:inset-y-px before:inset-x-0"
|
|
122
128
|
}
|
|
123
129
|
},
|
|
124
130
|
"contentOrientation": {
|
|
@@ -132,15 +138,15 @@ export default {
|
|
|
132
138
|
},
|
|
133
139
|
"active": {
|
|
134
140
|
"true": {
|
|
135
|
-
"childLink": "bg-elevated text-highlighted",
|
|
141
|
+
"childLink": "before:bg-elevated text-highlighted",
|
|
136
142
|
"childLinkIcon": "text-default"
|
|
137
143
|
},
|
|
138
144
|
"false": {
|
|
139
145
|
"link": "text-muted",
|
|
140
146
|
"linkLeadingIcon": "text-dimmed",
|
|
141
147
|
"childLink": [
|
|
142
|
-
"hover:bg-elevated/50 text-default hover:text-highlighted",
|
|
143
|
-
"transition-colors"
|
|
148
|
+
"hover:before:bg-elevated/50 text-default hover:text-highlighted",
|
|
149
|
+
"transition-colors before:transition-colors"
|
|
144
150
|
],
|
|
145
151
|
"childLinkIcon": [
|
|
146
152
|
"text-dimmed group-hover:text-default",
|
|
@@ -179,6 +185,23 @@ export default {
|
|
|
179
185
|
"content": "w-60"
|
|
180
186
|
}
|
|
181
187
|
},
|
|
188
|
+
{
|
|
189
|
+
"orientation": "vertical" as typeof orientation[number],
|
|
190
|
+
"collapsed": false,
|
|
191
|
+
"class": {
|
|
192
|
+
"childList": "ms-5 border-s border-default",
|
|
193
|
+
"childItem": "ps-1.5 -ms-px",
|
|
194
|
+
"content": "data-[state=open]:animate-[collapsible-down_200ms_ease-out] data-[state=closed]:animate-[collapsible-up_200ms_ease-out] overflow-hidden"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"orientation": "vertical" as typeof orientation[number],
|
|
199
|
+
"collapsed": true,
|
|
200
|
+
"class": {
|
|
201
|
+
"link": "px-1.5",
|
|
202
|
+
"content": "shadow-sm rounded-sm min-h-6 p-1"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
182
205
|
{
|
|
183
206
|
"orientation": "horizontal" as typeof orientation[number],
|
|
184
207
|
"highlight": true,
|
|
@@ -319,6 +342,7 @@ export default {
|
|
|
319
342
|
"variant": "pill" as typeof variant[number],
|
|
320
343
|
"active": true,
|
|
321
344
|
"highlight": true,
|
|
345
|
+
"disabled": false,
|
|
322
346
|
"class": {
|
|
323
347
|
"link": [
|
|
324
348
|
"hover:before:bg-elevated/50",
|
|
@@ -476,21 +500,6 @@ export default {
|
|
|
476
500
|
"class": {
|
|
477
501
|
"link": "after:bg-inverted"
|
|
478
502
|
}
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"orientation": "vertical" as typeof orientation[number],
|
|
482
|
-
"collapsed": false,
|
|
483
|
-
"class": {
|
|
484
|
-
"childList": "ms-5 border-s border-default",
|
|
485
|
-
"childItem": "ps-1.5 -ms-px"
|
|
486
|
-
}
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
"orientation": "vertical" as typeof orientation[number],
|
|
490
|
-
"collapsed": true,
|
|
491
|
-
"class": {
|
|
492
|
-
"link": "px-1.5"
|
|
493
|
-
}
|
|
494
503
|
}
|
|
495
504
|
],
|
|
496
505
|
"defaultVariants": {
|
package/.nuxt/ui/radio-group.ts
CHANGED
|
@@ -219,7 +219,7 @@ export default {
|
|
|
219
219
|
"orientation": "horizontal" as typeof orientation[number],
|
|
220
220
|
"variant": "table" as typeof variant[number],
|
|
221
221
|
"class": {
|
|
222
|
-
"item": "first-of-type:rounded-
|
|
222
|
+
"item": "first-of-type:rounded-s-lg last-of-type:rounded-e-lg",
|
|
223
223
|
"fieldset": "gap-0 -space-x-px"
|
|
224
224
|
}
|
|
225
225
|
},
|
package/.nuxt/ui/select-menu.ts
CHANGED
|
@@ -40,10 +40,10 @@ export default {
|
|
|
40
40
|
"placeholder": "truncate text-dimmed",
|
|
41
41
|
"arrow": "fill-default",
|
|
42
42
|
"content": [
|
|
43
|
-
"max-h-60 w-(--reka-select-trigger-width) bg-default shadow-lg rounded-md ring ring-default overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-select-content-transform-origin) pointer-events-auto",
|
|
43
|
+
"max-h-60 w-(--reka-select-trigger-width) bg-default shadow-lg rounded-md ring ring-default overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-select-content-transform-origin) pointer-events-auto flex flex-col",
|
|
44
44
|
"origin-(--reka-combobox-content-transform-origin) w-(--reka-combobox-trigger-width)"
|
|
45
45
|
],
|
|
46
|
-
"viewport": "divide-y divide-default scroll-py-1",
|
|
46
|
+
"viewport": "relative divide-y divide-default scroll-py-1 overflow-y-auto flex-1",
|
|
47
47
|
"group": "p-1 isolate",
|
|
48
48
|
"empty": "py-2 text-center text-sm text-muted",
|
|
49
49
|
"label": "font-semibold text-highlighted",
|
package/.nuxt/ui/select.ts
CHANGED
|
@@ -39,8 +39,8 @@ export default {
|
|
|
39
39
|
"value": "truncate pointer-events-none",
|
|
40
40
|
"placeholder": "truncate text-dimmed",
|
|
41
41
|
"arrow": "fill-default",
|
|
42
|
-
"content": "max-h-60 w-(--reka-select-trigger-width) bg-default shadow-lg rounded-md ring ring-default overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-select-content-transform-origin) pointer-events-auto",
|
|
43
|
-
"viewport": "divide-y divide-default scroll-py-1",
|
|
42
|
+
"content": "max-h-60 w-(--reka-select-trigger-width) bg-default shadow-lg rounded-md ring ring-default overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-select-content-transform-origin) pointer-events-auto flex flex-col",
|
|
43
|
+
"viewport": "relative divide-y divide-default scroll-py-1 overflow-y-auto flex-1",
|
|
44
44
|
"group": "p-1 isolate",
|
|
45
45
|
"empty": "py-2 text-center text-sm text-muted",
|
|
46
46
|
"label": "font-semibold text-highlighted",
|
package/.nuxt/ui/tooltip.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"slots": {
|
|
3
|
-
"content": "flex items-center gap-1 bg-default text-highlighted shadow-sm rounded-sm ring ring-default h-6 px-2 py-1 text-xs select-none data-[state=delayed-open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-tooltip-content-transform-origin) pointer-events-auto",
|
|
3
|
+
"content": "flex items-center gap-1 bg-default text-highlighted shadow-sm rounded-sm ring ring-default h-6 px-2.5 py-1 text-xs select-none data-[state=delayed-open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-tooltip-content-transform-origin) pointer-events-auto",
|
|
4
4
|
"arrow": "fill-default",
|
|
5
5
|
"text": "truncate",
|
|
6
6
|
"kbds": "hidden lg:inline-flex items-center shrink-0 gap-0.5 before:content-['·'] before:me-0.5",
|
package/.nuxt/ui.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@source "./ui";
|
|
2
2
|
|
|
3
|
-
@theme
|
|
3
|
+
@theme static {
|
|
4
4
|
--color-old-neutral-50: oklch(98.5% 0 0);
|
|
5
5
|
--color-old-neutral-100: oklch(97% 0 0);
|
|
6
6
|
--color-old-neutral-200: oklch(92.2% 0 0);
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
--color-old-neutral-800: oklch(26.9% 0 0);
|
|
13
13
|
--color-old-neutral-900: oklch(20.5% 0 0);
|
|
14
14
|
--color-old-neutral-950: oklch(14.5% 0 0);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@theme default inline {
|
|
15
18
|
--color-primary-50: var(--ui-color-primary-50);
|
|
16
19
|
--color-primary-100: var(--ui-color-primary-100);
|
|
17
20
|
--color-primary-200: var(--ui-color-primary-200);
|
package/content.config.ts
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
// minimal config for Nuxt Content
|
|
2
|
+
// currently required to be loaded like this...
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
content: defineCollection({
|
|
8
|
-
source: '**',
|
|
9
|
-
type: 'page',
|
|
10
|
-
}),
|
|
11
|
-
},
|
|
4
|
+
import { loadContentConfig } from './utils/content'
|
|
5
|
+
|
|
6
|
+
export default loadContentConfig({
|
|
7
|
+
// custom config here
|
|
12
8
|
})
|