@copilotz/admin 0.3.5 → 0.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/styles.css CHANGED
@@ -7,8 +7,10 @@
7
7
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
8
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
9
  "Courier New", monospace;
10
+ --color-black: #000;
10
11
  --color-white: #fff;
11
12
  --spacing: 0.25rem;
13
+ --container-sm: 24rem;
12
14
  --text-xs: 0.75rem;
13
15
  --text-xs--line-height: calc(1 / 0.75);
14
16
  --text-sm: 0.875rem;
@@ -17,17 +19,21 @@
17
19
  --text-base--line-height: calc(1.5 / 1);
18
20
  --text-lg: 1.125rem;
19
21
  --text-lg--line-height: calc(1.75 / 1.125);
20
- --text-2xl: 1.5rem;
21
- --text-2xl--line-height: calc(2 / 1.5);
22
+ --text-xl: 1.25rem;
23
+ --text-xl--line-height: calc(1.75 / 1.25);
22
24
  --text-3xl: 1.875rem;
23
25
  --text-3xl--line-height: calc(2.25 / 1.875);
24
26
  --font-weight-medium: 500;
25
27
  --font-weight-semibold: 600;
26
28
  --tracking-tight: -0.025em;
29
+ --radius-xs: 0.125rem;
27
30
  --radius-sm: 0.25rem;
28
31
  --radius-md: 0.375rem;
29
32
  --radius-lg: 0.5rem;
30
33
  --radius-xl: 0.75rem;
34
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
35
+ --animate-spin: spin 1s linear infinite;
36
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
31
37
  --default-transition-duration: 150ms;
32
38
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
33
39
  --default-font-family: var(--font-sans);
@@ -50,6 +56,12 @@
50
56
  --color-border: hsl(var(--border));
51
57
  --color-input: hsl(var(--input));
52
58
  --color-ring: hsl(var(--ring));
59
+ --color-sidebar: hsl(var(--sidebar-background));
60
+ --color-sidebar-foreground: hsl(var(--sidebar-foreground));
61
+ --color-sidebar-accent: hsl(var(--sidebar-accent));
62
+ --color-sidebar-accent-foreground: hsl(var(--sidebar-accent-foreground));
63
+ --color-sidebar-border: hsl(var(--sidebar-border));
64
+ --color-sidebar-ring: hsl(var(--sidebar-ring));
53
65
  }
54
66
  }
55
67
  @layer base {
@@ -205,15 +217,83 @@
205
217
  container-type: inline-size;
206
218
  container-name: card-header;
207
219
  }
220
+ .pointer-events-none {
221
+ pointer-events: none;
222
+ }
223
+ .sr-only {
224
+ position: absolute;
225
+ width: 1px;
226
+ height: 1px;
227
+ padding: 0;
228
+ margin: -1px;
229
+ overflow: hidden;
230
+ clip-path: inset(50%);
231
+ white-space: nowrap;
232
+ border-width: 0;
233
+ }
208
234
  .absolute {
209
235
  position: absolute;
210
236
  }
237
+ .fixed {
238
+ position: fixed;
239
+ }
211
240
  .relative {
212
241
  position: relative;
213
242
  }
243
+ .inset-0 {
244
+ inset: calc(var(--spacing) * 0);
245
+ }
246
+ .inset-x-0 {
247
+ inset-inline: calc(var(--spacing) * 0);
248
+ }
249
+ .inset-y-0 {
250
+ inset-block: calc(var(--spacing) * 0);
251
+ }
252
+ .top-0 {
253
+ top: calc(var(--spacing) * 0);
254
+ }
255
+ .top-1\.5 {
256
+ top: calc(var(--spacing) * 1.5);
257
+ }
258
+ .top-1\/2 {
259
+ top: calc(1/2 * 100%);
260
+ }
261
+ .top-3\.5 {
262
+ top: calc(var(--spacing) * 3.5);
263
+ }
264
+ .top-4 {
265
+ top: calc(var(--spacing) * 4);
266
+ }
267
+ .right-0 {
268
+ right: calc(var(--spacing) * 0);
269
+ }
270
+ .right-1 {
271
+ right: calc(var(--spacing) * 1);
272
+ }
214
273
  .right-2 {
215
274
  right: calc(var(--spacing) * 2);
216
275
  }
276
+ .right-3 {
277
+ right: calc(var(--spacing) * 3);
278
+ }
279
+ .right-4 {
280
+ right: calc(var(--spacing) * 4);
281
+ }
282
+ .bottom-0 {
283
+ bottom: calc(var(--spacing) * 0);
284
+ }
285
+ .left-0 {
286
+ left: calc(var(--spacing) * 0);
287
+ }
288
+ .left-3 {
289
+ left: calc(var(--spacing) * 3);
290
+ }
291
+ .z-10 {
292
+ z-index: 10;
293
+ }
294
+ .z-20 {
295
+ z-index: 20;
296
+ }
217
297
  .z-50 {
218
298
  z-index: 50;
219
299
  }
@@ -226,6 +306,15 @@
226
306
  .row-start-1 {
227
307
  grid-row-start: 1;
228
308
  }
309
+ .mx-2 {
310
+ margin-inline: calc(var(--spacing) * 2);
311
+ }
312
+ .mx-3\.5 {
313
+ margin-inline: calc(var(--spacing) * 3.5);
314
+ }
315
+ .mx-auto {
316
+ margin-inline: auto;
317
+ }
229
318
  .mt-1 {
230
319
  margin-top: calc(var(--spacing) * 1);
231
320
  }
@@ -235,25 +324,70 @@
235
324
  .mt-3 {
236
325
  margin-top: calc(var(--spacing) * 3);
237
326
  }
327
+ .mt-auto {
328
+ margin-top: auto;
329
+ }
330
+ .mr-2 {
331
+ margin-right: calc(var(--spacing) * 2);
332
+ }
238
333
  .mb-4 {
239
334
  margin-bottom: calc(var(--spacing) * 4);
240
335
  }
336
+ .-ml-1 {
337
+ margin-left: calc(var(--spacing) * -1);
338
+ }
339
+ .ml-2 {
340
+ margin-left: calc(var(--spacing) * 2);
341
+ }
241
342
  .flex {
242
343
  display: flex;
243
344
  }
244
345
  .grid {
245
346
  display: grid;
246
347
  }
348
+ .hidden {
349
+ display: none;
350
+ }
247
351
  .inline-flex {
248
352
  display: inline-flex;
249
353
  }
354
+ .aspect-square {
355
+ aspect-ratio: 1 / 1;
356
+ }
357
+ .size-2\.5 {
358
+ width: calc(var(--spacing) * 2.5);
359
+ height: calc(var(--spacing) * 2.5);
360
+ }
361
+ .size-4 {
362
+ width: calc(var(--spacing) * 4);
363
+ height: calc(var(--spacing) * 4);
364
+ }
365
+ .size-7 {
366
+ width: calc(var(--spacing) * 7);
367
+ height: calc(var(--spacing) * 7);
368
+ }
250
369
  .size-9 {
251
370
  width: calc(var(--spacing) * 9);
252
371
  height: calc(var(--spacing) * 9);
253
372
  }
373
+ .h-3 {
374
+ height: calc(var(--spacing) * 3);
375
+ }
376
+ .h-3\.5 {
377
+ height: calc(var(--spacing) * 3.5);
378
+ }
254
379
  .h-4 {
255
380
  height: calc(var(--spacing) * 4);
256
381
  }
382
+ .h-5 {
383
+ height: calc(var(--spacing) * 5);
384
+ }
385
+ .h-6 {
386
+ height: calc(var(--spacing) * 6);
387
+ }
388
+ .h-7 {
389
+ height: calc(var(--spacing) * 7);
390
+ }
257
391
  .h-8 {
258
392
  height: calc(var(--spacing) * 8);
259
393
  }
@@ -263,23 +397,74 @@
263
397
  .h-10 {
264
398
  height: calc(var(--spacing) * 10);
265
399
  }
266
- .h-40 {
267
- height: calc(var(--spacing) * 40);
400
+ .h-12 {
401
+ height: calc(var(--spacing) * 12);
402
+ }
403
+ .h-36 {
404
+ height: calc(var(--spacing) * 36);
405
+ }
406
+ .h-\[100svh\] {
407
+ height: 100svh;
268
408
  }
269
409
  .h-\[var\(--radix-select-trigger-height\)\] {
270
410
  height: var(--radix-select-trigger-height);
271
411
  }
272
- .min-h-56 {
273
- min-height: calc(var(--spacing) * 56);
412
+ .h-auto {
413
+ height: auto;
414
+ }
415
+ .h-full {
416
+ height: 100%;
417
+ }
418
+ .h-svh {
419
+ height: 100svh;
420
+ }
421
+ .max-h-60 {
422
+ max-height: calc(var(--spacing) * 60);
423
+ }
424
+ .min-h-0 {
425
+ min-height: calc(var(--spacing) * 0);
426
+ }
427
+ .min-h-48 {
428
+ min-height: calc(var(--spacing) * 48);
429
+ }
430
+ .min-h-\[200px\] {
431
+ min-height: 200px;
432
+ }
433
+ .min-h-svh {
434
+ min-height: 100svh;
435
+ }
436
+ .w-\(--sidebar-width\) {
437
+ width: var(--sidebar-width);
438
+ }
439
+ .w-3 {
440
+ width: calc(var(--spacing) * 3);
441
+ }
442
+ .w-3\.5 {
443
+ width: calc(var(--spacing) * 3.5);
444
+ }
445
+ .w-3\/4 {
446
+ width: calc(3/4 * 100%);
274
447
  }
275
448
  .w-4 {
276
449
  width: calc(var(--spacing) * 4);
277
450
  }
278
- .w-10 {
279
- width: calc(var(--spacing) * 10);
451
+ .w-5 {
452
+ width: calc(var(--spacing) * 5);
453
+ }
454
+ .w-6 {
455
+ width: calc(var(--spacing) * 6);
456
+ }
457
+ .w-7 {
458
+ width: calc(var(--spacing) * 7);
459
+ }
460
+ .w-8 {
461
+ width: calc(var(--spacing) * 8);
280
462
  }
281
- .w-\[110px\] {
282
- width: 110px;
463
+ .w-\[90px\] {
464
+ width: 90px;
465
+ }
466
+ .w-auto {
467
+ width: auto;
283
468
  }
284
469
  .w-fit {
285
470
  width: fit-content;
@@ -287,12 +472,21 @@
287
472
  .w-full {
288
473
  width: 100%;
289
474
  }
475
+ .max-w-\(--skeleton-width\) {
476
+ max-width: var(--skeleton-width);
477
+ }
290
478
  .max-w-44 {
291
479
  max-width: calc(var(--spacing) * 44);
292
480
  }
481
+ .max-w-sm {
482
+ max-width: var(--container-sm);
483
+ }
293
484
  .min-w-0 {
294
485
  min-width: calc(var(--spacing) * 0);
295
486
  }
487
+ .min-w-5 {
488
+ min-width: calc(var(--spacing) * 5);
489
+ }
296
490
  .min-w-\[8rem\] {
297
491
  min-width: 8rem;
298
492
  }
@@ -305,13 +499,51 @@
305
499
  .shrink-0 {
306
500
  flex-shrink: 0;
307
501
  }
502
+ .origin-\(--radix-tooltip-content-transform-origin\) {
503
+ transform-origin: var(--radix-tooltip-content-transform-origin);
504
+ }
505
+ .-translate-x-1\/2 {
506
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
507
+ translate: var(--tw-translate-x) var(--tw-translate-y);
508
+ }
509
+ .-translate-x-px {
510
+ --tw-translate-x: -1px;
511
+ translate: var(--tw-translate-x) var(--tw-translate-y);
512
+ }
513
+ .translate-x-px {
514
+ --tw-translate-x: 1px;
515
+ translate: var(--tw-translate-x) var(--tw-translate-y);
516
+ }
517
+ .-translate-y-1\/2 {
518
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
519
+ translate: var(--tw-translate-x) var(--tw-translate-y);
520
+ }
308
521
  .translate-y-1 {
309
522
  --tw-translate-y: calc(var(--spacing) * 1);
310
523
  translate: var(--tw-translate-x) var(--tw-translate-y);
311
524
  }
525
+ .translate-y-\[calc\(-50\%_-_2px\)\] {
526
+ --tw-translate-y: calc(-50% - 2px);
527
+ translate: var(--tw-translate-x) var(--tw-translate-y);
528
+ }
529
+ .rotate-45 {
530
+ rotate: 45deg;
531
+ }
532
+ .animate-in {
533
+ 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);
534
+ }
535
+ .animate-pulse {
536
+ animation: var(--animate-pulse);
537
+ }
538
+ .animate-spin {
539
+ animation: var(--animate-spin);
540
+ }
312
541
  .cursor-default {
313
542
  cursor: default;
314
543
  }
544
+ .cursor-pointer {
545
+ cursor: pointer;
546
+ }
315
547
  .auto-rows-min {
316
548
  grid-auto-rows: min-content;
317
549
  }
@@ -342,9 +574,6 @@
342
574
  .justify-center {
343
575
  justify-content: center;
344
576
  }
345
- .gap-0 {
346
- gap: calc(var(--spacing) * 0);
347
- }
348
577
  .gap-1 {
349
578
  gap: calc(var(--spacing) * 1);
350
579
  }
@@ -370,6 +599,13 @@
370
599
  margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
371
600
  }
372
601
  }
602
+ .space-y-2 {
603
+ :where(& > :not(:last-child)) {
604
+ --tw-space-y-reverse: 0;
605
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
606
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
607
+ }
608
+ }
373
609
  .space-y-3 {
374
610
  :where(& > :not(:last-child)) {
375
611
  --tw-space-y-reverse: 0;
@@ -391,6 +627,15 @@
391
627
  margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
392
628
  }
393
629
  }
630
+ .divide-y {
631
+ :where(& > :not(:last-child)) {
632
+ --tw-divide-y-reverse: 0;
633
+ border-bottom-style: var(--tw-border-style);
634
+ border-top-style: var(--tw-border-style);
635
+ border-top-width: calc(1px * var(--tw-divide-y-reverse));
636
+ border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
637
+ }
638
+ }
394
639
  .self-start {
395
640
  align-self: flex-start;
396
641
  }
@@ -402,29 +647,63 @@
402
647
  text-overflow: ellipsis;
403
648
  white-space: nowrap;
404
649
  }
650
+ .overflow-auto {
651
+ overflow: auto;
652
+ }
405
653
  .overflow-hidden {
406
654
  overflow: hidden;
407
655
  }
656
+ .rounded-\[2px\] {
657
+ border-radius: 2px;
658
+ }
659
+ .rounded-full {
660
+ border-radius: calc(infinity * 1px);
661
+ }
408
662
  .rounded-lg {
409
663
  border-radius: var(--radius-lg);
410
664
  }
411
665
  .rounded-md {
412
666
  border-radius: var(--radius-md);
413
667
  }
668
+ .rounded-none {
669
+ border-radius: 0;
670
+ }
414
671
  .rounded-sm {
415
672
  border-radius: var(--radius-sm);
416
673
  }
417
674
  .rounded-xl {
418
675
  border-radius: var(--radius-xl);
419
676
  }
677
+ .rounded-xs {
678
+ border-radius: var(--radius-xs);
679
+ }
420
680
  .border {
421
681
  border-style: var(--tw-border-style);
422
682
  border-width: 1px;
423
683
  }
684
+ .border-t {
685
+ border-top-style: var(--tw-border-style);
686
+ border-top-width: 1px;
687
+ }
688
+ .border-r {
689
+ border-right-style: var(--tw-border-style);
690
+ border-right-width: 1px;
691
+ }
692
+ .border-b {
693
+ border-bottom-style: var(--tw-border-style);
694
+ border-bottom-width: 1px;
695
+ }
696
+ .border-l {
697
+ border-left-style: var(--tw-border-style);
698
+ border-left-width: 1px;
699
+ }
424
700
  .border-dashed {
425
701
  --tw-border-style: dashed;
426
702
  border-style: dashed;
427
703
  }
704
+ .border-border {
705
+ border-color: var(--color-border);
706
+ }
428
707
  .border-destructive\/50 {
429
708
  border-color: color-mix(in srgb, hsl(var(--destructive)) 50%, transparent);
430
709
  @supports (color: color-mix(in lab, red, red)) {
@@ -434,12 +713,33 @@
434
713
  .border-input {
435
714
  border-color: var(--color-input);
436
715
  }
716
+ .border-sidebar-border {
717
+ border-color: var(--color-sidebar-border);
718
+ }
437
719
  .border-transparent {
438
720
  border-color: transparent;
439
721
  }
722
+ .bg-accent {
723
+ background-color: var(--color-accent);
724
+ }
440
725
  .bg-background {
441
726
  background-color: var(--color-background);
442
727
  }
728
+ .bg-background\/95 {
729
+ background-color: color-mix(in srgb, hsl(var(--background)) 95%, transparent);
730
+ @supports (color: color-mix(in lab, red, red)) {
731
+ background-color: color-mix(in oklab, var(--color-background) 95%, transparent);
732
+ }
733
+ }
734
+ .bg-black\/50 {
735
+ background-color: color-mix(in srgb, #000 50%, transparent);
736
+ @supports (color: color-mix(in lab, red, red)) {
737
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
738
+ }
739
+ }
740
+ .bg-border {
741
+ background-color: var(--color-border);
742
+ }
443
743
  .bg-card {
444
744
  background-color: var(--color-card);
445
745
  }
@@ -467,33 +767,63 @@
467
767
  .bg-primary {
468
768
  background-color: var(--color-primary);
469
769
  }
770
+ .bg-primary\/10 {
771
+ background-color: color-mix(in srgb, hsl(var(--primary)) 10%, transparent);
772
+ @supports (color: color-mix(in lab, red, red)) {
773
+ background-color: color-mix(in oklab, var(--color-primary) 10%, transparent);
774
+ }
775
+ }
470
776
  .bg-secondary {
471
777
  background-color: var(--color-secondary);
472
778
  }
779
+ .bg-sidebar {
780
+ background-color: var(--color-sidebar);
781
+ }
782
+ .bg-sidebar-border {
783
+ background-color: var(--color-sidebar-border);
784
+ }
473
785
  .bg-transparent {
474
786
  background-color: transparent;
475
787
  }
788
+ .fill-primary {
789
+ fill: var(--color-primary);
790
+ }
476
791
  .p-0 {
477
792
  padding: calc(var(--spacing) * 0);
478
793
  }
479
794
  .p-1 {
480
795
  padding: calc(var(--spacing) * 1);
481
796
  }
797
+ .p-2 {
798
+ padding: calc(var(--spacing) * 2);
799
+ }
800
+ .p-3 {
801
+ padding: calc(var(--spacing) * 3);
802
+ }
482
803
  .p-4 {
483
804
  padding: calc(var(--spacing) * 4);
484
805
  }
485
806
  .p-5 {
486
807
  padding: calc(var(--spacing) * 5);
487
808
  }
488
- .p-8 {
489
- padding: calc(var(--spacing) * 8);
809
+ .p-6 {
810
+ padding: calc(var(--spacing) * 6);
811
+ }
812
+ .p-10 {
813
+ padding: calc(var(--spacing) * 10);
490
814
  }
491
815
  .px-1 {
492
816
  padding-inline: calc(var(--spacing) * 1);
493
817
  }
818
+ .px-1\.5 {
819
+ padding-inline: calc(var(--spacing) * 1.5);
820
+ }
494
821
  .px-2 {
495
822
  padding-inline: calc(var(--spacing) * 2);
496
823
  }
824
+ .px-2\.5 {
825
+ padding-inline: calc(var(--spacing) * 2.5);
826
+ }
497
827
  .px-3 {
498
828
  padding-inline: calc(var(--spacing) * 3);
499
829
  }
@@ -518,12 +848,18 @@
518
848
  .py-2 {
519
849
  padding-block: calc(var(--spacing) * 2);
520
850
  }
851
+ .py-3 {
852
+ padding-block: calc(var(--spacing) * 3);
853
+ }
521
854
  .py-6 {
522
855
  padding-block: calc(var(--spacing) * 6);
523
856
  }
524
857
  .py-10 {
525
858
  padding-block: calc(var(--spacing) * 10);
526
859
  }
860
+ .py-20 {
861
+ padding-block: calc(var(--spacing) * 20);
862
+ }
527
863
  .pr-8 {
528
864
  padding-right: calc(var(--spacing) * 8);
529
865
  }
@@ -533,12 +869,17 @@
533
869
  .pl-2 {
534
870
  padding-left: calc(var(--spacing) * 2);
535
871
  }
872
+ .pl-9 {
873
+ padding-left: calc(var(--spacing) * 9);
874
+ }
536
875
  .text-center {
537
876
  text-align: center;
538
877
  }
539
- .text-2xl {
540
- font-size: var(--text-2xl);
541
- line-height: var(--tw-leading, var(--text-2xl--line-height));
878
+ .text-left {
879
+ text-align: left;
880
+ }
881
+ .text-right {
882
+ text-align: right;
542
883
  }
543
884
  .text-3xl {
544
885
  font-size: var(--text-3xl);
@@ -556,10 +897,17 @@
556
897
  font-size: var(--text-sm);
557
898
  line-height: var(--tw-leading, var(--text-sm--line-height));
558
899
  }
900
+ .text-xl {
901
+ font-size: var(--text-xl);
902
+ line-height: var(--tw-leading, var(--text-xl--line-height));
903
+ }
559
904
  .text-xs {
560
905
  font-size: var(--text-xs);
561
906
  line-height: var(--tw-leading, var(--text-xs--line-height));
562
907
  }
908
+ .text-\[10px\] {
909
+ font-size: 10px;
910
+ }
563
911
  .text-\[11px\] {
564
912
  font-size: 11px;
565
913
  }
@@ -583,9 +931,18 @@
583
931
  --tw-tracking: var(--tracking-tight);
584
932
  letter-spacing: var(--tracking-tight);
585
933
  }
934
+ .text-balance {
935
+ text-wrap: balance;
936
+ }
937
+ .break-words {
938
+ overflow-wrap: break-word;
939
+ }
586
940
  .whitespace-nowrap {
587
941
  white-space: nowrap;
588
942
  }
943
+ .whitespace-pre-wrap {
944
+ white-space: pre-wrap;
945
+ }
589
946
  .text-card-foreground {
590
947
  color: var(--color-card-foreground);
591
948
  }
@@ -598,6 +955,12 @@
598
955
  .text-muted-foreground {
599
956
  color: var(--color-muted-foreground);
600
957
  }
958
+ .text-muted-foreground\/50 {
959
+ color: color-mix(in srgb, hsl(var(--muted-foreground)) 50%, transparent);
960
+ @supports (color: color-mix(in lab, red, red)) {
961
+ color: color-mix(in oklab, var(--color-muted-foreground) 50%, transparent);
962
+ }
963
+ }
601
964
  .text-popover-foreground {
602
965
  color: var(--color-popover-foreground);
603
966
  }
@@ -610,22 +973,50 @@
610
973
  .text-secondary-foreground {
611
974
  color: var(--color-secondary-foreground);
612
975
  }
976
+ .text-sidebar-foreground {
977
+ color: var(--color-sidebar-foreground);
978
+ }
979
+ .text-sidebar-foreground\/70 {
980
+ color: color-mix(in srgb, hsl(var(--sidebar-foreground)) 70%, transparent);
981
+ @supports (color: color-mix(in lab, red, red)) {
982
+ color: color-mix(in oklab, var(--color-sidebar-foreground) 70%, transparent);
983
+ }
984
+ }
613
985
  .text-white {
614
986
  color: var(--color-white);
615
987
  }
616
988
  .uppercase {
617
989
  text-transform: uppercase;
618
990
  }
991
+ .tabular-nums {
992
+ --tw-numeric-spacing: tabular-nums;
993
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
994
+ }
619
995
  .underline-offset-4 {
620
996
  text-underline-offset: 4px;
621
997
  }
622
998
  .opacity-50 {
623
999
  opacity: 50%;
624
1000
  }
1001
+ .opacity-70 {
1002
+ opacity: 70%;
1003
+ }
1004
+ .shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] {
1005
+ --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border)));
1006
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1007
+ }
1008
+ .shadow-lg {
1009
+ --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));
1010
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1011
+ }
625
1012
  .shadow-md {
626
1013
  --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));
627
1014
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
628
1015
  }
1016
+ .shadow-none {
1017
+ --tw-shadow: 0 0 #0000;
1018
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1019
+ }
629
1020
  .shadow-sm {
630
1021
  --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));
631
1022
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -634,15 +1025,59 @@
634
1025
  --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
635
1026
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
636
1027
  }
1028
+ .ring-sidebar-ring {
1029
+ --tw-ring-color: var(--color-sidebar-ring);
1030
+ }
1031
+ .ring-offset-background {
1032
+ --tw-ring-offset-color: var(--color-background);
1033
+ }
1034
+ .outline-hidden {
1035
+ --tw-outline-style: none;
1036
+ outline-style: none;
1037
+ @media (forced-colors: active) {
1038
+ outline: 2px solid transparent;
1039
+ outline-offset: 2px;
1040
+ }
1041
+ }
637
1042
  .outline {
638
1043
  outline-style: var(--tw-outline-style);
639
1044
  outline-width: 1px;
640
1045
  }
1046
+ .backdrop-blur {
1047
+ --tw-backdrop-blur: blur(8px);
1048
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1049
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1050
+ }
1051
+ .transition {
1052
+ 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, content-visibility, overlay, pointer-events;
1053
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1054
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1055
+ }
641
1056
  .transition-\[color\,box-shadow\] {
642
1057
  transition-property: color,box-shadow;
643
1058
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
644
1059
  transition-duration: var(--tw-duration, var(--default-transition-duration));
645
1060
  }
1061
+ .transition-\[left\,right\,width\] {
1062
+ transition-property: left,right,width;
1063
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1064
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1065
+ }
1066
+ .transition-\[margin\,opacity\] {
1067
+ transition-property: margin,opacity;
1068
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1069
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1070
+ }
1071
+ .transition-\[width\,height\,padding\] {
1072
+ transition-property: width,height,padding;
1073
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1074
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1075
+ }
1076
+ .transition-\[width\] {
1077
+ transition-property: width;
1078
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1079
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1080
+ }
646
1081
  .transition-all {
647
1082
  transition-property: all;
648
1083
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -653,6 +1088,32 @@
653
1088
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
654
1089
  transition-duration: var(--tw-duration, var(--default-transition-duration));
655
1090
  }
1091
+ .transition-opacity {
1092
+ transition-property: opacity;
1093
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1094
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1095
+ }
1096
+ .transition-transform {
1097
+ transition-property: transform, translate, scale, rotate;
1098
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1099
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1100
+ }
1101
+ .duration-200 {
1102
+ --tw-duration: 200ms;
1103
+ transition-duration: 200ms;
1104
+ }
1105
+ .ease-in-out {
1106
+ --tw-ease: var(--ease-in-out);
1107
+ transition-timing-function: var(--ease-in-out);
1108
+ }
1109
+ .ease-linear {
1110
+ --tw-ease: linear;
1111
+ transition-timing-function: linear;
1112
+ }
1113
+ .fade-in-0 {
1114
+ --tw-enter-opacity: calc(0/100);
1115
+ --tw-enter-opacity: 0;
1116
+ }
656
1117
  .outline-none {
657
1118
  --tw-outline-style: none;
658
1119
  outline-style: none;
@@ -661,6 +1122,175 @@
661
1122
  -webkit-user-select: none;
662
1123
  user-select: none;
663
1124
  }
1125
+ .zoom-in-95 {
1126
+ --tw-enter-scale: calc(95*1%);
1127
+ --tw-enter-scale: .95;
1128
+ }
1129
+ .group-focus-within\/menu-item\:opacity-100 {
1130
+ &:is(:where(.group\/menu-item):focus-within *) {
1131
+ opacity: 100%;
1132
+ }
1133
+ }
1134
+ .group-hover\/menu-item\:opacity-100 {
1135
+ &:is(:where(.group\/menu-item):hover *) {
1136
+ @media (hover: hover) {
1137
+ opacity: 100%;
1138
+ }
1139
+ }
1140
+ }
1141
+ .group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8 {
1142
+ &:is(:where(.group\/menu-item):has(*[data-sidebar="menu-action"]) *) {
1143
+ padding-right: calc(var(--spacing) * 8);
1144
+ }
1145
+ }
1146
+ .group-data-\[collapsible\=icon\]\:-mt-8 {
1147
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1148
+ margin-top: calc(var(--spacing) * -8);
1149
+ }
1150
+ }
1151
+ .group-data-\[collapsible\=icon\]\:hidden {
1152
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1153
+ display: none;
1154
+ }
1155
+ }
1156
+ .group-data-\[collapsible\=icon\]\:size-8\! {
1157
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1158
+ width: calc(var(--spacing) * 8) !important;
1159
+ height: calc(var(--spacing) * 8) !important;
1160
+ }
1161
+ }
1162
+ .group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\) {
1163
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1164
+ width: var(--sidebar-width-icon);
1165
+ }
1166
+ }
1167
+ .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\] {
1168
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1169
+ width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)));
1170
+ }
1171
+ }
1172
+ .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\] {
1173
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1174
+ width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px);
1175
+ }
1176
+ }
1177
+ .group-data-\[collapsible\=icon\]\:overflow-hidden {
1178
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1179
+ overflow: hidden;
1180
+ }
1181
+ }
1182
+ .group-data-\[collapsible\=icon\]\:p-0\! {
1183
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1184
+ padding: calc(var(--spacing) * 0) !important;
1185
+ }
1186
+ }
1187
+ .group-data-\[collapsible\=icon\]\:p-2\! {
1188
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1189
+ padding: calc(var(--spacing) * 2) !important;
1190
+ }
1191
+ }
1192
+ .group-data-\[collapsible\=icon\]\:opacity-0 {
1193
+ &:is(:where(.group)[data-collapsible="icon"] *) {
1194
+ opacity: 0%;
1195
+ }
1196
+ }
1197
+ .group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\] {
1198
+ &:is(:where(.group)[data-collapsible="offcanvas"] *) {
1199
+ right: calc(var(--sidebar-width) * -1);
1200
+ }
1201
+ }
1202
+ .group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\] {
1203
+ &:is(:where(.group)[data-collapsible="offcanvas"] *) {
1204
+ left: calc(var(--sidebar-width) * -1);
1205
+ }
1206
+ }
1207
+ .group-data-\[collapsible\=offcanvas\]\:w-0 {
1208
+ &:is(:where(.group)[data-collapsible="offcanvas"] *) {
1209
+ width: calc(var(--spacing) * 0);
1210
+ }
1211
+ }
1212
+ .group-data-\[collapsible\=offcanvas\]\:translate-x-0 {
1213
+ &:is(:where(.group)[data-collapsible="offcanvas"] *) {
1214
+ --tw-translate-x: calc(var(--spacing) * 0);
1215
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1216
+ }
1217
+ }
1218
+ .group-data-\[side\=left\]\:-right-4 {
1219
+ &:is(:where(.group)[data-side="left"] *) {
1220
+ right: calc(var(--spacing) * -4);
1221
+ }
1222
+ }
1223
+ .group-data-\[side\=left\]\:border-r {
1224
+ &:is(:where(.group)[data-side="left"] *) {
1225
+ border-right-style: var(--tw-border-style);
1226
+ border-right-width: 1px;
1227
+ }
1228
+ }
1229
+ .group-data-\[side\=right\]\:left-0 {
1230
+ &:is(:where(.group)[data-side="right"] *) {
1231
+ left: calc(var(--spacing) * 0);
1232
+ }
1233
+ }
1234
+ .group-data-\[side\=right\]\:rotate-180 {
1235
+ &:is(:where(.group)[data-side="right"] *) {
1236
+ rotate: 180deg;
1237
+ }
1238
+ }
1239
+ .group-data-\[side\=right\]\:border-l {
1240
+ &:is(:where(.group)[data-side="right"] *) {
1241
+ border-left-style: var(--tw-border-style);
1242
+ border-left-width: 1px;
1243
+ }
1244
+ }
1245
+ .group-data-\[variant\=floating\]\:rounded-lg {
1246
+ &:is(:where(.group)[data-variant="floating"] *) {
1247
+ border-radius: var(--radius-lg);
1248
+ }
1249
+ }
1250
+ .group-data-\[variant\=floating\]\:border {
1251
+ &:is(:where(.group)[data-variant="floating"] *) {
1252
+ border-style: var(--tw-border-style);
1253
+ border-width: 1px;
1254
+ }
1255
+ }
1256
+ .group-data-\[variant\=floating\]\:border-sidebar-border {
1257
+ &:is(:where(.group)[data-variant="floating"] *) {
1258
+ border-color: var(--color-sidebar-border);
1259
+ }
1260
+ }
1261
+ .group-data-\[variant\=floating\]\:shadow-sm {
1262
+ &:is(:where(.group)[data-variant="floating"] *) {
1263
+ --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));
1264
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1265
+ }
1266
+ }
1267
+ .peer-hover\/menu-button\:text-sidebar-accent-foreground {
1268
+ &:is(:where(.peer\/menu-button):hover ~ *) {
1269
+ @media (hover: hover) {
1270
+ color: var(--color-sidebar-accent-foreground);
1271
+ }
1272
+ }
1273
+ }
1274
+ .peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground {
1275
+ &:is(:where(.peer\/menu-button)[data-active="true"] ~ *) {
1276
+ color: var(--color-sidebar-accent-foreground);
1277
+ }
1278
+ }
1279
+ .peer-data-\[size\=default\]\/menu-button\:top-1\.5 {
1280
+ &:is(:where(.peer\/menu-button)[data-size="default"] ~ *) {
1281
+ top: calc(var(--spacing) * 1.5);
1282
+ }
1283
+ }
1284
+ .peer-data-\[size\=lg\]\/menu-button\:top-2\.5 {
1285
+ &:is(:where(.peer\/menu-button)[data-size="lg"] ~ *) {
1286
+ top: calc(var(--spacing) * 2.5);
1287
+ }
1288
+ }
1289
+ .peer-data-\[size\=sm\]\/menu-button\:top-1 {
1290
+ &:is(:where(.peer\/menu-button)[data-size="sm"] ~ *) {
1291
+ top: calc(var(--spacing) * 1);
1292
+ }
1293
+ }
664
1294
  .selection\:bg-primary {
665
1295
  & *::selection {
666
1296
  background-color: var(--color-primary);
@@ -720,6 +1350,44 @@
720
1350
  color: var(--color-muted-foreground);
721
1351
  }
722
1352
  }
1353
+ .after\:absolute {
1354
+ &::after {
1355
+ content: var(--tw-content);
1356
+ position: absolute;
1357
+ }
1358
+ }
1359
+ .after\:-inset-2 {
1360
+ &::after {
1361
+ content: var(--tw-content);
1362
+ inset: calc(var(--spacing) * -2);
1363
+ }
1364
+ }
1365
+ .after\:inset-y-0 {
1366
+ &::after {
1367
+ content: var(--tw-content);
1368
+ inset-block: calc(var(--spacing) * 0);
1369
+ }
1370
+ }
1371
+ .after\:left-1\/2 {
1372
+ &::after {
1373
+ content: var(--tw-content);
1374
+ left: calc(1/2 * 100%);
1375
+ }
1376
+ }
1377
+ .after\:w-\[2px\] {
1378
+ &::after {
1379
+ content: var(--tw-content);
1380
+ width: 2px;
1381
+ }
1382
+ }
1383
+ .group-data-\[collapsible\=offcanvas\]\:after\:left-full {
1384
+ &:is(:where(.group)[data-collapsible="offcanvas"] *) {
1385
+ &::after {
1386
+ content: var(--tw-content);
1387
+ left: 100%;
1388
+ }
1389
+ }
1390
+ }
723
1391
  .hover\:bg-accent {
724
1392
  &:hover {
725
1393
  @media (hover: hover) {
@@ -737,6 +1405,23 @@
737
1405
  }
738
1406
  }
739
1407
  }
1408
+ .hover\:bg-muted {
1409
+ &:hover {
1410
+ @media (hover: hover) {
1411
+ background-color: var(--color-muted);
1412
+ }
1413
+ }
1414
+ }
1415
+ .hover\:bg-muted\/50 {
1416
+ &:hover {
1417
+ @media (hover: hover) {
1418
+ background-color: color-mix(in srgb, hsl(var(--muted)) 50%, transparent);
1419
+ @supports (color: color-mix(in lab, red, red)) {
1420
+ background-color: color-mix(in oklab, var(--color-muted) 50%, transparent);
1421
+ }
1422
+ }
1423
+ }
1424
+ }
740
1425
  .hover\:bg-primary\/90 {
741
1426
  &:hover {
742
1427
  @media (hover: hover) {
@@ -757,6 +1442,13 @@
757
1442
  }
758
1443
  }
759
1444
  }
1445
+ .hover\:bg-sidebar-accent {
1446
+ &:hover {
1447
+ @media (hover: hover) {
1448
+ background-color: var(--color-sidebar-accent);
1449
+ }
1450
+ }
1451
+ }
760
1452
  .hover\:text-accent-foreground {
761
1453
  &:hover {
762
1454
  @media (hover: hover) {
@@ -764,155 +1456,503 @@
764
1456
  }
765
1457
  }
766
1458
  }
767
- .hover\:underline {
768
- &:hover {
769
- @media (hover: hover) {
770
- text-decoration-line: underline;
771
- }
1459
+ .hover\:text-foreground {
1460
+ &:hover {
1461
+ @media (hover: hover) {
1462
+ color: var(--color-foreground);
1463
+ }
1464
+ }
1465
+ }
1466
+ .hover\:text-sidebar-accent-foreground {
1467
+ &:hover {
1468
+ @media (hover: hover) {
1469
+ color: var(--color-sidebar-accent-foreground);
1470
+ }
1471
+ }
1472
+ }
1473
+ .hover\:underline {
1474
+ &:hover {
1475
+ @media (hover: hover) {
1476
+ text-decoration-line: underline;
1477
+ }
1478
+ }
1479
+ }
1480
+ .hover\:opacity-100 {
1481
+ &:hover {
1482
+ @media (hover: hover) {
1483
+ opacity: 100%;
1484
+ }
1485
+ }
1486
+ }
1487
+ .hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\] {
1488
+ &:hover {
1489
+ @media (hover: hover) {
1490
+ --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-accent)));
1491
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1492
+ }
1493
+ }
1494
+ }
1495
+ .hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar {
1496
+ &:hover {
1497
+ @media (hover: hover) {
1498
+ &:is(:where(.group)[data-collapsible="offcanvas"] *) {
1499
+ background-color: var(--color-sidebar);
1500
+ }
1501
+ }
1502
+ }
1503
+ }
1504
+ .hover\:after\:bg-sidebar-border {
1505
+ &:hover {
1506
+ @media (hover: hover) {
1507
+ &::after {
1508
+ content: var(--tw-content);
1509
+ background-color: var(--color-sidebar-border);
1510
+ }
1511
+ }
1512
+ }
1513
+ }
1514
+ .focus\:bg-accent {
1515
+ &:focus {
1516
+ background-color: var(--color-accent);
1517
+ }
1518
+ }
1519
+ .focus\:text-accent-foreground {
1520
+ &:focus {
1521
+ color: var(--color-accent-foreground);
1522
+ }
1523
+ }
1524
+ .focus\:ring-2 {
1525
+ &:focus {
1526
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1527
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1528
+ }
1529
+ }
1530
+ .focus\:ring-ring {
1531
+ &:focus {
1532
+ --tw-ring-color: var(--color-ring);
1533
+ }
1534
+ }
1535
+ .focus\:ring-ring\/40 {
1536
+ &:focus {
1537
+ --tw-ring-color: color-mix(in srgb, hsl(var(--ring)) 40%, transparent);
1538
+ @supports (color: color-mix(in lab, red, red)) {
1539
+ --tw-ring-color: color-mix(in oklab, var(--color-ring) 40%, transparent);
1540
+ }
1541
+ }
1542
+ }
1543
+ .focus\:ring-offset-2 {
1544
+ &:focus {
1545
+ --tw-ring-offset-width: 2px;
1546
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1547
+ }
1548
+ }
1549
+ .focus\:outline-hidden {
1550
+ &:focus {
1551
+ --tw-outline-style: none;
1552
+ outline-style: none;
1553
+ @media (forced-colors: active) {
1554
+ outline: 2px solid transparent;
1555
+ outline-offset: 2px;
1556
+ }
1557
+ }
1558
+ }
1559
+ .focus-visible\:border-ring {
1560
+ &:focus-visible {
1561
+ border-color: var(--color-ring);
1562
+ }
1563
+ }
1564
+ .focus-visible\:ring-2 {
1565
+ &:focus-visible {
1566
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1567
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1568
+ }
1569
+ }
1570
+ .focus-visible\:ring-\[3px\] {
1571
+ &:focus-visible {
1572
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1573
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1574
+ }
1575
+ }
1576
+ .focus-visible\:ring-destructive\/20 {
1577
+ &:focus-visible {
1578
+ --tw-ring-color: color-mix(in srgb, hsl(var(--destructive)) 20%, transparent);
1579
+ @supports (color: color-mix(in lab, red, red)) {
1580
+ --tw-ring-color: color-mix(in oklab, var(--color-destructive) 20%, transparent);
1581
+ }
1582
+ }
1583
+ }
1584
+ .focus-visible\:ring-ring\/50 {
1585
+ &:focus-visible {
1586
+ --tw-ring-color: color-mix(in srgb, hsl(var(--ring)) 50%, transparent);
1587
+ @supports (color: color-mix(in lab, red, red)) {
1588
+ --tw-ring-color: color-mix(in oklab, var(--color-ring) 50%, transparent);
1589
+ }
1590
+ }
1591
+ }
1592
+ .active\:bg-sidebar-accent {
1593
+ &:active {
1594
+ background-color: var(--color-sidebar-accent);
1595
+ }
1596
+ }
1597
+ .active\:text-sidebar-accent-foreground {
1598
+ &:active {
1599
+ color: var(--color-sidebar-accent-foreground);
1600
+ }
1601
+ }
1602
+ .disabled\:pointer-events-none {
1603
+ &:disabled {
1604
+ pointer-events: none;
1605
+ }
1606
+ }
1607
+ .disabled\:cursor-not-allowed {
1608
+ &:disabled {
1609
+ cursor: not-allowed;
1610
+ }
1611
+ }
1612
+ .disabled\:opacity-50 {
1613
+ &:disabled {
1614
+ opacity: 50%;
1615
+ }
1616
+ }
1617
+ .in-data-\[side\=left\]\:cursor-w-resize {
1618
+ :where(*[data-side="left"]) & {
1619
+ cursor: w-resize;
1620
+ }
1621
+ }
1622
+ .in-data-\[side\=right\]\:cursor-e-resize {
1623
+ :where(*[data-side="right"]) & {
1624
+ cursor: e-resize;
1625
+ }
1626
+ }
1627
+ .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
1628
+ &:has(*[data-slot="card-action"]) {
1629
+ grid-template-columns: 1fr auto;
1630
+ }
1631
+ }
1632
+ .has-data-\[variant\=inset\]\:bg-sidebar {
1633
+ &:has(*[data-variant="inset"]) {
1634
+ background-color: var(--color-sidebar);
1635
+ }
1636
+ }
1637
+ .has-\[\>svg\]\:px-2\.5 {
1638
+ &:has(>svg) {
1639
+ padding-inline: calc(var(--spacing) * 2.5);
1640
+ }
1641
+ }
1642
+ .has-\[\>svg\]\:px-3 {
1643
+ &:has(>svg) {
1644
+ padding-inline: calc(var(--spacing) * 3);
1645
+ }
1646
+ }
1647
+ .has-\[\>svg\]\:px-4 {
1648
+ &:has(>svg) {
1649
+ padding-inline: calc(var(--spacing) * 4);
1650
+ }
1651
+ }
1652
+ .aria-disabled\:pointer-events-none {
1653
+ &[aria-disabled="true"] {
1654
+ pointer-events: none;
1655
+ }
1656
+ }
1657
+ .aria-disabled\:opacity-50 {
1658
+ &[aria-disabled="true"] {
1659
+ opacity: 50%;
1660
+ }
1661
+ }
1662
+ .aria-invalid\:border-destructive {
1663
+ &[aria-invalid="true"] {
1664
+ border-color: var(--color-destructive);
1665
+ }
1666
+ }
1667
+ .aria-invalid\:ring-destructive\/20 {
1668
+ &[aria-invalid="true"] {
1669
+ --tw-ring-color: color-mix(in srgb, hsl(var(--destructive)) 20%, transparent);
1670
+ @supports (color: color-mix(in lab, red, red)) {
1671
+ --tw-ring-color: color-mix(in oklab, var(--color-destructive) 20%, transparent);
1672
+ }
1673
+ }
1674
+ }
1675
+ .data-\[active\=true\]\:bg-sidebar-accent {
1676
+ &[data-active="true"] {
1677
+ background-color: var(--color-sidebar-accent);
1678
+ }
1679
+ }
1680
+ .data-\[active\=true\]\:font-medium {
1681
+ &[data-active="true"] {
1682
+ --tw-font-weight: var(--font-weight-medium);
1683
+ font-weight: var(--font-weight-medium);
1684
+ }
1685
+ }
1686
+ .data-\[active\=true\]\:text-sidebar-accent-foreground {
1687
+ &[data-active="true"] {
1688
+ color: var(--color-sidebar-accent-foreground);
1689
+ }
1690
+ }
1691
+ .data-\[disabled\]\:pointer-events-none {
1692
+ &[data-disabled] {
1693
+ pointer-events: none;
1694
+ }
1695
+ }
1696
+ .data-\[disabled\]\:opacity-50 {
1697
+ &[data-disabled] {
1698
+ opacity: 50%;
1699
+ }
1700
+ }
1701
+ .data-\[orientation\=horizontal\]\:h-px {
1702
+ &[data-orientation="horizontal"] {
1703
+ height: 1px;
1704
+ }
1705
+ }
1706
+ .data-\[orientation\=horizontal\]\:w-full {
1707
+ &[data-orientation="horizontal"] {
1708
+ width: 100%;
1709
+ }
1710
+ }
1711
+ .data-\[orientation\=vertical\]\:h-full {
1712
+ &[data-orientation="vertical"] {
1713
+ height: 100%;
1714
+ }
1715
+ }
1716
+ .data-\[orientation\=vertical\]\:w-px {
1717
+ &[data-orientation="vertical"] {
1718
+ width: 1px;
1719
+ }
1720
+ }
1721
+ .data-\[side\=bottom\]\:slide-in-from-top-2 {
1722
+ &[data-side="bottom"] {
1723
+ --tw-enter-translate-y: calc(2*var(--spacing)*-1);
1724
+ }
1725
+ }
1726
+ .data-\[side\=left\]\:slide-in-from-right-2 {
1727
+ &[data-side="left"] {
1728
+ --tw-enter-translate-x: calc(2*var(--spacing));
1729
+ }
1730
+ }
1731
+ .data-\[side\=right\]\:slide-in-from-left-2 {
1732
+ &[data-side="right"] {
1733
+ --tw-enter-translate-x: calc(2*var(--spacing)*-1);
1734
+ }
1735
+ }
1736
+ .data-\[side\=top\]\:slide-in-from-bottom-2 {
1737
+ &[data-side="top"] {
1738
+ --tw-enter-translate-y: calc(2*var(--spacing));
1739
+ }
1740
+ }
1741
+ .data-\[state\=closed\]\:pointer-events-none {
1742
+ &[data-state="closed"] {
1743
+ pointer-events: none;
1744
+ }
1745
+ }
1746
+ .data-\[state\=closed\]\:animate-out {
1747
+ &[data-state="closed"] {
1748
+ 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);
1749
+ }
1750
+ }
1751
+ .data-\[state\=closed\]\:duration-300 {
1752
+ &[data-state="closed"] {
1753
+ --tw-duration: 300ms;
1754
+ transition-duration: 300ms;
1755
+ }
1756
+ }
1757
+ .data-\[state\=closed\]\:fade-out-0 {
1758
+ &[data-state="closed"] {
1759
+ --tw-exit-opacity: calc(0/100);
1760
+ --tw-exit-opacity: 0;
1761
+ }
1762
+ }
1763
+ .data-\[state\=closed\]\:zoom-out-95 {
1764
+ &[data-state="closed"] {
1765
+ --tw-exit-scale: calc(95*1%);
1766
+ --tw-exit-scale: .95;
1767
+ }
1768
+ }
1769
+ .data-\[state\=closed\]\:slide-out-to-bottom {
1770
+ &[data-state="closed"] {
1771
+ --tw-exit-translate-y: 100%;
1772
+ }
1773
+ }
1774
+ .data-\[state\=closed\]\:slide-out-to-left {
1775
+ &[data-state="closed"] {
1776
+ --tw-exit-translate-x: -100%;
1777
+ }
1778
+ }
1779
+ .data-\[state\=closed\]\:slide-out-to-right {
1780
+ &[data-state="closed"] {
1781
+ --tw-exit-translate-x: 100%;
1782
+ }
1783
+ }
1784
+ .data-\[state\=closed\]\:slide-out-to-top {
1785
+ &[data-state="closed"] {
1786
+ --tw-exit-translate-y: -100%;
1787
+ }
1788
+ }
1789
+ .data-\[state\=open\]\:animate-in {
1790
+ &[data-state="open"] {
1791
+ 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);
1792
+ }
1793
+ }
1794
+ .data-\[state\=open\]\:bg-secondary {
1795
+ &[data-state="open"] {
1796
+ background-color: var(--color-secondary);
1797
+ }
1798
+ }
1799
+ .data-\[state\=open\]\:opacity-100 {
1800
+ &[data-state="open"] {
1801
+ opacity: 100%;
1802
+ }
1803
+ }
1804
+ .data-\[state\=open\]\:duration-500 {
1805
+ &[data-state="open"] {
1806
+ --tw-duration: 500ms;
1807
+ transition-duration: 500ms;
772
1808
  }
773
1809
  }
774
- .focus\:bg-accent {
775
- &:focus {
776
- background-color: var(--color-accent);
1810
+ .data-\[state\=open\]\:fade-in-0 {
1811
+ &[data-state="open"] {
1812
+ --tw-enter-opacity: calc(0/100);
1813
+ --tw-enter-opacity: 0;
777
1814
  }
778
1815
  }
779
- .focus\:text-accent-foreground {
780
- &:focus {
781
- color: var(--color-accent-foreground);
1816
+ .data-\[state\=open\]\:slide-in-from-bottom {
1817
+ &[data-state="open"] {
1818
+ --tw-enter-translate-y: 100%;
782
1819
  }
783
1820
  }
784
- .focus\:ring-2 {
785
- &:focus {
786
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
787
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1821
+ .data-\[state\=open\]\:slide-in-from-left {
1822
+ &[data-state="open"] {
1823
+ --tw-enter-translate-x: -100%;
788
1824
  }
789
1825
  }
790
- .focus\:ring-ring\/40 {
791
- &:focus {
792
- --tw-ring-color: color-mix(in srgb, hsl(var(--ring)) 40%, transparent);
793
- @supports (color: color-mix(in lab, red, red)) {
794
- --tw-ring-color: color-mix(in oklab, var(--color-ring) 40%, transparent);
795
- }
1826
+ .data-\[state\=open\]\:slide-in-from-right {
1827
+ &[data-state="open"] {
1828
+ --tw-enter-translate-x: 100%;
796
1829
  }
797
1830
  }
798
- .focus-visible\:border-ring {
799
- &:focus-visible {
800
- border-color: var(--color-ring);
1831
+ .data-\[state\=open\]\:slide-in-from-top {
1832
+ &[data-state="open"] {
1833
+ --tw-enter-translate-y: -100%;
801
1834
  }
802
1835
  }
803
- .focus-visible\:ring-\[3px\] {
804
- &:focus-visible {
805
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
806
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1836
+ .data-\[state\=open\]\:hover\:bg-sidebar-accent {
1837
+ &[data-state="open"] {
1838
+ &:hover {
1839
+ @media (hover: hover) {
1840
+ background-color: var(--color-sidebar-accent);
1841
+ }
1842
+ }
807
1843
  }
808
1844
  }
809
- .focus-visible\:ring-destructive\/20 {
810
- &:focus-visible {
811
- --tw-ring-color: color-mix(in srgb, hsl(var(--destructive)) 20%, transparent);
812
- @supports (color: color-mix(in lab, red, red)) {
813
- --tw-ring-color: color-mix(in oklab, var(--color-destructive) 20%, transparent);
1845
+ .data-\[state\=open\]\:hover\:text-sidebar-accent-foreground {
1846
+ &[data-state="open"] {
1847
+ &:hover {
1848
+ @media (hover: hover) {
1849
+ color: var(--color-sidebar-accent-foreground);
1850
+ }
814
1851
  }
815
1852
  }
816
1853
  }
817
- .focus-visible\:ring-ring\/50 {
818
- &:focus-visible {
819
- --tw-ring-color: color-mix(in srgb, hsl(var(--ring)) 50%, transparent);
1854
+ .supports-\[backdrop-filter\]\:bg-background\/80 {
1855
+ @supports (backdrop-filter: var(--tw)) {
1856
+ background-color: color-mix(in srgb, hsl(var(--background)) 80%, transparent);
820
1857
  @supports (color: color-mix(in lab, red, red)) {
821
- --tw-ring-color: color-mix(in oklab, var(--color-ring) 50%, transparent);
1858
+ background-color: color-mix(in oklab, var(--color-background) 80%, transparent);
822
1859
  }
823
1860
  }
824
1861
  }
825
- .disabled\:pointer-events-none {
826
- &:disabled {
827
- pointer-events: none;
1862
+ .sm\:flex {
1863
+ @media (width >= 40rem) {
1864
+ display: flex;
828
1865
  }
829
1866
  }
830
- .disabled\:cursor-not-allowed {
831
- &:disabled {
832
- cursor: not-allowed;
1867
+ .sm\:max-w-sm {
1868
+ @media (width >= 40rem) {
1869
+ max-width: var(--container-sm);
833
1870
  }
834
1871
  }
835
- .disabled\:opacity-50 {
836
- &:disabled {
837
- opacity: 50%;
1872
+ .md\:block {
1873
+ @media (width >= 48rem) {
1874
+ display: block;
838
1875
  }
839
1876
  }
840
- .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
841
- &:has(*[data-slot="card-action"]) {
842
- grid-template-columns: 1fr auto;
1877
+ .md\:flex {
1878
+ @media (width >= 48rem) {
1879
+ display: flex;
843
1880
  }
844
1881
  }
845
- .has-\[\>svg\]\:px-2\.5 {
846
- &:has(>svg) {
847
- padding-inline: calc(var(--spacing) * 2.5);
1882
+ .md\:h-screen {
1883
+ @media (width >= 48rem) {
1884
+ height: 100vh;
848
1885
  }
849
1886
  }
850
- .has-\[\>svg\]\:px-3 {
851
- &:has(>svg) {
852
- padding-inline: calc(var(--spacing) * 3);
1887
+ .md\:grid-cols-3 {
1888
+ @media (width >= 48rem) {
1889
+ grid-template-columns: repeat(3, minmax(0, 1fr));
853
1890
  }
854
1891
  }
855
- .has-\[\>svg\]\:px-4 {
856
- &:has(>svg) {
857
- padding-inline: calc(var(--spacing) * 4);
1892
+ .md\:text-sm {
1893
+ @media (width >= 48rem) {
1894
+ font-size: var(--text-sm);
1895
+ line-height: var(--tw-leading, var(--text-sm--line-height));
858
1896
  }
859
1897
  }
860
- .aria-invalid\:border-destructive {
861
- &[aria-invalid="true"] {
862
- border-color: var(--color-destructive);
1898
+ .md\:opacity-0 {
1899
+ @media (width >= 48rem) {
1900
+ opacity: 0%;
863
1901
  }
864
1902
  }
865
- .aria-invalid\:ring-destructive\/20 {
866
- &[aria-invalid="true"] {
867
- --tw-ring-color: color-mix(in srgb, hsl(var(--destructive)) 20%, transparent);
868
- @supports (color: color-mix(in lab, red, red)) {
869
- --tw-ring-color: color-mix(in oklab, var(--color-destructive) 20%, transparent);
1903
+ .md\:peer-data-\[variant\=inset\]\:m-2 {
1904
+ @media (width >= 48rem) {
1905
+ &:is(:where(.peer)[data-variant="inset"] ~ *) {
1906
+ margin: calc(var(--spacing) * 2);
870
1907
  }
871
1908
  }
872
1909
  }
873
- .data-\[disabled\]\:pointer-events-none {
874
- &[data-disabled] {
875
- pointer-events: none;
876
- }
877
- }
878
- .data-\[disabled\]\:opacity-50 {
879
- &[data-disabled] {
880
- opacity: 50%;
1910
+ .md\:peer-data-\[variant\=inset\]\:ml-0 {
1911
+ @media (width >= 48rem) {
1912
+ &:is(:where(.peer)[data-variant="inset"] ~ *) {
1913
+ margin-left: calc(var(--spacing) * 0);
1914
+ }
881
1915
  }
882
1916
  }
883
- .md\:grid-cols-2 {
1917
+ .md\:peer-data-\[variant\=inset\]\:rounded-xl {
884
1918
  @media (width >= 48rem) {
885
- grid-template-columns: repeat(2, minmax(0, 1fr));
1919
+ &:is(:where(.peer)[data-variant="inset"] ~ *) {
1920
+ border-radius: var(--radius-xl);
1921
+ }
886
1922
  }
887
1923
  }
888
- .md\:text-sm {
1924
+ .md\:peer-data-\[variant\=inset\]\:shadow-sm {
889
1925
  @media (width >= 48rem) {
890
- font-size: var(--text-sm);
891
- line-height: var(--tw-leading, var(--text-sm--line-height));
1926
+ &:is(:where(.peer)[data-variant="inset"] ~ *) {
1927
+ --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));
1928
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1929
+ }
892
1930
  }
893
1931
  }
894
- .lg\:flex-row {
895
- @media (width >= 64rem) {
896
- flex-direction: row;
1932
+ .md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2 {
1933
+ @media (width >= 48rem) {
1934
+ &:is(:where(.peer)[data-variant="inset"] ~ *) {
1935
+ &:is(:where(.peer)[data-state="collapsed"] ~ *) {
1936
+ margin-left: calc(var(--spacing) * 2);
1937
+ }
1938
+ }
897
1939
  }
898
1940
  }
899
- .lg\:items-center {
900
- @media (width >= 64rem) {
901
- align-items: center;
1941
+ .md\:after\:hidden {
1942
+ @media (width >= 48rem) {
1943
+ &::after {
1944
+ content: var(--tw-content);
1945
+ display: none;
1946
+ }
902
1947
  }
903
1948
  }
904
- .lg\:justify-between {
1949
+ .lg\:grid-cols-3 {
905
1950
  @media (width >= 64rem) {
906
- justify-content: space-between;
907
- }
908
- }
909
- .xl\:grid-cols-3 {
910
- @media (width >= 80rem) {
911
1951
  grid-template-columns: repeat(3, minmax(0, 1fr));
912
1952
  }
913
1953
  }
914
- .xl\:grid-cols-5 {
915
- @media (width >= 80rem) {
1954
+ .lg\:grid-cols-5 {
1955
+ @media (width >= 64rem) {
916
1956
  grid-template-columns: repeat(5, minmax(0, 1fr));
917
1957
  }
918
1958
  }
@@ -1007,6 +2047,18 @@
1007
2047
  padding-top: calc(var(--spacing) * 6);
1008
2048
  }
1009
2049
  }
2050
+ .\[\&\>button\]\:hidden {
2051
+ &>button {
2052
+ display: none;
2053
+ }
2054
+ }
2055
+ .\[\&\>span\:last-child\]\:truncate {
2056
+ &>span:last-child {
2057
+ overflow: hidden;
2058
+ text-overflow: ellipsis;
2059
+ white-space: nowrap;
2060
+ }
2061
+ }
1010
2062
  .\[\&\>svg\]\:pointer-events-none {
1011
2063
  &>svg {
1012
2064
  pointer-events: none;
@@ -1018,6 +2070,42 @@
1018
2070
  height: calc(var(--spacing) * 3);
1019
2071
  }
1020
2072
  }
2073
+ .\[\&\>svg\]\:size-4 {
2074
+ &>svg {
2075
+ width: calc(var(--spacing) * 4);
2076
+ height: calc(var(--spacing) * 4);
2077
+ }
2078
+ }
2079
+ .\[\&\>svg\]\:shrink-0 {
2080
+ &>svg {
2081
+ flex-shrink: 0;
2082
+ }
2083
+ }
2084
+ .\[\&\>svg\]\:text-sidebar-accent-foreground {
2085
+ &>svg {
2086
+ color: var(--color-sidebar-accent-foreground);
2087
+ }
2088
+ }
2089
+ .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
2090
+ [data-side=left][data-collapsible=offcanvas] & {
2091
+ right: calc(var(--spacing) * -2);
2092
+ }
2093
+ }
2094
+ .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize {
2095
+ [data-side=left][data-state=collapsed] & {
2096
+ cursor: e-resize;
2097
+ }
2098
+ }
2099
+ .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 {
2100
+ [data-side=right][data-collapsible=offcanvas] & {
2101
+ left: calc(var(--spacing) * -2);
2102
+ }
2103
+ }
2104
+ .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
2105
+ [data-side=right][data-state=collapsed] & {
2106
+ cursor: w-resize;
2107
+ }
2108
+ }
1021
2109
  .\[a\&\]\:hover\:bg-accent {
1022
2110
  a& {
1023
2111
  &:hover {
@@ -1073,6 +2161,90 @@
1073
2161
  }
1074
2162
  }
1075
2163
  }
2164
+ @property --tw-animation-delay {
2165
+ syntax: "*";
2166
+ inherits: false;
2167
+ initial-value: 0s;
2168
+ }
2169
+ @property --tw-animation-direction {
2170
+ syntax: "*";
2171
+ inherits: false;
2172
+ initial-value: normal;
2173
+ }
2174
+ @property --tw-animation-duration {
2175
+ syntax: "*";
2176
+ inherits: false;
2177
+ }
2178
+ @property --tw-animation-fill-mode {
2179
+ syntax: "*";
2180
+ inherits: false;
2181
+ initial-value: none;
2182
+ }
2183
+ @property --tw-animation-iteration-count {
2184
+ syntax: "*";
2185
+ inherits: false;
2186
+ initial-value: 1;
2187
+ }
2188
+ @property --tw-enter-blur {
2189
+ syntax: "*";
2190
+ inherits: false;
2191
+ initial-value: 0;
2192
+ }
2193
+ @property --tw-enter-opacity {
2194
+ syntax: "*";
2195
+ inherits: false;
2196
+ initial-value: 1;
2197
+ }
2198
+ @property --tw-enter-rotate {
2199
+ syntax: "*";
2200
+ inherits: false;
2201
+ initial-value: 0;
2202
+ }
2203
+ @property --tw-enter-scale {
2204
+ syntax: "*";
2205
+ inherits: false;
2206
+ initial-value: 1;
2207
+ }
2208
+ @property --tw-enter-translate-x {
2209
+ syntax: "*";
2210
+ inherits: false;
2211
+ initial-value: 0;
2212
+ }
2213
+ @property --tw-enter-translate-y {
2214
+ syntax: "*";
2215
+ inherits: false;
2216
+ initial-value: 0;
2217
+ }
2218
+ @property --tw-exit-blur {
2219
+ syntax: "*";
2220
+ inherits: false;
2221
+ initial-value: 0;
2222
+ }
2223
+ @property --tw-exit-opacity {
2224
+ syntax: "*";
2225
+ inherits: false;
2226
+ initial-value: 1;
2227
+ }
2228
+ @property --tw-exit-rotate {
2229
+ syntax: "*";
2230
+ inherits: false;
2231
+ initial-value: 0;
2232
+ }
2233
+ @property --tw-exit-scale {
2234
+ syntax: "*";
2235
+ inherits: false;
2236
+ initial-value: 1;
2237
+ }
2238
+ @property --tw-exit-translate-x {
2239
+ syntax: "*";
2240
+ inherits: false;
2241
+ initial-value: 0;
2242
+ }
2243
+ @property --tw-exit-translate-y {
2244
+ syntax: "*";
2245
+ inherits: false;
2246
+ initial-value: 0;
2247
+ }
1076
2248
  @layer base {
1077
2249
  :root {
1078
2250
  --background: 0 0% 100%;
@@ -1095,6 +2267,14 @@
1095
2267
  --input: 214.3 31.8% 91.4%;
1096
2268
  --ring: 221.2 83.2% 53.3%;
1097
2269
  --radius: 0.75rem;
2270
+ --sidebar-background: 0 0% 98%;
2271
+ --sidebar-foreground: 240 5.3% 26.1%;
2272
+ --sidebar-primary: 240 5.9% 10%;
2273
+ --sidebar-primary-foreground: 0 0% 98%;
2274
+ --sidebar-accent: 240 4.8% 95.9%;
2275
+ --sidebar-accent-foreground: 240 5.9% 10%;
2276
+ --sidebar-border: 220 13% 91%;
2277
+ --sidebar-ring: 217.2 91.2% 59.8%;
1098
2278
  }
1099
2279
  .dark {
1100
2280
  --background: 222.2 84% 4.9%;
@@ -1116,6 +2296,14 @@
1116
2296
  --border: 217.2 32.6% 17.5%;
1117
2297
  --input: 217.2 32.6% 17.5%;
1118
2298
  --ring: 224.3 76.3% 94.1%;
2299
+ --sidebar-background: 240 5.9% 10%;
2300
+ --sidebar-foreground: 240 4.8% 95.9%;
2301
+ --sidebar-primary: 224.3 76.3% 48%;
2302
+ --sidebar-primary-foreground: 0 0% 100%;
2303
+ --sidebar-accent: 240 3.7% 15.9%;
2304
+ --sidebar-accent-foreground: 240 4.8% 95.9%;
2305
+ --sidebar-border: 240 3.7% 15.9%;
2306
+ --sidebar-ring: 217.2 91.2% 59.8%;
1119
2307
  }
1120
2308
  :root[data-brand="default"], :root:not([data-brand]) {
1121
2309
  --background: 0 0% 100%;
@@ -1296,6 +2484,11 @@
1296
2484
  inherits: false;
1297
2485
  initial-value: 0;
1298
2486
  }
2487
+ @property --tw-divide-y-reverse {
2488
+ syntax: "*";
2489
+ inherits: false;
2490
+ initial-value: 0;
2491
+ }
1299
2492
  @property --tw-border-style {
1300
2493
  syntax: "*";
1301
2494
  inherits: false;
@@ -1313,6 +2506,26 @@
1313
2506
  syntax: "*";
1314
2507
  inherits: false;
1315
2508
  }
2509
+ @property --tw-ordinal {
2510
+ syntax: "*";
2511
+ inherits: false;
2512
+ }
2513
+ @property --tw-slashed-zero {
2514
+ syntax: "*";
2515
+ inherits: false;
2516
+ }
2517
+ @property --tw-numeric-figure {
2518
+ syntax: "*";
2519
+ inherits: false;
2520
+ }
2521
+ @property --tw-numeric-spacing {
2522
+ syntax: "*";
2523
+ inherits: false;
2524
+ }
2525
+ @property --tw-numeric-fraction {
2526
+ syntax: "*";
2527
+ inherits: false;
2528
+ }
1316
2529
  @property --tw-shadow {
1317
2530
  syntax: "*";
1318
2531
  inherits: false;
@@ -1383,6 +2596,79 @@
1383
2596
  inherits: false;
1384
2597
  initial-value: solid;
1385
2598
  }
2599
+ @property --tw-backdrop-blur {
2600
+ syntax: "*";
2601
+ inherits: false;
2602
+ }
2603
+ @property --tw-backdrop-brightness {
2604
+ syntax: "*";
2605
+ inherits: false;
2606
+ }
2607
+ @property --tw-backdrop-contrast {
2608
+ syntax: "*";
2609
+ inherits: false;
2610
+ }
2611
+ @property --tw-backdrop-grayscale {
2612
+ syntax: "*";
2613
+ inherits: false;
2614
+ }
2615
+ @property --tw-backdrop-hue-rotate {
2616
+ syntax: "*";
2617
+ inherits: false;
2618
+ }
2619
+ @property --tw-backdrop-invert {
2620
+ syntax: "*";
2621
+ inherits: false;
2622
+ }
2623
+ @property --tw-backdrop-opacity {
2624
+ syntax: "*";
2625
+ inherits: false;
2626
+ }
2627
+ @property --tw-backdrop-saturate {
2628
+ syntax: "*";
2629
+ inherits: false;
2630
+ }
2631
+ @property --tw-backdrop-sepia {
2632
+ syntax: "*";
2633
+ inherits: false;
2634
+ }
2635
+ @property --tw-duration {
2636
+ syntax: "*";
2637
+ inherits: false;
2638
+ }
2639
+ @property --tw-ease {
2640
+ syntax: "*";
2641
+ inherits: false;
2642
+ }
2643
+ @property --tw-content {
2644
+ syntax: "*";
2645
+ initial-value: "";
2646
+ inherits: false;
2647
+ }
2648
+ @keyframes spin {
2649
+ to {
2650
+ transform: rotate(360deg);
2651
+ }
2652
+ }
2653
+ @keyframes pulse {
2654
+ 50% {
2655
+ opacity: 0.5;
2656
+ }
2657
+ }
2658
+ @keyframes enter {
2659
+ from {
2660
+ opacity: var(--tw-enter-opacity,1);
2661
+ 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));
2662
+ filter: blur(var(--tw-enter-blur,0));
2663
+ }
2664
+ }
2665
+ @keyframes exit {
2666
+ to {
2667
+ opacity: var(--tw-exit-opacity,1);
2668
+ 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));
2669
+ filter: blur(var(--tw-exit-blur,0));
2670
+ }
2671
+ }
1386
2672
  @layer properties {
1387
2673
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1388
2674
  *, ::before, ::after, ::backdrop {
@@ -1390,10 +2676,16 @@
1390
2676
  --tw-translate-y: 0;
1391
2677
  --tw-translate-z: 0;
1392
2678
  --tw-space-y-reverse: 0;
2679
+ --tw-divide-y-reverse: 0;
1393
2680
  --tw-border-style: solid;
1394
2681
  --tw-leading: initial;
1395
2682
  --tw-font-weight: initial;
1396
2683
  --tw-tracking: initial;
2684
+ --tw-ordinal: initial;
2685
+ --tw-slashed-zero: initial;
2686
+ --tw-numeric-figure: initial;
2687
+ --tw-numeric-spacing: initial;
2688
+ --tw-numeric-fraction: initial;
1397
2689
  --tw-shadow: 0 0 #0000;
1398
2690
  --tw-shadow-color: initial;
1399
2691
  --tw-shadow-alpha: 100%;
@@ -1409,6 +2701,35 @@
1409
2701
  --tw-ring-offset-color: #fff;
1410
2702
  --tw-ring-offset-shadow: 0 0 #0000;
1411
2703
  --tw-outline-style: solid;
2704
+ --tw-backdrop-blur: initial;
2705
+ --tw-backdrop-brightness: initial;
2706
+ --tw-backdrop-contrast: initial;
2707
+ --tw-backdrop-grayscale: initial;
2708
+ --tw-backdrop-hue-rotate: initial;
2709
+ --tw-backdrop-invert: initial;
2710
+ --tw-backdrop-opacity: initial;
2711
+ --tw-backdrop-saturate: initial;
2712
+ --tw-backdrop-sepia: initial;
2713
+ --tw-duration: initial;
2714
+ --tw-ease: initial;
2715
+ --tw-content: "";
2716
+ --tw-animation-delay: 0s;
2717
+ --tw-animation-direction: normal;
2718
+ --tw-animation-duration: initial;
2719
+ --tw-animation-fill-mode: none;
2720
+ --tw-animation-iteration-count: 1;
2721
+ --tw-enter-blur: 0;
2722
+ --tw-enter-opacity: 1;
2723
+ --tw-enter-rotate: 0;
2724
+ --tw-enter-scale: 1;
2725
+ --tw-enter-translate-x: 0;
2726
+ --tw-enter-translate-y: 0;
2727
+ --tw-exit-blur: 0;
2728
+ --tw-exit-opacity: 1;
2729
+ --tw-exit-rotate: 0;
2730
+ --tw-exit-scale: 1;
2731
+ --tw-exit-translate-x: 0;
2732
+ --tw-exit-translate-y: 0;
1412
2733
  }
1413
2734
  }
1414
2735
  }