fina-react-ds 0.0.1 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/README.md +5 -15
  2. package/dist/components/alert.js +30 -27
  3. package/dist/components/avatar.js +19 -19
  4. package/dist/components/badge.js +19 -19
  5. package/dist/components/button.js +51 -51
  6. package/dist/components/calendar.d.ts +8 -0
  7. package/dist/components/calendar.js +206 -0
  8. package/dist/components/card.js +43 -43
  9. package/dist/components/checkbox.js +17 -17
  10. package/dist/components/date-picker.d.ts +6 -0
  11. package/dist/components/date-picker.js +61 -0
  12. package/dist/components/dialog.js +43 -46
  13. package/dist/components/dropdown-menu.js +29 -29
  14. package/dist/components/input.js +15 -13
  15. package/dist/components/label.js +17 -17
  16. package/dist/components/pagination.js +25 -25
  17. package/dist/components/popover.js +9 -9
  18. package/dist/components/select.js +38 -33
  19. package/dist/components/separator.js +29 -0
  20. package/dist/components/sheet.d.ts +15 -0
  21. package/dist/components/sheet.js +158 -0
  22. package/dist/components/sidebar.d.ts +69 -0
  23. package/dist/components/sidebar.js +620 -0
  24. package/dist/components/simple-tooltip.d.ts +4 -0
  25. package/dist/components/simple-tooltip.js +17 -0
  26. package/dist/components/skeleton.d.ts +2 -0
  27. package/dist/components/skeleton.js +18 -0
  28. package/dist/components/sonner.d.ts +3 -0
  29. package/dist/components/sonner.js +24 -0
  30. package/dist/components/switch.d.ts +4 -0
  31. package/dist/components/switch.js +34 -0
  32. package/dist/components/table.d.ts +10 -0
  33. package/dist/components/table.js +124 -0
  34. package/dist/components/tabs.js +27 -27
  35. package/dist/components/textarea.d.ts +3 -0
  36. package/dist/components/textarea.js +23 -0
  37. package/dist/components/tooltip.d.ts +7 -0
  38. package/dist/components/tooltip.js +61 -0
  39. package/dist/hooks/use-mobile.js +17 -0
  40. package/dist/index.d.ts +14 -2
  41. package/dist/index.js +138 -73
  42. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +12 -0
  43. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +21 -0
  44. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildMatchFn.js +36 -0
  45. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +18 -0
  46. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/fr/_lib/formatDistance.js +72 -0
  47. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/fr/_lib/formatLong.js +33 -0
  48. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/fr/_lib/formatRelative.js +13 -0
  49. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/fr/_lib/localize.js +123 -0
  50. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/fr/_lib/match.js +112 -0
  51. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/fr.js +21 -0
  52. package/dist/node_modules/@radix-ui/react-separator/dist/index.js +27 -0
  53. package/dist/node_modules/@radix-ui/react-slot/dist/index.js +47 -40
  54. package/dist/node_modules/@radix-ui/react-switch/dist/index.js +136 -0
  55. package/dist/node_modules/@radix-ui/react-tooltip/dist/index.js +348 -0
  56. package/dist/node_modules/@radix-ui/react-visually-hidden/dist/index.js +32 -0
  57. package/dist/themes/base.css +1679 -585
  58. package/package.json +4 -19
  59. package/dist/themes/pro.css +0 -188
  60. package/dist/themes/puulse-colors.css +0 -388
@@ -3,66 +3,38 @@
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
5
5
  :root, :host {
6
- --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
6
+ --fc-font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
7
7
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
- --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
8
+ --fc-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
9
  "Courier New", monospace;
10
- --color-black: #000;
11
- --spacing: 0.25rem;
12
- --container-lg: 32rem;
13
- --text-xs: 0.75rem;
14
- --text-xs--line-height: calc(1 / 0.75);
15
- --text-sm: 0.875rem;
16
- --text-sm--line-height: calc(1.25 / 0.875);
17
- --text-base: 1rem;
18
- --text-base--line-height: calc(1.5 / 1);
19
- --text-lg: 1.125rem;
20
- --text-lg--line-height: calc(1.75 / 1.125);
21
- --font-weight-medium: 500;
22
- --font-weight-semibold: 600;
23
- --tracking-tight: -0.025em;
24
- --tracking-widest: 0.1em;
25
- --leading-relaxed: 1.625;
26
- --radius-xs: 0.125rem;
27
- --default-transition-duration: 150ms;
28
- --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
29
- --default-font-family: var(--font-sans);
30
- --default-mono-font-family: var(--font-mono);
31
- --color-background: var(--background);
32
- --color-foreground: var(--foreground);
33
- --color-card: var(--card);
34
- --color-popover: var(--popover);
35
- --color-popover-foreground: var(--popover-foreground);
36
- --color-primary: var(--primary);
37
- --color-primary-foreground: var(--primary-foreground);
38
- --color-primary-light: var(--primary-light);
39
- --color-primary-light-foreground: var(--primary-light-foreground);
40
- --color-muted: var(--muted);
41
- --color-muted-foreground: var(--muted-foreground);
42
- --color-accent: var(--accent);
43
- --color-accent-foreground: var(--accent-foreground);
44
- --color-info: var(--info);
45
- --color-info-foreground: var(--info-foreground);
46
- --color-warning: var(--warning);
47
- --color-warning-foreground: var(--warning-foreground);
48
- --color-success: var(--success);
49
- --color-success-foreground: var(--success-foreground);
50
- --color-destructive: var(--destructive);
51
- --color-destructive-foreground: var(--destructive-foreground);
52
- --color-destructive-light: var(--destructive-light);
53
- --color-destructive-light-foreground: var(--destructive-light-foreground);
54
- --color-border: var(--border);
55
- --color-input: var(--input);
56
- --color-input-border: var(--input-border);
57
- --color-ring: var(--ring);
58
- --color-sidebar: var(--sidebar);
59
- --color-sidebar-foreground: var(--sidebar-foreground);
60
- --color-sidebar-primary: var(--sidebar-primary);
61
- --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
62
- --color-sidebar-accent: var(--sidebar-accent);
63
- --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
64
- --color-sidebar-border: var(--sidebar-border);
65
- --color-sidebar-ring: var(--sidebar-ring);
10
+ --fc-color-black: #000;
11
+ --fc-spacing: 0.25rem;
12
+ --fc-container-lg: 32rem;
13
+ --fc-text-xs: 0.75rem;
14
+ --fc-text-xs--line-height: calc(1 / 0.75);
15
+ --fc-text-sm: 0.875rem;
16
+ --fc-text-sm--line-height: calc(1.25 / 0.875);
17
+ --fc-text-base: 1rem;
18
+ --fc-text-base--line-height: calc(1.5 / 1);
19
+ --fc-text-lg: 1.125rem;
20
+ --fc-text-lg--line-height: calc(1.75 / 1.125);
21
+ --fc-font-weight-normal: 400;
22
+ --fc-font-weight-medium: 500;
23
+ --fc-font-weight-semibold: 600;
24
+ --fc-tracking-tight: -0.025em;
25
+ --fc-tracking-widest: 0.1em;
26
+ --fc-leading-relaxed: 1.625;
27
+ --fc-radius-xs: 0.125rem;
28
+ --fc-radius-sm: 0.25rem;
29
+ --fc-radius-md: 0.375rem;
30
+ --fc-radius-lg: 0.5rem;
31
+ --fc-radius-xl: 0.75rem;
32
+ --fc-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
33
+ --fc-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
34
+ --fc-default-transition-duration: 150ms;
35
+ --fc-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
36
+ --fc-default-font-family: var(--fc-font-sans);
37
+ --fc-default-mono-font-family: var(--fc-font-mono);
66
38
  }
67
39
  }
68
40
  @layer base {
@@ -76,9 +48,9 @@
76
48
  line-height: 1.5;
77
49
  -webkit-text-size-adjust: 100%;
78
50
  tab-size: 4;
79
- font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
80
- font-feature-settings: var(--default-font-feature-settings, normal);
81
- font-variation-settings: var(--default-font-variation-settings, normal);
51
+ font-family: var(--fc-default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
52
+ font-feature-settings: var(--fc-default-font-feature-settings, normal);
53
+ font-variation-settings: var(--fc-default-font-variation-settings, normal);
82
54
  -webkit-tap-highlight-color: transparent;
83
55
  }
84
56
  hr {
@@ -103,9 +75,9 @@
103
75
  font-weight: bolder;
104
76
  }
105
77
  code, kbd, samp, pre {
106
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
107
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
108
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
78
+ font-family: var(--fc-default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
79
+ font-feature-settings: var(--fc-default-mono-font-feature-settings, normal);
80
+ font-variation-settings: var(--fc-default-mono-font-variation-settings, normal);
109
81
  font-size: 1em;
110
82
  }
111
83
  small {
@@ -211,14 +183,17 @@
211
183
  }
212
184
  }
213
185
  @layer utilities {
214
- .\@container\/card-header {
186
+ .fc\:\@container\/card-header {
215
187
  container-type: inline-size;
216
188
  container-name: card-header;
217
189
  }
218
- .pointer-events-none {
190
+ .fc\:pointer-events-none {
219
191
  pointer-events: none;
220
192
  }
221
- .sr-only {
193
+ .fc\:invisible {
194
+ visibility: hidden;
195
+ }
196
+ .fc\:sr-only {
222
197
  position: absolute;
223
198
  width: 1px;
224
199
  height: 1px;
@@ -229,625 +204,895 @@
229
204
  white-space: nowrap;
230
205
  border-width: 0;
231
206
  }
232
- .absolute {
207
+ .fc\:absolute {
233
208
  position: absolute;
234
209
  }
235
- .fixed {
210
+ .fc\:fixed {
236
211
  position: fixed;
237
212
  }
238
- .relative {
213
+ .fc\:relative {
239
214
  position: relative;
240
215
  }
241
- .inset-0 {
242
- inset: calc(var(--spacing) * 0);
216
+ .fc\:inset-0 {
217
+ inset: calc(var(--fc-spacing) * 0);
218
+ }
219
+ .fc\:inset-x-0 {
220
+ inset-inline: calc(var(--fc-spacing) * 0);
221
+ }
222
+ .fc\:inset-y-0 {
223
+ inset-block: calc(var(--fc-spacing) * 0);
224
+ }
225
+ .fc\:top-0 {
226
+ top: calc(var(--fc-spacing) * 0);
243
227
  }
244
- .top-4 {
245
- top: calc(var(--spacing) * 4);
228
+ .fc\:top-1\.5 {
229
+ top: calc(var(--fc-spacing) * 1.5);
246
230
  }
247
- .top-\[50\%\] {
231
+ .fc\:top-3\.5 {
232
+ top: calc(var(--fc-spacing) * 3.5);
233
+ }
234
+ .fc\:top-4 {
235
+ top: calc(var(--fc-spacing) * 4);
236
+ }
237
+ .fc\:top-\[50\%\] {
248
238
  top: 50%;
249
239
  }
250
- .right-4 {
251
- right: calc(var(--spacing) * 4);
240
+ .fc\:right-0 {
241
+ right: calc(var(--fc-spacing) * 0);
242
+ }
243
+ .fc\:right-1 {
244
+ right: calc(var(--fc-spacing) * 1);
245
+ }
246
+ .fc\:right-3 {
247
+ right: calc(var(--fc-spacing) * 3);
252
248
  }
253
- .left-2 {
254
- left: calc(var(--spacing) * 2);
249
+ .fc\:right-4 {
250
+ right: calc(var(--fc-spacing) * 4);
255
251
  }
256
- .left-\[50\%\] {
252
+ .fc\:left-0 {
253
+ left: calc(var(--fc-spacing) * 0);
254
+ }
255
+ .fc\:left-\[50\%\] {
257
256
  left: 50%;
258
257
  }
259
- .z-50 {
258
+ .fc\:z-10 {
259
+ z-index: 10;
260
+ }
261
+ .fc\:z-20 {
262
+ z-index: 20;
263
+ }
264
+ .fc\:z-50 {
260
265
  z-index: 50;
261
266
  }
262
- .col-start-2 {
267
+ .fc\:col-start-2 {
263
268
  grid-column-start: 2;
264
269
  }
265
- .row-span-2 {
270
+ .fc\:row-span-2 {
266
271
  grid-row: span 2 / span 2;
267
272
  }
268
- .row-start-1 {
273
+ .fc\:row-start-1 {
269
274
  grid-row-start: 1;
270
275
  }
271
- .-mx-1 {
272
- margin-inline: calc(var(--spacing) * -1);
276
+ .fc\:-mx-1 {
277
+ margin-inline: calc(var(--fc-spacing) * -1);
278
+ }
279
+ .fc\:mx-2 {
280
+ margin-inline: calc(var(--fc-spacing) * 2);
273
281
  }
274
- .mx-auto {
282
+ .fc\:mx-3\.5 {
283
+ margin-inline: calc(var(--fc-spacing) * 3.5);
284
+ }
285
+ .fc\:mx-auto {
275
286
  margin-inline: auto;
276
287
  }
277
- .my-1 {
278
- margin-block: calc(var(--spacing) * 1);
288
+ .fc\:my-1 {
289
+ margin-block: calc(var(--fc-spacing) * 1);
290
+ }
291
+ .fc\:my-10 {
292
+ margin-block: calc(var(--fc-spacing) * 10);
293
+ }
294
+ .fc\:mt-2 {
295
+ margin-top: calc(var(--fc-spacing) * 2);
296
+ }
297
+ .fc\:mt-4 {
298
+ margin-top: calc(var(--fc-spacing) * 4);
279
299
  }
280
- .mt-2 {
281
- margin-top: calc(var(--spacing) * 2);
300
+ .fc\:mt-auto {
301
+ margin-top: auto;
282
302
  }
283
- .mr-1 {
284
- margin-right: calc(var(--spacing) * 1);
303
+ .fc\:mr-1 {
304
+ margin-right: calc(var(--fc-spacing) * 1);
285
305
  }
286
- .mb-4 {
287
- margin-bottom: calc(var(--spacing) * 4);
306
+ .fc\:mr-2 {
307
+ margin-right: calc(var(--fc-spacing) * 2);
288
308
  }
289
- .ml-auto {
309
+ .fc\:ml-auto {
290
310
  margin-left: auto;
291
311
  }
292
- .line-clamp-1 {
312
+ .fc\:line-clamp-1 {
293
313
  overflow: hidden;
294
314
  display: -webkit-box;
295
315
  -webkit-box-orient: vertical;
296
316
  -webkit-line-clamp: 1;
297
317
  }
298
- .flex {
318
+ .fc\:block {
319
+ display: block;
320
+ }
321
+ .fc\:flex {
299
322
  display: flex;
300
323
  }
301
- .grid {
324
+ .fc\:grid {
302
325
  display: grid;
303
326
  }
304
- .hidden {
327
+ .fc\:hidden {
305
328
  display: none;
306
329
  }
307
- .inline-flex {
330
+ .fc\:inline-flex {
308
331
  display: inline-flex;
309
332
  }
310
- .aspect-square {
333
+ .fc\:field-sizing-content {
334
+ field-sizing: content;
335
+ }
336
+ .fc\:aspect-square {
311
337
  aspect-ratio: 1 / 1;
312
338
  }
313
- .size-2 {
314
- width: calc(var(--spacing) * 2);
315
- height: calc(var(--spacing) * 2);
339
+ .fc\:size-\(--cell-size\) {
340
+ width: var(--cell-size);
341
+ height: var(--cell-size);
342
+ }
343
+ .fc\:size-2\.5 {
344
+ width: calc(var(--fc-spacing) * 2.5);
345
+ height: calc(var(--fc-spacing) * 2.5);
316
346
  }
317
- .size-3\.5 {
318
- width: calc(var(--spacing) * 3.5);
319
- height: calc(var(--spacing) * 3.5);
347
+ .fc\:size-3\.5 {
348
+ width: calc(var(--fc-spacing) * 3.5);
349
+ height: calc(var(--fc-spacing) * 3.5);
320
350
  }
321
- .size-4 {
322
- width: calc(var(--spacing) * 4);
323
- height: calc(var(--spacing) * 4);
351
+ .fc\:size-4 {
352
+ width: calc(var(--fc-spacing) * 4);
353
+ height: calc(var(--fc-spacing) * 4);
324
354
  }
325
- .size-8 {
326
- width: calc(var(--spacing) * 8);
327
- height: calc(var(--spacing) * 8);
355
+ .fc\:size-7 {
356
+ width: calc(var(--fc-spacing) * 7);
357
+ height: calc(var(--fc-spacing) * 7);
328
358
  }
329
- .size-9 {
330
- width: calc(var(--spacing) * 9);
331
- height: calc(var(--spacing) * 9);
359
+ .fc\:size-8 {
360
+ width: calc(var(--fc-spacing) * 8);
361
+ height: calc(var(--fc-spacing) * 8);
332
362
  }
333
- .size-full {
363
+ .fc\:size-9 {
364
+ width: calc(var(--fc-spacing) * 9);
365
+ height: calc(var(--fc-spacing) * 9);
366
+ }
367
+ .fc\:size-full {
334
368
  width: 100%;
335
369
  height: 100%;
336
370
  }
337
- .h-8 {
338
- height: calc(var(--spacing) * 8);
371
+ .fc\:h-\(--cell-size\) {
372
+ height: var(--cell-size);
373
+ }
374
+ .fc\:h-4 {
375
+ height: calc(var(--fc-spacing) * 4);
376
+ }
377
+ .fc\:h-5 {
378
+ height: calc(var(--fc-spacing) * 5);
379
+ }
380
+ .fc\:h-7 {
381
+ height: calc(var(--fc-spacing) * 7);
339
382
  }
340
- .h-9 {
341
- height: calc(var(--spacing) * 9);
383
+ .fc\:h-8 {
384
+ height: calc(var(--fc-spacing) * 8);
342
385
  }
343
- .h-10 {
344
- height: calc(var(--spacing) * 10);
386
+ .fc\:h-9 {
387
+ height: calc(var(--fc-spacing) * 9);
345
388
  }
346
- .h-\[calc\(100\%-1px\)\] {
389
+ .fc\:h-10 {
390
+ height: calc(var(--fc-spacing) * 10);
391
+ }
392
+ .fc\:h-12 {
393
+ height: calc(var(--fc-spacing) * 12);
394
+ }
395
+ .fc\:h-\[1\.15rem\] {
396
+ height: 1.15rem;
397
+ }
398
+ .fc\:h-\[calc\(100\%-1px\)\] {
347
399
  height: calc(100% - 1px);
348
400
  }
349
- .h-px {
401
+ .fc\:h-full {
402
+ height: 100%;
403
+ }
404
+ .fc\:h-px {
350
405
  height: 1px;
351
406
  }
352
- .max-h-\(--radix-dropdown-menu-content-available-height\) {
407
+ .fc\:h-svh {
408
+ height: 100svh;
409
+ }
410
+ .fc\:max-h-\(--radix-dropdown-menu-content-available-height\) {
353
411
  max-height: var(--radix-dropdown-menu-content-available-height);
354
412
  }
355
- .min-h-4 {
356
- min-height: calc(var(--spacing) * 4);
413
+ .fc\:min-h-0 {
414
+ min-height: calc(var(--fc-spacing) * 0);
415
+ }
416
+ .fc\:min-h-4 {
417
+ min-height: calc(var(--fc-spacing) * 4);
418
+ }
419
+ .fc\:min-h-9 {
420
+ min-height: calc(var(--fc-spacing) * 9);
357
421
  }
358
- .min-h-9\! {
359
- min-height: calc(var(--spacing) * 9) !important;
422
+ .fc\:min-h-16 {
423
+ min-height: calc(var(--fc-spacing) * 16);
360
424
  }
361
- .w-56 {
362
- width: calc(var(--spacing) * 56);
425
+ .fc\:min-h-svh {
426
+ min-height: 100svh;
363
427
  }
364
- .w-72 {
365
- width: calc(var(--spacing) * 72);
428
+ .fc\:w-\(--sidebar-width\) {
429
+ width: var(--sidebar-width);
366
430
  }
367
- .w-fit {
431
+ .fc\:w-4 {
432
+ width: calc(var(--fc-spacing) * 4);
433
+ }
434
+ .fc\:w-5 {
435
+ width: calc(var(--fc-spacing) * 5);
436
+ }
437
+ .fc\:w-8 {
438
+ width: calc(var(--fc-spacing) * 8);
439
+ }
440
+ .fc\:w-72 {
441
+ width: calc(var(--fc-spacing) * 72);
442
+ }
443
+ .fc\:w-\[90\%\] {
444
+ width: 90%;
445
+ }
446
+ .fc\:w-auto {
447
+ width: auto;
448
+ }
449
+ .fc\:w-fit {
368
450
  width: fit-content;
369
451
  }
370
- .w-full {
452
+ .fc\:w-full {
371
453
  width: 100%;
372
454
  }
373
- .max-w-\[calc\(100\%-2rem\)\] {
455
+ .fc\:max-w-\(--skeleton-width\) {
456
+ max-width: var(--skeleton-width);
457
+ }
458
+ .fc\:max-w-\[calc\(100\%-2rem\)\] {
374
459
  max-width: calc(100% - 2rem);
375
460
  }
376
- .min-w-0 {
377
- min-width: calc(var(--spacing) * 0);
461
+ .fc\:min-w-0 {
462
+ min-width: calc(var(--fc-spacing) * 0);
463
+ }
464
+ .fc\:min-w-5 {
465
+ min-width: calc(var(--fc-spacing) * 5);
378
466
  }
379
- .min-w-\[8rem\] {
467
+ .fc\:min-w-\[8rem\] {
380
468
  min-width: 8rem;
381
469
  }
382
- .flex-1 {
470
+ .fc\:flex-1 {
383
471
  flex: 1;
384
472
  }
385
- .shrink-0 {
473
+ .fc\:shrink-0 {
386
474
  flex-shrink: 0;
387
475
  }
388
- .origin-\(--radix-dropdown-menu-content-transform-origin\) {
476
+ .fc\:caption-bottom {
477
+ caption-side: bottom;
478
+ }
479
+ .fc\:border-collapse {
480
+ border-collapse: collapse;
481
+ }
482
+ .fc\:origin-\(--radix-dropdown-menu-content-transform-origin\) {
389
483
  transform-origin: var(--radix-dropdown-menu-content-transform-origin);
390
484
  }
391
- .origin-\(--radix-popover-content-transform-origin\) {
485
+ .fc\:origin-\(--radix-popover-content-transform-origin\) {
392
486
  transform-origin: var(--radix-popover-content-transform-origin);
393
487
  }
394
- .translate-x-\[-50\%\] {
488
+ .fc\:origin-\(--radix-tooltip-content-transform-origin\) {
489
+ transform-origin: var(--radix-tooltip-content-transform-origin);
490
+ }
491
+ .fc\:-translate-x-1\/2 {
492
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
493
+ translate: var(--tw-translate-x) var(--tw-translate-y);
494
+ }
495
+ .fc\:-translate-x-px {
496
+ --tw-translate-x: -1px;
497
+ translate: var(--tw-translate-x) var(--tw-translate-y);
498
+ }
499
+ .fc\:translate-x-\[-50\%\] {
395
500
  --tw-translate-x: -50%;
396
501
  translate: var(--tw-translate-x) var(--tw-translate-y);
397
502
  }
398
- .translate-y-\[-50\%\] {
503
+ .fc\:translate-x-px {
504
+ --tw-translate-x: 1px;
505
+ translate: var(--tw-translate-x) var(--tw-translate-y);
506
+ }
507
+ .fc\:translate-y-\[-50\%\] {
399
508
  --tw-translate-y: -50%;
400
509
  translate: var(--tw-translate-x) var(--tw-translate-y);
401
510
  }
402
- .cursor-default {
511
+ .fc\:translate-y-\[calc\(-50\%_-_2px\)\] {
512
+ --tw-translate-y: calc(-50% - 2px);
513
+ translate: var(--tw-translate-x) var(--tw-translate-y);
514
+ }
515
+ .fc\:rotate-45 {
516
+ rotate: 45deg;
517
+ }
518
+ .fc\:animate-in {
519
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
520
+ }
521
+ .fc\:animate-pulse {
522
+ animation: var(--fc-animate-pulse);
523
+ }
524
+ .fc\:cursor-default {
403
525
  cursor: default;
404
526
  }
405
- .cursor-pointer {
527
+ .fc\:cursor-pointer {
406
528
  cursor: pointer;
407
529
  }
408
- .auto-rows-min {
530
+ .fc\:auto-rows-min {
409
531
  grid-auto-rows: min-content;
410
532
  }
411
- .grid-cols-\[0_1fr\] {
533
+ .fc\:grid-cols-\[0_1fr\] {
412
534
  grid-template-columns: 0 1fr;
413
535
  }
414
- .grid-rows-\[auto_auto\] {
536
+ .fc\:grid-rows-\[auto_auto\] {
415
537
  grid-template-rows: auto auto;
416
538
  }
417
- .flex-col {
539
+ .fc\:flex-col {
418
540
  flex-direction: column;
419
541
  }
420
- .flex-col-reverse {
542
+ .fc\:flex-col-reverse {
421
543
  flex-direction: column-reverse;
422
544
  }
423
- .flex-row {
545
+ .fc\:flex-row {
424
546
  flex-direction: row;
425
547
  }
426
- .items-center {
548
+ .fc\:items-center {
427
549
  align-items: center;
428
550
  }
429
- .items-start {
551
+ .fc\:items-start {
430
552
  align-items: flex-start;
431
553
  }
432
- .justify-center {
554
+ .fc\:justify-between {
555
+ justify-content: space-between;
556
+ }
557
+ .fc\:justify-center {
433
558
  justify-content: center;
434
559
  }
435
- .justify-items-start {
560
+ .fc\:justify-items-start {
436
561
  justify-items: start;
437
562
  }
438
- .gap-1 {
439
- gap: calc(var(--spacing) * 1);
563
+ .fc\:gap-1 {
564
+ gap: calc(var(--fc-spacing) * 1);
440
565
  }
441
- .gap-1\.5 {
442
- gap: calc(var(--spacing) * 1.5);
566
+ .fc\:gap-1\.5 {
567
+ gap: calc(var(--fc-spacing) * 1.5);
443
568
  }
444
- .gap-2 {
445
- gap: calc(var(--spacing) * 2);
569
+ .fc\:gap-2 {
570
+ gap: calc(var(--fc-spacing) * 2);
446
571
  }
447
- .gap-4 {
448
- gap: calc(var(--spacing) * 4);
572
+ .fc\:gap-4 {
573
+ gap: calc(var(--fc-spacing) * 4);
449
574
  }
450
- .gap-6 {
451
- gap: calc(var(--spacing) * 6);
575
+ .fc\:gap-6 {
576
+ gap: calc(var(--fc-spacing) * 6);
452
577
  }
453
- .space-y-2 {
578
+ .fc\:space-y-2 {
454
579
  :where(& > :not(:last-child)) {
455
580
  --tw-space-y-reverse: 0;
456
- margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
457
- margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
581
+ margin-block-start: calc(calc(var(--fc-spacing) * 2) * var(--tw-space-y-reverse));
582
+ margin-block-end: calc(calc(var(--fc-spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
458
583
  }
459
584
  }
460
- .space-x-2 {
585
+ .fc\:space-y-4 {
586
+ :where(& > :not(:last-child)) {
587
+ --tw-space-y-reverse: 0;
588
+ margin-block-start: calc(calc(var(--fc-spacing) * 4) * var(--tw-space-y-reverse));
589
+ margin-block-end: calc(calc(var(--fc-spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
590
+ }
591
+ }
592
+ .fc\:space-x-2 {
461
593
  :where(& > :not(:last-child)) {
462
594
  --tw-space-x-reverse: 0;
463
- margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
464
- margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
595
+ margin-inline-start: calc(calc(var(--fc-spacing) * 2) * var(--tw-space-x-reverse));
596
+ margin-inline-end: calc(calc(var(--fc-spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
465
597
  }
466
598
  }
467
- .gap-y-0\.5 {
468
- row-gap: calc(var(--spacing) * 0.5);
599
+ .fc\:gap-y-0\.5 {
600
+ row-gap: calc(var(--fc-spacing) * 0.5);
469
601
  }
470
- .self-start {
602
+ .fc\:self-start {
471
603
  align-self: flex-start;
472
604
  }
473
- .justify-self-end {
605
+ .fc\:justify-self-end {
474
606
  justify-self: flex-end;
475
607
  }
476
- .overflow-hidden {
608
+ .fc\:overflow-auto {
609
+ overflow: auto;
610
+ }
611
+ .fc\:overflow-hidden {
477
612
  overflow: hidden;
478
613
  }
479
- .overflow-x-hidden {
614
+ .fc\:overflow-x-auto {
615
+ overflow-x: auto;
616
+ }
617
+ .fc\:overflow-x-hidden {
480
618
  overflow-x: hidden;
481
619
  }
482
- .overflow-y-auto {
620
+ .fc\:overflow-y-auto {
483
621
  overflow-y: auto;
484
622
  }
485
- .rounded-\[4px\] {
623
+ .fc\:rounded-\[2px\] {
624
+ border-radius: 2px;
625
+ }
626
+ .fc\:rounded-\[4px\] {
486
627
  border-radius: 4px;
487
628
  }
488
- .rounded-full {
629
+ .fc\:rounded-full {
489
630
  border-radius: calc(infinity * 1px);
490
631
  }
491
- .rounded-lg {
492
- border-radius: var(--radius);
632
+ .fc\:rounded-lg {
633
+ border-radius: var(--fc-radius-lg);
634
+ }
635
+ .fc\:rounded-md {
636
+ border-radius: var(--fc-radius-md);
493
637
  }
494
- .rounded-md {
495
- border-radius: calc(var(--radius) - 2px);
638
+ .fc\:rounded-none {
639
+ border-radius: 0;
640
+ }
641
+ .fc\:rounded-sm {
642
+ border-radius: var(--fc-radius-sm);
496
643
  }
497
- .rounded-sm {
498
- border-radius: calc(var(--radius) - 4px);
644
+ .fc\:rounded-xl {
645
+ border-radius: var(--fc-radius-xl);
499
646
  }
500
- .rounded-xl {
501
- border-radius: calc(var(--radius) + 4px);
647
+ .fc\:rounded-xs {
648
+ border-radius: var(--fc-radius-xs);
502
649
  }
503
- .rounded-xs {
504
- border-radius: var(--radius-xs);
650
+ .fc\:rounded-l-md {
651
+ border-top-left-radius: var(--fc-radius-md);
652
+ border-bottom-left-radius: var(--fc-radius-md);
505
653
  }
506
- .border {
654
+ .fc\:rounded-r-md {
655
+ border-top-right-radius: var(--fc-radius-md);
656
+ border-bottom-right-radius: var(--fc-radius-md);
657
+ }
658
+ .fc\:border {
507
659
  border-style: var(--tw-border-style);
508
660
  border-width: 1px;
509
661
  }
510
- .border-dark {
662
+ .fc\:border-t {
663
+ border-top-style: var(--tw-border-style);
664
+ border-top-width: 1px;
665
+ }
666
+ .fc\:border-r {
667
+ border-right-style: var(--tw-border-style);
668
+ border-right-width: 1px;
669
+ }
670
+ .fc\:border-b {
671
+ border-bottom-style: var(--tw-border-style);
672
+ border-bottom-width: 1px;
673
+ }
674
+ .fc\:border-l {
675
+ border-left-style: var(--tw-border-style);
676
+ border-left-width: 1px;
677
+ }
678
+ .fc\:border-dark {
511
679
  border-color: var(--dark);
512
680
  }
513
- .border-destructive {
681
+ .fc\:border-destructive {
514
682
  border-color: var(--destructive);
515
683
  }
516
- .border-destructive-light-foreground\/20 {
684
+ .fc\:border-destructive-light-foreground\/20 {
517
685
  border-color: var(--destructive-light-foreground);
518
686
  @supports (color: color-mix(in lab, red, red)) {
519
687
  border-color: color-mix(in oklab, var(--destructive-light-foreground) 20%, transparent);
520
688
  }
521
689
  }
522
- .border-info {
690
+ .fc\:border-info {
523
691
  border-color: var(--info);
524
692
  }
525
- .border-info-light-foreground\/20 {
693
+ .fc\:border-info-light-foreground\/20 {
526
694
  border-color: var(--info-light-foreground);
527
695
  @supports (color: color-mix(in lab, red, red)) {
528
696
  border-color: color-mix(in oklab, var(--info-light-foreground) 20%, transparent);
529
697
  }
530
698
  }
531
- .border-input {
532
- border-color: var(--input);
533
- }
534
- .border-input-border {
699
+ .fc\:border-input-border {
535
700
  border-color: var(--input-border);
536
701
  }
537
- .border-primary {
702
+ .fc\:border-primary {
538
703
  border-color: var(--primary);
539
704
  }
540
- .border-primary-light-foreground\/20 {
705
+ .fc\:border-primary-light-foreground\/20 {
541
706
  border-color: var(--primary-light-foreground);
542
707
  @supports (color: color-mix(in lab, red, red)) {
543
708
  border-color: color-mix(in oklab, var(--primary-light-foreground) 20%, transparent);
544
709
  }
545
710
  }
546
- .border-success {
711
+ .fc\:border-sidebar-border {
712
+ border-color: var(--sidebar-border);
713
+ }
714
+ .fc\:border-success {
547
715
  border-color: var(--success);
548
716
  }
549
- .border-success-light-foreground\/20 {
717
+ .fc\:border-success-light-foreground\/20 {
550
718
  border-color: var(--success-light-foreground);
551
719
  @supports (color: color-mix(in lab, red, red)) {
552
720
  border-color: color-mix(in oklab, var(--success-light-foreground) 20%, transparent);
553
721
  }
554
722
  }
555
- .border-transparent {
723
+ .fc\:border-transparent {
556
724
  border-color: transparent;
557
725
  }
558
- .border-warning {
726
+ .fc\:border-warning {
559
727
  border-color: var(--warning);
560
728
  }
561
- .border-warning-light-foreground\/20 {
729
+ .fc\:border-warning-light-foreground\/20 {
562
730
  border-color: var(--warning-light-foreground);
563
731
  @supports (color: color-mix(in lab, red, red)) {
564
732
  border-color: color-mix(in oklab, var(--warning-light-foreground) 20%, transparent);
565
733
  }
566
734
  }
567
- .bg-background {
735
+ .fc\:bg-accent {
736
+ background-color: var(--accent);
737
+ }
738
+ .fc\:bg-accent\/50 {
739
+ background-color: var(--accent);
740
+ @supports (color: color-mix(in lab, red, red)) {
741
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
742
+ }
743
+ }
744
+ .fc\:bg-background {
568
745
  background-color: var(--background);
569
746
  }
570
- .bg-black\/50 {
571
- background-color: color-mix(in srgb, #000 50%, transparent);
747
+ .fc\:bg-black\/50 {
748
+ background-color: var(--fc-color-black);
572
749
  @supports (color: color-mix(in lab, red, red)) {
573
- background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
750
+ background-color: color-mix(in oklab, var(--fc-color-black) 50%, transparent);
574
751
  }
575
752
  }
576
- .bg-border {
753
+ .fc\:bg-border {
577
754
  background-color: var(--border);
578
755
  }
579
- .bg-card {
756
+ .fc\:bg-card {
580
757
  background-color: var(--card);
581
758
  }
582
- .bg-dark {
759
+ .fc\:bg-dark {
583
760
  background-color: var(--dark);
584
761
  }
585
- .bg-destructive {
762
+ .fc\:bg-destructive {
586
763
  background-color: var(--destructive);
587
764
  }
588
- .bg-destructive-light {
765
+ .fc\:bg-destructive-light {
589
766
  background-color: var(--destructive-light);
590
767
  }
591
- .bg-info {
768
+ .fc\:bg-info {
592
769
  background-color: var(--info);
593
770
  }
594
- .bg-info-light {
771
+ .fc\:bg-info-light {
595
772
  background-color: var(--info-light);
596
773
  }
597
- .bg-input {
774
+ .fc\:bg-input {
598
775
  background-color: var(--input);
599
776
  }
600
- .bg-input-muted {
601
- background-color: var(--input-muted);
777
+ .fc\:bg-input-accent {
778
+ background-color: var(--input-accent);
602
779
  }
603
- .bg-muted {
604
- background-color: var(--muted);
780
+ .fc\:bg-input-accent\! {
781
+ background-color: var(--input-accent) !important;
782
+ }
783
+ .fc\:bg-input-accent\/50 {
784
+ background-color: var(--input-accent);
785
+ @supports (color: color-mix(in lab, red, red)) {
786
+ background-color: color-mix(in oklab, var(--input-accent) 50%, transparent);
787
+ }
605
788
  }
606
- .bg-popover {
789
+ .fc\:bg-popover {
607
790
  background-color: var(--popover);
608
791
  }
609
- .bg-primary {
792
+ .fc\:bg-primary {
610
793
  background-color: var(--primary);
611
794
  }
612
- .bg-primary-light {
795
+ .fc\:bg-primary-light {
613
796
  background-color: var(--primary-light);
614
797
  }
615
- .bg-success {
798
+ .fc\:bg-sidebar {
799
+ background-color: var(--sidebar);
800
+ }
801
+ .fc\:bg-sidebar-border {
802
+ background-color: var(--sidebar-border);
803
+ }
804
+ .fc\:bg-success {
616
805
  background-color: var(--success);
617
806
  }
618
- .bg-success-light {
807
+ .fc\:bg-success-light {
619
808
  background-color: var(--success-light);
620
809
  }
621
- .bg-tabs {
810
+ .fc\:bg-tabs {
622
811
  background-color: var(--tabs);
623
812
  }
624
- .bg-transparent {
813
+ .fc\:bg-transparent {
625
814
  background-color: transparent;
626
815
  }
627
- .bg-warning {
816
+ .fc\:bg-warning {
628
817
  background-color: var(--warning);
629
818
  }
630
- .bg-warning-light {
819
+ .fc\:bg-warning-light {
631
820
  background-color: var(--warning-light);
632
821
  }
633
- .fill-current {
634
- fill: currentcolor;
822
+ .fc\:fill-dark {
823
+ fill: var(--dark);
824
+ }
825
+ .fc\:p-0 {
826
+ padding: calc(var(--fc-spacing) * 0);
635
827
  }
636
- .p-1 {
637
- padding: calc(var(--spacing) * 1);
828
+ .fc\:p-1 {
829
+ padding: calc(var(--fc-spacing) * 1);
638
830
  }
639
- .p-4 {
640
- padding: calc(var(--spacing) * 4);
831
+ .fc\:p-2 {
832
+ padding: calc(var(--fc-spacing) * 2);
641
833
  }
642
- .p-6 {
643
- padding: calc(var(--spacing) * 6);
834
+ .fc\:p-3 {
835
+ padding: calc(var(--fc-spacing) * 3);
644
836
  }
645
- .p-\[3px\] {
837
+ .fc\:p-4 {
838
+ padding: calc(var(--fc-spacing) * 4);
839
+ }
840
+ .fc\:p-6 {
841
+ padding: calc(var(--fc-spacing) * 6);
842
+ }
843
+ .fc\:p-\[3px\] {
646
844
  padding: 3px;
647
845
  }
648
- .px-1 {
649
- padding-inline: calc(var(--spacing) * 1);
846
+ .fc\:px-\(--cell-size\) {
847
+ padding-inline: var(--cell-size);
848
+ }
849
+ .fc\:px-1 {
850
+ padding-inline: calc(var(--fc-spacing) * 1);
851
+ }
852
+ .fc\:px-2 {
853
+ padding-inline: calc(var(--fc-spacing) * 2);
650
854
  }
651
- .px-2 {
652
- padding-inline: calc(var(--spacing) * 2);
855
+ .fc\:px-2\.5 {
856
+ padding-inline: calc(var(--fc-spacing) * 2.5);
653
857
  }
654
- .px-2\.5 {
655
- padding-inline: calc(var(--spacing) * 2.5);
858
+ .fc\:px-3 {
859
+ padding-inline: calc(var(--fc-spacing) * 3);
656
860
  }
657
- .px-3 {
658
- padding-inline: calc(var(--spacing) * 3);
861
+ .fc\:px-4 {
862
+ padding-inline: calc(var(--fc-spacing) * 4);
659
863
  }
660
- .px-4 {
661
- padding-inline: calc(var(--spacing) * 4);
864
+ .fc\:px-6 {
865
+ padding-inline: calc(var(--fc-spacing) * 6);
662
866
  }
663
- .px-6 {
664
- padding-inline: calc(var(--spacing) * 6);
867
+ .fc\:py-0 {
868
+ padding-block: calc(var(--fc-spacing) * 0);
665
869
  }
666
- .py-0 {
667
- padding-block: calc(var(--spacing) * 0);
870
+ .fc\:py-0\.5 {
871
+ padding-block: calc(var(--fc-spacing) * 0.5);
668
872
  }
669
- .py-0\! {
670
- padding-block: calc(var(--spacing) * 0) !important;
873
+ .fc\:py-1 {
874
+ padding-block: calc(var(--fc-spacing) * 1);
671
875
  }
672
- .py-0\.5 {
673
- padding-block: calc(var(--spacing) * 0.5);
876
+ .fc\:py-1\.5 {
877
+ padding-block: calc(var(--fc-spacing) * 1.5);
674
878
  }
675
- .py-1 {
676
- padding-block: calc(var(--spacing) * 1);
879
+ .fc\:py-2 {
880
+ padding-block: calc(var(--fc-spacing) * 2);
677
881
  }
678
- .py-1\.5 {
679
- padding-block: calc(var(--spacing) * 1.5);
882
+ .fc\:py-3 {
883
+ padding-block: calc(var(--fc-spacing) * 3);
680
884
  }
681
- .py-2 {
682
- padding-block: calc(var(--spacing) * 2);
885
+ .fc\:py-6 {
886
+ padding-block: calc(var(--fc-spacing) * 6);
683
887
  }
684
- .py-3 {
685
- padding-block: calc(var(--spacing) * 3);
888
+ .fc\:pt-4 {
889
+ padding-top: calc(var(--fc-spacing) * 4);
686
890
  }
687
- .py-6 {
688
- padding-block: calc(var(--spacing) * 6);
891
+ .fc\:pr-1 {
892
+ padding-right: calc(var(--fc-spacing) * 1);
689
893
  }
690
- .pr-2 {
691
- padding-right: calc(var(--spacing) * 2);
894
+ .fc\:pb-4 {
895
+ padding-bottom: calc(var(--fc-spacing) * 4);
692
896
  }
693
- .pl-8 {
694
- padding-left: calc(var(--spacing) * 8);
897
+ .fc\:pl-2 {
898
+ padding-left: calc(var(--fc-spacing) * 2);
695
899
  }
696
- .text-center {
900
+ .fc\:text-center {
697
901
  text-align: center;
698
902
  }
699
- .text-base {
700
- font-size: var(--text-base);
701
- line-height: var(--tw-leading, var(--text-base--line-height));
903
+ .fc\:text-left {
904
+ text-align: left;
702
905
  }
703
- .text-base\! {
704
- font-size: var(--text-base) !important;
705
- line-height: var(--tw-leading, var(--text-base--line-height)) !important;
906
+ .fc\:align-middle {
907
+ vertical-align: middle;
908
+ }
909
+ .fc\:text-base {
910
+ font-size: var(--fc-text-base);
911
+ line-height: var(--tw-leading, var(--fc-text-base--line-height));
706
912
  }
707
- .text-lg {
708
- font-size: var(--text-lg);
709
- line-height: var(--tw-leading, var(--text-lg--line-height));
913
+ .fc\:text-lg {
914
+ font-size: var(--fc-text-lg);
915
+ line-height: var(--tw-leading, var(--fc-text-lg--line-height));
710
916
  }
711
- .text-sm {
712
- font-size: var(--text-sm);
713
- line-height: var(--tw-leading, var(--text-sm--line-height));
917
+ .fc\:text-sm {
918
+ font-size: var(--fc-text-sm);
919
+ line-height: var(--tw-leading, var(--fc-text-sm--line-height));
714
920
  }
715
- .text-xs {
716
- font-size: var(--text-xs);
717
- line-height: var(--tw-leading, var(--text-xs--line-height));
921
+ .fc\:text-xs {
922
+ font-size: var(--fc-text-xs);
923
+ line-height: var(--tw-leading, var(--fc-text-xs--line-height));
718
924
  }
719
- .leading-none {
925
+ .fc\:text-\[0\.8rem\] {
926
+ font-size: 0.8rem;
927
+ }
928
+ .fc\:leading-none {
720
929
  --tw-leading: 1;
721
930
  line-height: 1;
722
931
  }
723
- .font-medium {
724
- --tw-font-weight: var(--font-weight-medium);
725
- font-weight: var(--font-weight-medium);
932
+ .fc\:font-medium {
933
+ --tw-font-weight: var(--fc-font-weight-medium);
934
+ font-weight: var(--fc-font-weight-medium);
935
+ }
936
+ .fc\:font-normal {
937
+ --tw-font-weight: var(--fc-font-weight-normal);
938
+ font-weight: var(--fc-font-weight-normal);
726
939
  }
727
- .font-semibold {
728
- --tw-font-weight: var(--font-weight-semibold);
729
- font-weight: var(--font-weight-semibold);
940
+ .fc\:font-semibold {
941
+ --tw-font-weight: var(--fc-font-weight-semibold);
942
+ font-weight: var(--fc-font-weight-semibold);
730
943
  }
731
- .tracking-tight {
732
- --tw-tracking: var(--tracking-tight);
733
- letter-spacing: var(--tracking-tight);
944
+ .fc\:tracking-tight {
945
+ --tw-tracking: var(--fc-tracking-tight);
946
+ letter-spacing: var(--fc-tracking-tight);
734
947
  }
735
- .tracking-widest {
736
- --tw-tracking: var(--tracking-widest);
737
- letter-spacing: var(--tracking-widest);
948
+ .fc\:tracking-widest {
949
+ --tw-tracking: var(--fc-tracking-widest);
950
+ letter-spacing: var(--fc-tracking-widest);
738
951
  }
739
- .whitespace-nowrap {
952
+ .fc\:text-balance {
953
+ text-wrap: balance;
954
+ }
955
+ .fc\:whitespace-nowrap {
740
956
  white-space: nowrap;
741
957
  }
742
- .text-current {
958
+ .fc\:text-accent-foreground {
959
+ color: var(--accent-foreground);
960
+ }
961
+ .fc\:text-card-foreground {
962
+ color: var(--card-foreground);
963
+ }
964
+ .fc\:text-current {
743
965
  color: currentcolor;
744
966
  }
745
- .text-dark {
967
+ .fc\:text-dark {
746
968
  color: var(--dark);
747
969
  }
748
- .text-dark-foreground {
970
+ .fc\:text-dark-foreground {
749
971
  color: var(--dark-foreground);
750
972
  }
751
- .text-destructive {
973
+ .fc\:text-destructive {
752
974
  color: var(--destructive);
753
975
  }
754
- .text-destructive-foreground {
976
+ .fc\:text-destructive-foreground {
755
977
  color: var(--destructive-foreground);
756
978
  }
757
- .text-destructive-light-foreground {
979
+ .fc\:text-destructive-light-foreground {
758
980
  color: var(--destructive-light-foreground);
759
981
  }
760
- .text-foreground {
982
+ .fc\:text-foreground {
761
983
  color: var(--foreground);
762
984
  }
763
- .text-info {
985
+ .fc\:text-info {
764
986
  color: var(--info);
765
987
  }
766
- .text-info-foreground {
988
+ .fc\:text-info-foreground {
767
989
  color: var(--info-foreground);
768
990
  }
769
- .text-info-light-foreground {
991
+ .fc\:text-info-light-foreground {
770
992
  color: var(--info-light-foreground);
771
993
  }
772
- .text-muted-foreground {
773
- color: var(--muted-foreground);
994
+ .fc\:text-muted {
995
+ color: var(--muted);
774
996
  }
775
- .text-placeholder {
997
+ .fc\:text-placeholder {
776
998
  color: var(--placeholder);
777
999
  }
778
- .text-popover-foreground {
1000
+ .fc\:text-popover-foreground {
779
1001
  color: var(--popover-foreground);
780
1002
  }
781
- .text-popover-foreground\! {
782
- color: var(--popover-foreground) !important;
783
- }
784
- .text-primary {
1003
+ .fc\:text-primary {
785
1004
  color: var(--primary);
786
1005
  }
787
- .text-primary-foreground {
1006
+ .fc\:text-primary-foreground {
788
1007
  color: var(--primary-foreground);
789
1008
  }
790
- .text-primary-light-foreground {
1009
+ .fc\:text-primary-light-foreground {
791
1010
  color: var(--primary-light-foreground);
792
1011
  }
793
- .text-success {
1012
+ .fc\:text-sidebar-foreground {
1013
+ color: var(--sidebar-foreground);
1014
+ }
1015
+ .fc\:text-sidebar-foreground\/70 {
1016
+ color: var(--sidebar-foreground);
1017
+ @supports (color: color-mix(in lab, red, red)) {
1018
+ color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent);
1019
+ }
1020
+ }
1021
+ .fc\:text-success {
794
1022
  color: var(--success);
795
1023
  }
796
- .text-success-foreground {
1024
+ .fc\:text-success-foreground {
797
1025
  color: var(--success-foreground);
798
1026
  }
799
- .text-success-light-foreground {
1027
+ .fc\:text-success-light-foreground {
800
1028
  color: var(--success-light-foreground);
801
1029
  }
802
- .text-warning {
1030
+ .fc\:text-warning {
803
1031
  color: var(--warning);
804
1032
  }
805
- .text-warning-foreground {
1033
+ .fc\:text-warning-foreground {
806
1034
  color: var(--warning-foreground);
807
1035
  }
808
- .text-warning-light-foreground {
1036
+ .fc\:text-warning-light-foreground {
809
1037
  color: var(--warning-light-foreground);
810
1038
  }
811
- .underline-offset-4 {
1039
+ .fc\:tabular-nums {
1040
+ --tw-numeric-spacing: tabular-nums;
1041
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1042
+ }
1043
+ .fc\:underline-offset-4 {
812
1044
  text-underline-offset: 4px;
813
1045
  }
814
- .opacity-70 {
1046
+ .fc\:opacity-0 {
1047
+ opacity: 0%;
1048
+ }
1049
+ .fc\:opacity-50 {
1050
+ opacity: 50%;
1051
+ }
1052
+ .fc\:opacity-70 {
815
1053
  opacity: 70%;
816
1054
  }
817
- .shadow-lg {
1055
+ .fc\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] {
1056
+ --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border)));
1057
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1058
+ }
1059
+ .fc\:shadow-lg {
818
1060
  --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));
819
1061
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
820
1062
  }
821
- .shadow-md {
1063
+ .fc\:shadow-md {
822
1064
  --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
823
1065
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
824
1066
  }
825
- .shadow-none\! {
826
- --tw-shadow: 0 0 #0000 !important;
827
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
1067
+ .fc\:shadow-none {
1068
+ --tw-shadow: 0 0 #0000;
1069
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
828
1070
  }
829
- .shadow-sm {
1071
+ .fc\:shadow-sm {
830
1072
  --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));
831
1073
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
832
1074
  }
833
- .shadow-xs {
1075
+ .fc\:shadow-xs {
834
1076
  --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
835
1077
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
836
1078
  }
837
- .ring {
838
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1079
+ .fc\:ring-0 {
1080
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
839
1081
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
840
1082
  }
841
- .ring-ring\/50 {
1083
+ .fc\:ring-ring\/50 {
842
1084
  --tw-ring-color: var(--ring);
843
1085
  @supports (color: color-mix(in lab, red, red)) {
844
1086
  --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
845
1087
  }
846
1088
  }
847
- .ring-offset-background {
1089
+ .fc\:ring-sidebar-ring {
1090
+ --tw-ring-color: var(--sidebar-ring);
1091
+ }
1092
+ .fc\:ring-offset-background {
848
1093
  --tw-ring-offset-color: var(--background);
849
1094
  }
850
- .outline-hidden {
1095
+ .fc\:outline-hidden {
851
1096
  --tw-outline-style: none;
852
1097
  outline-style: none;
853
1098
  @media (forced-colors: active) {
@@ -855,66 +1100,275 @@
855
1100
  outline-offset: 2px;
856
1101
  }
857
1102
  }
858
- .outline {
859
- outline-style: var(--tw-outline-style);
860
- outline-width: 1px;
1103
+ .fc\:transition {
1104
+ 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, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events;
1105
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1106
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
861
1107
  }
862
- .transition-\[color\,box-shadow\] {
1108
+ .fc\:transition-\[color\,box-shadow\] {
863
1109
  transition-property: color,box-shadow;
864
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
865
- transition-duration: var(--tw-duration, var(--default-transition-duration));
866
- }
867
- .transition-all {
1110
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1111
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
1112
+ }
1113
+ .fc\:transition-\[left\,right\,width\] {
1114
+ transition-property: left,right,width;
1115
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1116
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
1117
+ }
1118
+ .fc\:transition-\[margin\,opacity\] {
1119
+ transition-property: margin,opacity;
1120
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1121
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
1122
+ }
1123
+ .fc\:transition-\[width\,height\,padding\] {
1124
+ transition-property: width,height,padding;
1125
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1126
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
1127
+ }
1128
+ .fc\:transition-\[width\] {
1129
+ transition-property: width;
1130
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1131
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
1132
+ }
1133
+ .fc\:transition-all {
868
1134
  transition-property: all;
869
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
870
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1135
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1136
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
871
1137
  }
872
- .transition-opacity {
1138
+ .fc\:transition-colors {
1139
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
1140
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1141
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
1142
+ }
1143
+ .fc\:transition-opacity {
873
1144
  transition-property: opacity;
874
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
875
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1145
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1146
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
876
1147
  }
877
- .transition-shadow {
1148
+ .fc\:transition-shadow {
878
1149
  transition-property: box-shadow;
879
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
880
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1150
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1151
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
1152
+ }
1153
+ .fc\:transition-transform {
1154
+ transition-property: transform, translate, scale, rotate;
1155
+ transition-timing-function: var(--tw-ease, var(--fc-default-transition-timing-function));
1156
+ transition-duration: var(--tw-duration, var(--fc-default-transition-duration));
881
1157
  }
882
- .transition-none {
1158
+ .fc\:transition-none {
883
1159
  transition-property: none;
884
1160
  }
885
- .duration-200 {
1161
+ .fc\:duration-200 {
886
1162
  --tw-duration: 200ms;
887
1163
  transition-duration: 200ms;
888
1164
  }
889
- .outline-none {
1165
+ .fc\:ease-in-out {
1166
+ --tw-ease: var(--fc-ease-in-out);
1167
+ transition-timing-function: var(--fc-ease-in-out);
1168
+ }
1169
+ .fc\:ease-linear {
1170
+ --tw-ease: linear;
1171
+ transition-timing-function: linear;
1172
+ }
1173
+ .fc\:fade-in-0 {
1174
+ --tw-enter-opacity: calc(0/100);
1175
+ --tw-enter-opacity: 0;
1176
+ }
1177
+ .fc\:outline-none {
890
1178
  --tw-outline-style: none;
891
1179
  outline-style: none;
892
1180
  }
893
- .select-none {
1181
+ .fc\:select-none {
894
1182
  -webkit-user-select: none;
895
1183
  user-select: none;
896
1184
  }
897
- .group-data-\[disabled\=true\]\:pointer-events-none {
898
- &:is(:where(.group)[data-disabled="true"] *) {
1185
+ .fc\:zoom-in-95 {
1186
+ --tw-enter-scale: calc(95*1%);
1187
+ --tw-enter-scale: .95;
1188
+ }
1189
+ .fc\:\[--cell-size\:--spacing\(8\)\] {
1190
+ --cell-size: calc(var(--fc-spacing) * 8);
1191
+ }
1192
+ .fc\:group-focus-within\/menu-item\:opacity-100 {
1193
+ &:is(:where(.fc\:group\/menu-item):focus-within *) {
1194
+ opacity: 100%;
1195
+ }
1196
+ }
1197
+ .fc\:group-hover\/menu-item\:opacity-100 {
1198
+ &:is(:where(.fc\:group\/menu-item):hover *) {
1199
+ @media (hover: hover) {
1200
+ opacity: 100%;
1201
+ }
1202
+ }
1203
+ }
1204
+ .fc\:group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8 {
1205
+ &:is(:where(.fc\:group\/menu-item):has(*[data-sidebar="menu-action"]) *) {
1206
+ padding-right: calc(var(--fc-spacing) * 8);
1207
+ }
1208
+ }
1209
+ .fc\:group-data-\[collapsible\=icon\]\:-mt-8 {
1210
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1211
+ margin-top: calc(var(--fc-spacing) * -8);
1212
+ }
1213
+ }
1214
+ .fc\:group-data-\[collapsible\=icon\]\:hidden {
1215
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1216
+ display: none;
1217
+ }
1218
+ }
1219
+ .fc\:group-data-\[collapsible\=icon\]\:size-8\! {
1220
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1221
+ width: calc(var(--fc-spacing) * 8) !important;
1222
+ height: calc(var(--fc-spacing) * 8) !important;
1223
+ }
1224
+ }
1225
+ .fc\:group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\) {
1226
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1227
+ width: var(--sidebar-width-icon);
1228
+ }
1229
+ }
1230
+ .fc\:group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\] {
1231
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1232
+ width: calc(var(--sidebar-width-icon) + (calc(var(--fc-spacing) * 4)));
1233
+ }
1234
+ }
1235
+ .fc\:group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\] {
1236
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1237
+ width: calc(var(--sidebar-width-icon) + (calc(var(--fc-spacing) * 4)) + 2px);
1238
+ }
1239
+ }
1240
+ .fc\:group-data-\[collapsible\=icon\]\:overflow-hidden {
1241
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1242
+ overflow: hidden;
1243
+ }
1244
+ }
1245
+ .fc\:group-data-\[collapsible\=icon\]\:p-0\! {
1246
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1247
+ padding: calc(var(--fc-spacing) * 0) !important;
1248
+ }
1249
+ }
1250
+ .fc\:group-data-\[collapsible\=icon\]\:p-2\! {
1251
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1252
+ padding: calc(var(--fc-spacing) * 2) !important;
1253
+ }
1254
+ }
1255
+ .fc\:group-data-\[collapsible\=icon\]\:opacity-0 {
1256
+ &:is(:where(.fc\:group)[data-collapsible="icon"] *) {
1257
+ opacity: 0%;
1258
+ }
1259
+ }
1260
+ .fc\:group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\] {
1261
+ &:is(:where(.fc\:group)[data-collapsible="offcanvas"] *) {
1262
+ right: calc(var(--sidebar-width) * -1);
1263
+ }
1264
+ }
1265
+ .fc\:group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\] {
1266
+ &:is(:where(.fc\:group)[data-collapsible="offcanvas"] *) {
1267
+ left: calc(var(--sidebar-width) * -1);
1268
+ }
1269
+ }
1270
+ .fc\:group-data-\[collapsible\=offcanvas\]\:w-0 {
1271
+ &:is(:where(.fc\:group)[data-collapsible="offcanvas"] *) {
1272
+ width: calc(var(--fc-spacing) * 0);
1273
+ }
1274
+ }
1275
+ .fc\:group-data-\[collapsible\=offcanvas\]\:translate-x-0 {
1276
+ &:is(:where(.fc\:group)[data-collapsible="offcanvas"] *) {
1277
+ --tw-translate-x: calc(var(--fc-spacing) * 0);
1278
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1279
+ }
1280
+ }
1281
+ .fc\:group-data-\[disabled\=true\]\:pointer-events-none {
1282
+ &:is(:where(.fc\:group)[data-disabled="true"] *) {
899
1283
  pointer-events: none;
900
1284
  }
901
1285
  }
902
- .group-data-\[disabled\=true\]\:opacity-50 {
903
- &:is(:where(.group)[data-disabled="true"] *) {
1286
+ .fc\:group-data-\[disabled\=true\]\:opacity-50 {
1287
+ &:is(:where(.fc\:group)[data-disabled="true"] *) {
904
1288
  opacity: 50%;
905
1289
  }
906
1290
  }
907
- .peer-disabled\:cursor-not-allowed {
908
- &:is(:where(.peer):disabled ~ *) {
1291
+ .fc\:group-data-\[side\=left\]\:-right-4 {
1292
+ &:is(:where(.fc\:group)[data-side="left"] *) {
1293
+ right: calc(var(--fc-spacing) * -4);
1294
+ }
1295
+ }
1296
+ .fc\:group-data-\[side\=left\]\:border-r {
1297
+ &:is(:where(.fc\:group)[data-side="left"] *) {
1298
+ border-right-style: var(--tw-border-style);
1299
+ border-right-width: 1px;
1300
+ }
1301
+ }
1302
+ .fc\:group-data-\[side\=right\]\:left-0 {
1303
+ &:is(:where(.fc\:group)[data-side="right"] *) {
1304
+ left: calc(var(--fc-spacing) * 0);
1305
+ }
1306
+ }
1307
+ .fc\:group-data-\[side\=right\]\:rotate-180 {
1308
+ &:is(:where(.fc\:group)[data-side="right"] *) {
1309
+ rotate: 180deg;
1310
+ }
1311
+ }
1312
+ .fc\:group-data-\[variant\=floating\]\:rounded-lg {
1313
+ &:is(:where(.fc\:group)[data-variant="floating"] *) {
1314
+ border-radius: var(--fc-radius-lg);
1315
+ }
1316
+ }
1317
+ .fc\:group-data-\[variant\=floating\]\:border {
1318
+ &:is(:where(.fc\:group)[data-variant="floating"] *) {
1319
+ border-style: var(--tw-border-style);
1320
+ border-width: 1px;
1321
+ }
1322
+ }
1323
+ .fc\:group-data-\[variant\=floating\]\:border-sidebar-border {
1324
+ &:is(:where(.fc\:group)[data-variant="floating"] *) {
1325
+ border-color: var(--sidebar-border);
1326
+ }
1327
+ }
1328
+ .fc\:group-data-\[variant\=floating\]\:shadow-sm {
1329
+ &:is(:where(.fc\:group)[data-variant="floating"] *) {
1330
+ --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));
1331
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1332
+ }
1333
+ }
1334
+ .fc\:peer-hover\/menu-button\:text-sidebar-accent-foreground {
1335
+ &:is(:where(.fc\:peer\/menu-button):hover ~ *) {
1336
+ @media (hover: hover) {
1337
+ color: var(--sidebar-accent-foreground);
1338
+ }
1339
+ }
1340
+ }
1341
+ .fc\:peer-disabled\:cursor-not-allowed {
1342
+ &:is(:where(.fc\:peer):disabled ~ *) {
909
1343
  cursor: not-allowed;
910
1344
  }
911
1345
  }
912
- .peer-disabled\:opacity-50 {
913
- &:is(:where(.peer):disabled ~ *) {
1346
+ .fc\:peer-disabled\:opacity-50 {
1347
+ &:is(:where(.fc\:peer):disabled ~ *) {
914
1348
  opacity: 50%;
915
1349
  }
916
1350
  }
917
- .selection\:bg-primary {
1351
+ .fc\:peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground {
1352
+ &:is(:where(.fc\:peer\/menu-button)[data-active="true"] ~ *) {
1353
+ color: var(--sidebar-accent-foreground);
1354
+ }
1355
+ }
1356
+ .fc\:peer-data-\[size\=default\]\/menu-button\:top-1\.5 {
1357
+ &:is(:where(.fc\:peer\/menu-button)[data-size="default"] ~ *) {
1358
+ top: calc(var(--fc-spacing) * 1.5);
1359
+ }
1360
+ }
1361
+ .fc\:peer-data-\[size\=lg\]\/menu-button\:top-2\.5 {
1362
+ &:is(:where(.fc\:peer\/menu-button)[data-size="lg"] ~ *) {
1363
+ top: calc(var(--fc-spacing) * 2.5);
1364
+ }
1365
+ }
1366
+ .fc\:peer-data-\[size\=sm\]\/menu-button\:top-1 {
1367
+ &:is(:where(.fc\:peer\/menu-button)[data-size="sm"] ~ *) {
1368
+ top: calc(var(--fc-spacing) * 1);
1369
+ }
1370
+ }
1371
+ .fc\:selection\:bg-primary {
918
1372
  & *::selection {
919
1373
  background-color: var(--primary);
920
1374
  }
@@ -922,7 +1376,7 @@
922
1376
  background-color: var(--primary);
923
1377
  }
924
1378
  }
925
- .selection\:text-primary-foreground {
1379
+ .fc\:selection\:text-primary-foreground {
926
1380
  & *::selection {
927
1381
  color: var(--primary-foreground);
928
1382
  }
@@ -930,62 +1384,105 @@
930
1384
  color: var(--primary-foreground);
931
1385
  }
932
1386
  }
933
- .file\:inline-flex {
1387
+ .fc\:file\:inline-flex {
934
1388
  &::file-selector-button {
935
1389
  display: inline-flex;
936
1390
  }
937
1391
  }
938
- .file\:h-7 {
1392
+ .fc\:file\:h-7 {
939
1393
  &::file-selector-button {
940
- height: calc(var(--spacing) * 7);
1394
+ height: calc(var(--fc-spacing) * 7);
941
1395
  }
942
1396
  }
943
- .file\:border-0 {
1397
+ .fc\:file\:border-0 {
944
1398
  &::file-selector-button {
945
1399
  border-style: var(--tw-border-style);
946
1400
  border-width: 0px;
947
1401
  }
948
1402
  }
949
- .file\:bg-transparent {
1403
+ .fc\:file\:bg-transparent {
950
1404
  &::file-selector-button {
951
1405
  background-color: transparent;
952
1406
  }
953
1407
  }
954
- .file\:text-sm {
1408
+ .fc\:file\:text-sm {
955
1409
  &::file-selector-button {
956
- font-size: var(--text-sm);
957
- line-height: var(--tw-leading, var(--text-sm--line-height));
1410
+ font-size: var(--fc-text-sm);
1411
+ line-height: var(--tw-leading, var(--fc-text-sm--line-height));
958
1412
  }
959
1413
  }
960
- .file\:font-medium {
1414
+ .fc\:file\:font-medium {
961
1415
  &::file-selector-button {
962
- --tw-font-weight: var(--font-weight-medium);
963
- font-weight: var(--font-weight-medium);
1416
+ --tw-font-weight: var(--fc-font-weight-medium);
1417
+ font-weight: var(--fc-font-weight-medium);
964
1418
  }
965
1419
  }
966
- .file\:text-foreground {
1420
+ .fc\:file\:text-foreground {
967
1421
  &::file-selector-button {
968
1422
  color: var(--foreground);
969
1423
  }
970
1424
  }
971
- .placeholder\:text-muted-foreground {
1425
+ .fc\:placeholder\:text-placeholder {
972
1426
  &::placeholder {
973
- color: var(--muted-foreground);
1427
+ color: var(--placeholder);
974
1428
  }
975
1429
  }
976
- .placeholder\:text-placeholder {
977
- &::placeholder {
978
- color: var(--placeholder);
1430
+ .fc\:after\:absolute {
1431
+ &::after {
1432
+ content: var(--tw-content);
1433
+ position: absolute;
1434
+ }
1435
+ }
1436
+ .fc\:after\:-inset-2 {
1437
+ &::after {
1438
+ content: var(--tw-content);
1439
+ inset: calc(var(--fc-spacing) * -2);
1440
+ }
1441
+ }
1442
+ .fc\:after\:inset-y-0 {
1443
+ &::after {
1444
+ content: var(--tw-content);
1445
+ inset-block: calc(var(--fc-spacing) * 0);
1446
+ }
1447
+ }
1448
+ .fc\:after\:left-1\/2 {
1449
+ &::after {
1450
+ content: var(--tw-content);
1451
+ left: calc(1/2 * 100%);
1452
+ }
1453
+ }
1454
+ .fc\:after\:w-\[2px\] {
1455
+ &::after {
1456
+ content: var(--tw-content);
1457
+ width: 2px;
1458
+ }
1459
+ }
1460
+ .fc\:group-data-\[collapsible\=offcanvas\]\:after\:left-full {
1461
+ &:is(:where(.fc\:group)[data-collapsible="offcanvas"] *) {
1462
+ &::after {
1463
+ content: var(--tw-content);
1464
+ left: 100%;
1465
+ }
1466
+ }
1467
+ }
1468
+ .fc\:hover\:bg-accent\/50 {
1469
+ &:hover {
1470
+ @media (hover: hover) {
1471
+ background-color: var(--accent);
1472
+ @supports (color: color-mix(in lab, red, red)) {
1473
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
1474
+ }
1475
+ }
979
1476
  }
980
1477
  }
981
- .hover\:bg-dark {
1478
+ .fc\:hover\:bg-dark {
982
1479
  &:hover {
983
1480
  @media (hover: hover) {
984
1481
  background-color: var(--dark);
985
1482
  }
986
1483
  }
987
1484
  }
988
- .hover\:bg-dark\/10 {
1485
+ .fc\:hover\:bg-dark\/10 {
989
1486
  &:hover {
990
1487
  @media (hover: hover) {
991
1488
  background-color: var(--dark);
@@ -995,7 +1492,7 @@
995
1492
  }
996
1493
  }
997
1494
  }
998
- .hover\:bg-dark\/90 {
1495
+ .fc\:hover\:bg-dark\/90 {
999
1496
  &:hover {
1000
1497
  @media (hover: hover) {
1001
1498
  background-color: var(--dark);
@@ -1005,14 +1502,14 @@
1005
1502
  }
1006
1503
  }
1007
1504
  }
1008
- .hover\:bg-destructive {
1505
+ .fc\:hover\:bg-destructive {
1009
1506
  &:hover {
1010
1507
  @media (hover: hover) {
1011
1508
  background-color: var(--destructive);
1012
1509
  }
1013
1510
  }
1014
1511
  }
1015
- .hover\:bg-destructive\/10 {
1512
+ .fc\:hover\:bg-destructive\/10 {
1016
1513
  &:hover {
1017
1514
  @media (hover: hover) {
1018
1515
  background-color: var(--destructive);
@@ -1022,7 +1519,7 @@
1022
1519
  }
1023
1520
  }
1024
1521
  }
1025
- .hover\:bg-destructive\/90 {
1522
+ .fc\:hover\:bg-destructive\/90 {
1026
1523
  &:hover {
1027
1524
  @media (hover: hover) {
1028
1525
  background-color: var(--destructive);
@@ -1032,14 +1529,14 @@
1032
1529
  }
1033
1530
  }
1034
1531
  }
1035
- .hover\:bg-info {
1532
+ .fc\:hover\:bg-info {
1036
1533
  &:hover {
1037
1534
  @media (hover: hover) {
1038
1535
  background-color: var(--info);
1039
1536
  }
1040
1537
  }
1041
1538
  }
1042
- .hover\:bg-info\/10 {
1539
+ .fc\:hover\:bg-info\/10 {
1043
1540
  &:hover {
1044
1541
  @media (hover: hover) {
1045
1542
  background-color: var(--info);
@@ -1049,7 +1546,7 @@
1049
1546
  }
1050
1547
  }
1051
1548
  }
1052
- .hover\:bg-info\/90 {
1549
+ .fc\:hover\:bg-info\/90 {
1053
1550
  &:hover {
1054
1551
  @media (hover: hover) {
1055
1552
  background-color: var(--info);
@@ -1059,21 +1556,14 @@
1059
1556
  }
1060
1557
  }
1061
1558
  }
1062
- .hover\:bg-muted {
1063
- &:hover {
1064
- @media (hover: hover) {
1065
- background-color: var(--muted);
1066
- }
1067
- }
1068
- }
1069
- .hover\:bg-primary {
1559
+ .fc\:hover\:bg-primary {
1070
1560
  &:hover {
1071
1561
  @media (hover: hover) {
1072
1562
  background-color: var(--primary);
1073
1563
  }
1074
1564
  }
1075
1565
  }
1076
- .hover\:bg-primary\/10 {
1566
+ .fc\:hover\:bg-primary\/10 {
1077
1567
  &:hover {
1078
1568
  @media (hover: hover) {
1079
1569
  background-color: var(--primary);
@@ -1083,7 +1573,7 @@
1083
1573
  }
1084
1574
  }
1085
1575
  }
1086
- .hover\:bg-primary\/90 {
1576
+ .fc\:hover\:bg-primary\/90 {
1087
1577
  &:hover {
1088
1578
  @media (hover: hover) {
1089
1579
  background-color: var(--primary);
@@ -1093,14 +1583,21 @@
1093
1583
  }
1094
1584
  }
1095
1585
  }
1096
- .hover\:bg-success {
1586
+ .fc\:hover\:bg-sidebar-accent {
1587
+ &:hover {
1588
+ @media (hover: hover) {
1589
+ background-color: var(--sidebar-accent);
1590
+ }
1591
+ }
1592
+ }
1593
+ .fc\:hover\:bg-success {
1097
1594
  &:hover {
1098
1595
  @media (hover: hover) {
1099
1596
  background-color: var(--success);
1100
1597
  }
1101
1598
  }
1102
1599
  }
1103
- .hover\:bg-success\/10 {
1600
+ .fc\:hover\:bg-success\/10 {
1104
1601
  &:hover {
1105
1602
  @media (hover: hover) {
1106
1603
  background-color: var(--success);
@@ -1110,7 +1607,7 @@
1110
1607
  }
1111
1608
  }
1112
1609
  }
1113
- .hover\:bg-success\/90 {
1610
+ .fc\:hover\:bg-success\/90 {
1114
1611
  &:hover {
1115
1612
  @media (hover: hover) {
1116
1613
  background-color: var(--success);
@@ -1120,14 +1617,14 @@
1120
1617
  }
1121
1618
  }
1122
1619
  }
1123
- .hover\:bg-warning {
1620
+ .fc\:hover\:bg-warning {
1124
1621
  &:hover {
1125
1622
  @media (hover: hover) {
1126
1623
  background-color: var(--warning);
1127
1624
  }
1128
1625
  }
1129
1626
  }
1130
- .hover\:bg-warning\/10 {
1627
+ .fc\:hover\:bg-warning\/10 {
1131
1628
  &:hover {
1132
1629
  @media (hover: hover) {
1133
1630
  background-color: var(--warning);
@@ -1137,7 +1634,7 @@
1137
1634
  }
1138
1635
  }
1139
1636
  }
1140
- .hover\:bg-warning\/90 {
1637
+ .fc\:hover\:bg-warning\/90 {
1141
1638
  &:hover {
1142
1639
  @media (hover: hover) {
1143
1640
  background-color: var(--warning);
@@ -1147,90 +1644,124 @@
1147
1644
  }
1148
1645
  }
1149
1646
  }
1150
- .hover\:text-dark-foreground {
1647
+ .fc\:hover\:text-dark-foreground {
1151
1648
  &:hover {
1152
1649
  @media (hover: hover) {
1153
1650
  color: var(--dark-foreground);
1154
1651
  }
1155
1652
  }
1156
1653
  }
1157
- .hover\:text-destructive-foreground {
1654
+ .fc\:hover\:text-destructive-foreground {
1158
1655
  &:hover {
1159
1656
  @media (hover: hover) {
1160
1657
  color: var(--destructive-foreground);
1161
1658
  }
1162
1659
  }
1163
1660
  }
1164
- .hover\:text-info-foreground {
1661
+ .fc\:hover\:text-info-foreground {
1165
1662
  &:hover {
1166
1663
  @media (hover: hover) {
1167
1664
  color: var(--info-foreground);
1168
1665
  }
1169
1666
  }
1170
1667
  }
1171
- .hover\:text-primary-foreground {
1668
+ .fc\:hover\:text-primary-foreground {
1172
1669
  &:hover {
1173
1670
  @media (hover: hover) {
1174
1671
  color: var(--primary-foreground);
1175
1672
  }
1176
1673
  }
1177
1674
  }
1178
- .hover\:text-success-foreground {
1675
+ .fc\:hover\:text-sidebar-accent-foreground {
1676
+ &:hover {
1677
+ @media (hover: hover) {
1678
+ color: var(--sidebar-accent-foreground);
1679
+ }
1680
+ }
1681
+ }
1682
+ .fc\:hover\:text-success-foreground {
1179
1683
  &:hover {
1180
1684
  @media (hover: hover) {
1181
1685
  color: var(--success-foreground);
1182
1686
  }
1183
1687
  }
1184
1688
  }
1185
- .hover\:text-warning-foreground {
1689
+ .fc\:hover\:text-warning-foreground {
1186
1690
  &:hover {
1187
1691
  @media (hover: hover) {
1188
1692
  color: var(--warning-foreground);
1189
1693
  }
1190
1694
  }
1191
1695
  }
1192
- .hover\:underline {
1696
+ .fc\:hover\:underline {
1193
1697
  &:hover {
1194
1698
  @media (hover: hover) {
1195
1699
  text-decoration-line: underline;
1196
1700
  }
1197
1701
  }
1198
1702
  }
1199
- .hover\:opacity-100 {
1703
+ .fc\:hover\:opacity-100 {
1200
1704
  &:hover {
1201
1705
  @media (hover: hover) {
1202
1706
  opacity: 100%;
1203
1707
  }
1204
1708
  }
1205
1709
  }
1206
- .focus\:bg-accent {
1710
+ .fc\:hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\] {
1711
+ &:hover {
1712
+ @media (hover: hover) {
1713
+ --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-accent)));
1714
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1715
+ }
1716
+ }
1717
+ }
1718
+ .fc\:hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar {
1719
+ &:hover {
1720
+ @media (hover: hover) {
1721
+ &:is(:where(.fc\:group)[data-collapsible="offcanvas"] *) {
1722
+ background-color: var(--sidebar);
1723
+ }
1724
+ }
1725
+ }
1726
+ }
1727
+ .fc\:hover\:after\:bg-sidebar-border {
1728
+ &:hover {
1729
+ @media (hover: hover) {
1730
+ &::after {
1731
+ content: var(--tw-content);
1732
+ background-color: var(--sidebar-border);
1733
+ }
1734
+ }
1735
+ }
1736
+ }
1737
+ .fc\:focus\:bg-accent {
1207
1738
  &:focus {
1208
1739
  background-color: var(--accent);
1209
1740
  }
1210
1741
  }
1211
- .focus\:text-accent-foreground {
1742
+ .fc\:focus\:text-accent-foreground {
1212
1743
  &:focus {
1213
1744
  color: var(--accent-foreground);
1214
1745
  }
1215
1746
  }
1216
- .focus\:ring-2 {
1747
+ .fc\:focus\:ring-2 {
1217
1748
  &:focus {
1218
1749
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1219
1750
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1220
1751
  }
1221
1752
  }
1222
- .focus\:ring-ring {
1753
+ .fc\:focus\:ring-ring {
1223
1754
  &:focus {
1224
1755
  --tw-ring-color: var(--ring);
1225
1756
  }
1226
1757
  }
1227
- .focus\:ring-offset-2 {
1758
+ .fc\:focus\:ring-offset-2 {
1228
1759
  &:focus {
1229
1760
  --tw-ring-offset-width: 2px;
1230
1761
  --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1231
1762
  }
1232
1763
  }
1233
- .focus\:outline-hidden {
1764
+ .fc\:focus\:outline-hidden {
1234
1765
  &:focus {
1235
1766
  --tw-outline-style: none;
1236
1767
  outline-style: none;
@@ -1240,26 +1771,32 @@
1240
1771
  }
1241
1772
  }
1242
1773
  }
1243
- .focus-visible\:border-ring {
1774
+ .fc\:focus-visible\:border-ring {
1244
1775
  &:focus-visible {
1245
1776
  border-color: var(--ring);
1246
1777
  }
1247
1778
  }
1248
- .focus-visible\:ring-\[3px\] {
1779
+ .fc\:focus-visible\:ring-2 {
1780
+ &:focus-visible {
1781
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1782
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1783
+ }
1784
+ }
1785
+ .fc\:focus-visible\:ring-\[3px\] {
1249
1786
  &:focus-visible {
1250
1787
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1251
1788
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1252
1789
  }
1253
1790
  }
1254
- .focus-visible\:ring-black\/50 {
1791
+ .fc\:focus-visible\:ring-black\/50 {
1255
1792
  &:focus-visible {
1256
- --tw-ring-color: color-mix(in srgb, #000 50%, transparent);
1793
+ --tw-ring-color: var(--fc-color-black);
1257
1794
  @supports (color: color-mix(in lab, red, red)) {
1258
- --tw-ring-color: color-mix(in oklab, var(--color-black) 50%, transparent);
1795
+ --tw-ring-color: color-mix(in oklab, var(--fc-color-black) 50%, transparent);
1259
1796
  }
1260
1797
  }
1261
1798
  }
1262
- .focus-visible\:ring-destructive\/50 {
1799
+ .fc\:focus-visible\:ring-destructive\/50 {
1263
1800
  &:focus-visible {
1264
1801
  --tw-ring-color: var(--destructive);
1265
1802
  @supports (color: color-mix(in lab, red, red)) {
@@ -1267,7 +1804,7 @@
1267
1804
  }
1268
1805
  }
1269
1806
  }
1270
- .focus-visible\:ring-info\/50 {
1807
+ .fc\:focus-visible\:ring-info\/50 {
1271
1808
  &:focus-visible {
1272
1809
  --tw-ring-color: var(--info);
1273
1810
  @supports (color: color-mix(in lab, red, red)) {
@@ -1275,7 +1812,7 @@
1275
1812
  }
1276
1813
  }
1277
1814
  }
1278
- .focus-visible\:ring-primary\/50 {
1815
+ .fc\:focus-visible\:ring-primary\/50 {
1279
1816
  &:focus-visible {
1280
1817
  --tw-ring-color: var(--primary);
1281
1818
  @supports (color: color-mix(in lab, red, red)) {
@@ -1283,7 +1820,7 @@
1283
1820
  }
1284
1821
  }
1285
1822
  }
1286
- .focus-visible\:ring-ring\/50 {
1823
+ .fc\:focus-visible\:ring-ring\/50 {
1287
1824
  &:focus-visible {
1288
1825
  --tw-ring-color: var(--ring);
1289
1826
  @supports (color: color-mix(in lab, red, red)) {
@@ -1291,7 +1828,7 @@
1291
1828
  }
1292
1829
  }
1293
1830
  }
1294
- .focus-visible\:ring-success\/50 {
1831
+ .fc\:focus-visible\:ring-success\/50 {
1295
1832
  &:focus-visible {
1296
1833
  --tw-ring-color: var(--success);
1297
1834
  @supports (color: color-mix(in lab, red, red)) {
@@ -1299,7 +1836,7 @@
1299
1836
  }
1300
1837
  }
1301
1838
  }
1302
- .focus-visible\:ring-warning\/50 {
1839
+ .fc\:focus-visible\:ring-warning\/50 {
1303
1840
  &:focus-visible {
1304
1841
  --tw-ring-color: var(--warning);
1305
1842
  @supports (color: color-mix(in lab, red, red)) {
@@ -1307,92 +1844,151 @@
1307
1844
  }
1308
1845
  }
1309
1846
  }
1310
- .focus-visible\:outline-1 {
1847
+ .fc\:focus-visible\:outline-1 {
1311
1848
  &:focus-visible {
1312
1849
  outline-style: var(--tw-outline-style);
1313
1850
  outline-width: 1px;
1314
1851
  }
1315
1852
  }
1316
- .focus-visible\:outline-ring {
1853
+ .fc\:focus-visible\:outline-ring {
1317
1854
  &:focus-visible {
1318
1855
  outline-color: var(--ring);
1319
1856
  }
1320
1857
  }
1321
- .disabled\:pointer-events-none {
1858
+ .fc\:active\:bg-sidebar-accent {
1859
+ &:active {
1860
+ background-color: var(--sidebar-accent);
1861
+ }
1862
+ }
1863
+ .fc\:active\:text-sidebar-accent-foreground {
1864
+ &:active {
1865
+ color: var(--sidebar-accent-foreground);
1866
+ }
1867
+ }
1868
+ .fc\:disabled\:pointer-events-none {
1322
1869
  &:disabled {
1323
1870
  pointer-events: none;
1324
1871
  }
1325
1872
  }
1326
- .disabled\:cursor-not-allowed {
1873
+ .fc\:disabled\:cursor-not-allowed {
1327
1874
  &:disabled {
1328
1875
  cursor: not-allowed;
1329
1876
  }
1330
1877
  }
1331
- .disabled\:opacity-50 {
1878
+ .fc\:disabled\:opacity-50 {
1332
1879
  &:disabled {
1333
1880
  opacity: 50%;
1334
1881
  }
1335
1882
  }
1336
- .has-aria-invalid\:border-destructive\! {
1337
- &:has(*[aria-invalid="true"]) {
1338
- border-color: var(--destructive) !important;
1883
+ .fc\:in-data-\[side\=left\]\:cursor-w-resize {
1884
+ :where(*[data-side="left"]) & {
1885
+ cursor: w-resize;
1339
1886
  }
1340
1887
  }
1341
- .has-aria-invalid\:ring-destructive\/20\! {
1342
- &:has(*[aria-invalid="true"]) {
1343
- --tw-ring-color: var(--destructive) !important;
1344
- @supports (color: color-mix(in lab, red, red)) {
1345
- --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent) !important;
1346
- }
1888
+ .fc\:in-data-\[side\=right\]\:cursor-e-resize {
1889
+ :where(*[data-side="right"]) & {
1890
+ cursor: e-resize;
1347
1891
  }
1348
1892
  }
1349
- .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
1350
- &:has(*[data-slot="card-action"]) {
1351
- grid-template-columns: 1fr auto;
1893
+ .fc\:has-focus\:border-ring {
1894
+ &:has(*:focus) {
1895
+ border-color: var(--ring);
1352
1896
  }
1353
1897
  }
1354
- .has-\[\:focus\]\:border-ring {
1898
+ .fc\:has-focus\:ring-\[3px\] {
1899
+ &:has(*:focus) {
1900
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1901
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1902
+ }
1903
+ }
1904
+ .fc\:has-focus\:ring-ring\/50 {
1905
+ &:has(*:focus) {
1906
+ --tw-ring-color: var(--ring);
1907
+ @supports (color: color-mix(in lab, red, red)) {
1908
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1909
+ }
1910
+ }
1911
+ }
1912
+ .fc\:has-aria-invalid\:border-destructive\! {
1913
+ &:has(*[aria-invalid="true"]) {
1914
+ border-color: var(--destructive) !important;
1915
+ }
1916
+ }
1917
+ .fc\:has-aria-invalid\:ring-destructive\/20\! {
1918
+ &:has(*[aria-invalid="true"]) {
1919
+ --tw-ring-color: var(--destructive) !important;
1920
+ @supports (color: color-mix(in lab, red, red)) {
1921
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent) !important;
1922
+ }
1923
+ }
1924
+ }
1925
+ .fc\:has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
1926
+ &:has(*[data-slot="card-action"]) {
1927
+ grid-template-columns: 1fr auto;
1928
+ }
1929
+ }
1930
+ .fc\:has-data-\[variant\=inset\]\:bg-sidebar {
1931
+ &:has(*[data-variant="inset"]) {
1932
+ background-color: var(--sidebar);
1933
+ }
1934
+ }
1935
+ .fc\:has-\[\:focus\]\:border-ring {
1355
1936
  &:has(*:is(:focus)) {
1356
1937
  border-color: var(--ring);
1357
1938
  }
1358
1939
  }
1359
- .has-\[\:focus\]\:ring-\[3px\] {
1940
+ .fc\:has-\[\:focus\]\:ring-\[3px\] {
1360
1941
  &:has(*:is(:focus)) {
1361
1942
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1362
1943
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1363
1944
  }
1364
1945
  }
1365
- .has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\] {
1946
+ .fc\:has-\[\>svg\]\:grid-cols-\[calc\(var\(--fc-spacing\)\*4\)_1fr\] {
1366
1947
  &:has(>svg) {
1367
- grid-template-columns: calc(var(--spacing) * 4) 1fr;
1948
+ grid-template-columns: calc(var(--fc-spacing) * 4) 1fr;
1368
1949
  }
1369
1950
  }
1370
- .has-\[\>svg\]\:gap-x-3 {
1951
+ .fc\:has-\[\>svg\]\:gap-x-3 {
1371
1952
  &:has(>svg) {
1372
- column-gap: calc(var(--spacing) * 3);
1953
+ column-gap: calc(var(--fc-spacing) * 3);
1373
1954
  }
1374
1955
  }
1375
- .has-\[\>svg\]\:px-2\.5 {
1956
+ .fc\:has-\[\>svg\]\:px-2\.5 {
1376
1957
  &:has(>svg) {
1377
- padding-inline: calc(var(--spacing) * 2.5);
1958
+ padding-inline: calc(var(--fc-spacing) * 2.5);
1378
1959
  }
1379
1960
  }
1380
- .has-\[\>svg\]\:px-3 {
1961
+ .fc\:has-\[\>svg\]\:px-3 {
1381
1962
  &:has(>svg) {
1382
- padding-inline: calc(var(--spacing) * 3);
1963
+ padding-inline: calc(var(--fc-spacing) * 3);
1383
1964
  }
1384
1965
  }
1385
- .has-\[\>svg\]\:px-4 {
1966
+ .fc\:has-\[\>svg\]\:px-4 {
1386
1967
  &:has(>svg) {
1387
- padding-inline: calc(var(--spacing) * 4);
1968
+ padding-inline: calc(var(--fc-spacing) * 4);
1388
1969
  }
1389
1970
  }
1390
- .aria-invalid\:border-destructive {
1971
+ .fc\:aria-disabled\:pointer-events-none {
1972
+ &[aria-disabled="true"] {
1973
+ pointer-events: none;
1974
+ }
1975
+ }
1976
+ .fc\:aria-disabled\:opacity-50 {
1977
+ &[aria-disabled="true"] {
1978
+ opacity: 50%;
1979
+ }
1980
+ }
1981
+ .fc\:aria-invalid\:border-destructive {
1391
1982
  &[aria-invalid="true"] {
1392
1983
  border-color: var(--destructive);
1393
1984
  }
1394
1985
  }
1395
- .aria-invalid\:ring-destructive\/20 {
1986
+ .fc\:aria-invalid\:border-destructive\! {
1987
+ &[aria-invalid="true"] {
1988
+ border-color: var(--destructive) !important;
1989
+ }
1990
+ }
1991
+ .fc\:aria-invalid\:ring-destructive\/20 {
1396
1992
  &[aria-invalid="true"] {
1397
1993
  --tw-ring-color: var(--destructive);
1398
1994
  @supports (color: color-mix(in lab, red, red)) {
@@ -1400,100 +1996,258 @@
1400
1996
  }
1401
1997
  }
1402
1998
  }
1403
- .data-\[disabled\]\:pointer-events-none {
1999
+ .fc\:aria-selected\:text-muted {
2000
+ &[aria-selected="true"] {
2001
+ color: var(--muted);
2002
+ }
2003
+ }
2004
+ .fc\:data-\[active\=true\]\:bg-sidebar-accent {
2005
+ &[data-active="true"] {
2006
+ background-color: var(--sidebar-accent);
2007
+ }
2008
+ }
2009
+ .fc\:data-\[active\=true\]\:font-medium {
2010
+ &[data-active="true"] {
2011
+ --tw-font-weight: var(--fc-font-weight-medium);
2012
+ font-weight: var(--fc-font-weight-medium);
2013
+ }
2014
+ }
2015
+ .fc\:data-\[active\=true\]\:text-sidebar-accent-foreground {
2016
+ &[data-active="true"] {
2017
+ color: var(--sidebar-accent-foreground);
2018
+ }
2019
+ }
2020
+ .fc\:data-\[disabled\]\:pointer-events-none {
1404
2021
  &[data-disabled] {
1405
2022
  pointer-events: none;
1406
2023
  }
1407
2024
  }
1408
- .data-\[disabled\]\:opacity-50 {
2025
+ .fc\:data-\[disabled\]\:opacity-50 {
1409
2026
  &[data-disabled] {
1410
2027
  opacity: 50%;
1411
2028
  }
1412
2029
  }
1413
- .data-\[inset\]\:pl-8 {
2030
+ .fc\:data-\[inset\]\:pl-8 {
1414
2031
  &[data-inset] {
1415
- padding-left: calc(var(--spacing) * 8);
2032
+ padding-left: calc(var(--fc-spacing) * 8);
1416
2033
  }
1417
2034
  }
1418
- .data-\[orientation\=horizontal\]\:h-px {
1419
- &[data-orientation="horizontal"] {
1420
- height: 1px;
2035
+ .fc\:data-\[selected-single\=true\]\:bg-primary\! {
2036
+ &[data-selected-single="true"] {
2037
+ background-color: var(--primary) !important;
1421
2038
  }
1422
2039
  }
1423
- .data-\[orientation\=horizontal\]\:w-full {
1424
- &[data-orientation="horizontal"] {
1425
- width: 100%;
2040
+ .fc\:data-\[selected-single\=true\]\:text-primary-foreground\! {
2041
+ &[data-selected-single="true"] {
2042
+ color: var(--primary-foreground) !important;
1426
2043
  }
1427
2044
  }
1428
- .data-\[orientation\=vertical\]\:h-full {
1429
- &[data-orientation="vertical"] {
1430
- height: 100%;
2045
+ .fc\:data-\[selected\=true\]\:rounded-none {
2046
+ &[data-selected="true"] {
2047
+ border-radius: 0;
1431
2048
  }
1432
2049
  }
1433
- .data-\[orientation\=vertical\]\:w-px {
1434
- &[data-orientation="vertical"] {
1435
- width: 1px;
2050
+ .fc\:data-\[side\=bottom\]\:slide-in-from-top-2 {
2051
+ &[data-side="bottom"] {
2052
+ --tw-enter-translate-y: calc(2*var(--spacing)*-1);
1436
2053
  }
1437
2054
  }
1438
- .\*\:data-\[slot\=alert-description\]\:text-info-light-foreground {
2055
+ .fc\:data-\[side\=left\]\:slide-in-from-right-2 {
2056
+ &[data-side="left"] {
2057
+ --tw-enter-translate-x: calc(2*var(--spacing));
2058
+ }
2059
+ }
2060
+ .fc\:data-\[side\=right\]\:slide-in-from-left-2 {
2061
+ &[data-side="right"] {
2062
+ --tw-enter-translate-x: calc(2*var(--spacing)*-1);
2063
+ }
2064
+ }
2065
+ .fc\:data-\[side\=top\]\:slide-in-from-bottom-2 {
2066
+ &[data-side="top"] {
2067
+ --tw-enter-translate-y: calc(2*var(--spacing));
2068
+ }
2069
+ }
2070
+ .fc\:\*\:data-\[slot\=alert-description\]\:text-info-light-foreground {
1439
2071
  :is(& > *) {
1440
2072
  &[data-slot="alert-description"] {
1441
2073
  color: var(--info-light-foreground);
1442
2074
  }
1443
2075
  }
1444
2076
  }
1445
- .data-\[state\=active\]\:bg-primary {
2077
+ .fc\:data-\[state\=active\]\:bg-primary {
1446
2078
  &[data-state="active"] {
1447
2079
  background-color: var(--primary);
1448
2080
  }
1449
2081
  }
1450
- .data-\[state\=active\]\:text-primary-foreground {
2082
+ .fc\:data-\[state\=active\]\:text-primary-foreground {
1451
2083
  &[data-state="active"] {
1452
2084
  color: var(--primary-foreground);
1453
2085
  }
1454
2086
  }
1455
- .data-\[state\=active\]\:shadow-sm {
2087
+ .fc\:data-\[state\=active\]\:shadow-sm {
1456
2088
  &[data-state="active"] {
1457
2089
  --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));
1458
2090
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1459
2091
  }
1460
2092
  }
1461
- .data-\[state\=checked\]\:border-primary {
2093
+ .fc\:data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\] {
2094
+ &[data-state="checked"] {
2095
+ --tw-translate-x: calc(100% - 2px);
2096
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2097
+ }
2098
+ }
2099
+ .fc\:data-\[state\=checked\]\:border-primary {
1462
2100
  &[data-state="checked"] {
1463
2101
  border-color: var(--primary);
1464
2102
  }
1465
2103
  }
1466
- .data-\[state\=checked\]\:bg-primary {
2104
+ .fc\:data-\[state\=checked\]\:bg-primary {
1467
2105
  &[data-state="checked"] {
1468
2106
  background-color: var(--primary);
1469
2107
  }
1470
2108
  }
1471
- .data-\[state\=checked\]\:text-primary-foreground {
2109
+ .fc\:data-\[state\=checked\]\:text-primary-foreground {
1472
2110
  &[data-state="checked"] {
1473
2111
  color: var(--primary-foreground);
1474
2112
  }
1475
2113
  }
1476
- .data-\[state\=open\]\:bg-accent {
2114
+ .fc\:data-\[state\=closed\]\:animate-out {
2115
+ &[data-state="closed"] {
2116
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
2117
+ }
2118
+ }
2119
+ .fc\:data-\[state\=closed\]\:duration-300 {
2120
+ &[data-state="closed"] {
2121
+ --tw-duration: 300ms;
2122
+ transition-duration: 300ms;
2123
+ }
2124
+ }
2125
+ .fc\:data-\[state\=closed\]\:fade-out-0 {
2126
+ &[data-state="closed"] {
2127
+ --tw-exit-opacity: calc(0/100);
2128
+ --tw-exit-opacity: 0;
2129
+ }
2130
+ }
2131
+ .fc\:data-\[state\=closed\]\:zoom-out-95 {
2132
+ &[data-state="closed"] {
2133
+ --tw-exit-scale: calc(95*1%);
2134
+ --tw-exit-scale: .95;
2135
+ }
2136
+ }
2137
+ .fc\:data-\[state\=closed\]\:slide-out-to-left {
2138
+ &[data-state="closed"] {
2139
+ --tw-exit-translate-x: -100%;
2140
+ }
2141
+ }
2142
+ .fc\:data-\[state\=closed\]\:slide-out-to-right {
2143
+ &[data-state="closed"] {
2144
+ --tw-exit-translate-x: 100%;
2145
+ }
2146
+ }
2147
+ .fc\:data-\[state\=open\]\:animate-in {
2148
+ &[data-state="open"] {
2149
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
2150
+ }
2151
+ }
2152
+ .fc\:data-\[state\=open\]\:border-ring {
2153
+ &[data-state="open"] {
2154
+ border-color: var(--ring);
2155
+ }
2156
+ }
2157
+ .fc\:data-\[state\=open\]\:bg-accent {
1477
2158
  &[data-state="open"] {
1478
2159
  background-color: var(--accent);
1479
2160
  }
1480
2161
  }
1481
- .data-\[state\=open\]\:text-accent-foreground {
2162
+ .fc\:data-\[state\=open\]\:text-accent-foreground {
1482
2163
  &[data-state="open"] {
1483
2164
  color: var(--accent-foreground);
1484
2165
  }
1485
2166
  }
1486
- .data-\[state\=open\]\:text-muted-foreground {
2167
+ .fc\:data-\[state\=open\]\:text-muted {
2168
+ &[data-state="open"] {
2169
+ color: var(--muted);
2170
+ }
2171
+ }
2172
+ .fc\:data-\[state\=open\]\:opacity-100 {
2173
+ &[data-state="open"] {
2174
+ opacity: 100%;
2175
+ }
2176
+ }
2177
+ .fc\:data-\[state\=open\]\:ring-\[3px\] {
1487
2178
  &[data-state="open"] {
1488
- color: var(--muted-foreground);
2179
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2180
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1489
2181
  }
1490
2182
  }
1491
- .data-\[variant\=destructive\]\:text-destructive {
2183
+ .fc\:data-\[state\=open\]\:duration-500 {
2184
+ &[data-state="open"] {
2185
+ --tw-duration: 500ms;
2186
+ transition-duration: 500ms;
2187
+ }
2188
+ }
2189
+ .fc\:data-\[state\=open\]\:fade-in-0 {
2190
+ &[data-state="open"] {
2191
+ --tw-enter-opacity: calc(0/100);
2192
+ --tw-enter-opacity: 0;
2193
+ }
2194
+ }
2195
+ .fc\:data-\[state\=open\]\:zoom-in-95 {
2196
+ &[data-state="open"] {
2197
+ --tw-enter-scale: calc(95*1%);
2198
+ --tw-enter-scale: .95;
2199
+ }
2200
+ }
2201
+ .fc\:data-\[state\=open\]\:slide-in-from-left {
2202
+ &[data-state="open"] {
2203
+ --tw-enter-translate-x: -100%;
2204
+ }
2205
+ }
2206
+ .fc\:data-\[state\=open\]\:slide-in-from-right {
2207
+ &[data-state="open"] {
2208
+ --tw-enter-translate-x: 100%;
2209
+ }
2210
+ }
2211
+ .fc\:data-\[state\=open\]\:hover\:bg-sidebar-accent {
2212
+ &[data-state="open"] {
2213
+ &:hover {
2214
+ @media (hover: hover) {
2215
+ background-color: var(--sidebar-accent);
2216
+ }
2217
+ }
2218
+ }
2219
+ }
2220
+ .fc\:data-\[state\=open\]\:hover\:text-sidebar-accent-foreground {
2221
+ &[data-state="open"] {
2222
+ &:hover {
2223
+ @media (hover: hover) {
2224
+ color: var(--sidebar-accent-foreground);
2225
+ }
2226
+ }
2227
+ }
2228
+ }
2229
+ .fc\:data-\[state\=selected\]\:bg-accent {
2230
+ &[data-state="selected"] {
2231
+ background-color: var(--accent);
2232
+ }
2233
+ }
2234
+ .fc\:data-\[state\=unchecked\]\:translate-x-0 {
2235
+ &[data-state="unchecked"] {
2236
+ --tw-translate-x: calc(var(--fc-spacing) * 0);
2237
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2238
+ }
2239
+ }
2240
+ .fc\:data-\[state\=unchecked\]\:bg-input-border {
2241
+ &[data-state="unchecked"] {
2242
+ background-color: var(--input-border);
2243
+ }
2244
+ }
2245
+ .fc\:data-\[variant\=destructive\]\:text-destructive {
1492
2246
  &[data-variant="destructive"] {
1493
2247
  color: var(--destructive);
1494
2248
  }
1495
2249
  }
1496
- .data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
2250
+ .fc\:data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
1497
2251
  &[data-variant="destructive"] {
1498
2252
  &:focus {
1499
2253
  background-color: var(--destructive);
@@ -1503,74 +2257,157 @@
1503
2257
  }
1504
2258
  }
1505
2259
  }
1506
- .data-\[variant\=destructive\]\:focus\:text-destructive {
2260
+ .fc\:data-\[variant\=destructive\]\:focus\:text-destructive {
1507
2261
  &[data-variant="destructive"] {
1508
2262
  &:focus {
1509
2263
  color: var(--destructive);
1510
2264
  }
1511
2265
  }
1512
2266
  }
1513
- .sm\:block {
2267
+ .fc\:sm\:block {
1514
2268
  @media (width >= 40rem) {
1515
2269
  display: block;
1516
2270
  }
1517
2271
  }
1518
- .sm\:max-w-lg {
2272
+ .fc\:sm\:flex {
1519
2273
  @media (width >= 40rem) {
1520
- max-width: var(--container-lg);
2274
+ display: flex;
1521
2275
  }
1522
2276
  }
1523
- .sm\:flex-row {
2277
+ .fc\:sm\:max-w-lg {
2278
+ @media (width >= 40rem) {
2279
+ max-width: var(--fc-container-lg);
2280
+ }
2281
+ }
2282
+ .fc\:sm\:flex-row {
1524
2283
  @media (width >= 40rem) {
1525
2284
  flex-direction: row;
1526
2285
  }
1527
2286
  }
1528
- .sm\:justify-end {
2287
+ .fc\:sm\:justify-end {
1529
2288
  @media (width >= 40rem) {
1530
2289
  justify-content: flex-end;
1531
2290
  }
1532
2291
  }
1533
- .sm\:pr-2\.5 {
2292
+ .fc\:sm\:pr-2\.5 {
1534
2293
  @media (width >= 40rem) {
1535
- padding-right: calc(var(--spacing) * 2.5);
2294
+ padding-right: calc(var(--fc-spacing) * 2.5);
1536
2295
  }
1537
2296
  }
1538
- .sm\:pl-2\.5 {
2297
+ .fc\:sm\:pl-2\.5 {
1539
2298
  @media (width >= 40rem) {
1540
- padding-left: calc(var(--spacing) * 2.5);
2299
+ padding-left: calc(var(--fc-spacing) * 2.5);
1541
2300
  }
1542
2301
  }
1543
- .sm\:text-left {
2302
+ .fc\:sm\:text-left {
1544
2303
  @media (width >= 40rem) {
1545
2304
  text-align: left;
1546
2305
  }
1547
2306
  }
1548
- .md\:text-sm {
2307
+ .fc\:md\:block {
1549
2308
  @media (width >= 48rem) {
1550
- font-size: var(--text-sm);
1551
- line-height: var(--tw-leading, var(--text-sm--line-height));
2309
+ display: block;
1552
2310
  }
1553
2311
  }
1554
- .md\:text-sm\! {
2312
+ .fc\:md\:flex {
1555
2313
  @media (width >= 48rem) {
1556
- font-size: var(--text-sm) !important;
1557
- line-height: var(--tw-leading, var(--text-sm--line-height)) !important;
2314
+ display: flex;
1558
2315
  }
1559
2316
  }
1560
- .dark\:bg-input\/30 {
1561
- &:is(.dark *) {
1562
- background-color: var(--input);
1563
- @supports (color: color-mix(in lab, red, red)) {
1564
- background-color: color-mix(in oklab, var(--input) 30%, transparent);
2317
+ .fc\:md\:max-w-1\/2 {
2318
+ @media (width >= 48rem) {
2319
+ max-width: calc(1/2 * 100%);
2320
+ }
2321
+ }
2322
+ .fc\:md\:max-w-1\/3 {
2323
+ @media (width >= 48rem) {
2324
+ max-width: calc(1/3 * 100%);
2325
+ }
2326
+ }
2327
+ .fc\:md\:max-w-2\/3 {
2328
+ @media (width >= 48rem) {
2329
+ max-width: calc(2/3 * 100%);
2330
+ }
2331
+ }
2332
+ .fc\:md\:flex-row {
2333
+ @media (width >= 48rem) {
2334
+ flex-direction: row;
2335
+ }
2336
+ }
2337
+ .fc\:md\:text-sm {
2338
+ @media (width >= 48rem) {
2339
+ font-size: var(--fc-text-sm);
2340
+ line-height: var(--tw-leading, var(--fc-text-sm--line-height));
2341
+ }
2342
+ }
2343
+ .fc\:md\:text-sm\! {
2344
+ @media (width >= 48rem) {
2345
+ font-size: var(--fc-text-sm) !important;
2346
+ line-height: var(--tw-leading, var(--fc-text-sm--line-height)) !important;
2347
+ }
2348
+ }
2349
+ .fc\:md\:opacity-0 {
2350
+ @media (width >= 48rem) {
2351
+ opacity: 0%;
2352
+ }
2353
+ }
2354
+ .fc\:md\:peer-data-\[variant\=inset\]\:m-2 {
2355
+ @media (width >= 48rem) {
2356
+ &:is(:where(.fc\:peer)[data-variant="inset"] ~ *) {
2357
+ margin: calc(var(--fc-spacing) * 2);
2358
+ }
2359
+ }
2360
+ }
2361
+ .fc\:md\:peer-data-\[variant\=inset\]\:ml-0 {
2362
+ @media (width >= 48rem) {
2363
+ &:is(:where(.fc\:peer)[data-variant="inset"] ~ *) {
2364
+ margin-left: calc(var(--fc-spacing) * 0);
2365
+ }
2366
+ }
2367
+ }
2368
+ .fc\:md\:peer-data-\[variant\=inset\]\:rounded-xl {
2369
+ @media (width >= 48rem) {
2370
+ &:is(:where(.fc\:peer)[data-variant="inset"] ~ *) {
2371
+ border-radius: var(--fc-radius-xl);
2372
+ }
2373
+ }
2374
+ }
2375
+ .fc\:md\:peer-data-\[variant\=inset\]\:shadow-sm {
2376
+ @media (width >= 48rem) {
2377
+ &:is(:where(.fc\:peer)[data-variant="inset"] ~ *) {
2378
+ --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));
2379
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2380
+ }
2381
+ }
2382
+ }
2383
+ .fc\:md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2 {
2384
+ @media (width >= 48rem) {
2385
+ &:is(:where(.fc\:peer)[data-variant="inset"] ~ *) {
2386
+ &:is(:where(.fc\:peer)[data-state="collapsed"] ~ *) {
2387
+ margin-left: calc(var(--fc-spacing) * 2);
2388
+ }
1565
2389
  }
1566
2390
  }
1567
2391
  }
1568
- .dark\:text-dark-foreground {
2392
+ .fc\:md\:after\:hidden {
2393
+ @media (width >= 48rem) {
2394
+ &::after {
2395
+ content: var(--tw-content);
2396
+ display: none;
2397
+ }
2398
+ }
2399
+ }
2400
+ .fc\:dark\:bg-foreground {
2401
+ &:is(.dark *) {
2402
+ background-color: var(--foreground);
2403
+ }
2404
+ }
2405
+ .fc\:dark\:text-dark-foreground {
1569
2406
  &:is(.dark *) {
1570
2407
  color: var(--dark-foreground);
1571
2408
  }
1572
2409
  }
1573
- .dark\:hover\:bg-dark {
2410
+ .fc\:dark\:hover\:bg-dark {
1574
2411
  &:is(.dark *) {
1575
2412
  &:hover {
1576
2413
  @media (hover: hover) {
@@ -1579,7 +2416,17 @@
1579
2416
  }
1580
2417
  }
1581
2418
  }
1582
- .dark\:aria-invalid\:ring-destructive\/40 {
2419
+ .fc\:has-aria-invalid\:dark\:ring-destructive\/40\! {
2420
+ &:has(*[aria-invalid="true"]) {
2421
+ &:is(.dark *) {
2422
+ --tw-ring-color: var(--destructive) !important;
2423
+ @supports (color: color-mix(in lab, red, red)) {
2424
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent) !important;
2425
+ }
2426
+ }
2427
+ }
2428
+ }
2429
+ .fc\:dark\:aria-invalid\:ring-destructive\/40 {
1583
2430
  &:is(.dark *) {
1584
2431
  &[aria-invalid="true"] {
1585
2432
  --tw-ring-color: var(--destructive);
@@ -1589,21 +2436,14 @@
1589
2436
  }
1590
2437
  }
1591
2438
  }
1592
- .dark\:data-\[state\=active\]\:border-input {
2439
+ .fc\:dark\:data-\[state\=active\]\:border-input {
1593
2440
  &:is(.dark *) {
1594
2441
  &[data-state="active"] {
1595
2442
  border-color: var(--input);
1596
2443
  }
1597
2444
  }
1598
2445
  }
1599
- .dark\:data-\[state\=checked\]\:bg-primary {
1600
- &:is(.dark *) {
1601
- &[data-state="checked"] {
1602
- background-color: var(--primary);
1603
- }
1604
- }
1605
- }
1606
- .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20 {
2446
+ .fc\:dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20 {
1607
2447
  &:is(.dark *) {
1608
2448
  &[data-variant="destructive"] {
1609
2449
  &:focus {
@@ -1615,44 +2455,85 @@
1615
2455
  }
1616
2456
  }
1617
2457
  }
1618
- .\[\&_p\]\:leading-relaxed {
2458
+ .fc\:\[\&_p\]\:leading-relaxed {
1619
2459
  & p {
1620
- --tw-leading: var(--leading-relaxed);
1621
- line-height: var(--leading-relaxed);
2460
+ --tw-leading: var(--fc-leading-relaxed);
2461
+ line-height: var(--fc-leading-relaxed);
1622
2462
  }
1623
2463
  }
1624
- .\[\&_svg\]\:pointer-events-none {
2464
+ .fc\:\[\&_svg\]\:pointer-events-none {
1625
2465
  & svg {
1626
2466
  pointer-events: none;
1627
2467
  }
1628
2468
  }
1629
- .\[\&_svg\]\:shrink-0 {
2469
+ .fc\:\[\&_svg\]\:shrink-0 {
1630
2470
  & svg {
1631
2471
  flex-shrink: 0;
1632
2472
  }
1633
2473
  }
1634
- .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
2474
+ .fc\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
1635
2475
  & svg:not([class*='size-']) {
1636
- width: calc(var(--spacing) * 4);
1637
- height: calc(var(--spacing) * 4);
2476
+ width: calc(var(--fc-spacing) * 4);
2477
+ height: calc(var(--fc-spacing) * 4);
1638
2478
  }
1639
2479
  }
1640
- .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground {
2480
+ .fc\:\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted {
1641
2481
  & svg:not([class*='text-']) {
1642
- color: var(--muted-foreground);
2482
+ color: var(--muted);
2483
+ }
2484
+ }
2485
+ .fc\:\[\&_tr\]\:border-b {
2486
+ & tr {
2487
+ border-bottom-style: var(--tw-border-style);
2488
+ border-bottom-width: 1px;
2489
+ }
2490
+ }
2491
+ .fc\:\[\&_tr\:last-child\]\:border-0 {
2492
+ & tr:last-child {
2493
+ border-style: var(--tw-border-style);
2494
+ border-width: 0px;
1643
2495
  }
1644
2496
  }
1645
- .\[\.border-b\]\:pb-6 {
2497
+ .fc\:\[\&\:first-child\[data-selected\=true\]_button\]\:rounded-l-md {
2498
+ &:first-child[data-selected=true] button {
2499
+ border-top-left-radius: var(--fc-radius-md);
2500
+ border-bottom-left-radius: var(--fc-radius-md);
2501
+ }
2502
+ }
2503
+ .fc\:\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
2504
+ &:has([role=checkbox]) {
2505
+ padding-right: calc(var(--fc-spacing) * 0);
2506
+ }
2507
+ }
2508
+ .fc\:\[\.border-b\]\:pb-6 {
1646
2509
  &:is(.border-b) {
1647
- padding-bottom: calc(var(--spacing) * 6);
2510
+ padding-bottom: calc(var(--fc-spacing) * 6);
1648
2511
  }
1649
2512
  }
1650
- .\[\.border-t\]\:pt-6 {
2513
+ .fc\:\[\.border-t\]\:pt-6 {
1651
2514
  &:is(.border-t) {
1652
- padding-top: calc(var(--spacing) * 6);
2515
+ padding-top: calc(var(--fc-spacing) * 6);
2516
+ }
2517
+ }
2518
+ .fc\:rtl\:\*\*\:\[\.rdp-button\\_next\>svg\]\:rotate-180 {
2519
+ &:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
2520
+ :is(& *) {
2521
+ &:is(.rdp-button_next>svg) {
2522
+ rotate: 180deg;
2523
+ }
2524
+ }
1653
2525
  }
1654
2526
  }
1655
- .data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive {
2527
+ .fc\:rtl\:\*\*\:\[\.rdp-button\\_previous\>svg\]\:rotate-180 {
2528
+ &:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
2529
+ :is(& *) {
2530
+ &:is(.rdp-button_previous>svg) {
2531
+ rotate: 180deg;
2532
+ }
2533
+ }
2534
+ }
2535
+ }
2536
+ .fc\:data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive {
1656
2537
  &[data-variant="destructive"] {
1657
2538
  :is(& > *) {
1658
2539
  &:is(svg) {
@@ -1661,54 +2542,201 @@
1661
2542
  }
1662
2543
  }
1663
2544
  }
1664
- .\[\&\>svg\]\:pointer-events-none {
2545
+ .fc\:\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-md {
2546
+ &:last-child[data-selected=true] button {
2547
+ border-top-right-radius: var(--fc-radius-md);
2548
+ border-bottom-right-radius: var(--fc-radius-md);
2549
+ }
2550
+ }
2551
+ .fc\:\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] {
2552
+ &>[role=checkbox] {
2553
+ --tw-translate-y: 2px;
2554
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2555
+ }
2556
+ }
2557
+ .fc\:\[\&\>button\]\:hidden {
2558
+ &>button {
2559
+ display: none;
2560
+ }
2561
+ }
2562
+ .fc\:\[\&\>span\:last-child\]\:truncate {
2563
+ &>span:last-child {
2564
+ overflow: hidden;
2565
+ text-overflow: ellipsis;
2566
+ white-space: nowrap;
2567
+ }
2568
+ }
2569
+ .fc\:\[\&\>svg\]\:pointer-events-none {
1665
2570
  &>svg {
1666
2571
  pointer-events: none;
1667
2572
  }
1668
2573
  }
1669
- .\[\&\>svg\]\:size-3 {
2574
+ .fc\:\[\&\>svg\]\:size-3 {
2575
+ &>svg {
2576
+ width: calc(var(--fc-spacing) * 3);
2577
+ height: calc(var(--fc-spacing) * 3);
2578
+ }
2579
+ }
2580
+ .fc\:\[\&\>svg\]\:size-3\.5 {
1670
2581
  &>svg {
1671
- width: calc(var(--spacing) * 3);
1672
- height: calc(var(--spacing) * 3);
2582
+ width: calc(var(--fc-spacing) * 3.5);
2583
+ height: calc(var(--fc-spacing) * 3.5);
1673
2584
  }
1674
2585
  }
1675
- .\[\&\>svg\]\:size-4 {
2586
+ .fc\:\[\&\>svg\]\:size-4 {
1676
2587
  &>svg {
1677
- width: calc(var(--spacing) * 4);
1678
- height: calc(var(--spacing) * 4);
2588
+ width: calc(var(--fc-spacing) * 4);
2589
+ height: calc(var(--fc-spacing) * 4);
1679
2590
  }
1680
2591
  }
1681
- .\[\&\>svg\]\:translate-y-0\.5 {
2592
+ .fc\:\[\&\>svg\]\:shrink-0 {
1682
2593
  &>svg {
1683
- --tw-translate-y: calc(var(--spacing) * 0.5);
2594
+ flex-shrink: 0;
2595
+ }
2596
+ }
2597
+ .fc\:\[\&\>svg\]\:translate-y-0\.5 {
2598
+ &>svg {
2599
+ --tw-translate-y: calc(var(--fc-spacing) * 0.5);
1684
2600
  translate: var(--tw-translate-x) var(--tw-translate-y);
1685
2601
  }
1686
2602
  }
1687
- .\[\&\>svg\]\:text-current {
2603
+ .fc\:\[\&\>svg\]\:text-current {
1688
2604
  &>svg {
1689
2605
  color: currentcolor;
1690
2606
  }
1691
2607
  }
1692
- .\[\&\>svg\]\:text-destructive-light-foreground {
2608
+ .fc\:\[\&\>svg\]\:text-destructive-light-foreground {
1693
2609
  &>svg {
1694
2610
  color: var(--destructive-light-foreground);
1695
2611
  }
1696
2612
  }
1697
- .\[\&\>svg\]\:text-info-light-foreground {
2613
+ .fc\:\[\&\>svg\]\:text-info-light-foreground {
1698
2614
  &>svg {
1699
2615
  color: var(--info-light-foreground);
1700
2616
  }
1701
2617
  }
1702
- .\[\&\>svg\]\:text-success-light-foreground {
2618
+ .fc\:\[\&\>svg\]\:text-muted {
2619
+ &>svg {
2620
+ color: var(--muted);
2621
+ }
2622
+ }
2623
+ .fc\:\[\&\>svg\]\:text-sidebar-accent-foreground {
2624
+ &>svg {
2625
+ color: var(--sidebar-accent-foreground);
2626
+ }
2627
+ }
2628
+ .fc\:\[\&\>svg\]\:text-success-light-foreground {
1703
2629
  &>svg {
1704
2630
  color: var(--success-light-foreground);
1705
2631
  }
1706
2632
  }
1707
- .\[\&\>svg\]\:text-warning-light-foreground {
2633
+ .fc\:\[\&\>svg\]\:text-warning-light-foreground {
1708
2634
  &>svg {
1709
2635
  color: var(--warning-light-foreground);
1710
2636
  }
1711
2637
  }
2638
+ .fc\:\[\&\>tr\]\:last\:border-b-0 {
2639
+ &>tr {
2640
+ &:last-child {
2641
+ border-bottom-style: var(--tw-border-style);
2642
+ border-bottom-width: 0px;
2643
+ }
2644
+ }
2645
+ }
2646
+ .fc\:\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
2647
+ [data-side=left][data-collapsible=offcanvas] & {
2648
+ right: calc(var(--fc-spacing) * -2);
2649
+ }
2650
+ }
2651
+ .fc\:\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize {
2652
+ [data-side=left][data-state=collapsed] & {
2653
+ cursor: e-resize;
2654
+ }
2655
+ }
2656
+ .fc\:\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 {
2657
+ [data-side=right][data-collapsible=offcanvas] & {
2658
+ left: calc(var(--fc-spacing) * -2);
2659
+ }
2660
+ }
2661
+ .fc\:\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
2662
+ [data-side=right][data-state=collapsed] & {
2663
+ cursor: w-resize;
2664
+ }
2665
+ }
2666
+ }
2667
+ @property --tw-animation-delay {
2668
+ syntax: "*";
2669
+ inherits: false;
2670
+ initial-value: 0s;
2671
+ }
2672
+ @property --tw-animation-direction {
2673
+ syntax: "*";
2674
+ inherits: false;
2675
+ initial-value: normal;
2676
+ }
2677
+ @property --tw-animation-duration {
2678
+ syntax: "*";
2679
+ inherits: false;
2680
+ }
2681
+ @property --tw-animation-fill-mode {
2682
+ syntax: "*";
2683
+ inherits: false;
2684
+ initial-value: none;
2685
+ }
2686
+ @property --tw-animation-iteration-count {
2687
+ syntax: "*";
2688
+ inherits: false;
2689
+ initial-value: 1;
2690
+ }
2691
+ @property --tw-enter-opacity {
2692
+ syntax: "*";
2693
+ inherits: false;
2694
+ initial-value: 1;
2695
+ }
2696
+ @property --tw-enter-rotate {
2697
+ syntax: "*";
2698
+ inherits: false;
2699
+ initial-value: 0;
2700
+ }
2701
+ @property --tw-enter-scale {
2702
+ syntax: "*";
2703
+ inherits: false;
2704
+ initial-value: 1;
2705
+ }
2706
+ @property --tw-enter-translate-x {
2707
+ syntax: "*";
2708
+ inherits: false;
2709
+ initial-value: 0;
2710
+ }
2711
+ @property --tw-enter-translate-y {
2712
+ syntax: "*";
2713
+ inherits: false;
2714
+ initial-value: 0;
2715
+ }
2716
+ @property --tw-exit-opacity {
2717
+ syntax: "*";
2718
+ inherits: false;
2719
+ initial-value: 1;
2720
+ }
2721
+ @property --tw-exit-rotate {
2722
+ syntax: "*";
2723
+ inherits: false;
2724
+ initial-value: 0;
2725
+ }
2726
+ @property --tw-exit-scale {
2727
+ syntax: "*";
2728
+ inherits: false;
2729
+ initial-value: 1;
2730
+ }
2731
+ @property --tw-exit-translate-x {
2732
+ syntax: "*";
2733
+ inherits: false;
2734
+ initial-value: 0;
2735
+ }
2736
+ @property --tw-exit-translate-y {
2737
+ syntax: "*";
2738
+ inherits: false;
2739
+ initial-value: 0;
1712
2740
  }
1713
2741
  :root {
1714
2742
  --radius: 0.625rem;
@@ -1723,10 +2751,6 @@
1723
2751
  --primary-foreground: oklch(1 0 0);
1724
2752
  --primary-light: oklch(0.9219 0.0113 269.54);
1725
2753
  --primary-light-foreground: oklch(0.401 0.0817 269.12);
1726
- --muted: oklch(0.9674 0.0013 286.38);
1727
- --muted-foreground: oklch(0.5517 0.0138 285.94);
1728
- --accent: oklch(0.9674 0.0013 286.38);
1729
- --accent-foreground: oklch(0.2103 0.0059 285.89);
1730
2754
  --destructive: oklch(0.6438 0.204 25.26);
1731
2755
  --destructive-foreground: oklch(1 0 0);
1732
2756
  --destructive-light: oklch(0.9467 0.0237 30.49);
@@ -1746,12 +2770,15 @@
1746
2770
  --dark: oklch(0 0 0);
1747
2771
  --dark-foreground: oklch(1 0 0);
1748
2772
  --border: oklch(0.922 0 0);
1749
- --input: transparent;
2773
+ --ring: oklch(0.708 0 0);
2774
+ --muted: oklch(0.5517 0.0138 285.94);
2775
+ --accent: oklch(0.9674 0.0013 286.38);
2776
+ --accent-foreground: oklch(0.2103 0.0059 285.89);
2777
+ --input: oklch(1 0 0);
1750
2778
  --input-border: oklch(0.922 0 0);
1751
- --input-muted: oklch(0.9659 0.008 286.25);
1752
- --input-muted-foreground: oklch(0.708 0 0);
2779
+ --input-accent: oklch(0.922 0 0);
2780
+ --input-accent-foreground: oklch(0.205 0 0);
1753
2781
  --placeholder: oklch(0.5517 0.0138 285.94);
1754
- --ring: oklch(0.708 0 0);
1755
2782
  --chart-1: oklch(0.646 0.222 41.116);
1756
2783
  --chart-2: oklch(0.6 0.118 184.704);
1757
2784
  --chart-3: oklch(0.398 0.07 227.392);
@@ -1796,16 +2823,15 @@
1796
2823
  --success-light-foreground: oklch(0.7381 0.1169 182.21);
1797
2824
  --dark: oklch(0.3232 0.0068 248.04);
1798
2825
  --dark-foreground: oklch(1 0 0);
1799
- --muted: oklch(0.2958 0.0084 255.57);
1800
- --muted-foreground: oklch(0.708 0 0);
1801
- --accent: oklch(0.269 0 0);
1802
- --accent-foreground: oklch(0.985 0 0);
1803
2826
  --border: oklch(1 0 0 / 10%);
2827
+ --ring: oklch(0.556 0 0);
1804
2828
  --input: oklch(0.2988 0.0092 248.14);
1805
2829
  --input-border: oklch(1 0 0 / 15%);
1806
- --input-muted: oklch(0.2293 0.009 255.61);
2830
+ --input-accent: oklch(1 0 0 / 15%);
1807
2831
  --placeholder: oklch(0.708 0 0);
1808
- --ring: oklch(0.556 0 0);
2832
+ --muted: oklch(0.708 0 0);
2833
+ --accent: oklch(0.3 0.007 248.07);
2834
+ --accent-foreground: oklch(0.985 0 0);
1809
2835
  --chart-1: oklch(0.488 0.243 264.376);
1810
2836
  --chart-2: oklch(0.696 0.17 162.48);
1811
2837
  --chart-3: oklch(0.769 0.188 70.08);
@@ -1875,6 +2901,26 @@
1875
2901
  syntax: "*";
1876
2902
  inherits: false;
1877
2903
  }
2904
+ @property --tw-ordinal {
2905
+ syntax: "*";
2906
+ inherits: false;
2907
+ }
2908
+ @property --tw-slashed-zero {
2909
+ syntax: "*";
2910
+ inherits: false;
2911
+ }
2912
+ @property --tw-numeric-figure {
2913
+ syntax: "*";
2914
+ inherits: false;
2915
+ }
2916
+ @property --tw-numeric-spacing {
2917
+ syntax: "*";
2918
+ inherits: false;
2919
+ }
2920
+ @property --tw-numeric-fraction {
2921
+ syntax: "*";
2922
+ inherits: false;
2923
+ }
1878
2924
  @property --tw-shadow {
1879
2925
  syntax: "*";
1880
2926
  inherits: false;
@@ -1940,14 +2986,40 @@
1940
2986
  inherits: false;
1941
2987
  initial-value: 0 0 #0000;
1942
2988
  }
1943
- @property --tw-outline-style {
2989
+ @property --tw-duration {
1944
2990
  syntax: "*";
1945
2991
  inherits: false;
1946
- initial-value: solid;
1947
2992
  }
1948
- @property --tw-duration {
2993
+ @property --tw-ease {
2994
+ syntax: "*";
2995
+ inherits: false;
2996
+ }
2997
+ @property --tw-content {
2998
+ syntax: "*";
2999
+ initial-value: "";
3000
+ inherits: false;
3001
+ }
3002
+ @property --tw-outline-style {
1949
3003
  syntax: "*";
1950
3004
  inherits: false;
3005
+ initial-value: solid;
3006
+ }
3007
+ @keyframes pulse {
3008
+ 50% {
3009
+ opacity: 0.5;
3010
+ }
3011
+ }
3012
+ @keyframes enter {
3013
+ from {
3014
+ opacity: var(--tw-enter-opacity,1);
3015
+ transform: translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
3016
+ }
3017
+ }
3018
+ @keyframes exit {
3019
+ to {
3020
+ opacity: var(--tw-exit-opacity,1);
3021
+ transform: translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
3022
+ }
1951
3023
  }
1952
3024
  @layer properties {
1953
3025
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
@@ -1961,6 +3033,11 @@
1961
3033
  --tw-leading: initial;
1962
3034
  --tw-font-weight: initial;
1963
3035
  --tw-tracking: initial;
3036
+ --tw-ordinal: initial;
3037
+ --tw-slashed-zero: initial;
3038
+ --tw-numeric-figure: initial;
3039
+ --tw-numeric-spacing: initial;
3040
+ --tw-numeric-fraction: initial;
1964
3041
  --tw-shadow: 0 0 #0000;
1965
3042
  --tw-shadow-color: initial;
1966
3043
  --tw-shadow-alpha: 100%;
@@ -1975,8 +3052,25 @@
1975
3052
  --tw-ring-offset-width: 0px;
1976
3053
  --tw-ring-offset-color: #fff;
1977
3054
  --tw-ring-offset-shadow: 0 0 #0000;
1978
- --tw-outline-style: solid;
1979
3055
  --tw-duration: initial;
3056
+ --tw-ease: initial;
3057
+ --tw-content: "";
3058
+ --tw-outline-style: solid;
3059
+ --tw-animation-delay: 0s;
3060
+ --tw-animation-direction: normal;
3061
+ --tw-animation-duration: initial;
3062
+ --tw-animation-fill-mode: none;
3063
+ --tw-animation-iteration-count: 1;
3064
+ --tw-enter-opacity: 1;
3065
+ --tw-enter-rotate: 0;
3066
+ --tw-enter-scale: 1;
3067
+ --tw-enter-translate-x: 0;
3068
+ --tw-enter-translate-y: 0;
3069
+ --tw-exit-opacity: 1;
3070
+ --tw-exit-rotate: 0;
3071
+ --tw-exit-scale: 1;
3072
+ --tw-exit-translate-x: 0;
3073
+ --tw-exit-translate-y: 0;
1980
3074
  }
1981
3075
  }
1982
3076
  }