@pactor-app/ui 0.1.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/styles.css CHANGED
@@ -8,6 +8,10 @@
8
8
  "Segoe UI Symbol", "Noto Color Emoji";
9
9
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
10
10
  "Courier New", monospace;
11
+ --color-amber-400: oklch(82.8% 0.189 84.429);
12
+ --color-amber-600: oklch(66.6% 0.179 58.318);
13
+ --color-green-400: oklch(79.2% 0.209 151.711);
14
+ --color-green-600: oklch(62.7% 0.194 149.214);
11
15
  --color-black: #000;
12
16
  --spacing: 0.25rem;
13
17
  --container-sm: 24rem;
@@ -16,19 +20,28 @@
16
20
  --text-xs--line-height: calc(1 / 0.75);
17
21
  --text-sm: 0.875rem;
18
22
  --text-sm--line-height: calc(1.25 / 0.875);
23
+ --text-base: 1rem;
24
+ --text-base--line-height: calc(1.5 / 1);
19
25
  --text-lg: 1.125rem;
20
26
  --text-lg--line-height: calc(1.75 / 1.125);
21
27
  --text-xl: 1.25rem;
22
28
  --text-xl--line-height: calc(1.75 / 1.25);
23
29
  --text-2xl: 1.5rem;
24
30
  --text-2xl--line-height: calc(2 / 1.5);
31
+ --text-3xl: 1.875rem;
32
+ --text-3xl--line-height: calc(2.25 / 1.875);
33
+ --text-4xl: 2.25rem;
34
+ --text-4xl--line-height: calc(2.5 / 2.25);
25
35
  --font-weight-normal: 400;
26
36
  --font-weight-medium: 500;
27
37
  --font-weight-semibold: 600;
28
38
  --font-weight-bold: 700;
39
+ --font-weight-extrabold: 800;
29
40
  --tracking-tight: -0.025em;
30
41
  --leading-relaxed: 1.625;
31
42
  --radius-xs: 0.125rem;
43
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
44
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
32
45
  --animate-spin: spin 1s linear infinite;
33
46
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
34
47
  --default-transition-duration: 150ms;
@@ -189,6 +202,15 @@
189
202
  .pointer-events-none {
190
203
  pointer-events: none;
191
204
  }
205
+ .collapse {
206
+ visibility: collapse;
207
+ }
208
+ .invisible {
209
+ visibility: hidden;
210
+ }
211
+ .visible {
212
+ visibility: visible;
213
+ }
192
214
  .sr-only {
193
215
  position: absolute;
194
216
  width: 1px;
@@ -218,12 +240,21 @@
218
240
  .inset-0 {
219
241
  inset: 0px;
220
242
  }
243
+ .inset-x-0 {
244
+ inset-inline: 0px;
245
+ }
221
246
  .inset-y-0 {
222
247
  inset-block: 0px;
223
248
  }
249
+ .-top-12 {
250
+ top: calc(var(--spacing) * -12);
251
+ }
224
252
  .top-0 {
225
253
  top: 0px;
226
254
  }
255
+ .top-1\/2 {
256
+ top: calc(1 / 2 * 100%);
257
+ }
227
258
  .top-4 {
228
259
  top: calc(var(--spacing) * 4);
229
260
  }
@@ -233,6 +264,12 @@
233
264
  .top-\[50\%\] {
234
265
  top: 50%;
235
266
  }
267
+ .top-px {
268
+ top: 1px;
269
+ }
270
+ .-right-12 {
271
+ right: calc(var(--spacing) * -12);
272
+ }
236
273
  .right-0 {
237
274
  right: 0px;
238
275
  }
@@ -242,9 +279,21 @@
242
279
  .right-4 {
243
280
  right: calc(var(--spacing) * 4);
244
281
  }
282
+ .-bottom-12 {
283
+ bottom: calc(var(--spacing) * -12);
284
+ }
245
285
  .bottom-0 {
246
286
  bottom: 0px;
247
287
  }
288
+ .-left-12 {
289
+ left: calc(var(--spacing) * -12);
290
+ }
291
+ .left-0 {
292
+ left: 0px;
293
+ }
294
+ .left-1\/2 {
295
+ left: calc(1 / 2 * 100%);
296
+ }
248
297
  .left-\[50\%\] {
249
298
  left: 50%;
250
299
  }
@@ -263,6 +312,12 @@
263
312
  .z-\[100\] {
264
313
  z-index: 100;
265
314
  }
315
+ .order-first {
316
+ order: -9999;
317
+ }
318
+ .order-last {
319
+ order: 9999;
320
+ }
266
321
  .col-start-2 {
267
322
  grid-column-start: 2;
268
323
  }
@@ -299,27 +354,63 @@
299
354
  .my-1 {
300
355
  margin-block: var(--spacing);
301
356
  }
357
+ .my-6 {
358
+ margin-block: calc(var(--spacing) * 6);
359
+ }
360
+ .-mt-4 {
361
+ margin-top: calc(var(--spacing) * -4);
362
+ }
363
+ .mt-1\.5 {
364
+ margin-top: calc(var(--spacing) * 1.5);
365
+ }
366
+ .mt-2 {
367
+ margin-top: calc(var(--spacing) * 2);
368
+ }
302
369
  .mt-3 {
303
370
  margin-top: calc(var(--spacing) * 3);
304
371
  }
305
372
  .mt-4 {
306
373
  margin-top: calc(var(--spacing) * 4);
307
374
  }
375
+ .mt-6 {
376
+ margin-top: calc(var(--spacing) * 6);
377
+ }
378
+ .mt-auto {
379
+ margin-top: auto;
380
+ }
308
381
  .mb-4 {
309
382
  margin-bottom: calc(var(--spacing) * 4);
310
383
  }
311
384
  .mb-5 {
312
385
  margin-bottom: calc(var(--spacing) * 5);
313
386
  }
387
+ .-ml-4 {
388
+ margin-left: calc(var(--spacing) * -4);
389
+ }
314
390
  .ml-1 {
315
391
  margin-left: var(--spacing);
316
392
  }
393
+ .ml-6 {
394
+ margin-left: calc(var(--spacing) * 6);
395
+ }
396
+ .ml-auto {
397
+ margin-left: auto;
398
+ }
317
399
  .line-clamp-1 {
318
400
  overflow: hidden;
319
401
  display: -webkit-box;
320
402
  -webkit-box-orient: vertical;
321
403
  -webkit-line-clamp: 1;
322
404
  }
405
+ .line-clamp-2 {
406
+ overflow: hidden;
407
+ display: -webkit-box;
408
+ -webkit-box-orient: vertical;
409
+ -webkit-line-clamp: 2;
410
+ }
411
+ .block {
412
+ display: block;
413
+ }
323
414
  .flex {
324
415
  display: flex;
325
416
  }
@@ -332,6 +423,9 @@
332
423
  .inline {
333
424
  display: inline;
334
425
  }
426
+ .inline-block {
427
+ display: inline-block;
428
+ }
335
429
  .inline-flex {
336
430
  display: inline-flex;
337
431
  }
@@ -350,6 +444,21 @@
350
444
  .field-sizing-content {
351
445
  field-sizing: content;
352
446
  }
447
+ .aspect-square {
448
+ aspect-ratio: 1 / 1;
449
+ }
450
+ .size-2 {
451
+ width: calc(var(--spacing) * 2);
452
+ height: calc(var(--spacing) * 2);
453
+ }
454
+ .size-2\.5 {
455
+ width: calc(var(--spacing) * 2.5);
456
+ height: calc(var(--spacing) * 2.5);
457
+ }
458
+ .size-3 {
459
+ width: calc(var(--spacing) * 3);
460
+ height: calc(var(--spacing) * 3);
461
+ }
353
462
  .size-3\.5 {
354
463
  width: calc(var(--spacing) * 3.5);
355
464
  height: calc(var(--spacing) * 3.5);
@@ -358,6 +467,18 @@
358
467
  width: calc(var(--spacing) * 4);
359
468
  height: calc(var(--spacing) * 4);
360
469
  }
470
+ .size-6 {
471
+ width: calc(var(--spacing) * 6);
472
+ height: calc(var(--spacing) * 6);
473
+ }
474
+ .size-7 {
475
+ width: calc(var(--spacing) * 7);
476
+ height: calc(var(--spacing) * 7);
477
+ }
478
+ .size-8 {
479
+ width: calc(var(--spacing) * 8);
480
+ height: calc(var(--spacing) * 8);
481
+ }
361
482
  .size-9 {
362
483
  width: calc(var(--spacing) * 9);
363
484
  height: calc(var(--spacing) * 9);
@@ -366,6 +487,25 @@
366
487
  width: calc(var(--spacing) * 10);
367
488
  height: calc(var(--spacing) * 10);
368
489
  }
490
+ .size-full {
491
+ width: 100%;
492
+ height: 100%;
493
+ }
494
+ .h-1\.5 {
495
+ height: calc(var(--spacing) * 1.5);
496
+ }
497
+ .h-2 {
498
+ height: calc(var(--spacing) * 2);
499
+ }
500
+ .h-4 {
501
+ height: calc(var(--spacing) * 4);
502
+ }
503
+ .h-5 {
504
+ height: calc(var(--spacing) * 5);
505
+ }
506
+ .h-7 {
507
+ height: calc(var(--spacing) * 7);
508
+ }
369
509
  .h-8 {
370
510
  height: calc(var(--spacing) * 8);
371
511
  }
@@ -378,12 +518,24 @@
378
518
  .h-14 {
379
519
  height: calc(var(--spacing) * 14);
380
520
  }
521
+ .h-24 {
522
+ height: calc(var(--spacing) * 24);
523
+ }
524
+ .h-64 {
525
+ height: calc(var(--spacing) * 64);
526
+ }
527
+ .h-\[1\.15rem\] {
528
+ height: 1.15rem;
529
+ }
381
530
  .h-\[calc\(100\%-1px\)\] {
382
531
  height: calc(100% - 1px);
383
532
  }
384
533
  .h-\[calc\(100vh-3\.5rem\)\] {
385
534
  height: calc(100vh - 3.5rem);
386
535
  }
536
+ .h-auto {
537
+ height: auto;
538
+ }
387
539
  .h-full {
388
540
  height: 100%;
389
541
  }
@@ -393,12 +545,18 @@
393
545
  .h-screen {
394
546
  height: 100vh;
395
547
  }
548
+ .max-h-\(--available-height\) {
549
+ max-height: var(--available-height);
550
+ }
396
551
  .max-h-96 {
397
552
  max-height: calc(var(--spacing) * 96);
398
553
  }
399
554
  .max-h-\[70vh\] {
400
555
  max-height: 70vh;
401
556
  }
557
+ .max-h-\[300px\] {
558
+ max-height: 300px;
559
+ }
402
560
  .min-h-0 {
403
561
  min-height: 0px;
404
562
  }
@@ -411,9 +569,27 @@
411
569
  .min-h-screen {
412
570
  min-height: 100vh;
413
571
  }
572
+ .w-2 {
573
+ width: calc(var(--spacing) * 2);
574
+ }
575
+ .w-3 {
576
+ width: calc(var(--spacing) * 3);
577
+ }
578
+ .w-3\/4 {
579
+ width: calc(3 / 4 * 100%);
580
+ }
581
+ .w-8 {
582
+ width: calc(var(--spacing) * 8);
583
+ }
584
+ .w-9 {
585
+ width: calc(var(--spacing) * 9);
586
+ }
414
587
  .w-12 {
415
588
  width: calc(var(--spacing) * 12);
416
589
  }
590
+ .w-14 {
591
+ width: calc(var(--spacing) * 14);
592
+ }
417
593
  .w-16 {
418
594
  width: calc(var(--spacing) * 16);
419
595
  }
@@ -423,14 +599,23 @@
423
599
  .w-52 {
424
600
  width: calc(var(--spacing) * 52);
425
601
  }
602
+ .w-60 {
603
+ width: calc(var(--spacing) * 60);
604
+ }
605
+ .w-64 {
606
+ width: calc(var(--spacing) * 64);
607
+ }
426
608
  .w-72 {
427
609
  width: calc(var(--spacing) * 72);
428
610
  }
429
611
  .w-80 {
430
612
  width: calc(var(--spacing) * 80);
431
613
  }
432
- .w-96 {
433
- width: calc(var(--spacing) * 96);
614
+ .w-\[--anchor-width\] {
615
+ width: --anchor-width;
616
+ }
617
+ .w-\[100px\] {
618
+ width: 100px;
434
619
  }
435
620
  .w-fit {
436
621
  width: fit-content;
@@ -438,11 +623,17 @@
438
623
  .w-full {
439
624
  width: 100%;
440
625
  }
626
+ .w-max {
627
+ width: max-content;
628
+ }
629
+ .w-px {
630
+ width: 1px;
631
+ }
441
632
  .max-w-\[calc\(100\%-2rem\)\] {
442
633
  max-width: calc(100% - 2rem);
443
634
  }
444
- .max-w-full {
445
- max-width: 100%;
635
+ .max-w-max {
636
+ max-width: max-content;
446
637
  }
447
638
  .max-w-sm {
448
639
  max-width: var(--container-sm);
@@ -450,6 +641,24 @@
450
641
  .min-w-0 {
451
642
  min-width: 0px;
452
643
  }
644
+ .min-w-5 {
645
+ min-width: calc(var(--spacing) * 5);
646
+ }
647
+ .min-w-8 {
648
+ min-width: calc(var(--spacing) * 8);
649
+ }
650
+ .min-w-9 {
651
+ min-width: calc(var(--spacing) * 9);
652
+ }
653
+ .min-w-10 {
654
+ min-width: calc(var(--spacing) * 10);
655
+ }
656
+ .min-w-32 {
657
+ min-width: calc(var(--spacing) * 32);
658
+ }
659
+ .min-w-36 {
660
+ min-width: calc(var(--spacing) * 36);
661
+ }
453
662
  .min-w-\[8rem\] {
454
663
  min-width: 8rem;
455
664
  }
@@ -459,13 +668,36 @@
459
668
  .shrink-0 {
460
669
  flex-shrink: 0;
461
670
  }
671
+ .grow {
672
+ flex-grow: 1;
673
+ }
674
+ .grow-0 {
675
+ flex-grow: 0;
676
+ }
677
+ .basis-full {
678
+ flex-basis: 100%;
679
+ }
462
680
  .caption-bottom {
463
681
  caption-side: bottom;
464
682
  }
683
+ .border-collapse {
684
+ border-collapse: collapse;
685
+ }
686
+ .origin-\(--transform-origin\) {
687
+ transform-origin: var(--transform-origin);
688
+ }
689
+ .-translate-x-1\/2 {
690
+ --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
691
+ translate: var(--tw-translate-x) var(--tw-translate-y);
692
+ }
465
693
  .translate-x-\[-50\%\] {
466
694
  --tw-translate-x: -50%;
467
695
  translate: var(--tw-translate-x) var(--tw-translate-y);
468
696
  }
697
+ .-translate-y-1\/2 {
698
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
699
+ translate: var(--tw-translate-x) var(--tw-translate-y);
700
+ }
469
701
  .translate-y-0\.5 {
470
702
  --tw-translate-y: calc(var(--spacing) * 0.5);
471
703
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -474,9 +706,25 @@
474
706
  --tw-translate-y: -50%;
475
707
  translate: var(--tw-translate-x) var(--tw-translate-y);
476
708
  }
709
+ .translate-y-\[calc\(-50\%_-_2px\)\] {
710
+ --tw-translate-y: calc(-50% - 2px);
711
+ translate: var(--tw-translate-x) var(--tw-translate-y);
712
+ }
713
+ .rotate-45 {
714
+ rotate: 45deg;
715
+ }
716
+ .rotate-90 {
717
+ rotate: 90deg;
718
+ }
719
+ .transform {
720
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
721
+ }
477
722
  .animate-\[accordion-\*\] {
478
723
  animation: accordion-*;
479
724
  }
725
+ .animate-caret-blink {
726
+ animation: caret-blink 1.25s ease-out infinite;
727
+ }
480
728
  .animate-pulse {
481
729
  animation: var(--animate-pulse);
482
730
  }
@@ -486,9 +734,27 @@
486
734
  .cursor-default {
487
735
  cursor: default;
488
736
  }
737
+ .cursor-grab {
738
+ cursor: grab;
739
+ }
489
740
  .cursor-pointer {
490
741
  cursor: pointer;
491
742
  }
743
+ .touch-none {
744
+ touch-action: none;
745
+ }
746
+ .scroll-m-20 {
747
+ scroll-margin: calc(var(--spacing) * 20);
748
+ }
749
+ .scroll-py-1 {
750
+ scroll-padding-block: var(--spacing);
751
+ }
752
+ .list-disc {
753
+ list-style-type: disc;
754
+ }
755
+ .list-none {
756
+ list-style-type: none;
757
+ }
492
758
  .auto-rows-min {
493
759
  grid-auto-rows: min-content;
494
760
  }
@@ -507,6 +773,9 @@
507
773
  .flex-col-reverse {
508
774
  flex-direction: column-reverse;
509
775
  }
776
+ .flex-row {
777
+ flex-direction: row;
778
+ }
510
779
  .flex-wrap {
511
780
  flex-wrap: wrap;
512
781
  }
@@ -581,6 +850,11 @@
581
850
  .justify-self-end {
582
851
  justify-self: flex-end;
583
852
  }
853
+ .truncate {
854
+ overflow: hidden;
855
+ text-overflow: ellipsis;
856
+ white-space: nowrap;
857
+ }
584
858
  .overflow-auto {
585
859
  overflow: auto;
586
860
  }
@@ -596,6 +870,21 @@
596
870
  .overflow-y-auto {
597
871
  overflow-y: auto;
598
872
  }
873
+ .rounded {
874
+ border-radius: 0.25rem;
875
+ }
876
+ .rounded-\[2px\] {
877
+ border-radius: 2px;
878
+ }
879
+ .rounded-\[4px\] {
880
+ border-radius: 4px;
881
+ }
882
+ .rounded-\[inherit\] {
883
+ border-radius: inherit;
884
+ }
885
+ .rounded-full {
886
+ border-radius: calc(infinity * 1px);
887
+ }
599
888
  .rounded-lg {
600
889
  border-radius: var(--radius);
601
890
  }
@@ -619,6 +908,14 @@
619
908
  border-style: var(--tw-border-style);
620
909
  border-width: 1px;
621
910
  }
911
+ .border-0 {
912
+ border-style: var(--tw-border-style);
913
+ border-width: 0px;
914
+ }
915
+ .border-y {
916
+ border-block-style: var(--tw-border-style);
917
+ border-block-width: 1px;
918
+ }
622
919
  .border-t {
623
920
  border-top-style: var(--tw-border-style);
624
921
  border-top-width: 1px;
@@ -639,6 +936,10 @@
639
936
  border-left-style: var(--tw-border-style);
640
937
  border-left-width: 1px;
641
938
  }
939
+ .border-l-2 {
940
+ border-left-style: var(--tw-border-style);
941
+ border-left-width: 2px;
942
+ }
642
943
  .border-l-4 {
643
944
  border-left-style: var(--tw-border-style);
644
945
  border-left-width: 4px;
@@ -665,6 +966,12 @@
665
966
  .border-input {
666
967
  border-color: var(--input);
667
968
  }
969
+ .border-primary {
970
+ border-color: var(--primary);
971
+ }
972
+ .border-sidebar-border {
973
+ border-color: var(--sidebar-border);
974
+ }
668
975
  .border-success\/50 {
669
976
  border-color: var(--success);
670
977
  @supports (color: color-mix(in lab, red, red)) {
@@ -680,6 +987,9 @@
680
987
  border-color: color-mix(in oklab, var(--warning) 50%, transparent);
681
988
  }
682
989
  }
990
+ .border-t-transparent {
991
+ border-top-color: transparent;
992
+ }
683
993
  .border-l-destructive {
684
994
  border-left-color: var(--destructive);
685
995
  }
@@ -689,6 +999,9 @@
689
999
  .border-l-success {
690
1000
  border-left-color: var(--success);
691
1001
  }
1002
+ .border-l-transparent {
1003
+ border-left-color: transparent;
1004
+ }
692
1005
  .border-l-warning {
693
1006
  border-left-color: var(--warning);
694
1007
  }
@@ -719,6 +1032,9 @@
719
1032
  .bg-destructive {
720
1033
  background-color: var(--destructive);
721
1034
  }
1035
+ .bg-foreground {
1036
+ background-color: var(--foreground);
1037
+ }
722
1038
  .bg-muted {
723
1039
  background-color: var(--muted);
724
1040
  }
@@ -743,15 +1059,33 @@
743
1059
  .bg-secondary {
744
1060
  background-color: var(--secondary);
745
1061
  }
1062
+ .bg-sidebar {
1063
+ background-color: var(--sidebar);
1064
+ }
746
1065
  .bg-transparent {
747
1066
  background-color: transparent;
748
1067
  }
1068
+ .fill-primary {
1069
+ fill: var(--primary);
1070
+ }
1071
+ .object-contain {
1072
+ object-fit: contain;
1073
+ }
1074
+ .object-cover {
1075
+ object-fit: cover;
1076
+ }
1077
+ .p-0 {
1078
+ padding: 0px;
1079
+ }
749
1080
  .p-1 {
750
1081
  padding: var(--spacing);
751
1082
  }
752
1083
  .p-2 {
753
1084
  padding: calc(var(--spacing) * 2);
754
1085
  }
1086
+ .p-3 {
1087
+ padding: calc(var(--spacing) * 3);
1088
+ }
755
1089
  .p-4 {
756
1090
  padding: calc(var(--spacing) * 4);
757
1091
  }
@@ -764,15 +1098,24 @@
764
1098
  .p-\[3px\] {
765
1099
  padding: 3px;
766
1100
  }
1101
+ .p-px {
1102
+ padding: 1px;
1103
+ }
767
1104
  .px-0 {
768
1105
  padding-inline: 0px;
769
1106
  }
1107
+ .px-1 {
1108
+ padding-inline: var(--spacing);
1109
+ }
770
1110
  .px-1\.5 {
771
1111
  padding-inline: calc(var(--spacing) * 1.5);
772
1112
  }
773
1113
  .px-2 {
774
1114
  padding-inline: calc(var(--spacing) * 2);
775
1115
  }
1116
+ .px-2\.5 {
1117
+ padding-inline: calc(var(--spacing) * 2.5);
1118
+ }
776
1119
  .px-3 {
777
1120
  padding-inline: calc(var(--spacing) * 3);
778
1121
  }
@@ -782,6 +1125,12 @@
782
1125
  .px-6 {
783
1126
  padding-inline: calc(var(--spacing) * 6);
784
1127
  }
1128
+ .px-7 {
1129
+ padding-inline: calc(var(--spacing) * 7);
1130
+ }
1131
+ .px-\[0\.3rem\] {
1132
+ padding-inline: 0.3rem;
1133
+ }
785
1134
  .py-0\.5 {
786
1135
  padding-block: calc(var(--spacing) * 0.5);
787
1136
  }
@@ -806,18 +1155,30 @@
806
1155
  .py-8 {
807
1156
  padding-block: calc(var(--spacing) * 8);
808
1157
  }
1158
+ .py-\[0\.2rem\] {
1159
+ padding-block: 0.2rem;
1160
+ }
809
1161
  .pt-0 {
810
1162
  padding-top: 0px;
811
1163
  }
812
1164
  .pt-2 {
813
1165
  padding-top: calc(var(--spacing) * 2);
814
1166
  }
1167
+ .pt-4 {
1168
+ padding-top: calc(var(--spacing) * 4);
1169
+ }
1170
+ .pr-3 {
1171
+ padding-right: calc(var(--spacing) * 3);
1172
+ }
815
1173
  .pr-8 {
816
1174
  padding-right: calc(var(--spacing) * 8);
817
1175
  }
818
1176
  .pb-1 {
819
1177
  padding-bottom: var(--spacing);
820
1178
  }
1179
+ .pb-2 {
1180
+ padding-bottom: calc(var(--spacing) * 2);
1181
+ }
821
1182
  .pb-4 {
822
1183
  padding-bottom: calc(var(--spacing) * 4);
823
1184
  }
@@ -827,6 +1188,12 @@
827
1188
  .pl-3 {
828
1189
  padding-left: calc(var(--spacing) * 3);
829
1190
  }
1191
+ .pl-4 {
1192
+ padding-left: calc(var(--spacing) * 4);
1193
+ }
1194
+ .pl-6 {
1195
+ padding-left: calc(var(--spacing) * 6);
1196
+ }
830
1197
  .text-center {
831
1198
  text-align: center;
832
1199
  }
@@ -836,10 +1203,28 @@
836
1203
  .align-middle {
837
1204
  vertical-align: middle;
838
1205
  }
1206
+ .font-mono {
1207
+ font-family: var(--font-mono);
1208
+ }
1209
+ .font-sans {
1210
+ font-family: var(--font-sans);
1211
+ }
839
1212
  .text-2xl {
840
1213
  font-size: var(--text-2xl);
841
1214
  line-height: var(--tw-leading, var(--text-2xl--line-height));
842
1215
  }
1216
+ .text-3xl {
1217
+ font-size: var(--text-3xl);
1218
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
1219
+ }
1220
+ .text-4xl {
1221
+ font-size: var(--text-4xl);
1222
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1223
+ }
1224
+ .text-base {
1225
+ font-size: var(--text-base);
1226
+ line-height: var(--tw-leading, var(--text-base--line-height));
1227
+ }
843
1228
  .text-lg {
844
1229
  font-size: var(--text-lg);
845
1230
  line-height: var(--tw-leading, var(--text-lg--line-height));
@@ -856,6 +1241,13 @@
856
1241
  font-size: var(--text-xs);
857
1242
  line-height: var(--tw-leading, var(--text-xs--line-height));
858
1243
  }
1244
+ .text-\[0\.8rem\] {
1245
+ font-size: 0.8rem;
1246
+ }
1247
+ .leading-7 {
1248
+ --tw-leading: calc(var(--spacing) * 7);
1249
+ line-height: calc(var(--spacing) * 7);
1250
+ }
859
1251
  .leading-none {
860
1252
  --tw-leading: 1;
861
1253
  line-height: 1;
@@ -864,6 +1256,10 @@
864
1256
  --tw-font-weight: var(--font-weight-bold);
865
1257
  font-weight: var(--font-weight-bold);
866
1258
  }
1259
+ .font-extrabold {
1260
+ --tw-font-weight: var(--font-weight-extrabold);
1261
+ font-weight: var(--font-weight-extrabold);
1262
+ }
867
1263
  .font-medium {
868
1264
  --tw-font-weight: var(--font-weight-medium);
869
1265
  font-weight: var(--font-weight-medium);
@@ -880,15 +1276,27 @@
880
1276
  --tw-tracking: var(--tracking-tight);
881
1277
  letter-spacing: var(--tracking-tight);
882
1278
  }
1279
+ .text-balance {
1280
+ text-wrap: balance;
1281
+ }
1282
+ .break-words {
1283
+ overflow-wrap: break-word;
1284
+ }
883
1285
  .whitespace-nowrap {
884
1286
  white-space: nowrap;
885
1287
  }
886
1288
  .text-accent-foreground {
887
1289
  color: var(--accent-foreground);
888
1290
  }
1291
+ .text-amber-600 {
1292
+ color: var(--color-amber-600);
1293
+ }
889
1294
  .text-card-foreground {
890
1295
  color: var(--card-foreground);
891
1296
  }
1297
+ .text-current {
1298
+ color: currentcolor;
1299
+ }
892
1300
  .text-destructive {
893
1301
  color: var(--destructive);
894
1302
  }
@@ -898,6 +1306,9 @@
898
1306
  .text-foreground {
899
1307
  color: var(--foreground);
900
1308
  }
1309
+ .text-green-600 {
1310
+ color: var(--color-green-600);
1311
+ }
901
1312
  .text-info {
902
1313
  color: var(--info);
903
1314
  }
@@ -916,16 +1327,40 @@
916
1327
  .text-secondary-foreground {
917
1328
  color: var(--secondary-foreground);
918
1329
  }
1330
+ .text-sidebar-foreground {
1331
+ color: var(--sidebar-foreground);
1332
+ }
1333
+ .text-sidebar-foreground\/60 {
1334
+ color: var(--sidebar-foreground);
1335
+ @supports (color: color-mix(in lab, red, red)) {
1336
+ color: color-mix(in oklab, var(--sidebar-foreground) 60%, transparent);
1337
+ }
1338
+ }
1339
+ .text-sidebar-foreground\/70 {
1340
+ color: var(--sidebar-foreground);
1341
+ @supports (color: color-mix(in lab, red, red)) {
1342
+ color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent);
1343
+ }
1344
+ }
919
1345
  .text-success {
920
1346
  color: var(--success);
921
1347
  }
922
1348
  .text-warning {
923
1349
  color: var(--warning);
924
1350
  }
1351
+ .italic {
1352
+ font-style: italic;
1353
+ }
925
1354
  .tabular-nums {
926
1355
  --tw-numeric-spacing: tabular-nums;
927
1356
  font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
928
1357
  }
1358
+ .line-through {
1359
+ text-decoration-line: line-through;
1360
+ }
1361
+ .underline {
1362
+ text-decoration-line: underline;
1363
+ }
929
1364
  .underline-offset-4 {
930
1365
  text-underline-offset: 4px;
931
1366
  }
@@ -955,10 +1390,46 @@
955
1390
  --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
956
1391
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
957
1392
  }
1393
+ .outline-hidden {
1394
+ --tw-outline-style: none;
1395
+ outline-style: none;
1396
+ @media (forced-colors: active) {
1397
+ outline: 2px solid transparent;
1398
+ outline-offset: 2px;
1399
+ }
1400
+ }
958
1401
  .outline {
959
1402
  outline-style: var(--tw-outline-style);
960
1403
  outline-width: 1px;
961
1404
  }
1405
+ .filter {
1406
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
1407
+ }
1408
+ .transition {
1409
+ 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;
1410
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1411
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1412
+ }
1413
+ .transition-\[height\] {
1414
+ transition-property: height;
1415
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1416
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1417
+ }
1418
+ .transition-\[opacity\,transform\] {
1419
+ transition-property: opacity,transform;
1420
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1421
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1422
+ }
1423
+ .transition-\[width\] {
1424
+ transition-property: width;
1425
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1426
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1427
+ }
1428
+ .transition-all {
1429
+ transition-property: all;
1430
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1431
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1432
+ }
962
1433
  .transition-colors {
963
1434
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
964
1435
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -978,6 +1449,22 @@
978
1449
  --tw-duration: 200ms;
979
1450
  transition-duration: 200ms;
980
1451
  }
1452
+ .duration-300 {
1453
+ --tw-duration: 300ms;
1454
+ transition-duration: 300ms;
1455
+ }
1456
+ .duration-1000 {
1457
+ --tw-duration: 1000ms;
1458
+ transition-duration: 1000ms;
1459
+ }
1460
+ .ease-in-out {
1461
+ --tw-ease: var(--ease-in-out);
1462
+ transition-timing-function: var(--ease-in-out);
1463
+ }
1464
+ .ease-out {
1465
+ --tw-ease: var(--ease-out);
1466
+ transition-timing-function: var(--ease-out);
1467
+ }
981
1468
  .outline-none {
982
1469
  --tw-outline-style: none;
983
1470
  outline-style: none;
@@ -992,6 +1479,12 @@
992
1479
  .group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled="true"] *) {
993
1480
  opacity: 50%;
994
1481
  }
1482
+ .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) {
1483
+ display: block;
1484
+ }
1485
+ .group-data-open\/navigation-menu-trigger\:rotate-180:is(:where(.group\/navigation-menu-trigger):where([data-open]:not([data-open='false'])) *) {
1486
+ rotate: 180deg;
1487
+ }
995
1488
  .peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled ~ *) {
996
1489
  cursor: not-allowed;
997
1490
  }
@@ -1001,14 +1494,68 @@
1001
1494
  .placeholder\:text-muted-foreground::placeholder {
1002
1495
  color: var(--muted-foreground);
1003
1496
  }
1497
+ .after\:absolute::after {
1498
+ content: var(--tw-content);
1499
+ position: absolute;
1500
+ }
1501
+ .after\:inset-y-0::after {
1502
+ content: var(--tw-content);
1503
+ inset-block: 0px;
1504
+ }
1505
+ .after\:left-1\/2::after {
1506
+ content: var(--tw-content);
1507
+ left: calc(1 / 2 * 100%);
1508
+ }
1509
+ .after\:w-1::after {
1510
+ content: var(--tw-content);
1511
+ width: var(--spacing);
1512
+ }
1513
+ .after\:-translate-x-1\/2::after {
1514
+ content: var(--tw-content);
1515
+ --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
1516
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1517
+ }
1518
+ .first\:rounded-l-md:first-child {
1519
+ border-top-left-radius: calc(var(--radius) * 0.8);
1520
+ border-bottom-left-radius: calc(var(--radius) * 0.8);
1521
+ }
1522
+ .first\:border-l:first-child {
1523
+ border-left-style: var(--tw-border-style);
1524
+ border-left-width: 1px;
1525
+ }
1526
+ .last\:rounded-r-md:last-child {
1527
+ border-top-right-radius: calc(var(--radius) * 0.8);
1528
+ border-bottom-right-radius: calc(var(--radius) * 0.8);
1529
+ }
1004
1530
  .last\:border-b-0:last-child {
1005
1531
  border-bottom-style: var(--tw-border-style);
1006
1532
  border-bottom-width: 0px;
1007
1533
  }
1534
+ .focus-within\:border-ring:focus-within {
1535
+ border-color: var(--ring);
1536
+ }
1537
+ .focus-within\:ring-\[3px\]:focus-within {
1538
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1539
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1540
+ }
1541
+ .focus-within\:ring-ring\/50:focus-within {
1542
+ --tw-ring-color: var(--ring);
1543
+ @supports (color: color-mix(in lab, red, red)) {
1544
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1545
+ }
1546
+ }
1008
1547
  @media (hover: hover) {
1009
1548
  .hover\:bg-accent:hover {
1010
1549
  background-color: var(--accent);
1011
1550
  }
1551
+ .hover\:bg-accent\/50:hover {
1552
+ background-color: var(--accent);
1553
+ }
1554
+ @supports (color: color-mix(in lab, red, red)) {
1555
+ .hover\:bg-accent\/50:hover {
1556
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
1557
+ }
1558
+ }
1012
1559
  .hover\:bg-destructive\/90:hover {
1013
1560
  background-color: var(--destructive);
1014
1561
  }
@@ -1017,6 +1564,9 @@
1017
1564
  background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
1018
1565
  }
1019
1566
  }
1567
+ .hover\:bg-muted:hover {
1568
+ background-color: var(--muted);
1569
+ }
1020
1570
  .hover\:bg-muted\/50:hover {
1021
1571
  background-color: var(--muted);
1022
1572
  }
@@ -1041,6 +1591,9 @@
1041
1591
  background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
1042
1592
  }
1043
1593
  }
1594
+ .hover\:bg-sidebar-accent:hover {
1595
+ background-color: var(--sidebar-accent);
1596
+ }
1044
1597
  .hover\:bg-transparent:hover {
1045
1598
  background-color: transparent;
1046
1599
  }
@@ -1053,6 +1606,15 @@
1053
1606
  .hover\:text-foreground:hover {
1054
1607
  color: var(--foreground);
1055
1608
  }
1609
+ .hover\:text-muted-foreground:hover {
1610
+ color: var(--muted-foreground);
1611
+ }
1612
+ .hover\:text-sidebar-accent-foreground:hover {
1613
+ color: var(--sidebar-accent-foreground);
1614
+ }
1615
+ .hover\:text-sidebar-foreground:hover {
1616
+ color: var(--sidebar-foreground);
1617
+ }
1056
1618
  .hover\:underline:hover {
1057
1619
  text-decoration-line: underline;
1058
1620
  }
@@ -1060,15 +1622,25 @@
1060
1622
  opacity: 100%;
1061
1623
  }
1062
1624
  }
1625
+ .focus\:z-10:focus {
1626
+ z-index: 10;
1627
+ }
1063
1628
  .focus\:bg-accent:focus {
1064
1629
  background-color: var(--accent);
1065
1630
  }
1066
1631
  .focus\:text-accent-foreground:focus {
1067
1632
  color: var(--accent-foreground);
1068
1633
  }
1634
+ .focus-visible\:z-10:focus-visible {
1635
+ z-index: 10;
1636
+ }
1069
1637
  .focus-visible\:border-ring:focus-visible {
1070
1638
  border-color: var(--ring);
1071
1639
  }
1640
+ .focus-visible\:ring-1:focus-visible {
1641
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1642
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1643
+ }
1072
1644
  .focus-visible\:ring-\[3px\]:focus-visible {
1073
1645
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1074
1646
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -1079,12 +1651,19 @@
1079
1651
  --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
1080
1652
  }
1081
1653
  }
1654
+ .focus-visible\:ring-ring:focus-visible {
1655
+ --tw-ring-color: var(--ring);
1656
+ }
1082
1657
  .focus-visible\:ring-ring\/50:focus-visible {
1083
1658
  --tw-ring-color: var(--ring);
1084
1659
  @supports (color: color-mix(in lab, red, red)) {
1085
1660
  --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1086
1661
  }
1087
1662
  }
1663
+ .focus-visible\:ring-offset-1:focus-visible {
1664
+ --tw-ring-offset-width: 1px;
1665
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1666
+ }
1088
1667
  .focus-visible\:outline-1:focus-visible {
1089
1668
  outline-style: var(--tw-outline-style);
1090
1669
  outline-width: 1px;
@@ -1093,6 +1672,9 @@
1093
1672
  --tw-outline-style: none;
1094
1673
  outline-style: none;
1095
1674
  }
1675
+ .active\:cursor-grabbing:active {
1676
+ cursor: grabbing;
1677
+ }
1096
1678
  .disabled\:pointer-events-none:disabled {
1097
1679
  pointer-events: none;
1098
1680
  }
@@ -1102,6 +1684,9 @@
1102
1684
  .disabled\:opacity-50:disabled {
1103
1685
  opacity: 50%;
1104
1686
  }
1687
+ .has-disabled\:opacity-50:has(:disabled) {
1688
+ opacity: 50%;
1689
+ }
1105
1690
  .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\]:has([data-slot="card-action"]) {
1106
1691
  grid-template-columns: 1fr auto;
1107
1692
  }
@@ -1111,31 +1696,226 @@
1111
1696
  .has-\[\>svg\]\:gap-x-3:has( > svg) {
1112
1697
  column-gap: calc(var(--spacing) * 3);
1113
1698
  }
1114
- .data-\[orientation\=horizontal\]\:h-px[data-orientation="horizontal"] {
1115
- height: 1px;
1699
+ .aria-selected\:text-muted-foreground[aria-selected="true"] {
1700
+ color: var(--muted-foreground);
1116
1701
  }
1117
- .data-\[orientation\=horizontal\]\:w-full[data-orientation="horizontal"] {
1118
- width: 100%;
1702
+ .aria-selected\:opacity-100[aria-selected="true"] {
1703
+ opacity: 100%;
1119
1704
  }
1120
- .data-\[orientation\=vertical\]\:h-full[data-orientation="vertical"] {
1121
- height: 100%;
1705
+ .data-checked\:translate-x-\[calc\(100\%-2px\)\][data-checked] {
1706
+ --tw-translate-x: calc(100% - 2px);
1707
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1122
1708
  }
1123
- .data-\[orientation\=vertical\]\:w-px[data-orientation="vertical"] {
1124
- width: 1px;
1709
+ .data-checked\:border-primary[data-checked] {
1710
+ border-color: var(--primary);
1125
1711
  }
1126
- .data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
1127
- color: var(--muted-foreground);
1712
+ .data-checked\:bg-primary[data-checked] {
1713
+ background-color: var(--primary);
1128
1714
  }
1129
- .data-\[size\=default\]\:h-9[data-size="default"] {
1130
- height: calc(var(--spacing) * 9);
1715
+ .data-checked\:text-primary-foreground[data-checked] {
1716
+ color: var(--primary-foreground);
1131
1717
  }
1132
- .data-\[size\=sm\]\:h-8[data-size="sm"] {
1133
- height: calc(var(--spacing) * 8);
1718
+ .data-ending-style\:animate-toast-out[data-ending-style] {
1719
+ animation: toast-out 150ms ease-in;
1134
1720
  }
1135
- .data-\[state\=selected\]\:bg-muted[data-state="selected"] {
1136
- background-color: var(--muted);
1721
+ .data-ending-style\:opacity-0[data-ending-style] {
1722
+ opacity: 0%;
1723
+ }
1724
+ .data-pressed\:bg-accent[data-pressed] {
1725
+ background-color: var(--accent);
1726
+ }
1727
+ .data-pressed\:text-accent-foreground[data-pressed] {
1728
+ color: var(--accent-foreground);
1729
+ }
1730
+ .data-starting-style\:animate-toast-in[data-starting-style] {
1731
+ animation: toast-in 200ms ease-out;
1732
+ }
1733
+ .data-starting-style\:opacity-0[data-starting-style] {
1734
+ opacity: 0%;
1735
+ }
1736
+ .data-unchecked\:translate-x-0[data-unchecked] {
1737
+ --tw-translate-x: 0px;
1738
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1739
+ }
1740
+ .data-unchecked\:bg-input[data-unchecked] {
1741
+ background-color: var(--input);
1742
+ }
1743
+ .data-\[active\=true\]\:z-10[data-active="true"] {
1744
+ z-index: 10;
1745
+ }
1746
+ .data-\[active\=true\]\:border-ring[data-active="true"] {
1747
+ border-color: var(--ring);
1748
+ }
1749
+ .data-\[active\=true\]\:ring-\[3px\][data-active="true"] {
1750
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1751
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1752
+ }
1753
+ .data-\[active\=true\]\:ring-ring\/50[data-active="true"] {
1754
+ --tw-ring-color: var(--ring);
1755
+ @supports (color: color-mix(in lab, red, red)) {
1756
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1757
+ }
1758
+ }
1759
+ .data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
1760
+ pointer-events: none;
1761
+ }
1762
+ .data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
1763
+ opacity: 50%;
1764
+ }
1765
+ .data-\[instant\]\:transition-none[data-instant] {
1766
+ transition-property: none;
1767
+ }
1768
+ .data-\[orientation\=horizontal\]\:h-px[data-orientation="horizontal"] {
1769
+ height: 1px;
1770
+ }
1771
+ .data-\[orientation\=horizontal\]\:w-full[data-orientation="horizontal"] {
1772
+ width: 100%;
1773
+ }
1774
+ .data-\[orientation\=vertical\]\:h-full[data-orientation="vertical"] {
1775
+ height: 100%;
1776
+ }
1777
+ .data-\[orientation\=vertical\]\:h-px[data-orientation="vertical"] {
1778
+ height: 1px;
1779
+ }
1780
+ .data-\[orientation\=vertical\]\:w-full[data-orientation="vertical"] {
1781
+ width: 100%;
1782
+ }
1783
+ .data-\[orientation\=vertical\]\:w-px[data-orientation="vertical"] {
1784
+ width: 1px;
1785
+ }
1786
+ .data-\[orientation\=vertical\]\:flex-col[data-orientation="vertical"] {
1787
+ flex-direction: column;
1788
+ }
1789
+ .data-\[orientation\=vertical\]\:after\:left-0[data-orientation="vertical"]::after {
1790
+ content: var(--tw-content);
1791
+ left: 0px;
1792
+ }
1793
+ .data-\[orientation\=vertical\]\:after\:h-1[data-orientation="vertical"]::after {
1794
+ content: var(--tw-content);
1795
+ height: var(--spacing);
1796
+ }
1797
+ .data-\[orientation\=vertical\]\:after\:w-full[data-orientation="vertical"]::after {
1798
+ content: var(--tw-content);
1799
+ width: 100%;
1800
+ }
1801
+ .data-\[orientation\=vertical\]\:after\:translate-x-0[data-orientation="vertical"]::after {
1802
+ content: var(--tw-content);
1803
+ --tw-translate-x: 0px;
1804
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1805
+ }
1806
+ .data-\[orientation\=vertical\]\:after\:-translate-y-1\/2[data-orientation="vertical"]::after {
1807
+ content: var(--tw-content);
1808
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
1809
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1810
+ }
1811
+ .data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
1812
+ color: var(--muted-foreground);
1813
+ }
1814
+ .data-\[selected\=true\]\:bg-accent[data-selected="true"] {
1815
+ background-color: var(--accent);
1816
+ }
1817
+ .data-\[selected\=true\]\:text-accent-foreground[data-selected="true"] {
1818
+ color: var(--accent-foreground);
1819
+ }
1820
+ .data-\[size\=default\]\:h-9[data-size="default"] {
1821
+ height: calc(var(--spacing) * 9);
1822
+ }
1823
+ .data-\[size\=sm\]\:h-8[data-size="sm"] {
1824
+ height: calc(var(--spacing) * 8);
1825
+ }
1826
+ :is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 *)[data-slot="navigation-menu-link"]:focus {
1827
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1828
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1829
+ }
1830
+ :is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:outline-none *)[data-slot="navigation-menu-link"]:focus {
1831
+ --tw-outline-style: none;
1832
+ outline-style: none;
1833
+ }
1834
+ .data-\[state\=selected\]\:bg-muted[data-state="selected"] {
1835
+ background-color: var(--muted);
1836
+ }
1837
+ .data-\[variant\=destructive\]\:text-destructive[data-variant="destructive"] {
1838
+ color: var(--destructive);
1839
+ }
1840
+ .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant="destructive"]:focus {
1841
+ background-color: var(--destructive);
1842
+ @supports (color: color-mix(in lab, red, red)) {
1843
+ background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
1844
+ }
1845
+ }
1846
+ .data-\[variant\=destructive\]\:focus\:text-destructive[data-variant="destructive"]:focus {
1847
+ color: var(--destructive);
1848
+ }
1849
+ .data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction="bottom"] {
1850
+ inset-inline: 0px;
1851
+ }
1852
+ .data-\[vaul-drawer-direction\=bottom\]\:bottom-0[data-vaul-drawer-direction="bottom"] {
1853
+ bottom: 0px;
1854
+ }
1855
+ .data-\[vaul-drawer-direction\=bottom\]\:mt-24[data-vaul-drawer-direction="bottom"] {
1856
+ margin-top: calc(var(--spacing) * 24);
1857
+ }
1858
+ .data-\[vaul-drawer-direction\=bottom\]\:max-h-\[80vh\][data-vaul-drawer-direction="bottom"] {
1859
+ max-height: 80vh;
1860
+ }
1861
+ .data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg[data-vaul-drawer-direction="bottom"] {
1862
+ border-top-left-radius: var(--radius);
1863
+ border-top-right-radius: var(--radius);
1864
+ }
1865
+ .data-\[vaul-drawer-direction\=bottom\]\:border-t[data-vaul-drawer-direction="bottom"] {
1866
+ border-top-style: var(--tw-border-style);
1867
+ border-top-width: 1px;
1868
+ }
1869
+ .data-\[vaul-drawer-direction\=left\]\:inset-y-0[data-vaul-drawer-direction="left"] {
1870
+ inset-block: 0px;
1871
+ }
1872
+ .data-\[vaul-drawer-direction\=left\]\:left-0[data-vaul-drawer-direction="left"] {
1873
+ left: 0px;
1874
+ }
1875
+ .data-\[vaul-drawer-direction\=left\]\:w-3\/4[data-vaul-drawer-direction="left"] {
1876
+ width: calc(3 / 4 * 100%);
1877
+ }
1878
+ .data-\[vaul-drawer-direction\=left\]\:border-r[data-vaul-drawer-direction="left"] {
1879
+ border-right-style: var(--tw-border-style);
1880
+ border-right-width: 1px;
1881
+ }
1882
+ .data-\[vaul-drawer-direction\=right\]\:inset-y-0[data-vaul-drawer-direction="right"] {
1883
+ inset-block: 0px;
1884
+ }
1885
+ .data-\[vaul-drawer-direction\=right\]\:right-0[data-vaul-drawer-direction="right"] {
1886
+ right: 0px;
1887
+ }
1888
+ .data-\[vaul-drawer-direction\=right\]\:w-3\/4[data-vaul-drawer-direction="right"] {
1889
+ width: calc(3 / 4 * 100%);
1890
+ }
1891
+ .data-\[vaul-drawer-direction\=right\]\:border-l[data-vaul-drawer-direction="right"] {
1892
+ border-left-style: var(--tw-border-style);
1893
+ border-left-width: 1px;
1894
+ }
1895
+ .data-\[vaul-drawer-direction\=top\]\:inset-x-0[data-vaul-drawer-direction="top"] {
1896
+ inset-inline: 0px;
1897
+ }
1898
+ .data-\[vaul-drawer-direction\=top\]\:top-0[data-vaul-drawer-direction="top"] {
1899
+ top: 0px;
1900
+ }
1901
+ .data-\[vaul-drawer-direction\=top\]\:mb-24[data-vaul-drawer-direction="top"] {
1902
+ margin-bottom: calc(var(--spacing) * 24);
1903
+ }
1904
+ .data-\[vaul-drawer-direction\=top\]\:max-h-\[80vh\][data-vaul-drawer-direction="top"] {
1905
+ max-height: 80vh;
1906
+ }
1907
+ .data-\[vaul-drawer-direction\=top\]\:rounded-b-lg[data-vaul-drawer-direction="top"] {
1908
+ border-bottom-right-radius: var(--radius);
1909
+ border-bottom-left-radius: var(--radius);
1910
+ }
1911
+ .data-\[vaul-drawer-direction\=top\]\:border-b[data-vaul-drawer-direction="top"] {
1912
+ border-bottom-style: var(--tw-border-style);
1913
+ border-bottom-width: 1px;
1137
1914
  }
1138
1915
  @media (width >= 40rem) {
1916
+ .sm\:block {
1917
+ display: block;
1918
+ }
1139
1919
  .sm\:max-w-lg {
1140
1920
  max-width: var(--container-lg);
1141
1921
  }
@@ -1151,9 +1931,41 @@
1151
1931
  .sm\:justify-end {
1152
1932
  justify-content: flex-end;
1153
1933
  }
1934
+ .sm\:gap-2\.5 {
1935
+ gap: calc(var(--spacing) * 2.5);
1936
+ }
1937
+ .sm\:pr-2\.5 {
1938
+ padding-right: calc(var(--spacing) * 2.5);
1939
+ }
1940
+ .sm\:pl-2\.5 {
1941
+ padding-left: calc(var(--spacing) * 2.5);
1942
+ }
1154
1943
  .sm\:text-left {
1155
1944
  text-align: left;
1156
1945
  }
1946
+ .data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm[data-vaul-drawer-direction="left"] {
1947
+ max-width: var(--container-sm);
1948
+ }
1949
+ .data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm[data-vaul-drawer-direction="right"] {
1950
+ max-width: var(--container-sm);
1951
+ }
1952
+ }
1953
+ @media (width >= 48rem) {
1954
+ .md\:flex-row {
1955
+ flex-direction: row;
1956
+ }
1957
+ .md\:text-sm {
1958
+ font-size: var(--text-sm);
1959
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1960
+ }
1961
+ }
1962
+ @media (prefers-color-scheme: dark) {
1963
+ .dark\:text-amber-400 {
1964
+ color: var(--color-amber-400);
1965
+ }
1966
+ .dark\:text-green-400 {
1967
+ color: var(--color-green-400);
1968
+ }
1157
1969
  }
1158
1970
  .data-open\:animate-accordion-down:where([data-open]:not([data-open='false'])) {
1159
1971
  animation: accordion-down 200ms ease-out;
@@ -1161,6 +1973,22 @@
1161
1973
  .data-open\:animate-in:where([data-open]:not([data-open='false'])) {
1162
1974
  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);
1163
1975
  }
1976
+ .data-open\:bg-accent:where([data-open]:not([data-open='false'])) {
1977
+ background-color: var(--accent);
1978
+ }
1979
+ .data-open\:bg-accent\/50:where([data-open]:not([data-open='false'])) {
1980
+ background-color: var(--accent);
1981
+ @supports (color: color-mix(in lab, red, red)) {
1982
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
1983
+ }
1984
+ }
1985
+ .data-open\:text-accent-foreground:where([data-open]:not([data-open='false'])) {
1986
+ color: var(--accent-foreground);
1987
+ }
1988
+ .data-open\:duration-300:where([data-open]:not([data-open='false'])) {
1989
+ --tw-duration: 300ms;
1990
+ transition-duration: 300ms;
1991
+ }
1164
1992
  .data-open\:fade-in-0:where([data-open]:not([data-open='false'])) {
1165
1993
  --tw-enter-opacity: calc(0/100);
1166
1994
  --tw-enter-opacity: 0;
@@ -1169,12 +1997,28 @@
1169
1997
  --tw-enter-scale: calc(95*1%);
1170
1998
  --tw-enter-scale: .95;
1171
1999
  }
2000
+ .data-open\:slide-in-from-bottom:where([data-open]:not([data-open='false'])) {
2001
+ --tw-enter-translate-y: 100%;
2002
+ }
2003
+ .data-open\:slide-in-from-left:where([data-open]:not([data-open='false'])) {
2004
+ --tw-enter-translate-x: -100%;
2005
+ }
2006
+ .data-open\:slide-in-from-right:where([data-open]:not([data-open='false'])) {
2007
+ --tw-enter-translate-x: 100%;
2008
+ }
2009
+ .data-open\:slide-in-from-top:where([data-open]:not([data-open='false'])) {
2010
+ --tw-enter-translate-y: -100%;
2011
+ }
1172
2012
  .data-closed\:animate-accordion-up:where([data-closed]:not([data-closed='false'])) {
1173
2013
  animation: accordion-up 200ms ease-out;
1174
2014
  }
1175
2015
  .data-closed\:animate-out:where([data-closed]:not([data-closed='false'])) {
1176
2016
  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);
1177
2017
  }
2018
+ .data-closed\:duration-200:where([data-closed]:not([data-closed='false'])) {
2019
+ --tw-duration: 200ms;
2020
+ transition-duration: 200ms;
2021
+ }
1178
2022
  .data-closed\:fade-out-0:where([data-closed]:not([data-closed='false'])) {
1179
2023
  --tw-exit-opacity: calc(0/100);
1180
2024
  --tw-exit-opacity: 0;
@@ -1183,12 +2027,33 @@
1183
2027
  --tw-exit-scale: calc(95*1%);
1184
2028
  --tw-exit-scale: .95;
1185
2029
  }
2030
+ .data-closed\:slide-out-to-bottom:where([data-closed]:not([data-closed='false'])) {
2031
+ --tw-exit-translate-y: 100%;
2032
+ }
2033
+ .data-closed\:slide-out-to-left:where([data-closed]:not([data-closed='false'])) {
2034
+ --tw-exit-translate-x: -100%;
2035
+ }
2036
+ .data-closed\:slide-out-to-right:where([data-closed]:not([data-closed='false'])) {
2037
+ --tw-exit-translate-x: 100%;
2038
+ }
2039
+ .data-closed\:slide-out-to-top:where([data-closed]:not([data-closed='false'])) {
2040
+ --tw-exit-translate-y: -100%;
2041
+ }
1186
2042
  .data-active\:border-border:where([data-active]:not([data-active='false'])) {
1187
2043
  border-color: var(--border);
1188
2044
  }
2045
+ .data-active\:bg-accent\/50:where([data-active]:not([data-active='false'])) {
2046
+ background-color: var(--accent);
2047
+ @supports (color: color-mix(in lab, red, red)) {
2048
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
2049
+ }
2050
+ }
1189
2051
  .data-active\:bg-background:where([data-active]:not([data-active='false'])) {
1190
2052
  background-color: var(--background);
1191
2053
  }
2054
+ .data-active\:text-accent-foreground:where([data-active]:not([data-active='false'])) {
2055
+ color: var(--accent-foreground);
2056
+ }
1192
2057
  .data-active\:shadow-sm:where([data-active]:not([data-active='false'])) {
1193
2058
  --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));
1194
2059
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -1199,6 +2064,41 @@
1199
2064
  .data-disabled\:opacity-50:where([data-disabled]:not([data-disabled='false'])) {
1200
2065
  opacity: 50%;
1201
2066
  }
2067
+ .\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
2068
+ padding-inline: calc(var(--spacing) * 2);
2069
+ }
2070
+ .\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
2071
+ padding-block: calc(var(--spacing) * 1.5);
2072
+ }
2073
+ .\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
2074
+ font-size: var(--text-xs);
2075
+ line-height: var(--tw-leading, var(--text-xs--line-height));
2076
+ }
2077
+ .\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
2078
+ --tw-font-weight: var(--font-weight-medium);
2079
+ font-weight: var(--font-weight-medium);
2080
+ }
2081
+ .\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading] {
2082
+ color: var(--muted-foreground);
2083
+ }
2084
+ .\[\&_\[data-slot\=input\]\]\:min-w-0 [data-slot=input] {
2085
+ min-width: 0px;
2086
+ }
2087
+ .\[\&_\[data-slot\=input\]\]\:flex-1 [data-slot=input] {
2088
+ flex: 1;
2089
+ }
2090
+ .\[\&_\[data-slot\=input\]\]\:border-0 [data-slot=input] {
2091
+ border-style: var(--tw-border-style);
2092
+ border-width: 0px;
2093
+ }
2094
+ .\[\&_\[data-slot\=input\]\]\:shadow-none [data-slot=input] {
2095
+ --tw-shadow: 0 0 #0000;
2096
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2097
+ }
2098
+ .\[\&_\[data-slot\=input\]\]\:focus-visible\:ring-0 [data-slot=input]:focus-visible {
2099
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2100
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2101
+ }
1202
2102
  .\[\&_p\]\:leading-relaxed p {
1203
2103
  --tw-leading: var(--leading-relaxed);
1204
2104
  line-height: var(--leading-relaxed);
@@ -1206,6 +2106,10 @@
1206
2106
  .\[\&_svg\]\:pointer-events-none svg {
1207
2107
  pointer-events: none;
1208
2108
  }
2109
+ .\[\&_svg\]\:size-3\.5 svg {
2110
+ width: calc(var(--spacing) * 3.5);
2111
+ height: calc(var(--spacing) * 3.5);
2112
+ }
1209
2113
  .\[\&_svg\]\:shrink-0 svg {
1210
2114
  flex-shrink: 0;
1211
2115
  }
@@ -1213,6 +2117,10 @@
1213
2117
  width: calc(var(--spacing) * 4);
1214
2118
  height: calc(var(--spacing) * 4);
1215
2119
  }
2120
+ .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-5 svg:not([class*='size-']) {
2121
+ width: calc(var(--spacing) * 5);
2122
+ height: calc(var(--spacing) * 5);
2123
+ }
1216
2124
  .\[\&_tr\]\:border-b tr {
1217
2125
  border-bottom-style: var(--tw-border-style);
1218
2126
  border-bottom-width: 1px;
@@ -1233,6 +2141,73 @@
1233
2141
  .\[\.border-t\]\:pt-6:is(.border-t) {
1234
2142
  padding-top: calc(var(--spacing) * 6);
1235
2143
  }
2144
+ .\[\&\>\*\]\:focus-visible\:relative > *:focus-visible {
2145
+ position: relative;
2146
+ }
2147
+ .\[\&\>\*\]\:focus-visible\:z-10 > *:focus-visible {
2148
+ z-index: 10;
2149
+ }
2150
+ .\[\&\>\[data-slot\=button\]\]\:shrink-0 > [data-slot=button] {
2151
+ flex-shrink: 0;
2152
+ }
2153
+ .\[\&\>\[data-slot\=button\]\]\:rounded-none > [data-slot=button] {
2154
+ border-radius: 0;
2155
+ }
2156
+ .\[\&\>\[data-slot\=button\]\]\:first\:rounded-l-md > [data-slot=button]:first-child {
2157
+ border-top-left-radius: calc(var(--radius) * 0.8);
2158
+ border-bottom-left-radius: calc(var(--radius) * 0.8);
2159
+ }
2160
+ .\[\&\>\[data-slot\=button\]\]\:last\:rounded-r-md > [data-slot=button]:last-child {
2161
+ border-top-right-radius: calc(var(--radius) * 0.8);
2162
+ border-bottom-right-radius: calc(var(--radius) * 0.8);
2163
+ }
2164
+ .\[\&\>\[data-slot\=button\]\:not\(\:first-child\)\]\:-ml-px > [data-slot=button]:not(:first-child) {
2165
+ margin-left: -1px;
2166
+ }
2167
+ .\[\&\>\[data-slot\=text\]\]\:shrink-0 > [data-slot=text] {
2168
+ flex-shrink: 0;
2169
+ }
2170
+ .\[\&\>\[data-slot\=text\]\]\:px-3 > [data-slot=text] {
2171
+ padding-inline: calc(var(--spacing) * 3);
2172
+ }
2173
+ .\[\&\>\[data-slot\=text\]\]\:text-sm > [data-slot=text] {
2174
+ font-size: var(--text-sm);
2175
+ line-height: var(--tw-leading, var(--text-sm--line-height));
2176
+ }
2177
+ .\[\&\>\[data-slot\=text\]\]\:text-muted-foreground > [data-slot=text] {
2178
+ color: var(--muted-foreground);
2179
+ }
2180
+ .\[\&\>\[data-slot\=toggle\]\]\:rounded-none > [data-slot=toggle] {
2181
+ border-radius: 0;
2182
+ }
2183
+ .\[\&\>\[data-slot\=toggle\]\]\:first\:rounded-l-md > [data-slot=toggle]:first-child {
2184
+ border-top-left-radius: calc(var(--radius) * 0.8);
2185
+ border-bottom-left-radius: calc(var(--radius) * 0.8);
2186
+ }
2187
+ .\[\&\>\[data-slot\=toggle\]\]\:last\:rounded-r-md > [data-slot=toggle]:last-child {
2188
+ border-top-right-radius: calc(var(--radius) * 0.8);
2189
+ border-bottom-right-radius: calc(var(--radius) * 0.8);
2190
+ }
2191
+ .\[\&\>button\]\:bg-accent > button {
2192
+ background-color: var(--accent);
2193
+ }
2194
+ .\[\&\>button\]\:bg-primary > button {
2195
+ background-color: var(--primary);
2196
+ }
2197
+ .\[\&\>button\]\:text-accent-foreground > button {
2198
+ color: var(--accent-foreground);
2199
+ }
2200
+ .\[\&\>button\]\:text-primary-foreground > button {
2201
+ color: var(--primary-foreground);
2202
+ }
2203
+ @media (hover: hover) {
2204
+ .\[\&\>button\]\:hover\:bg-primary > button:hover {
2205
+ background-color: var(--primary);
2206
+ }
2207
+ }
2208
+ .\[\&\>li\]\:mt-2 > li {
2209
+ margin-top: calc(var(--spacing) * 2);
2210
+ }
1236
2211
  .\[\&\>svg\]\:pointer-events-none > svg {
1237
2212
  pointer-events: none;
1238
2213
  }
@@ -1240,6 +2215,10 @@
1240
2215
  width: calc(var(--spacing) * 3);
1241
2216
  height: calc(var(--spacing) * 3);
1242
2217
  }
2218
+ .\[\&\>svg\]\:size-3\.5 > svg {
2219
+ width: calc(var(--spacing) * 3.5);
2220
+ height: calc(var(--spacing) * 3.5);
2221
+ }
1243
2222
  .\[\&\>svg\]\:size-4 > svg {
1244
2223
  width: calc(var(--spacing) * 4);
1245
2224
  height: calc(var(--spacing) * 4);
@@ -1258,6 +2237,12 @@
1258
2237
  .\[\&\[aria-expanded\=true\]\>svg\]\:rotate-180[aria-expanded=true] > svg {
1259
2238
  rotate: 180deg;
1260
2239
  }
2240
+ .\[\&\[data-orientation\=vertical\]\>div\]\:rotate-90[data-orientation=vertical] > div {
2241
+ rotate: 90deg;
2242
+ }
2243
+ .\[\&\[data-panel-open\]\>svg\]\:rotate-180[data-panel-open] > svg {
2244
+ rotate: 180deg;
2245
+ }
1261
2246
  }
1262
2247
  @property --tw-animation-delay {
1263
2248
  syntax: "*";
@@ -1446,6 +2431,26 @@
1446
2431
  inherits: false;
1447
2432
  initial-value: 0;
1448
2433
  }
2434
+ @property --tw-rotate-x {
2435
+ syntax: "*";
2436
+ inherits: false;
2437
+ }
2438
+ @property --tw-rotate-y {
2439
+ syntax: "*";
2440
+ inherits: false;
2441
+ }
2442
+ @property --tw-rotate-z {
2443
+ syntax: "*";
2444
+ inherits: false;
2445
+ }
2446
+ @property --tw-skew-x {
2447
+ syntax: "*";
2448
+ inherits: false;
2449
+ }
2450
+ @property --tw-skew-y {
2451
+ syntax: "*";
2452
+ inherits: false;
2453
+ }
1449
2454
  @property --tw-space-y-reverse {
1450
2455
  syntax: "*";
1451
2456
  inherits: false;
@@ -1558,10 +2563,72 @@
1558
2563
  inherits: false;
1559
2564
  initial-value: solid;
1560
2565
  }
2566
+ @property --tw-blur {
2567
+ syntax: "*";
2568
+ inherits: false;
2569
+ }
2570
+ @property --tw-brightness {
2571
+ syntax: "*";
2572
+ inherits: false;
2573
+ }
2574
+ @property --tw-contrast {
2575
+ syntax: "*";
2576
+ inherits: false;
2577
+ }
2578
+ @property --tw-grayscale {
2579
+ syntax: "*";
2580
+ inherits: false;
2581
+ }
2582
+ @property --tw-hue-rotate {
2583
+ syntax: "*";
2584
+ inherits: false;
2585
+ }
2586
+ @property --tw-invert {
2587
+ syntax: "*";
2588
+ inherits: false;
2589
+ }
2590
+ @property --tw-opacity {
2591
+ syntax: "*";
2592
+ inherits: false;
2593
+ }
2594
+ @property --tw-saturate {
2595
+ syntax: "*";
2596
+ inherits: false;
2597
+ }
2598
+ @property --tw-sepia {
2599
+ syntax: "*";
2600
+ inherits: false;
2601
+ }
2602
+ @property --tw-drop-shadow {
2603
+ syntax: "*";
2604
+ inherits: false;
2605
+ }
2606
+ @property --tw-drop-shadow-color {
2607
+ syntax: "*";
2608
+ inherits: false;
2609
+ }
2610
+ @property --tw-drop-shadow-alpha {
2611
+ syntax: "<percentage>";
2612
+ inherits: false;
2613
+ initial-value: 100%;
2614
+ }
2615
+ @property --tw-drop-shadow-size {
2616
+ syntax: "*";
2617
+ inherits: false;
2618
+ }
1561
2619
  @property --tw-duration {
1562
2620
  syntax: "*";
1563
2621
  inherits: false;
1564
2622
  }
2623
+ @property --tw-ease {
2624
+ syntax: "*";
2625
+ inherits: false;
2626
+ }
2627
+ @property --tw-content {
2628
+ syntax: "*";
2629
+ initial-value: "";
2630
+ inherits: false;
2631
+ }
1565
2632
  @keyframes spin {
1566
2633
  to {
1567
2634
  transform: rotate(360deg);
@@ -1602,6 +2669,14 @@
1602
2669
  height: 0;
1603
2670
  }
1604
2671
  }
2672
+ @keyframes caret-blink {
2673
+ 0%,70%,100% {
2674
+ opacity: 1;
2675
+ }
2676
+ 20%,50% {
2677
+ opacity: 0;
2678
+ }
2679
+ }
1605
2680
  @keyframes accordion-down {
1606
2681
  from {
1607
2682
  height: 0;
@@ -1618,12 +2693,37 @@
1618
2693
  height: 0;
1619
2694
  }
1620
2695
  }
2696
+ @keyframes toast-in {
2697
+ from {
2698
+ opacity: 0;
2699
+ transform: translateY(-8px) scale(0.98);
2700
+ }
2701
+ to {
2702
+ opacity: 1;
2703
+ transform: translateY(0) scale(1);
2704
+ }
2705
+ }
2706
+ @keyframes toast-out {
2707
+ from {
2708
+ opacity: 1;
2709
+ transform: translateY(0) scale(1);
2710
+ }
2711
+ to {
2712
+ opacity: 0;
2713
+ transform: translateY(-8px) scale(0.98);
2714
+ }
2715
+ }
1621
2716
  @layer properties {
1622
2717
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1623
2718
  *, ::before, ::after, ::backdrop {
1624
2719
  --tw-translate-x: 0;
1625
2720
  --tw-translate-y: 0;
1626
2721
  --tw-translate-z: 0;
2722
+ --tw-rotate-x: initial;
2723
+ --tw-rotate-y: initial;
2724
+ --tw-rotate-z: initial;
2725
+ --tw-skew-x: initial;
2726
+ --tw-skew-y: initial;
1627
2727
  --tw-space-y-reverse: 0;
1628
2728
  --tw-border-style: solid;
1629
2729
  --tw-leading: initial;
@@ -1649,7 +2749,22 @@
1649
2749
  --tw-ring-offset-color: #fff;
1650
2750
  --tw-ring-offset-shadow: 0 0 #0000;
1651
2751
  --tw-outline-style: solid;
2752
+ --tw-blur: initial;
2753
+ --tw-brightness: initial;
2754
+ --tw-contrast: initial;
2755
+ --tw-grayscale: initial;
2756
+ --tw-hue-rotate: initial;
2757
+ --tw-invert: initial;
2758
+ --tw-opacity: initial;
2759
+ --tw-saturate: initial;
2760
+ --tw-sepia: initial;
2761
+ --tw-drop-shadow: initial;
2762
+ --tw-drop-shadow-color: initial;
2763
+ --tw-drop-shadow-alpha: 100%;
2764
+ --tw-drop-shadow-size: initial;
1652
2765
  --tw-duration: initial;
2766
+ --tw-ease: initial;
2767
+ --tw-content: "";
1653
2768
  --tw-animation-delay: 0s;
1654
2769
  --tw-animation-direction: normal;
1655
2770
  --tw-animation-duration: initial;