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
|
Binary file
|
package/.env
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
NUXT_PUBLIC_IGNIS_LOG_LEVEL=info
|
|
2
2
|
|
|
3
|
-
NUXT_PUBLIC_IGNIS_WARN_DUPLICATES=false
|
|
3
|
+
#NUXT_PUBLIC_IGNIS_WARN_DUPLICATES=false
|
|
4
4
|
|
|
5
5
|
#NUXT_PUBLIC_IGNIS_PAGES=false
|
|
6
6
|
NUXT_PUBLIC_IGNIS_SSR=false
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
NUXT_PUBLIC_IGNIS_PRESET_UI=nuxt-ui
|
|
9
9
|
#NUXT_PUBLIC_IGNIS_PRESET_UI=tailwind
|
|
10
10
|
#NUXT_PUBLIC_IGNIS_PRESET_UI=off
|
|
11
11
|
|
|
@@ -22,7 +22,7 @@ NUXT_NEON_USER=elrh-neon_owner
|
|
|
22
22
|
NUXT_NEON_PASS=Mi08PNURzlmH
|
|
23
23
|
NUXT_PUBLIC_NEON_DB=elrh-neon
|
|
24
24
|
|
|
25
|
-
NUXT_PUBLIC_IGNIS_TAILWIND=true
|
|
25
|
+
#NUXT_PUBLIC_IGNIS_TAILWIND=true
|
|
26
26
|
NUXT_PUBLIC_IGNIS_SUPABASE=false
|
|
27
27
|
NUXT_PUBLIC_IGNIS_I18N_ENABLED=true
|
|
28
28
|
NUXT_PUBLIC_IGNIS_CONTENT=true
|
package/.nuxt/app.config.mjs
CHANGED
|
@@ -3,7 +3,233 @@ import { _replaceAppConfig } from '#app/config'
|
|
|
3
3
|
import { defuFn } from 'defu'
|
|
4
4
|
|
|
5
5
|
const inlineConfig = {
|
|
6
|
-
"nuxt": {}
|
|
6
|
+
"nuxt": {},
|
|
7
|
+
"ui": {
|
|
8
|
+
"colors": {
|
|
9
|
+
"primary": "green",
|
|
10
|
+
"secondary": "blue",
|
|
11
|
+
"success": "green",
|
|
12
|
+
"info": "blue",
|
|
13
|
+
"warning": "yellow",
|
|
14
|
+
"error": "red",
|
|
15
|
+
"neutral": "slate"
|
|
16
|
+
},
|
|
17
|
+
"icons": {
|
|
18
|
+
"arrowLeft": "i-lucide-arrow-left",
|
|
19
|
+
"arrowRight": "i-lucide-arrow-right",
|
|
20
|
+
"check": "i-lucide-check",
|
|
21
|
+
"chevronDoubleLeft": "i-lucide-chevrons-left",
|
|
22
|
+
"chevronDoubleRight": "i-lucide-chevrons-right",
|
|
23
|
+
"chevronDown": "i-lucide-chevron-down",
|
|
24
|
+
"chevronLeft": "i-lucide-chevron-left",
|
|
25
|
+
"chevronRight": "i-lucide-chevron-right",
|
|
26
|
+
"chevronUp": "i-lucide-chevron-up",
|
|
27
|
+
"close": "i-lucide-x",
|
|
28
|
+
"ellipsis": "i-lucide-ellipsis",
|
|
29
|
+
"external": "i-lucide-arrow-up-right",
|
|
30
|
+
"folder": "i-lucide-folder",
|
|
31
|
+
"folderOpen": "i-lucide-folder-open",
|
|
32
|
+
"loading": "i-lucide-loader-circle",
|
|
33
|
+
"minus": "i-lucide-minus",
|
|
34
|
+
"plus": "i-lucide-plus",
|
|
35
|
+
"search": "i-lucide-search"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"icon": {
|
|
39
|
+
"provider": "iconify",
|
|
40
|
+
"class": "",
|
|
41
|
+
"aliases": {},
|
|
42
|
+
"iconifyApiEndpoint": "https://api.iconify.design",
|
|
43
|
+
"localApiEndpoint": "/api/_nuxt_icon",
|
|
44
|
+
"fallbackToApi": true,
|
|
45
|
+
"cssSelectorPrefix": "i-",
|
|
46
|
+
"cssWherePseudo": true,
|
|
47
|
+
"cssLayer": "components",
|
|
48
|
+
"mode": "css",
|
|
49
|
+
"attrs": {
|
|
50
|
+
"aria-hidden": true
|
|
51
|
+
},
|
|
52
|
+
"collections": [
|
|
53
|
+
"academicons",
|
|
54
|
+
"akar-icons",
|
|
55
|
+
"ant-design",
|
|
56
|
+
"arcticons",
|
|
57
|
+
"basil",
|
|
58
|
+
"bi",
|
|
59
|
+
"bitcoin-icons",
|
|
60
|
+
"bpmn",
|
|
61
|
+
"brandico",
|
|
62
|
+
"bx",
|
|
63
|
+
"bxl",
|
|
64
|
+
"bxs",
|
|
65
|
+
"bytesize",
|
|
66
|
+
"carbon",
|
|
67
|
+
"catppuccin",
|
|
68
|
+
"cbi",
|
|
69
|
+
"charm",
|
|
70
|
+
"ci",
|
|
71
|
+
"cib",
|
|
72
|
+
"cif",
|
|
73
|
+
"cil",
|
|
74
|
+
"circle-flags",
|
|
75
|
+
"circum",
|
|
76
|
+
"clarity",
|
|
77
|
+
"codicon",
|
|
78
|
+
"covid",
|
|
79
|
+
"cryptocurrency",
|
|
80
|
+
"cryptocurrency-color",
|
|
81
|
+
"dashicons",
|
|
82
|
+
"devicon",
|
|
83
|
+
"devicon-plain",
|
|
84
|
+
"ei",
|
|
85
|
+
"el",
|
|
86
|
+
"emojione",
|
|
87
|
+
"emojione-monotone",
|
|
88
|
+
"emojione-v1",
|
|
89
|
+
"entypo",
|
|
90
|
+
"entypo-social",
|
|
91
|
+
"eos-icons",
|
|
92
|
+
"ep",
|
|
93
|
+
"et",
|
|
94
|
+
"eva",
|
|
95
|
+
"f7",
|
|
96
|
+
"fa",
|
|
97
|
+
"fa-brands",
|
|
98
|
+
"fa-regular",
|
|
99
|
+
"fa-solid",
|
|
100
|
+
"fa6-brands",
|
|
101
|
+
"fa6-regular",
|
|
102
|
+
"fa6-solid",
|
|
103
|
+
"fad",
|
|
104
|
+
"fe",
|
|
105
|
+
"feather",
|
|
106
|
+
"file-icons",
|
|
107
|
+
"flag",
|
|
108
|
+
"flagpack",
|
|
109
|
+
"flat-color-icons",
|
|
110
|
+
"flat-ui",
|
|
111
|
+
"flowbite",
|
|
112
|
+
"fluent",
|
|
113
|
+
"fluent-emoji",
|
|
114
|
+
"fluent-emoji-flat",
|
|
115
|
+
"fluent-emoji-high-contrast",
|
|
116
|
+
"fluent-mdl2",
|
|
117
|
+
"fontelico",
|
|
118
|
+
"fontisto",
|
|
119
|
+
"formkit",
|
|
120
|
+
"foundation",
|
|
121
|
+
"fxemoji",
|
|
122
|
+
"gala",
|
|
123
|
+
"game-icons",
|
|
124
|
+
"geo",
|
|
125
|
+
"gg",
|
|
126
|
+
"gis",
|
|
127
|
+
"gravity-ui",
|
|
128
|
+
"gridicons",
|
|
129
|
+
"grommet-icons",
|
|
130
|
+
"guidance",
|
|
131
|
+
"healthicons",
|
|
132
|
+
"heroicons",
|
|
133
|
+
"heroicons-outline",
|
|
134
|
+
"heroicons-solid",
|
|
135
|
+
"hugeicons",
|
|
136
|
+
"humbleicons",
|
|
137
|
+
"ic",
|
|
138
|
+
"icomoon-free",
|
|
139
|
+
"icon-park",
|
|
140
|
+
"icon-park-outline",
|
|
141
|
+
"icon-park-solid",
|
|
142
|
+
"icon-park-twotone",
|
|
143
|
+
"iconamoon",
|
|
144
|
+
"iconoir",
|
|
145
|
+
"icons8",
|
|
146
|
+
"il",
|
|
147
|
+
"ion",
|
|
148
|
+
"iwwa",
|
|
149
|
+
"jam",
|
|
150
|
+
"la",
|
|
151
|
+
"lets-icons",
|
|
152
|
+
"line-md",
|
|
153
|
+
"logos",
|
|
154
|
+
"ls",
|
|
155
|
+
"lucide",
|
|
156
|
+
"lucide-lab",
|
|
157
|
+
"mage",
|
|
158
|
+
"majesticons",
|
|
159
|
+
"maki",
|
|
160
|
+
"map",
|
|
161
|
+
"marketeq",
|
|
162
|
+
"material-symbols",
|
|
163
|
+
"material-symbols-light",
|
|
164
|
+
"mdi",
|
|
165
|
+
"mdi-light",
|
|
166
|
+
"medical-icon",
|
|
167
|
+
"memory",
|
|
168
|
+
"meteocons",
|
|
169
|
+
"mi",
|
|
170
|
+
"mingcute",
|
|
171
|
+
"mono-icons",
|
|
172
|
+
"mynaui",
|
|
173
|
+
"nimbus",
|
|
174
|
+
"nonicons",
|
|
175
|
+
"noto",
|
|
176
|
+
"noto-v1",
|
|
177
|
+
"octicon",
|
|
178
|
+
"oi",
|
|
179
|
+
"ooui",
|
|
180
|
+
"openmoji",
|
|
181
|
+
"oui",
|
|
182
|
+
"pajamas",
|
|
183
|
+
"pepicons",
|
|
184
|
+
"pepicons-pencil",
|
|
185
|
+
"pepicons-pop",
|
|
186
|
+
"pepicons-print",
|
|
187
|
+
"ph",
|
|
188
|
+
"pixelarticons",
|
|
189
|
+
"prime",
|
|
190
|
+
"ps",
|
|
191
|
+
"quill",
|
|
192
|
+
"radix-icons",
|
|
193
|
+
"raphael",
|
|
194
|
+
"ri",
|
|
195
|
+
"rivet-icons",
|
|
196
|
+
"si-glyph",
|
|
197
|
+
"simple-icons",
|
|
198
|
+
"simple-line-icons",
|
|
199
|
+
"skill-icons",
|
|
200
|
+
"solar",
|
|
201
|
+
"streamline",
|
|
202
|
+
"streamline-emojis",
|
|
203
|
+
"subway",
|
|
204
|
+
"svg-spinners",
|
|
205
|
+
"system-uicons",
|
|
206
|
+
"tabler",
|
|
207
|
+
"tdesign",
|
|
208
|
+
"teenyicons",
|
|
209
|
+
"token",
|
|
210
|
+
"token-branded",
|
|
211
|
+
"topcoat",
|
|
212
|
+
"twemoji",
|
|
213
|
+
"typcn",
|
|
214
|
+
"uil",
|
|
215
|
+
"uim",
|
|
216
|
+
"uis",
|
|
217
|
+
"uit",
|
|
218
|
+
"uiw",
|
|
219
|
+
"unjs",
|
|
220
|
+
"vaadin",
|
|
221
|
+
"vs",
|
|
222
|
+
"vscode-icons",
|
|
223
|
+
"websymbol",
|
|
224
|
+
"weui",
|
|
225
|
+
"whh",
|
|
226
|
+
"wi",
|
|
227
|
+
"wpf",
|
|
228
|
+
"zmdi",
|
|
229
|
+
"zondicons"
|
|
230
|
+
],
|
|
231
|
+
"fetchTimeout": 1500
|
|
232
|
+
}
|
|
7
233
|
}
|
|
8
234
|
|
|
9
235
|
// Vite - webpack is handled directly in #app/config
|