@erikey/react 0.3.4 → 0.4.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/dist/chunk-Y3WVYSUI.mjs +1150 -0
- package/dist/chunk-Y3WVYSUI.mjs.map +1 -0
- package/dist/index.d.mts +858 -3823
- package/dist/index.mjs +573 -1034
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1039 -81
- package/dist/styles.css.map +1 -1
- package/dist/ui/index.mjs +17230 -908
- package/dist/ui/index.mjs.map +1 -1
- package/package.json +30 -9
- package/dist/ui/index.css +0 -797
- package/dist/ui/index.css.map +0 -1
- package/dist/ui/index.d.mts +0 -729
package/dist/styles.css
CHANGED
|
@@ -360,6 +360,32 @@ video {
|
|
|
360
360
|
max-width: 1536px;
|
|
361
361
|
}
|
|
362
362
|
}
|
|
363
|
+
.sr-only {
|
|
364
|
+
position: absolute;
|
|
365
|
+
width: 1px;
|
|
366
|
+
height: 1px;
|
|
367
|
+
padding: 0;
|
|
368
|
+
margin: -1px;
|
|
369
|
+
overflow: hidden;
|
|
370
|
+
clip: rect(0, 0, 0, 0);
|
|
371
|
+
white-space: nowrap;
|
|
372
|
+
border-width: 0;
|
|
373
|
+
}
|
|
374
|
+
.pointer-events-none {
|
|
375
|
+
pointer-events: none;
|
|
376
|
+
}
|
|
377
|
+
.visible {
|
|
378
|
+
visibility: visible;
|
|
379
|
+
}
|
|
380
|
+
.invisible {
|
|
381
|
+
visibility: hidden;
|
|
382
|
+
}
|
|
383
|
+
.static {
|
|
384
|
+
position: static;
|
|
385
|
+
}
|
|
386
|
+
.fixed {
|
|
387
|
+
position: fixed;
|
|
388
|
+
}
|
|
363
389
|
.absolute {
|
|
364
390
|
position: absolute;
|
|
365
391
|
}
|
|
@@ -369,22 +395,144 @@ video {
|
|
|
369
395
|
.inset-0 {
|
|
370
396
|
inset: 0px;
|
|
371
397
|
}
|
|
398
|
+
.left-2 {
|
|
399
|
+
left: 0.5rem;
|
|
400
|
+
}
|
|
401
|
+
.left-\[50\%\] {
|
|
402
|
+
left: 50%;
|
|
403
|
+
}
|
|
404
|
+
.right-0 {
|
|
405
|
+
right: 0px;
|
|
406
|
+
}
|
|
407
|
+
.right-2 {
|
|
408
|
+
right: 0.5rem;
|
|
409
|
+
}
|
|
410
|
+
.right-4 {
|
|
411
|
+
right: 1rem;
|
|
412
|
+
}
|
|
413
|
+
.top-0 {
|
|
414
|
+
top: 0px;
|
|
415
|
+
}
|
|
416
|
+
.top-1\/2 {
|
|
417
|
+
top: 50%;
|
|
418
|
+
}
|
|
419
|
+
.top-4 {
|
|
420
|
+
top: 1rem;
|
|
421
|
+
}
|
|
422
|
+
.top-\[50\%\] {
|
|
423
|
+
top: 50%;
|
|
424
|
+
}
|
|
372
425
|
.z-50 {
|
|
373
426
|
z-index: 50;
|
|
374
427
|
}
|
|
428
|
+
.col-start-2 {
|
|
429
|
+
grid-column-start: 2;
|
|
430
|
+
}
|
|
431
|
+
.row-span-2 {
|
|
432
|
+
grid-row: span 2 / span 2;
|
|
433
|
+
}
|
|
434
|
+
.row-start-1 {
|
|
435
|
+
grid-row-start: 1;
|
|
436
|
+
}
|
|
437
|
+
.-mx-1 {
|
|
438
|
+
margin-left: -0.25rem;
|
|
439
|
+
margin-right: -0.25rem;
|
|
440
|
+
}
|
|
441
|
+
.-my-1 {
|
|
442
|
+
margin-top: -0.25rem;
|
|
443
|
+
margin-bottom: -0.25rem;
|
|
444
|
+
}
|
|
445
|
+
.-my-2 {
|
|
446
|
+
margin-top: -0.5rem;
|
|
447
|
+
margin-bottom: -0.5rem;
|
|
448
|
+
}
|
|
449
|
+
.mx-0 {
|
|
450
|
+
margin-left: 0px;
|
|
451
|
+
margin-right: 0px;
|
|
452
|
+
}
|
|
375
453
|
.mx-auto {
|
|
376
454
|
margin-left: auto;
|
|
377
455
|
margin-right: auto;
|
|
378
456
|
}
|
|
457
|
+
.my-0 {
|
|
458
|
+
margin-top: 0px;
|
|
459
|
+
margin-bottom: 0px;
|
|
460
|
+
}
|
|
461
|
+
.my-0\.5 {
|
|
462
|
+
margin-top: 0.125rem;
|
|
463
|
+
margin-bottom: 0.125rem;
|
|
464
|
+
}
|
|
379
465
|
.my-1 {
|
|
380
466
|
margin-top: 0.25rem;
|
|
381
467
|
margin-bottom: 0.25rem;
|
|
382
468
|
}
|
|
383
|
-
.
|
|
384
|
-
margin-
|
|
469
|
+
.my-2 {
|
|
470
|
+
margin-top: 0.5rem;
|
|
471
|
+
margin-bottom: 0.5rem;
|
|
472
|
+
}
|
|
473
|
+
.my-\[26px\] {
|
|
474
|
+
margin-top: 26px;
|
|
475
|
+
margin-bottom: 26px;
|
|
476
|
+
}
|
|
477
|
+
.my-\[30px\] {
|
|
478
|
+
margin-top: 30px;
|
|
479
|
+
margin-bottom: 30px;
|
|
480
|
+
}
|
|
481
|
+
.my-\[40px\] {
|
|
482
|
+
margin-top: 40px;
|
|
483
|
+
margin-bottom: 40px;
|
|
484
|
+
}
|
|
485
|
+
.my-auto {
|
|
486
|
+
margin-top: auto;
|
|
487
|
+
margin-bottom: auto;
|
|
488
|
+
}
|
|
489
|
+
.mb-0\.5 {
|
|
490
|
+
margin-bottom: 0.125rem;
|
|
491
|
+
}
|
|
492
|
+
.mb-3 {
|
|
493
|
+
margin-bottom: 0.75rem;
|
|
494
|
+
}
|
|
495
|
+
.mb-\[32px\] {
|
|
496
|
+
margin-bottom: 32px;
|
|
497
|
+
}
|
|
498
|
+
.me-6 {
|
|
499
|
+
margin-inline-end: 1.5rem;
|
|
500
|
+
}
|
|
501
|
+
.ml-1 {
|
|
502
|
+
margin-left: 0.25rem;
|
|
503
|
+
}
|
|
504
|
+
.ml-4 {
|
|
505
|
+
margin-left: 1rem;
|
|
506
|
+
}
|
|
507
|
+
.ml-auto {
|
|
508
|
+
margin-left: auto;
|
|
509
|
+
}
|
|
510
|
+
.ms-auto {
|
|
511
|
+
margin-inline-start: auto;
|
|
512
|
+
}
|
|
513
|
+
.mt-0\.5 {
|
|
514
|
+
margin-top: 0.125rem;
|
|
515
|
+
}
|
|
516
|
+
.mt-1\.5 {
|
|
517
|
+
margin-top: 0.375rem;
|
|
518
|
+
}
|
|
519
|
+
.mt-4 {
|
|
520
|
+
margin-top: 1rem;
|
|
521
|
+
}
|
|
522
|
+
.mt-\[32px\] {
|
|
523
|
+
margin-top: 32px;
|
|
524
|
+
}
|
|
525
|
+
.mt-auto {
|
|
526
|
+
margin-top: auto;
|
|
385
527
|
}
|
|
386
|
-
.
|
|
387
|
-
|
|
528
|
+
.line-clamp-1 {
|
|
529
|
+
overflow: hidden;
|
|
530
|
+
display: -webkit-box;
|
|
531
|
+
-webkit-box-orient: vertical;
|
|
532
|
+
-webkit-line-clamp: 1;
|
|
533
|
+
}
|
|
534
|
+
.block {
|
|
535
|
+
display: block;
|
|
388
536
|
}
|
|
389
537
|
.flex {
|
|
390
538
|
display: flex;
|
|
@@ -395,72 +543,244 @@ video {
|
|
|
395
543
|
.grid {
|
|
396
544
|
display: grid;
|
|
397
545
|
}
|
|
546
|
+
.contents {
|
|
547
|
+
display: contents;
|
|
548
|
+
}
|
|
549
|
+
.hidden {
|
|
550
|
+
display: none;
|
|
551
|
+
}
|
|
398
552
|
.aspect-square {
|
|
399
553
|
aspect-ratio: 1 / 1;
|
|
400
554
|
}
|
|
401
|
-
|
|
555
|
+
.\!size-8 {
|
|
556
|
+
width: 2rem !important;
|
|
557
|
+
height: 2rem !important;
|
|
558
|
+
}
|
|
559
|
+
.size-10 {
|
|
560
|
+
width: 2.5rem;
|
|
402
561
|
height: 2.5rem;
|
|
403
562
|
}
|
|
404
|
-
.
|
|
563
|
+
.size-12 {
|
|
564
|
+
width: 3rem;
|
|
405
565
|
height: 3rem;
|
|
406
566
|
}
|
|
567
|
+
.size-16 {
|
|
568
|
+
width: 4rem;
|
|
569
|
+
height: 4rem;
|
|
570
|
+
}
|
|
571
|
+
.size-2 {
|
|
572
|
+
width: 0.5rem;
|
|
573
|
+
height: 0.5rem;
|
|
574
|
+
}
|
|
575
|
+
.size-20 {
|
|
576
|
+
width: 5rem;
|
|
577
|
+
height: 5rem;
|
|
578
|
+
}
|
|
579
|
+
.size-3 {
|
|
580
|
+
width: 0.75rem;
|
|
581
|
+
height: 0.75rem;
|
|
582
|
+
}
|
|
583
|
+
.size-3\.5 {
|
|
584
|
+
width: 0.875rem;
|
|
585
|
+
height: 0.875rem;
|
|
586
|
+
}
|
|
587
|
+
.size-4 {
|
|
588
|
+
width: 1rem;
|
|
589
|
+
height: 1rem;
|
|
590
|
+
}
|
|
591
|
+
.size-5 {
|
|
592
|
+
width: 1.25rem;
|
|
593
|
+
height: 1.25rem;
|
|
594
|
+
}
|
|
595
|
+
.size-6 {
|
|
596
|
+
width: 1.5rem;
|
|
597
|
+
height: 1.5rem;
|
|
598
|
+
}
|
|
599
|
+
.size-8 {
|
|
600
|
+
width: 2rem;
|
|
601
|
+
height: 2rem;
|
|
602
|
+
}
|
|
603
|
+
.size-9 {
|
|
604
|
+
width: 2.25rem;
|
|
605
|
+
height: 2.25rem;
|
|
606
|
+
}
|
|
607
|
+
.size-\[50\%\] {
|
|
608
|
+
width: 50%;
|
|
609
|
+
height: 50%;
|
|
610
|
+
}
|
|
611
|
+
.size-fit {
|
|
612
|
+
width: -moz-fit-content;
|
|
613
|
+
width: fit-content;
|
|
614
|
+
height: -moz-fit-content;
|
|
615
|
+
height: fit-content;
|
|
616
|
+
}
|
|
617
|
+
.size-full {
|
|
618
|
+
width: 100%;
|
|
619
|
+
height: 100%;
|
|
620
|
+
}
|
|
621
|
+
.h-10 {
|
|
622
|
+
height: 2.5rem;
|
|
623
|
+
}
|
|
624
|
+
.h-2 {
|
|
625
|
+
height: 0.5rem;
|
|
626
|
+
}
|
|
407
627
|
.h-3 {
|
|
408
628
|
height: 0.75rem;
|
|
409
629
|
}
|
|
630
|
+
.h-3\.5 {
|
|
631
|
+
height: 0.875rem;
|
|
632
|
+
}
|
|
410
633
|
.h-4 {
|
|
411
634
|
height: 1rem;
|
|
412
635
|
}
|
|
636
|
+
.h-5 {
|
|
637
|
+
height: 1.25rem;
|
|
638
|
+
}
|
|
413
639
|
.h-8 {
|
|
414
640
|
height: 2rem;
|
|
415
641
|
}
|
|
416
642
|
.h-9 {
|
|
417
643
|
height: 2.25rem;
|
|
418
644
|
}
|
|
419
|
-
.h-\[
|
|
420
|
-
height:
|
|
645
|
+
.h-\[76px\] {
|
|
646
|
+
height: 76px;
|
|
421
647
|
}
|
|
422
|
-
.h
|
|
423
|
-
height: 100
|
|
648
|
+
.h-\[calc\(100\%-1px\)\] {
|
|
649
|
+
height: calc(100% - 1px);
|
|
650
|
+
}
|
|
651
|
+
.h-\[var\(--radix-select-trigger-height\)\] {
|
|
652
|
+
height: var(--radix-select-trigger-height);
|
|
653
|
+
}
|
|
654
|
+
.h-auto {
|
|
655
|
+
height: auto;
|
|
656
|
+
}
|
|
657
|
+
.h-fit {
|
|
658
|
+
height: -moz-fit-content;
|
|
659
|
+
height: fit-content;
|
|
424
660
|
}
|
|
425
661
|
.h-px {
|
|
426
662
|
height: 1px;
|
|
427
663
|
}
|
|
428
|
-
.
|
|
429
|
-
|
|
664
|
+
.min-h-16 {
|
|
665
|
+
min-height: 4rem;
|
|
666
|
+
}
|
|
667
|
+
.min-h-4 {
|
|
668
|
+
min-height: 1rem;
|
|
669
|
+
}
|
|
670
|
+
.\!w-auto {
|
|
671
|
+
width: auto !important;
|
|
672
|
+
}
|
|
673
|
+
.w-1\/3 {
|
|
674
|
+
width: 33.333333%;
|
|
430
675
|
}
|
|
431
676
|
.w-12 {
|
|
432
677
|
width: 3rem;
|
|
433
678
|
}
|
|
679
|
+
.w-14 {
|
|
680
|
+
width: 3.5rem;
|
|
681
|
+
}
|
|
682
|
+
.w-16 {
|
|
683
|
+
width: 4rem;
|
|
684
|
+
}
|
|
685
|
+
.w-2\/3 {
|
|
686
|
+
width: 66.666667%;
|
|
687
|
+
}
|
|
434
688
|
.w-24 {
|
|
435
689
|
width: 6rem;
|
|
436
690
|
}
|
|
691
|
+
.w-28 {
|
|
692
|
+
width: 7rem;
|
|
693
|
+
}
|
|
437
694
|
.w-32 {
|
|
438
695
|
width: 8rem;
|
|
439
696
|
}
|
|
440
|
-
.w-
|
|
441
|
-
width:
|
|
697
|
+
.w-40 {
|
|
698
|
+
width: 10rem;
|
|
442
699
|
}
|
|
443
|
-
.w-
|
|
444
|
-
width:
|
|
700
|
+
.w-48 {
|
|
701
|
+
width: 12rem;
|
|
445
702
|
}
|
|
446
703
|
.w-9 {
|
|
447
704
|
width: 2.25rem;
|
|
448
705
|
}
|
|
449
|
-
.w-\[
|
|
450
|
-
width:
|
|
706
|
+
.w-\[--radix-dropdown-menu-trigger-width\] {
|
|
707
|
+
width: var(--radix-dropdown-menu-trigger-width);
|
|
708
|
+
}
|
|
709
|
+
.w-\[--radix-select-trigger-width\] {
|
|
710
|
+
width: var(--radix-select-trigger-width);
|
|
711
|
+
}
|
|
712
|
+
.w-\[100px\] {
|
|
713
|
+
width: 100px;
|
|
714
|
+
}
|
|
715
|
+
.w-\[302px\] {
|
|
716
|
+
width: 302px;
|
|
717
|
+
}
|
|
718
|
+
.w-fit {
|
|
719
|
+
width: -moz-fit-content;
|
|
720
|
+
width: fit-content;
|
|
451
721
|
}
|
|
452
722
|
.w-full {
|
|
453
723
|
width: 100%;
|
|
454
724
|
}
|
|
455
|
-
.
|
|
456
|
-
|
|
725
|
+
.w-px {
|
|
726
|
+
width: 1px;
|
|
727
|
+
}
|
|
728
|
+
.min-w-0 {
|
|
729
|
+
min-width: 0px;
|
|
730
|
+
}
|
|
731
|
+
.min-w-56 {
|
|
732
|
+
min-width: 14rem;
|
|
733
|
+
}
|
|
734
|
+
.min-w-\[8rem\] {
|
|
735
|
+
min-width: 8rem;
|
|
457
736
|
}
|
|
458
|
-
.
|
|
459
|
-
|
|
737
|
+
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
738
|
+
min-width: var(--radix-select-trigger-width);
|
|
739
|
+
}
|
|
740
|
+
.max-w-14 {
|
|
741
|
+
max-width: 3.5rem;
|
|
742
|
+
}
|
|
743
|
+
.max-w-32 {
|
|
744
|
+
max-width: 8rem;
|
|
745
|
+
}
|
|
746
|
+
.max-w-56 {
|
|
747
|
+
max-width: 14rem;
|
|
748
|
+
}
|
|
749
|
+
.max-w-64 {
|
|
750
|
+
max-width: 16rem;
|
|
751
|
+
}
|
|
752
|
+
.max-w-\[465px\] {
|
|
753
|
+
max-width: 465px;
|
|
754
|
+
}
|
|
755
|
+
.max-w-\[calc\(100\%-2rem\)\] {
|
|
756
|
+
max-width: calc(100% - 2rem);
|
|
757
|
+
}
|
|
758
|
+
.max-w-full {
|
|
759
|
+
max-width: 100%;
|
|
760
|
+
}
|
|
761
|
+
.max-w-sm {
|
|
762
|
+
max-width: 24rem;
|
|
763
|
+
}
|
|
764
|
+
.flex-1 {
|
|
765
|
+
flex: 1 1 0%;
|
|
766
|
+
}
|
|
767
|
+
.flex-shrink-0 {
|
|
768
|
+
flex-shrink: 0;
|
|
460
769
|
}
|
|
461
770
|
.shrink-0 {
|
|
462
771
|
flex-shrink: 0;
|
|
463
772
|
}
|
|
773
|
+
.grow {
|
|
774
|
+
flex-grow: 1;
|
|
775
|
+
}
|
|
776
|
+
.translate-x-\[-50\%\] {
|
|
777
|
+
--tw-translate-x: -50%;
|
|
778
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
779
|
+
}
|
|
780
|
+
.translate-y-\[-50\%\] {
|
|
781
|
+
--tw-translate-y: -50%;
|
|
782
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
783
|
+
}
|
|
464
784
|
@keyframes pulse {
|
|
465
785
|
50% {
|
|
466
786
|
opacity: .5;
|
|
@@ -477,29 +797,75 @@ video {
|
|
|
477
797
|
.animate-spin {
|
|
478
798
|
animation: spin 1s linear infinite;
|
|
479
799
|
}
|
|
480
|
-
.cursor-
|
|
481
|
-
cursor:
|
|
800
|
+
.cursor-default {
|
|
801
|
+
cursor: default;
|
|
482
802
|
}
|
|
483
803
|
.select-none {
|
|
484
804
|
-webkit-user-select: none;
|
|
485
805
|
-moz-user-select: none;
|
|
486
806
|
user-select: none;
|
|
487
807
|
}
|
|
808
|
+
.scroll-my-1 {
|
|
809
|
+
scroll-margin-top: 0.25rem;
|
|
810
|
+
scroll-margin-bottom: 0.25rem;
|
|
811
|
+
}
|
|
812
|
+
.list-disc {
|
|
813
|
+
list-style-type: disc;
|
|
814
|
+
}
|
|
815
|
+
.auto-rows-min {
|
|
816
|
+
grid-auto-rows: min-content;
|
|
817
|
+
}
|
|
818
|
+
.grid-cols-2 {
|
|
819
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
820
|
+
}
|
|
821
|
+
.grid-cols-\[0_1fr\] {
|
|
822
|
+
grid-template-columns: 0 1fr;
|
|
823
|
+
}
|
|
824
|
+
.grid-rows-\[auto_auto\] {
|
|
825
|
+
grid-template-rows: auto auto;
|
|
826
|
+
}
|
|
827
|
+
.flex-row {
|
|
828
|
+
flex-direction: row;
|
|
829
|
+
}
|
|
488
830
|
.flex-col {
|
|
489
831
|
flex-direction: column;
|
|
490
832
|
}
|
|
833
|
+
.flex-col-reverse {
|
|
834
|
+
flex-direction: column-reverse;
|
|
835
|
+
}
|
|
836
|
+
.flex-wrap {
|
|
837
|
+
flex-wrap: wrap;
|
|
838
|
+
}
|
|
839
|
+
.items-start {
|
|
840
|
+
align-items: flex-start;
|
|
841
|
+
}
|
|
491
842
|
.items-center {
|
|
492
843
|
align-items: center;
|
|
493
844
|
}
|
|
845
|
+
.justify-start {
|
|
846
|
+
justify-content: flex-start;
|
|
847
|
+
}
|
|
494
848
|
.justify-center {
|
|
495
849
|
justify-content: center;
|
|
496
850
|
}
|
|
497
851
|
.justify-between {
|
|
498
852
|
justify-content: space-between;
|
|
499
853
|
}
|
|
854
|
+
.justify-items-start {
|
|
855
|
+
justify-items: start;
|
|
856
|
+
}
|
|
857
|
+
.justify-items-center {
|
|
858
|
+
justify-items: center;
|
|
859
|
+
}
|
|
860
|
+
.gap-0\.5 {
|
|
861
|
+
gap: 0.125rem;
|
|
862
|
+
}
|
|
500
863
|
.gap-1 {
|
|
501
864
|
gap: 0.25rem;
|
|
502
865
|
}
|
|
866
|
+
.gap-1\.5 {
|
|
867
|
+
gap: 0.375rem;
|
|
868
|
+
}
|
|
503
869
|
.gap-2 {
|
|
504
870
|
gap: 0.5rem;
|
|
505
871
|
}
|
|
@@ -509,38 +875,66 @@ video {
|
|
|
509
875
|
.gap-4 {
|
|
510
876
|
gap: 1rem;
|
|
511
877
|
}
|
|
512
|
-
.
|
|
513
|
-
|
|
514
|
-
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
515
|
-
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
878
|
+
.gap-6 {
|
|
879
|
+
gap: 1.5rem;
|
|
516
880
|
}
|
|
517
|
-
.
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
881
|
+
.gap-7 {
|
|
882
|
+
gap: 1.75rem;
|
|
883
|
+
}
|
|
884
|
+
.gap-y-0\.5 {
|
|
885
|
+
row-gap: 0.125rem;
|
|
521
886
|
}
|
|
522
|
-
.space-y-
|
|
887
|
+
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
|
|
523
888
|
--tw-space-y-reverse: 0;
|
|
524
|
-
margin-top: calc(0.
|
|
525
|
-
margin-bottom: calc(0.
|
|
889
|
+
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
890
|
+
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
526
891
|
}
|
|
527
892
|
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
|
|
528
893
|
--tw-space-y-reverse: 0;
|
|
529
894
|
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
530
895
|
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
531
896
|
}
|
|
897
|
+
.self-start {
|
|
898
|
+
align-self: flex-start;
|
|
899
|
+
}
|
|
900
|
+
.self-center {
|
|
901
|
+
align-self: center;
|
|
902
|
+
}
|
|
903
|
+
.justify-self-end {
|
|
904
|
+
justify-self: end;
|
|
905
|
+
}
|
|
532
906
|
.overflow-hidden {
|
|
533
907
|
overflow: hidden;
|
|
534
908
|
}
|
|
909
|
+
.overflow-y-auto {
|
|
910
|
+
overflow-y: auto;
|
|
911
|
+
}
|
|
912
|
+
.overflow-x-hidden {
|
|
913
|
+
overflow-x: hidden;
|
|
914
|
+
}
|
|
915
|
+
.truncate {
|
|
916
|
+
overflow: hidden;
|
|
917
|
+
text-overflow: ellipsis;
|
|
918
|
+
white-space: nowrap;
|
|
919
|
+
}
|
|
535
920
|
.whitespace-nowrap {
|
|
536
921
|
white-space: nowrap;
|
|
537
922
|
}
|
|
923
|
+
.break-all {
|
|
924
|
+
word-break: break-all;
|
|
925
|
+
}
|
|
538
926
|
.rounded {
|
|
539
927
|
border-radius: 0.25rem;
|
|
540
928
|
}
|
|
929
|
+
.rounded-\[4px\] {
|
|
930
|
+
border-radius: 4px;
|
|
931
|
+
}
|
|
541
932
|
.rounded-full {
|
|
542
933
|
border-radius: 9999px;
|
|
543
934
|
}
|
|
935
|
+
.rounded-lg {
|
|
936
|
+
border-radius: 0.5rem;
|
|
937
|
+
}
|
|
544
938
|
.rounded-md {
|
|
545
939
|
border-radius: 0.375rem;
|
|
546
940
|
}
|
|
@@ -550,22 +944,80 @@ video {
|
|
|
550
944
|
.rounded-xl {
|
|
551
945
|
border-radius: 0.75rem;
|
|
552
946
|
}
|
|
947
|
+
.rounded-b-xl {
|
|
948
|
+
border-bottom-right-radius: 0.75rem;
|
|
949
|
+
border-bottom-left-radius: 0.75rem;
|
|
950
|
+
}
|
|
553
951
|
.border {
|
|
554
952
|
border-width: 1px;
|
|
555
953
|
}
|
|
954
|
+
.border-y {
|
|
955
|
+
border-top-width: 1px;
|
|
956
|
+
border-bottom-width: 1px;
|
|
957
|
+
}
|
|
958
|
+
.border-b {
|
|
959
|
+
border-bottom-width: 1px;
|
|
960
|
+
}
|
|
961
|
+
.border-r {
|
|
962
|
+
border-right-width: 1px;
|
|
963
|
+
}
|
|
964
|
+
.border-t {
|
|
965
|
+
border-top-width: 1px;
|
|
966
|
+
}
|
|
967
|
+
.border-solid {
|
|
968
|
+
border-style: solid;
|
|
969
|
+
}
|
|
970
|
+
.border-transparent {
|
|
971
|
+
border-color: transparent;
|
|
972
|
+
}
|
|
973
|
+
.\!bg-transparent {
|
|
974
|
+
background-color: transparent !important;
|
|
975
|
+
}
|
|
976
|
+
.bg-black\/50 {
|
|
977
|
+
background-color: rgb(0 0 0 / 0.5);
|
|
978
|
+
}
|
|
556
979
|
.bg-transparent {
|
|
557
980
|
background-color: transparent;
|
|
558
981
|
}
|
|
559
|
-
.
|
|
560
|
-
|
|
561
|
-
|
|
982
|
+
.fill-current {
|
|
983
|
+
fill: currentColor;
|
|
984
|
+
}
|
|
985
|
+
.\!p-2 {
|
|
986
|
+
padding: 0.5rem !important;
|
|
987
|
+
}
|
|
988
|
+
.p-0 {
|
|
989
|
+
padding: 0px;
|
|
562
990
|
}
|
|
563
991
|
.p-1 {
|
|
564
992
|
padding: 0.25rem;
|
|
565
993
|
}
|
|
994
|
+
.p-2 {
|
|
995
|
+
padding: 0.5rem;
|
|
996
|
+
}
|
|
997
|
+
.p-4 {
|
|
998
|
+
padding: 1rem;
|
|
999
|
+
}
|
|
566
1000
|
.p-6 {
|
|
567
1001
|
padding: 1.5rem;
|
|
568
1002
|
}
|
|
1003
|
+
.p-\[20px\] {
|
|
1004
|
+
padding: 20px;
|
|
1005
|
+
}
|
|
1006
|
+
.p-\[3px\] {
|
|
1007
|
+
padding: 3px;
|
|
1008
|
+
}
|
|
1009
|
+
.\!py-4 {
|
|
1010
|
+
padding-top: 1rem !important;
|
|
1011
|
+
padding-bottom: 1rem !important;
|
|
1012
|
+
}
|
|
1013
|
+
.\!py-5 {
|
|
1014
|
+
padding-top: 1.25rem !important;
|
|
1015
|
+
padding-bottom: 1.25rem !important;
|
|
1016
|
+
}
|
|
1017
|
+
.px-0 {
|
|
1018
|
+
padding-left: 0px;
|
|
1019
|
+
padding-right: 0px;
|
|
1020
|
+
}
|
|
569
1021
|
.px-2 {
|
|
570
1022
|
padding-left: 0.5rem;
|
|
571
1023
|
padding-right: 0.5rem;
|
|
@@ -578,9 +1030,13 @@ video {
|
|
|
578
1030
|
padding-left: 1rem;
|
|
579
1031
|
padding-right: 1rem;
|
|
580
1032
|
}
|
|
581
|
-
.px-
|
|
582
|
-
padding-left:
|
|
583
|
-
padding-right:
|
|
1033
|
+
.px-5 {
|
|
1034
|
+
padding-left: 1.25rem;
|
|
1035
|
+
padding-right: 1.25rem;
|
|
1036
|
+
}
|
|
1037
|
+
.px-6 {
|
|
1038
|
+
padding-left: 1.5rem;
|
|
1039
|
+
padding-right: 1.5rem;
|
|
584
1040
|
}
|
|
585
1041
|
.py-1 {
|
|
586
1042
|
padding-top: 0.25rem;
|
|
@@ -594,16 +1050,82 @@ video {
|
|
|
594
1050
|
padding-top: 0.5rem;
|
|
595
1051
|
padding-bottom: 0.5rem;
|
|
596
1052
|
}
|
|
597
|
-
.
|
|
598
|
-
padding-top:
|
|
1053
|
+
.py-3 {
|
|
1054
|
+
padding-top: 0.75rem;
|
|
1055
|
+
padding-bottom: 0.75rem;
|
|
1056
|
+
}
|
|
1057
|
+
.py-4 {
|
|
1058
|
+
padding-top: 1rem;
|
|
1059
|
+
padding-bottom: 1rem;
|
|
1060
|
+
}
|
|
1061
|
+
.py-6 {
|
|
1062
|
+
padding-top: 1.5rem;
|
|
1063
|
+
padding-bottom: 1.5rem;
|
|
1064
|
+
}
|
|
1065
|
+
.pb-0 {
|
|
1066
|
+
padding-bottom: 0px;
|
|
1067
|
+
}
|
|
1068
|
+
.pb-4 {
|
|
1069
|
+
padding-bottom: 1rem;
|
|
1070
|
+
}
|
|
1071
|
+
.pl-2 {
|
|
1072
|
+
padding-left: 0.5rem;
|
|
1073
|
+
}
|
|
1074
|
+
.pl-8 {
|
|
1075
|
+
padding-left: 2rem;
|
|
1076
|
+
}
|
|
1077
|
+
.pr-10 {
|
|
1078
|
+
padding-right: 2.5rem;
|
|
1079
|
+
}
|
|
1080
|
+
.pr-2 {
|
|
1081
|
+
padding-right: 0.5rem;
|
|
1082
|
+
}
|
|
1083
|
+
.pr-8 {
|
|
1084
|
+
padding-right: 2rem;
|
|
1085
|
+
}
|
|
1086
|
+
.text-left {
|
|
1087
|
+
text-align: left;
|
|
599
1088
|
}
|
|
600
1089
|
.text-center {
|
|
601
1090
|
text-align: center;
|
|
602
1091
|
}
|
|
1092
|
+
.text-start {
|
|
1093
|
+
text-align: start;
|
|
1094
|
+
}
|
|
1095
|
+
.font-mono {
|
|
1096
|
+
font-family:
|
|
1097
|
+
ui-monospace,
|
|
1098
|
+
SFMono-Regular,
|
|
1099
|
+
Menlo,
|
|
1100
|
+
Monaco,
|
|
1101
|
+
Consolas,
|
|
1102
|
+
"Liberation Mono",
|
|
1103
|
+
"Courier New",
|
|
1104
|
+
monospace;
|
|
1105
|
+
}
|
|
1106
|
+
.font-sans {
|
|
1107
|
+
font-family:
|
|
1108
|
+
ui-sans-serif,
|
|
1109
|
+
system-ui,
|
|
1110
|
+
sans-serif,
|
|
1111
|
+
"Apple Color Emoji",
|
|
1112
|
+
"Segoe UI Emoji",
|
|
1113
|
+
"Segoe UI Symbol",
|
|
1114
|
+
"Noto Color Emoji";
|
|
1115
|
+
}
|
|
603
1116
|
.text-2xl {
|
|
604
1117
|
font-size: 1.5rem;
|
|
605
1118
|
line-height: 2rem;
|
|
606
1119
|
}
|
|
1120
|
+
.text-\[12px\] {
|
|
1121
|
+
font-size: 12px;
|
|
1122
|
+
}
|
|
1123
|
+
.text-\[14px\] {
|
|
1124
|
+
font-size: 14px;
|
|
1125
|
+
}
|
|
1126
|
+
.text-\[24px\] {
|
|
1127
|
+
font-size: 24px;
|
|
1128
|
+
}
|
|
607
1129
|
.text-base {
|
|
608
1130
|
font-size: 1rem;
|
|
609
1131
|
line-height: 1.5rem;
|
|
@@ -620,6 +1142,9 @@ video {
|
|
|
620
1142
|
font-size: 0.75rem;
|
|
621
1143
|
line-height: 1rem;
|
|
622
1144
|
}
|
|
1145
|
+
.font-bold {
|
|
1146
|
+
font-weight: 700;
|
|
1147
|
+
}
|
|
623
1148
|
.font-medium {
|
|
624
1149
|
font-weight: 500;
|
|
625
1150
|
}
|
|
@@ -635,25 +1160,56 @@ video {
|
|
|
635
1160
|
.lowercase {
|
|
636
1161
|
text-transform: lowercase;
|
|
637
1162
|
}
|
|
1163
|
+
.leading-\[24px\] {
|
|
1164
|
+
line-height: 24px;
|
|
1165
|
+
}
|
|
638
1166
|
.leading-none {
|
|
639
1167
|
line-height: 1;
|
|
640
1168
|
}
|
|
1169
|
+
.leading-normal {
|
|
1170
|
+
line-height: 1.5;
|
|
1171
|
+
}
|
|
1172
|
+
.leading-snug {
|
|
1173
|
+
line-height: 1.375;
|
|
1174
|
+
}
|
|
1175
|
+
.leading-tight {
|
|
1176
|
+
line-height: 1.25;
|
|
1177
|
+
}
|
|
641
1178
|
.tracking-tight {
|
|
642
1179
|
letter-spacing: -0.025em;
|
|
643
1180
|
}
|
|
1181
|
+
.tracking-widest {
|
|
1182
|
+
letter-spacing: 0.1em;
|
|
1183
|
+
}
|
|
1184
|
+
.text-\[\#666666\] {
|
|
1185
|
+
--tw-text-opacity: 1;
|
|
1186
|
+
color: rgb(102 102 102 / var(--tw-text-opacity, 1));
|
|
1187
|
+
}
|
|
644
1188
|
.text-current {
|
|
645
1189
|
color: currentColor;
|
|
646
1190
|
}
|
|
647
|
-
.text-
|
|
1191
|
+
.text-white {
|
|
648
1192
|
--tw-text-opacity: 1;
|
|
649
|
-
color: rgb(
|
|
1193
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
1194
|
+
}
|
|
1195
|
+
.underline {
|
|
1196
|
+
text-decoration-line: underline;
|
|
1197
|
+
}
|
|
1198
|
+
.no-underline {
|
|
1199
|
+
text-decoration-line: none;
|
|
650
1200
|
}
|
|
651
1201
|
.underline-offset-4 {
|
|
652
1202
|
text-underline-offset: 4px;
|
|
653
1203
|
}
|
|
654
|
-
.
|
|
655
|
-
|
|
656
|
-
|
|
1204
|
+
.opacity-50 {
|
|
1205
|
+
opacity: 0.5;
|
|
1206
|
+
}
|
|
1207
|
+
.opacity-70 {
|
|
1208
|
+
opacity: 0.7;
|
|
1209
|
+
}
|
|
1210
|
+
.shadow-lg {
|
|
1211
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1212
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
657
1213
|
box-shadow:
|
|
658
1214
|
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
659
1215
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
@@ -682,17 +1238,38 @@ video {
|
|
|
682
1238
|
.outline {
|
|
683
1239
|
outline-style: solid;
|
|
684
1240
|
}
|
|
685
|
-
.
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
1241
|
+
.filter {
|
|
1242
|
+
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);
|
|
1243
|
+
}
|
|
1244
|
+
.transition-\[color\,box-shadow\] {
|
|
1245
|
+
transition-property: color, box-shadow;
|
|
1246
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1247
|
+
transition-duration: 150ms;
|
|
1248
|
+
}
|
|
1249
|
+
.transition-all {
|
|
1250
|
+
transition-property: all;
|
|
693
1251
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
694
1252
|
transition-duration: 150ms;
|
|
695
1253
|
}
|
|
1254
|
+
.transition-none {
|
|
1255
|
+
transition-property: none;
|
|
1256
|
+
}
|
|
1257
|
+
.transition-opacity {
|
|
1258
|
+
transition-property: opacity;
|
|
1259
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1260
|
+
transition-duration: 150ms;
|
|
1261
|
+
}
|
|
1262
|
+
.transition-shadow {
|
|
1263
|
+
transition-property: box-shadow;
|
|
1264
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1265
|
+
transition-duration: 150ms;
|
|
1266
|
+
}
|
|
1267
|
+
.duration-1000 {
|
|
1268
|
+
transition-duration: 1000ms;
|
|
1269
|
+
}
|
|
1270
|
+
.duration-200 {
|
|
1271
|
+
transition-duration: 200ms;
|
|
1272
|
+
}
|
|
696
1273
|
@keyframes enter {
|
|
697
1274
|
from {
|
|
698
1275
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -705,20 +1282,17 @@ video {
|
|
|
705
1282
|
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));
|
|
706
1283
|
}
|
|
707
1284
|
}
|
|
708
|
-
.
|
|
709
|
-
animation-
|
|
710
|
-
animation-duration: 150ms;
|
|
711
|
-
--tw-enter-opacity: initial;
|
|
712
|
-
--tw-enter-scale: initial;
|
|
713
|
-
--tw-enter-rotate: initial;
|
|
714
|
-
--tw-enter-translate-x: initial;
|
|
715
|
-
--tw-enter-translate-y: initial;
|
|
1285
|
+
.duration-1000 {
|
|
1286
|
+
animation-duration: 1000ms;
|
|
716
1287
|
}
|
|
717
|
-
.
|
|
718
|
-
|
|
1288
|
+
.duration-200 {
|
|
1289
|
+
animation-duration: 200ms;
|
|
719
1290
|
}
|
|
720
|
-
.
|
|
721
|
-
|
|
1291
|
+
.file\:inline-flex::file-selector-button {
|
|
1292
|
+
display: inline-flex;
|
|
1293
|
+
}
|
|
1294
|
+
.file\:h-7::file-selector-button {
|
|
1295
|
+
height: 1.75rem;
|
|
722
1296
|
}
|
|
723
1297
|
.file\:border-0::file-selector-button {
|
|
724
1298
|
border-width: 0px;
|
|
@@ -733,12 +1307,25 @@ video {
|
|
|
733
1307
|
.file\:font-medium::file-selector-button {
|
|
734
1308
|
font-weight: 500;
|
|
735
1309
|
}
|
|
1310
|
+
.first\:rounded-l-md:first-child {
|
|
1311
|
+
border-top-left-radius: 0.375rem;
|
|
1312
|
+
border-bottom-left-radius: 0.375rem;
|
|
1313
|
+
}
|
|
1314
|
+
.first\:border-l:first-child {
|
|
1315
|
+
border-left-width: 1px;
|
|
1316
|
+
}
|
|
1317
|
+
.last\:mt-0:last-child {
|
|
1318
|
+
margin-top: 0px;
|
|
1319
|
+
}
|
|
1320
|
+
.last\:rounded-r-md:last-child {
|
|
1321
|
+
border-top-right-radius: 0.375rem;
|
|
1322
|
+
border-bottom-right-radius: 0.375rem;
|
|
1323
|
+
}
|
|
736
1324
|
.hover\:underline:hover {
|
|
737
1325
|
text-decoration-line: underline;
|
|
738
1326
|
}
|
|
739
|
-
.
|
|
740
|
-
|
|
741
|
-
outline-offset: 2px;
|
|
1327
|
+
.hover\:opacity-100:hover {
|
|
1328
|
+
opacity: 1;
|
|
742
1329
|
}
|
|
743
1330
|
.focus\:ring-2:focus {
|
|
744
1331
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
@@ -751,13 +1338,12 @@ video {
|
|
|
751
1338
|
.focus\:ring-offset-2:focus {
|
|
752
1339
|
--tw-ring-offset-width: 2px;
|
|
753
1340
|
}
|
|
754
|
-
.focus-visible\:outline-
|
|
755
|
-
outline:
|
|
756
|
-
outline-offset: 2px;
|
|
1341
|
+
.focus-visible\:outline-1:focus-visible {
|
|
1342
|
+
outline-width: 1px;
|
|
757
1343
|
}
|
|
758
|
-
.focus-visible\:ring
|
|
1344
|
+
.focus-visible\:ring-\[3px\]:focus-visible {
|
|
759
1345
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
760
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
|
1346
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
761
1347
|
box-shadow:
|
|
762
1348
|
var(--tw-ring-offset-shadow),
|
|
763
1349
|
var(--tw-ring-shadow),
|
|
@@ -775,23 +1361,395 @@ video {
|
|
|
775
1361
|
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
776
1362
|
cursor: not-allowed;
|
|
777
1363
|
}
|
|
778
|
-
.peer:disabled ~ .peer-disabled\:opacity-
|
|
779
|
-
opacity: 0.
|
|
1364
|
+
.peer:disabled ~ .peer-disabled\:opacity-50 {
|
|
1365
|
+
opacity: 0.5;
|
|
1366
|
+
}
|
|
1367
|
+
.has-\[\>\[data-slot\=field\]\]\:w-full:has(> [data-slot=field]) {
|
|
1368
|
+
width: 100%;
|
|
1369
|
+
}
|
|
1370
|
+
.has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\]:has(> svg) {
|
|
1371
|
+
grid-template-columns: calc(var(--spacing) * 4) 1fr;
|
|
1372
|
+
}
|
|
1373
|
+
.has-\[\>\[data-slot\=field\]\]\:flex-col:has(> [data-slot=field]) {
|
|
1374
|
+
flex-direction: column;
|
|
1375
|
+
}
|
|
1376
|
+
.has-\[\>\[data-slot\=field-content\]\]\:items-start:has(> [data-slot=field-content]) {
|
|
1377
|
+
align-items: flex-start;
|
|
1378
|
+
}
|
|
1379
|
+
.has-\[\>\[data-slot\=checkbox-group\]\]\:gap-3:has(> [data-slot=checkbox-group]) {
|
|
1380
|
+
gap: 0.75rem;
|
|
1381
|
+
}
|
|
1382
|
+
.has-\[\>\[data-slot\=radio-group\]\]\:gap-3:has(> [data-slot=radio-group]) {
|
|
1383
|
+
gap: 0.75rem;
|
|
1384
|
+
}
|
|
1385
|
+
.has-\[\>svg\]\:gap-x-3:has(> svg) {
|
|
1386
|
+
-moz-column-gap: 0.75rem;
|
|
1387
|
+
column-gap: 0.75rem;
|
|
1388
|
+
}
|
|
1389
|
+
.has-\[\>\[data-slot\=field\]\]\:rounded-md:has(> [data-slot=field]) {
|
|
1390
|
+
border-radius: 0.375rem;
|
|
1391
|
+
}
|
|
1392
|
+
.has-\[\>\[data-slot\=field\]\]\:border:has(> [data-slot=field]) {
|
|
1393
|
+
border-width: 1px;
|
|
1394
|
+
}
|
|
1395
|
+
.has-\[\>svg\]\:px-2\.5:has(> svg) {
|
|
1396
|
+
padding-left: 0.625rem;
|
|
1397
|
+
padding-right: 0.625rem;
|
|
1398
|
+
}
|
|
1399
|
+
.has-\[\>svg\]\:px-3:has(> svg) {
|
|
1400
|
+
padding-left: 0.75rem;
|
|
1401
|
+
padding-right: 0.75rem;
|
|
1402
|
+
}
|
|
1403
|
+
.has-\[\>svg\]\:px-4:has(> svg) {
|
|
1404
|
+
padding-left: 1rem;
|
|
1405
|
+
padding-right: 1rem;
|
|
1406
|
+
}
|
|
1407
|
+
.group\/field:has([data-orientation=horizontal]) .group-has-\[\[data-orientation\=horizontal\]\]\/field\:text-balance {
|
|
1408
|
+
text-wrap: balance;
|
|
1409
|
+
}
|
|
1410
|
+
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
1411
|
+
pointer-events: none;
|
|
1412
|
+
}
|
|
1413
|
+
.data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction=bottom] {
|
|
1414
|
+
left: 0px;
|
|
1415
|
+
right: 0px;
|
|
1416
|
+
}
|
|
1417
|
+
.data-\[vaul-drawer-direction\=left\]\:inset-y-0[data-vaul-drawer-direction=left] {
|
|
1418
|
+
top: 0px;
|
|
1419
|
+
bottom: 0px;
|
|
1420
|
+
}
|
|
1421
|
+
.data-\[vaul-drawer-direction\=right\]\:inset-y-0[data-vaul-drawer-direction=right] {
|
|
1422
|
+
top: 0px;
|
|
1423
|
+
bottom: 0px;
|
|
1424
|
+
}
|
|
1425
|
+
.data-\[vaul-drawer-direction\=top\]\:inset-x-0[data-vaul-drawer-direction=top] {
|
|
1426
|
+
left: 0px;
|
|
1427
|
+
right: 0px;
|
|
1428
|
+
}
|
|
1429
|
+
.data-\[vaul-drawer-direction\=bottom\]\:bottom-0[data-vaul-drawer-direction=bottom] {
|
|
1430
|
+
bottom: 0px;
|
|
1431
|
+
}
|
|
1432
|
+
.data-\[vaul-drawer-direction\=left\]\:left-0[data-vaul-drawer-direction=left] {
|
|
1433
|
+
left: 0px;
|
|
1434
|
+
}
|
|
1435
|
+
.data-\[vaul-drawer-direction\=right\]\:right-0[data-vaul-drawer-direction=right] {
|
|
1436
|
+
right: 0px;
|
|
1437
|
+
}
|
|
1438
|
+
.data-\[vaul-drawer-direction\=top\]\:top-0[data-vaul-drawer-direction=top] {
|
|
1439
|
+
top: 0px;
|
|
1440
|
+
}
|
|
1441
|
+
.data-\[active\=true\]\:z-10[data-active=true] {
|
|
1442
|
+
z-index: 10;
|
|
1443
|
+
}
|
|
1444
|
+
.data-\[vaul-drawer-direction\=bottom\]\:mt-24[data-vaul-drawer-direction=bottom] {
|
|
1445
|
+
margin-top: 6rem;
|
|
1446
|
+
}
|
|
1447
|
+
.data-\[vaul-drawer-direction\=top\]\:mb-24[data-vaul-drawer-direction=top] {
|
|
1448
|
+
margin-bottom: 6rem;
|
|
1449
|
+
}
|
|
1450
|
+
.data-\[orientation\=horizontal\]\:h-px[data-orientation=horizontal] {
|
|
1451
|
+
height: 1px;
|
|
1452
|
+
}
|
|
1453
|
+
.data-\[orientation\=vertical\]\:h-full[data-orientation=vertical] {
|
|
1454
|
+
height: 100%;
|
|
1455
|
+
}
|
|
1456
|
+
.data-\[size\=default\]\:h-9[data-size=default] {
|
|
1457
|
+
height: 2.25rem;
|
|
1458
|
+
}
|
|
1459
|
+
.data-\[size\=sm\]\:h-8[data-size=sm] {
|
|
1460
|
+
height: 2rem;
|
|
1461
|
+
}
|
|
1462
|
+
.data-\[vaul-drawer-direction\=bottom\]\:max-h-\[80vh\][data-vaul-drawer-direction=bottom] {
|
|
1463
|
+
max-height: 80vh;
|
|
1464
|
+
}
|
|
1465
|
+
.data-\[vaul-drawer-direction\=top\]\:max-h-\[80vh\][data-vaul-drawer-direction=top] {
|
|
1466
|
+
max-height: 80vh;
|
|
1467
|
+
}
|
|
1468
|
+
.data-\[orientation\=horizontal\]\:w-full[data-orientation=horizontal] {
|
|
1469
|
+
width: 100%;
|
|
1470
|
+
}
|
|
1471
|
+
.data-\[orientation\=vertical\]\:w-px[data-orientation=vertical] {
|
|
1472
|
+
width: 1px;
|
|
1473
|
+
}
|
|
1474
|
+
.data-\[vaul-drawer-direction\=left\]\:w-3\/4[data-vaul-drawer-direction=left] {
|
|
1475
|
+
width: 75%;
|
|
1476
|
+
}
|
|
1477
|
+
.data-\[vaul-drawer-direction\=right\]\:w-3\/4[data-vaul-drawer-direction=right] {
|
|
1478
|
+
width: 75%;
|
|
1479
|
+
}
|
|
1480
|
+
.data-\[side\=bottom\]\:translate-y-1[data-side=bottom] {
|
|
1481
|
+
--tw-translate-y: 0.25rem;
|
|
1482
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1483
|
+
}
|
|
1484
|
+
.data-\[side\=left\]\:-translate-x-1[data-side=left] {
|
|
1485
|
+
--tw-translate-x: -0.25rem;
|
|
1486
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1487
|
+
}
|
|
1488
|
+
.data-\[side\=right\]\:translate-x-1[data-side=right] {
|
|
1489
|
+
--tw-translate-x: 0.25rem;
|
|
1490
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1491
|
+
}
|
|
1492
|
+
.data-\[side\=top\]\:-translate-y-1[data-side=top] {
|
|
1493
|
+
--tw-translate-y: -0.25rem;
|
|
1494
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1495
|
+
}
|
|
1496
|
+
.data-\[slot\=checkbox-group\]\:gap-3[data-slot=checkbox-group] {
|
|
1497
|
+
gap: 0.75rem;
|
|
1498
|
+
}
|
|
1499
|
+
.data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg[data-vaul-drawer-direction=bottom] {
|
|
1500
|
+
border-top-left-radius: 0.5rem;
|
|
1501
|
+
border-top-right-radius: 0.5rem;
|
|
1502
|
+
}
|
|
1503
|
+
.data-\[vaul-drawer-direction\=top\]\:rounded-b-lg[data-vaul-drawer-direction=top] {
|
|
1504
|
+
border-bottom-right-radius: 0.5rem;
|
|
1505
|
+
border-bottom-left-radius: 0.5rem;
|
|
1506
|
+
}
|
|
1507
|
+
.data-\[vaul-drawer-direction\=bottom\]\:border-t[data-vaul-drawer-direction=bottom] {
|
|
1508
|
+
border-top-width: 1px;
|
|
1509
|
+
}
|
|
1510
|
+
.data-\[vaul-drawer-direction\=left\]\:border-r[data-vaul-drawer-direction=left] {
|
|
1511
|
+
border-right-width: 1px;
|
|
1512
|
+
}
|
|
1513
|
+
.data-\[vaul-drawer-direction\=right\]\:border-l[data-vaul-drawer-direction=right] {
|
|
1514
|
+
border-left-width: 1px;
|
|
1515
|
+
}
|
|
1516
|
+
.data-\[vaul-drawer-direction\=top\]\:border-b[data-vaul-drawer-direction=top] {
|
|
1517
|
+
border-bottom-width: 1px;
|
|
1518
|
+
}
|
|
1519
|
+
.data-\[inset\]\:pl-8[data-inset] {
|
|
1520
|
+
padding-left: 2rem;
|
|
1521
|
+
}
|
|
1522
|
+
.data-\[variant\=label\]\:text-sm[data-variant=label] {
|
|
1523
|
+
font-size: 0.875rem;
|
|
1524
|
+
line-height: 1.25rem;
|
|
1525
|
+
}
|
|
1526
|
+
.data-\[variant\=legend\]\:text-base[data-variant=legend] {
|
|
1527
|
+
font-size: 1rem;
|
|
1528
|
+
line-height: 1.5rem;
|
|
1529
|
+
}
|
|
1530
|
+
.data-\[disabled\]\:opacity-50[data-disabled] {
|
|
1531
|
+
opacity: 0.5;
|
|
1532
|
+
}
|
|
1533
|
+
.data-\[state\=active\]\:shadow-sm[data-state=active] {
|
|
1534
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1535
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
1536
|
+
box-shadow:
|
|
1537
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
1538
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
1539
|
+
var(--tw-shadow);
|
|
1540
|
+
}
|
|
1541
|
+
.data-\[active\=true\]\:ring-\[3px\][data-active=true] {
|
|
1542
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1543
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1544
|
+
box-shadow:
|
|
1545
|
+
var(--tw-ring-offset-shadow),
|
|
1546
|
+
var(--tw-ring-shadow),
|
|
1547
|
+
var(--tw-shadow, 0 0 #0000);
|
|
1548
|
+
}
|
|
1549
|
+
.data-\[state\=open\]\:animate-in[data-state=open] {
|
|
1550
|
+
animation-name: enter;
|
|
1551
|
+
animation-duration: 150ms;
|
|
1552
|
+
--tw-enter-opacity: initial;
|
|
1553
|
+
--tw-enter-scale: initial;
|
|
1554
|
+
--tw-enter-rotate: initial;
|
|
1555
|
+
--tw-enter-translate-x: initial;
|
|
1556
|
+
--tw-enter-translate-y: initial;
|
|
1557
|
+
}
|
|
1558
|
+
.data-\[state\=closed\]\:animate-out[data-state=closed] {
|
|
1559
|
+
animation-name: exit;
|
|
1560
|
+
animation-duration: 150ms;
|
|
1561
|
+
--tw-exit-opacity: initial;
|
|
1562
|
+
--tw-exit-scale: initial;
|
|
1563
|
+
--tw-exit-rotate: initial;
|
|
1564
|
+
--tw-exit-translate-x: initial;
|
|
1565
|
+
--tw-exit-translate-y: initial;
|
|
1566
|
+
}
|
|
1567
|
+
.data-\[state\=closed\]\:fade-out-0[data-state=closed] {
|
|
1568
|
+
--tw-exit-opacity: 0;
|
|
1569
|
+
}
|
|
1570
|
+
.data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
1571
|
+
--tw-enter-opacity: 0;
|
|
1572
|
+
}
|
|
1573
|
+
.data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
|
|
1574
|
+
--tw-exit-scale: .95;
|
|
1575
|
+
}
|
|
1576
|
+
.data-\[state\=open\]\:zoom-in-95[data-state=open] {
|
|
1577
|
+
--tw-enter-scale: .95;
|
|
1578
|
+
}
|
|
1579
|
+
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom] {
|
|
1580
|
+
--tw-enter-translate-y: -0.5rem;
|
|
1581
|
+
}
|
|
1582
|
+
.data-\[side\=left\]\:slide-in-from-right-2[data-side=left] {
|
|
1583
|
+
--tw-enter-translate-x: 0.5rem;
|
|
1584
|
+
}
|
|
1585
|
+
.data-\[side\=right\]\:slide-in-from-left-2[data-side=right] {
|
|
1586
|
+
--tw-enter-translate-x: -0.5rem;
|
|
1587
|
+
}
|
|
1588
|
+
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
|
|
1589
|
+
--tw-enter-translate-y: 0.5rem;
|
|
1590
|
+
}
|
|
1591
|
+
.\*\:data-\[slot\=select-value\]\:line-clamp-1[data-slot=select-value] > * {
|
|
1592
|
+
overflow: hidden;
|
|
1593
|
+
display: -webkit-box;
|
|
1594
|
+
-webkit-box-orient: vertical;
|
|
1595
|
+
-webkit-line-clamp: 1;
|
|
1596
|
+
}
|
|
1597
|
+
.\*\:data-\[slot\=select-value\]\:flex[data-slot=select-value] > * {
|
|
1598
|
+
display: flex;
|
|
1599
|
+
}
|
|
1600
|
+
.\*\:data-\[slot\=select-value\]\:items-center[data-slot=select-value] > * {
|
|
1601
|
+
align-items: center;
|
|
1602
|
+
}
|
|
1603
|
+
.\*\:data-\[slot\=select-value\]\:gap-2[data-slot=select-value] > * {
|
|
1604
|
+
gap: 0.5rem;
|
|
1605
|
+
}
|
|
1606
|
+
.group[data-disabled=true] .group-data-\[disabled\=true\]\:pointer-events-none {
|
|
1607
|
+
pointer-events: none;
|
|
1608
|
+
}
|
|
1609
|
+
.group\/field-group[data-variant=outline] .group-data-\[variant\=outline\]\/field-group\:-mb-2 {
|
|
1610
|
+
margin-bottom: -0.5rem;
|
|
1611
|
+
}
|
|
1612
|
+
.group\/drawer-content[data-vaul-drawer-direction=bottom] .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block {
|
|
1613
|
+
display: block;
|
|
1614
|
+
}
|
|
1615
|
+
.group\/drawer-content[data-vaul-drawer-direction=bottom] .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:text-center {
|
|
1616
|
+
text-align: center;
|
|
1617
|
+
}
|
|
1618
|
+
.group\/drawer-content[data-vaul-drawer-direction=top] .group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:text-center {
|
|
1619
|
+
text-align: center;
|
|
1620
|
+
}
|
|
1621
|
+
.group\/field[data-disabled=true] .group-data-\[disabled\=true\]\/field\:opacity-50 {
|
|
1622
|
+
opacity: 0.5;
|
|
1623
|
+
}
|
|
1624
|
+
.group[data-disabled=true] .group-data-\[disabled\=true\]\:opacity-50 {
|
|
1625
|
+
opacity: 0.5;
|
|
1626
|
+
}
|
|
1627
|
+
@media (min-width: 640px) {
|
|
1628
|
+
.sm\:max-w-lg {
|
|
1629
|
+
max-width: 32rem;
|
|
1630
|
+
}
|
|
1631
|
+
.sm\:max-w-md {
|
|
1632
|
+
max-width: 28rem;
|
|
1633
|
+
}
|
|
1634
|
+
.sm\:flex-row {
|
|
1635
|
+
flex-direction: row;
|
|
1636
|
+
}
|
|
1637
|
+
.sm\:justify-end {
|
|
1638
|
+
justify-content: flex-end;
|
|
1639
|
+
}
|
|
1640
|
+
.sm\:text-left {
|
|
1641
|
+
text-align: left;
|
|
1642
|
+
}
|
|
1643
|
+
.data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm[data-vaul-drawer-direction=left] {
|
|
1644
|
+
max-width: 24rem;
|
|
1645
|
+
}
|
|
1646
|
+
.data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm[data-vaul-drawer-direction=right] {
|
|
1647
|
+
max-width: 24rem;
|
|
1648
|
+
}
|
|
780
1649
|
}
|
|
781
1650
|
@media (min-width: 768px) {
|
|
1651
|
+
.md\:ms-auto {
|
|
1652
|
+
margin-inline-start: auto;
|
|
1653
|
+
}
|
|
1654
|
+
.md\:block {
|
|
1655
|
+
display: block;
|
|
1656
|
+
}
|
|
1657
|
+
.md\:hidden {
|
|
1658
|
+
display: none;
|
|
1659
|
+
}
|
|
1660
|
+
.md\:h-3\.5 {
|
|
1661
|
+
height: 0.875rem;
|
|
1662
|
+
}
|
|
1663
|
+
.md\:h-4 {
|
|
1664
|
+
height: 1rem;
|
|
1665
|
+
}
|
|
1666
|
+
.md\:w-40 {
|
|
1667
|
+
width: 10rem;
|
|
1668
|
+
}
|
|
1669
|
+
.md\:w-56 {
|
|
1670
|
+
width: 14rem;
|
|
1671
|
+
}
|
|
1672
|
+
.md\:w-64 {
|
|
1673
|
+
width: 16rem;
|
|
1674
|
+
}
|
|
1675
|
+
.md\:flex-row {
|
|
1676
|
+
flex-direction: row;
|
|
1677
|
+
}
|
|
1678
|
+
.md\:gap-1\.5 {
|
|
1679
|
+
gap: 0.375rem;
|
|
1680
|
+
}
|
|
1681
|
+
.md\:gap-12 {
|
|
1682
|
+
gap: 3rem;
|
|
1683
|
+
}
|
|
1684
|
+
.md\:gap-6 {
|
|
1685
|
+
gap: 1.5rem;
|
|
1686
|
+
}
|
|
1687
|
+
.md\:text-left {
|
|
1688
|
+
text-align: left;
|
|
1689
|
+
}
|
|
1690
|
+
.md\:text-start {
|
|
1691
|
+
text-align: start;
|
|
1692
|
+
}
|
|
782
1693
|
.md\:text-sm {
|
|
783
1694
|
font-size: 0.875rem;
|
|
784
1695
|
line-height: 1.25rem;
|
|
785
1696
|
}
|
|
1697
|
+
.md\:text-xl {
|
|
1698
|
+
font-size: 1.25rem;
|
|
1699
|
+
line-height: 1.75rem;
|
|
1700
|
+
}
|
|
786
1701
|
}
|
|
787
|
-
|
|
788
|
-
|
|
1702
|
+
@media (min-width: 1024px) {
|
|
1703
|
+
.lg\:w-60 {
|
|
1704
|
+
width: 15rem;
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
.\[\&\>\*\]\:w-full > * {
|
|
1708
|
+
width: 100%;
|
|
1709
|
+
}
|
|
1710
|
+
.\[\&\>\*\]\:data-\[slot\=field\]\:p-4[data-slot=field] > * {
|
|
1711
|
+
padding: 1rem;
|
|
1712
|
+
}
|
|
1713
|
+
.\[\&\>\.sr-only\]\:w-auto > .sr-only {
|
|
1714
|
+
width: auto;
|
|
1715
|
+
}
|
|
1716
|
+
.\[\&\>\[data-slot\=field-group\]\]\:gap-4 > [data-slot=field-group] {
|
|
1717
|
+
gap: 1rem;
|
|
1718
|
+
}
|
|
1719
|
+
.\[\&\>\[data-slot\=field-label\]\]\:flex-auto > [data-slot=field-label] {
|
|
1720
|
+
flex: 1 1 auto;
|
|
1721
|
+
}
|
|
1722
|
+
.\[\&\>a\]\:underline > a {
|
|
1723
|
+
text-decoration-line: underline;
|
|
1724
|
+
}
|
|
1725
|
+
.\[\&\>a\]\:underline-offset-4 > a {
|
|
1726
|
+
text-underline-offset: 4px;
|
|
1727
|
+
}
|
|
1728
|
+
.\[\&\>svg\]\:size-4 > svg {
|
|
1729
|
+
width: 1rem;
|
|
1730
|
+
height: 1rem;
|
|
1731
|
+
}
|
|
1732
|
+
.\[\&\>svg\]\:translate-y-0\.5 > svg {
|
|
1733
|
+
--tw-translate-y: 0.125rem;
|
|
1734
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
789
1735
|
}
|
|
790
|
-
.\[
|
|
1736
|
+
.\[\&\>svg\]\:text-current > svg {
|
|
1737
|
+
color: currentColor;
|
|
1738
|
+
}
|
|
1739
|
+
.\[\&_p\]\:leading-relaxed p {
|
|
1740
|
+
line-height: 1.625;
|
|
1741
|
+
}
|
|
1742
|
+
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]) {
|
|
791
1743
|
width: 1rem;
|
|
792
1744
|
height: 1rem;
|
|
793
1745
|
}
|
|
1746
|
+
.\[\&_svg\]\:pointer-events-none svg {
|
|
1747
|
+
pointer-events: none;
|
|
1748
|
+
}
|
|
794
1749
|
.\[\&_svg\]\:shrink-0 svg {
|
|
795
1750
|
flex-shrink: 0;
|
|
796
1751
|
}
|
|
1752
|
+
[data-variant=legend] + .\[\[data-variant\=legend\]\+\&\]\:-mt-1\.5 {
|
|
1753
|
+
margin-top: -0.375rem;
|
|
1754
|
+
}
|
|
797
1755
|
/*# sourceMappingURL=styles.css.map */
|