nuxt-ignis 0.3.3 → 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.
Files changed (141) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +8 -2
  3. package/.nuxt/app.config.mjs +2 -2
  4. package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
  5. package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
  6. package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
  7. package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
  8. package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
  9. package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
  10. package/.nuxt/components.d.ts +606 -394
  11. package/.nuxt/content/components.ts +107 -98
  12. package/.nuxt/content/database.compressed.mjs +1 -1
  13. package/.nuxt/content/manifest.ts +6 -6
  14. package/.nuxt/content/sql_dump.txt +5 -0
  15. package/.nuxt/content/types.d.ts +8 -0
  16. package/.nuxt/dev/index.mjs +1584 -544
  17. package/.nuxt/dev/index.mjs.map +1 -1
  18. package/.nuxt/dist/server/client.manifest.json +2 -2
  19. package/.nuxt/dist/server/client.manifest.mjs +2 -2
  20. package/.nuxt/eslint-typegen.d.ts +256 -225
  21. package/.nuxt/eslint.config.d.mts +3 -3
  22. package/.nuxt/eslint.config.mjs +11 -11
  23. package/.nuxt/imports.d.ts +70 -54
  24. package/.nuxt/manifest/latest.json +1 -1
  25. package/.nuxt/manifest/meta/dev.json +1 -1
  26. package/.nuxt/mdc-image-component.mjs +1 -1
  27. package/.nuxt/module/@nuxtjs-sitemap.d.ts +9 -8
  28. package/.nuxt/module/nuxt-robots.d.ts +37 -7
  29. package/.nuxt/{modules/@nuxt-scripts.d.ts → module/nuxt-scripts.d.ts} +1 -2
  30. package/.nuxt/module/nuxt-seo-utils.assets.d.ts +3 -3
  31. package/.nuxt/module/nuxt-seo-utils.d.ts +20 -6
  32. package/.nuxt/module/nuxt-site-config.d.ts +8 -8
  33. package/.nuxt/nitro.json +5 -5
  34. package/.nuxt/nuxt.d.ts +13 -10
  35. package/.nuxt/nuxt.json +2 -2
  36. package/.nuxt/tsconfig.json +235 -153
  37. package/.nuxt/tsconfig.server.json +126 -92
  38. package/.nuxt/types/app.config.d.ts +2 -2
  39. package/.nuxt/types/build.d.ts +2 -1
  40. package/.nuxt/types/i18n-plugin.d.ts +2 -2
  41. package/.nuxt/types/imports.d.ts +407 -314
  42. package/.nuxt/types/nitro-config.d.ts +2 -2
  43. package/.nuxt/types/nitro-imports.d.ts +143 -134
  44. package/.nuxt/types/nitro-nuxt.d.ts +2 -0
  45. package/.nuxt/types/nitro-routes.d.ts +17 -17
  46. package/.nuxt/types/plugins.d.ts +34 -34
  47. package/.nuxt/types/schema.d.ts +322 -12
  48. package/.nuxt/ui/avatar.ts +1 -1
  49. package/.nuxt/ui/card.ts +1 -1
  50. package/.nuxt/ui/carousel.ts +1 -1
  51. package/.nuxt/ui/command-palette.ts +1 -0
  52. package/.nuxt/ui/drawer.ts +1 -1
  53. package/.nuxt/ui/index.ts +2 -0
  54. package/.nuxt/ui/input-menu.ts +24 -10
  55. package/.nuxt/ui/input-tags.ts +310 -0
  56. package/.nuxt/ui/modal.ts +1 -1
  57. package/.nuxt/ui/navigation-menu.ts +1 -1
  58. package/.nuxt/ui/select-menu.ts +11 -6
  59. package/.nuxt/ui/select.ts +11 -6
  60. package/.nuxt/ui/table.ts +3 -2
  61. package/.nuxt/ui/timeline.ts +321 -0
  62. package/.nuxt/ui/toaster.ts +1 -1
  63. package/.nuxt/ui-image-component.ts +1 -1
  64. package/app.vue +2 -6
  65. package/assets/css/ignis-nuxt-ui.css +24 -0
  66. package/assets/css/{open-props.css → ignis-open-props.css} +1 -1
  67. package/assets/css/ignis-tailwind.css +23 -0
  68. package/assets/css/ignis.css +31 -0
  69. package/bin/make-eslint.js +55 -0
  70. package/components/CurrentTime.vue +1 -1
  71. package/components/ignis/IgnisConfig.vue +38 -0
  72. package/components/{AppFeature.vue → ignis/IgnisFeature.vue} +2 -1
  73. package/components/ignis/IgnisFeatureList.vue +125 -0
  74. package/components/ignis/IgnisFooter.vue +2 -2
  75. package/components/ignis/IgnisHeader.vue +4 -3
  76. package/components/ignis/IgnisInfo.vue +14 -13
  77. package/components/ignis/IgnisWelcome.vue +65 -0
  78. package/composables/useTranslation.ts +18 -9
  79. package/features.ts +52 -10
  80. package/formkit.config.ts +8 -8
  81. package/i18n/locales/en.json +10 -4
  82. package/nuxt.config.ts +30 -2
  83. package/package.json +29 -21
  84. package/pages/_ignis-config.vue +3 -0
  85. package/pages/_ignis-info.vue +3 -0
  86. package/pages/index.vue +4 -6
  87. package/public/_ignis-config.json +97 -0
  88. package/test/config/css-multiple.txt +30 -0
  89. package/test/config/css-nuxt-ui.txt +34 -0
  90. package/test/config/css-open-props.txt +2307 -0
  91. package/test/config/css-single.txt +28 -0
  92. package/test/config/css-tailwind.txt +58 -0
  93. package/test/config/custom-lang.txt +27 -0
  94. package/test/config/db-neon.txt +28 -0
  95. package/test/config/db-supabase.txt +31 -0
  96. package/test/config/default.txt +26 -15
  97. package/test/config/equipment-1-composable.txt +32 -21
  98. package/test/config/equipment-2-plugins.txt +33 -22
  99. package/test/config/equipment-all.txt +38 -27
  100. package/test/config/forms-formkit.txt +32 -0
  101. package/test/config/forms-vueform.txt +28 -0
  102. package/test/config/i18n.txt +38 -0
  103. package/test/config/no-default-css.txt +24 -0
  104. package/test/config/open-props.txt +2306 -0
  105. package/test/config/seo-ssr-false.txt +35 -0
  106. package/test/config/ui-nuxt-ui.txt +33 -0
  107. package/test/config/ui-tailwind.txt +57 -0
  108. package/test/config.test.ts +115 -0
  109. package/test/features/charts.txt +4 -0
  110. package/test/features/custom-css.txt +4 -0
  111. package/test/features/custom-title.txt +4 -0
  112. package/test/features/db-neon.txt +4 -3
  113. package/test/features/db-off.txt +4 -3
  114. package/test/features/db-supabase.txt +4 -3
  115. package/test/features/default.txt +4 -3
  116. package/test/features/disable-core.txt +2 -1
  117. package/test/features/enable-all.txt +5 -4
  118. package/test/features/equipment.txt +4 -3
  119. package/test/features/forms-formkit.txt +4 -3
  120. package/test/features/forms-off.txt +4 -3
  121. package/test/features/forms-vueform.txt +4 -3
  122. package/test/features/no-default-css.txt +4 -0
  123. package/test/features/regexp.txt +4 -0
  124. package/test/features/ui-nuxt-ui.txt +4 -3
  125. package/test/features/ui-off.txt +4 -3
  126. package/test/features/ui-tailwind.txt +5 -4
  127. package/test/features/validation-off.txt +4 -3
  128. package/test/features/validation-valibot.txt +5 -4
  129. package/test/features/validation-zod.txt +5 -4
  130. package/test/features.test.ts +37 -1
  131. package/utils/config/formkit.ts +23 -0
  132. package/utils/formkit.ts +16 -0
  133. package/.nuxt/content/sql_dump +0 -6
  134. package/app.config.ts +0 -3
  135. package/assets/css/nuxt-ui.css +0 -16
  136. package/assets/css/tailwind.css +0 -15
  137. package/components/AppFeatureList.vue +0 -124
  138. package/content/second.md +0 -11
  139. package/pages/ignis.vue +0 -3
  140. package/pages/second.vue +0 -59
  141. package/tailwind.config.ts +0 -29
@@ -0,0 +1,97 @@
1
+ {
2
+ "modules": [
3
+ "@nuxt/eslint",
4
+ "@nuxt/fonts",
5
+ "@nuxt/image",
6
+ "@nuxt/scripts",
7
+ "nuxt-security",
8
+ "@vueuse/nuxt",
9
+ "@pinia/nuxt",
10
+ "@nuxt/ui",
11
+ "nuxt-neon",
12
+ "@nuxtjs/i18n",
13
+ "@vueform/nuxt",
14
+ "@nuxtjs/seo",
15
+ "@nuxt/content",
16
+ "nuxt-auth-utils",
17
+ "@maas/vue-equipment/nuxt",
18
+ "magic-regexp/nuxt",
19
+ "nuxt-charts"
20
+ ],
21
+ "css": [
22
+ "C:\\Git\\nuxt-ignis\\core\\assets\\css\\ignis.css",
23
+ "C:\\Git\\nuxt-ignis\\core\\assets\\css\\ignis-nuxt-ui.css"
24
+ ],
25
+ "vite": {
26
+ "plugins": [
27
+ {
28
+ "name": "vite-plugin-ignore-sourcemap-warnings",
29
+ "apply": "build"
30
+ }
31
+ ]
32
+ },
33
+ "i18n": {
34
+ "vueI18n": "./i18n.config.ts",
35
+ "locales": [
36
+ "en"
37
+ ],
38
+ "strategy": "no_prefix",
39
+ "bundle": {
40
+ "optimizeTranslationDirective": false
41
+ }
42
+ },
43
+ "ogImage": {
44
+ "enabled": false
45
+ },
46
+ "schemaOrg": {
47
+ "enabled": false
48
+ },
49
+ "ssr": false,
50
+ "app": {
51
+ "head": {
52
+ "link": [],
53
+ "meta": [
54
+ {
55
+ "name": "viewport",
56
+ "content": "width=device-width, initial-scale=1"
57
+ },
58
+ {
59
+ "charset": "utf-8"
60
+ },
61
+ {
62
+ "property": "og:type",
63
+ "content": "website"
64
+ }
65
+ ],
66
+ "style": [],
67
+ "script": [],
68
+ "noscript": [],
69
+ "htmlAttrs": {
70
+ "lang": "en-US"
71
+ },
72
+ "title": "Custom Nuxt Ignis App"
73
+ },
74
+ "baseURL": "/",
75
+ "buildAssetsDir": "/_nuxt/",
76
+ "cdnURL": "",
77
+ "layoutTransition": false,
78
+ "pageTransition": false,
79
+ "viewTransition": false,
80
+ "keepalive": false,
81
+ "rootId": "__nuxt",
82
+ "rootTag": "div",
83
+ "rootAttrs": {
84
+ "id": "__nuxt",
85
+ "class": "isolate"
86
+ },
87
+ "teleportTag": "div",
88
+ "teleportId": "teleports",
89
+ "teleportAttrs": {
90
+ "id": "teleports"
91
+ },
92
+ "spaLoaderTag": "div",
93
+ "spaLoaderAttrs": {
94
+ "id": "__nuxt-loader"
95
+ }
96
+ }
97
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "app": {
3
+ "head": {
4
+ "htmlAttrs": {
5
+ "lang": "en",
6
+ },
7
+ "title": "Nuxt Ignis App",
8
+ },
9
+ },
10
+ "css": [
11
+ "first.css",
12
+ "second.css",
13
+ "third.css",
14
+ "C:\Git\nuxt-ignis\core\assets\css\ignis.css",
15
+ ],
16
+ "modules": [
17
+ "@nuxt/eslint",
18
+ "@nuxt/fonts",
19
+ "@nuxt/image",
20
+ "@nuxt/scripts",
21
+ "nuxt-security",
22
+ "@vueuse/nuxt",
23
+ "@pinia/nuxt",
24
+ ],
25
+ "vue": {
26
+ "compilerOptions": {
27
+ "isCustomElement": [Function],
28
+ },
29
+ },
30
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "app": {
3
+ "head": {
4
+ "htmlAttrs": {
5
+ "lang": "en",
6
+ },
7
+ "title": "Nuxt Ignis App",
8
+ },
9
+ },
10
+ "css": [
11
+ "custom.css",
12
+ "C:\Git\nuxt-ignis\core\assets\css\ignis.css",
13
+ "C:\Git\nuxt-ignis\core\assets\css\ignis-nuxt-ui.css",
14
+ ],
15
+ "modules": [
16
+ "@nuxt/eslint",
17
+ "@nuxt/fonts",
18
+ "@nuxt/image",
19
+ "@nuxt/scripts",
20
+ "nuxt-security",
21
+ "@vueuse/nuxt",
22
+ "@pinia/nuxt",
23
+ "@nuxt/ui",
24
+ ],
25
+ "vite": {
26
+ "plugins": [
27
+ {
28
+ "apply": "build",
29
+ "configResolved": [Function],
30
+ "name": "vite-plugin-ignore-sourcemap-warnings",
31
+ },
32
+ ],
33
+ },
34
+ }