@upstash/react-redis-browser 0.2.14-rc.10 → 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 +241 -54
- package/dist/index.d.mts +48 -2
- package/dist/index.d.ts +48 -2
- package/dist/index.js +1616 -954
- package/dist/index.mjs +2258 -1596
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -786,6 +786,9 @@
|
|
|
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
|
}
|
|
@@ -819,6 +822,9 @@
|
|
|
819
822
|
.ups-db .bottom-0 {
|
|
820
823
|
bottom: 0px;
|
|
821
824
|
}
|
|
825
|
+
.ups-db .bottom-2 {
|
|
826
|
+
bottom: 0.5rem;
|
|
827
|
+
}
|
|
822
828
|
.ups-db .left-0 {
|
|
823
829
|
left: 0px;
|
|
824
830
|
}
|
|
@@ -867,6 +873,9 @@
|
|
|
867
873
|
.ups-db .z-\[100\] {
|
|
868
874
|
z-index: 100;
|
|
869
875
|
}
|
|
876
|
+
.ups-db .z-\[2\] {
|
|
877
|
+
z-index: 2;
|
|
878
|
+
}
|
|
870
879
|
.ups-db .col-span-2 {
|
|
871
880
|
grid-column: span 2 / span 2;
|
|
872
881
|
}
|
|
@@ -894,6 +903,10 @@
|
|
|
894
903
|
margin-top: 0.25rem;
|
|
895
904
|
margin-bottom: 0.25rem;
|
|
896
905
|
}
|
|
906
|
+
.ups-db .my-\[2px\] {
|
|
907
|
+
margin-top: 2px;
|
|
908
|
+
margin-bottom: 2px;
|
|
909
|
+
}
|
|
897
910
|
.ups-db .-mt-1 {
|
|
898
911
|
margin-top: -0.25rem;
|
|
899
912
|
}
|
|
@@ -942,9 +955,6 @@
|
|
|
942
955
|
.ups-db .mt-2 {
|
|
943
956
|
margin-top: 0.5rem;
|
|
944
957
|
}
|
|
945
|
-
.ups-db .mt-3 {
|
|
946
|
-
margin-top: 0.75rem;
|
|
947
|
-
}
|
|
948
958
|
.ups-db .mt-4 {
|
|
949
959
|
margin-top: 1rem;
|
|
950
960
|
}
|
|
@@ -1031,21 +1041,24 @@
|
|
|
1031
1041
|
.ups-db .h-\[18px\] {
|
|
1032
1042
|
height: 18px;
|
|
1033
1043
|
}
|
|
1034
|
-
.ups-db .h-\[200px\] {
|
|
1035
|
-
height: 200px;
|
|
1036
|
-
}
|
|
1037
1044
|
.ups-db .h-\[20px\] {
|
|
1038
1045
|
height: 20px;
|
|
1039
1046
|
}
|
|
1040
1047
|
.ups-db .h-\[26px\] {
|
|
1041
1048
|
height: 26px;
|
|
1042
1049
|
}
|
|
1050
|
+
.ups-db .h-\[34px\] {
|
|
1051
|
+
height: 34px;
|
|
1052
|
+
}
|
|
1043
1053
|
.ups-db .h-\[3px\] {
|
|
1044
1054
|
height: 3px;
|
|
1045
1055
|
}
|
|
1046
1056
|
.ups-db .h-\[40px\] {
|
|
1047
1057
|
height: 40px;
|
|
1048
1058
|
}
|
|
1059
|
+
.ups-db .h-\[58px\] {
|
|
1060
|
+
height: 58px;
|
|
1061
|
+
}
|
|
1049
1062
|
.ups-db .h-\[var\(--radix-select-trigger-height\)\] {
|
|
1050
1063
|
height: var(--radix-select-trigger-height);
|
|
1051
1064
|
}
|
|
@@ -1055,14 +1068,17 @@
|
|
|
1055
1068
|
.ups-db .h-px {
|
|
1056
1069
|
height: 1px;
|
|
1057
1070
|
}
|
|
1071
|
+
.ups-db .max-h-40 {
|
|
1072
|
+
max-height: 10rem;
|
|
1073
|
+
}
|
|
1058
1074
|
.ups-db .max-h-\[200px\] {
|
|
1059
1075
|
max-height: 200px;
|
|
1060
1076
|
}
|
|
1061
1077
|
.ups-db .max-h-\[300px\] {
|
|
1062
1078
|
max-height: 300px;
|
|
1063
1079
|
}
|
|
1064
|
-
.ups-db .max-h-\[
|
|
1065
|
-
max-height:
|
|
1080
|
+
.ups-db .max-h-\[min\(var\(--radix-select-content-available-height\)\,20rem\)\] {
|
|
1081
|
+
max-height: min(var(--radix-select-content-available-height), 20rem);
|
|
1066
1082
|
}
|
|
1067
1083
|
.ups-db .max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
|
|
1068
1084
|
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
@@ -1073,12 +1089,12 @@
|
|
|
1073
1089
|
.ups-db .min-h-0 {
|
|
1074
1090
|
min-height: 0px;
|
|
1075
1091
|
}
|
|
1076
|
-
.ups-db .min-h-\[150px\] {
|
|
1077
|
-
min-height: 150px;
|
|
1078
|
-
}
|
|
1079
1092
|
.ups-db .min-h-\[20px\] {
|
|
1080
1093
|
min-height: 20px;
|
|
1081
1094
|
}
|
|
1095
|
+
.ups-db .min-h-\[500px\] {
|
|
1096
|
+
min-height: 500px;
|
|
1097
|
+
}
|
|
1082
1098
|
.ups-db .\!w-auto {
|
|
1083
1099
|
width: auto !important;
|
|
1084
1100
|
}
|
|
@@ -1130,6 +1146,9 @@
|
|
|
1130
1146
|
.ups-db .w-8 {
|
|
1131
1147
|
width: 2rem;
|
|
1132
1148
|
}
|
|
1149
|
+
.ups-db .w-9 {
|
|
1150
|
+
width: 2.25rem;
|
|
1151
|
+
}
|
|
1133
1152
|
.ups-db .w-96 {
|
|
1134
1153
|
width: 24rem;
|
|
1135
1154
|
}
|
|
@@ -1145,9 +1164,18 @@
|
|
|
1145
1164
|
.ups-db .w-\[300px\] {
|
|
1146
1165
|
width: 300px;
|
|
1147
1166
|
}
|
|
1167
|
+
.ups-db .w-\[340px\] {
|
|
1168
|
+
width: 340px;
|
|
1169
|
+
}
|
|
1170
|
+
.ups-db .w-\[34px\] {
|
|
1171
|
+
width: 34px;
|
|
1172
|
+
}
|
|
1148
1173
|
.ups-db .w-\[3px\] {
|
|
1149
1174
|
width: 3px;
|
|
1150
1175
|
}
|
|
1176
|
+
.ups-db .w-\[500px\] {
|
|
1177
|
+
width: 500px;
|
|
1178
|
+
}
|
|
1151
1179
|
.ups-db .w-auto {
|
|
1152
1180
|
width: auto;
|
|
1153
1181
|
}
|
|
@@ -1185,15 +1213,18 @@
|
|
|
1185
1213
|
.ups-db .max-w-32 {
|
|
1186
1214
|
max-width: 8rem;
|
|
1187
1215
|
}
|
|
1188
|
-
.ups-db .max-w-4xl {
|
|
1189
|
-
max-width: 56rem;
|
|
1190
|
-
}
|
|
1191
1216
|
.ups-db .max-w-\[370px\] {
|
|
1192
1217
|
max-width: 370px;
|
|
1193
1218
|
}
|
|
1194
1219
|
.ups-db .max-w-\[400px\] {
|
|
1195
1220
|
max-width: 400px;
|
|
1196
1221
|
}
|
|
1222
|
+
.ups-db .max-w-\[500px\] {
|
|
1223
|
+
max-width: 500px;
|
|
1224
|
+
}
|
|
1225
|
+
.ups-db .max-w-\[70\%\] {
|
|
1226
|
+
max-width: 70%;
|
|
1227
|
+
}
|
|
1197
1228
|
.ups-db .max-w-lg {
|
|
1198
1229
|
max-width: 32rem;
|
|
1199
1230
|
}
|
|
@@ -1242,6 +1273,10 @@
|
|
|
1242
1273
|
--tw-translate-y: -50%;
|
|
1243
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));
|
|
1244
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
|
+
}
|
|
1245
1280
|
.ups-db .transform {
|
|
1246
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));
|
|
1247
1282
|
}
|
|
@@ -1284,9 +1319,6 @@
|
|
|
1284
1319
|
.ups-db .resize-none {
|
|
1285
1320
|
resize: none;
|
|
1286
1321
|
}
|
|
1287
|
-
.ups-db .resize-y {
|
|
1288
|
-
resize: vertical;
|
|
1289
|
-
}
|
|
1290
1322
|
.ups-db .resize {
|
|
1291
1323
|
resize: both;
|
|
1292
1324
|
}
|
|
@@ -1295,8 +1327,11 @@
|
|
|
1295
1327
|
-moz-appearance: none;
|
|
1296
1328
|
appearance: none;
|
|
1297
1329
|
}
|
|
1298
|
-
.ups-db .grid-cols-
|
|
1299
|
-
grid-template-columns: repeat(
|
|
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;
|
|
1300
1335
|
}
|
|
1301
1336
|
.ups-db .flex-col {
|
|
1302
1337
|
flex-direction: column;
|
|
@@ -1340,6 +1375,12 @@
|
|
|
1340
1375
|
.ups-db .gap-4 {
|
|
1341
1376
|
gap: 1rem;
|
|
1342
1377
|
}
|
|
1378
|
+
.ups-db .gap-5 {
|
|
1379
|
+
gap: 1.25rem;
|
|
1380
|
+
}
|
|
1381
|
+
.ups-db .gap-6 {
|
|
1382
|
+
gap: 1.5rem;
|
|
1383
|
+
}
|
|
1343
1384
|
.ups-db .gap-8 {
|
|
1344
1385
|
gap: 2rem;
|
|
1345
1386
|
}
|
|
@@ -1386,15 +1427,15 @@
|
|
|
1386
1427
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1387
1428
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1388
1429
|
}
|
|
1430
|
+
.ups-db .overflow-auto {
|
|
1431
|
+
overflow: auto;
|
|
1432
|
+
}
|
|
1389
1433
|
.ups-db .overflow-hidden {
|
|
1390
1434
|
overflow: hidden;
|
|
1391
1435
|
}
|
|
1392
1436
|
.ups-db .overflow-visible {
|
|
1393
1437
|
overflow: visible;
|
|
1394
1438
|
}
|
|
1395
|
-
.ups-db .overflow-scroll {
|
|
1396
|
-
overflow: scroll;
|
|
1397
|
-
}
|
|
1398
1439
|
.ups-db .overflow-x-auto {
|
|
1399
1440
|
overflow-x: auto;
|
|
1400
1441
|
}
|
|
@@ -1404,6 +1445,9 @@
|
|
|
1404
1445
|
.ups-db .overflow-x-hidden {
|
|
1405
1446
|
overflow-x: hidden;
|
|
1406
1447
|
}
|
|
1448
|
+
.ups-db .overflow-x-scroll {
|
|
1449
|
+
overflow-x: scroll;
|
|
1450
|
+
}
|
|
1407
1451
|
.ups-db .truncate {
|
|
1408
1452
|
overflow: hidden;
|
|
1409
1453
|
text-overflow: ellipsis;
|
|
@@ -1421,6 +1465,12 @@
|
|
|
1421
1465
|
.ups-db .rounded {
|
|
1422
1466
|
border-radius: 0.25rem;
|
|
1423
1467
|
}
|
|
1468
|
+
.ups-db .rounded-2xl {
|
|
1469
|
+
border-radius: 1rem;
|
|
1470
|
+
}
|
|
1471
|
+
.ups-db .rounded-\[10px\] {
|
|
1472
|
+
border-radius: 10px;
|
|
1473
|
+
}
|
|
1424
1474
|
.ups-db .rounded-\[14px\] {
|
|
1425
1475
|
border-radius: 14px;
|
|
1426
1476
|
}
|
|
@@ -1473,6 +1523,10 @@
|
|
|
1473
1523
|
border-top-right-radius: 0px;
|
|
1474
1524
|
border-bottom-right-radius: 0px;
|
|
1475
1525
|
}
|
|
1526
|
+
.ups-db .rounded-t-\[10px\] {
|
|
1527
|
+
border-top-left-radius: 10px;
|
|
1528
|
+
border-top-right-radius: 10px;
|
|
1529
|
+
}
|
|
1476
1530
|
.ups-db .rounded-t-lg {
|
|
1477
1531
|
border-top-left-radius: 0.5rem;
|
|
1478
1532
|
border-top-right-radius: 0.5rem;
|
|
@@ -1555,6 +1609,10 @@
|
|
|
1555
1609
|
.ups-db .border-transparent {
|
|
1556
1610
|
border-color: transparent;
|
|
1557
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
|
+
}
|
|
1558
1616
|
.ups-db .border-zinc-200 {
|
|
1559
1617
|
--tw-border-opacity: 1;
|
|
1560
1618
|
border-color: rgb(var(--color-zinc-200) / var(--tw-border-opacity));
|
|
@@ -1677,6 +1735,10 @@
|
|
|
1677
1735
|
--tw-bg-opacity: 1;
|
|
1678
1736
|
background-color: rgb(var(--color-pink-200) / var(--tw-bg-opacity));
|
|
1679
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
|
+
}
|
|
1680
1742
|
.ups-db .bg-purple-200 {
|
|
1681
1743
|
--tw-bg-opacity: 1;
|
|
1682
1744
|
background-color: rgb(var(--color-purple-200) / var(--tw-bg-opacity));
|
|
@@ -1685,6 +1747,10 @@
|
|
|
1685
1747
|
--tw-bg-opacity: 1;
|
|
1686
1748
|
background-color: rgb(var(--color-purple-50) / var(--tw-bg-opacity));
|
|
1687
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
|
+
}
|
|
1688
1754
|
.ups-db .bg-red-50 {
|
|
1689
1755
|
--tw-bg-opacity: 1;
|
|
1690
1756
|
background-color: rgb(var(--color-red-50) / var(--tw-bg-opacity));
|
|
@@ -1708,8 +1774,9 @@
|
|
|
1708
1774
|
--tw-bg-opacity: 1;
|
|
1709
1775
|
background-color: rgb(var(--color-white) / var(--tw-bg-opacity));
|
|
1710
1776
|
}
|
|
1711
|
-
.ups-db .bg-
|
|
1712
|
-
|
|
1777
|
+
.ups-db .bg-yellow-50 {
|
|
1778
|
+
--tw-bg-opacity: 1;
|
|
1779
|
+
background-color: rgb(var(--color-yellow-50) / var(--tw-bg-opacity));
|
|
1713
1780
|
}
|
|
1714
1781
|
.ups-db .bg-zinc-100 {
|
|
1715
1782
|
--tw-bg-opacity: 1;
|
|
@@ -1782,6 +1849,10 @@
|
|
|
1782
1849
|
padding-left: 0.25rem;
|
|
1783
1850
|
padding-right: 0.25rem;
|
|
1784
1851
|
}
|
|
1852
|
+
.ups-db .px-1\.5 {
|
|
1853
|
+
padding-left: 0.375rem;
|
|
1854
|
+
padding-right: 0.375rem;
|
|
1855
|
+
}
|
|
1785
1856
|
.ups-db .px-2 {
|
|
1786
1857
|
padding-left: 0.5rem;
|
|
1787
1858
|
padding-right: 0.5rem;
|
|
@@ -1818,6 +1889,10 @@
|
|
|
1818
1889
|
padding-top: 0px;
|
|
1819
1890
|
padding-bottom: 0px;
|
|
1820
1891
|
}
|
|
1892
|
+
.ups-db .py-0\.5 {
|
|
1893
|
+
padding-top: 0.125rem;
|
|
1894
|
+
padding-bottom: 0.125rem;
|
|
1895
|
+
}
|
|
1821
1896
|
.ups-db .py-1 {
|
|
1822
1897
|
padding-top: 0.25rem;
|
|
1823
1898
|
padding-bottom: 0.25rem;
|
|
@@ -1854,8 +1929,9 @@
|
|
|
1854
1929
|
padding-top: 5px;
|
|
1855
1930
|
padding-bottom: 5px;
|
|
1856
1931
|
}
|
|
1857
|
-
.ups-db .
|
|
1858
|
-
padding-
|
|
1932
|
+
.ups-db .py-\[8px\] {
|
|
1933
|
+
padding-top: 8px;
|
|
1934
|
+
padding-bottom: 8px;
|
|
1859
1935
|
}
|
|
1860
1936
|
.ups-db .pb-5 {
|
|
1861
1937
|
padding-bottom: 1.25rem;
|
|
@@ -1896,6 +1972,9 @@
|
|
|
1896
1972
|
.ups-db .pr-8 {
|
|
1897
1973
|
padding-right: 2rem;
|
|
1898
1974
|
}
|
|
1975
|
+
.ups-db .pt-0\.5 {
|
|
1976
|
+
padding-top: 0.125rem;
|
|
1977
|
+
}
|
|
1899
1978
|
.ups-db .text-left {
|
|
1900
1979
|
text-align: left;
|
|
1901
1980
|
}
|
|
@@ -1916,12 +1995,20 @@
|
|
|
1916
1995
|
"Courier New",
|
|
1917
1996
|
monospace;
|
|
1918
1997
|
}
|
|
1998
|
+
.ups-db .\!text-sm {
|
|
1999
|
+
font-size: 0.875rem !important;
|
|
2000
|
+
line-height: 1.25rem !important;
|
|
2001
|
+
}
|
|
1919
2002
|
.ups-db .text-\[11px\] {
|
|
1920
2003
|
font-size: 11px;
|
|
1921
2004
|
}
|
|
1922
2005
|
.ups-db .text-\[13px\] {
|
|
1923
2006
|
font-size: 13px;
|
|
1924
2007
|
}
|
|
2008
|
+
.ups-db .text-base {
|
|
2009
|
+
font-size: 1rem;
|
|
2010
|
+
line-height: 1.5rem;
|
|
2011
|
+
}
|
|
1925
2012
|
.ups-db .text-lg {
|
|
1926
2013
|
font-size: 1.125rem;
|
|
1927
2014
|
line-height: 1.75rem;
|
|
@@ -1959,9 +2046,6 @@
|
|
|
1959
2046
|
.ups-db .leading-relaxed {
|
|
1960
2047
|
line-height: 1.625;
|
|
1961
2048
|
}
|
|
1962
|
-
.ups-db .tracking-tight {
|
|
1963
|
-
letter-spacing: -0.025em;
|
|
1964
|
-
}
|
|
1965
2049
|
.ups-db .tracking-wide {
|
|
1966
2050
|
letter-spacing: 0.025em;
|
|
1967
2051
|
}
|
|
@@ -1971,6 +2055,10 @@
|
|
|
1971
2055
|
.ups-db .tracking-widest {
|
|
1972
2056
|
letter-spacing: 0.1em;
|
|
1973
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
|
+
}
|
|
1974
2062
|
.ups-db .text-amber-800 {
|
|
1975
2063
|
--tw-text-opacity: 1;
|
|
1976
2064
|
color: rgb(var(--color-amber-800) / var(--tw-text-opacity));
|
|
@@ -2047,6 +2135,10 @@
|
|
|
2047
2135
|
--tw-text-opacity: 1;
|
|
2048
2136
|
color: rgb(var(--color-pink-900) / var(--tw-text-opacity));
|
|
2049
2137
|
}
|
|
2138
|
+
.ups-db .text-purple-700 {
|
|
2139
|
+
--tw-text-opacity: 1;
|
|
2140
|
+
color: rgb(var(--color-purple-700) / var(--tw-text-opacity));
|
|
2141
|
+
}
|
|
2050
2142
|
.ups-db .text-purple-800 {
|
|
2051
2143
|
--tw-text-opacity: 1;
|
|
2052
2144
|
color: rgb(var(--color-purple-800) / var(--tw-text-opacity));
|
|
@@ -2094,6 +2186,10 @@
|
|
|
2094
2186
|
--tw-text-opacity: 1;
|
|
2095
2187
|
color: rgb(var(--color-white) / var(--tw-text-opacity));
|
|
2096
2188
|
}
|
|
2189
|
+
.ups-db .text-yellow-800 {
|
|
2190
|
+
--tw-text-opacity: 1;
|
|
2191
|
+
color: rgb(var(--color-yellow-800) / var(--tw-text-opacity));
|
|
2192
|
+
}
|
|
2097
2193
|
.ups-db .text-zinc-300 {
|
|
2098
2194
|
--tw-text-opacity: 1;
|
|
2099
2195
|
color: rgb(var(--color-zinc-300) / var(--tw-text-opacity));
|
|
@@ -2157,9 +2253,6 @@
|
|
|
2157
2253
|
.ups-db .opacity-60 {
|
|
2158
2254
|
opacity: 0.6;
|
|
2159
2255
|
}
|
|
2160
|
-
.ups-db .opacity-70 {
|
|
2161
|
-
opacity: 0.7;
|
|
2162
|
-
}
|
|
2163
2256
|
.ups-db .opacity-90 {
|
|
2164
2257
|
opacity: 0.9;
|
|
2165
2258
|
}
|
|
@@ -2179,6 +2272,14 @@
|
|
|
2179
2272
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
2180
2273
|
var(--tw-shadow);
|
|
2181
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
|
+
}
|
|
2182
2283
|
.ups-db .shadow-lg {
|
|
2183
2284
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
2184
2285
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -2218,6 +2319,14 @@
|
|
|
2218
2319
|
var(--tw-ring-shadow),
|
|
2219
2320
|
var(--tw-shadow, 0 0 #0000) !important;
|
|
2220
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
|
+
}
|
|
2221
2330
|
.ups-db .ring-offset-white {
|
|
2222
2331
|
--tw-ring-offset-color: rgb(var(--color-white) / 1);
|
|
2223
2332
|
}
|
|
@@ -2330,12 +2439,33 @@
|
|
|
2330
2439
|
--tw-enter-translate-x: initial;
|
|
2331
2440
|
--tw-enter-translate-y: initial;
|
|
2332
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
|
+
}
|
|
2333
2454
|
.ups-db .fade-in-0 {
|
|
2334
2455
|
--tw-enter-opacity: 0;
|
|
2335
2456
|
}
|
|
2457
|
+
.ups-db .fade-out {
|
|
2458
|
+
--tw-exit-opacity: 0;
|
|
2459
|
+
}
|
|
2336
2460
|
.ups-db .zoom-in-95 {
|
|
2337
2461
|
--tw-enter-scale: .95;
|
|
2338
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
|
+
}
|
|
2339
2469
|
.ups-db .duration-100 {
|
|
2340
2470
|
animation-duration: 100ms;
|
|
2341
2471
|
}
|
|
@@ -2345,6 +2475,9 @@
|
|
|
2345
2475
|
.ups-db .ease-out {
|
|
2346
2476
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2347
2477
|
}
|
|
2478
|
+
.ups-db .fill-mode-forwards {
|
|
2479
|
+
animation-fill-mode: forwards;
|
|
2480
|
+
}
|
|
2348
2481
|
.ups-db .\[appearance\:textfield\] {
|
|
2349
2482
|
-webkit-appearance: textfield;
|
|
2350
2483
|
-moz-appearance: textfield;
|
|
@@ -2456,6 +2589,10 @@
|
|
|
2456
2589
|
--tw-text-opacity: 1;
|
|
2457
2590
|
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2458
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
|
+
}
|
|
2459
2596
|
.ups-db .hover\:bg-black\/10:hover {
|
|
2460
2597
|
background-color: rgb(var(--color-black) / 0.1);
|
|
2461
2598
|
}
|
|
@@ -2471,6 +2608,10 @@
|
|
|
2471
2608
|
--tw-bg-opacity: 1;
|
|
2472
2609
|
background-color: rgb(var(--color-emerald-700) / var(--tw-bg-opacity));
|
|
2473
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
|
+
}
|
|
2474
2615
|
.ups-db .hover\:bg-red-500\/90:hover {
|
|
2475
2616
|
background-color: rgb(var(--color-red-500) / 0.9);
|
|
2476
2617
|
}
|
|
@@ -2522,8 +2663,9 @@
|
|
|
2522
2663
|
.ups-db .hover\:underline:hover {
|
|
2523
2664
|
text-decoration-line: underline;
|
|
2524
2665
|
}
|
|
2525
|
-
.ups-db .
|
|
2526
|
-
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));
|
|
2527
2669
|
}
|
|
2528
2670
|
.ups-db .focus\:border-zinc-400:focus {
|
|
2529
2671
|
--tw-border-opacity: 1;
|
|
@@ -2560,21 +2702,14 @@
|
|
|
2560
2702
|
var(--tw-ring-shadow),
|
|
2561
2703
|
var(--tw-shadow, 0 0 #0000);
|
|
2562
2704
|
}
|
|
2563
|
-
.ups-db .focus\:ring-
|
|
2564
|
-
--tw-ring-
|
|
2565
|
-
--tw-ring-
|
|
2566
|
-
box-shadow:
|
|
2567
|
-
var(--tw-ring-offset-shadow),
|
|
2568
|
-
var(--tw-ring-shadow),
|
|
2569
|
-
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));
|
|
2570
2708
|
}
|
|
2571
2709
|
.ups-db .focus\:ring-zinc-950:focus {
|
|
2572
2710
|
--tw-ring-opacity: 1;
|
|
2573
2711
|
--tw-ring-color: rgb(var(--color-zinc-950) / var(--tw-ring-opacity));
|
|
2574
2712
|
}
|
|
2575
|
-
.ups-db .focus\:ring-offset-2:focus {
|
|
2576
|
-
--tw-ring-offset-width: 2px;
|
|
2577
|
-
}
|
|
2578
2713
|
.ups-db .focus-visible\:bg-zinc-50:focus-visible {
|
|
2579
2714
|
--tw-bg-opacity: 1;
|
|
2580
2715
|
background-color: rgb(var(--color-zinc-50) / var(--tw-bg-opacity));
|
|
@@ -2591,6 +2726,18 @@
|
|
|
2591
2726
|
var(--tw-ring-shadow),
|
|
2592
2727
|
var(--tw-shadow, 0 0 #0000);
|
|
2593
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
|
+
}
|
|
2594
2741
|
.ups-db .focus-visible\:ring-zinc-950:focus-visible {
|
|
2595
2742
|
--tw-ring-opacity: 1;
|
|
2596
2743
|
--tw-ring-color: rgb(var(--color-zinc-950) / var(--tw-ring-opacity));
|
|
@@ -2598,6 +2745,9 @@
|
|
|
2598
2745
|
.ups-db .focus-visible\:ring-offset-2:focus-visible {
|
|
2599
2746
|
--tw-ring-offset-width: 2px;
|
|
2600
2747
|
}
|
|
2748
|
+
.ups-db .focus-visible\:ring-offset-white:focus-visible {
|
|
2749
|
+
--tw-ring-offset-color: rgb(var(--color-white) / 1);
|
|
2750
|
+
}
|
|
2601
2751
|
.ups-db .disabled\:pointer-events-none:disabled {
|
|
2602
2752
|
pointer-events: none;
|
|
2603
2753
|
}
|
|
@@ -2607,6 +2757,10 @@
|
|
|
2607
2757
|
.ups-db .disabled\:opacity-50:disabled {
|
|
2608
2758
|
opacity: 0.5;
|
|
2609
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
|
+
}
|
|
2610
2764
|
.ups-db .group\/editor:hover .group-hover\/editor\:flex {
|
|
2611
2765
|
display: flex;
|
|
2612
2766
|
}
|
|
@@ -2695,6 +2849,14 @@
|
|
|
2695
2849
|
--tw-translate-y: -0.25rem;
|
|
2696
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));
|
|
2697
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
|
+
}
|
|
2698
2860
|
.ups-db .data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel] {
|
|
2699
2861
|
--tw-translate-x: 0px;
|
|
2700
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));
|
|
@@ -2711,18 +2873,22 @@
|
|
|
2711
2873
|
--tw-bg-opacity: 1;
|
|
2712
2874
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
2713
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
|
+
}
|
|
2714
2880
|
.ups-db .data-\[state\=open\]\:bg-zinc-100[data-state=open] {
|
|
2715
2881
|
--tw-bg-opacity: 1;
|
|
2716
2882
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
2717
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
|
+
}
|
|
2718
2888
|
.ups-db .data-\[selected\=true\]\:text-zinc-900[data-selected=true] {
|
|
2719
2889
|
--tw-text-opacity: 1;
|
|
2720
2890
|
color: rgb(var(--color-zinc-900) / var(--tw-text-opacity));
|
|
2721
2891
|
}
|
|
2722
|
-
.ups-db .data-\[state\=open\]\:text-zinc-500[data-state=open] {
|
|
2723
|
-
--tw-text-opacity: 1;
|
|
2724
|
-
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2725
|
-
}
|
|
2726
2892
|
.ups-db .data-\[state\=open\]\:text-zinc-900[data-state=open] {
|
|
2727
2893
|
--tw-text-opacity: 1;
|
|
2728
2894
|
color: rgb(var(--color-zinc-900) / var(--tw-text-opacity));
|
|
@@ -2816,6 +2982,10 @@
|
|
|
2816
2982
|
.ups-db .dark\:bg-neutral-50\/20:is(.dark *) {
|
|
2817
2983
|
background-color: rgb(250 250 250 / 0.2);
|
|
2818
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
|
+
}
|
|
2819
2989
|
.ups-db .dark\:bg-zinc-100:is(.dark *) {
|
|
2820
2990
|
--tw-bg-opacity: 1;
|
|
2821
2991
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
@@ -2828,6 +2998,9 @@
|
|
|
2828
2998
|
--tw-bg-opacity: 1;
|
|
2829
2999
|
background-color: rgb(var(--color-zinc-300) / var(--tw-bg-opacity));
|
|
2830
3000
|
}
|
|
3001
|
+
.ups-db .dark\:bg-zinc-50\/40:is(.dark *) {
|
|
3002
|
+
background-color: rgb(var(--color-zinc-50) / 0.4);
|
|
3003
|
+
}
|
|
2831
3004
|
.ups-db .dark\:text-red-400:is(.dark *) {
|
|
2832
3005
|
--tw-text-opacity: 1;
|
|
2833
3006
|
color: rgb(var(--color-red-400) / var(--tw-text-opacity));
|
|
@@ -2840,10 +3013,22 @@
|
|
|
2840
3013
|
--tw-bg-opacity: 1;
|
|
2841
3014
|
background-color: rgb(var(--color-zinc-200) / var(--tw-bg-opacity));
|
|
2842
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
|
+
}
|
|
2843
3031
|
@media (min-width: 640px) {
|
|
2844
|
-
.ups-db .sm\:\!mt-0 {
|
|
2845
|
-
margin-top: 0px !important;
|
|
2846
|
-
}
|
|
2847
3032
|
.ups-db .sm\:flex-row {
|
|
2848
3033
|
flex-direction: row;
|
|
2849
3034
|
}
|
|
@@ -2858,9 +3043,6 @@
|
|
|
2858
3043
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
2859
3044
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2860
3045
|
}
|
|
2861
|
-
.ups-db .sm\:rounded-lg {
|
|
2862
|
-
border-radius: 0.5rem;
|
|
2863
|
-
}
|
|
2864
3046
|
.ups-db .sm\:text-left {
|
|
2865
3047
|
text-align: left;
|
|
2866
3048
|
}
|
|
@@ -2876,6 +3058,11 @@
|
|
|
2876
3058
|
max-width: 420px;
|
|
2877
3059
|
}
|
|
2878
3060
|
}
|
|
3061
|
+
@media (min-width: 1024px) {
|
|
3062
|
+
.ups-db .lg\:grid-cols-4 {
|
|
3063
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3064
|
+
}
|
|
3065
|
+
}
|
|
2879
3066
|
.ups-db .\[\&\+div\]\:text-xs + div {
|
|
2880
3067
|
font-size: 0.75rem;
|
|
2881
3068
|
line-height: 1rem;
|