@upstash/react-redis-browser 0.2.14-rc.1 → 0.2.14-rc.11
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.css +383 -62
- package/dist/index.d.mts +66 -2
- package/dist/index.d.ts +66 -2
- package/dist/index.js +6737 -3902
- package/dist/index.mjs +6354 -3519
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -786,12 +786,18 @@
|
|
|
786
786
|
.ups-db .pointer-events-auto {
|
|
787
787
|
pointer-events: auto;
|
|
788
788
|
}
|
|
789
|
+
.ups-db .\!visible {
|
|
790
|
+
visibility: visible !important;
|
|
791
|
+
}
|
|
789
792
|
.ups-db .visible {
|
|
790
793
|
visibility: visible;
|
|
791
794
|
}
|
|
792
795
|
.ups-db .invisible {
|
|
793
796
|
visibility: hidden;
|
|
794
797
|
}
|
|
798
|
+
.ups-db .collapse {
|
|
799
|
+
visibility: collapse;
|
|
800
|
+
}
|
|
795
801
|
.ups-db .static {
|
|
796
802
|
position: static;
|
|
797
803
|
}
|
|
@@ -816,6 +822,9 @@
|
|
|
816
822
|
.ups-db .bottom-0 {
|
|
817
823
|
bottom: 0px;
|
|
818
824
|
}
|
|
825
|
+
.ups-db .bottom-2 {
|
|
826
|
+
bottom: 0.5rem;
|
|
827
|
+
}
|
|
819
828
|
.ups-db .left-0 {
|
|
820
829
|
left: 0px;
|
|
821
830
|
}
|
|
@@ -864,6 +873,12 @@
|
|
|
864
873
|
.ups-db .z-\[100\] {
|
|
865
874
|
z-index: 100;
|
|
866
875
|
}
|
|
876
|
+
.ups-db .z-\[2\] {
|
|
877
|
+
z-index: 2;
|
|
878
|
+
}
|
|
879
|
+
.ups-db .col-span-2 {
|
|
880
|
+
grid-column: span 2 / span 2;
|
|
881
|
+
}
|
|
867
882
|
.ups-db .-mx-1 {
|
|
868
883
|
margin-left: -0.25rem;
|
|
869
884
|
margin-right: -0.25rem;
|
|
@@ -888,12 +903,19 @@
|
|
|
888
903
|
margin-top: 0.25rem;
|
|
889
904
|
margin-bottom: 0.25rem;
|
|
890
905
|
}
|
|
906
|
+
.ups-db .my-\[2px\] {
|
|
907
|
+
margin-top: 2px;
|
|
908
|
+
margin-bottom: 2px;
|
|
909
|
+
}
|
|
891
910
|
.ups-db .-mt-1 {
|
|
892
911
|
margin-top: -0.25rem;
|
|
893
912
|
}
|
|
894
913
|
.ups-db .mb-1 {
|
|
895
914
|
margin-bottom: 0.25rem;
|
|
896
915
|
}
|
|
916
|
+
.ups-db .mb-1\.5 {
|
|
917
|
+
margin-bottom: 0.375rem;
|
|
918
|
+
}
|
|
897
919
|
.ups-db .mb-2 {
|
|
898
920
|
margin-bottom: 0.5rem;
|
|
899
921
|
}
|
|
@@ -912,6 +934,9 @@
|
|
|
912
934
|
.ups-db .ml-2 {
|
|
913
935
|
margin-left: 0.5rem;
|
|
914
936
|
}
|
|
937
|
+
.ups-db .ml-\[15px\] {
|
|
938
|
+
margin-left: 15px;
|
|
939
|
+
}
|
|
915
940
|
.ups-db .ml-auto {
|
|
916
941
|
margin-left: auto;
|
|
917
942
|
}
|
|
@@ -924,6 +949,9 @@
|
|
|
924
949
|
.ups-db .mt-0\.5 {
|
|
925
950
|
margin-top: 0.125rem;
|
|
926
951
|
}
|
|
952
|
+
.ups-db .mt-1 {
|
|
953
|
+
margin-top: 0.25rem;
|
|
954
|
+
}
|
|
927
955
|
.ups-db .mt-2 {
|
|
928
956
|
margin-top: 0.5rem;
|
|
929
957
|
}
|
|
@@ -1019,12 +1047,18 @@
|
|
|
1019
1047
|
.ups-db .h-\[26px\] {
|
|
1020
1048
|
height: 26px;
|
|
1021
1049
|
}
|
|
1050
|
+
.ups-db .h-\[34px\] {
|
|
1051
|
+
height: 34px;
|
|
1052
|
+
}
|
|
1022
1053
|
.ups-db .h-\[3px\] {
|
|
1023
1054
|
height: 3px;
|
|
1024
1055
|
}
|
|
1025
1056
|
.ups-db .h-\[40px\] {
|
|
1026
1057
|
height: 40px;
|
|
1027
1058
|
}
|
|
1059
|
+
.ups-db .h-\[58px\] {
|
|
1060
|
+
height: 58px;
|
|
1061
|
+
}
|
|
1028
1062
|
.ups-db .h-\[var\(--radix-select-trigger-height\)\] {
|
|
1029
1063
|
height: var(--radix-select-trigger-height);
|
|
1030
1064
|
}
|
|
@@ -1034,9 +1068,18 @@
|
|
|
1034
1068
|
.ups-db .h-px {
|
|
1035
1069
|
height: 1px;
|
|
1036
1070
|
}
|
|
1071
|
+
.ups-db .max-h-40 {
|
|
1072
|
+
max-height: 10rem;
|
|
1073
|
+
}
|
|
1074
|
+
.ups-db .max-h-\[200px\] {
|
|
1075
|
+
max-height: 200px;
|
|
1076
|
+
}
|
|
1037
1077
|
.ups-db .max-h-\[300px\] {
|
|
1038
1078
|
max-height: 300px;
|
|
1039
1079
|
}
|
|
1080
|
+
.ups-db .max-h-\[min\(var\(--radix-select-content-available-height\)\,20rem\)\] {
|
|
1081
|
+
max-height: min(var(--radix-select-content-available-height), 20rem);
|
|
1082
|
+
}
|
|
1040
1083
|
.ups-db .max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
|
|
1041
1084
|
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
1042
1085
|
}
|
|
@@ -1049,6 +1092,9 @@
|
|
|
1049
1092
|
.ups-db .min-h-\[20px\] {
|
|
1050
1093
|
min-height: 20px;
|
|
1051
1094
|
}
|
|
1095
|
+
.ups-db .min-h-\[500px\] {
|
|
1096
|
+
min-height: 500px;
|
|
1097
|
+
}
|
|
1052
1098
|
.ups-db .\!w-auto {
|
|
1053
1099
|
width: auto !important;
|
|
1054
1100
|
}
|
|
@@ -1073,6 +1119,9 @@
|
|
|
1073
1119
|
.ups-db .w-24 {
|
|
1074
1120
|
width: 6rem;
|
|
1075
1121
|
}
|
|
1122
|
+
.ups-db .w-3 {
|
|
1123
|
+
width: 0.75rem;
|
|
1124
|
+
}
|
|
1076
1125
|
.ups-db .w-3\.5 {
|
|
1077
1126
|
width: 0.875rem;
|
|
1078
1127
|
}
|
|
@@ -1097,6 +1146,9 @@
|
|
|
1097
1146
|
.ups-db .w-8 {
|
|
1098
1147
|
width: 2rem;
|
|
1099
1148
|
}
|
|
1149
|
+
.ups-db .w-9 {
|
|
1150
|
+
width: 2.25rem;
|
|
1151
|
+
}
|
|
1100
1152
|
.ups-db .w-96 {
|
|
1101
1153
|
width: 24rem;
|
|
1102
1154
|
}
|
|
@@ -1112,9 +1164,18 @@
|
|
|
1112
1164
|
.ups-db .w-\[300px\] {
|
|
1113
1165
|
width: 300px;
|
|
1114
1166
|
}
|
|
1167
|
+
.ups-db .w-\[340px\] {
|
|
1168
|
+
width: 340px;
|
|
1169
|
+
}
|
|
1170
|
+
.ups-db .w-\[34px\] {
|
|
1171
|
+
width: 34px;
|
|
1172
|
+
}
|
|
1115
1173
|
.ups-db .w-\[3px\] {
|
|
1116
1174
|
width: 3px;
|
|
1117
1175
|
}
|
|
1176
|
+
.ups-db .w-\[500px\] {
|
|
1177
|
+
width: 500px;
|
|
1178
|
+
}
|
|
1118
1179
|
.ups-db .w-auto {
|
|
1119
1180
|
width: auto;
|
|
1120
1181
|
}
|
|
@@ -1131,6 +1192,9 @@
|
|
|
1131
1192
|
.ups-db .min-w-24 {
|
|
1132
1193
|
min-width: 6rem;
|
|
1133
1194
|
}
|
|
1195
|
+
.ups-db .min-w-\[140px\] {
|
|
1196
|
+
min-width: 140px;
|
|
1197
|
+
}
|
|
1134
1198
|
.ups-db .min-w-\[30px\] {
|
|
1135
1199
|
min-width: 30px;
|
|
1136
1200
|
}
|
|
@@ -1143,6 +1207,9 @@
|
|
|
1143
1207
|
.ups-db .max-w-0 {
|
|
1144
1208
|
max-width: 0px;
|
|
1145
1209
|
}
|
|
1210
|
+
.ups-db .max-w-2xl {
|
|
1211
|
+
max-width: 42rem;
|
|
1212
|
+
}
|
|
1146
1213
|
.ups-db .max-w-32 {
|
|
1147
1214
|
max-width: 8rem;
|
|
1148
1215
|
}
|
|
@@ -1152,12 +1219,21 @@
|
|
|
1152
1219
|
.ups-db .max-w-\[400px\] {
|
|
1153
1220
|
max-width: 400px;
|
|
1154
1221
|
}
|
|
1222
|
+
.ups-db .max-w-\[500px\] {
|
|
1223
|
+
max-width: 500px;
|
|
1224
|
+
}
|
|
1225
|
+
.ups-db .max-w-\[70\%\] {
|
|
1226
|
+
max-width: 70%;
|
|
1227
|
+
}
|
|
1155
1228
|
.ups-db .max-w-lg {
|
|
1156
1229
|
max-width: 32rem;
|
|
1157
1230
|
}
|
|
1158
1231
|
.ups-db .max-w-md {
|
|
1159
1232
|
max-width: 28rem;
|
|
1160
1233
|
}
|
|
1234
|
+
.ups-db .max-w-xs {
|
|
1235
|
+
max-width: 20rem;
|
|
1236
|
+
}
|
|
1161
1237
|
.ups-db .flex-1 {
|
|
1162
1238
|
flex: 1 1 0%;
|
|
1163
1239
|
}
|
|
@@ -1197,6 +1273,10 @@
|
|
|
1197
1273
|
--tw-translate-y: -50%;
|
|
1198
1274
|
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));
|
|
1199
1275
|
}
|
|
1276
|
+
.ups-db .rotate-90 {
|
|
1277
|
+
--tw-rotate: 90deg;
|
|
1278
|
+
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));
|
|
1279
|
+
}
|
|
1200
1280
|
.ups-db .transform {
|
|
1201
1281
|
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));
|
|
1202
1282
|
}
|
|
@@ -1242,6 +1322,17 @@
|
|
|
1242
1322
|
.ups-db .resize {
|
|
1243
1323
|
resize: both;
|
|
1244
1324
|
}
|
|
1325
|
+
.ups-db .appearance-none {
|
|
1326
|
+
-webkit-appearance: none;
|
|
1327
|
+
-moz-appearance: none;
|
|
1328
|
+
appearance: none;
|
|
1329
|
+
}
|
|
1330
|
+
.ups-db .grid-cols-2 {
|
|
1331
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1332
|
+
}
|
|
1333
|
+
.ups-db .flex-row {
|
|
1334
|
+
flex-direction: row;
|
|
1335
|
+
}
|
|
1245
1336
|
.ups-db .flex-col {
|
|
1246
1337
|
flex-direction: column;
|
|
1247
1338
|
}
|
|
@@ -1284,6 +1375,12 @@
|
|
|
1284
1375
|
.ups-db .gap-4 {
|
|
1285
1376
|
gap: 1rem;
|
|
1286
1377
|
}
|
|
1378
|
+
.ups-db .gap-5 {
|
|
1379
|
+
gap: 1.25rem;
|
|
1380
|
+
}
|
|
1381
|
+
.ups-db .gap-6 {
|
|
1382
|
+
gap: 1.5rem;
|
|
1383
|
+
}
|
|
1287
1384
|
.ups-db .gap-8 {
|
|
1288
1385
|
gap: 2rem;
|
|
1289
1386
|
}
|
|
@@ -1339,9 +1436,6 @@
|
|
|
1339
1436
|
.ups-db .overflow-visible {
|
|
1340
1437
|
overflow: visible;
|
|
1341
1438
|
}
|
|
1342
|
-
.ups-db .overflow-scroll {
|
|
1343
|
-
overflow: scroll;
|
|
1344
|
-
}
|
|
1345
1439
|
.ups-db .overflow-x-auto {
|
|
1346
1440
|
overflow-x: auto;
|
|
1347
1441
|
}
|
|
@@ -1351,6 +1445,9 @@
|
|
|
1351
1445
|
.ups-db .overflow-x-hidden {
|
|
1352
1446
|
overflow-x: hidden;
|
|
1353
1447
|
}
|
|
1448
|
+
.ups-db .overflow-x-scroll {
|
|
1449
|
+
overflow-x: scroll;
|
|
1450
|
+
}
|
|
1354
1451
|
.ups-db .truncate {
|
|
1355
1452
|
overflow: hidden;
|
|
1356
1453
|
text-overflow: ellipsis;
|
|
@@ -1359,9 +1456,6 @@
|
|
|
1359
1456
|
.ups-db .whitespace-nowrap {
|
|
1360
1457
|
white-space: nowrap;
|
|
1361
1458
|
}
|
|
1362
|
-
.ups-db .whitespace-pre-wrap {
|
|
1363
|
-
white-space: pre-wrap;
|
|
1364
|
-
}
|
|
1365
1459
|
.ups-db .text-balance {
|
|
1366
1460
|
text-wrap: balance;
|
|
1367
1461
|
}
|
|
@@ -1371,6 +1465,12 @@
|
|
|
1371
1465
|
.ups-db .rounded {
|
|
1372
1466
|
border-radius: 0.25rem;
|
|
1373
1467
|
}
|
|
1468
|
+
.ups-db .rounded-2xl {
|
|
1469
|
+
border-radius: 1rem;
|
|
1470
|
+
}
|
|
1471
|
+
.ups-db .rounded-\[10px\] {
|
|
1472
|
+
border-radius: 10px;
|
|
1473
|
+
}
|
|
1374
1474
|
.ups-db .rounded-\[14px\] {
|
|
1375
1475
|
border-radius: 14px;
|
|
1376
1476
|
}
|
|
@@ -1395,6 +1495,10 @@
|
|
|
1395
1495
|
.ups-db .rounded-xl {
|
|
1396
1496
|
border-radius: 0.75rem;
|
|
1397
1497
|
}
|
|
1498
|
+
.ups-db .rounded-b-lg {
|
|
1499
|
+
border-bottom-right-radius: 0.5rem;
|
|
1500
|
+
border-bottom-left-radius: 0.5rem;
|
|
1501
|
+
}
|
|
1398
1502
|
.ups-db .rounded-l-lg {
|
|
1399
1503
|
border-top-left-radius: 0.5rem;
|
|
1400
1504
|
border-bottom-left-radius: 0.5rem;
|
|
@@ -1407,6 +1511,10 @@
|
|
|
1407
1511
|
border-top-left-radius: 0px;
|
|
1408
1512
|
border-bottom-left-radius: 0px;
|
|
1409
1513
|
}
|
|
1514
|
+
.ups-db .rounded-r-lg {
|
|
1515
|
+
border-top-right-radius: 0.5rem;
|
|
1516
|
+
border-bottom-right-radius: 0.5rem;
|
|
1517
|
+
}
|
|
1410
1518
|
.ups-db .rounded-r-md {
|
|
1411
1519
|
border-top-right-radius: 0.375rem;
|
|
1412
1520
|
border-bottom-right-radius: 0.375rem;
|
|
@@ -1415,6 +1523,10 @@
|
|
|
1415
1523
|
border-top-right-radius: 0px;
|
|
1416
1524
|
border-bottom-right-radius: 0px;
|
|
1417
1525
|
}
|
|
1526
|
+
.ups-db .rounded-t-\[10px\] {
|
|
1527
|
+
border-top-left-radius: 10px;
|
|
1528
|
+
border-top-right-radius: 10px;
|
|
1529
|
+
}
|
|
1418
1530
|
.ups-db .rounded-t-lg {
|
|
1419
1531
|
border-top-left-radius: 0.5rem;
|
|
1420
1532
|
border-top-right-radius: 0.5rem;
|
|
@@ -1422,6 +1534,9 @@
|
|
|
1422
1534
|
.ups-db .border {
|
|
1423
1535
|
border-width: 1px;
|
|
1424
1536
|
}
|
|
1537
|
+
.ups-db .border-2 {
|
|
1538
|
+
border-width: 2px;
|
|
1539
|
+
}
|
|
1425
1540
|
.ups-db .border-\[4px\] {
|
|
1426
1541
|
border-width: 4px;
|
|
1427
1542
|
}
|
|
@@ -1494,6 +1609,10 @@
|
|
|
1494
1609
|
.ups-db .border-transparent {
|
|
1495
1610
|
border-color: transparent;
|
|
1496
1611
|
}
|
|
1612
|
+
.ups-db .border-yellow-300 {
|
|
1613
|
+
--tw-border-opacity: 1;
|
|
1614
|
+
border-color: rgb(var(--color-yellow-300) / var(--tw-border-opacity));
|
|
1615
|
+
}
|
|
1497
1616
|
.ups-db .border-zinc-200 {
|
|
1498
1617
|
--tw-border-opacity: 1;
|
|
1499
1618
|
border-color: rgb(var(--color-zinc-200) / var(--tw-border-opacity));
|
|
@@ -1506,6 +1625,10 @@
|
|
|
1506
1625
|
--tw-border-opacity: 1;
|
|
1507
1626
|
border-bottom-color: rgb(var(--color-zinc-100) / var(--tw-border-opacity));
|
|
1508
1627
|
}
|
|
1628
|
+
.ups-db .border-t-zinc-600 {
|
|
1629
|
+
--tw-border-opacity: 1;
|
|
1630
|
+
border-top-color: rgb(var(--color-zinc-600) / var(--tw-border-opacity));
|
|
1631
|
+
}
|
|
1509
1632
|
.ups-db .\!bg-amber-50 {
|
|
1510
1633
|
--tw-bg-opacity: 1 !important;
|
|
1511
1634
|
background-color: rgb(var(--color-amber-50) / var(--tw-bg-opacity)) !important;
|
|
@@ -1577,6 +1700,14 @@
|
|
|
1577
1700
|
--tw-bg-opacity: 1;
|
|
1578
1701
|
background-color: rgb(var(--color-emerald-500) / var(--tw-bg-opacity));
|
|
1579
1702
|
}
|
|
1703
|
+
.ups-db .bg-emerald-600 {
|
|
1704
|
+
--tw-bg-opacity: 1;
|
|
1705
|
+
background-color: rgb(var(--color-emerald-600) / var(--tw-bg-opacity));
|
|
1706
|
+
}
|
|
1707
|
+
.ups-db .bg-emerald-800 {
|
|
1708
|
+
--tw-bg-opacity: 1;
|
|
1709
|
+
background-color: rgb(var(--color-emerald-800) / var(--tw-bg-opacity));
|
|
1710
|
+
}
|
|
1580
1711
|
.ups-db .bg-gray-200 {
|
|
1581
1712
|
--tw-bg-opacity: 1;
|
|
1582
1713
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
@@ -1589,6 +1720,13 @@
|
|
|
1589
1720
|
--tw-bg-opacity: 1;
|
|
1590
1721
|
background-color: rgb(var(--color-indigo-200) / var(--tw-bg-opacity));
|
|
1591
1722
|
}
|
|
1723
|
+
.ups-db .bg-neutral-900 {
|
|
1724
|
+
--tw-bg-opacity: 1;
|
|
1725
|
+
background-color: rgb(23 23 23 / var(--tw-bg-opacity));
|
|
1726
|
+
}
|
|
1727
|
+
.ups-db .bg-neutral-900\/20 {
|
|
1728
|
+
background-color: rgb(23 23 23 / 0.2);
|
|
1729
|
+
}
|
|
1592
1730
|
.ups-db .bg-orange-200 {
|
|
1593
1731
|
--tw-bg-opacity: 1;
|
|
1594
1732
|
background-color: rgb(var(--color-orange-200) / var(--tw-bg-opacity));
|
|
@@ -1597,6 +1735,10 @@
|
|
|
1597
1735
|
--tw-bg-opacity: 1;
|
|
1598
1736
|
background-color: rgb(var(--color-pink-200) / var(--tw-bg-opacity));
|
|
1599
1737
|
}
|
|
1738
|
+
.ups-db .bg-purple-100 {
|
|
1739
|
+
--tw-bg-opacity: 1;
|
|
1740
|
+
background-color: rgb(var(--color-purple-100) / var(--tw-bg-opacity));
|
|
1741
|
+
}
|
|
1600
1742
|
.ups-db .bg-purple-200 {
|
|
1601
1743
|
--tw-bg-opacity: 1;
|
|
1602
1744
|
background-color: rgb(var(--color-purple-200) / var(--tw-bg-opacity));
|
|
@@ -1605,6 +1747,10 @@
|
|
|
1605
1747
|
--tw-bg-opacity: 1;
|
|
1606
1748
|
background-color: rgb(var(--color-purple-50) / var(--tw-bg-opacity));
|
|
1607
1749
|
}
|
|
1750
|
+
.ups-db .bg-purple-500 {
|
|
1751
|
+
--tw-bg-opacity: 1;
|
|
1752
|
+
background-color: rgb(var(--color-purple-500) / var(--tw-bg-opacity));
|
|
1753
|
+
}
|
|
1608
1754
|
.ups-db .bg-red-50 {
|
|
1609
1755
|
--tw-bg-opacity: 1;
|
|
1610
1756
|
background-color: rgb(var(--color-red-50) / var(--tw-bg-opacity));
|
|
@@ -1628,8 +1774,9 @@
|
|
|
1628
1774
|
--tw-bg-opacity: 1;
|
|
1629
1775
|
background-color: rgb(var(--color-white) / var(--tw-bg-opacity));
|
|
1630
1776
|
}
|
|
1631
|
-
.ups-db .bg-
|
|
1632
|
-
|
|
1777
|
+
.ups-db .bg-yellow-50 {
|
|
1778
|
+
--tw-bg-opacity: 1;
|
|
1779
|
+
background-color: rgb(var(--color-yellow-50) / var(--tw-bg-opacity));
|
|
1633
1780
|
}
|
|
1634
1781
|
.ups-db .bg-zinc-100 {
|
|
1635
1782
|
--tw-bg-opacity: 1;
|
|
@@ -1642,13 +1789,13 @@
|
|
|
1642
1789
|
--tw-bg-opacity: 1;
|
|
1643
1790
|
background-color: rgb(var(--color-zinc-200) / var(--tw-bg-opacity));
|
|
1644
1791
|
}
|
|
1645
|
-
.ups-db .bg-zinc-200\/70 {
|
|
1646
|
-
background-color: rgb(var(--color-zinc-200) / 0.7);
|
|
1647
|
-
}
|
|
1648
1792
|
.ups-db .bg-zinc-300 {
|
|
1649
1793
|
--tw-bg-opacity: 1;
|
|
1650
1794
|
background-color: rgb(var(--color-zinc-300) / var(--tw-bg-opacity));
|
|
1651
1795
|
}
|
|
1796
|
+
.ups-db .bg-zinc-400\/70 {
|
|
1797
|
+
background-color: rgb(var(--color-zinc-400) / 0.7);
|
|
1798
|
+
}
|
|
1652
1799
|
.ups-db .bg-zinc-50 {
|
|
1653
1800
|
--tw-bg-opacity: 1;
|
|
1654
1801
|
background-color: rgb(var(--color-zinc-50) / var(--tw-bg-opacity));
|
|
@@ -1680,6 +1827,9 @@
|
|
|
1680
1827
|
.ups-db .p-2 {
|
|
1681
1828
|
padding: 0.5rem;
|
|
1682
1829
|
}
|
|
1830
|
+
.ups-db .p-3 {
|
|
1831
|
+
padding: 0.75rem;
|
|
1832
|
+
}
|
|
1683
1833
|
.ups-db .p-4 {
|
|
1684
1834
|
padding: 1rem;
|
|
1685
1835
|
}
|
|
@@ -1699,6 +1849,10 @@
|
|
|
1699
1849
|
padding-left: 0.25rem;
|
|
1700
1850
|
padding-right: 0.25rem;
|
|
1701
1851
|
}
|
|
1852
|
+
.ups-db .px-1\.5 {
|
|
1853
|
+
padding-left: 0.375rem;
|
|
1854
|
+
padding-right: 0.375rem;
|
|
1855
|
+
}
|
|
1702
1856
|
.ups-db .px-2 {
|
|
1703
1857
|
padding-left: 0.5rem;
|
|
1704
1858
|
padding-right: 0.5rem;
|
|
@@ -1735,6 +1889,10 @@
|
|
|
1735
1889
|
padding-top: 0px;
|
|
1736
1890
|
padding-bottom: 0px;
|
|
1737
1891
|
}
|
|
1892
|
+
.ups-db .py-0\.5 {
|
|
1893
|
+
padding-top: 0.125rem;
|
|
1894
|
+
padding-bottom: 0.125rem;
|
|
1895
|
+
}
|
|
1738
1896
|
.ups-db .py-1 {
|
|
1739
1897
|
padding-top: 0.25rem;
|
|
1740
1898
|
padding-bottom: 0.25rem;
|
|
@@ -1751,6 +1909,10 @@
|
|
|
1751
1909
|
padding-top: 0.75rem;
|
|
1752
1910
|
padding-bottom: 0.75rem;
|
|
1753
1911
|
}
|
|
1912
|
+
.ups-db .py-4 {
|
|
1913
|
+
padding-top: 1rem;
|
|
1914
|
+
padding-bottom: 1rem;
|
|
1915
|
+
}
|
|
1754
1916
|
.ups-db .py-5 {
|
|
1755
1917
|
padding-top: 1.25rem;
|
|
1756
1918
|
padding-bottom: 1.25rem;
|
|
@@ -1763,6 +1925,14 @@
|
|
|
1763
1925
|
padding-top: 3px;
|
|
1764
1926
|
padding-bottom: 3px;
|
|
1765
1927
|
}
|
|
1928
|
+
.ups-db .py-\[5px\] {
|
|
1929
|
+
padding-top: 5px;
|
|
1930
|
+
padding-bottom: 5px;
|
|
1931
|
+
}
|
|
1932
|
+
.ups-db .py-\[8px\] {
|
|
1933
|
+
padding-top: 8px;
|
|
1934
|
+
padding-bottom: 8px;
|
|
1935
|
+
}
|
|
1766
1936
|
.ups-db .pb-5 {
|
|
1767
1937
|
padding-bottom: 1.25rem;
|
|
1768
1938
|
}
|
|
@@ -1802,6 +1972,9 @@
|
|
|
1802
1972
|
.ups-db .pr-8 {
|
|
1803
1973
|
padding-right: 2rem;
|
|
1804
1974
|
}
|
|
1975
|
+
.ups-db .pt-0\.5 {
|
|
1976
|
+
padding-top: 0.125rem;
|
|
1977
|
+
}
|
|
1805
1978
|
.ups-db .text-left {
|
|
1806
1979
|
text-align: left;
|
|
1807
1980
|
}
|
|
@@ -1822,12 +1995,20 @@
|
|
|
1822
1995
|
"Courier New",
|
|
1823
1996
|
monospace;
|
|
1824
1997
|
}
|
|
1998
|
+
.ups-db .\!text-sm {
|
|
1999
|
+
font-size: 0.875rem !important;
|
|
2000
|
+
line-height: 1.25rem !important;
|
|
2001
|
+
}
|
|
1825
2002
|
.ups-db .text-\[11px\] {
|
|
1826
2003
|
font-size: 11px;
|
|
1827
2004
|
}
|
|
1828
2005
|
.ups-db .text-\[13px\] {
|
|
1829
2006
|
font-size: 13px;
|
|
1830
2007
|
}
|
|
2008
|
+
.ups-db .text-base {
|
|
2009
|
+
font-size: 1rem;
|
|
2010
|
+
line-height: 1.5rem;
|
|
2011
|
+
}
|
|
1831
2012
|
.ups-db .text-lg {
|
|
1832
2013
|
font-size: 1.125rem;
|
|
1833
2014
|
line-height: 1.75rem;
|
|
@@ -1865,9 +2046,6 @@
|
|
|
1865
2046
|
.ups-db .leading-relaxed {
|
|
1866
2047
|
line-height: 1.625;
|
|
1867
2048
|
}
|
|
1868
|
-
.ups-db .tracking-tight {
|
|
1869
|
-
letter-spacing: -0.025em;
|
|
1870
|
-
}
|
|
1871
2049
|
.ups-db .tracking-wide {
|
|
1872
2050
|
letter-spacing: 0.025em;
|
|
1873
2051
|
}
|
|
@@ -1877,6 +2055,10 @@
|
|
|
1877
2055
|
.ups-db .tracking-widest {
|
|
1878
2056
|
letter-spacing: 0.1em;
|
|
1879
2057
|
}
|
|
2058
|
+
.ups-db .\!text-yellow-800 {
|
|
2059
|
+
--tw-text-opacity: 1 !important;
|
|
2060
|
+
color: rgb(var(--color-yellow-800) / var(--tw-text-opacity)) !important;
|
|
2061
|
+
}
|
|
1880
2062
|
.ups-db .text-amber-800 {
|
|
1881
2063
|
--tw-text-opacity: 1;
|
|
1882
2064
|
color: rgb(var(--color-amber-800) / var(--tw-text-opacity));
|
|
@@ -1893,6 +2075,10 @@
|
|
|
1893
2075
|
--tw-text-opacity: 1;
|
|
1894
2076
|
color: rgb(var(--color-blue-600) / var(--tw-text-opacity));
|
|
1895
2077
|
}
|
|
2078
|
+
.ups-db .text-emerald-100 {
|
|
2079
|
+
--tw-text-opacity: 1;
|
|
2080
|
+
color: rgb(var(--color-emerald-100) / var(--tw-text-opacity));
|
|
2081
|
+
}
|
|
1896
2082
|
.ups-db .text-emerald-600 {
|
|
1897
2083
|
--tw-text-opacity: 1;
|
|
1898
2084
|
color: rgb(var(--color-emerald-600) / var(--tw-text-opacity));
|
|
@@ -1949,6 +2135,10 @@
|
|
|
1949
2135
|
--tw-text-opacity: 1;
|
|
1950
2136
|
color: rgb(var(--color-pink-900) / var(--tw-text-opacity));
|
|
1951
2137
|
}
|
|
2138
|
+
.ups-db .text-purple-700 {
|
|
2139
|
+
--tw-text-opacity: 1;
|
|
2140
|
+
color: rgb(var(--color-purple-700) / var(--tw-text-opacity));
|
|
2141
|
+
}
|
|
1952
2142
|
.ups-db .text-purple-800 {
|
|
1953
2143
|
--tw-text-opacity: 1;
|
|
1954
2144
|
color: rgb(var(--color-purple-800) / var(--tw-text-opacity));
|
|
@@ -1989,10 +2179,17 @@
|
|
|
1989
2179
|
--tw-text-opacity: 1;
|
|
1990
2180
|
color: rgb(var(--color-sky-900) / var(--tw-text-opacity));
|
|
1991
2181
|
}
|
|
2182
|
+
.ups-db .text-transparent {
|
|
2183
|
+
color: transparent;
|
|
2184
|
+
}
|
|
1992
2185
|
.ups-db .text-white {
|
|
1993
2186
|
--tw-text-opacity: 1;
|
|
1994
2187
|
color: rgb(var(--color-white) / var(--tw-text-opacity));
|
|
1995
2188
|
}
|
|
2189
|
+
.ups-db .text-yellow-800 {
|
|
2190
|
+
--tw-text-opacity: 1;
|
|
2191
|
+
color: rgb(var(--color-yellow-800) / var(--tw-text-opacity));
|
|
2192
|
+
}
|
|
1996
2193
|
.ups-db .text-zinc-300 {
|
|
1997
2194
|
--tw-text-opacity: 1;
|
|
1998
2195
|
color: rgb(var(--color-zinc-300) / var(--tw-text-opacity));
|
|
@@ -2028,6 +2225,9 @@
|
|
|
2028
2225
|
.ups-db .text-zinc-950\/50 {
|
|
2029
2226
|
color: rgb(var(--color-zinc-950) / 0.5);
|
|
2030
2227
|
}
|
|
2228
|
+
.ups-db .underline {
|
|
2229
|
+
text-decoration-line: underline;
|
|
2230
|
+
}
|
|
2031
2231
|
.ups-db .underline-offset-2 {
|
|
2032
2232
|
text-underline-offset: 2px;
|
|
2033
2233
|
}
|
|
@@ -2053,9 +2253,6 @@
|
|
|
2053
2253
|
.ups-db .opacity-60 {
|
|
2054
2254
|
opacity: 0.6;
|
|
2055
2255
|
}
|
|
2056
|
-
.ups-db .opacity-70 {
|
|
2057
|
-
opacity: 0.7;
|
|
2058
|
-
}
|
|
2059
2256
|
.ups-db .opacity-90 {
|
|
2060
2257
|
opacity: 0.9;
|
|
2061
2258
|
}
|
|
@@ -2075,6 +2272,14 @@
|
|
|
2075
2272
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
2076
2273
|
var(--tw-shadow);
|
|
2077
2274
|
}
|
|
2275
|
+
.ups-db .shadow-\[0_1px_1px_rgba\(0\,0\,0\,0\.05\)\] {
|
|
2276
|
+
--tw-shadow: 0 1px 1px rgba(0,0,0,0.05);
|
|
2277
|
+
--tw-shadow-colored: 0 1px 1px var(--tw-shadow-color);
|
|
2278
|
+
box-shadow:
|
|
2279
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
2280
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
2281
|
+
var(--tw-shadow);
|
|
2282
|
+
}
|
|
2078
2283
|
.ups-db .shadow-lg {
|
|
2079
2284
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
2080
2285
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -2114,6 +2319,14 @@
|
|
|
2114
2319
|
var(--tw-ring-shadow),
|
|
2115
2320
|
var(--tw-shadow, 0 0 #0000) !important;
|
|
2116
2321
|
}
|
|
2322
|
+
.ups-db .ring-0 {
|
|
2323
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2324
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2325
|
+
box-shadow:
|
|
2326
|
+
var(--tw-ring-offset-shadow),
|
|
2327
|
+
var(--tw-ring-shadow),
|
|
2328
|
+
var(--tw-shadow, 0 0 #0000);
|
|
2329
|
+
}
|
|
2117
2330
|
.ups-db .ring-offset-white {
|
|
2118
2331
|
--tw-ring-offset-color: rgb(var(--color-white) / 1);
|
|
2119
2332
|
}
|
|
@@ -2226,12 +2439,33 @@
|
|
|
2226
2439
|
--tw-enter-translate-x: initial;
|
|
2227
2440
|
--tw-enter-translate-y: initial;
|
|
2228
2441
|
}
|
|
2442
|
+
.ups-db .animate-out {
|
|
2443
|
+
animation-name: exit;
|
|
2444
|
+
animation-duration: 150ms;
|
|
2445
|
+
--tw-exit-opacity: initial;
|
|
2446
|
+
--tw-exit-scale: initial;
|
|
2447
|
+
--tw-exit-rotate: initial;
|
|
2448
|
+
--tw-exit-translate-x: initial;
|
|
2449
|
+
--tw-exit-translate-y: initial;
|
|
2450
|
+
}
|
|
2451
|
+
.ups-db .fade-in {
|
|
2452
|
+
--tw-enter-opacity: 0;
|
|
2453
|
+
}
|
|
2229
2454
|
.ups-db .fade-in-0 {
|
|
2230
2455
|
--tw-enter-opacity: 0;
|
|
2231
2456
|
}
|
|
2457
|
+
.ups-db .fade-out {
|
|
2458
|
+
--tw-exit-opacity: 0;
|
|
2459
|
+
}
|
|
2232
2460
|
.ups-db .zoom-in-95 {
|
|
2233
2461
|
--tw-enter-scale: .95;
|
|
2234
2462
|
}
|
|
2463
|
+
.ups-db .slide-in-from-bottom-1 {
|
|
2464
|
+
--tw-enter-translate-y: 0.25rem;
|
|
2465
|
+
}
|
|
2466
|
+
.ups-db .slide-out-to-bottom-1 {
|
|
2467
|
+
--tw-exit-translate-y: 0.25rem;
|
|
2468
|
+
}
|
|
2235
2469
|
.ups-db .duration-100 {
|
|
2236
2470
|
animation-duration: 100ms;
|
|
2237
2471
|
}
|
|
@@ -2241,6 +2475,14 @@
|
|
|
2241
2475
|
.ups-db .ease-out {
|
|
2242
2476
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2243
2477
|
}
|
|
2478
|
+
.ups-db .fill-mode-forwards {
|
|
2479
|
+
animation-fill-mode: forwards;
|
|
2480
|
+
}
|
|
2481
|
+
.ups-db .\[appearance\:textfield\] {
|
|
2482
|
+
-webkit-appearance: textfield;
|
|
2483
|
+
-moz-appearance: textfield;
|
|
2484
|
+
appearance: textfield;
|
|
2485
|
+
}
|
|
2244
2486
|
.ups-db .tabs-shadow-left {
|
|
2245
2487
|
background:
|
|
2246
2488
|
linear-gradient(
|
|
@@ -2255,6 +2497,20 @@
|
|
|
2255
2497
|
rgba(0, 0, 0, 0.08),
|
|
2256
2498
|
rgba(0, 0, 0, 0));
|
|
2257
2499
|
}
|
|
2500
|
+
.ups-db .scroll-shadow-top {
|
|
2501
|
+
background:
|
|
2502
|
+
linear-gradient(
|
|
2503
|
+
to bottom,
|
|
2504
|
+
rgba(0, 0, 0, 0.04),
|
|
2505
|
+
rgba(0, 0, 0, 0));
|
|
2506
|
+
}
|
|
2507
|
+
.ups-db .scroll-shadow-bottom {
|
|
2508
|
+
background:
|
|
2509
|
+
linear-gradient(
|
|
2510
|
+
to top,
|
|
2511
|
+
rgba(0, 0, 0, 0.04),
|
|
2512
|
+
rgba(0, 0, 0, 0));
|
|
2513
|
+
}
|
|
2258
2514
|
.ups-db svg.tabler-icon {
|
|
2259
2515
|
stroke-width: 2 !important;
|
|
2260
2516
|
}
|
|
@@ -2317,6 +2573,14 @@
|
|
|
2317
2573
|
.ups-db .file\:font-medium::file-selector-button {
|
|
2318
2574
|
font-weight: 500;
|
|
2319
2575
|
}
|
|
2576
|
+
.ups-db .placeholder\:text-zinc-400::-moz-placeholder {
|
|
2577
|
+
--tw-text-opacity: 1;
|
|
2578
|
+
color: rgb(var(--color-zinc-400) / var(--tw-text-opacity));
|
|
2579
|
+
}
|
|
2580
|
+
.ups-db .placeholder\:text-zinc-400::placeholder {
|
|
2581
|
+
--tw-text-opacity: 1;
|
|
2582
|
+
color: rgb(var(--color-zinc-400) / var(--tw-text-opacity));
|
|
2583
|
+
}
|
|
2320
2584
|
.ups-db .placeholder\:text-zinc-500::-moz-placeholder {
|
|
2321
2585
|
--tw-text-opacity: 1;
|
|
2322
2586
|
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
@@ -2325,13 +2589,29 @@
|
|
|
2325
2589
|
--tw-text-opacity: 1;
|
|
2326
2590
|
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2327
2591
|
}
|
|
2592
|
+
.ups-db .hover\:border-zinc-400:hover {
|
|
2593
|
+
--tw-border-opacity: 1;
|
|
2594
|
+
border-color: rgb(var(--color-zinc-400) / var(--tw-border-opacity));
|
|
2595
|
+
}
|
|
2328
2596
|
.ups-db .hover\:bg-black\/10:hover {
|
|
2329
2597
|
background-color: rgb(var(--color-black) / 0.1);
|
|
2330
2598
|
}
|
|
2599
|
+
.ups-db .hover\:bg-emerald-100:hover {
|
|
2600
|
+
--tw-bg-opacity: 1;
|
|
2601
|
+
background-color: rgb(var(--color-emerald-100) / var(--tw-bg-opacity));
|
|
2602
|
+
}
|
|
2331
2603
|
.ups-db .hover\:bg-emerald-600:hover {
|
|
2332
2604
|
--tw-bg-opacity: 1;
|
|
2333
2605
|
background-color: rgb(var(--color-emerald-600) / var(--tw-bg-opacity));
|
|
2334
2606
|
}
|
|
2607
|
+
.ups-db .hover\:bg-emerald-700:hover {
|
|
2608
|
+
--tw-bg-opacity: 1;
|
|
2609
|
+
background-color: rgb(var(--color-emerald-700) / var(--tw-bg-opacity));
|
|
2610
|
+
}
|
|
2611
|
+
.ups-db .hover\:bg-purple-600:hover {
|
|
2612
|
+
--tw-bg-opacity: 1;
|
|
2613
|
+
background-color: rgb(var(--color-purple-600) / var(--tw-bg-opacity));
|
|
2614
|
+
}
|
|
2335
2615
|
.ups-db .hover\:bg-red-500\/90:hover {
|
|
2336
2616
|
background-color: rgb(var(--color-red-500) / 0.9);
|
|
2337
2617
|
}
|
|
@@ -2352,9 +2632,9 @@
|
|
|
2352
2632
|
.ups-db .hover\:bg-zinc-300\/10:hover {
|
|
2353
2633
|
background-color: rgb(var(--color-zinc-300) / 0.1);
|
|
2354
2634
|
}
|
|
2355
|
-
.ups-db .hover\:bg-zinc-
|
|
2635
|
+
.ups-db .hover\:bg-zinc-50:hover {
|
|
2356
2636
|
--tw-bg-opacity: 1;
|
|
2357
|
-
background-color: rgb(var(--color-zinc-
|
|
2637
|
+
background-color: rgb(var(--color-zinc-50) / var(--tw-bg-opacity));
|
|
2358
2638
|
}
|
|
2359
2639
|
.ups-db .hover\:text-red-500:hover {
|
|
2360
2640
|
--tw-text-opacity: 1;
|
|
@@ -2383,8 +2663,9 @@
|
|
|
2383
2663
|
.ups-db .hover\:underline:hover {
|
|
2384
2664
|
text-decoration-line: underline;
|
|
2385
2665
|
}
|
|
2386
|
-
.ups-db .
|
|
2387
|
-
opacity: 1;
|
|
2666
|
+
.ups-db .focus\:border-purple-500:focus {
|
|
2667
|
+
--tw-border-opacity: 1;
|
|
2668
|
+
border-color: rgb(var(--color-purple-500) / var(--tw-border-opacity));
|
|
2388
2669
|
}
|
|
2389
2670
|
.ups-db .focus\:border-zinc-400:focus {
|
|
2390
2671
|
--tw-border-opacity: 1;
|
|
@@ -2421,21 +2702,14 @@
|
|
|
2421
2702
|
var(--tw-ring-shadow),
|
|
2422
2703
|
var(--tw-shadow, 0 0 #0000);
|
|
2423
2704
|
}
|
|
2424
|
-
.ups-db .focus\:ring-
|
|
2425
|
-
--tw-ring-
|
|
2426
|
-
--tw-ring-
|
|
2427
|
-
box-shadow:
|
|
2428
|
-
var(--tw-ring-offset-shadow),
|
|
2429
|
-
var(--tw-ring-shadow),
|
|
2430
|
-
var(--tw-shadow, 0 0 #0000);
|
|
2705
|
+
.ups-db .focus\:ring-purple-500:focus {
|
|
2706
|
+
--tw-ring-opacity: 1;
|
|
2707
|
+
--tw-ring-color: rgb(var(--color-purple-500) / var(--tw-ring-opacity));
|
|
2431
2708
|
}
|
|
2432
2709
|
.ups-db .focus\:ring-zinc-950:focus {
|
|
2433
2710
|
--tw-ring-opacity: 1;
|
|
2434
2711
|
--tw-ring-color: rgb(var(--color-zinc-950) / var(--tw-ring-opacity));
|
|
2435
2712
|
}
|
|
2436
|
-
.ups-db .focus\:ring-offset-2:focus {
|
|
2437
|
-
--tw-ring-offset-width: 2px;
|
|
2438
|
-
}
|
|
2439
2713
|
.ups-db .focus-visible\:bg-zinc-50:focus-visible {
|
|
2440
2714
|
--tw-bg-opacity: 1;
|
|
2441
2715
|
background-color: rgb(var(--color-zinc-50) / var(--tw-bg-opacity));
|
|
@@ -2452,6 +2726,18 @@
|
|
|
2452
2726
|
var(--tw-ring-shadow),
|
|
2453
2727
|
var(--tw-shadow, 0 0 #0000);
|
|
2454
2728
|
}
|
|
2729
|
+
.ups-db .focus-visible\:ring-2:focus-visible {
|
|
2730
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2731
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2732
|
+
box-shadow:
|
|
2733
|
+
var(--tw-ring-offset-shadow),
|
|
2734
|
+
var(--tw-ring-shadow),
|
|
2735
|
+
var(--tw-shadow, 0 0 #0000);
|
|
2736
|
+
}
|
|
2737
|
+
.ups-db .focus-visible\:ring-neutral-950:focus-visible {
|
|
2738
|
+
--tw-ring-opacity: 1;
|
|
2739
|
+
--tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity));
|
|
2740
|
+
}
|
|
2455
2741
|
.ups-db .focus-visible\:ring-zinc-950:focus-visible {
|
|
2456
2742
|
--tw-ring-opacity: 1;
|
|
2457
2743
|
--tw-ring-color: rgb(var(--color-zinc-950) / var(--tw-ring-opacity));
|
|
@@ -2459,6 +2745,9 @@
|
|
|
2459
2745
|
.ups-db .focus-visible\:ring-offset-2:focus-visible {
|
|
2460
2746
|
--tw-ring-offset-width: 2px;
|
|
2461
2747
|
}
|
|
2748
|
+
.ups-db .focus-visible\:ring-offset-white:focus-visible {
|
|
2749
|
+
--tw-ring-offset-color: rgb(var(--color-white) / 1);
|
|
2750
|
+
}
|
|
2462
2751
|
.ups-db .disabled\:pointer-events-none:disabled {
|
|
2463
2752
|
pointer-events: none;
|
|
2464
2753
|
}
|
|
@@ -2468,6 +2757,10 @@
|
|
|
2468
2757
|
.ups-db .disabled\:opacity-50:disabled {
|
|
2469
2758
|
opacity: 0.5;
|
|
2470
2759
|
}
|
|
2760
|
+
.ups-db .disabled\:hover\:bg-purple-500:hover:disabled {
|
|
2761
|
+
--tw-bg-opacity: 1;
|
|
2762
|
+
background-color: rgb(var(--color-purple-500) / var(--tw-bg-opacity));
|
|
2763
|
+
}
|
|
2471
2764
|
.ups-db .group\/editor:hover .group-hover\/editor\:flex {
|
|
2472
2765
|
display: flex;
|
|
2473
2766
|
}
|
|
@@ -2556,6 +2849,14 @@
|
|
|
2556
2849
|
--tw-translate-y: -0.25rem;
|
|
2557
2850
|
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));
|
|
2558
2851
|
}
|
|
2852
|
+
.ups-db .data-\[state\=checked\]\:translate-x-4[data-state=checked] {
|
|
2853
|
+
--tw-translate-x: 1rem;
|
|
2854
|
+
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));
|
|
2855
|
+
}
|
|
2856
|
+
.ups-db .data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
|
|
2857
|
+
--tw-translate-x: 0px;
|
|
2858
|
+
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));
|
|
2859
|
+
}
|
|
2559
2860
|
.ups-db .data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel] {
|
|
2560
2861
|
--tw-translate-x: 0px;
|
|
2561
2862
|
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));
|
|
@@ -2572,18 +2873,22 @@
|
|
|
2572
2873
|
--tw-bg-opacity: 1;
|
|
2573
2874
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
2574
2875
|
}
|
|
2876
|
+
.ups-db .data-\[state\=checked\]\:bg-neutral-900[data-state=checked] {
|
|
2877
|
+
--tw-bg-opacity: 1;
|
|
2878
|
+
background-color: rgb(23 23 23 / var(--tw-bg-opacity));
|
|
2879
|
+
}
|
|
2575
2880
|
.ups-db .data-\[state\=open\]\:bg-zinc-100[data-state=open] {
|
|
2576
2881
|
--tw-bg-opacity: 1;
|
|
2577
2882
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
2578
2883
|
}
|
|
2884
|
+
.ups-db .data-\[state\=unchecked\]\:bg-neutral-200[data-state=unchecked] {
|
|
2885
|
+
--tw-bg-opacity: 1;
|
|
2886
|
+
background-color: rgb(229 229 229 / var(--tw-bg-opacity));
|
|
2887
|
+
}
|
|
2579
2888
|
.ups-db .data-\[selected\=true\]\:text-zinc-900[data-selected=true] {
|
|
2580
2889
|
--tw-text-opacity: 1;
|
|
2581
2890
|
color: rgb(var(--color-zinc-900) / var(--tw-text-opacity));
|
|
2582
2891
|
}
|
|
2583
|
-
.ups-db .data-\[state\=open\]\:text-zinc-500[data-state=open] {
|
|
2584
|
-
--tw-text-opacity: 1;
|
|
2585
|
-
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2586
|
-
}
|
|
2587
2892
|
.ups-db .data-\[state\=open\]\:text-zinc-900[data-state=open] {
|
|
2588
2893
|
--tw-text-opacity: 1;
|
|
2589
2894
|
color: rgb(var(--color-zinc-900) / var(--tw-text-opacity));
|
|
@@ -2666,14 +2971,21 @@
|
|
|
2666
2971
|
.ups-db .data-\[state\=open\]\:slide-in-from-top-full[data-state=open] {
|
|
2667
2972
|
--tw-enter-translate-y: -100%;
|
|
2668
2973
|
}
|
|
2669
|
-
.ups-db .dark\:border-zinc-700:is(.dark *) {
|
|
2670
|
-
--tw-border-opacity: 1;
|
|
2671
|
-
border-color: rgb(var(--color-zinc-700) / var(--tw-border-opacity));
|
|
2672
|
-
}
|
|
2673
2974
|
.ups-db .dark\:border-b-zinc-200:is(.dark *) {
|
|
2674
2975
|
--tw-border-opacity: 1;
|
|
2675
2976
|
border-bottom-color: rgb(var(--color-zinc-200) / var(--tw-border-opacity));
|
|
2676
2977
|
}
|
|
2978
|
+
.ups-db .dark\:bg-neutral-50:is(.dark *) {
|
|
2979
|
+
--tw-bg-opacity: 1;
|
|
2980
|
+
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
|
2981
|
+
}
|
|
2982
|
+
.ups-db .dark\:bg-neutral-50\/20:is(.dark *) {
|
|
2983
|
+
background-color: rgb(250 250 250 / 0.2);
|
|
2984
|
+
}
|
|
2985
|
+
.ups-db .dark\:bg-neutral-950:is(.dark *) {
|
|
2986
|
+
--tw-bg-opacity: 1;
|
|
2987
|
+
background-color: rgb(10 10 10 / var(--tw-bg-opacity));
|
|
2988
|
+
}
|
|
2677
2989
|
.ups-db .dark\:bg-zinc-100:is(.dark *) {
|
|
2678
2990
|
--tw-bg-opacity: 1;
|
|
2679
2991
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
@@ -2682,30 +2994,17 @@
|
|
|
2682
2994
|
--tw-bg-opacity: 1;
|
|
2683
2995
|
background-color: rgb(var(--color-zinc-200) / var(--tw-bg-opacity));
|
|
2684
2996
|
}
|
|
2685
|
-
.ups-db .dark\:bg-zinc-
|
|
2997
|
+
.ups-db .dark\:bg-zinc-300:is(.dark *) {
|
|
2686
2998
|
--tw-bg-opacity: 1;
|
|
2687
|
-
background-color: rgb(var(--color-zinc-
|
|
2999
|
+
background-color: rgb(var(--color-zinc-300) / var(--tw-bg-opacity));
|
|
2688
3000
|
}
|
|
2689
|
-
.ups-db .dark\:bg-zinc-
|
|
2690
|
-
--
|
|
2691
|
-
background-color: rgb(var(--color-zinc-800) / var(--tw-bg-opacity));
|
|
3001
|
+
.ups-db .dark\:bg-zinc-50\/40:is(.dark *) {
|
|
3002
|
+
background-color: rgb(var(--color-zinc-50) / 0.4);
|
|
2692
3003
|
}
|
|
2693
3004
|
.ups-db .dark\:text-red-400:is(.dark *) {
|
|
2694
3005
|
--tw-text-opacity: 1;
|
|
2695
3006
|
color: rgb(var(--color-red-400) / var(--tw-text-opacity));
|
|
2696
3007
|
}
|
|
2697
|
-
.ups-db .dark\:text-zinc-100:is(.dark *) {
|
|
2698
|
-
--tw-text-opacity: 1;
|
|
2699
|
-
color: rgb(var(--color-zinc-100) / var(--tw-text-opacity));
|
|
2700
|
-
}
|
|
2701
|
-
.ups-db .dark\:text-zinc-400:is(.dark *) {
|
|
2702
|
-
--tw-text-opacity: 1;
|
|
2703
|
-
color: rgb(var(--color-zinc-400) / var(--tw-text-opacity));
|
|
2704
|
-
}
|
|
2705
|
-
.ups-db .dark\:text-zinc-500:is(.dark *) {
|
|
2706
|
-
--tw-text-opacity: 1;
|
|
2707
|
-
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2708
|
-
}
|
|
2709
3008
|
.ups-db .dark\:text-zinc-600:is(.dark *) {
|
|
2710
3009
|
--tw-text-opacity: 1;
|
|
2711
3010
|
color: rgb(var(--color-zinc-600) / var(--tw-text-opacity));
|
|
@@ -2714,10 +3013,22 @@
|
|
|
2714
3013
|
--tw-bg-opacity: 1;
|
|
2715
3014
|
background-color: rgb(var(--color-zinc-200) / var(--tw-bg-opacity));
|
|
2716
3015
|
}
|
|
3016
|
+
.ups-db .dark\:focus-visible\:ring-neutral-300:focus-visible:is(.dark *) {
|
|
3017
|
+
--tw-ring-opacity: 1;
|
|
3018
|
+
--tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity));
|
|
3019
|
+
}
|
|
3020
|
+
.ups-db .dark\:focus-visible\:ring-offset-neutral-950:focus-visible:is(.dark *) {
|
|
3021
|
+
--tw-ring-offset-color: #0a0a0a;
|
|
3022
|
+
}
|
|
3023
|
+
.ups-db .dark\:data-\[state\=checked\]\:bg-neutral-50[data-state=checked]:is(.dark *) {
|
|
3024
|
+
--tw-bg-opacity: 1;
|
|
3025
|
+
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
|
3026
|
+
}
|
|
3027
|
+
.ups-db .dark\:data-\[state\=unchecked\]\:bg-neutral-800[data-state=unchecked]:is(.dark *) {
|
|
3028
|
+
--tw-bg-opacity: 1;
|
|
3029
|
+
background-color: rgb(38 38 38 / var(--tw-bg-opacity));
|
|
3030
|
+
}
|
|
2717
3031
|
@media (min-width: 640px) {
|
|
2718
|
-
.ups-db .sm\:\!mt-0 {
|
|
2719
|
-
margin-top: 0px !important;
|
|
2720
|
-
}
|
|
2721
3032
|
.ups-db .sm\:flex-row {
|
|
2722
3033
|
flex-direction: row;
|
|
2723
3034
|
}
|
|
@@ -2732,9 +3043,6 @@
|
|
|
2732
3043
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
2733
3044
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2734
3045
|
}
|
|
2735
|
-
.ups-db .sm\:rounded-lg {
|
|
2736
|
-
border-radius: 0.5rem;
|
|
2737
|
-
}
|
|
2738
3046
|
.ups-db .sm\:text-left {
|
|
2739
3047
|
text-align: left;
|
|
2740
3048
|
}
|
|
@@ -2750,10 +3058,23 @@
|
|
|
2750
3058
|
max-width: 420px;
|
|
2751
3059
|
}
|
|
2752
3060
|
}
|
|
3061
|
+
@media (min-width: 1024px) {
|
|
3062
|
+
.ups-db .lg\:grid-cols-4 {
|
|
3063
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3064
|
+
}
|
|
3065
|
+
}
|
|
2753
3066
|
.ups-db .\[\&\+div\]\:text-xs + div {
|
|
2754
3067
|
font-size: 0.75rem;
|
|
2755
3068
|
line-height: 1rem;
|
|
2756
3069
|
}
|
|
3070
|
+
.ups-db .\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
|
|
3071
|
+
-webkit-appearance: none;
|
|
3072
|
+
appearance: none;
|
|
3073
|
+
}
|
|
3074
|
+
.ups-db .\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button {
|
|
3075
|
+
-webkit-appearance: none;
|
|
3076
|
+
appearance: none;
|
|
3077
|
+
}
|
|
2757
3078
|
.ups-db .\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
|
|
2758
3079
|
display: none;
|
|
2759
3080
|
}
|