nuxt-ignis 0.3.0 → 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.
Files changed (128) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +43 -0
  3. package/.nuxt/app.config.mjs +227 -1
  4. package/.nuxt/components.d.ts +496 -132
  5. package/.nuxt/content/components.ts +108 -0
  6. package/.nuxt/content/database.compressed.mjs +1 -0
  7. package/.nuxt/content/manifest.ts +33 -0
  8. package/.nuxt/content/sql_dump +6 -0
  9. package/.nuxt/content/types.d.ts +13 -0
  10. package/.nuxt/dev/index.mjs +4719 -66
  11. package/.nuxt/dev/index.mjs.map +1 -1
  12. package/.nuxt/dist/server/client.manifest.json +2 -2
  13. package/.nuxt/dist/server/client.manifest.mjs +18 -1
  14. package/.nuxt/eslint.config.d.mts +2 -2
  15. package/.nuxt/eslint.config.mjs +2 -2
  16. package/.nuxt/i18n.options.mjs +165 -0
  17. package/.nuxt/imports.d.ts +62 -31
  18. package/.nuxt/manifest/latest.json +1 -1
  19. package/.nuxt/manifest/meta/dev.json +1 -1
  20. package/.nuxt/mdc-configs.mjs +8 -0
  21. package/.nuxt/mdc-highlighter.mjs +213 -0
  22. package/.nuxt/mdc-image-component.mjs +1 -0
  23. package/.nuxt/mdc-imports.mjs +12 -0
  24. package/.nuxt/module/@nuxtjs-sitemap.d.ts +28 -0
  25. package/.nuxt/module/nuxt-robots.d.ts +35 -0
  26. package/.nuxt/module/nuxt-seo-utils.assets.d.ts +25 -0
  27. package/.nuxt/module/nuxt-seo-utils.d.ts +22 -0
  28. package/.nuxt/module/nuxt-site-config.d.ts +43 -0
  29. package/.nuxt/nitro.json +4 -4
  30. package/.nuxt/nuxt-i18n-logger.mjs +1 -0
  31. package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
  32. package/.nuxt/nuxt-icon-server-bundle.mjs +15 -0
  33. package/.nuxt/nuxt.d.ts +23 -6
  34. package/.nuxt/nuxt.json +2 -2
  35. package/.nuxt/schema/nuxt.schema.d.ts +193 -0
  36. package/.nuxt/schema/nuxt.schema.json +261 -1
  37. package/.nuxt/tsconfig.json +216 -42
  38. package/.nuxt/tsconfig.server.json +181 -23
  39. package/.nuxt/types/app.config.d.ts +227 -1
  40. package/.nuxt/types/build.d.ts +4 -1
  41. package/.nuxt/types/i18n-plugin.d.ts +104 -0
  42. package/.nuxt/types/imports.d.ts +334 -210
  43. package/.nuxt/types/neon.d.ts +137 -0
  44. package/.nuxt/types/nitro-imports.d.ts +268 -6
  45. package/.nuxt/types/nitro-routes.d.ts +65 -1
  46. package/.nuxt/types/plugins.d.ts +40 -17
  47. package/.nuxt/types/schema.d.ts +984 -2
  48. package/.nuxt/types/ui.d.ts +35 -0
  49. package/.nuxt/ui/accordion.ts +20 -0
  50. package/.nuxt/ui/alert.ts +264 -0
  51. package/.nuxt/ui/avatar-group.ts +52 -0
  52. package/.nuxt/ui/avatar.ts +54 -0
  53. package/.nuxt/ui/badge.ts +263 -0
  54. package/.nuxt/ui/breadcrumb.ts +45 -0
  55. package/.nuxt/ui/button-group.ts +16 -0
  56. package/.nuxt/ui/button.ts +378 -0
  57. package/.nuxt/ui/calendar.ts +103 -0
  58. package/.nuxt/ui/card.ts +34 -0
  59. package/.nuxt/ui/carousel.ts +38 -0
  60. package/.nuxt/ui/checkbox-group.ts +204 -0
  61. package/.nuxt/ui/checkbox.ts +236 -0
  62. package/.nuxt/ui/chip.ts +96 -0
  63. package/.nuxt/ui/collapsible.ts +6 -0
  64. package/.nuxt/ui/color-picker.ts +47 -0
  65. package/.nuxt/ui/command-palette.ts +50 -0
  66. package/.nuxt/ui/container.ts +3 -0
  67. package/.nuxt/ui/context-menu.ts +217 -0
  68. package/.nuxt/ui/drawer.ts +126 -0
  69. package/.nuxt/ui/dropdown-menu.ts +218 -0
  70. package/.nuxt/ui/form-field.ts +48 -0
  71. package/.nuxt/ui/form.ts +3 -0
  72. package/.nuxt/ui/index.ts +50 -0
  73. package/.nuxt/ui/input-menu.ts +436 -0
  74. package/.nuxt/ui/input-number.ts +245 -0
  75. package/.nuxt/ui/input.ts +289 -0
  76. package/.nuxt/ui/kbd.ts +31 -0
  77. package/.nuxt/ui/link.ts +22 -0
  78. package/.nuxt/ui/modal.ts +29 -0
  79. package/.nuxt/ui/navigation-menu.ts +510 -0
  80. package/.nuxt/ui/pagination.ts +13 -0
  81. package/.nuxt/ui/pin-input.ts +171 -0
  82. package/.nuxt/ui/popover.ts +6 -0
  83. package/.nuxt/ui/progress.ts +297 -0
  84. package/.nuxt/ui/radio-group.ts +350 -0
  85. package/.nuxt/ui/select-menu.ts +346 -0
  86. package/.nuxt/ui/select.ts +341 -0
  87. package/.nuxt/ui/separator.ts +172 -0
  88. package/.nuxt/ui/skeleton.ts +3 -0
  89. package/.nuxt/ui/slideover.ts +71 -0
  90. package/.nuxt/ui/slider.ts +171 -0
  91. package/.nuxt/ui/stepper.ts +202 -0
  92. package/.nuxt/ui/switch.ts +131 -0
  93. package/.nuxt/ui/table.ts +147 -0
  94. package/.nuxt/ui/tabs.ts +256 -0
  95. package/.nuxt/ui/textarea.ts +294 -0
  96. package/.nuxt/ui/toast.ts +81 -0
  97. package/.nuxt/ui/toaster.ts +91 -0
  98. package/.nuxt/ui/tooltip.ts +9 -0
  99. package/.nuxt/ui/tree.ts +154 -0
  100. package/.nuxt/ui-image-component.ts +1 -0
  101. package/.nuxt/ui.css +146 -0
  102. package/content.config.ts +6 -10
  103. package/features.ts +43 -22
  104. package/nuxt.config.ts +1 -1
  105. package/package.json +13 -12
  106. package/server/api/neonTest.ts +7 -5
  107. package/tailwind.config.ts +1 -1
  108. package/test/features/db-neon.txt +3 -0
  109. package/test/features/db-off.txt +3 -0
  110. package/test/features/db-supabase.txt +3 -0
  111. package/test/features/default.txt +3 -0
  112. package/test/features/disable-core.txt +3 -0
  113. package/test/features/enable-all.txt +4 -0
  114. package/test/features/forms-formkit.txt +3 -0
  115. package/test/features/forms-off.txt +3 -0
  116. package/test/features/forms-vueform.txt +3 -0
  117. package/test/features/ui-nuxt-ui.txt +3 -0
  118. package/test/features/ui-off.txt +3 -0
  119. package/test/features/ui-tailwind.txt +4 -0
  120. package/test/features.test.ts +191 -0
  121. package/utils/config/content.config.ts +12 -0
  122. package/utils/config/vueform.config.ts +20 -0
  123. package/utils/content.ts +31 -0
  124. package/utils/tailwind.ts +19 -0
  125. package/utils/vueform.ts +16 -0
  126. package/vueform.config.ts +4 -16
  127. package/.nuxt/component-chunk.mjs +0 -1
  128. package/.nuxt/dist/server/server.mjs +0 -1
@@ -0,0 +1,213 @@
1
+ import { getMdcConfigs } from '#mdc-configs'
2
+ import { createOnigurumaEngine } from 'shiki/engine/oniguruma'
3
+ import { createJavaScriptRegexEngine } from "shiki/engine/javascript";
4
+ export function createShikiHighlighter({
5
+ langs = [],
6
+ themes = [],
7
+ bundledLangs = {},
8
+ bundledThemes = {},
9
+ getMdcConfigs,
10
+ options: shikiOptions,
11
+ engine
12
+ } = {}) {
13
+ let shiki;
14
+ let configs;
15
+ async function _getShiki() {
16
+ const { createHighlighterCore, addClassToHast, isSpecialLang, isSpecialTheme } = await import("shiki/core");
17
+ const { transformerNotationDiff, transformerNotationErrorLevel, transformerNotationFocus, transformerNotationHighlight } = await import("@shikijs/transformers");
18
+ const shiki2 = await createHighlighterCore({
19
+ langs,
20
+ themes,
21
+ engine: engine || createJavaScriptRegexEngine()
22
+ });
23
+ for await (const config of await getConfigs()) {
24
+ await config.shiki?.setup?.(shiki2);
25
+ }
26
+ return {
27
+ shiki: shiki2,
28
+ addClassToHast,
29
+ isSpecialLang,
30
+ isSpecialTheme,
31
+ transformers: [
32
+ transformerNotationDiff(),
33
+ transformerNotationErrorLevel(),
34
+ transformerNotationFocus(),
35
+ transformerNotationHighlight()
36
+ ]
37
+ };
38
+ }
39
+ async function getShiki() {
40
+ if (!shiki) {
41
+ shiki = _getShiki();
42
+ }
43
+ return shiki;
44
+ }
45
+ async function getConfigs() {
46
+ if (!configs) {
47
+ configs = Promise.resolve(getMdcConfigs?.() || []);
48
+ }
49
+ return configs;
50
+ }
51
+ const highlighter = async (code, lang, theme, options = {}) => {
52
+ const {
53
+ shiki: shiki2,
54
+ addClassToHast,
55
+ isSpecialLang,
56
+ isSpecialTheme,
57
+ transformers: baseTransformers
58
+ } = await getShiki();
59
+ const codeToHastOptions = {
60
+ defaultColor: false,
61
+ meta: {
62
+ __raw: options.meta
63
+ }
64
+ };
65
+ if (lang === "ts-type" || lang === "typescript-type") {
66
+ lang = "typescript";
67
+ codeToHastOptions.grammarContextCode = "let a:";
68
+ } else if (lang === "vue-html" || lang === "vue-template") {
69
+ lang = "vue";
70
+ codeToHastOptions.grammarContextCode = "<template>";
71
+ }
72
+ const themesObject = { ...typeof theme === "string" ? { default: theme } : theme || {} };
73
+ const loadedThemes = shiki2.getLoadedThemes();
74
+ const loadedLanguages = shiki2.getLoadedLanguages();
75
+ if (typeof lang === "string" && !loadedLanguages.includes(lang) && !isSpecialLang(lang)) {
76
+ if (bundledLangs[lang]) {
77
+ await shiki2.loadLanguage(bundledLangs[lang]);
78
+ } else {
79
+ if (process.dev) {
80
+ console.warn(`[@nuxtjs/mdc] Language "${lang}" is not loaded to the Shiki highlighter, fallback to plain text. Add the language to "mdc.highlight.langs" to fix this.`);
81
+ }
82
+ lang = "text";
83
+ }
84
+ }
85
+ for (const [color, theme2] of Object.entries(themesObject)) {
86
+ if (typeof theme2 === "string" && !loadedThemes.includes(theme2) && !isSpecialTheme(theme2)) {
87
+ if (bundledThemes[theme2]) {
88
+ await shiki2.loadTheme(bundledThemes[theme2]);
89
+ } else {
90
+ if (process.dev) {
91
+ console.warn(`[@nuxtjs/mdc] Theme "${theme2}" is not loaded to the Shiki highlighter. Add the theme to "mdc.highlight.themes" to fix this.`);
92
+ }
93
+ themesObject[color] = "none";
94
+ }
95
+ }
96
+ }
97
+ const transformersMap = /* @__PURE__ */ new Map();
98
+ for (const transformer of baseTransformers) {
99
+ transformersMap.set(transformer.name || `transformer:${Math.random()}-${transformer.constructor.name}`, transformer);
100
+ }
101
+ for (const config of await getConfigs()) {
102
+ const newTransformers = typeof config.shiki?.transformers === "function" ? await config.shiki?.transformers(code, lang, theme, options) : config.shiki?.transformers || [];
103
+ for (const transformer of newTransformers) {
104
+ transformersMap.set(transformer.name || `transformer:${Math.random()}-${transformer.constructor.name}`, transformer);
105
+ }
106
+ }
107
+ const root = shiki2.codeToHast(code.trimEnd(), {
108
+ lang,
109
+ ...codeToHastOptions,
110
+ themes: themesObject,
111
+ transformers: [
112
+ ...transformersMap.values(),
113
+ {
114
+ name: "mdc:highlight",
115
+ line(node, line) {
116
+ if (options.highlights?.includes(line))
117
+ addClassToHast(node, "highlight");
118
+ node.properties.line = line;
119
+ }
120
+ },
121
+ {
122
+ name: "mdc:newline",
123
+ line(node) {
124
+ if (code?.includes("\n")) {
125
+ if (node.children.length === 0 || node.children.length === 1 && node.children[0].type === "element" && node.children[0].children.length === 1 && node.children[0].children[0].type === "text" && node.children[0].children[0].value === "") {
126
+ node.children = [{
127
+ type: "element",
128
+ tagName: "span",
129
+ properties: {
130
+ emptyLinePlaceholder: true
131
+ },
132
+ children: [{ type: "text", value: "\n" }]
133
+ }];
134
+ return;
135
+ }
136
+ const last = node.children.at(-1);
137
+ if (last?.type === "element" && last.tagName === "span") {
138
+ const text = last.children.at(-1);
139
+ if (text?.type === "text")
140
+ text.value += "\n";
141
+ }
142
+ }
143
+ }
144
+ }
145
+ ]
146
+ });
147
+ const preEl = root.children[0];
148
+ const codeEl = preEl.children[0];
149
+ const wrapperStyle = shikiOptions?.wrapperStyle;
150
+ preEl.properties.style = wrapperStyle ? typeof wrapperStyle === "string" ? wrapperStyle : preEl.properties.style : "";
151
+ const styles = [];
152
+ Object.keys(themesObject).forEach((color) => {
153
+ const colorScheme = color !== "default" ? `.${color}` : "";
154
+ styles.push(
155
+ wrapperStyle ? `${colorScheme} .shiki,` : "",
156
+ `html .${color} .shiki span {`,
157
+ `color: var(--shiki-${color});`,
158
+ `background: var(--shiki-${color}-bg);`,
159
+ `font-style: var(--shiki-${color}-font-style);`,
160
+ `font-weight: var(--shiki-${color}-font-weight);`,
161
+ `text-decoration: var(--shiki-${color}-text-decoration);`,
162
+ "}"
163
+ );
164
+ styles.push(
165
+ `html${colorScheme} .shiki span {`,
166
+ `color: var(--shiki-${color});`,
167
+ `background: var(--shiki-${color}-bg);`,
168
+ `font-style: var(--shiki-${color}-font-style);`,
169
+ `font-weight: var(--shiki-${color}-font-weight);`,
170
+ `text-decoration: var(--shiki-${color}-text-decoration);`,
171
+ "}"
172
+ );
173
+ });
174
+ return {
175
+ tree: codeEl.children,
176
+ className: Array.isArray(preEl.properties.class) ? preEl.properties.class.join(" ") : preEl.properties.class,
177
+ inlineStyle: preEl.properties.style,
178
+ style: styles.join("")
179
+ };
180
+ };
181
+ return highlighter;
182
+ }
183
+
184
+ const bundledLangs = {
185
+ "javascript": () => import('@shikijs/langs/javascript').then(r => r.default || r),
186
+ "js": () => import('@shikijs/langs/javascript').then(r => r.default || r),
187
+ "jsx": () => import('@shikijs/langs/jsx').then(r => r.default || r),
188
+ "json": () => import('@shikijs/langs/json').then(r => r.default || r),
189
+ "typescript": () => import('@shikijs/langs/typescript').then(r => r.default || r),
190
+ "ts": () => import('@shikijs/langs/typescript').then(r => r.default || r),
191
+ "tsx": () => import('@shikijs/langs/tsx').then(r => r.default || r),
192
+ "vue": () => import('@shikijs/langs/vue').then(r => r.default || r),
193
+ "css": () => import('@shikijs/langs/css').then(r => r.default || r),
194
+ "html": () => import('@shikijs/langs/html').then(r => r.default || r),
195
+ "shellscript": () => import('@shikijs/langs/shellscript').then(r => r.default || r),
196
+ "bash": () => import('@shikijs/langs/shellscript').then(r => r.default || r),
197
+ "sh": () => import('@shikijs/langs/shellscript').then(r => r.default || r),
198
+ "shell": () => import('@shikijs/langs/shellscript').then(r => r.default || r),
199
+ "zsh": () => import('@shikijs/langs/shellscript').then(r => r.default || r),
200
+ "markdown": () => import('@shikijs/langs/markdown').then(r => r.default || r),
201
+ "md": () => import('@shikijs/langs/markdown').then(r => r.default || r),
202
+ "mdc": () => import('@shikijs/langs/mdc').then(r => r.default || r),
203
+ "yaml": () => import('@shikijs/langs/yaml').then(r => r.default || r),
204
+ "yml": () => import('@shikijs/langs/yaml').then(r => r.default || r),
205
+ }
206
+ const bundledThemes = {
207
+ "github-light": () => import('@shikijs/themes/github-light').then(r => r.default || r),
208
+ "github-dark": () => import('@shikijs/themes/github-dark').then(r => r.default || r),
209
+ }
210
+ const options = {"theme":{"default":"github-light","dark":"github-dark"}}
211
+ const engine = createOnigurumaEngine(() => import('shiki/wasm'))
212
+ const highlighter = createShikiHighlighter({ bundledLangs, bundledThemes, options, getMdcConfigs, engine })
213
+ export default highlighter
@@ -0,0 +1 @@
1
+ export { default } from "C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxt+image@1.10.0_@netlify_b4a362fadc10aa100425ec080018ae5f/node_modules/@nuxt/image/dist/runtime/components/NuxtImg.vue"
@@ -0,0 +1,12 @@
1
+ import _RemarkEmoji from 'remark-emoji'
2
+ import _Highlight from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/highlighter/rehype-nuxt.js'
3
+
4
+ export const remarkPlugins = {
5
+ 'remark-emoji': { instance: _RemarkEmoji },
6
+ }
7
+
8
+ export const rehypePlugins = {
9
+ 'highlight': { instance: _Highlight, options: {} },
10
+ }
11
+
12
+ export const highlight = {"theme":{"default":"github-light","dark":"github-dark"}}
@@ -0,0 +1,28 @@
1
+ // Generated by @nuxtjs/sitemap
2
+
3
+ declare module 'nitropack' {
4
+ interface PrerenderRoute {
5
+ _sitemap?: import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/runtime/types').SitemapUrl
6
+ }
7
+ interface NitroRouteRules {
8
+ index?: boolean
9
+ sitemap?: import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/runtime/types').SitemapItemDefaults
10
+ }
11
+ interface NitroRouteConfig {
12
+ index?: boolean
13
+ sitemap?: import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/runtime/types').SitemapItemDefaults
14
+ }
15
+ interface NitroRuntimeHooks {
16
+ 'sitemap:index-resolved': (ctx: import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/runtime/types').SitemapIndexRenderCtx) => void | Promise<void>
17
+ 'sitemap:input': (ctx: import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/runtime/types').SitemapInputCtx) => void | Promise<void>
18
+ 'sitemap:resolved': (ctx: import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/runtime/types').SitemapRenderCtx) => void | Promise<void>
19
+ 'sitemap:output': (ctx: import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/runtime/types').SitemapOutputHookCtx) => void | Promise<void>
20
+ }
21
+ }
22
+ declare module 'vue-router' {
23
+ interface RouteMeta {
24
+ sitemap?: import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/runtime/types').SitemapItemDefaults
25
+ }
26
+ }
27
+
28
+ export {}
@@ -0,0 +1,35 @@
1
+ // Generated by nuxt-robots
2
+
3
+ declare module 'nitropack' {
4
+ interface NitroApp {
5
+ _robots: {
6
+ ctx: import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/types').HookRobotsConfigContext
7
+ nuxtContentUrls?: Set<string>
8
+ },
9
+ _robotsRuleMactcher: (url: string) => string
10
+ }
11
+ interface NitroRouteRules {
12
+ robots?: boolean | string | {
13
+ indexable: boolean
14
+ rule: string
15
+ }
16
+ }
17
+ interface NitroRouteConfig {
18
+ robots?: boolean | string | {
19
+ indexable: boolean
20
+ rule: string
21
+ }
22
+ }
23
+ interface NitroRuntimeHooks {
24
+ 'robots:config': (ctx: import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/types').HookRobotsConfigContext) => void | Promise<void>
25
+ 'robots:robots-txt': (ctx: import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/types').HookRobotsTxtContext) => void | Promise<void>
26
+ }
27
+ }
28
+ declare module 'h3' {
29
+ import type { RobotsContext } from '#robots/types'
30
+ interface H3EventContext {
31
+ robots: RobotsContext
32
+ }
33
+ }
34
+
35
+ export {}
@@ -0,0 +1,25 @@
1
+ // Generated by nuxt-seo-utils.assets
2
+
3
+ declare module '#app' {
4
+ import { HeadEntry, HeadTag } from '@unhead/vue/types'
5
+
6
+ interface RuntimeNuxtHooks {
7
+ 'head:tags': (tag: HeadTag[]) => Promise<void> | void
8
+ 'head:entries': (entries: HeadEntry[]) => Promise<void> | void
9
+ }
10
+ }
11
+ declare module '@unhead/schema' {
12
+
13
+ type PublicFiles = '/favicon.ico' | '/nuxt-ignis.png' | '/unsplash.jpg' | (string & Record<never, never>)
14
+ type JsFiles = (string & Record<never, never>)
15
+
16
+ interface SchemaAugmentations {
17
+ link: import('@unhead/schema').UserTagConfigWithoutInnerContent & {
18
+ href: PublicFiles
19
+ }
20
+ script: import('@unhead/schema').TagUserProperties & {
21
+ src: JsFiles
22
+ }
23
+ }
24
+ }
25
+ export {}
@@ -0,0 +1,22 @@
1
+ // Generated by nuxt-seo-utils
2
+
3
+ declare module 'nitropack' {
4
+ interface NitroRouteRules {
5
+ seoMeta?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/types').MetaFlatSerializable
6
+ head?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/types').Head
7
+ }
8
+ interface NitroRouteConfig {
9
+ seoMeta?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/types').MetaFlatSerializable
10
+ head?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/types').Head
11
+ }
12
+ }
13
+
14
+ declare module '@nuxt/schema' {
15
+ interface AppHeadMetaObject { seoMeta?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/types').MetaFlatSerializable }
16
+ }
17
+
18
+ declare module 'nuxt/schema' {
19
+ interface AppHeadMetaObject { seoMeta?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_cb87bb57408aee81649d9bcd448f1ff0/node_modules/nuxt-seo-utils/dist/runtime/types').MetaFlatSerializable }
20
+ }
21
+
22
+ export {}
@@ -0,0 +1,43 @@
1
+ // Generated by nuxt-site-config
2
+
3
+ declare module 'nitropack' {
4
+ interface NitroRouteRules {
5
+ site?: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigInput
6
+ }
7
+ interface NitroRouteConfig {
8
+ site?: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/types').SiteConfig
9
+ }
10
+ interface NitroRuntimeHooks {
11
+ 'site-config:init': (ctx: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/types').HookSiteConfigInitContext) => void | Promise<void>
12
+ }
13
+ }
14
+
15
+ declare module 'h3' {
16
+ interface H3EventContext {
17
+ siteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
18
+ siteConfigNitroOrigin: string
19
+ }
20
+ }
21
+
22
+ declare module '@nuxt/schema' {
23
+ interface Nuxt {
24
+ _siteConfig?: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
25
+ }
26
+ }
27
+ declare module 'nuxt/app' {
28
+ interface NuxtApp {
29
+ $nuxtSiteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
30
+ }
31
+ }
32
+ declare module '#app' {
33
+ interface NuxtApp {
34
+ $nuxtSiteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
35
+ }
36
+ }
37
+ declare global {
38
+ interface Window {
39
+ __NUXT_SITE_CONFIG__: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigResolved
40
+ }
41
+ }
42
+
43
+ export {}
package/.nuxt/nitro.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
- "date": "2025-05-21T17:26:23.695Z",
2
+ "date": "2025-06-07T16:19:13.168Z",
3
3
  "preset": "nitro-dev",
4
4
  "framework": {
5
5
  "name": "nuxt",
6
- "version": "3.17.4"
6
+ "version": "3.17.5"
7
7
  },
8
8
  "versions": {
9
9
  "nitro": "2.11.12"
10
10
  },
11
11
  "dev": {
12
- "pid": 35444,
12
+ "pid": 41860,
13
13
  "workerAddress": {
14
- "socketPath": "\\\\.\\pipe\\nitro-worker-35444-1-1-7444.sock"
14
+ "socketPath": "\\\\.\\pipe\\nitro-worker-41860-3-2-9841.sock"
15
15
  }
16
16
  }
17
17
  }
@@ -0,0 +1 @@
1
+ export function createLogger() {}
@@ -0,0 +1 @@
1
+ export function init() {}
@@ -0,0 +1,15 @@
1
+ import { createRequire } from 'node:module'
2
+ const require = createRequire(import.meta.url)
3
+ function createRemoteCollection(fetchEndpoint) {
4
+ let _cache
5
+ return async () => {
6
+ if (_cache)
7
+ return _cache
8
+ const res = await fetch(fetchEndpoint).then(r => r.json())
9
+ _cache = res
10
+ return res
11
+ }
12
+ }
13
+
14
+ export const collections = {
15
+ }
package/.nuxt/nuxt.d.ts CHANGED
@@ -1,15 +1,21 @@
1
- // Generated by nuxi
2
1
  /// <reference types="@nuxt/fonts" />
3
- /// <reference types="@nuxt/image" />
4
- /// <reference types="@vueuse/nuxt" />
5
- /// <reference types="@pinia/nuxt" />
6
2
  /// <reference types="@nuxt/scripts" />
7
3
  /// <reference types="@nuxt/eslint" />
4
+ /// <reference types="@nuxt/ui" />
5
+ /// <reference types="nuxt-neon" />
6
+ /// <reference types="@nuxt/image" />
7
+ /// <reference types="@pinia/nuxt" />
8
+ /// <reference types="@vueform/nuxt" />
8
9
  /// <reference types="nuxt-security" />
9
- /// <reference types="@nuxt/eslint" />
10
+ /// <reference types="@vueuse/nuxt" />
11
+ /// <reference types="@nuxtjs/seo" />
12
+ /// <reference types="nuxt-auth-utils" />
13
+ /// <reference types="@nuxt/content" />
14
+ /// <reference types="@nuxtjs/i18n" />
10
15
  /// <reference types="@nuxt/test-utils" />
11
- /// <reference types="@nuxt/telemetry" />
12
16
  /// <reference types="@nuxt/devtools" />
17
+ /// <reference types="@nuxt/eslint" />
18
+ /// <reference types="@nuxt/telemetry" />
13
19
  /// <reference path="types/builder-env.d.ts" />
14
20
  /// <reference types="nuxt" />
15
21
  /// <reference path="types/app-defaults.d.ts" />
@@ -18,6 +24,16 @@
18
24
  /// <reference path="types/schema.d.ts" />
19
25
  /// <reference path="types/app.config.d.ts" />
20
26
  /// <reference types="@pinia/nuxt" />
27
+ /// <reference path="types/ui.d.ts" />
28
+ /// <reference path="../node_modules/.pnpm/@nuxt+ui@3.1.3_@babel+parse_613e1594b66d71503080dcdd941c3dc5/node_modules/@nuxt/ui/dist/runtime/types/app.config.d.ts" />
29
+ /// <reference path="types/neon.d.ts" />
30
+ /// <reference types="@vueform/vueform" />
31
+ /// <reference path="module/nuxt-site-config.d.ts" />
32
+ /// <reference path="module/nuxt-robots.d.ts" />
33
+ /// <reference path="module/@nuxtjs-sitemap.d.ts" />
34
+ /// <reference path="module/nuxt-seo-utils.assets.d.ts" />
35
+ /// <reference path="module/nuxt-seo-utils.d.ts" />
36
+ /// <reference path="content/types.d.ts" />
21
37
  /// <reference types="vitest/import-meta" />
22
38
  /// <reference types="vue-router" />
23
39
  /// <reference path="types/middleware.d.ts" />
@@ -28,6 +44,7 @@
28
44
  /// <reference path="types/imports.d.ts" />
29
45
  /// <reference path="schema/nuxt.schema.d.ts" />
30
46
  /// <reference path="modules/@nuxt-scripts.d.ts" />
47
+ /// <reference path="types/i18n-plugin.d.ts" />
31
48
  /// <reference path="types/nitro.d.ts" />
32
49
  /// <reference path="./eslint-typegen.d.ts" />
33
50
 
package/.nuxt/nuxt.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "_hash": "JbDYhdkLfzhqE2M0k-LMn8q5Ew66yTHZoniEPiCE4k0",
2
+ "_hash": "h4EOJdZQzVW_fnHs_r1SIg_uqNtFvW-nz0-H1qsReZQ",
3
3
  "project": {
4
4
  "rootDir": "C:/Git/nuxt-ignis/core"
5
5
  },
6
6
  "versions": {
7
- "nuxt": "3.17.4"
7
+ "nuxt": "3.17.5"
8
8
  }
9
9
  }