nuxt-ignis 0.3.3 → 0.4.0-rc.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 (143) 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 -559
  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 +12 -9
  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 +4 -2
  71. package/components/ignis/IgnisConfig.vue +44 -0
  72. package/components/{AppFeature.vue → ignis/IgnisFeature.vue} +2 -1
  73. package/components/ignis/IgnisFeatureList.vue +111 -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 +89 -0
  78. package/composables/useTranslation.ts +18 -9
  79. package/features.ts +68 -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 +98 -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/utils/pslo-utils.ts +2 -1
  134. package/.nuxt/content/sql_dump +0 -6
  135. package/app.config.ts +0 -3
  136. package/assets/css/nuxt-ui.css +0 -16
  137. package/assets/css/tailwind.css +0 -15
  138. package/components/AppFeatureList.vue +0 -124
  139. package/content/second.md +0 -11
  140. package/pages/ignis.vue +0 -3
  141. package/pages/second.vue +0 -59
  142. package/server/plugins/pslo-content.ts +0 -17
  143. package/tailwind.config.ts +0 -29
@@ -41,7 +41,7 @@ export default {
41
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
42
  "viewport": "relative divide-y divide-default scroll-py-1 overflow-y-auto flex-1",
43
43
  "group": "p-1 isolate",
44
- "empty": "py-2 text-center text-sm text-muted",
44
+ "empty": "text-center text-muted",
45
45
  "label": "font-semibold text-highlighted",
46
46
  "separator": "-mx-1 my-1 h-px bg-border",
47
47
  "item": [
@@ -65,8 +65,8 @@ export default {
65
65
  "inline-flex items-center rounded-xs text-dimmed hover:text-default hover:bg-accented/75 disabled:pointer-events-none",
66
66
  "transition-colors"
67
67
  ],
68
- "tagsItemDeleteIcon": "",
69
- "tagsInput": ""
68
+ "tagsItemDeleteIcon": "shrink-0",
69
+ "tagsInput": "flex-1 border-0 bg-transparent placeholder:text-dimmed focus:outline-none disabled:cursor-not-allowed disabled:opacity-75"
70
70
  },
71
71
  "variants": {
72
72
  "buttonGroup": {
@@ -95,7 +95,8 @@ export default {
95
95
  "itemLeadingChipSize": "sm",
96
96
  "itemTrailingIcon": "size-4",
97
97
  "tagsItem": "text-[10px]/3",
98
- "tagsItemDeleteIcon": "size-3"
98
+ "tagsItemDeleteIcon": "size-3",
99
+ "empty": "p-1 text-xs"
99
100
  },
100
101
  "sm": {
101
102
  "base": "px-2.5 py-1.5 text-xs gap-1.5",
@@ -112,7 +113,8 @@ export default {
112
113
  "itemLeadingChipSize": "sm",
113
114
  "itemTrailingIcon": "size-4",
114
115
  "tagsItem": "text-[10px]/3",
115
- "tagsItemDeleteIcon": "size-3"
116
+ "tagsItemDeleteIcon": "size-3",
117
+ "empty": "p-1.5 text-xs"
116
118
  },
117
119
  "md": {
118
120
  "base": "px-2.5 py-1.5 text-sm gap-1.5",
@@ -129,7 +131,8 @@ export default {
129
131
  "itemLeadingChipSize": "md",
130
132
  "itemTrailingIcon": "size-5",
131
133
  "tagsItem": "text-xs",
132
- "tagsItemDeleteIcon": "size-3.5"
134
+ "tagsItemDeleteIcon": "size-3.5",
135
+ "empty": "p-1.5 text-sm"
133
136
  },
134
137
  "lg": {
135
138
  "base": "px-3 py-2 text-sm gap-2",
@@ -146,7 +149,8 @@ export default {
146
149
  "itemLeadingChipSize": "md",
147
150
  "itemTrailingIcon": "size-5",
148
151
  "tagsItem": "text-xs",
149
- "tagsItemDeleteIcon": "size-3.5"
152
+ "tagsItemDeleteIcon": "size-3.5",
153
+ "empty": "p-2 text-sm"
150
154
  },
151
155
  "xl": {
152
156
  "base": "px-3 py-2 text-base gap-2",
@@ -163,7 +167,8 @@ export default {
163
167
  "itemLeadingChipSize": "lg",
164
168
  "itemTrailingIcon": "size-6",
165
169
  "tagsItem": "text-sm",
166
- "tagsItemDeleteIcon": "size-4"
170
+ "tagsItemDeleteIcon": "size-4",
171
+ "empty": "p-2 text-base"
167
172
  }
168
173
  },
169
174
  "variant": {
@@ -199,8 +204,7 @@ export default {
199
204
  },
200
205
  "multiple": {
201
206
  "true": {
202
- "root": "flex-wrap",
203
- "tagsInput": "border-0 bg-transparent placeholder:text-dimmed focus:outline-none disabled:cursor-not-allowed disabled:opacity-75"
207
+ "root": "flex-wrap"
204
208
  },
205
209
  "false": {
206
210
  "base": "w-full border-0 placeholder:text-dimmed focus:outline-none disabled:cursor-not-allowed disabled:opacity-75"
@@ -208,6 +212,16 @@ export default {
208
212
  }
209
213
  },
210
214
  "compoundVariants": [
215
+ {
216
+ "variant": "soft" as typeof variant[number],
217
+ "multiple": true,
218
+ "class": "has-focus:bg-elevated"
219
+ },
220
+ {
221
+ "variant": "ghost" as typeof variant[number],
222
+ "multiple": true,
223
+ "class": "has-focus:bg-elevated"
224
+ },
211
225
  {
212
226
  "color": "primary" as typeof color[number],
213
227
  "multiple": true,
@@ -0,0 +1,310 @@
1
+ const size = [
2
+ "xs",
3
+ "sm",
4
+ "md",
5
+ "lg",
6
+ "xl"
7
+ ] as const
8
+
9
+ const variant = [
10
+ "outline",
11
+ "soft",
12
+ "subtle",
13
+ "ghost",
14
+ "none"
15
+ ] as const
16
+
17
+ const color = [
18
+ "primary",
19
+ "secondary",
20
+ "success",
21
+ "info",
22
+ "warning",
23
+ "error",
24
+ "neutral"
25
+ ] as const
26
+
27
+ export default {
28
+ "slots": {
29
+ "root": [
30
+ "relative inline-flex items-center",
31
+ "flex-wrap"
32
+ ],
33
+ "base": [
34
+ "rounded-md",
35
+ "transition-colors"
36
+ ],
37
+ "leading": "absolute inset-y-0 start-0 flex items-center",
38
+ "leadingIcon": "shrink-0 text-dimmed",
39
+ "leadingAvatar": "shrink-0",
40
+ "leadingAvatarSize": "",
41
+ "trailing": "absolute inset-y-0 end-0 flex items-center",
42
+ "trailingIcon": "shrink-0 text-dimmed",
43
+ "item": "px-1.5 py-0.5 rounded-sm font-medium inline-flex items-center gap-0.5 ring ring-inset ring-accented bg-elevated text-default data-disabled:cursor-not-allowed data-disabled:opacity-75 wrap-anywhere data-[state=\"active\"]:bg-accented",
44
+ "itemText": "",
45
+ "itemDelete": [
46
+ "inline-flex items-center rounded-xs text-dimmed hover:text-default hover:bg-accented/75 disabled:pointer-events-none",
47
+ "transition-colors"
48
+ ],
49
+ "itemDeleteIcon": "shrink-0",
50
+ "input": "flex-1 border-0 bg-transparent placeholder:text-dimmed focus:outline-none disabled:cursor-not-allowed disabled:opacity-75"
51
+ },
52
+ "variants": {
53
+ "buttonGroup": {
54
+ "horizontal": {
55
+ "root": "group has-focus-visible:z-[1]",
56
+ "base": "group-not-only:group-first:rounded-e-none group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none"
57
+ },
58
+ "vertical": {
59
+ "root": "group has-focus-visible:z-[1]",
60
+ "base": "group-not-only:group-first:rounded-b-none group-not-only:group-last:rounded-t-none group-not-last:group-not-first:rounded-none"
61
+ }
62
+ },
63
+ "size": {
64
+ "xs": {
65
+ "base": "px-2 py-1 text-xs gap-1",
66
+ "leading": "ps-2",
67
+ "trailing": "pe-2",
68
+ "leadingIcon": "size-4",
69
+ "leadingAvatarSize": "3xs",
70
+ "trailingIcon": "size-4",
71
+ "item": "text-[10px]/3",
72
+ "itemDeleteIcon": "size-3"
73
+ },
74
+ "sm": {
75
+ "base": "px-2.5 py-1.5 text-xs gap-1.5",
76
+ "leading": "ps-2.5",
77
+ "trailing": "pe-2.5",
78
+ "leadingIcon": "size-4",
79
+ "leadingAvatarSize": "3xs",
80
+ "trailingIcon": "size-4",
81
+ "item": "text-[10px]/3",
82
+ "itemDeleteIcon": "size-3"
83
+ },
84
+ "md": {
85
+ "base": "px-2.5 py-1.5 text-sm gap-1.5",
86
+ "leading": "ps-2.5",
87
+ "trailing": "pe-2.5",
88
+ "leadingIcon": "size-5",
89
+ "leadingAvatarSize": "2xs",
90
+ "trailingIcon": "size-5",
91
+ "item": "text-xs",
92
+ "itemDeleteIcon": "size-3.5"
93
+ },
94
+ "lg": {
95
+ "base": "px-3 py-2 text-sm gap-2",
96
+ "leading": "ps-3",
97
+ "trailing": "pe-3",
98
+ "leadingIcon": "size-5",
99
+ "leadingAvatarSize": "2xs",
100
+ "trailingIcon": "size-5",
101
+ "item": "text-xs",
102
+ "itemDeleteIcon": "size-3.5"
103
+ },
104
+ "xl": {
105
+ "base": "px-3 py-2 text-base gap-2",
106
+ "leading": "ps-3",
107
+ "trailing": "pe-3",
108
+ "leadingIcon": "size-6",
109
+ "leadingAvatarSize": "xs",
110
+ "trailingIcon": "size-6",
111
+ "item": "text-sm",
112
+ "itemDeleteIcon": "size-4"
113
+ }
114
+ },
115
+ "variant": {
116
+ "outline": "text-highlighted bg-default ring ring-inset ring-accented",
117
+ "soft": "text-highlighted bg-elevated/50 hover:bg-elevated has-focus:bg-elevated disabled:bg-elevated/50",
118
+ "subtle": "text-highlighted bg-elevated ring ring-inset ring-accented",
119
+ "ghost": "text-highlighted bg-transparent hover:bg-elevated has-focus:bg-elevated disabled:bg-transparent dark:disabled:bg-transparent",
120
+ "none": "text-highlighted bg-transparent"
121
+ },
122
+ "color": {
123
+ "primary": "",
124
+ "secondary": "",
125
+ "success": "",
126
+ "info": "",
127
+ "warning": "",
128
+ "error": "",
129
+ "neutral": ""
130
+ },
131
+ "leading": {
132
+ "true": ""
133
+ },
134
+ "trailing": {
135
+ "true": ""
136
+ },
137
+ "loading": {
138
+ "true": ""
139
+ },
140
+ "highlight": {
141
+ "true": ""
142
+ },
143
+ "type": {
144
+ "file": "file:me-1.5 file:font-medium file:text-muted file:outline-none"
145
+ }
146
+ },
147
+ "compoundVariants": [
148
+ {
149
+ "color": "primary" as typeof color[number],
150
+ "variant": [
151
+ "outline" as typeof variant[number],
152
+ "subtle" as typeof variant[number]
153
+ ],
154
+ "class": "has-focus-visible:ring-2 has-focus-visible:ring-inset has-focus-visible:ring-primary"
155
+ },
156
+ {
157
+ "color": "secondary" as typeof color[number],
158
+ "variant": [
159
+ "outline" as typeof variant[number],
160
+ "subtle" as typeof variant[number]
161
+ ],
162
+ "class": "has-focus-visible:ring-2 has-focus-visible:ring-inset has-focus-visible:ring-secondary"
163
+ },
164
+ {
165
+ "color": "success" as typeof color[number],
166
+ "variant": [
167
+ "outline" as typeof variant[number],
168
+ "subtle" as typeof variant[number]
169
+ ],
170
+ "class": "has-focus-visible:ring-2 has-focus-visible:ring-inset has-focus-visible:ring-success"
171
+ },
172
+ {
173
+ "color": "info" as typeof color[number],
174
+ "variant": [
175
+ "outline" as typeof variant[number],
176
+ "subtle" as typeof variant[number]
177
+ ],
178
+ "class": "has-focus-visible:ring-2 has-focus-visible:ring-inset has-focus-visible:ring-info"
179
+ },
180
+ {
181
+ "color": "warning" as typeof color[number],
182
+ "variant": [
183
+ "outline" as typeof variant[number],
184
+ "subtle" as typeof variant[number]
185
+ ],
186
+ "class": "has-focus-visible:ring-2 has-focus-visible:ring-inset has-focus-visible:ring-warning"
187
+ },
188
+ {
189
+ "color": "error" as typeof color[number],
190
+ "variant": [
191
+ "outline" as typeof variant[number],
192
+ "subtle" as typeof variant[number]
193
+ ],
194
+ "class": "has-focus-visible:ring-2 has-focus-visible:ring-inset has-focus-visible:ring-error"
195
+ },
196
+ {
197
+ "color": "primary" as typeof color[number],
198
+ "highlight": true,
199
+ "class": "ring ring-inset ring-primary"
200
+ },
201
+ {
202
+ "color": "secondary" as typeof color[number],
203
+ "highlight": true,
204
+ "class": "ring ring-inset ring-secondary"
205
+ },
206
+ {
207
+ "color": "success" as typeof color[number],
208
+ "highlight": true,
209
+ "class": "ring ring-inset ring-success"
210
+ },
211
+ {
212
+ "color": "info" as typeof color[number],
213
+ "highlight": true,
214
+ "class": "ring ring-inset ring-info"
215
+ },
216
+ {
217
+ "color": "warning" as typeof color[number],
218
+ "highlight": true,
219
+ "class": "ring ring-inset ring-warning"
220
+ },
221
+ {
222
+ "color": "error" as typeof color[number],
223
+ "highlight": true,
224
+ "class": "ring ring-inset ring-error"
225
+ },
226
+ {
227
+ "color": "neutral" as typeof color[number],
228
+ "variant": [
229
+ "outline" as typeof variant[number],
230
+ "subtle" as typeof variant[number]
231
+ ],
232
+ "class": "has-focus-visible:ring-2 has-focus-visible:ring-inset has-focus-visible:ring-inverted"
233
+ },
234
+ {
235
+ "color": "neutral" as typeof color[number],
236
+ "highlight": true,
237
+ "class": "ring ring-inset ring-inverted"
238
+ },
239
+ {
240
+ "leading": true,
241
+ "size": "xs" as typeof size[number],
242
+ "class": "ps-7"
243
+ },
244
+ {
245
+ "leading": true,
246
+ "size": "sm" as typeof size[number],
247
+ "class": "ps-8"
248
+ },
249
+ {
250
+ "leading": true,
251
+ "size": "md" as typeof size[number],
252
+ "class": "ps-9"
253
+ },
254
+ {
255
+ "leading": true,
256
+ "size": "lg" as typeof size[number],
257
+ "class": "ps-10"
258
+ },
259
+ {
260
+ "leading": true,
261
+ "size": "xl" as typeof size[number],
262
+ "class": "ps-11"
263
+ },
264
+ {
265
+ "trailing": true,
266
+ "size": "xs" as typeof size[number],
267
+ "class": "pe-7"
268
+ },
269
+ {
270
+ "trailing": true,
271
+ "size": "sm" as typeof size[number],
272
+ "class": "pe-8"
273
+ },
274
+ {
275
+ "trailing": true,
276
+ "size": "md" as typeof size[number],
277
+ "class": "pe-9"
278
+ },
279
+ {
280
+ "trailing": true,
281
+ "size": "lg" as typeof size[number],
282
+ "class": "pe-10"
283
+ },
284
+ {
285
+ "trailing": true,
286
+ "size": "xl" as typeof size[number],
287
+ "class": "pe-11"
288
+ },
289
+ {
290
+ "loading": true,
291
+ "leading": true,
292
+ "class": {
293
+ "leadingIcon": "animate-spin"
294
+ }
295
+ },
296
+ {
297
+ "loading": true,
298
+ "leading": false,
299
+ "trailing": true,
300
+ "class": {
301
+ "trailingIcon": "animate-spin"
302
+ }
303
+ }
304
+ ],
305
+ "defaultVariants": {
306
+ "size": "md" as typeof size[number],
307
+ "color": "primary" as typeof color[number],
308
+ "variant": "outline" as typeof variant[number]
309
+ }
310
+ }
package/.nuxt/ui/modal.ts CHANGED
@@ -22,7 +22,7 @@ export default {
22
22
  "content": "inset-0"
23
23
  },
24
24
  "false": {
25
- "content": "top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[calc(100vw-2rem)] max-w-lg max-h-[calc(100dvh-2rem)] sm:max-h-[calc(100dvh-4rem)] rounded-lg shadow-lg ring ring-default"
25
+ "content": "top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[calc(100vw-2rem)] max-w-lg max-h-[calc(100dvh-2rem)] sm:max-h-[calc(100dvh-4rem)] rounded-lg shadow-lg ring ring-default overflow-hidden"
26
26
  }
27
27
  }
28
28
  }
@@ -118,7 +118,7 @@ export default {
118
118
  "childList": "grid p-2",
119
119
  "childLink": "px-3 py-2 gap-2 before:inset-x-px before:inset-y-0",
120
120
  "childLinkLabel": "font-medium",
121
- "content": "absolute top-0 left-0 w-full"
121
+ "content": "absolute top-0 left-0 w-full max-h-[70vh] overflow-y-auto"
122
122
  },
123
123
  "vertical": {
124
124
  "root": "flex-col",
@@ -45,7 +45,7 @@ export default {
45
45
  ],
46
46
  "viewport": "relative divide-y divide-default scroll-py-1 overflow-y-auto flex-1",
47
47
  "group": "p-1 isolate",
48
- "empty": "py-2 text-center text-sm text-muted",
48
+ "empty": "text-center text-muted",
49
49
  "label": "font-semibold text-highlighted",
50
50
  "separator": "-mx-1 my-1 h-px bg-border",
51
51
  "item": [
@@ -85,7 +85,8 @@ export default {
85
85
  "itemLeadingAvatarSize": "3xs",
86
86
  "itemLeadingChip": "size-4",
87
87
  "itemLeadingChipSize": "sm",
88
- "itemTrailingIcon": "size-4"
88
+ "itemTrailingIcon": "size-4",
89
+ "empty": "p-1 text-xs"
89
90
  },
90
91
  "sm": {
91
92
  "base": "px-2.5 py-1.5 text-xs gap-1.5",
@@ -100,7 +101,8 @@ export default {
100
101
  "itemLeadingAvatarSize": "3xs",
101
102
  "itemLeadingChip": "size-4",
102
103
  "itemLeadingChipSize": "sm",
103
- "itemTrailingIcon": "size-4"
104
+ "itemTrailingIcon": "size-4",
105
+ "empty": "p-1.5 text-xs"
104
106
  },
105
107
  "md": {
106
108
  "base": "px-2.5 py-1.5 text-sm gap-1.5",
@@ -115,7 +117,8 @@ export default {
115
117
  "itemLeadingAvatarSize": "2xs",
116
118
  "itemLeadingChip": "size-5",
117
119
  "itemLeadingChipSize": "md",
118
- "itemTrailingIcon": "size-5"
120
+ "itemTrailingIcon": "size-5",
121
+ "empty": "p-1.5 text-sm"
119
122
  },
120
123
  "lg": {
121
124
  "base": "px-3 py-2 text-sm gap-2",
@@ -130,7 +133,8 @@ export default {
130
133
  "itemLeadingAvatarSize": "2xs",
131
134
  "itemLeadingChip": "size-5",
132
135
  "itemLeadingChipSize": "md",
133
- "itemTrailingIcon": "size-5"
136
+ "itemTrailingIcon": "size-5",
137
+ "empty": "p-2 text-sm"
134
138
  },
135
139
  "xl": {
136
140
  "base": "px-3 py-2 text-base gap-2",
@@ -145,7 +149,8 @@ export default {
145
149
  "itemLeadingAvatarSize": "xs",
146
150
  "itemLeadingChip": "size-6",
147
151
  "itemLeadingChipSize": "lg",
148
- "itemTrailingIcon": "size-6"
152
+ "itemTrailingIcon": "size-6",
153
+ "empty": "p-2 text-base"
149
154
  }
150
155
  },
151
156
  "variant": {
@@ -42,7 +42,7 @@ export default {
42
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
43
  "viewport": "relative divide-y divide-default scroll-py-1 overflow-y-auto flex-1",
44
44
  "group": "p-1 isolate",
45
- "empty": "py-2 text-center text-sm text-muted",
45
+ "empty": "text-center text-muted",
46
46
  "label": "font-semibold text-highlighted",
47
47
  "separator": "-mx-1 my-1 h-px bg-border",
48
48
  "item": [
@@ -80,7 +80,8 @@ export default {
80
80
  "itemLeadingAvatarSize": "3xs",
81
81
  "itemLeadingChip": "size-4",
82
82
  "itemLeadingChipSize": "sm",
83
- "itemTrailingIcon": "size-4"
83
+ "itemTrailingIcon": "size-4",
84
+ "empty": "p-1 text-xs"
84
85
  },
85
86
  "sm": {
86
87
  "base": "px-2.5 py-1.5 text-xs gap-1.5",
@@ -95,7 +96,8 @@ export default {
95
96
  "itemLeadingAvatarSize": "3xs",
96
97
  "itemLeadingChip": "size-4",
97
98
  "itemLeadingChipSize": "sm",
98
- "itemTrailingIcon": "size-4"
99
+ "itemTrailingIcon": "size-4",
100
+ "empty": "p-1.5 text-xs"
99
101
  },
100
102
  "md": {
101
103
  "base": "px-2.5 py-1.5 text-sm gap-1.5",
@@ -110,7 +112,8 @@ export default {
110
112
  "itemLeadingAvatarSize": "2xs",
111
113
  "itemLeadingChip": "size-5",
112
114
  "itemLeadingChipSize": "md",
113
- "itemTrailingIcon": "size-5"
115
+ "itemTrailingIcon": "size-5",
116
+ "empty": "p-1.5 text-sm"
114
117
  },
115
118
  "lg": {
116
119
  "base": "px-3 py-2 text-sm gap-2",
@@ -125,7 +128,8 @@ export default {
125
128
  "itemLeadingAvatarSize": "2xs",
126
129
  "itemLeadingChip": "size-5",
127
130
  "itemLeadingChipSize": "md",
128
- "itemTrailingIcon": "size-5"
131
+ "itemTrailingIcon": "size-5",
132
+ "empty": "p-2 text-sm"
129
133
  },
130
134
  "xl": {
131
135
  "base": "px-3 py-2 text-base gap-2",
@@ -140,7 +144,8 @@ export default {
140
144
  "itemLeadingAvatarSize": "xs",
141
145
  "itemLeadingChip": "size-6",
142
146
  "itemLeadingChipSize": "lg",
143
- "itemTrailingIcon": "size-6"
147
+ "itemTrailingIcon": "size-6",
148
+ "empty": "p-2 text-base"
144
149
  }
145
150
  },
146
151
  "variant": {
package/.nuxt/ui/table.ts CHANGED
@@ -20,11 +20,12 @@ export default {
20
20
  "root": "relative overflow-auto",
21
21
  "base": "min-w-full overflow-clip",
22
22
  "caption": "sr-only",
23
- "thead": "relative [&>tr]:after:absolute [&>tr]:after:inset-x-0 [&>tr]:after:bottom-0 [&>tr]:after:h-px [&>tr]:after:bg-(--ui-border-accented)",
23
+ "thead": "relative",
24
24
  "tbody": "divide-y divide-default [&>tr]:data-[selectable=true]:hover:bg-elevated/50 [&>tr]:data-[selectable=true]:focus-visible:outline-primary",
25
25
  "tr": "data-[selected=true]:bg-elevated/50",
26
26
  "th": "px-4 py-3.5 text-sm text-highlighted text-left rtl:text-right font-semibold [&:has([role=checkbox])]:pe-0",
27
27
  "td": "p-4 text-sm text-muted whitespace-nowrap [&:has([role=checkbox])]:pe-0",
28
+ "separator": "absolute z-[1] left-0 w-full h-px bg-(--ui-border-accented)",
28
29
  "empty": "py-6 text-center text-sm text-muted",
29
30
  "loading": "py-6 text-center"
30
31
  },
@@ -42,7 +43,7 @@ export default {
42
43
  },
43
44
  "loading": {
44
45
  "true": {
45
- "thead": "after:absolute after:bottom-0 after:inset-x-0 after:h-px"
46
+ "thead": "after:absolute after:z-[1] after:h-px"
46
47
  }
47
48
  },
48
49
  "loadingAnimation": {