@fileverse/ui 1.6.0 → 2.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/dist/index.cjs.js +7276 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +515 -8
- package/dist/index.es.d.ts +124 -2
- package/dist/index.es.js +26269 -3457
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -0
- package/package.json +19 -12
package/dist/index.css
CHANGED
|
@@ -431,6 +431,8 @@ video {
|
|
|
431
431
|
--color-button-disabled: 195, 10%, 92%, 1; /* Gray-200 */
|
|
432
432
|
--color-button-danger: 354, 96%, 59%, 1; /* Red-500 */
|
|
433
433
|
--color-button-danger-hover: 354, 84%, 42%, 1; /* Red-700 */
|
|
434
|
+
--color-button-floating: 0, 0%, 100%, 1; /* White */
|
|
435
|
+
--color-button-floating-hover: 200, 13%, 95%, 1; /* Gray-100 */
|
|
434
436
|
|
|
435
437
|
/* Text */
|
|
436
438
|
--color-text-default: 0, 0%, 0%, 1; /* Black */
|
|
@@ -443,7 +445,9 @@ video {
|
|
|
443
445
|
--color-bg-default: 0, 0%, 100%, 1; /* White */
|
|
444
446
|
--color-bg-default-hover: 200, 13%, 95%, 1; /* Gray-100 */
|
|
445
447
|
--color-bg-default-active: 52, 100%, 52%, 1; /* Yellow-400 */
|
|
448
|
+
--color-bg-default-selected: 210, 17%, 98%, 1; /* Gray-50 */
|
|
446
449
|
--color-bg-secondary: 210, 17%, 98%, 1; /* Gray-50 */
|
|
450
|
+
--color-bg-secondary-hover: 195, 10%, 92%, 1; /* Gray-200 */
|
|
447
451
|
--color-bg-disabled: 195, 10%, 92%, 1; /* Gray-200 */
|
|
448
452
|
--color-bg-brand: 52, 100%, 52%, 1; /* Yellow-400 */
|
|
449
453
|
--color-bg-brand-hover: 50, 98%, 47%, 1; /* Yellow-500 */
|
|
@@ -463,6 +467,7 @@ video {
|
|
|
463
467
|
|
|
464
468
|
/* Icon */
|
|
465
469
|
--color-icon-default: 0, 0%, 0%, 1; /* Black */
|
|
470
|
+
--color-icon-default-hover: 207, 8%, 23%, 1; /* Gray-950 */
|
|
466
471
|
--color-icon-brand: 52, 100%, 52%, 1; /* Yellow-400 */
|
|
467
472
|
--color-icon-secondary: 208, 8%, 50%, 1; /* Gray-700 */
|
|
468
473
|
--color-icon-disabled: 206, 9%, 66%, 1; /* Gray-500 */
|
|
@@ -470,6 +475,12 @@ video {
|
|
|
470
475
|
|
|
471
476
|
/* Utility */
|
|
472
477
|
--color-utility-overlay: 0, 0%, 0%, 0.9; /* Black 90% */
|
|
478
|
+
|
|
479
|
+
/* Elevation */
|
|
480
|
+
--shadow-elevation-1: 0px 1px 2px rgba (0, 0, 0, 0.15);
|
|
481
|
+
--shadow-elevation-2: 0px 2px 4px rgba (0, 0, 0, 0.15);
|
|
482
|
+
--shadow-elevation-3: 0px 4px 16px rgba (0, 0, 0, 0.15);
|
|
483
|
+
--shadow-elevation-4: 0px 8px 32px rgba (0, 0, 0, 0.15);
|
|
473
484
|
}
|
|
474
485
|
* {
|
|
475
486
|
border-color: hsl(var(--border));
|
|
@@ -479,6 +490,13 @@ video {
|
|
|
479
490
|
color: hsl(var(--foreground));
|
|
480
491
|
}
|
|
481
492
|
|
|
493
|
+
.text-heading-2xlg {
|
|
494
|
+
font-family: system-ui;
|
|
495
|
+
font-size: 32px;
|
|
496
|
+
font-weight: 700;
|
|
497
|
+
line-height: 40px;
|
|
498
|
+
}
|
|
499
|
+
|
|
482
500
|
.text-heading-xlg {
|
|
483
501
|
font-family: system-ui;
|
|
484
502
|
font-size: 24px;
|
|
@@ -617,10 +635,18 @@ video {
|
|
|
617
635
|
background-color: hsl(var(--color-bg-default-active));
|
|
618
636
|
}
|
|
619
637
|
|
|
638
|
+
.color-bg-default-selected {
|
|
639
|
+
background-color: hsl(var(--color-bg-default-selected));
|
|
640
|
+
}
|
|
641
|
+
|
|
620
642
|
.color-bg-secondary {
|
|
621
643
|
background-color: hsl(var(--color-bg-secondary));
|
|
622
644
|
}
|
|
623
645
|
|
|
646
|
+
.color-bg-secondary-hover {
|
|
647
|
+
background-color: hsl(var(--color-bg-secondary-hover));
|
|
648
|
+
}
|
|
649
|
+
|
|
624
650
|
.color-bg-tertiary {
|
|
625
651
|
background-color: hsl(var(--color-bg-tertiary));
|
|
626
652
|
}
|
|
@@ -710,6 +736,10 @@ video {
|
|
|
710
736
|
background-color: hsl(var(--color-icon-default));
|
|
711
737
|
}
|
|
712
738
|
|
|
739
|
+
.color-icon-default-hover {
|
|
740
|
+
background-color: hsl(var(--color-icon-default-hover));
|
|
741
|
+
}
|
|
742
|
+
|
|
713
743
|
.color-icon-brand {
|
|
714
744
|
background-color: hsl(var(--color-icon-brand));
|
|
715
745
|
}
|
|
@@ -730,6 +760,81 @@ video {
|
|
|
730
760
|
background-color: hsl(var(--color-utility-overlay));
|
|
731
761
|
}
|
|
732
762
|
|
|
763
|
+
/* ELEVATIONS */
|
|
764
|
+
|
|
765
|
+
.shadow-elevation-1 {
|
|
766
|
+
--tw-shadow: 0 1px 2px rgba(0,0,0,0.15);
|
|
767
|
+
--tw-shadow-colored: 0 1px 2px var(--tw-shadow-color);
|
|
768
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.shadow-elevation-2 {
|
|
772
|
+
--tw-shadow: 0 2px 4px rgba(0,0,0,0.15);
|
|
773
|
+
--tw-shadow-colored: 0 2px 4px var(--tw-shadow-color);
|
|
774
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.shadow-elevation-3 {
|
|
778
|
+
--tw-shadow: 0 4px 16px rgba(0,0,0,0.15);
|
|
779
|
+
--tw-shadow-colored: 0 4px 16px var(--tw-shadow-color);
|
|
780
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.shadow-elevation-4 {
|
|
784
|
+
--tw-shadow: 0 8px 32px rgba(0,0,0,0.15);
|
|
785
|
+
--tw-shadow-colored: 0 8px 32px var(--tw-shadow-color);
|
|
786
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
/* DIVIDERS */
|
|
790
|
+
.divider-y-sm {
|
|
791
|
+
border-right-width: 0px;
|
|
792
|
+
border-left-width: 0.5px;
|
|
793
|
+
border-left-color: hsl(var(--color-border-default));
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.divider-y-md {
|
|
797
|
+
border-right-width: 0px;
|
|
798
|
+
border-left-width: 1px;
|
|
799
|
+
border-left-color: hsl(var(--color-border-default));
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.divider-y-lg {
|
|
803
|
+
border-right-width: 0px;
|
|
804
|
+
border-left-width: 2px;
|
|
805
|
+
border-left-color: hsl(var(--color-border-default));
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.divider-y-xlg {
|
|
809
|
+
border-right-width: 0px;
|
|
810
|
+
border-left-width: 4px;
|
|
811
|
+
border-left-color: hsl(var(--color-border-default));
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.divider-x-sm {
|
|
815
|
+
border-bottom-width: 0px;
|
|
816
|
+
border-top-width: 0.5px;
|
|
817
|
+
border-left-color: hsl(var(--color-border-default));
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.divider-x-md {
|
|
821
|
+
border-bottom-width: 0px;
|
|
822
|
+
border-top-width: 1px;
|
|
823
|
+
border-top-color: hsl(var(--color-border-default));
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.divider-x-lg {
|
|
827
|
+
border-bottom-width: 0px;
|
|
828
|
+
border-top-width: 2px;
|
|
829
|
+
border-top-color: hsl(var(--color-border-default));
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.divider-x-xlg {
|
|
833
|
+
border-bottom-width: 0px;
|
|
834
|
+
border-top-width: 4px;
|
|
835
|
+
border-top-color: hsl(var(--color-border-default));
|
|
836
|
+
}
|
|
837
|
+
|
|
733
838
|
*, ::before, ::after {
|
|
734
839
|
--tw-border-spacing-x: 0;
|
|
735
840
|
--tw-border-spacing-y: 0;
|
|
@@ -853,18 +958,39 @@ video {
|
|
|
853
958
|
.pointer-events-none {
|
|
854
959
|
pointer-events: none;
|
|
855
960
|
}
|
|
961
|
+
.invisible {
|
|
962
|
+
visibility: hidden;
|
|
963
|
+
}
|
|
856
964
|
.absolute {
|
|
857
965
|
position: absolute;
|
|
858
966
|
}
|
|
859
967
|
.relative {
|
|
860
968
|
position: relative;
|
|
861
969
|
}
|
|
970
|
+
.-bottom-8 {
|
|
971
|
+
bottom: -2rem;
|
|
972
|
+
}
|
|
973
|
+
.-left-4 {
|
|
974
|
+
left: -1rem;
|
|
975
|
+
}
|
|
976
|
+
.-top-4 {
|
|
977
|
+
top: -1rem;
|
|
978
|
+
}
|
|
979
|
+
.bottom-0 {
|
|
980
|
+
bottom: 0px;
|
|
981
|
+
}
|
|
982
|
+
.left-1\/2 {
|
|
983
|
+
left: 50%;
|
|
984
|
+
}
|
|
862
985
|
.left-3 {
|
|
863
986
|
left: 0.75rem;
|
|
864
987
|
}
|
|
865
988
|
.right-3 {
|
|
866
989
|
right: 0.75rem;
|
|
867
990
|
}
|
|
991
|
+
.z-10 {
|
|
992
|
+
z-index: 10;
|
|
993
|
+
}
|
|
868
994
|
.z-50 {
|
|
869
995
|
z-index: 50;
|
|
870
996
|
}
|
|
@@ -875,6 +1001,10 @@ video {
|
|
|
875
1001
|
margin-left: auto;
|
|
876
1002
|
margin-right: auto;
|
|
877
1003
|
}
|
|
1004
|
+
.my-auto {
|
|
1005
|
+
margin-top: auto;
|
|
1006
|
+
margin-bottom: auto;
|
|
1007
|
+
}
|
|
878
1008
|
.mb-2 {
|
|
879
1009
|
margin-bottom: 0.5rem;
|
|
880
1010
|
}
|
|
@@ -887,9 +1017,33 @@ video {
|
|
|
887
1017
|
.mr-2 {
|
|
888
1018
|
margin-right: 0.5rem;
|
|
889
1019
|
}
|
|
1020
|
+
.mt-10 {
|
|
1021
|
+
margin-top: 2.5rem;
|
|
1022
|
+
}
|
|
890
1023
|
.mt-2 {
|
|
891
1024
|
margin-top: 0.5rem;
|
|
892
1025
|
}
|
|
1026
|
+
.mt-4 {
|
|
1027
|
+
margin-top: 1rem;
|
|
1028
|
+
}
|
|
1029
|
+
.line-clamp-5 {
|
|
1030
|
+
overflow: hidden;
|
|
1031
|
+
display: -webkit-box;
|
|
1032
|
+
-webkit-box-orient: vertical;
|
|
1033
|
+
-webkit-line-clamp: 5;
|
|
1034
|
+
}
|
|
1035
|
+
.line-clamp-\[20\] {
|
|
1036
|
+
overflow: hidden;
|
|
1037
|
+
display: -webkit-box;
|
|
1038
|
+
-webkit-box-orient: vertical;
|
|
1039
|
+
-webkit-line-clamp: 20;
|
|
1040
|
+
}
|
|
1041
|
+
.line-clamp-\[8\] {
|
|
1042
|
+
overflow: hidden;
|
|
1043
|
+
display: -webkit-box;
|
|
1044
|
+
-webkit-box-orient: vertical;
|
|
1045
|
+
-webkit-line-clamp: 8;
|
|
1046
|
+
}
|
|
893
1047
|
.block {
|
|
894
1048
|
display: block;
|
|
895
1049
|
}
|
|
@@ -899,15 +1053,27 @@ video {
|
|
|
899
1053
|
.inline-flex {
|
|
900
1054
|
display: inline-flex;
|
|
901
1055
|
}
|
|
1056
|
+
.table {
|
|
1057
|
+
display: table;
|
|
1058
|
+
}
|
|
1059
|
+
.hidden {
|
|
1060
|
+
display: none;
|
|
1061
|
+
}
|
|
1062
|
+
.aspect-square {
|
|
1063
|
+
aspect-ratio: 1 / 1;
|
|
1064
|
+
}
|
|
1065
|
+
.aspect-video {
|
|
1066
|
+
aspect-ratio: 16 / 9;
|
|
1067
|
+
}
|
|
902
1068
|
.h-10 {
|
|
903
1069
|
height: 2.5rem;
|
|
904
1070
|
}
|
|
905
|
-
.h-11 {
|
|
906
|
-
height: 2.75rem;
|
|
907
|
-
}
|
|
908
1071
|
.h-12 {
|
|
909
1072
|
height: 3rem;
|
|
910
1073
|
}
|
|
1074
|
+
.h-3 {
|
|
1075
|
+
height: 0.75rem;
|
|
1076
|
+
}
|
|
911
1077
|
.h-4 {
|
|
912
1078
|
height: 1rem;
|
|
913
1079
|
}
|
|
@@ -923,24 +1089,48 @@ video {
|
|
|
923
1089
|
.h-9 {
|
|
924
1090
|
height: 2.25rem;
|
|
925
1091
|
}
|
|
1092
|
+
.h-\[18px\] {
|
|
1093
|
+
height: 18px;
|
|
1094
|
+
}
|
|
1095
|
+
.h-\[208px\] {
|
|
1096
|
+
height: 208px;
|
|
1097
|
+
}
|
|
1098
|
+
.h-\[30px\] {
|
|
1099
|
+
height: 30px;
|
|
1100
|
+
}
|
|
1101
|
+
.h-\[440px\] {
|
|
1102
|
+
height: 440px;
|
|
1103
|
+
}
|
|
1104
|
+
.h-\[52px\] {
|
|
1105
|
+
height: 52px;
|
|
1106
|
+
}
|
|
1107
|
+
.h-\[calc\(100\%-1rem\)\] {
|
|
1108
|
+
height: calc(100% - 1rem);
|
|
1109
|
+
}
|
|
1110
|
+
.h-full {
|
|
1111
|
+
height: 100%;
|
|
1112
|
+
}
|
|
926
1113
|
.min-h-\[80px\] {
|
|
927
1114
|
min-height: 80px;
|
|
928
1115
|
}
|
|
1116
|
+
.min-h-screen {
|
|
1117
|
+
min-height: 100vh;
|
|
1118
|
+
}
|
|
929
1119
|
.w-10 {
|
|
930
1120
|
width: 2.5rem;
|
|
931
1121
|
}
|
|
932
1122
|
.w-11 {
|
|
933
1123
|
width: 2.75rem;
|
|
934
1124
|
}
|
|
935
|
-
.w-12 {
|
|
936
|
-
width: 3rem;
|
|
937
|
-
}
|
|
938
1125
|
.w-16 {
|
|
939
1126
|
width: 4rem;
|
|
940
1127
|
}
|
|
941
1128
|
.w-24 {
|
|
942
1129
|
width: 6rem;
|
|
943
1130
|
}
|
|
1131
|
+
.w-3 {
|
|
1132
|
+
width: 0.75rem;
|
|
1133
|
+
}
|
|
944
1134
|
.w-32 {
|
|
945
1135
|
width: 8rem;
|
|
946
1136
|
}
|
|
@@ -959,21 +1149,95 @@ video {
|
|
|
959
1149
|
.w-9 {
|
|
960
1150
|
width: 2.25rem;
|
|
961
1151
|
}
|
|
1152
|
+
.w-\[172px\] {
|
|
1153
|
+
width: 172px;
|
|
1154
|
+
}
|
|
1155
|
+
.w-\[18px\] {
|
|
1156
|
+
width: 18px;
|
|
1157
|
+
}
|
|
962
1158
|
.w-\[350px\] {
|
|
963
1159
|
width: 350px;
|
|
964
1160
|
}
|
|
1161
|
+
.w-\[368px\] {
|
|
1162
|
+
width: 368px;
|
|
1163
|
+
}
|
|
1164
|
+
.w-\[400px\] {
|
|
1165
|
+
width: 400px;
|
|
1166
|
+
}
|
|
1167
|
+
.w-\[564px\] {
|
|
1168
|
+
width: 564px;
|
|
1169
|
+
}
|
|
1170
|
+
.w-\[60\%\] {
|
|
1171
|
+
width: 60%;
|
|
1172
|
+
}
|
|
1173
|
+
.w-fit {
|
|
1174
|
+
width: -moz-fit-content;
|
|
1175
|
+
width: fit-content;
|
|
1176
|
+
}
|
|
965
1177
|
.w-full {
|
|
966
1178
|
width: 100%;
|
|
967
1179
|
}
|
|
1180
|
+
.min-w-4 {
|
|
1181
|
+
min-width: 1rem;
|
|
1182
|
+
}
|
|
1183
|
+
.min-w-\[108px\] {
|
|
1184
|
+
min-width: 108px;
|
|
1185
|
+
}
|
|
1186
|
+
.min-w-\[129px\] {
|
|
1187
|
+
min-width: 129px;
|
|
1188
|
+
}
|
|
1189
|
+
.min-w-\[145px\] {
|
|
1190
|
+
min-width: 145px;
|
|
1191
|
+
}
|
|
1192
|
+
.min-w-\[200px\] {
|
|
1193
|
+
min-width: 200px;
|
|
1194
|
+
}
|
|
1195
|
+
.min-w-\[30px\] {
|
|
1196
|
+
min-width: 30px;
|
|
1197
|
+
}
|
|
1198
|
+
.min-w-\[36px\] {
|
|
1199
|
+
min-width: 36px;
|
|
1200
|
+
}
|
|
1201
|
+
.min-w-\[40px\] {
|
|
1202
|
+
min-width: 40px;
|
|
1203
|
+
}
|
|
1204
|
+
.min-w-\[60\%\] {
|
|
1205
|
+
min-width: 60%;
|
|
1206
|
+
}
|
|
1207
|
+
.min-w-fit {
|
|
1208
|
+
min-width: -moz-fit-content;
|
|
1209
|
+
min-width: fit-content;
|
|
1210
|
+
}
|
|
1211
|
+
.max-w-\[172px\] {
|
|
1212
|
+
max-width: 172px;
|
|
1213
|
+
}
|
|
968
1214
|
.max-w-\[400px\] {
|
|
969
1215
|
max-width: 400px;
|
|
970
1216
|
}
|
|
971
|
-
.
|
|
972
|
-
|
|
1217
|
+
.flex-1 {
|
|
1218
|
+
flex: 1 1 0%;
|
|
1219
|
+
}
|
|
1220
|
+
.flex-\[0\.8\] {
|
|
1221
|
+
flex: 0.8;
|
|
973
1222
|
}
|
|
974
1223
|
.shrink-0 {
|
|
975
1224
|
flex-shrink: 0;
|
|
976
1225
|
}
|
|
1226
|
+
.caption-bottom {
|
|
1227
|
+
caption-side: bottom;
|
|
1228
|
+
}
|
|
1229
|
+
.-translate-x-1\/2 {
|
|
1230
|
+
--tw-translate-x: -50%;
|
|
1231
|
+
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));
|
|
1232
|
+
}
|
|
1233
|
+
.-rotate-90 {
|
|
1234
|
+
--tw-rotate: -90deg;
|
|
1235
|
+
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));
|
|
1236
|
+
}
|
|
1237
|
+
.rotate-90 {
|
|
1238
|
+
--tw-rotate: 90deg;
|
|
1239
|
+
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));
|
|
1240
|
+
}
|
|
977
1241
|
.transform {
|
|
978
1242
|
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));
|
|
979
1243
|
}
|
|
@@ -986,38 +1250,91 @@ video {
|
|
|
986
1250
|
.animate-spin {
|
|
987
1251
|
animation: spin 1s linear infinite;
|
|
988
1252
|
}
|
|
1253
|
+
.cursor-default {
|
|
1254
|
+
cursor: default;
|
|
1255
|
+
}
|
|
1256
|
+
.cursor-move {
|
|
1257
|
+
cursor: move;
|
|
1258
|
+
}
|
|
989
1259
|
.cursor-not-allowed {
|
|
990
1260
|
cursor: not-allowed;
|
|
991
1261
|
}
|
|
992
1262
|
.cursor-pointer {
|
|
993
1263
|
cursor: pointer;
|
|
994
1264
|
}
|
|
1265
|
+
.resize-none {
|
|
1266
|
+
resize: none;
|
|
1267
|
+
}
|
|
1268
|
+
.flex-row {
|
|
1269
|
+
flex-direction: row;
|
|
1270
|
+
}
|
|
995
1271
|
.flex-col {
|
|
996
1272
|
flex-direction: column;
|
|
997
1273
|
}
|
|
1274
|
+
.flex-wrap {
|
|
1275
|
+
flex-wrap: wrap;
|
|
1276
|
+
}
|
|
998
1277
|
.items-start {
|
|
999
1278
|
align-items: flex-start;
|
|
1000
1279
|
}
|
|
1001
1280
|
.items-center {
|
|
1002
1281
|
align-items: center;
|
|
1003
1282
|
}
|
|
1283
|
+
.justify-start {
|
|
1284
|
+
justify-content: flex-start;
|
|
1285
|
+
}
|
|
1286
|
+
.justify-end {
|
|
1287
|
+
justify-content: flex-end;
|
|
1288
|
+
}
|
|
1004
1289
|
.justify-center {
|
|
1005
1290
|
justify-content: center;
|
|
1006
1291
|
}
|
|
1292
|
+
.justify-between {
|
|
1293
|
+
justify-content: space-between;
|
|
1294
|
+
}
|
|
1295
|
+
.gap-1 {
|
|
1296
|
+
gap: 0.25rem;
|
|
1297
|
+
}
|
|
1007
1298
|
.gap-2 {
|
|
1008
1299
|
gap: 0.5rem;
|
|
1009
1300
|
}
|
|
1301
|
+
.gap-4 {
|
|
1302
|
+
gap: 1rem;
|
|
1303
|
+
}
|
|
1010
1304
|
.gap-5 {
|
|
1011
1305
|
gap: 1.25rem;
|
|
1012
1306
|
}
|
|
1013
1307
|
.gap-8 {
|
|
1014
1308
|
gap: 2rem;
|
|
1015
1309
|
}
|
|
1310
|
+
.space-x-0 > :not([hidden]) ~ :not([hidden]) {
|
|
1311
|
+
--tw-space-x-reverse: 0;
|
|
1312
|
+
margin-right: calc(0px * var(--tw-space-x-reverse));
|
|
1313
|
+
margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
|
|
1314
|
+
}
|
|
1315
|
+
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1316
|
+
--tw-space-x-reverse: 0;
|
|
1317
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1318
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1319
|
+
}
|
|
1016
1320
|
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1017
1321
|
--tw-space-x-reverse: 0;
|
|
1018
1322
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1019
1323
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1020
1324
|
}
|
|
1325
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1326
|
+
--tw-space-y-reverse: 0;
|
|
1327
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1328
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1329
|
+
}
|
|
1330
|
+
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1331
|
+
--tw-space-y-reverse: 0;
|
|
1332
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1333
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1334
|
+
}
|
|
1335
|
+
.overflow-auto {
|
|
1336
|
+
overflow: auto;
|
|
1337
|
+
}
|
|
1021
1338
|
.overflow-hidden {
|
|
1022
1339
|
overflow: hidden;
|
|
1023
1340
|
}
|
|
@@ -1027,12 +1344,18 @@ video {
|
|
|
1027
1344
|
.text-wrap {
|
|
1028
1345
|
text-wrap: wrap;
|
|
1029
1346
|
}
|
|
1347
|
+
.\!rounded {
|
|
1348
|
+
border-radius: 0.25rem !important;
|
|
1349
|
+
}
|
|
1030
1350
|
.rounded {
|
|
1031
1351
|
border-radius: 0.25rem;
|
|
1032
1352
|
}
|
|
1033
1353
|
.rounded-full {
|
|
1034
1354
|
border-radius: 9999px;
|
|
1035
1355
|
}
|
|
1356
|
+
.rounded-lg {
|
|
1357
|
+
border-radius: var(--radius);
|
|
1358
|
+
}
|
|
1036
1359
|
.rounded-md {
|
|
1037
1360
|
border-radius: calc(var(--radius) - 2px);
|
|
1038
1361
|
}
|
|
@@ -1048,6 +1371,21 @@ video {
|
|
|
1048
1371
|
.border-2 {
|
|
1049
1372
|
border-width: 2px;
|
|
1050
1373
|
}
|
|
1374
|
+
.border-\[0\.5px\] {
|
|
1375
|
+
border-width: 0.5px;
|
|
1376
|
+
}
|
|
1377
|
+
.border-b-2 {
|
|
1378
|
+
border-bottom-width: 2px;
|
|
1379
|
+
}
|
|
1380
|
+
.border-b-\[0\.5px\] {
|
|
1381
|
+
border-bottom-width: 0.5px;
|
|
1382
|
+
}
|
|
1383
|
+
.border-t {
|
|
1384
|
+
border-top-width: 1px;
|
|
1385
|
+
}
|
|
1386
|
+
.border-dashed {
|
|
1387
|
+
border-style: dashed;
|
|
1388
|
+
}
|
|
1051
1389
|
.border-none {
|
|
1052
1390
|
border-style: none;
|
|
1053
1391
|
}
|
|
@@ -1061,15 +1399,24 @@ video {
|
|
|
1061
1399
|
.border-input {
|
|
1062
1400
|
border-color: hsl(var(--color-border-default));
|
|
1063
1401
|
}
|
|
1402
|
+
.border-primary {
|
|
1403
|
+
border-color: hsl(var(--primary));
|
|
1404
|
+
}
|
|
1064
1405
|
.border-transparent {
|
|
1065
1406
|
border-color: transparent;
|
|
1066
1407
|
}
|
|
1067
1408
|
.bg-background {
|
|
1068
1409
|
background-color: hsl(var(--background));
|
|
1069
1410
|
}
|
|
1411
|
+
.bg-muted\/50 {
|
|
1412
|
+
background-color: hsl(var(--color-text-disabled) / 0.5);
|
|
1413
|
+
}
|
|
1070
1414
|
.bg-transparent {
|
|
1071
1415
|
background-color: transparent;
|
|
1072
1416
|
}
|
|
1417
|
+
.bg-none {
|
|
1418
|
+
background-image: none;
|
|
1419
|
+
}
|
|
1073
1420
|
.object-contain {
|
|
1074
1421
|
-o-object-fit: contain;
|
|
1075
1422
|
object-fit: contain;
|
|
@@ -1087,6 +1434,18 @@ video {
|
|
|
1087
1434
|
.p-2 {
|
|
1088
1435
|
padding: 0.5rem;
|
|
1089
1436
|
}
|
|
1437
|
+
.p-3 {
|
|
1438
|
+
padding: 0.75rem;
|
|
1439
|
+
}
|
|
1440
|
+
.p-4 {
|
|
1441
|
+
padding: 1rem;
|
|
1442
|
+
}
|
|
1443
|
+
.p-5 {
|
|
1444
|
+
padding: 1.25rem;
|
|
1445
|
+
}
|
|
1446
|
+
.p-6 {
|
|
1447
|
+
padding: 1.5rem;
|
|
1448
|
+
}
|
|
1090
1449
|
.px-0 {
|
|
1091
1450
|
padding-left: 0px;
|
|
1092
1451
|
padding-right: 0px;
|
|
@@ -1128,9 +1487,21 @@ video {
|
|
|
1128
1487
|
.pr-3 {
|
|
1129
1488
|
padding-right: 0.75rem;
|
|
1130
1489
|
}
|
|
1490
|
+
.pt-0 {
|
|
1491
|
+
padding-top: 0px;
|
|
1492
|
+
}
|
|
1493
|
+
.text-left {
|
|
1494
|
+
text-align: left;
|
|
1495
|
+
}
|
|
1496
|
+
.text-center {
|
|
1497
|
+
text-align: center;
|
|
1498
|
+
}
|
|
1131
1499
|
.text-justify {
|
|
1132
1500
|
text-align: justify;
|
|
1133
1501
|
}
|
|
1502
|
+
.align-middle {
|
|
1503
|
+
vertical-align: middle;
|
|
1504
|
+
}
|
|
1134
1505
|
.text-sm {
|
|
1135
1506
|
font-size: 0.875rem;
|
|
1136
1507
|
line-height: 1.25rem;
|
|
@@ -1151,6 +1522,15 @@ video {
|
|
|
1151
1522
|
.leading-none {
|
|
1152
1523
|
line-height: 1;
|
|
1153
1524
|
}
|
|
1525
|
+
.tracking-tight {
|
|
1526
|
+
letter-spacing: -0.025em;
|
|
1527
|
+
}
|
|
1528
|
+
.text-card-foreground {
|
|
1529
|
+
color: hsl(var(--card-foreground));
|
|
1530
|
+
}
|
|
1531
|
+
.text-current {
|
|
1532
|
+
color: currentColor;
|
|
1533
|
+
}
|
|
1154
1534
|
.text-danger {
|
|
1155
1535
|
color: hsl(var(--color-text-danger));
|
|
1156
1536
|
}
|
|
@@ -1160,6 +1540,9 @@ video {
|
|
|
1160
1540
|
.text-muted {
|
|
1161
1541
|
color: hsl(var(--color-text-disabled));
|
|
1162
1542
|
}
|
|
1543
|
+
.text-muted-foreground {
|
|
1544
|
+
color: hsl(var(--muted-foreground));
|
|
1545
|
+
}
|
|
1163
1546
|
.text-primary {
|
|
1164
1547
|
color: hsl(var(--primary));
|
|
1165
1548
|
}
|
|
@@ -1176,9 +1559,18 @@ video {
|
|
|
1176
1559
|
.text-secondary-foreground {
|
|
1177
1560
|
color: hsl(var(--secondary-foreground));
|
|
1178
1561
|
}
|
|
1562
|
+
.text-white {
|
|
1563
|
+
--tw-text-opacity: 1;
|
|
1564
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1565
|
+
}
|
|
1179
1566
|
.underline-offset-4 {
|
|
1180
1567
|
text-underline-offset: 4px;
|
|
1181
1568
|
}
|
|
1569
|
+
.shadow {
|
|
1570
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1571
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1572
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1573
|
+
}
|
|
1182
1574
|
.shadow-lg {
|
|
1183
1575
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1184
1576
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -1228,6 +1620,11 @@ video {
|
|
|
1228
1620
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1229
1621
|
transition-duration: 150ms;
|
|
1230
1622
|
}
|
|
1623
|
+
.transition-opacity {
|
|
1624
|
+
transition-property: opacity;
|
|
1625
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1626
|
+
transition-duration: 150ms;
|
|
1627
|
+
}
|
|
1231
1628
|
.transition-transform {
|
|
1232
1629
|
transition-property: transform;
|
|
1233
1630
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -1274,6 +1671,12 @@ video {
|
|
|
1274
1671
|
.slide-in-from-top-2 {
|
|
1275
1672
|
--tw-enter-translate-y: -0.5rem;
|
|
1276
1673
|
}
|
|
1674
|
+
.hover\:\!color-bg-default-hover:hover {
|
|
1675
|
+
background-color: hsl(var(--color-bg-default-hover)) !important;
|
|
1676
|
+
}
|
|
1677
|
+
.hover\:color-bg-default-hover:hover {
|
|
1678
|
+
background-color: hsl(var(--color-bg-default-hover));
|
|
1679
|
+
}
|
|
1277
1680
|
.hover\:color-bg-tertiary:hover {
|
|
1278
1681
|
background-color: hsl(var(--color-bg-tertiary));
|
|
1279
1682
|
}
|
|
@@ -1334,12 +1737,18 @@ video {
|
|
|
1334
1737
|
.placeholder\:text-muted::placeholder {
|
|
1335
1738
|
color: hsl(var(--color-text-disabled));
|
|
1336
1739
|
}
|
|
1740
|
+
.hover\:cursor-pointer:hover {
|
|
1741
|
+
cursor: pointer;
|
|
1742
|
+
}
|
|
1337
1743
|
.hover\:border-border-hover:hover {
|
|
1338
1744
|
border-color: hsl(var(--color-border-hover));
|
|
1339
1745
|
}
|
|
1340
1746
|
.hover\:bg-accent:hover {
|
|
1341
1747
|
background-color: hsl(var(--accent));
|
|
1342
1748
|
}
|
|
1749
|
+
.hover\:bg-muted\/50:hover {
|
|
1750
|
+
background-color: hsl(var(--color-text-disabled) / 0.5);
|
|
1751
|
+
}
|
|
1343
1752
|
.hover\:bg-none:hover {
|
|
1344
1753
|
background-image: none;
|
|
1345
1754
|
}
|
|
@@ -1349,10 +1758,27 @@ video {
|
|
|
1349
1758
|
.hover\:underline:hover {
|
|
1350
1759
|
text-decoration-line: underline;
|
|
1351
1760
|
}
|
|
1761
|
+
.hover\:opacity-90:hover {
|
|
1762
|
+
opacity: 0.9;
|
|
1763
|
+
}
|
|
1764
|
+
.focus\:bg-white:focus {
|
|
1765
|
+
--tw-bg-opacity: 1;
|
|
1766
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1767
|
+
}
|
|
1768
|
+
.focus\:shadow-none:focus {
|
|
1769
|
+
--tw-shadow: 0 0 #0000;
|
|
1770
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
1771
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1772
|
+
}
|
|
1352
1773
|
.focus\:outline-none:focus {
|
|
1353
1774
|
outline: 2px solid transparent;
|
|
1354
1775
|
outline-offset: 2px;
|
|
1355
1776
|
}
|
|
1777
|
+
.focus\:ring-0:focus {
|
|
1778
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1779
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1780
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1781
|
+
}
|
|
1356
1782
|
.focus\:ring-2:focus {
|
|
1357
1783
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1358
1784
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1371,6 +1797,11 @@ video {
|
|
|
1371
1797
|
outline: 2px solid transparent;
|
|
1372
1798
|
outline-offset: 2px;
|
|
1373
1799
|
}
|
|
1800
|
+
.focus-visible\:ring-1:focus-visible {
|
|
1801
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1802
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1803
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1804
|
+
}
|
|
1374
1805
|
.focus-visible\:ring-2:focus-visible {
|
|
1375
1806
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1376
1807
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1385,6 +1816,9 @@ video {
|
|
|
1385
1816
|
.focus-visible\:ring-offset-background:focus-visible {
|
|
1386
1817
|
--tw-ring-offset-color: hsl(var(--background));
|
|
1387
1818
|
}
|
|
1819
|
+
.disabled\:pointer-events-none:disabled {
|
|
1820
|
+
pointer-events: none;
|
|
1821
|
+
}
|
|
1388
1822
|
.disabled\:cursor-not-allowed:disabled {
|
|
1389
1823
|
cursor: not-allowed;
|
|
1390
1824
|
}
|
|
@@ -1397,6 +1831,9 @@ video {
|
|
|
1397
1831
|
.disabled\:text-muted:disabled {
|
|
1398
1832
|
color: hsl(var(--color-text-disabled));
|
|
1399
1833
|
}
|
|
1834
|
+
.disabled\:opacity-50:disabled {
|
|
1835
|
+
opacity: 0.5;
|
|
1836
|
+
}
|
|
1400
1837
|
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
1401
1838
|
cursor: not-allowed;
|
|
1402
1839
|
}
|
|
@@ -1411,6 +1848,24 @@ video {
|
|
|
1411
1848
|
--tw-translate-x: 0px;
|
|
1412
1849
|
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));
|
|
1413
1850
|
}
|
|
1851
|
+
.data-\[state\=active\]\:border-primary[data-state=active] {
|
|
1852
|
+
border-color: hsl(var(--primary));
|
|
1853
|
+
}
|
|
1854
|
+
.data-\[state\=checked\]\:bg-primary[data-state=checked] {
|
|
1855
|
+
background-color: hsl(var(--primary));
|
|
1856
|
+
}
|
|
1857
|
+
.data-\[state\=selected\]\:bg-muted[data-state=selected] {
|
|
1858
|
+
background-color: hsl(var(--color-text-disabled));
|
|
1859
|
+
}
|
|
1860
|
+
.data-\[state\=active\]\:bg-none[data-state=active] {
|
|
1861
|
+
background-image: none;
|
|
1862
|
+
}
|
|
1863
|
+
.data-\[state\=active\]\:text-foreground[data-state=active] {
|
|
1864
|
+
color: hsl(var(--foreground));
|
|
1865
|
+
}
|
|
1866
|
+
.data-\[state\=checked\]\:text-primary-foreground[data-state=checked] {
|
|
1867
|
+
color: hsl(var(--primary-foreground));
|
|
1868
|
+
}
|
|
1414
1869
|
.data-\[state\=closed\]\:animate-out[data-state=closed] {
|
|
1415
1870
|
animation-name: exit;
|
|
1416
1871
|
animation-duration: 150ms;
|
|
@@ -1426,6 +1881,49 @@ video {
|
|
|
1426
1881
|
.data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
|
|
1427
1882
|
--tw-exit-scale: .95;
|
|
1428
1883
|
}
|
|
1884
|
+
@media (min-width: 768px) {
|
|
1885
|
+
|
|
1886
|
+
.md\:w-\[60vw\] {
|
|
1887
|
+
width: 60vw;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.md\:flex-row {
|
|
1891
|
+
flex-direction: row;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.md\:justify-start {
|
|
1895
|
+
justify-content: flex-start;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.md\:gap-8 {
|
|
1899
|
+
gap: 2rem;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
.md\:p-24 {
|
|
1903
|
+
padding: 6rem;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
.md\:p-8 {
|
|
1907
|
+
padding: 2rem;
|
|
1908
|
+
}
|
|
1909
|
+
}
|
|
1910
|
+
@media (min-width: 1024px) {
|
|
1911
|
+
|
|
1912
|
+
.lg\:block {
|
|
1913
|
+
display: block;
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.lg\:flex {
|
|
1917
|
+
display: flex;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.lg\:hidden {
|
|
1921
|
+
display: none;
|
|
1922
|
+
}
|
|
1923
|
+
}
|
|
1924
|
+
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
|
|
1925
|
+
padding-right: 0px;
|
|
1926
|
+
}
|
|
1429
1927
|
.\[\&\>span\]\:\!left-\[10\%\]>span {
|
|
1430
1928
|
left: 10% !important;
|
|
1431
1929
|
}
|
|
@@ -1438,3 +1936,12 @@ video {
|
|
|
1438
1936
|
.\[\&\>span\]\:\!top-\[80\%\]>span {
|
|
1439
1937
|
top: 80% !important;
|
|
1440
1938
|
}
|
|
1939
|
+
.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
|
|
1940
|
+
border-bottom-width: 0px;
|
|
1941
|
+
}
|
|
1942
|
+
.\[\&_tr\:last-child\]\:border-0 tr:last-child {
|
|
1943
|
+
border-width: 0px;
|
|
1944
|
+
}
|
|
1945
|
+
.\[\&_tr\]\:border-b tr {
|
|
1946
|
+
border-bottom-width: 1px;
|
|
1947
|
+
}
|