@upstash/react-redis-browser 0.2.14-rc.8 → 0.2.14
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/README.md +73 -6
- package/dist/index.css +271 -59
- package/dist/index.d.mts +48 -2
- package/dist/index.d.ts +48 -2
- package/dist/index.js +2343 -1214
- package/dist/index.mjs +2969 -1840
- 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
|
}
|
|
@@ -963,6 +973,9 @@
|
|
|
963
973
|
.ups-db .inline-block {
|
|
964
974
|
display: inline-block;
|
|
965
975
|
}
|
|
976
|
+
.ups-db .\!inline {
|
|
977
|
+
display: inline !important;
|
|
978
|
+
}
|
|
966
979
|
.ups-db .inline {
|
|
967
980
|
display: inline;
|
|
968
981
|
}
|
|
@@ -1031,21 +1044,24 @@
|
|
|
1031
1044
|
.ups-db .h-\[18px\] {
|
|
1032
1045
|
height: 18px;
|
|
1033
1046
|
}
|
|
1034
|
-
.ups-db .h-\[200px\] {
|
|
1035
|
-
height: 200px;
|
|
1036
|
-
}
|
|
1037
1047
|
.ups-db .h-\[20px\] {
|
|
1038
1048
|
height: 20px;
|
|
1039
1049
|
}
|
|
1040
1050
|
.ups-db .h-\[26px\] {
|
|
1041
1051
|
height: 26px;
|
|
1042
1052
|
}
|
|
1053
|
+
.ups-db .h-\[34px\] {
|
|
1054
|
+
height: 34px;
|
|
1055
|
+
}
|
|
1043
1056
|
.ups-db .h-\[3px\] {
|
|
1044
1057
|
height: 3px;
|
|
1045
1058
|
}
|
|
1046
1059
|
.ups-db .h-\[40px\] {
|
|
1047
1060
|
height: 40px;
|
|
1048
1061
|
}
|
|
1062
|
+
.ups-db .h-\[58px\] {
|
|
1063
|
+
height: 58px;
|
|
1064
|
+
}
|
|
1049
1065
|
.ups-db .h-\[var\(--radix-select-trigger-height\)\] {
|
|
1050
1066
|
height: var(--radix-select-trigger-height);
|
|
1051
1067
|
}
|
|
@@ -1055,14 +1071,17 @@
|
|
|
1055
1071
|
.ups-db .h-px {
|
|
1056
1072
|
height: 1px;
|
|
1057
1073
|
}
|
|
1074
|
+
.ups-db .max-h-40 {
|
|
1075
|
+
max-height: 10rem;
|
|
1076
|
+
}
|
|
1058
1077
|
.ups-db .max-h-\[200px\] {
|
|
1059
1078
|
max-height: 200px;
|
|
1060
1079
|
}
|
|
1061
1080
|
.ups-db .max-h-\[300px\] {
|
|
1062
1081
|
max-height: 300px;
|
|
1063
1082
|
}
|
|
1064
|
-
.ups-db .max-h-\[
|
|
1065
|
-
max-height:
|
|
1083
|
+
.ups-db .max-h-\[min\(var\(--radix-select-content-available-height\)\,20rem\)\] {
|
|
1084
|
+
max-height: min(var(--radix-select-content-available-height), 20rem);
|
|
1066
1085
|
}
|
|
1067
1086
|
.ups-db .max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
|
|
1068
1087
|
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
@@ -1073,12 +1092,12 @@
|
|
|
1073
1092
|
.ups-db .min-h-0 {
|
|
1074
1093
|
min-height: 0px;
|
|
1075
1094
|
}
|
|
1076
|
-
.ups-db .min-h-\[150px\] {
|
|
1077
|
-
min-height: 150px;
|
|
1078
|
-
}
|
|
1079
1095
|
.ups-db .min-h-\[20px\] {
|
|
1080
1096
|
min-height: 20px;
|
|
1081
1097
|
}
|
|
1098
|
+
.ups-db .min-h-\[500px\] {
|
|
1099
|
+
min-height: 500px;
|
|
1100
|
+
}
|
|
1082
1101
|
.ups-db .\!w-auto {
|
|
1083
1102
|
width: auto !important;
|
|
1084
1103
|
}
|
|
@@ -1130,6 +1149,9 @@
|
|
|
1130
1149
|
.ups-db .w-8 {
|
|
1131
1150
|
width: 2rem;
|
|
1132
1151
|
}
|
|
1152
|
+
.ups-db .w-9 {
|
|
1153
|
+
width: 2.25rem;
|
|
1154
|
+
}
|
|
1133
1155
|
.ups-db .w-96 {
|
|
1134
1156
|
width: 24rem;
|
|
1135
1157
|
}
|
|
@@ -1145,9 +1167,21 @@
|
|
|
1145
1167
|
.ups-db .w-\[300px\] {
|
|
1146
1168
|
width: 300px;
|
|
1147
1169
|
}
|
|
1170
|
+
.ups-db .w-\[340px\] {
|
|
1171
|
+
width: 340px;
|
|
1172
|
+
}
|
|
1173
|
+
.ups-db .w-\[34px\] {
|
|
1174
|
+
width: 34px;
|
|
1175
|
+
}
|
|
1176
|
+
.ups-db .w-\[350px\] {
|
|
1177
|
+
width: 350px;
|
|
1178
|
+
}
|
|
1148
1179
|
.ups-db .w-\[3px\] {
|
|
1149
1180
|
width: 3px;
|
|
1150
1181
|
}
|
|
1182
|
+
.ups-db .w-\[500px\] {
|
|
1183
|
+
width: 500px;
|
|
1184
|
+
}
|
|
1151
1185
|
.ups-db .w-auto {
|
|
1152
1186
|
width: auto;
|
|
1153
1187
|
}
|
|
@@ -1158,6 +1192,10 @@
|
|
|
1158
1192
|
.ups-db .w-full {
|
|
1159
1193
|
width: 100%;
|
|
1160
1194
|
}
|
|
1195
|
+
.ups-db .w-max {
|
|
1196
|
+
width: -moz-max-content;
|
|
1197
|
+
width: max-content;
|
|
1198
|
+
}
|
|
1161
1199
|
.ups-db .min-w-0 {
|
|
1162
1200
|
min-width: 0px;
|
|
1163
1201
|
}
|
|
@@ -1191,6 +1229,12 @@
|
|
|
1191
1229
|
.ups-db .max-w-\[400px\] {
|
|
1192
1230
|
max-width: 400px;
|
|
1193
1231
|
}
|
|
1232
|
+
.ups-db .max-w-\[500px\] {
|
|
1233
|
+
max-width: 500px;
|
|
1234
|
+
}
|
|
1235
|
+
.ups-db .max-w-\[70\%\] {
|
|
1236
|
+
max-width: 70%;
|
|
1237
|
+
}
|
|
1194
1238
|
.ups-db .max-w-lg {
|
|
1195
1239
|
max-width: 32rem;
|
|
1196
1240
|
}
|
|
@@ -1239,6 +1283,10 @@
|
|
|
1239
1283
|
--tw-translate-y: -50%;
|
|
1240
1284
|
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));
|
|
1241
1285
|
}
|
|
1286
|
+
.ups-db .rotate-90 {
|
|
1287
|
+
--tw-rotate: 90deg;
|
|
1288
|
+
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));
|
|
1289
|
+
}
|
|
1242
1290
|
.ups-db .transform {
|
|
1243
1291
|
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
1292
|
}
|
|
@@ -1281,9 +1329,6 @@
|
|
|
1281
1329
|
.ups-db .resize-none {
|
|
1282
1330
|
resize: none;
|
|
1283
1331
|
}
|
|
1284
|
-
.ups-db .resize-y {
|
|
1285
|
-
resize: vertical;
|
|
1286
|
-
}
|
|
1287
1332
|
.ups-db .resize {
|
|
1288
1333
|
resize: both;
|
|
1289
1334
|
}
|
|
@@ -1292,8 +1337,11 @@
|
|
|
1292
1337
|
-moz-appearance: none;
|
|
1293
1338
|
appearance: none;
|
|
1294
1339
|
}
|
|
1295
|
-
.ups-db .grid-cols-
|
|
1296
|
-
grid-template-columns: repeat(
|
|
1340
|
+
.ups-db .grid-cols-2 {
|
|
1341
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1342
|
+
}
|
|
1343
|
+
.ups-db .flex-row {
|
|
1344
|
+
flex-direction: row;
|
|
1297
1345
|
}
|
|
1298
1346
|
.ups-db .flex-col {
|
|
1299
1347
|
flex-direction: column;
|
|
@@ -1337,6 +1385,12 @@
|
|
|
1337
1385
|
.ups-db .gap-4 {
|
|
1338
1386
|
gap: 1rem;
|
|
1339
1387
|
}
|
|
1388
|
+
.ups-db .gap-5 {
|
|
1389
|
+
gap: 1.25rem;
|
|
1390
|
+
}
|
|
1391
|
+
.ups-db .gap-6 {
|
|
1392
|
+
gap: 1.5rem;
|
|
1393
|
+
}
|
|
1340
1394
|
.ups-db .gap-8 {
|
|
1341
1395
|
gap: 2rem;
|
|
1342
1396
|
}
|
|
@@ -1383,14 +1437,14 @@
|
|
|
1383
1437
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1384
1438
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1385
1439
|
}
|
|
1440
|
+
.ups-db .overflow-auto {
|
|
1441
|
+
overflow: auto;
|
|
1442
|
+
}
|
|
1386
1443
|
.ups-db .overflow-hidden {
|
|
1387
1444
|
overflow: hidden;
|
|
1388
1445
|
}
|
|
1389
|
-
.ups-db
|
|
1390
|
-
overflow: visible;
|
|
1391
|
-
}
|
|
1392
|
-
.ups-db .overflow-scroll {
|
|
1393
|
-
overflow: scroll;
|
|
1446
|
+
.ups-db .\!overflow-visible {
|
|
1447
|
+
overflow: visible !important;
|
|
1394
1448
|
}
|
|
1395
1449
|
.ups-db .overflow-x-auto {
|
|
1396
1450
|
overflow-x: auto;
|
|
@@ -1418,6 +1472,12 @@
|
|
|
1418
1472
|
.ups-db .rounded {
|
|
1419
1473
|
border-radius: 0.25rem;
|
|
1420
1474
|
}
|
|
1475
|
+
.ups-db .rounded-2xl {
|
|
1476
|
+
border-radius: 1rem;
|
|
1477
|
+
}
|
|
1478
|
+
.ups-db .rounded-\[10px\] {
|
|
1479
|
+
border-radius: 10px;
|
|
1480
|
+
}
|
|
1421
1481
|
.ups-db .rounded-\[14px\] {
|
|
1422
1482
|
border-radius: 14px;
|
|
1423
1483
|
}
|
|
@@ -1470,6 +1530,10 @@
|
|
|
1470
1530
|
border-top-right-radius: 0px;
|
|
1471
1531
|
border-bottom-right-radius: 0px;
|
|
1472
1532
|
}
|
|
1533
|
+
.ups-db .rounded-t-\[10px\] {
|
|
1534
|
+
border-top-left-radius: 10px;
|
|
1535
|
+
border-top-right-radius: 10px;
|
|
1536
|
+
}
|
|
1473
1537
|
.ups-db .rounded-t-lg {
|
|
1474
1538
|
border-top-left-radius: 0.5rem;
|
|
1475
1539
|
border-top-right-radius: 0.5rem;
|
|
@@ -1552,6 +1616,10 @@
|
|
|
1552
1616
|
.ups-db .border-transparent {
|
|
1553
1617
|
border-color: transparent;
|
|
1554
1618
|
}
|
|
1619
|
+
.ups-db .border-yellow-300 {
|
|
1620
|
+
--tw-border-opacity: 1;
|
|
1621
|
+
border-color: rgb(var(--color-yellow-300) / var(--tw-border-opacity));
|
|
1622
|
+
}
|
|
1555
1623
|
.ups-db .border-zinc-200 {
|
|
1556
1624
|
--tw-border-opacity: 1;
|
|
1557
1625
|
border-color: rgb(var(--color-zinc-200) / var(--tw-border-opacity));
|
|
@@ -1639,6 +1707,10 @@
|
|
|
1639
1707
|
--tw-bg-opacity: 1;
|
|
1640
1708
|
background-color: rgb(var(--color-emerald-500) / var(--tw-bg-opacity));
|
|
1641
1709
|
}
|
|
1710
|
+
.ups-db .bg-emerald-600 {
|
|
1711
|
+
--tw-bg-opacity: 1;
|
|
1712
|
+
background-color: rgb(var(--color-emerald-600) / var(--tw-bg-opacity));
|
|
1713
|
+
}
|
|
1642
1714
|
.ups-db .bg-emerald-800 {
|
|
1643
1715
|
--tw-bg-opacity: 1;
|
|
1644
1716
|
background-color: rgb(var(--color-emerald-800) / var(--tw-bg-opacity));
|
|
@@ -1670,6 +1742,10 @@
|
|
|
1670
1742
|
--tw-bg-opacity: 1;
|
|
1671
1743
|
background-color: rgb(var(--color-pink-200) / var(--tw-bg-opacity));
|
|
1672
1744
|
}
|
|
1745
|
+
.ups-db .bg-purple-100 {
|
|
1746
|
+
--tw-bg-opacity: 1;
|
|
1747
|
+
background-color: rgb(var(--color-purple-100) / var(--tw-bg-opacity));
|
|
1748
|
+
}
|
|
1673
1749
|
.ups-db .bg-purple-200 {
|
|
1674
1750
|
--tw-bg-opacity: 1;
|
|
1675
1751
|
background-color: rgb(var(--color-purple-200) / var(--tw-bg-opacity));
|
|
@@ -1678,6 +1754,10 @@
|
|
|
1678
1754
|
--tw-bg-opacity: 1;
|
|
1679
1755
|
background-color: rgb(var(--color-purple-50) / var(--tw-bg-opacity));
|
|
1680
1756
|
}
|
|
1757
|
+
.ups-db .bg-purple-500 {
|
|
1758
|
+
--tw-bg-opacity: 1;
|
|
1759
|
+
background-color: rgb(var(--color-purple-500) / var(--tw-bg-opacity));
|
|
1760
|
+
}
|
|
1681
1761
|
.ups-db .bg-red-50 {
|
|
1682
1762
|
--tw-bg-opacity: 1;
|
|
1683
1763
|
background-color: rgb(var(--color-red-50) / var(--tw-bg-opacity));
|
|
@@ -1701,8 +1781,9 @@
|
|
|
1701
1781
|
--tw-bg-opacity: 1;
|
|
1702
1782
|
background-color: rgb(var(--color-white) / var(--tw-bg-opacity));
|
|
1703
1783
|
}
|
|
1704
|
-
.ups-db .bg-
|
|
1705
|
-
|
|
1784
|
+
.ups-db .bg-yellow-50 {
|
|
1785
|
+
--tw-bg-opacity: 1;
|
|
1786
|
+
background-color: rgb(var(--color-yellow-50) / var(--tw-bg-opacity));
|
|
1706
1787
|
}
|
|
1707
1788
|
.ups-db .bg-zinc-100 {
|
|
1708
1789
|
--tw-bg-opacity: 1;
|
|
@@ -1775,6 +1856,10 @@
|
|
|
1775
1856
|
padding-left: 0.25rem;
|
|
1776
1857
|
padding-right: 0.25rem;
|
|
1777
1858
|
}
|
|
1859
|
+
.ups-db .px-1\.5 {
|
|
1860
|
+
padding-left: 0.375rem;
|
|
1861
|
+
padding-right: 0.375rem;
|
|
1862
|
+
}
|
|
1778
1863
|
.ups-db .px-2 {
|
|
1779
1864
|
padding-left: 0.5rem;
|
|
1780
1865
|
padding-right: 0.5rem;
|
|
@@ -1811,6 +1896,10 @@
|
|
|
1811
1896
|
padding-top: 0px;
|
|
1812
1897
|
padding-bottom: 0px;
|
|
1813
1898
|
}
|
|
1899
|
+
.ups-db .py-0\.5 {
|
|
1900
|
+
padding-top: 0.125rem;
|
|
1901
|
+
padding-bottom: 0.125rem;
|
|
1902
|
+
}
|
|
1814
1903
|
.ups-db .py-1 {
|
|
1815
1904
|
padding-top: 0.25rem;
|
|
1816
1905
|
padding-bottom: 0.25rem;
|
|
@@ -1847,6 +1936,13 @@
|
|
|
1847
1936
|
padding-top: 5px;
|
|
1848
1937
|
padding-bottom: 5px;
|
|
1849
1938
|
}
|
|
1939
|
+
.ups-db .py-\[8px\] {
|
|
1940
|
+
padding-top: 8px;
|
|
1941
|
+
padding-bottom: 8px;
|
|
1942
|
+
}
|
|
1943
|
+
.ups-db .pb-2 {
|
|
1944
|
+
padding-bottom: 0.5rem;
|
|
1945
|
+
}
|
|
1850
1946
|
.ups-db .pb-5 {
|
|
1851
1947
|
padding-bottom: 1.25rem;
|
|
1852
1948
|
}
|
|
@@ -1886,6 +1982,9 @@
|
|
|
1886
1982
|
.ups-db .pr-8 {
|
|
1887
1983
|
padding-right: 2rem;
|
|
1888
1984
|
}
|
|
1985
|
+
.ups-db .pt-1 {
|
|
1986
|
+
padding-top: 0.25rem;
|
|
1987
|
+
}
|
|
1889
1988
|
.ups-db .text-left {
|
|
1890
1989
|
text-align: left;
|
|
1891
1990
|
}
|
|
@@ -1906,12 +2005,20 @@
|
|
|
1906
2005
|
"Courier New",
|
|
1907
2006
|
monospace;
|
|
1908
2007
|
}
|
|
2008
|
+
.ups-db .\!text-sm {
|
|
2009
|
+
font-size: 0.875rem !important;
|
|
2010
|
+
line-height: 1.25rem !important;
|
|
2011
|
+
}
|
|
1909
2012
|
.ups-db .text-\[11px\] {
|
|
1910
2013
|
font-size: 11px;
|
|
1911
2014
|
}
|
|
1912
2015
|
.ups-db .text-\[13px\] {
|
|
1913
2016
|
font-size: 13px;
|
|
1914
2017
|
}
|
|
2018
|
+
.ups-db .text-base {
|
|
2019
|
+
font-size: 1rem;
|
|
2020
|
+
line-height: 1.5rem;
|
|
2021
|
+
}
|
|
1915
2022
|
.ups-db .text-lg {
|
|
1916
2023
|
font-size: 1.125rem;
|
|
1917
2024
|
line-height: 1.75rem;
|
|
@@ -1949,9 +2056,6 @@
|
|
|
1949
2056
|
.ups-db .leading-relaxed {
|
|
1950
2057
|
line-height: 1.625;
|
|
1951
2058
|
}
|
|
1952
|
-
.ups-db .tracking-tight {
|
|
1953
|
-
letter-spacing: -0.025em;
|
|
1954
|
-
}
|
|
1955
2059
|
.ups-db .tracking-wide {
|
|
1956
2060
|
letter-spacing: 0.025em;
|
|
1957
2061
|
}
|
|
@@ -1961,6 +2065,10 @@
|
|
|
1961
2065
|
.ups-db .tracking-widest {
|
|
1962
2066
|
letter-spacing: 0.1em;
|
|
1963
2067
|
}
|
|
2068
|
+
.ups-db .\!text-yellow-800 {
|
|
2069
|
+
--tw-text-opacity: 1 !important;
|
|
2070
|
+
color: rgb(var(--color-yellow-800) / var(--tw-text-opacity)) !important;
|
|
2071
|
+
}
|
|
1964
2072
|
.ups-db .text-amber-800 {
|
|
1965
2073
|
--tw-text-opacity: 1;
|
|
1966
2074
|
color: rgb(var(--color-amber-800) / var(--tw-text-opacity));
|
|
@@ -2037,6 +2145,10 @@
|
|
|
2037
2145
|
--tw-text-opacity: 1;
|
|
2038
2146
|
color: rgb(var(--color-pink-900) / var(--tw-text-opacity));
|
|
2039
2147
|
}
|
|
2148
|
+
.ups-db .text-purple-700 {
|
|
2149
|
+
--tw-text-opacity: 1;
|
|
2150
|
+
color: rgb(var(--color-purple-700) / var(--tw-text-opacity));
|
|
2151
|
+
}
|
|
2040
2152
|
.ups-db .text-purple-800 {
|
|
2041
2153
|
--tw-text-opacity: 1;
|
|
2042
2154
|
color: rgb(var(--color-purple-800) / var(--tw-text-opacity));
|
|
@@ -2084,6 +2196,10 @@
|
|
|
2084
2196
|
--tw-text-opacity: 1;
|
|
2085
2197
|
color: rgb(var(--color-white) / var(--tw-text-opacity));
|
|
2086
2198
|
}
|
|
2199
|
+
.ups-db .text-yellow-800 {
|
|
2200
|
+
--tw-text-opacity: 1;
|
|
2201
|
+
color: rgb(var(--color-yellow-800) / var(--tw-text-opacity));
|
|
2202
|
+
}
|
|
2087
2203
|
.ups-db .text-zinc-300 {
|
|
2088
2204
|
--tw-text-opacity: 1;
|
|
2089
2205
|
color: rgb(var(--color-zinc-300) / var(--tw-text-opacity));
|
|
@@ -2147,9 +2263,6 @@
|
|
|
2147
2263
|
.ups-db .opacity-60 {
|
|
2148
2264
|
opacity: 0.6;
|
|
2149
2265
|
}
|
|
2150
|
-
.ups-db .opacity-70 {
|
|
2151
|
-
opacity: 0.7;
|
|
2152
|
-
}
|
|
2153
2266
|
.ups-db .opacity-90 {
|
|
2154
2267
|
opacity: 0.9;
|
|
2155
2268
|
}
|
|
@@ -2169,6 +2282,14 @@
|
|
|
2169
2282
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
2170
2283
|
var(--tw-shadow);
|
|
2171
2284
|
}
|
|
2285
|
+
.ups-db .shadow-\[0_1px_1px_rgba\(0\,0\,0\,0\.05\)\] {
|
|
2286
|
+
--tw-shadow: 0 1px 1px rgba(0,0,0,0.05);
|
|
2287
|
+
--tw-shadow-colored: 0 1px 1px var(--tw-shadow-color);
|
|
2288
|
+
box-shadow:
|
|
2289
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
2290
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
2291
|
+
var(--tw-shadow);
|
|
2292
|
+
}
|
|
2172
2293
|
.ups-db .shadow-lg {
|
|
2173
2294
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
2174
2295
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -2208,6 +2329,14 @@
|
|
|
2208
2329
|
var(--tw-ring-shadow),
|
|
2209
2330
|
var(--tw-shadow, 0 0 #0000) !important;
|
|
2210
2331
|
}
|
|
2332
|
+
.ups-db .ring-0 {
|
|
2333
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2334
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2335
|
+
box-shadow:
|
|
2336
|
+
var(--tw-ring-offset-shadow),
|
|
2337
|
+
var(--tw-ring-shadow),
|
|
2338
|
+
var(--tw-shadow, 0 0 #0000);
|
|
2339
|
+
}
|
|
2211
2340
|
.ups-db .ring-offset-white {
|
|
2212
2341
|
--tw-ring-offset-color: rgb(var(--color-white) / 1);
|
|
2213
2342
|
}
|
|
@@ -2320,12 +2449,33 @@
|
|
|
2320
2449
|
--tw-enter-translate-x: initial;
|
|
2321
2450
|
--tw-enter-translate-y: initial;
|
|
2322
2451
|
}
|
|
2452
|
+
.ups-db .animate-out {
|
|
2453
|
+
animation-name: exit;
|
|
2454
|
+
animation-duration: 150ms;
|
|
2455
|
+
--tw-exit-opacity: initial;
|
|
2456
|
+
--tw-exit-scale: initial;
|
|
2457
|
+
--tw-exit-rotate: initial;
|
|
2458
|
+
--tw-exit-translate-x: initial;
|
|
2459
|
+
--tw-exit-translate-y: initial;
|
|
2460
|
+
}
|
|
2461
|
+
.ups-db .fade-in {
|
|
2462
|
+
--tw-enter-opacity: 0;
|
|
2463
|
+
}
|
|
2323
2464
|
.ups-db .fade-in-0 {
|
|
2324
2465
|
--tw-enter-opacity: 0;
|
|
2325
2466
|
}
|
|
2467
|
+
.ups-db .fade-out {
|
|
2468
|
+
--tw-exit-opacity: 0;
|
|
2469
|
+
}
|
|
2326
2470
|
.ups-db .zoom-in-95 {
|
|
2327
2471
|
--tw-enter-scale: .95;
|
|
2328
2472
|
}
|
|
2473
|
+
.ups-db .slide-in-from-bottom-1 {
|
|
2474
|
+
--tw-enter-translate-y: 0.25rem;
|
|
2475
|
+
}
|
|
2476
|
+
.ups-db .slide-out-to-bottom-1 {
|
|
2477
|
+
--tw-exit-translate-y: 0.25rem;
|
|
2478
|
+
}
|
|
2329
2479
|
.ups-db .duration-100 {
|
|
2330
2480
|
animation-duration: 100ms;
|
|
2331
2481
|
}
|
|
@@ -2335,6 +2485,14 @@
|
|
|
2335
2485
|
.ups-db .ease-out {
|
|
2336
2486
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2337
2487
|
}
|
|
2488
|
+
.ups-db .fill-mode-forwards {
|
|
2489
|
+
animation-fill-mode: forwards;
|
|
2490
|
+
}
|
|
2491
|
+
.ups-db .\[appearance\:textfield\] {
|
|
2492
|
+
-webkit-appearance: textfield;
|
|
2493
|
+
-moz-appearance: textfield;
|
|
2494
|
+
appearance: textfield;
|
|
2495
|
+
}
|
|
2338
2496
|
.ups-db .tabs-shadow-left {
|
|
2339
2497
|
background:
|
|
2340
2498
|
linear-gradient(
|
|
@@ -2441,6 +2599,10 @@
|
|
|
2441
2599
|
--tw-text-opacity: 1;
|
|
2442
2600
|
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2443
2601
|
}
|
|
2602
|
+
.ups-db .hover\:border-zinc-400:hover {
|
|
2603
|
+
--tw-border-opacity: 1;
|
|
2604
|
+
border-color: rgb(var(--color-zinc-400) / var(--tw-border-opacity));
|
|
2605
|
+
}
|
|
2444
2606
|
.ups-db .hover\:bg-black\/10:hover {
|
|
2445
2607
|
background-color: rgb(var(--color-black) / 0.1);
|
|
2446
2608
|
}
|
|
@@ -2452,6 +2614,14 @@
|
|
|
2452
2614
|
--tw-bg-opacity: 1;
|
|
2453
2615
|
background-color: rgb(var(--color-emerald-600) / var(--tw-bg-opacity));
|
|
2454
2616
|
}
|
|
2617
|
+
.ups-db .hover\:bg-emerald-700:hover {
|
|
2618
|
+
--tw-bg-opacity: 1;
|
|
2619
|
+
background-color: rgb(var(--color-emerald-700) / var(--tw-bg-opacity));
|
|
2620
|
+
}
|
|
2621
|
+
.ups-db .hover\:bg-purple-600:hover {
|
|
2622
|
+
--tw-bg-opacity: 1;
|
|
2623
|
+
background-color: rgb(var(--color-purple-600) / var(--tw-bg-opacity));
|
|
2624
|
+
}
|
|
2455
2625
|
.ups-db .hover\:bg-red-500\/90:hover {
|
|
2456
2626
|
background-color: rgb(var(--color-red-500) / 0.9);
|
|
2457
2627
|
}
|
|
@@ -2476,10 +2646,6 @@
|
|
|
2476
2646
|
--tw-bg-opacity: 1;
|
|
2477
2647
|
background-color: rgb(var(--color-zinc-50) / var(--tw-bg-opacity));
|
|
2478
2648
|
}
|
|
2479
|
-
.ups-db .hover\:bg-zinc-800:hover {
|
|
2480
|
-
--tw-bg-opacity: 1;
|
|
2481
|
-
background-color: rgb(var(--color-zinc-800) / var(--tw-bg-opacity));
|
|
2482
|
-
}
|
|
2483
2649
|
.ups-db .hover\:text-red-500:hover {
|
|
2484
2650
|
--tw-text-opacity: 1;
|
|
2485
2651
|
color: rgb(var(--color-red-500) / var(--tw-text-opacity));
|
|
@@ -2507,8 +2673,9 @@
|
|
|
2507
2673
|
.ups-db .hover\:underline:hover {
|
|
2508
2674
|
text-decoration-line: underline;
|
|
2509
2675
|
}
|
|
2510
|
-
.ups-db .
|
|
2511
|
-
opacity: 1;
|
|
2676
|
+
.ups-db .focus\:border-purple-500:focus {
|
|
2677
|
+
--tw-border-opacity: 1;
|
|
2678
|
+
border-color: rgb(var(--color-purple-500) / var(--tw-border-opacity));
|
|
2512
2679
|
}
|
|
2513
2680
|
.ups-db .focus\:border-zinc-400:focus {
|
|
2514
2681
|
--tw-border-opacity: 1;
|
|
@@ -2545,21 +2712,14 @@
|
|
|
2545
2712
|
var(--tw-ring-shadow),
|
|
2546
2713
|
var(--tw-shadow, 0 0 #0000);
|
|
2547
2714
|
}
|
|
2548
|
-
.ups-db .focus\:ring-
|
|
2549
|
-
--tw-ring-
|
|
2550
|
-
--tw-ring-
|
|
2551
|
-
box-shadow:
|
|
2552
|
-
var(--tw-ring-offset-shadow),
|
|
2553
|
-
var(--tw-ring-shadow),
|
|
2554
|
-
var(--tw-shadow, 0 0 #0000);
|
|
2715
|
+
.ups-db .focus\:ring-purple-500:focus {
|
|
2716
|
+
--tw-ring-opacity: 1;
|
|
2717
|
+
--tw-ring-color: rgb(var(--color-purple-500) / var(--tw-ring-opacity));
|
|
2555
2718
|
}
|
|
2556
2719
|
.ups-db .focus\:ring-zinc-950:focus {
|
|
2557
2720
|
--tw-ring-opacity: 1;
|
|
2558
2721
|
--tw-ring-color: rgb(var(--color-zinc-950) / var(--tw-ring-opacity));
|
|
2559
2722
|
}
|
|
2560
|
-
.ups-db .focus\:ring-offset-2:focus {
|
|
2561
|
-
--tw-ring-offset-width: 2px;
|
|
2562
|
-
}
|
|
2563
2723
|
.ups-db .focus-visible\:bg-zinc-50:focus-visible {
|
|
2564
2724
|
--tw-bg-opacity: 1;
|
|
2565
2725
|
background-color: rgb(var(--color-zinc-50) / var(--tw-bg-opacity));
|
|
@@ -2576,6 +2736,18 @@
|
|
|
2576
2736
|
var(--tw-ring-shadow),
|
|
2577
2737
|
var(--tw-shadow, 0 0 #0000);
|
|
2578
2738
|
}
|
|
2739
|
+
.ups-db .focus-visible\:ring-2:focus-visible {
|
|
2740
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2741
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2742
|
+
box-shadow:
|
|
2743
|
+
var(--tw-ring-offset-shadow),
|
|
2744
|
+
var(--tw-ring-shadow),
|
|
2745
|
+
var(--tw-shadow, 0 0 #0000);
|
|
2746
|
+
}
|
|
2747
|
+
.ups-db .focus-visible\:ring-neutral-950:focus-visible {
|
|
2748
|
+
--tw-ring-opacity: 1;
|
|
2749
|
+
--tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity));
|
|
2750
|
+
}
|
|
2579
2751
|
.ups-db .focus-visible\:ring-zinc-950:focus-visible {
|
|
2580
2752
|
--tw-ring-opacity: 1;
|
|
2581
2753
|
--tw-ring-color: rgb(var(--color-zinc-950) / var(--tw-ring-opacity));
|
|
@@ -2583,6 +2755,9 @@
|
|
|
2583
2755
|
.ups-db .focus-visible\:ring-offset-2:focus-visible {
|
|
2584
2756
|
--tw-ring-offset-width: 2px;
|
|
2585
2757
|
}
|
|
2758
|
+
.ups-db .focus-visible\:ring-offset-white:focus-visible {
|
|
2759
|
+
--tw-ring-offset-color: rgb(var(--color-white) / 1);
|
|
2760
|
+
}
|
|
2586
2761
|
.ups-db .disabled\:pointer-events-none:disabled {
|
|
2587
2762
|
pointer-events: none;
|
|
2588
2763
|
}
|
|
@@ -2592,6 +2767,10 @@
|
|
|
2592
2767
|
.ups-db .disabled\:opacity-50:disabled {
|
|
2593
2768
|
opacity: 0.5;
|
|
2594
2769
|
}
|
|
2770
|
+
.ups-db .disabled\:hover\:bg-purple-500:hover:disabled {
|
|
2771
|
+
--tw-bg-opacity: 1;
|
|
2772
|
+
background-color: rgb(var(--color-purple-500) / var(--tw-bg-opacity));
|
|
2773
|
+
}
|
|
2595
2774
|
.ups-db .group\/editor:hover .group-hover\/editor\:flex {
|
|
2596
2775
|
display: flex;
|
|
2597
2776
|
}
|
|
@@ -2680,6 +2859,14 @@
|
|
|
2680
2859
|
--tw-translate-y: -0.25rem;
|
|
2681
2860
|
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));
|
|
2682
2861
|
}
|
|
2862
|
+
.ups-db .data-\[state\=checked\]\:translate-x-4[data-state=checked] {
|
|
2863
|
+
--tw-translate-x: 1rem;
|
|
2864
|
+
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));
|
|
2865
|
+
}
|
|
2866
|
+
.ups-db .data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
|
|
2867
|
+
--tw-translate-x: 0px;
|
|
2868
|
+
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));
|
|
2869
|
+
}
|
|
2683
2870
|
.ups-db .data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel] {
|
|
2684
2871
|
--tw-translate-x: 0px;
|
|
2685
2872
|
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));
|
|
@@ -2696,18 +2883,22 @@
|
|
|
2696
2883
|
--tw-bg-opacity: 1;
|
|
2697
2884
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
2698
2885
|
}
|
|
2886
|
+
.ups-db .data-\[state\=checked\]\:bg-neutral-900[data-state=checked] {
|
|
2887
|
+
--tw-bg-opacity: 1;
|
|
2888
|
+
background-color: rgb(23 23 23 / var(--tw-bg-opacity));
|
|
2889
|
+
}
|
|
2699
2890
|
.ups-db .data-\[state\=open\]\:bg-zinc-100[data-state=open] {
|
|
2700
2891
|
--tw-bg-opacity: 1;
|
|
2701
2892
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
2702
2893
|
}
|
|
2894
|
+
.ups-db .data-\[state\=unchecked\]\:bg-neutral-200[data-state=unchecked] {
|
|
2895
|
+
--tw-bg-opacity: 1;
|
|
2896
|
+
background-color: rgb(229 229 229 / var(--tw-bg-opacity));
|
|
2897
|
+
}
|
|
2703
2898
|
.ups-db .data-\[selected\=true\]\:text-zinc-900[data-selected=true] {
|
|
2704
2899
|
--tw-text-opacity: 1;
|
|
2705
2900
|
color: rgb(var(--color-zinc-900) / var(--tw-text-opacity));
|
|
2706
2901
|
}
|
|
2707
|
-
.ups-db .data-\[state\=open\]\:text-zinc-500[data-state=open] {
|
|
2708
|
-
--tw-text-opacity: 1;
|
|
2709
|
-
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2710
|
-
}
|
|
2711
2902
|
.ups-db .data-\[state\=open\]\:text-zinc-900[data-state=open] {
|
|
2712
2903
|
--tw-text-opacity: 1;
|
|
2713
2904
|
color: rgb(var(--color-zinc-900) / var(--tw-text-opacity));
|
|
@@ -2801,6 +2992,10 @@
|
|
|
2801
2992
|
.ups-db .dark\:bg-neutral-50\/20:is(.dark *) {
|
|
2802
2993
|
background-color: rgb(250 250 250 / 0.2);
|
|
2803
2994
|
}
|
|
2995
|
+
.ups-db .dark\:bg-neutral-950:is(.dark *) {
|
|
2996
|
+
--tw-bg-opacity: 1;
|
|
2997
|
+
background-color: rgb(10 10 10 / var(--tw-bg-opacity));
|
|
2998
|
+
}
|
|
2804
2999
|
.ups-db .dark\:bg-zinc-100:is(.dark *) {
|
|
2805
3000
|
--tw-bg-opacity: 1;
|
|
2806
3001
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
@@ -2809,14 +3004,17 @@
|
|
|
2809
3004
|
--tw-bg-opacity: 1;
|
|
2810
3005
|
background-color: rgb(var(--color-zinc-200) / var(--tw-bg-opacity));
|
|
2811
3006
|
}
|
|
3007
|
+
.ups-db .dark\:bg-zinc-300:is(.dark *) {
|
|
3008
|
+
--tw-bg-opacity: 1;
|
|
3009
|
+
background-color: rgb(var(--color-zinc-300) / var(--tw-bg-opacity));
|
|
3010
|
+
}
|
|
3011
|
+
.ups-db .dark\:bg-zinc-50\/40:is(.dark *) {
|
|
3012
|
+
background-color: rgb(var(--color-zinc-50) / 0.4);
|
|
3013
|
+
}
|
|
2812
3014
|
.ups-db .dark\:text-red-400:is(.dark *) {
|
|
2813
3015
|
--tw-text-opacity: 1;
|
|
2814
3016
|
color: rgb(var(--color-red-400) / var(--tw-text-opacity));
|
|
2815
3017
|
}
|
|
2816
|
-
.ups-db .dark\:text-zinc-500:is(.dark *) {
|
|
2817
|
-
--tw-text-opacity: 1;
|
|
2818
|
-
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2819
|
-
}
|
|
2820
3018
|
.ups-db .dark\:text-zinc-600:is(.dark *) {
|
|
2821
3019
|
--tw-text-opacity: 1;
|
|
2822
3020
|
color: rgb(var(--color-zinc-600) / var(--tw-text-opacity));
|
|
@@ -2825,10 +3023,22 @@
|
|
|
2825
3023
|
--tw-bg-opacity: 1;
|
|
2826
3024
|
background-color: rgb(var(--color-zinc-200) / var(--tw-bg-opacity));
|
|
2827
3025
|
}
|
|
3026
|
+
.ups-db .dark\:focus-visible\:ring-neutral-300:focus-visible:is(.dark *) {
|
|
3027
|
+
--tw-ring-opacity: 1;
|
|
3028
|
+
--tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity));
|
|
3029
|
+
}
|
|
3030
|
+
.ups-db .dark\:focus-visible\:ring-offset-neutral-950:focus-visible:is(.dark *) {
|
|
3031
|
+
--tw-ring-offset-color: #0a0a0a;
|
|
3032
|
+
}
|
|
3033
|
+
.ups-db .dark\:data-\[state\=checked\]\:bg-neutral-50[data-state=checked]:is(.dark *) {
|
|
3034
|
+
--tw-bg-opacity: 1;
|
|
3035
|
+
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
|
3036
|
+
}
|
|
3037
|
+
.ups-db .dark\:data-\[state\=unchecked\]\:bg-neutral-800[data-state=unchecked]:is(.dark *) {
|
|
3038
|
+
--tw-bg-opacity: 1;
|
|
3039
|
+
background-color: rgb(38 38 38 / var(--tw-bg-opacity));
|
|
3040
|
+
}
|
|
2828
3041
|
@media (min-width: 640px) {
|
|
2829
|
-
.ups-db .sm\:\!mt-0 {
|
|
2830
|
-
margin-top: 0px !important;
|
|
2831
|
-
}
|
|
2832
3042
|
.ups-db .sm\:flex-row {
|
|
2833
3043
|
flex-direction: row;
|
|
2834
3044
|
}
|
|
@@ -2843,9 +3053,6 @@
|
|
|
2843
3053
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
2844
3054
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2845
3055
|
}
|
|
2846
|
-
.ups-db .sm\:rounded-lg {
|
|
2847
|
-
border-radius: 0.5rem;
|
|
2848
|
-
}
|
|
2849
3056
|
.ups-db .sm\:text-left {
|
|
2850
3057
|
text-align: left;
|
|
2851
3058
|
}
|
|
@@ -2861,6 +3068,11 @@
|
|
|
2861
3068
|
max-width: 420px;
|
|
2862
3069
|
}
|
|
2863
3070
|
}
|
|
3071
|
+
@media (min-width: 1024px) {
|
|
3072
|
+
.ups-db .lg\:grid-cols-4 {
|
|
3073
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3074
|
+
}
|
|
3075
|
+
}
|
|
2864
3076
|
.ups-db .\[\&\+div\]\:text-xs + div {
|
|
2865
3077
|
font-size: 0.75rem;
|
|
2866
3078
|
line-height: 1rem;
|