lua-cli 3.1.0-alpha.4 → 3.1.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 (97) hide show
  1. package/dist/api/cdn.api.service.d.ts +18 -0
  2. package/dist/api/cdn.api.service.js +43 -0
  3. package/dist/api/custom.data.api.service.d.ts +4 -3
  4. package/dist/api/custom.data.api.service.js +4 -3
  5. package/dist/api/developer.api.service.d.ts +54 -1
  6. package/dist/api/developer.api.service.js +89 -0
  7. package/dist/api/job.api.service.d.ts +10 -0
  8. package/dist/api/job.api.service.js +14 -0
  9. package/dist/api/lazy-instances.d.ts +8 -0
  10. package/dist/api/lazy-instances.js +16 -0
  11. package/dist/api/postprocessor.api.service.d.ts +3 -6
  12. package/dist/api/postprocessor.api.service.js +2 -3
  13. package/dist/api-exports.d.ts +74 -6
  14. package/dist/api-exports.js +87 -7
  15. package/dist/cli/command-definitions.js +34 -7
  16. package/dist/commands/admin.js +1 -1
  17. package/dist/commands/channels.js +1 -1
  18. package/dist/commands/compile.js +23 -4
  19. package/dist/commands/evals.d.ts +8 -0
  20. package/dist/commands/evals.js +41 -0
  21. package/dist/commands/index.d.ts +2 -0
  22. package/dist/commands/index.js +2 -0
  23. package/dist/commands/init.d.ts +10 -1
  24. package/dist/commands/init.js +13 -3
  25. package/dist/commands/mcp.d.ts +18 -0
  26. package/dist/commands/mcp.js +393 -0
  27. package/dist/commands/push.js +172 -14
  28. package/dist/common/data.entry.instance.d.ts +1 -1
  29. package/dist/common/data.entry.instance.js +4 -4
  30. package/dist/common/job.instance.d.ts +24 -0
  31. package/dist/common/job.instance.js +38 -0
  32. package/dist/config/constants.d.ts +1 -0
  33. package/dist/config/constants.js +1 -0
  34. package/dist/index.js +1 -0
  35. package/dist/interfaces/cdn.d.ts +24 -0
  36. package/dist/interfaces/cdn.js +5 -0
  37. package/dist/interfaces/compile.d.ts +1 -0
  38. package/dist/interfaces/custom.data.d.ts +3 -3
  39. package/dist/interfaces/index.d.ts +1 -0
  40. package/dist/interfaces/mcp.d.ts +64 -0
  41. package/dist/interfaces/mcp.js +5 -0
  42. package/dist/types/api-contracts.d.ts +36 -14
  43. package/dist/types/compile.types.d.ts +5 -0
  44. package/dist/types/index.d.ts +2 -2
  45. package/dist/types/index.js +3 -1
  46. package/dist/types/skill.d.ts +120 -13
  47. package/dist/types/skill.js +95 -5
  48. package/dist/utils/bundling.d.ts +4 -11
  49. package/dist/utils/bundling.js +19 -27
  50. package/dist/utils/compile.d.ts +17 -8
  51. package/dist/utils/compile.js +71 -37
  52. package/dist/utils/deployment.js +13 -6
  53. package/dist/utils/dev-api.js +1 -2
  54. package/dist/utils/dev-server.js +1 -1
  55. package/dist/utils/files.d.ts +8 -1
  56. package/dist/utils/files.js +13 -2
  57. package/dist/utils/init-helpers.d.ts +3 -1
  58. package/dist/utils/init-helpers.js +7 -2
  59. package/dist/utils/mcp-server-management.d.ts +23 -0
  60. package/dist/utils/mcp-server-management.js +212 -0
  61. package/dist/utils/sandbox.d.ts +4 -2
  62. package/dist/utils/sandbox.js +22 -3
  63. package/dist/web/app.css +1505 -14
  64. package/dist/web/app.js +79 -64
  65. package/package.json +2 -6
  66. package/template/QUICKSTART.md +57 -761
  67. package/template/README.md +80 -906
  68. package/template/examples/README.md +106 -0
  69. package/template/{src → examples}/jobs/AbandonedBasketProcessorJob.ts +67 -11
  70. package/template/{src → examples}/postprocessors/modifyResponse.ts +3 -3
  71. package/template/{src → examples}/skills/tools/GameScoreTrackerTool.ts +11 -15
  72. package/template/{src → examples}/skills/tools/OrderTool.ts +25 -0
  73. package/template/examples/skills/tools/PremiumFeatureTool.ts +98 -0
  74. package/template/{src → examples}/skills/tools/UserDataTool.ts +34 -0
  75. package/template/examples/webhooks/FileUploadWebhook.ts +86 -0
  76. package/template/package-lock.json +7895 -0
  77. package/template/package.json +1 -1
  78. package/template/src/index.ts +40 -22
  79. /package/template/{src → examples}/jobs/DailyCleanupJob.ts +0 -0
  80. /package/template/{src → examples}/jobs/DataMigrationJob.ts +0 -0
  81. /package/template/{src → examples}/jobs/HealthCheckJob.ts +0 -0
  82. /package/template/{src → examples}/preprocessors/messageMatching.ts +0 -0
  83. /package/template/{src → examples}/services/ApiService.ts +0 -0
  84. /package/template/{src → examples}/services/GetWeather.ts +0 -0
  85. /package/template/{src → examples}/skills/basket.skill.ts +0 -0
  86. /package/template/{src → examples}/skills/product.skill.ts +0 -0
  87. /package/template/{src → examples}/skills/tools/BasketTool.ts +0 -0
  88. /package/template/{src → examples}/skills/tools/CreateInlineJob.ts +0 -0
  89. /package/template/{src → examples}/skills/tools/CreatePostTool.ts +0 -0
  90. /package/template/{src → examples}/skills/tools/CustomDataTool.ts +0 -0
  91. /package/template/{src → examples}/skills/tools/GetWeatherTool.ts +0 -0
  92. /package/template/{src → examples}/skills/tools/PaymentTool.ts +0 -0
  93. /package/template/{src → examples}/skills/tools/ProductsTool.ts +0 -0
  94. /package/template/{src → examples}/skills/tools/SmartBasketTool.ts +0 -0
  95. /package/template/{src → examples}/skills/user.skill.ts +0 -0
  96. /package/template/{src → examples}/webhooks/PaymentWebhook.ts +0 -0
  97. /package/template/{src → examples}/webhooks/UserEventWebhook.ts +0 -0
package/dist/web/app.css CHANGED
@@ -1,6 +1,364 @@
1
1
  /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
2
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Onest:wght@400;500;600;700&display=swap') layer(base);
3
3
  @layer properties;
4
+ #lua-root .rdp-root {
5
+ --rdp-accent-color: blue;
6
+ --rdp-accent-background-color: #f0f0ff;
7
+ --rdp-day-height: 44px;
8
+ --rdp-day-width: 44px;
9
+ --rdp-day_button-border-radius: 100%;
10
+ --rdp-day_button-border: 2px solid transparent;
11
+ --rdp-day_button-height: 42px;
12
+ --rdp-day_button-width: 42px;
13
+ --rdp-selected-border: 2px solid var(--rdp-accent-color);
14
+ --rdp-disabled-opacity: 0.5;
15
+ --rdp-outside-opacity: 0.75;
16
+ --rdp-today-color: var(--rdp-accent-color);
17
+ --rdp-dropdown-gap: 0.5rem;
18
+ --rdp-months-gap: 2rem;
19
+ --rdp-nav_button-disabled-opacity: 0.5;
20
+ --rdp-nav_button-height: 2.25rem;
21
+ --rdp-nav_button-width: 2.25rem;
22
+ --rdp-nav-height: 2.75rem;
23
+ --rdp-range_middle-background-color: var(--rdp-accent-background-color);
24
+ --rdp-range_middle-color: inherit;
25
+ --rdp-range_start-color: white;
26
+ --rdp-range_start-background: linear-gradient(
27
+ var(--rdp-gradient-direction),
28
+ transparent 50%,
29
+ var(--rdp-range_middle-background-color) 50%
30
+ );
31
+ --rdp-range_start-date-background-color: var(--rdp-accent-color);
32
+ --rdp-range_end-background: linear-gradient(
33
+ var(--rdp-gradient-direction),
34
+ var(--rdp-range_middle-background-color) 50%,
35
+ transparent 50%
36
+ );
37
+ --rdp-range_end-color: white;
38
+ --rdp-range_end-date-background-color: var(--rdp-accent-color);
39
+ --rdp-week_number-border-radius: 100%;
40
+ --rdp-week_number-border: 2px solid transparent;
41
+ --rdp-week_number-height: var(--rdp-day-height);
42
+ --rdp-week_number-opacity: 0.75;
43
+ --rdp-week_number-width: var(--rdp-day-width);
44
+ --rdp-weeknumber-text-align: center;
45
+ --rdp-weekday-opacity: 0.75;
46
+ --rdp-weekday-padding: 0.5rem 0rem;
47
+ --rdp-weekday-text-align: center;
48
+ --rdp-gradient-direction: 90deg;
49
+ --rdp-animation_duration: 0.3s;
50
+ --rdp-animation_timing: cubic-bezier(0.4, 0, 0.2, 1);
51
+ }
52
+ #lua-root .rdp-root[dir="rtl"] {
53
+ --rdp-gradient-direction: -90deg;
54
+ }
55
+ #lua-root .rdp-root[data-broadcast-calendar="true"] {
56
+ --rdp-outside-opacity: unset;
57
+ }
58
+ #lua-root .rdp-root {
59
+ position: relative;
60
+ box-sizing: border-box;
61
+ }
62
+ #lua-root .rdp-root * {
63
+ box-sizing: border-box;
64
+ }
65
+ #lua-root .rdp-day {
66
+ width: var(--rdp-day-width);
67
+ height: var(--rdp-day-height);
68
+ text-align: center;
69
+ }
70
+ #lua-root .rdp-day_button {
71
+ background: none;
72
+ padding: 0;
73
+ margin: 0;
74
+ cursor: pointer;
75
+ font: inherit;
76
+ color: inherit;
77
+ justify-content: center;
78
+ align-items: center;
79
+ display: flex;
80
+ width: var(--rdp-day_button-width);
81
+ height: var(--rdp-day_button-height);
82
+ border: var(--rdp-day_button-border);
83
+ border-radius: var(--rdp-day_button-border-radius);
84
+ }
85
+ #lua-root .rdp-day_button:disabled {
86
+ cursor: revert;
87
+ }
88
+ #lua-root .rdp-caption_label {
89
+ z-index: 1;
90
+ position: relative;
91
+ display: inline-flex;
92
+ align-items: center;
93
+ white-space: nowrap;
94
+ border: 0;
95
+ }
96
+ #lua-root .rdp-dropdown:focus-visible ~ .rdp-caption_label {
97
+ outline: 5px auto Highlight;
98
+ outline: 5px auto -webkit-focus-ring-color;
99
+ }
100
+ #lua-root .rdp-button_next, #lua-root .rdp-button_previous {
101
+ border: none;
102
+ background: none;
103
+ padding: 0;
104
+ margin: 0;
105
+ cursor: pointer;
106
+ font: inherit;
107
+ color: inherit;
108
+ -moz-appearance: none;
109
+ -webkit-appearance: none;
110
+ display: inline-flex;
111
+ align-items: center;
112
+ justify-content: center;
113
+ position: relative;
114
+ appearance: none;
115
+ width: var(--rdp-nav_button-width);
116
+ height: var(--rdp-nav_button-height);
117
+ }
118
+ #lua-root .rdp-button_next:disabled, #lua-root .rdp-button_next[aria-disabled="true"], #lua-root .rdp-button_previous:disabled, #lua-root .rdp-button_previous[aria-disabled="true"] {
119
+ cursor: revert;
120
+ opacity: var(--rdp-nav_button-disabled-opacity);
121
+ }
122
+ #lua-root .rdp-chevron {
123
+ display: inline-block;
124
+ fill: var(--rdp-accent-color);
125
+ }
126
+ #lua-root .rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
127
+ transform: rotate(180deg);
128
+ transform-origin: 50%;
129
+ }
130
+ #lua-root .rdp-dropdowns {
131
+ position: relative;
132
+ display: inline-flex;
133
+ align-items: center;
134
+ gap: var(--rdp-dropdown-gap);
135
+ }
136
+ #lua-root .rdp-dropdown {
137
+ z-index: 2;
138
+ opacity: 0;
139
+ -webkit-appearance: none;
140
+ -moz-appearance: none;
141
+ appearance: none;
142
+ position: absolute;
143
+ inset-block-start: 0;
144
+ inset-block-end: 0;
145
+ inset-inline-start: 0;
146
+ width: 100%;
147
+ margin: 0;
148
+ padding: 0;
149
+ cursor: inherit;
150
+ border: none;
151
+ line-height: inherit;
152
+ }
153
+ #lua-root .rdp-dropdown_root {
154
+ position: relative;
155
+ display: inline-flex;
156
+ align-items: center;
157
+ }
158
+ #lua-root .rdp-dropdown_root[data-disabled="true"] .rdp-chevron {
159
+ opacity: var(--rdp-disabled-opacity);
160
+ }
161
+ #lua-root .rdp-month_caption {
162
+ display: flex;
163
+ align-content: center;
164
+ height: var(--rdp-nav-height);
165
+ font-weight: bold;
166
+ font-size: large;
167
+ }
168
+ #lua-root .rdp-root[data-nav-layout="around"] .rdp-month, #lua-root .rdp-root[data-nav-layout="after"] .rdp-month {
169
+ position: relative;
170
+ }
171
+ #lua-root .rdp-root[data-nav-layout="around"] .rdp-month_caption {
172
+ justify-content: center;
173
+ margin-inline-start: var(--rdp-nav_button-width);
174
+ margin-inline-end: var(--rdp-nav_button-width);
175
+ position: relative;
176
+ }
177
+ #lua-root .rdp-root[data-nav-layout="around"] .rdp-button_previous {
178
+ position: absolute;
179
+ inset-inline-start: 0;
180
+ top: 0;
181
+ height: var(--rdp-nav-height);
182
+ display: inline-flex;
183
+ }
184
+ #lua-root .rdp-root[data-nav-layout="around"] .rdp-button_next {
185
+ position: absolute;
186
+ inset-inline-end: 0;
187
+ top: 0;
188
+ height: var(--rdp-nav-height);
189
+ display: inline-flex;
190
+ justify-content: center;
191
+ }
192
+ #lua-root .rdp-months {
193
+ position: relative;
194
+ display: flex;
195
+ flex-wrap: wrap;
196
+ gap: var(--rdp-months-gap);
197
+ max-width: -moz-fit-content;
198
+ max-width: fit-content;
199
+ }
200
+ #lua-root .rdp-month_grid {
201
+ border-collapse: collapse;
202
+ }
203
+ #lua-root .rdp-nav {
204
+ position: absolute;
205
+ inset-block-start: 0;
206
+ inset-inline-end: 0;
207
+ display: flex;
208
+ align-items: center;
209
+ height: var(--rdp-nav-height);
210
+ }
211
+ #lua-root .rdp-weekday {
212
+ opacity: var(--rdp-weekday-opacity);
213
+ padding: var(--rdp-weekday-padding);
214
+ font-weight: 500;
215
+ font-size: smaller;
216
+ text-align: var(--rdp-weekday-text-align);
217
+ text-transform: var(--rdp-weekday-text-transform);
218
+ }
219
+ #lua-root .rdp-week_number {
220
+ opacity: var(--rdp-week_number-opacity);
221
+ font-weight: 400;
222
+ font-size: small;
223
+ height: var(--rdp-week_number-height);
224
+ width: var(--rdp-week_number-width);
225
+ border: var(--rdp-week_number-border);
226
+ border-radius: var(--rdp-week_number-border-radius);
227
+ text-align: var(--rdp-weeknumber-text-align);
228
+ }
229
+ #lua-root .rdp-today:not(.rdp-outside) {
230
+ color: var(--rdp-today-color);
231
+ }
232
+ #lua-root .rdp-selected {
233
+ font-weight: bold;
234
+ font-size: large;
235
+ }
236
+ #lua-root .rdp-selected .rdp-day_button {
237
+ border: var(--rdp-selected-border);
238
+ }
239
+ #lua-root .rdp-outside {
240
+ opacity: var(--rdp-outside-opacity);
241
+ }
242
+ #lua-root .rdp-disabled:not(.rdp-selected) {
243
+ opacity: var(--rdp-disabled-opacity);
244
+ }
245
+ #lua-root .rdp-hidden {
246
+ visibility: hidden;
247
+ color: var(--rdp-range_start-color);
248
+ }
249
+ #lua-root .rdp-range_start {
250
+ background: var(--rdp-range_start-background);
251
+ }
252
+ #lua-root .rdp-range_start .rdp-day_button {
253
+ background-color: var(--rdp-range_start-date-background-color);
254
+ color: var(--rdp-range_start-color);
255
+ }
256
+ #lua-root .rdp-range_middle {
257
+ background-color: var(--rdp-range_middle-background-color);
258
+ }
259
+ #lua-root .rdp-range_middle .rdp-day_button {
260
+ border: unset;
261
+ border-radius: unset;
262
+ color: var(--rdp-range_middle-color);
263
+ }
264
+ #lua-root .rdp-range_end {
265
+ background: var(--rdp-range_end-background);
266
+ color: var(--rdp-range_end-color);
267
+ }
268
+ #lua-root .rdp-range_end .rdp-day_button {
269
+ color: var(--rdp-range_start-color);
270
+ background-color: var(--rdp-range_end-date-background-color);
271
+ }
272
+ #lua-root .rdp-range_start.rdp-range_end {
273
+ background: revert;
274
+ }
275
+ #lua-root .rdp-focusable {
276
+ cursor: pointer;
277
+ }
278
+ @keyframes rdp-slide_in_left {
279
+ 0% {
280
+ transform: translateX(-100%);
281
+ }
282
+ 100% {
283
+ transform: translateX(0);
284
+ }
285
+ }
286
+ @keyframes rdp-slide_in_right {
287
+ 0% {
288
+ transform: translateX(100%);
289
+ }
290
+ 100% {
291
+ transform: translateX(0);
292
+ }
293
+ }
294
+ @keyframes rdp-slide_out_left {
295
+ 0% {
296
+ transform: translateX(0);
297
+ }
298
+ 100% {
299
+ transform: translateX(-100%);
300
+ }
301
+ }
302
+ @keyframes rdp-slide_out_right {
303
+ 0% {
304
+ transform: translateX(0);
305
+ }
306
+ 100% {
307
+ transform: translateX(100%);
308
+ }
309
+ }
310
+ #lua-root .rdp-weeks_before_enter {
311
+ animation: rdp-slide_in_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
312
+ }
313
+ #lua-root .rdp-weeks_before_exit {
314
+ animation: rdp-slide_out_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
315
+ }
316
+ #lua-root .rdp-weeks_after_enter {
317
+ animation: rdp-slide_in_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
318
+ }
319
+ #lua-root .rdp-weeks_after_exit {
320
+ animation: rdp-slide_out_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
321
+ }
322
+ #lua-root .rdp-root[dir="rtl"] .rdp-weeks_after_enter {
323
+ animation: rdp-slide_in_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
324
+ }
325
+ #lua-root .rdp-root[dir="rtl"] .rdp-weeks_before_exit {
326
+ animation: rdp-slide_out_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
327
+ }
328
+ #lua-root .rdp-root[dir="rtl"] .rdp-weeks_before_enter {
329
+ animation: rdp-slide_in_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
330
+ }
331
+ #lua-root .rdp-root[dir="rtl"] .rdp-weeks_after_exit {
332
+ animation: rdp-slide_out_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
333
+ }
334
+ @keyframes rdp-fade_in {
335
+ from {
336
+ opacity: 0;
337
+ }
338
+ to {
339
+ opacity: 1;
340
+ }
341
+ }
342
+ @keyframes rdp-fade_out {
343
+ from {
344
+ opacity: 1;
345
+ }
346
+ to {
347
+ opacity: 0;
348
+ }
349
+ }
350
+ #lua-root .rdp-caption_after_enter {
351
+ animation: rdp-fade_in var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
352
+ }
353
+ #lua-root .rdp-caption_after_exit {
354
+ animation: rdp-fade_out var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
355
+ }
356
+ #lua-root .rdp-caption_before_enter {
357
+ animation: rdp-fade_in var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
358
+ }
359
+ #lua-root .rdp-caption_before_exit {
360
+ animation: rdp-fade_out var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
361
+ }
4
362
  @layer theme, base, components, utilities;
5
363
  @layer theme {
6
364
  #lua-root, #lua-root :host {
@@ -17,11 +375,13 @@
17
375
  --lua-color-yellow-50: oklch(98.7% 0.026 102.212);
18
376
  --lua-color-yellow-100: oklch(97.3% 0.071 103.193);
19
377
  --lua-color-yellow-200: oklch(94.5% 0.129 101.54);
378
+ --lua-color-yellow-600: oklch(68.1% 0.162 75.834);
20
379
  --lua-color-yellow-700: oklch(55.4% 0.135 66.442);
21
380
  --lua-color-yellow-800: oklch(47.6% 0.114 61.907);
22
381
  --lua-color-green-50: oklch(98.2% 0.018 155.826);
23
382
  --lua-color-green-100: oklch(96.2% 0.044 156.743);
24
383
  --lua-color-green-200: oklch(92.5% 0.084 155.995);
384
+ --lua-color-green-500: oklch(72.3% 0.219 149.579);
25
385
  --lua-color-green-600: oklch(62.7% 0.194 149.214);
26
386
  --lua-color-green-700: oklch(52.7% 0.154 150.069);
27
387
  --lua-color-green-800: oklch(44.8% 0.119 151.328);
@@ -32,6 +392,7 @@
32
392
  --lua-color-blue-600: oklch(54.6% 0.245 262.881);
33
393
  --lua-color-blue-700: oklch(48.8% 0.243 264.376);
34
394
  --lua-color-blue-800: oklch(42.4% 0.199 265.638);
395
+ --lua-color-purple-600: oklch(55.8% 0.288 302.321);
35
396
  --lua-color-gray-50: oklch(98.5% 0.002 247.839);
36
397
  --lua-color-gray-100: oklch(96.7% 0.003 264.542);
37
398
  --lua-color-gray-200: oklch(92.8% 0.006 264.531);
@@ -42,15 +403,22 @@
42
403
  --lua-color-gray-700: oklch(37.3% 0.034 259.733);
43
404
  --lua-color-gray-800: oklch(27.8% 0.033 256.848);
44
405
  --lua-color-gray-900: oklch(21% 0.034 264.665);
406
+ --lua-color-neutral-100: #F4F4F4;
45
407
  --lua-color-neutral-200: #EBEBEB;
408
+ --lua-color-neutral-300: #E6E6E6;
409
+ --lua-color-neutral-400: #E0E0E0;
410
+ --lua-color-neutral-500: #D1D5DB;
46
411
  --lua-color-neutral-600: #E5E7EB;
47
412
  --lua-color-black: #000000;
48
413
  --lua-color-white: #fff;
49
414
  --lua-spacing: 4px;
415
+ --lua-container-xs: 20rem;
416
+ --lua-container-sm: 24rem;
50
417
  --lua-container-md: 28rem;
51
418
  --lua-container-lg: 32rem;
52
419
  --lua-container-2xl: 42rem;
53
420
  --lua-container-4xl: 56rem;
421
+ --lua-container-5xl: 64rem;
54
422
  --lua-text-xs: 12px;
55
423
  --lua-text-xs--line-height: calc(1 / 0.75);
56
424
  --lua-text-sm: 14px;
@@ -71,14 +439,21 @@
71
439
  --lua-font-weight-medium: 500;
72
440
  --lua-font-weight-semibold: 600;
73
441
  --lua-font-weight-bold: 700;
442
+ --lua-tracking-tight: -0.025em;
74
443
  --lua-tracking-wide: 0.025em;
444
+ --lua-tracking-widest: 0.1em;
445
+ --lua-leading-tight: 1.25;
446
+ --lua-leading-snug: 1.375;
447
+ --lua-leading-normal: 1.5;
75
448
  --lua-leading-relaxed: 1.625;
76
449
  --lua-radius-sm: calc(var(--radius) - 4px);
77
450
  --lua-radius-md: 6px;
78
451
  --lua-radius-lg: 8px;
79
452
  --lua-radius-xl: 12px;
80
453
  --lua-radius-2xl: 16px;
454
+ --lua-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
81
455
  --lua-animate-spin: spin 1s linear infinite;
456
+ --lua-blur-sm: 8px;
82
457
  --lua-default-transition-duration: 150ms;
83
458
  --lua-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
84
459
  --lua-default-font-family: var(--lua-font-sans);
@@ -258,6 +633,9 @@
258
633
  #lua-root .lua\:pointer-events-none {
259
634
  pointer-events: none;
260
635
  }
636
+ #lua-root .lua\:invisible {
637
+ visibility: hidden;
638
+ }
261
639
  #lua-root .lua\:sr-only {
262
640
  position: absolute;
263
641
  width: 1px;
@@ -284,21 +662,60 @@
284
662
  #lua-root .lua\:inset-0 {
285
663
  inset: calc(var(--lua-spacing) * 0);
286
664
  }
665
+ #lua-root .lua\:inset-x-0 {
666
+ inset-inline: calc(var(--lua-spacing) * 0);
667
+ }
668
+ #lua-root .lua\:inset-y-0 {
669
+ inset-block: calc(var(--lua-spacing) * 0);
670
+ }
671
+ #lua-root .lua\:-top-12 {
672
+ top: calc(var(--lua-spacing) * -12);
673
+ }
674
+ #lua-root .lua\:top-0 {
675
+ top: calc(var(--lua-spacing) * 0);
676
+ }
287
677
  #lua-root .lua\:top-1\/2 {
288
678
  top: calc(1/2 * 100%);
289
679
  }
680
+ #lua-root .lua\:top-4 {
681
+ top: calc(var(--lua-spacing) * 4);
682
+ }
683
+ #lua-root .lua\:-right-12 {
684
+ right: calc(var(--lua-spacing) * -12);
685
+ }
290
686
  #lua-root .lua\:right-0 {
291
687
  right: calc(var(--lua-spacing) * 0);
292
688
  }
689
+ #lua-root .lua\:right-3 {
690
+ right: calc(var(--lua-spacing) * 3);
691
+ }
692
+ #lua-root .lua\:right-4 {
693
+ right: calc(var(--lua-spacing) * 4);
694
+ }
695
+ #lua-root .lua\:-bottom-12 {
696
+ bottom: calc(var(--lua-spacing) * -12);
697
+ }
293
698
  #lua-root .lua\:bottom-0 {
294
699
  bottom: calc(var(--lua-spacing) * 0);
295
700
  }
701
+ #lua-root .lua\:-left-12 {
702
+ left: calc(var(--lua-spacing) * -12);
703
+ }
296
704
  #lua-root .lua\:left-0 {
297
705
  left: calc(var(--lua-spacing) * 0);
298
706
  }
707
+ #lua-root .lua\:left-1\/2 {
708
+ left: calc(1/2 * 100%);
709
+ }
710
+ #lua-root .lua\:left-2 {
711
+ left: calc(var(--lua-spacing) * 2);
712
+ }
299
713
  #lua-root .lua\:left-3 {
300
714
  left: calc(var(--lua-spacing) * 3);
301
715
  }
716
+ #lua-root .lua\:z-10 {
717
+ z-index: 10;
718
+ }
302
719
  #lua-root .lua\:z-50 {
303
720
  z-index: 50;
304
721
  }
@@ -308,6 +725,12 @@
308
725
  #lua-root .lua\:m-4 {
309
726
  margin: calc(var(--lua-spacing) * 4);
310
727
  }
728
+ #lua-root .lua\:-mx-1 {
729
+ margin-inline: calc(var(--lua-spacing) * -1);
730
+ }
731
+ #lua-root .lua\:-mx-2 {
732
+ margin-inline: calc(var(--lua-spacing) * -2);
733
+ }
311
734
  #lua-root .lua\:-mx-4 {
312
735
  margin-inline: calc(var(--lua-spacing) * -4);
313
736
  }
@@ -317,12 +740,21 @@
317
740
  #lua-root .lua\:mx-auto {
318
741
  margin-inline: auto;
319
742
  }
743
+ #lua-root .lua\:-my-2 {
744
+ margin-block: calc(var(--lua-spacing) * -2);
745
+ }
746
+ #lua-root .lua\:my-1 {
747
+ margin-block: calc(var(--lua-spacing) * 1);
748
+ }
320
749
  #lua-root .lua\:mt-0 {
321
750
  margin-top: calc(var(--lua-spacing) * 0);
322
751
  }
323
752
  #lua-root .lua\:mt-1 {
324
753
  margin-top: calc(var(--lua-spacing) * 1);
325
754
  }
755
+ #lua-root .lua\:mt-2 {
756
+ margin-top: calc(var(--lua-spacing) * 2);
757
+ }
326
758
  #lua-root .lua\:mt-3 {
327
759
  margin-top: calc(var(--lua-spacing) * 3);
328
760
  }
@@ -359,12 +791,18 @@
359
791
  #lua-root .lua\:ml-1 {
360
792
  margin-left: calc(var(--lua-spacing) * 1);
361
793
  }
362
- #lua-root .lua\:ml-2 {
363
- margin-left: calc(var(--lua-spacing) * 2);
364
- }
365
794
  #lua-root .lua\:ml-4 {
366
795
  margin-left: calc(var(--lua-spacing) * 4);
367
796
  }
797
+ #lua-root .lua\:ml-auto {
798
+ margin-left: auto;
799
+ }
800
+ #lua-root .lua\:line-clamp-1 {
801
+ overflow: hidden;
802
+ display: -webkit-box;
803
+ -webkit-box-orient: vertical;
804
+ -webkit-line-clamp: 1;
805
+ }
368
806
  #lua-root .lua\:line-clamp-2 {
369
807
  overflow: hidden;
370
808
  display: -webkit-box;
@@ -386,44 +824,93 @@
386
824
  #lua-root .lua\:inline-flex {
387
825
  display: inline-flex;
388
826
  }
827
+ #lua-root .lua\:aspect-square {
828
+ aspect-ratio: 1 / 1;
829
+ }
830
+ #lua-root .lua\:size-3 {
831
+ width: calc(var(--lua-spacing) * 3);
832
+ height: calc(var(--lua-spacing) * 3);
833
+ }
389
834
  #lua-root .lua\:size-4 {
390
835
  width: calc(var(--lua-spacing) * 4);
391
836
  height: calc(var(--lua-spacing) * 4);
392
837
  }
838
+ #lua-root .lua\:size-7 {
839
+ width: calc(var(--lua-spacing) * 7);
840
+ height: calc(var(--lua-spacing) * 7);
841
+ }
393
842
  #lua-root .lua\:size-10 {
394
843
  width: calc(var(--lua-spacing) * 10);
395
844
  height: calc(var(--lua-spacing) * 10);
396
845
  }
846
+ #lua-root .lua\:size-12 {
847
+ width: calc(var(--lua-spacing) * 12);
848
+ height: calc(var(--lua-spacing) * 12);
849
+ }
850
+ #lua-root .lua\:size-\[--cell-size\] {
851
+ width: --cell-size;
852
+ height: --cell-size;
853
+ }
854
+ #lua-root .lua\:h-2 {
855
+ height: calc(var(--lua-spacing) * 2);
856
+ }
397
857
  #lua-root .lua\:h-4 {
398
858
  height: calc(var(--lua-spacing) * 4);
399
859
  }
860
+ #lua-root .lua\:h-5 {
861
+ height: calc(var(--lua-spacing) * 5);
862
+ }
400
863
  #lua-root .lua\:h-6 {
401
864
  height: calc(var(--lua-spacing) * 6);
402
865
  }
866
+ #lua-root .lua\:h-7 {
867
+ height: calc(var(--lua-spacing) * 7);
868
+ }
403
869
  #lua-root .lua\:h-8 {
404
870
  height: calc(var(--lua-spacing) * 8);
405
871
  }
406
872
  #lua-root .lua\:h-10 {
407
873
  height: calc(var(--lua-spacing) * 10);
408
874
  }
875
+ #lua-root .lua\:h-11 {
876
+ height: calc(var(--lua-spacing) * 11);
877
+ }
409
878
  #lua-root .lua\:h-12 {
410
879
  height: calc(var(--lua-spacing) * 12);
411
880
  }
412
881
  #lua-root .lua\:h-48 {
413
882
  height: calc(var(--lua-spacing) * 48);
414
883
  }
884
+ #lua-root .lua\:h-\[--cell-size\] {
885
+ height: --cell-size;
886
+ }
415
887
  #lua-root .lua\:h-auto {
416
888
  height: auto;
417
889
  }
418
890
  #lua-root .lua\:h-full {
419
891
  height: 100%;
420
892
  }
893
+ #lua-root .lua\:h-px {
894
+ height: 1px;
895
+ }
896
+ #lua-root .lua\:max-h-64 {
897
+ max-height: calc(var(--lua-spacing) * 64);
898
+ }
421
899
  #lua-root .lua\:max-h-96 {
422
900
  max-height: calc(var(--lua-spacing) * 96);
423
901
  }
424
902
  #lua-root .lua\:max-h-full {
425
903
  max-height: 100%;
426
904
  }
905
+ #lua-root .lua\:min-h-0 {
906
+ min-height: calc(var(--lua-spacing) * 0);
907
+ }
908
+ #lua-root .lua\:min-h-6 {
909
+ min-height: calc(var(--lua-spacing) * 6);
910
+ }
911
+ #lua-root .lua\:min-h-16 {
912
+ min-height: calc(var(--lua-spacing) * 16);
913
+ }
427
914
  #lua-root .lua\:min-h-48 {
428
915
  min-height: calc(var(--lua-spacing) * 48);
429
916
  }
@@ -436,18 +923,42 @@
436
923
  #lua-root .lua\:w-1 {
437
924
  width: calc(var(--lua-spacing) * 1);
438
925
  }
926
+ #lua-root .lua\:w-3 {
927
+ width: calc(var(--lua-spacing) * 3);
928
+ }
929
+ #lua-root .lua\:w-3\/4 {
930
+ width: calc(3/4 * 100%);
931
+ }
439
932
  #lua-root .lua\:w-4 {
440
933
  width: calc(var(--lua-spacing) * 4);
441
934
  }
442
- #lua-root .lua\:w-6 {
443
- width: calc(var(--lua-spacing) * 6);
935
+ #lua-root .lua\:w-5 {
936
+ width: calc(var(--lua-spacing) * 5);
937
+ }
938
+ #lua-root .lua\:w-7 {
939
+ width: calc(var(--lua-spacing) * 7);
444
940
  }
445
941
  #lua-root .lua\:w-8 {
446
942
  width: calc(var(--lua-spacing) * 8);
447
943
  }
944
+ #lua-root .lua\:w-9 {
945
+ width: calc(var(--lua-spacing) * 9);
946
+ }
947
+ #lua-root .lua\:w-10 {
948
+ width: calc(var(--lua-spacing) * 10);
949
+ }
448
950
  #lua-root .lua\:w-12 {
449
951
  width: calc(var(--lua-spacing) * 12);
450
952
  }
953
+ #lua-root .lua\:w-\[--cell-size\] {
954
+ width: --cell-size;
955
+ }
956
+ #lua-root .lua\:w-\[var\(--radix-dropdown-menu-trigger-width\)\] {
957
+ width: var(--radix-dropdown-menu-trigger-width);
958
+ }
959
+ #lua-root .lua\:w-auto {
960
+ width: auto;
961
+ }
451
962
  #lua-root .lua\:w-fit {
452
963
  width: -moz-fit-content;
453
964
  width: fit-content;
@@ -455,12 +966,18 @@
455
966
  #lua-root .lua\:w-full {
456
967
  width: 100%;
457
968
  }
969
+ #lua-root .lua\:w-px {
970
+ width: 1px;
971
+ }
458
972
  #lua-root .lua\:max-w-2xl {
459
973
  max-width: var(--lua-container-2xl);
460
974
  }
461
975
  #lua-root .lua\:max-w-4xl {
462
976
  max-width: var(--lua-container-4xl);
463
977
  }
978
+ #lua-root .lua\:max-w-5xl {
979
+ max-width: var(--lua-container-5xl);
980
+ }
464
981
  #lua-root .lua\:max-w-full {
465
982
  max-width: 100%;
466
983
  }
@@ -470,6 +987,9 @@
470
987
  #lua-root .lua\:max-w-md {
471
988
  max-width: var(--lua-container-md);
472
989
  }
990
+ #lua-root .lua\:max-w-xs {
991
+ max-width: var(--lua-container-xs);
992
+ }
473
993
  #lua-root .lua\:min-w-0 {
474
994
  min-width: calc(var(--lua-spacing) * 0);
475
995
  }
@@ -479,21 +999,36 @@
479
999
  #lua-root .lua\:min-w-24 {
480
1000
  min-width: calc(var(--lua-spacing) * 24);
481
1001
  }
1002
+ #lua-root .lua\:min-w-32 {
1003
+ min-width: calc(var(--lua-spacing) * 32);
1004
+ }
482
1005
  #lua-root .lua\:min-w-\[80px\] {
483
1006
  min-width: 80px;
484
1007
  }
485
- #lua-root .lua\:min-w-\[120px\] {
486
- min-width: 120px;
1008
+ #lua-root .lua\:min-w-\[320px\] {
1009
+ min-width: 320px;
487
1010
  }
488
1011
  #lua-root .lua\:flex-1 {
489
1012
  flex: 1;
490
1013
  }
1014
+ #lua-root .lua\:flex-none {
1015
+ flex: none;
1016
+ }
491
1017
  #lua-root .lua\:flex-shrink-0 {
492
1018
  flex-shrink: 0;
493
1019
  }
494
1020
  #lua-root .lua\:shrink-0 {
495
1021
  flex-shrink: 0;
496
1022
  }
1023
+ #lua-root .lua\:grow {
1024
+ flex-grow: 1;
1025
+ }
1026
+ #lua-root .lua\:caption-bottom {
1027
+ caption-side: bottom;
1028
+ }
1029
+ #lua-root .lua\:border-collapse {
1030
+ border-collapse: collapse;
1031
+ }
497
1032
  #lua-root .lua\:-translate-x-1\/2 {
498
1033
  --tw-translate-x: calc(calc(1/2 * 100%) * -1);
499
1034
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -505,6 +1040,9 @@
505
1040
  #lua-root .lua\:rotate-90 {
506
1041
  rotate: 90deg;
507
1042
  }
1043
+ #lua-root .lua\:rotate-270 {
1044
+ rotate: 270deg;
1045
+ }
508
1046
  #lua-root .lua\:transform {
509
1047
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
510
1048
  }
@@ -514,15 +1052,30 @@
514
1052
  #lua-root .lua\:cursor-col-resize {
515
1053
  cursor: col-resize;
516
1054
  }
1055
+ #lua-root .lua\:cursor-default {
1056
+ cursor: default;
1057
+ }
517
1058
  #lua-root .lua\:cursor-not-allowed {
518
1059
  cursor: not-allowed;
519
1060
  }
520
1061
  #lua-root .lua\:cursor-pointer {
521
1062
  cursor: pointer;
522
1063
  }
1064
+ #lua-root .lua\:touch-none {
1065
+ touch-action: none;
1066
+ }
1067
+ #lua-root .lua\:resize {
1068
+ resize: both;
1069
+ }
523
1070
  #lua-root .lua\:resize-none {
524
1071
  resize: none;
525
1072
  }
1073
+ #lua-root .lua\:resize-x {
1074
+ resize: horizontal;
1075
+ }
1076
+ #lua-root .lua\:resize-y {
1077
+ resize: vertical;
1078
+ }
526
1079
  #lua-root .lua\:grid-cols-1 {
527
1080
  grid-template-columns: repeat(1, minmax(0, 1fr));
528
1081
  }
@@ -532,6 +1085,12 @@
532
1085
  #lua-root .lua\:flex-col {
533
1086
  flex-direction: column;
534
1087
  }
1088
+ #lua-root .lua\:flex-col-reverse {
1089
+ flex-direction: column-reverse;
1090
+ }
1091
+ #lua-root .lua\:flex-row {
1092
+ flex-direction: row;
1093
+ }
535
1094
  #lua-root .lua\:flex-wrap {
536
1095
  flex-wrap: wrap;
537
1096
  }
@@ -553,6 +1112,9 @@
553
1112
  #lua-root .lua\:justify-end {
554
1113
  justify-content: flex-end;
555
1114
  }
1115
+ #lua-root .lua\:justify-start {
1116
+ justify-content: flex-start;
1117
+ }
556
1118
  #lua-root .lua\:gap-1 {
557
1119
  gap: calc(var(--lua-spacing) * 1);
558
1120
  }
@@ -645,9 +1207,15 @@
645
1207
  #lua-root .lua\:overflow-hidden {
646
1208
  overflow: hidden;
647
1209
  }
1210
+ #lua-root .lua\:overflow-scroll {
1211
+ overflow: scroll;
1212
+ }
648
1213
  #lua-root .lua\:overflow-x-auto {
649
1214
  overflow-x: auto;
650
1215
  }
1216
+ #lua-root .lua\:overflow-x-hidden {
1217
+ overflow-x: hidden;
1218
+ }
651
1219
  #lua-root .lua\:overflow-y-auto {
652
1220
  overflow-y: auto;
653
1221
  }
@@ -669,6 +1237,12 @@
669
1237
  #lua-root .lua\:rounded-none {
670
1238
  border-radius: 0;
671
1239
  }
1240
+ #lua-root .lua\:rounded-sm {
1241
+ border-radius: var(--lua-radius-sm);
1242
+ }
1243
+ #lua-root .lua\:rounded-xl {
1244
+ border-radius: var(--lua-radius-xl);
1245
+ }
672
1246
  #lua-root .lua\:rounded-b-lg {
673
1247
  border-bottom-right-radius: var(--lua-radius-lg);
674
1248
  border-bottom-left-radius: var(--lua-radius-lg);
@@ -681,10 +1255,18 @@
681
1255
  border-style: var(--tw-border-style);
682
1256
  border-width: 0px;
683
1257
  }
1258
+ #lua-root .lua\:border-2 {
1259
+ border-style: var(--tw-border-style);
1260
+ border-width: 2px;
1261
+ }
684
1262
  #lua-root .lua\:border-t {
685
1263
  border-top-style: var(--tw-border-style);
686
1264
  border-top-width: 1px;
687
1265
  }
1266
+ #lua-root .lua\:border-r {
1267
+ border-right-style: var(--tw-border-style);
1268
+ border-right-width: 1px;
1269
+ }
688
1270
  #lua-root .lua\:border-b {
689
1271
  border-bottom-style: var(--tw-border-style);
690
1272
  border-bottom-width: 1px;
@@ -703,6 +1285,12 @@
703
1285
  #lua-root .lua\:border-blue-500 {
704
1286
  border-color: var(--lua-color-blue-500);
705
1287
  }
1288
+ #lua-root .lua\:border-blue-600 {
1289
+ border-color: var(--lua-color-blue-600);
1290
+ }
1291
+ #lua-root .lua\:border-gray-100 {
1292
+ border-color: var(--lua-color-gray-100);
1293
+ }
706
1294
  #lua-root .lua\:border-gray-200 {
707
1295
  border-color: var(--lua-color-gray-200);
708
1296
  }
@@ -712,12 +1300,24 @@
712
1300
  #lua-root .lua\:border-green-200 {
713
1301
  border-color: var(--lua-color-green-200);
714
1302
  }
1303
+ #lua-root .lua\:border-green-500 {
1304
+ border-color: var(--lua-color-green-500);
1305
+ }
1306
+ #lua-root .lua\:border-neutral-400 {
1307
+ border-color: var(--lua-color-neutral-400);
1308
+ }
715
1309
  #lua-root .lua\:border-red-200 {
716
1310
  border-color: var(--lua-color-red-200);
717
1311
  }
1312
+ #lua-root .lua\:border-red-600 {
1313
+ border-color: var(--lua-color-red-600);
1314
+ }
718
1315
  #lua-root .lua\:border-transparent {
719
1316
  border-color: transparent;
720
1317
  }
1318
+ #lua-root .lua\:border-white {
1319
+ border-color: var(--lua-color-white);
1320
+ }
721
1321
  #lua-root .lua\:border-yellow-200 {
722
1322
  border-color: var(--lua-color-yellow-200);
723
1323
  }
@@ -727,12 +1327,27 @@
727
1327
  #lua-root .lua\:bg-black {
728
1328
  background-color: var(--lua-color-black);
729
1329
  }
1330
+ #lua-root .lua\:bg-black-hover {
1331
+ background-color: var(--lua-color-black-hover);
1332
+ }
730
1333
  #lua-root .lua\:bg-black\/30 {
731
1334
  background-color: var(--lua-color-black);
732
1335
  @supports (color: color-mix(in lab, red, red)) {
733
1336
  background-color: color-mix(in oklab, var(--lua-color-black) 30%, transparent);
734
1337
  }
735
1338
  }
1339
+ #lua-root .lua\:bg-black\/50 {
1340
+ background-color: var(--lua-color-black);
1341
+ @supports (color: color-mix(in lab, red, red)) {
1342
+ background-color: color-mix(in oklab, var(--lua-color-black) 50%, transparent);
1343
+ }
1344
+ }
1345
+ #lua-root .lua\:bg-black\/80 {
1346
+ background-color: var(--lua-color-black);
1347
+ @supports (color: color-mix(in lab, red, red)) {
1348
+ background-color: color-mix(in oklab, var(--lua-color-black) 80%, transparent);
1349
+ }
1350
+ }
736
1351
  #lua-root .lua\:bg-blue-50 {
737
1352
  background-color: var(--lua-color-blue-50);
738
1353
  }
@@ -757,12 +1372,21 @@
757
1372
  #lua-root .lua\:bg-gray-300 {
758
1373
  background-color: var(--lua-color-gray-300);
759
1374
  }
1375
+ #lua-root .lua\:bg-gray-900 {
1376
+ background-color: var(--lua-color-gray-900);
1377
+ }
760
1378
  #lua-root .lua\:bg-green-50 {
761
1379
  background-color: var(--lua-color-green-50);
762
1380
  }
763
1381
  #lua-root .lua\:bg-green-100 {
764
1382
  background-color: var(--lua-color-green-100);
765
1383
  }
1384
+ #lua-root .lua\:bg-green-600 {
1385
+ background-color: var(--lua-color-green-600);
1386
+ }
1387
+ #lua-root .lua\:bg-purple-600 {
1388
+ background-color: var(--lua-color-purple-600);
1389
+ }
766
1390
  #lua-root .lua\:bg-red-50 {
767
1391
  background-color: var(--lua-color-red-50);
768
1392
  }
@@ -784,9 +1408,33 @@
784
1408
  #lua-root .lua\:bg-yellow-100 {
785
1409
  background-color: var(--lua-color-yellow-100);
786
1410
  }
1411
+ #lua-root .lua\:bg-yellow-600 {
1412
+ background-color: var(--lua-color-yellow-600);
1413
+ }
1414
+ #lua-root .lua\:bg-gradient-to-r {
1415
+ --tw-gradient-position: to right in oklab;
1416
+ background-image: linear-gradient(var(--tw-gradient-stops));
1417
+ }
1418
+ #lua-root .lua\:from-blue-600 {
1419
+ --tw-gradient-from: var(--lua-color-blue-600);
1420
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1421
+ }
1422
+ #lua-root .lua\:to-purple-600 {
1423
+ --tw-gradient-to: var(--lua-color-purple-600);
1424
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1425
+ }
1426
+ #lua-root .lua\:fill-current {
1427
+ fill: currentcolor;
1428
+ }
787
1429
  #lua-root .lua\:p-0 {
788
1430
  padding: calc(var(--lua-spacing) * 0);
789
1431
  }
1432
+ #lua-root .lua\:p-1 {
1433
+ padding: calc(var(--lua-spacing) * 1);
1434
+ }
1435
+ #lua-root .lua\:p-1\.5 {
1436
+ padding: calc(var(--lua-spacing) * 1.5);
1437
+ }
790
1438
  #lua-root .lua\:p-2 {
791
1439
  padding: calc(var(--lua-spacing) * 2);
792
1440
  }
@@ -805,6 +1453,9 @@
805
1453
  #lua-root .lua\:p-8 {
806
1454
  padding: calc(var(--lua-spacing) * 8);
807
1455
  }
1456
+ #lua-root .lua\:px-0 {
1457
+ padding-inline: calc(var(--lua-spacing) * 0);
1458
+ }
808
1459
  #lua-root .lua\:px-1 {
809
1460
  padding-inline: calc(var(--lua-spacing) * 1);
810
1461
  }
@@ -823,6 +1474,12 @@
823
1474
  #lua-root .lua\:px-6 {
824
1475
  padding-inline: calc(var(--lua-spacing) * 6);
825
1476
  }
1477
+ #lua-root .lua\:px-16 {
1478
+ padding-inline: calc(var(--lua-spacing) * 16);
1479
+ }
1480
+ #lua-root .lua\:px-\[--cell-size\] {
1481
+ padding-inline: --cell-size;
1482
+ }
826
1483
  #lua-root .lua\:py-1 {
827
1484
  padding-block: calc(var(--lua-spacing) * 1);
828
1485
  }
@@ -853,8 +1510,17 @@
853
1510
  #lua-root .lua\:pt-4 {
854
1511
  padding-top: calc(var(--lua-spacing) * 4);
855
1512
  }
856
- #lua-root .lua\:pb-2 {
857
- padding-bottom: calc(var(--lua-spacing) * 2);
1513
+ #lua-root .lua\:pr-1 {
1514
+ padding-right: calc(var(--lua-spacing) * 1);
1515
+ }
1516
+ #lua-root .lua\:pr-2 {
1517
+ padding-right: calc(var(--lua-spacing) * 2);
1518
+ }
1519
+ #lua-root .lua\:pr-10 {
1520
+ padding-right: calc(var(--lua-spacing) * 10);
1521
+ }
1522
+ #lua-root .lua\:pr-12 {
1523
+ padding-right: calc(var(--lua-spacing) * 12);
858
1524
  }
859
1525
  #lua-root .lua\:pb-6 {
860
1526
  padding-bottom: calc(var(--lua-spacing) * 6);
@@ -862,6 +1528,12 @@
862
1528
  #lua-root .lua\:pb-24 {
863
1529
  padding-bottom: calc(var(--lua-spacing) * 24);
864
1530
  }
1531
+ #lua-root .lua\:pl-2 {
1532
+ padding-left: calc(var(--lua-spacing) * 2);
1533
+ }
1534
+ #lua-root .lua\:pl-8 {
1535
+ padding-left: calc(var(--lua-spacing) * 8);
1536
+ }
865
1537
  #lua-root .lua\:pl-10 {
866
1538
  padding-left: calc(var(--lua-spacing) * 10);
867
1539
  }
@@ -871,12 +1543,18 @@
871
1543
  #lua-root .lua\:text-left {
872
1544
  text-align: left;
873
1545
  }
1546
+ #lua-root .lua\:align-middle {
1547
+ vertical-align: middle;
1548
+ }
874
1549
  #lua-root .lua\:font-mono {
875
1550
  font-family: var(--lua-font-mono);
876
1551
  }
877
1552
  #lua-root .lua\:font-onest {
878
1553
  font-family: var(--lua-font-onest);
879
1554
  }
1555
+ #lua-root .lua\:font-sans {
1556
+ font-family: var(--lua-font-sans);
1557
+ }
880
1558
  #lua-root .lua\:text-2xl {
881
1559
  font-size: var(--lua-text-2xl);
882
1560
  line-height: var(--tw-leading, var(--lua-text-2xl--line-height));
@@ -920,10 +1598,26 @@
920
1598
  --tw-leading: calc(var(--lua-spacing) * 6);
921
1599
  line-height: calc(var(--lua-spacing) * 6);
922
1600
  }
1601
+ #lua-root .lua\:leading-none {
1602
+ --tw-leading: 1;
1603
+ line-height: 1;
1604
+ }
1605
+ #lua-root .lua\:leading-normal {
1606
+ --tw-leading: var(--lua-leading-normal);
1607
+ line-height: var(--lua-leading-normal);
1608
+ }
923
1609
  #lua-root .lua\:leading-relaxed {
924
1610
  --tw-leading: var(--lua-leading-relaxed);
925
1611
  line-height: var(--lua-leading-relaxed);
926
1612
  }
1613
+ #lua-root .lua\:leading-snug {
1614
+ --tw-leading: var(--lua-leading-snug);
1615
+ line-height: var(--lua-leading-snug);
1616
+ }
1617
+ #lua-root .lua\:leading-tight {
1618
+ --tw-leading: var(--lua-leading-tight);
1619
+ line-height: var(--lua-leading-tight);
1620
+ }
927
1621
  #lua-root .lua\:font-bold {
928
1622
  --tw-font-weight: var(--lua-font-weight-bold);
929
1623
  font-weight: var(--lua-font-weight-bold);
@@ -940,10 +1634,18 @@
940
1634
  --tw-font-weight: var(--lua-font-weight-semibold);
941
1635
  font-weight: var(--lua-font-weight-semibold);
942
1636
  }
1637
+ #lua-root .lua\:tracking-tight {
1638
+ --tw-tracking: var(--lua-tracking-tight);
1639
+ letter-spacing: var(--lua-tracking-tight);
1640
+ }
943
1641
  #lua-root .lua\:tracking-wide {
944
1642
  --tw-tracking: var(--lua-tracking-wide);
945
1643
  letter-spacing: var(--lua-tracking-wide);
946
1644
  }
1645
+ #lua-root .lua\:tracking-widest {
1646
+ --tw-tracking: var(--lua-tracking-widest);
1647
+ letter-spacing: var(--lua-tracking-widest);
1648
+ }
947
1649
  #lua-root .lua\:break-words {
948
1650
  overflow-wrap: break-word;
949
1651
  }
@@ -968,6 +1670,9 @@
968
1670
  #lua-root .lua\:text-blue-800 {
969
1671
  color: var(--lua-color-blue-800);
970
1672
  }
1673
+ #lua-root .lua\:text-current {
1674
+ color: currentcolor;
1675
+ }
971
1676
  #lua-root .lua\:text-gray-400 {
972
1677
  color: var(--lua-color-gray-400);
973
1678
  }
@@ -1013,6 +1718,9 @@
1013
1718
  #lua-root .lua\:text-white {
1014
1719
  color: var(--lua-color-white);
1015
1720
  }
1721
+ #lua-root .lua\:text-yellow-600 {
1722
+ color: var(--lua-color-yellow-600);
1723
+ }
1016
1724
  #lua-root .lua\:text-yellow-700 {
1017
1725
  color: var(--lua-color-yellow-700);
1018
1726
  }
@@ -1025,12 +1733,27 @@
1025
1733
  #lua-root .lua\:italic {
1026
1734
  font-style: italic;
1027
1735
  }
1736
+ #lua-root .lua\:no-underline {
1737
+ text-decoration-line: none;
1738
+ }
1028
1739
  #lua-root .lua\:caret-black {
1029
1740
  caret-color: var(--lua-color-black);
1030
1741
  }
1031
1742
  #lua-root .lua\:opacity-0 {
1032
1743
  opacity: 0%;
1033
1744
  }
1745
+ #lua-root .lua\:opacity-50 {
1746
+ opacity: 50%;
1747
+ }
1748
+ #lua-root .lua\:opacity-60 {
1749
+ opacity: 60%;
1750
+ }
1751
+ #lua-root .lua\:opacity-70 {
1752
+ opacity: 70%;
1753
+ }
1754
+ #lua-root .lua\:opacity-80 {
1755
+ opacity: 80%;
1756
+ }
1034
1757
  #lua-root .lua\:shadow-lg {
1035
1758
  --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1036
1759
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -1047,6 +1770,40 @@
1047
1770
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1048
1771
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1049
1772
  }
1773
+ #lua-root .lua\:shadow-xs {
1774
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1775
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1776
+ }
1777
+ #lua-root .lua\:ring-0 {
1778
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1779
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1780
+ }
1781
+ #lua-root .lua\:ring-2 {
1782
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1783
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1784
+ }
1785
+ #lua-root .lua\:ring-blue-600 {
1786
+ --tw-ring-color: var(--lua-color-blue-600);
1787
+ }
1788
+ #lua-root .lua\:ring-offset-2 {
1789
+ --tw-ring-offset-width: 2px;
1790
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1791
+ }
1792
+ #lua-root .lua\:ring-offset-white {
1793
+ --tw-ring-offset-color: var(--lua-color-white);
1794
+ }
1795
+ #lua-root .lua\:outline-hidden {
1796
+ --tw-outline-style: none;
1797
+ outline-style: none;
1798
+ @media (forced-colors: active) {
1799
+ outline: 2px solid transparent;
1800
+ outline-offset: 2px;
1801
+ }
1802
+ }
1803
+ #lua-root .lua\:backdrop-blur-sm {
1804
+ --tw-backdrop-blur: blur(var(--lua-blur-sm));
1805
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1806
+ }
1050
1807
  #lua-root .lua\:transition {
1051
1808
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
1052
1809
  transition-timing-function: var(--tw-ease, var(--lua-default-transition-timing-function));
@@ -1082,15 +1839,88 @@
1082
1839
  transition-timing-function: var(--tw-ease, var(--lua-default-transition-timing-function));
1083
1840
  transition-duration: var(--tw-duration, var(--lua-default-transition-duration));
1084
1841
  }
1842
+ #lua-root .lua\:transition-none {
1843
+ transition-property: none;
1844
+ }
1085
1845
  #lua-root .lua\:duration-200 {
1086
1846
  --tw-duration: 200ms;
1087
1847
  transition-duration: 200ms;
1088
1848
  }
1849
+ #lua-root .lua\:duration-1000 {
1850
+ --tw-duration: 1000ms;
1851
+ transition-duration: 1000ms;
1852
+ }
1853
+ #lua-root .lua\:ease-in-out {
1854
+ --tw-ease: var(--lua-ease-in-out);
1855
+ transition-timing-function: var(--lua-ease-in-out);
1856
+ }
1857
+ #lua-root .lua\:select-none {
1858
+ -webkit-user-select: none;
1859
+ -moz-user-select: none;
1860
+ user-select: none;
1861
+ }
1089
1862
  #lua-root .lua\:select-text {
1090
1863
  -webkit-user-select: text;
1091
1864
  -moz-user-select: text;
1092
1865
  user-select: text;
1093
1866
  }
1867
+ #lua-root .lua\:peer-disabled\:cursor-not-allowed {
1868
+ &:is(:where(.lua\:peer):disabled ~ *) {
1869
+ cursor: not-allowed;
1870
+ }
1871
+ }
1872
+ #lua-root .lua\:peer-disabled\:opacity-70 {
1873
+ &:is(:where(.lua\:peer):disabled ~ *) {
1874
+ opacity: 70%;
1875
+ }
1876
+ }
1877
+ #lua-root .lua\:placeholder\:text-gray-400 {
1878
+ &::-moz-placeholder {
1879
+ color: var(--lua-color-gray-400);
1880
+ }
1881
+ &::placeholder {
1882
+ color: var(--lua-color-gray-400);
1883
+ }
1884
+ }
1885
+ #lua-root .lua\:placeholder\:text-gray-500 {
1886
+ &::-moz-placeholder {
1887
+ color: var(--lua-color-gray-500);
1888
+ }
1889
+ &::placeholder {
1890
+ color: var(--lua-color-gray-500);
1891
+ }
1892
+ }
1893
+ #lua-root .lua\:before\:float-left {
1894
+ &::before {
1895
+ content: var(--tw-content);
1896
+ float: left;
1897
+ }
1898
+ }
1899
+ #lua-root .lua\:before\:mr-4 {
1900
+ &::before {
1901
+ content: var(--tw-content);
1902
+ margin-right: calc(var(--lua-spacing) * 4);
1903
+ }
1904
+ }
1905
+ #lua-root .lua\:before\:min-w-\[100px\] {
1906
+ &::before {
1907
+ content: var(--tw-content);
1908
+ min-width: 100px;
1909
+ }
1910
+ }
1911
+ #lua-root .lua\:before\:font-normal {
1912
+ &::before {
1913
+ content: var(--tw-content);
1914
+ --tw-font-weight: var(--lua-font-weight-normal);
1915
+ font-weight: var(--lua-font-weight-normal);
1916
+ }
1917
+ }
1918
+ #lua-root .lua\:before\:content-\[attr\(data-label\)\] {
1919
+ &::before {
1920
+ --tw-content: attr(data-label);
1921
+ content: var(--tw-content);
1922
+ }
1923
+ }
1094
1924
  #lua-root .lua\:after\:absolute {
1095
1925
  &::after {
1096
1926
  content: var(--tw-content);
@@ -1127,6 +1957,40 @@
1127
1957
  content: var(--tw-content);
1128
1958
  }
1129
1959
  }
1960
+ #lua-root .lua\:first\:rounded-l-md {
1961
+ &:first-child {
1962
+ border-top-left-radius: var(--lua-radius-md);
1963
+ border-bottom-left-radius: var(--lua-radius-md);
1964
+ }
1965
+ }
1966
+ #lua-root .lua\:last\:rounded-r-md {
1967
+ &:last-child {
1968
+ border-top-right-radius: var(--lua-radius-md);
1969
+ border-bottom-right-radius: var(--lua-radius-md);
1970
+ }
1971
+ }
1972
+ #lua-root .lua\:focus-within\:z-10 {
1973
+ &:focus-within {
1974
+ z-index: 10;
1975
+ }
1976
+ }
1977
+ #lua-root .lua\:focus-within\:ring-2 {
1978
+ &:focus-within {
1979
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1980
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1981
+ }
1982
+ }
1983
+ #lua-root .lua\:focus-within\:ring-blue-600 {
1984
+ &:focus-within {
1985
+ --tw-ring-color: var(--lua-color-blue-600);
1986
+ }
1987
+ }
1988
+ #lua-root .lua\:focus-within\:ring-offset-2 {
1989
+ &:focus-within {
1990
+ --tw-ring-offset-width: 2px;
1991
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1992
+ }
1993
+ }
1130
1994
  #lua-root .lua\:hover\:-translate-y-0\.5 {
1131
1995
  &:hover {
1132
1996
  @media (hover: hover) {
@@ -1135,6 +1999,16 @@
1135
1999
  }
1136
2000
  }
1137
2001
  }
2002
+ #lua-root .lua\:hover\:scale-105 {
2003
+ &:hover {
2004
+ @media (hover: hover) {
2005
+ --tw-scale-x: 105%;
2006
+ --tw-scale-y: 105%;
2007
+ --tw-scale-z: 105%;
2008
+ scale: var(--tw-scale-x) var(--tw-scale-y);
2009
+ }
2010
+ }
2011
+ }
1138
2012
  #lua-root .lua\:hover\:border-gray-300 {
1139
2013
  &:hover {
1140
2014
  @media (hover: hover) {
@@ -1149,6 +2023,16 @@
1149
2023
  }
1150
2024
  }
1151
2025
  }
2026
+ #lua-root .lua\:hover\:bg-black\/70 {
2027
+ &:hover {
2028
+ @media (hover: hover) {
2029
+ background-color: var(--lua-color-black);
2030
+ @supports (color: color-mix(in lab, red, red)) {
2031
+ background-color: color-mix(in oklab, var(--lua-color-black) 70%, transparent);
2032
+ }
2033
+ }
2034
+ }
2035
+ }
1152
2036
  #lua-root .lua\:hover\:bg-blue-500 {
1153
2037
  &:hover {
1154
2038
  @media (hover: hover) {
@@ -1156,6 +2040,13 @@
1156
2040
  }
1157
2041
  }
1158
2042
  }
2043
+ #lua-root .lua\:hover\:bg-blue-600 {
2044
+ &:hover {
2045
+ @media (hover: hover) {
2046
+ background-color: var(--lua-color-blue-600);
2047
+ }
2048
+ }
2049
+ }
1159
2050
  #lua-root .lua\:hover\:bg-blue-700 {
1160
2051
  &:hover {
1161
2052
  @media (hover: hover) {
@@ -1163,6 +2054,20 @@
1163
2054
  }
1164
2055
  }
1165
2056
  }
2057
+ #lua-root .lua\:hover\:bg-gray-100 {
2058
+ &:hover {
2059
+ @media (hover: hover) {
2060
+ background-color: var(--lua-color-gray-100);
2061
+ }
2062
+ }
2063
+ }
2064
+ #lua-root .lua\:hover\:bg-gray-200 {
2065
+ &:hover {
2066
+ @media (hover: hover) {
2067
+ background-color: var(--lua-color-gray-200);
2068
+ }
2069
+ }
2070
+ }
1166
2071
  #lua-root .lua\:hover\:bg-neutral-200 {
1167
2072
  &:hover {
1168
2073
  @media (hover: hover) {
@@ -1177,6 +2082,13 @@
1177
2082
  }
1178
2083
  }
1179
2084
  }
2085
+ #lua-root .lua\:hover\:text-gray-300 {
2086
+ &:hover {
2087
+ @media (hover: hover) {
2088
+ color: var(--lua-color-gray-300);
2089
+ }
2090
+ }
2091
+ }
1180
2092
  #lua-root .lua\:hover\:text-gray-900 {
1181
2093
  &:hover {
1182
2094
  @media (hover: hover) {
@@ -1184,6 +2096,20 @@
1184
2096
  }
1185
2097
  }
1186
2098
  }
2099
+ #lua-root .lua\:hover\:text-white {
2100
+ &:hover {
2101
+ @media (hover: hover) {
2102
+ color: var(--lua-color-white);
2103
+ }
2104
+ }
2105
+ }
2106
+ #lua-root .lua\:hover\:opacity-100 {
2107
+ &:hover {
2108
+ @media (hover: hover) {
2109
+ opacity: 100%;
2110
+ }
2111
+ }
2112
+ }
1187
2113
  #lua-root .lua\:hover\:shadow-md {
1188
2114
  &:hover {
1189
2115
  @media (hover: hover) {
@@ -1200,11 +2126,29 @@
1200
2126
  }
1201
2127
  }
1202
2128
  }
2129
+ #lua-root .lua\:hover\:shadow-xl {
2130
+ &:hover {
2131
+ @media (hover: hover) {
2132
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2133
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2134
+ }
2135
+ }
2136
+ }
1203
2137
  #lua-root .lua\:focus\:border-transparent {
1204
2138
  &:focus {
1205
2139
  border-color: transparent;
1206
2140
  }
1207
2141
  }
2142
+ #lua-root .lua\:focus\:bg-gray-100 {
2143
+ &:focus {
2144
+ background-color: var(--lua-color-gray-100);
2145
+ }
2146
+ }
2147
+ #lua-root .lua\:focus\:text-gray-900 {
2148
+ &:focus {
2149
+ color: var(--lua-color-gray-900);
2150
+ }
2151
+ }
1208
2152
  #lua-root .lua\:focus\:ring-2 {
1209
2153
  &:focus {
1210
2154
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
@@ -1216,6 +2160,27 @@
1216
2160
  --tw-ring-color: var(--lua-color-blue-500);
1217
2161
  }
1218
2162
  }
2163
+ #lua-root .lua\:focus\:ring-blue-600 {
2164
+ &:focus {
2165
+ --tw-ring-color: var(--lua-color-blue-600);
2166
+ }
2167
+ }
2168
+ #lua-root .lua\:focus\:ring-offset-2 {
2169
+ &:focus {
2170
+ --tw-ring-offset-width: 2px;
2171
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2172
+ }
2173
+ }
2174
+ #lua-root .lua\:focus\:outline-hidden {
2175
+ &:focus {
2176
+ --tw-outline-style: none;
2177
+ outline-style: none;
2178
+ @media (forced-colors: active) {
2179
+ outline: 2px solid transparent;
2180
+ outline-offset: 2px;
2181
+ }
2182
+ }
2183
+ }
1219
2184
  #lua-root .lua\:focus\:outline-none {
1220
2185
  &:focus {
1221
2186
  --tw-outline-style: none;
@@ -1227,6 +2192,11 @@
1227
2192
  border-color: var(--lua-color-blue-600);
1228
2193
  }
1229
2194
  }
2195
+ #lua-root .lua\:focus-visible\:border-neutral-500 {
2196
+ &:focus-visible {
2197
+ border-color: var(--lua-color-neutral-500);
2198
+ }
2199
+ }
1230
2200
  #lua-root .lua\:focus-visible\:bg-black {
1231
2201
  &:focus-visible {
1232
2202
  background-color: var(--lua-color-black);
@@ -1237,6 +2207,16 @@
1237
2207
  background-color: var(--lua-color-blue-600);
1238
2208
  }
1239
2209
  }
2210
+ #lua-root .lua\:focus-visible\:bg-gray-100 {
2211
+ &:focus-visible {
2212
+ background-color: var(--lua-color-gray-100);
2213
+ }
2214
+ }
2215
+ #lua-root .lua\:focus-visible\:bg-neutral-100 {
2216
+ &:focus-visible {
2217
+ background-color: var(--lua-color-neutral-100);
2218
+ }
2219
+ }
1240
2220
  #lua-root .lua\:focus-visible\:bg-red-600 {
1241
2221
  &:focus-visible {
1242
2222
  background-color: var(--lua-color-red-600);
@@ -1271,11 +2251,24 @@
1271
2251
  }
1272
2252
  }
1273
2253
  }
2254
+ #lua-root .lua\:focus-visible\:ring-green-500 {
2255
+ &:focus-visible {
2256
+ --tw-ring-color: var(--lua-color-green-500);
2257
+ }
2258
+ }
1274
2259
  #lua-root .lua\:focus-visible\:ring-red-600 {
1275
2260
  &:focus-visible {
1276
2261
  --tw-ring-color: var(--lua-color-red-600);
1277
2262
  }
1278
2263
  }
2264
+ #lua-root .lua\:focus-visible\:ring-red-600\/20 {
2265
+ &:focus-visible {
2266
+ --tw-ring-color: var(--lua-color-red-600);
2267
+ @supports (color: color-mix(in lab, red, red)) {
2268
+ --tw-ring-color: color-mix(in oklab, var(--lua-color-red-600) 20%, transparent);
2269
+ }
2270
+ }
2271
+ }
1279
2272
  #lua-root .lua\:focus-visible\:ring-offset-2 {
1280
2273
  &:focus-visible {
1281
2274
  --tw-ring-offset-width: 2px;
@@ -1297,16 +2290,45 @@
1297
2290
  }
1298
2291
  }
1299
2292
  }
2293
+ #lua-root .lua\:focus-visible\:outline-none {
2294
+ &:focus-visible {
2295
+ --tw-outline-style: none;
2296
+ outline-style: none;
2297
+ }
2298
+ }
2299
+ #lua-root .lua\:active\:scale-95 {
2300
+ &:active {
2301
+ --tw-scale-x: 95%;
2302
+ --tw-scale-y: 95%;
2303
+ --tw-scale-z: 95%;
2304
+ scale: var(--tw-scale-x) var(--tw-scale-y);
2305
+ }
2306
+ }
1300
2307
  #lua-root .lua\:active\:bg-black-hover {
1301
2308
  &:active {
1302
2309
  background-color: var(--lua-color-black-hover);
1303
2310
  }
1304
2311
  }
2312
+ #lua-root .lua\:active\:bg-blue-600 {
2313
+ &:active {
2314
+ background-color: var(--lua-color-blue-600);
2315
+ }
2316
+ }
1305
2317
  #lua-root .lua\:active\:bg-blue-800 {
1306
2318
  &:active {
1307
2319
  background-color: var(--lua-color-blue-800);
1308
2320
  }
1309
2321
  }
2322
+ #lua-root .lua\:active\:bg-gray-300 {
2323
+ &:active {
2324
+ background-color: var(--lua-color-gray-300);
2325
+ }
2326
+ }
2327
+ #lua-root .lua\:active\:bg-neutral-300 {
2328
+ &:active {
2329
+ background-color: var(--lua-color-neutral-300);
2330
+ }
2331
+ }
1310
2332
  #lua-root .lua\:active\:bg-neutral-600 {
1311
2333
  &:active {
1312
2334
  background-color: var(--lua-color-neutral-600);
@@ -1317,11 +2339,21 @@
1317
2339
  background-color: var(--lua-color-red-800);
1318
2340
  }
1319
2341
  }
2342
+ #lua-root .lua\:active\:text-white {
2343
+ &:active {
2344
+ color: var(--lua-color-white);
2345
+ }
2346
+ }
1320
2347
  #lua-root .lua\:disabled\:pointer-events-none {
1321
2348
  &:disabled {
1322
2349
  pointer-events: none;
1323
2350
  }
1324
2351
  }
2352
+ #lua-root .lua\:disabled\:cursor-not-allowed {
2353
+ &:disabled {
2354
+ cursor: not-allowed;
2355
+ }
2356
+ }
1325
2357
  #lua-root .lua\:disabled\:border-transparent {
1326
2358
  &:disabled {
1327
2359
  border-color: transparent;
@@ -1335,6 +2367,11 @@
1335
2367
  }
1336
2368
  }
1337
2369
  }
2370
+ #lua-root .lua\:disabled\:bg-gray-200 {
2371
+ &:disabled {
2372
+ background-color: var(--lua-color-gray-200);
2373
+ }
2374
+ }
1338
2375
  #lua-root .lua\:disabled\:text-black\/16 {
1339
2376
  &:disabled {
1340
2377
  color: var(--lua-color-black);
@@ -1343,6 +2380,21 @@
1343
2380
  }
1344
2381
  }
1345
2382
  }
2383
+ #lua-root .lua\:disabled\:opacity-50 {
2384
+ &:disabled {
2385
+ opacity: 50%;
2386
+ }
2387
+ }
2388
+ #lua-root .lua\:aria-\[invalid\=true\]\:border-red-500 {
2389
+ &[aria-invalid="true"] {
2390
+ border-color: var(--lua-color-red-500);
2391
+ }
2392
+ }
2393
+ #lua-root .lua\:aria-\[invalid\=true\]\:ring-red-200 {
2394
+ &[aria-invalid="true"] {
2395
+ --tw-ring-color: var(--lua-color-red-200);
2396
+ }
2397
+ }
1346
2398
  #lua-root .lua\:data-\[state\=active\]\:-mb-px {
1347
2399
  &[data-state="active"] {
1348
2400
  margin-bottom: -1px;
@@ -1359,9 +2411,9 @@
1359
2411
  border-color: var(--lua-color-blue-600);
1360
2412
  }
1361
2413
  }
1362
- #lua-root .lua\:data-\[state\=active\]\:bg-gray-50 {
2414
+ #lua-root .lua\:data-\[state\=active\]\:bg-blue-50 {
1363
2415
  &[data-state="active"] {
1364
- background-color: var(--lua-color-gray-50);
2416
+ background-color: var(--lua-color-blue-50);
1365
2417
  }
1366
2418
  }
1367
2419
  #lua-root .lua\:data-\[state\=active\]\:bg-white {
@@ -1374,9 +2426,9 @@
1374
2426
  color: var(--lua-color-blue-600);
1375
2427
  }
1376
2428
  }
1377
- #lua-root .lua\:data-\[state\=active\]\:text-gray-900 {
2429
+ #lua-root .lua\:data-\[state\=active\]\:text-blue-800 {
1378
2430
  &[data-state="active"] {
1379
- color: var(--lua-color-gray-900);
2431
+ color: var(--lua-color-blue-800);
1380
2432
  }
1381
2433
  }
1382
2434
  #lua-root .lua\:data-\[state\=active\]\:shadow-sm {
@@ -1385,26 +2437,342 @@
1385
2437
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1386
2438
  }
1387
2439
  }
2440
+ #lua-root .lua\:data-\[state\=active\]\:hover\:bg-blue-100 {
2441
+ &[data-state="active"] {
2442
+ &:hover {
2443
+ @media (hover: hover) {
2444
+ background-color: var(--lua-color-blue-100);
2445
+ }
2446
+ }
2447
+ }
2448
+ }
2449
+ #lua-root .lua\:data-\[state\=checked\]\:translate-x-4 {
2450
+ &[data-state="checked"] {
2451
+ --tw-translate-x: calc(var(--lua-spacing) * 4);
2452
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2453
+ }
2454
+ }
2455
+ #lua-root .lua\:data-\[state\=checked\]\:border-blue-600 {
2456
+ &[data-state="checked"] {
2457
+ border-color: var(--lua-color-blue-600);
2458
+ }
2459
+ }
2460
+ #lua-root .lua\:data-\[state\=checked\]\:bg-blue-500 {
2461
+ &[data-state="checked"] {
2462
+ background-color: var(--lua-color-blue-500);
2463
+ }
2464
+ }
2465
+ #lua-root .lua\:data-\[state\=checked\]\:bg-blue-600 {
2466
+ &[data-state="checked"] {
2467
+ background-color: var(--lua-color-blue-600);
2468
+ }
2469
+ }
2470
+ #lua-root .lua\:data-\[state\=checked\]\:text-white {
2471
+ &[data-state="checked"] {
2472
+ color: var(--lua-color-white);
2473
+ }
2474
+ }
2475
+ #lua-root .lua\:data-\[state\=closed\]\:duration-300 {
2476
+ &[data-state="closed"] {
2477
+ --tw-duration: 300ms;
2478
+ transition-duration: 300ms;
2479
+ }
2480
+ }
1388
2481
  #lua-root .lua\:data-\[state\=inactive\]\:hidden {
1389
2482
  &[data-state="inactive"] {
1390
2483
  display: none;
1391
2484
  }
1392
2485
  }
2486
+ #lua-root .lua\:data-\[state\=open\]\:bg-gray-100 {
2487
+ &[data-state="open"] {
2488
+ background-color: var(--lua-color-gray-100);
2489
+ }
2490
+ }
2491
+ #lua-root .lua\:data-\[state\=open\]\:duration-500 {
2492
+ &[data-state="open"] {
2493
+ --tw-duration: 500ms;
2494
+ transition-duration: 500ms;
2495
+ }
2496
+ }
2497
+ #lua-root .lua\:data-\[state\=unchecked\]\:translate-x-0 {
2498
+ &[data-state="unchecked"] {
2499
+ --tw-translate-x: calc(var(--lua-spacing) * 0);
2500
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2501
+ }
2502
+ }
2503
+ #lua-root .lua\:data-\[state\=unchecked\]\:bg-gray-200 {
2504
+ &[data-state="unchecked"] {
2505
+ background-color: var(--lua-color-gray-200);
2506
+ }
2507
+ }
1393
2508
  #lua-root .lua\:sm\:mx-5 {
1394
2509
  @media (width >= 40rem) {
1395
2510
  margin-inline: calc(var(--lua-spacing) * 5);
1396
2511
  }
1397
2512
  }
2513
+ #lua-root .lua\:sm\:max-w-md {
2514
+ @media (width >= 40rem) {
2515
+ max-width: var(--lua-container-md);
2516
+ }
2517
+ }
2518
+ #lua-root .lua\:sm\:max-w-sm {
2519
+ @media (width >= 40rem) {
2520
+ max-width: var(--lua-container-sm);
2521
+ }
2522
+ }
1398
2523
  #lua-root .lua\:sm\:grid-cols-2 {
1399
2524
  @media (width >= 40rem) {
1400
2525
  grid-template-columns: repeat(2, minmax(0, 1fr));
1401
2526
  }
1402
2527
  }
2528
+ #lua-root .lua\:sm\:flex-row {
2529
+ @media (width >= 40rem) {
2530
+ flex-direction: row;
2531
+ }
2532
+ }
2533
+ #lua-root .lua\:sm\:justify-end {
2534
+ @media (width >= 40rem) {
2535
+ justify-content: flex-end;
2536
+ }
2537
+ }
2538
+ #lua-root .lua\:sm\:space-x-2 {
2539
+ @media (width >= 40rem) {
2540
+ #lua-root :where(& > :not(:last-child)) {
2541
+ --tw-space-x-reverse: 0;
2542
+ margin-inline-start: calc(calc(var(--lua-spacing) * 2) * var(--tw-space-x-reverse));
2543
+ margin-inline-end: calc(calc(var(--lua-spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
2544
+ }
2545
+ }
2546
+ }
2547
+ #lua-root .lua\:sm\:rounded-lg {
2548
+ @media (width >= 40rem) {
2549
+ border-radius: var(--lua-radius-lg);
2550
+ }
2551
+ }
2552
+ #lua-root .lua\:sm\:text-left {
2553
+ @media (width >= 40rem) {
2554
+ text-align: left;
2555
+ }
2556
+ }
2557
+ #lua-root .lua\:md\:mt-0 {
2558
+ @media (width >= 48rem) {
2559
+ margin-top: calc(var(--lua-spacing) * 0);
2560
+ }
2561
+ }
2562
+ #lua-root .lua\:md\:mb-0 {
2563
+ @media (width >= 48rem) {
2564
+ margin-bottom: calc(var(--lua-spacing) * 0);
2565
+ }
2566
+ }
2567
+ #lua-root .lua\:md\:table {
2568
+ @media (width >= 48rem) {
2569
+ display: table;
2570
+ }
2571
+ }
2572
+ #lua-root .lua\:md\:table-cell {
2573
+ @media (width >= 48rem) {
2574
+ display: table-cell;
2575
+ }
2576
+ }
2577
+ #lua-root .lua\:md\:table-footer-group {
2578
+ @media (width >= 48rem) {
2579
+ display: table-footer-group;
2580
+ }
2581
+ }
2582
+ #lua-root .lua\:md\:table-header-group {
2583
+ @media (width >= 48rem) {
2584
+ display: table-header-group;
2585
+ }
2586
+ }
2587
+ #lua-root .lua\:md\:table-row {
2588
+ @media (width >= 48rem) {
2589
+ display: table-row;
2590
+ }
2591
+ }
2592
+ #lua-root .lua\:md\:table-row-group {
2593
+ @media (width >= 48rem) {
2594
+ display: table-row-group;
2595
+ }
2596
+ }
2597
+ #lua-root .lua\:md\:space-y-0 {
2598
+ @media (width >= 48rem) {
2599
+ #lua-root :where(& > :not(:last-child)) {
2600
+ --tw-space-y-reverse: 0;
2601
+ margin-block-start: calc(calc(var(--lua-spacing) * 0) * var(--tw-space-y-reverse));
2602
+ margin-block-end: calc(calc(var(--lua-spacing) * 0) * calc(1 - var(--tw-space-y-reverse)));
2603
+ }
2604
+ }
2605
+ }
2606
+ #lua-root .lua\:md\:rounded-none {
2607
+ @media (width >= 48rem) {
2608
+ border-radius: 0;
2609
+ }
2610
+ }
2611
+ #lua-root .lua\:md\:border-0 {
2612
+ @media (width >= 48rem) {
2613
+ border-style: var(--tw-border-style);
2614
+ border-width: 0px;
2615
+ }
2616
+ }
2617
+ #lua-root .lua\:md\:border-1 {
2618
+ @media (width >= 48rem) {
2619
+ border-style: var(--tw-border-style);
2620
+ border-width: 1px;
2621
+ }
2622
+ }
2623
+ #lua-root .lua\:md\:border-b {
2624
+ @media (width >= 48rem) {
2625
+ border-bottom-style: var(--tw-border-style);
2626
+ border-bottom-width: 1px;
2627
+ }
2628
+ }
2629
+ #lua-root .lua\:md\:border-b-0 {
2630
+ @media (width >= 48rem) {
2631
+ border-bottom-style: var(--tw-border-style);
2632
+ border-bottom-width: 0px;
2633
+ }
2634
+ }
2635
+ #lua-root .lua\:md\:border-gray-200 {
2636
+ @media (width >= 48rem) {
2637
+ border-color: var(--lua-color-gray-200);
2638
+ }
2639
+ }
2640
+ #lua-root .lua\:md\:bg-transparent {
2641
+ @media (width >= 48rem) {
2642
+ background-color: transparent;
2643
+ }
2644
+ }
2645
+ #lua-root .lua\:md\:p-0 {
2646
+ @media (width >= 48rem) {
2647
+ padding: calc(var(--lua-spacing) * 0);
2648
+ }
2649
+ }
2650
+ #lua-root .lua\:md\:px-4 {
2651
+ @media (width >= 48rem) {
2652
+ padding-inline: calc(var(--lua-spacing) * 4);
2653
+ }
2654
+ }
2655
+ #lua-root .lua\:md\:text-left {
2656
+ @media (width >= 48rem) {
2657
+ text-align: left;
2658
+ }
2659
+ }
2660
+ #lua-root .lua\:md\:align-middle {
2661
+ @media (width >= 48rem) {
2662
+ vertical-align: middle;
2663
+ }
2664
+ }
2665
+ #lua-root .lua\:md\:text-sm {
2666
+ @media (width >= 48rem) {
2667
+ font-size: var(--lua-text-sm);
2668
+ line-height: var(--tw-leading, var(--lua-text-sm--line-height));
2669
+ }
2670
+ }
2671
+ #lua-root .lua\:md\:whitespace-nowrap {
2672
+ @media (width >= 48rem) {
2673
+ white-space: nowrap;
2674
+ }
2675
+ }
2676
+ #lua-root .lua\:md\:shadow-none {
2677
+ @media (width >= 48rem) {
2678
+ --tw-shadow: 0 0 #0000;
2679
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2680
+ }
2681
+ }
2682
+ #lua-root .lua\:md\:before\:content-none {
2683
+ @media (width >= 48rem) {
2684
+ #lua-root &::before {
2685
+ content: var(--tw-content);
2686
+ --tw-content: none;
2687
+ content: none;
2688
+ }
2689
+ }
2690
+ }
2691
+ #lua-root .lua\:md\:hover\:bg-gray-50 {
2692
+ @media (width >= 48rem) {
2693
+ #lua-root &:hover {
2694
+ @media (hover: hover) {
2695
+ background-color: var(--lua-color-gray-50);
2696
+ }
2697
+ }
2698
+ }
2699
+ }
2700
+ #lua-root .lua\:md\:data-\[state\=selected\]\:bg-gray-100 {
2701
+ @media (width >= 48rem) {
2702
+ #lua-root &[data-state="selected"] {
2703
+ background-color: var(--lua-color-gray-100);
2704
+ }
2705
+ }
2706
+ }
2707
+ #lua-root .lua\:lg\:h-full {
2708
+ @media (width >= 64rem) {
2709
+ height: 100%;
2710
+ }
2711
+ }
2712
+ #lua-root .lua\:lg\:max-h-none {
2713
+ @media (width >= 64rem) {
2714
+ max-height: none;
2715
+ }
2716
+ }
1403
2717
  #lua-root .lua\:lg\:grid-cols-3 {
1404
2718
  @media (width >= 64rem) {
1405
2719
  grid-template-columns: repeat(3, minmax(0, 1fr));
1406
2720
  }
1407
2721
  }
2722
+ #lua-root .lua\:lg\:flex-row {
2723
+ @media (width >= 64rem) {
2724
+ flex-direction: row;
2725
+ }
2726
+ }
2727
+ #lua-root .lua\:lg\:border-t-0 {
2728
+ @media (width >= 64rem) {
2729
+ border-top-style: var(--tw-border-style);
2730
+ border-top-width: 0px;
2731
+ }
2732
+ }
2733
+ #lua-root .lua\:lg\:border-r {
2734
+ @media (width >= 64rem) {
2735
+ border-right-style: var(--tw-border-style);
2736
+ border-right-width: 1px;
2737
+ }
2738
+ }
2739
+ #lua-root .lua\:lg\:border-r-2 {
2740
+ @media (width >= 64rem) {
2741
+ border-right-style: var(--tw-border-style);
2742
+ border-right-width: 2px;
2743
+ }
2744
+ }
2745
+ #lua-root .lua\:\[\&_tr\]\:border-none {
2746
+ & tr {
2747
+ --tw-border-style: none;
2748
+ border-style: none;
2749
+ }
2750
+ }
2751
+ #lua-root .lua\:\[\&_tr\:last-child\]\:border-0 {
2752
+ & tr:last-child {
2753
+ border-style: var(--tw-border-style);
2754
+ border-width: 0px;
2755
+ }
2756
+ }
2757
+ #lua-root .lua\:\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
2758
+ &:has([role=checkbox]) {
2759
+ padding-right: calc(var(--lua-spacing) * 0);
2760
+ }
2761
+ }
2762
+ #lua-root .lua\:\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] {
2763
+ &>[role=checkbox] {
2764
+ --tw-translate-y: 2px;
2765
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2766
+ }
2767
+ }
2768
+ #lua-root .lua\:\[\&\>tr\]\:last\:border-b-0 {
2769
+ &>tr {
2770
+ &:last-child {
2771
+ border-bottom-style: var(--tw-border-style);
2772
+ border-bottom-width: 0px;
2773
+ }
2774
+ }
2775
+ }
1408
2776
  }
1409
2777
  @layer base {
1410
2778
  #lua-root *, #lua-root ::after, #lua-root ::before, #lua-root ::backdrop, #lua-root ::file-selector-button {
@@ -1964,6 +3332,48 @@
1964
3332
  inherits: false;
1965
3333
  initial-value: solid;
1966
3334
  }
3335
+ @property --tw-gradient-position {
3336
+ syntax: "*";
3337
+ inherits: false;
3338
+ }
3339
+ @property --tw-gradient-from {
3340
+ syntax: "<color>";
3341
+ inherits: false;
3342
+ initial-value: #0000;
3343
+ }
3344
+ @property --tw-gradient-via {
3345
+ syntax: "<color>";
3346
+ inherits: false;
3347
+ initial-value: #0000;
3348
+ }
3349
+ @property --tw-gradient-to {
3350
+ syntax: "<color>";
3351
+ inherits: false;
3352
+ initial-value: #0000;
3353
+ }
3354
+ @property --tw-gradient-stops {
3355
+ syntax: "*";
3356
+ inherits: false;
3357
+ }
3358
+ @property --tw-gradient-via-stops {
3359
+ syntax: "*";
3360
+ inherits: false;
3361
+ }
3362
+ @property --tw-gradient-from-position {
3363
+ syntax: "<length-percentage>";
3364
+ inherits: false;
3365
+ initial-value: 0%;
3366
+ }
3367
+ @property --tw-gradient-via-position {
3368
+ syntax: "<length-percentage>";
3369
+ inherits: false;
3370
+ initial-value: 50%;
3371
+ }
3372
+ @property --tw-gradient-to-position {
3373
+ syntax: "<length-percentage>";
3374
+ inherits: false;
3375
+ initial-value: 100%;
3376
+ }
1967
3377
  @property --tw-leading {
1968
3378
  syntax: "*";
1969
3379
  inherits: false;
@@ -2041,15 +3451,70 @@
2041
3451
  inherits: false;
2042
3452
  initial-value: 0 0 #0000;
2043
3453
  }
3454
+ @property --tw-backdrop-blur {
3455
+ syntax: "*";
3456
+ inherits: false;
3457
+ }
3458
+ @property --tw-backdrop-brightness {
3459
+ syntax: "*";
3460
+ inherits: false;
3461
+ }
3462
+ @property --tw-backdrop-contrast {
3463
+ syntax: "*";
3464
+ inherits: false;
3465
+ }
3466
+ @property --tw-backdrop-grayscale {
3467
+ syntax: "*";
3468
+ inherits: false;
3469
+ }
3470
+ @property --tw-backdrop-hue-rotate {
3471
+ syntax: "*";
3472
+ inherits: false;
3473
+ }
3474
+ @property --tw-backdrop-invert {
3475
+ syntax: "*";
3476
+ inherits: false;
3477
+ }
3478
+ @property --tw-backdrop-opacity {
3479
+ syntax: "*";
3480
+ inherits: false;
3481
+ }
3482
+ @property --tw-backdrop-saturate {
3483
+ syntax: "*";
3484
+ inherits: false;
3485
+ }
3486
+ @property --tw-backdrop-sepia {
3487
+ syntax: "*";
3488
+ inherits: false;
3489
+ }
2044
3490
  @property --tw-duration {
2045
3491
  syntax: "*";
2046
3492
  inherits: false;
2047
3493
  }
3494
+ @property --tw-ease {
3495
+ syntax: "*";
3496
+ inherits: false;
3497
+ }
2048
3498
  @property --tw-content {
2049
3499
  syntax: "*";
2050
3500
  initial-value: "";
2051
3501
  inherits: false;
2052
3502
  }
3503
+ @property --tw-scale-x {
3504
+ syntax: "*";
3505
+ inherits: false;
3506
+ initial-value: 1;
3507
+ }
3508
+ @property --tw-scale-y {
3509
+ syntax: "*";
3510
+ inherits: false;
3511
+ initial-value: 1;
3512
+ }
3513
+ @property --tw-scale-z {
3514
+ syntax: "*";
3515
+ inherits: false;
3516
+ initial-value: 1;
3517
+ }
2053
3518
  @property --tw-outline-style {
2054
3519
  syntax: "*";
2055
3520
  inherits: false;
@@ -2080,6 +3545,15 @@
2080
3545
  --tw-space-x-reverse: 0;
2081
3546
  --tw-divide-y-reverse: 0;
2082
3547
  --tw-border-style: solid;
3548
+ --tw-gradient-position: initial;
3549
+ --tw-gradient-from: #0000;
3550
+ --tw-gradient-via: #0000;
3551
+ --tw-gradient-to: #0000;
3552
+ --tw-gradient-stops: initial;
3553
+ --tw-gradient-via-stops: initial;
3554
+ --tw-gradient-from-position: 0%;
3555
+ --tw-gradient-via-position: 50%;
3556
+ --tw-gradient-to-position: 100%;
2083
3557
  --tw-leading: initial;
2084
3558
  --tw-font-weight: initial;
2085
3559
  --tw-tracking: initial;
@@ -2097,8 +3571,21 @@
2097
3571
  --tw-ring-offset-width: 0px;
2098
3572
  --tw-ring-offset-color: #fff;
2099
3573
  --tw-ring-offset-shadow: 0 0 #0000;
3574
+ --tw-backdrop-blur: initial;
3575
+ --tw-backdrop-brightness: initial;
3576
+ --tw-backdrop-contrast: initial;
3577
+ --tw-backdrop-grayscale: initial;
3578
+ --tw-backdrop-hue-rotate: initial;
3579
+ --tw-backdrop-invert: initial;
3580
+ --tw-backdrop-opacity: initial;
3581
+ --tw-backdrop-saturate: initial;
3582
+ --tw-backdrop-sepia: initial;
2100
3583
  --tw-duration: initial;
3584
+ --tw-ease: initial;
2101
3585
  --tw-content: "";
3586
+ --tw-scale-x: 1;
3587
+ --tw-scale-y: 1;
3588
+ --tw-scale-z: 1;
2102
3589
  --tw-outline-style: solid;
2103
3590
  --tw-scroll-snap-strictness: proximity;
2104
3591
  }
@@ -4589,7 +6076,11 @@ a:focus-visible,
4589
6076
  right: 0;
4590
6077
  bottom: 0;
4591
6078
  z-index: 2;
4592
- caret-color: #cccccc;
6079
+ caret-color: #ffffff;
6080
+ }
6081
+
6082
+ #user-data-json {
6083
+ caret-color: #ffffff;
4593
6084
  }
4594
6085
 
4595
6086
  .json-textarea:focus {