nuxt-ignis 0.2.5 → 0.3.0

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 (65) hide show
  1. package/.nuxt/app.config.mjs +18 -0
  2. package/.nuxt/component-chunk.mjs +1 -0
  3. package/.nuxt/components.d.ts +190 -0
  4. package/.nuxt/dev/index.mjs +2948 -0
  5. package/.nuxt/dev/index.mjs.map +1 -0
  6. package/.nuxt/dist/server/client.manifest.json +18 -0
  7. package/.nuxt/dist/server/client.manifest.mjs +1 -0
  8. package/.nuxt/dist/server/server.mjs +1 -0
  9. package/.nuxt/eslint-typegen.d.ts +9401 -0
  10. package/.nuxt/eslint.config.d.mts +9 -0
  11. package/.nuxt/eslint.config.mjs +53 -0
  12. package/.nuxt/imports.d.ts +66 -0
  13. package/.nuxt/manifest/latest.json +1 -0
  14. package/.nuxt/manifest/meta/dev.json +1 -0
  15. package/.nuxt/modules/@nuxt-scripts.d.ts +13 -0
  16. package/.nuxt/nitro.json +17 -0
  17. package/.nuxt/nuxt-fonts-global.css +0 -0
  18. package/.nuxt/nuxt.d.ts +34 -0
  19. package/.nuxt/nuxt.json +9 -0
  20. package/.nuxt/schema/nuxt.schema.d.ts +17 -0
  21. package/.nuxt/schema/nuxt.schema.json +3 -0
  22. package/.nuxt/tsconfig.json +223 -0
  23. package/.nuxt/tsconfig.server.json +152 -0
  24. package/.nuxt/types/app-defaults.d.ts +7 -0
  25. package/.nuxt/types/app.config.d.ts +31 -0
  26. package/.nuxt/types/build.d.ts +25 -0
  27. package/.nuxt/types/builder-env.d.ts +1 -0
  28. package/.nuxt/types/imports.d.ts +829 -0
  29. package/.nuxt/types/layouts.d.ts +7 -0
  30. package/.nuxt/types/middleware.d.ts +7 -0
  31. package/.nuxt/types/nitro-config.d.ts +14 -0
  32. package/.nuxt/types/nitro-imports.d.ts +143 -0
  33. package/.nuxt/types/nitro-middleware.d.ts +6 -0
  34. package/.nuxt/types/nitro-nuxt.d.ts +34 -0
  35. package/.nuxt/types/nitro-routes.d.ts +20 -0
  36. package/.nuxt/types/nitro.d.ts +3 -0
  37. package/.nuxt/types/plugins.d.ts +38 -0
  38. package/.nuxt/types/schema.d.ts +450 -0
  39. package/.nuxt/types/vue-shim.d.ts +0 -0
  40. package/app.vue +16 -36
  41. package/assets/css/nuxt-ui.css +16 -0
  42. package/assets/css/tailwind.css +10 -44
  43. package/components/AppFeature.vue +47 -3
  44. package/components/AppFeatureList.vue +86 -26
  45. package/components/CurrentTime.vue +9 -9
  46. package/components/ignis/IgnisFooter.vue +16 -0
  47. package/components/ignis/IgnisHeader.vue +48 -0
  48. package/components/ignis/IgnisInfo.vue +26 -0
  49. package/composables/useTranslation.ts +11 -4
  50. package/content/second.md +4 -0
  51. package/features.ts +115 -17
  52. package/i18n/i18n.config.ts +2 -2
  53. package/{assets/lang → i18n/locales}/en.json +6 -1
  54. package/i18n/locales/es.json +4 -0
  55. package/nuxt.config.ts +26 -2
  56. package/package.json +70 -79
  57. package/pages/ignis.vue +3 -0
  58. package/pages/index.vue +1 -12
  59. package/tailwind.config.ts +2 -1
  60. package/utils/i18n-sources.ts +20 -2
  61. package/vueform.config.ts +20 -0
  62. package/.gitattributes +0 -2
  63. package/CHANGELOG.md +0 -72
  64. package/LICENSE +0 -21
  65. package/README.md +0 -147
@@ -0,0 +1,18 @@
1
+ {
2
+ "@vite/client": {
3
+ "prefetch": true,
4
+ "isEntry": true,
5
+ "file": "@vite/client",
6
+ "css": [],
7
+ "module": true,
8
+ "resourceType": "script"
9
+ },
10
+ "C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/entry.js": {
11
+ "resourceType": "script",
12
+ "module": true,
13
+ "prefetch": true,
14
+ "preload": true,
15
+ "isEntry": true,
16
+ "file": "C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/entry.js"
17
+ }
18
+ }
@@ -0,0 +1 @@
1
+ export { default } from "file:///C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxt+vite-builder@3.17.4_@_1e4eaac97c7526a7ec98fffee6b1d729/node_modules/@nuxt/vite-builder/dist/runtime/client.manifest.mjs"
@@ -0,0 +1 @@
1
+ export { default } from "file:///C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxt+vite-builder@3.17.4_@_1e4eaac97c7526a7ec98fffee6b1d729/node_modules/@nuxt/vite-builder/dist/runtime/vite-node.mjs"