@upstash/react-redis-browser 0.2.14-rc.9 → 0.2.15
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 +260 -58
- package/dist/index.d.mts +48 -2
- package/dist/index.d.ts +48 -2
- package/dist/index.js +2418 -1170
- package/dist/index.mjs +3093 -1845
- 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
|
}
|
|
@@ -1185,15 +1223,18 @@
|
|
|
1185
1223
|
.ups-db .max-w-32 {
|
|
1186
1224
|
max-width: 8rem;
|
|
1187
1225
|
}
|
|
1188
|
-
.ups-db .max-w-4xl {
|
|
1189
|
-
max-width: 56rem;
|
|
1190
|
-
}
|
|
1191
1226
|
.ups-db .max-w-\[370px\] {
|
|
1192
1227
|
max-width: 370px;
|
|
1193
1228
|
}
|
|
1194
1229
|
.ups-db .max-w-\[400px\] {
|
|
1195
1230
|
max-width: 400px;
|
|
1196
1231
|
}
|
|
1232
|
+
.ups-db .max-w-\[500px\] {
|
|
1233
|
+
max-width: 500px;
|
|
1234
|
+
}
|
|
1235
|
+
.ups-db .max-w-\[70\%\] {
|
|
1236
|
+
max-width: 70%;
|
|
1237
|
+
}
|
|
1197
1238
|
.ups-db .max-w-lg {
|
|
1198
1239
|
max-width: 32rem;
|
|
1199
1240
|
}
|
|
@@ -1242,6 +1283,10 @@
|
|
|
1242
1283
|
--tw-translate-y: -50%;
|
|
1243
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));
|
|
1244
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
|
+
}
|
|
1245
1290
|
.ups-db .transform {
|
|
1246
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));
|
|
1247
1292
|
}
|
|
@@ -1284,9 +1329,6 @@
|
|
|
1284
1329
|
.ups-db .resize-none {
|
|
1285
1330
|
resize: none;
|
|
1286
1331
|
}
|
|
1287
|
-
.ups-db .resize-y {
|
|
1288
|
-
resize: vertical;
|
|
1289
|
-
}
|
|
1290
1332
|
.ups-db .resize {
|
|
1291
1333
|
resize: both;
|
|
1292
1334
|
}
|
|
@@ -1295,8 +1337,11 @@
|
|
|
1295
1337
|
-moz-appearance: none;
|
|
1296
1338
|
appearance: none;
|
|
1297
1339
|
}
|
|
1298
|
-
.ups-db .grid-cols-
|
|
1299
|
-
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;
|
|
1300
1345
|
}
|
|
1301
1346
|
.ups-db .flex-col {
|
|
1302
1347
|
flex-direction: column;
|
|
@@ -1340,6 +1385,12 @@
|
|
|
1340
1385
|
.ups-db .gap-4 {
|
|
1341
1386
|
gap: 1rem;
|
|
1342
1387
|
}
|
|
1388
|
+
.ups-db .gap-5 {
|
|
1389
|
+
gap: 1.25rem;
|
|
1390
|
+
}
|
|
1391
|
+
.ups-db .gap-6 {
|
|
1392
|
+
gap: 1.5rem;
|
|
1393
|
+
}
|
|
1343
1394
|
.ups-db .gap-8 {
|
|
1344
1395
|
gap: 2rem;
|
|
1345
1396
|
}
|
|
@@ -1386,14 +1437,14 @@
|
|
|
1386
1437
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1387
1438
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1388
1439
|
}
|
|
1440
|
+
.ups-db .overflow-auto {
|
|
1441
|
+
overflow: auto;
|
|
1442
|
+
}
|
|
1389
1443
|
.ups-db .overflow-hidden {
|
|
1390
1444
|
overflow: hidden;
|
|
1391
1445
|
}
|
|
1392
|
-
.ups-db
|
|
1393
|
-
overflow: visible;
|
|
1394
|
-
}
|
|
1395
|
-
.ups-db .overflow-scroll {
|
|
1396
|
-
overflow: scroll;
|
|
1446
|
+
.ups-db .\!overflow-visible {
|
|
1447
|
+
overflow: visible !important;
|
|
1397
1448
|
}
|
|
1398
1449
|
.ups-db .overflow-x-auto {
|
|
1399
1450
|
overflow-x: auto;
|
|
@@ -1421,6 +1472,12 @@
|
|
|
1421
1472
|
.ups-db .rounded {
|
|
1422
1473
|
border-radius: 0.25rem;
|
|
1423
1474
|
}
|
|
1475
|
+
.ups-db .rounded-2xl {
|
|
1476
|
+
border-radius: 1rem;
|
|
1477
|
+
}
|
|
1478
|
+
.ups-db .rounded-\[10px\] {
|
|
1479
|
+
border-radius: 10px;
|
|
1480
|
+
}
|
|
1424
1481
|
.ups-db .rounded-\[14px\] {
|
|
1425
1482
|
border-radius: 14px;
|
|
1426
1483
|
}
|
|
@@ -1473,6 +1530,10 @@
|
|
|
1473
1530
|
border-top-right-radius: 0px;
|
|
1474
1531
|
border-bottom-right-radius: 0px;
|
|
1475
1532
|
}
|
|
1533
|
+
.ups-db .rounded-t-\[10px\] {
|
|
1534
|
+
border-top-left-radius: 10px;
|
|
1535
|
+
border-top-right-radius: 10px;
|
|
1536
|
+
}
|
|
1476
1537
|
.ups-db .rounded-t-lg {
|
|
1477
1538
|
border-top-left-radius: 0.5rem;
|
|
1478
1539
|
border-top-right-radius: 0.5rem;
|
|
@@ -1555,6 +1616,10 @@
|
|
|
1555
1616
|
.ups-db .border-transparent {
|
|
1556
1617
|
border-color: transparent;
|
|
1557
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
|
+
}
|
|
1558
1623
|
.ups-db .border-zinc-200 {
|
|
1559
1624
|
--tw-border-opacity: 1;
|
|
1560
1625
|
border-color: rgb(var(--color-zinc-200) / var(--tw-border-opacity));
|
|
@@ -1677,6 +1742,10 @@
|
|
|
1677
1742
|
--tw-bg-opacity: 1;
|
|
1678
1743
|
background-color: rgb(var(--color-pink-200) / var(--tw-bg-opacity));
|
|
1679
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
|
+
}
|
|
1680
1749
|
.ups-db .bg-purple-200 {
|
|
1681
1750
|
--tw-bg-opacity: 1;
|
|
1682
1751
|
background-color: rgb(var(--color-purple-200) / var(--tw-bg-opacity));
|
|
@@ -1685,6 +1754,10 @@
|
|
|
1685
1754
|
--tw-bg-opacity: 1;
|
|
1686
1755
|
background-color: rgb(var(--color-purple-50) / var(--tw-bg-opacity));
|
|
1687
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
|
+
}
|
|
1688
1761
|
.ups-db .bg-red-50 {
|
|
1689
1762
|
--tw-bg-opacity: 1;
|
|
1690
1763
|
background-color: rgb(var(--color-red-50) / var(--tw-bg-opacity));
|
|
@@ -1708,8 +1781,9 @@
|
|
|
1708
1781
|
--tw-bg-opacity: 1;
|
|
1709
1782
|
background-color: rgb(var(--color-white) / var(--tw-bg-opacity));
|
|
1710
1783
|
}
|
|
1711
|
-
.ups-db .bg-
|
|
1712
|
-
|
|
1784
|
+
.ups-db .bg-yellow-50 {
|
|
1785
|
+
--tw-bg-opacity: 1;
|
|
1786
|
+
background-color: rgb(var(--color-yellow-50) / var(--tw-bg-opacity));
|
|
1713
1787
|
}
|
|
1714
1788
|
.ups-db .bg-zinc-100 {
|
|
1715
1789
|
--tw-bg-opacity: 1;
|
|
@@ -1782,6 +1856,10 @@
|
|
|
1782
1856
|
padding-left: 0.25rem;
|
|
1783
1857
|
padding-right: 0.25rem;
|
|
1784
1858
|
}
|
|
1859
|
+
.ups-db .px-1\.5 {
|
|
1860
|
+
padding-left: 0.375rem;
|
|
1861
|
+
padding-right: 0.375rem;
|
|
1862
|
+
}
|
|
1785
1863
|
.ups-db .px-2 {
|
|
1786
1864
|
padding-left: 0.5rem;
|
|
1787
1865
|
padding-right: 0.5rem;
|
|
@@ -1818,6 +1896,10 @@
|
|
|
1818
1896
|
padding-top: 0px;
|
|
1819
1897
|
padding-bottom: 0px;
|
|
1820
1898
|
}
|
|
1899
|
+
.ups-db .py-0\.5 {
|
|
1900
|
+
padding-top: 0.125rem;
|
|
1901
|
+
padding-bottom: 0.125rem;
|
|
1902
|
+
}
|
|
1821
1903
|
.ups-db .py-1 {
|
|
1822
1904
|
padding-top: 0.25rem;
|
|
1823
1905
|
padding-bottom: 0.25rem;
|
|
@@ -1854,8 +1936,12 @@
|
|
|
1854
1936
|
padding-top: 5px;
|
|
1855
1937
|
padding-bottom: 5px;
|
|
1856
1938
|
}
|
|
1857
|
-
.ups-db .
|
|
1858
|
-
padding-
|
|
1939
|
+
.ups-db .py-\[8px\] {
|
|
1940
|
+
padding-top: 8px;
|
|
1941
|
+
padding-bottom: 8px;
|
|
1942
|
+
}
|
|
1943
|
+
.ups-db .pb-2 {
|
|
1944
|
+
padding-bottom: 0.5rem;
|
|
1859
1945
|
}
|
|
1860
1946
|
.ups-db .pb-5 {
|
|
1861
1947
|
padding-bottom: 1.25rem;
|
|
@@ -1896,6 +1982,9 @@
|
|
|
1896
1982
|
.ups-db .pr-8 {
|
|
1897
1983
|
padding-right: 2rem;
|
|
1898
1984
|
}
|
|
1985
|
+
.ups-db .pt-1 {
|
|
1986
|
+
padding-top: 0.25rem;
|
|
1987
|
+
}
|
|
1899
1988
|
.ups-db .text-left {
|
|
1900
1989
|
text-align: left;
|
|
1901
1990
|
}
|
|
@@ -1916,12 +2005,20 @@
|
|
|
1916
2005
|
"Courier New",
|
|
1917
2006
|
monospace;
|
|
1918
2007
|
}
|
|
2008
|
+
.ups-db .\!text-sm {
|
|
2009
|
+
font-size: 0.875rem !important;
|
|
2010
|
+
line-height: 1.25rem !important;
|
|
2011
|
+
}
|
|
1919
2012
|
.ups-db .text-\[11px\] {
|
|
1920
2013
|
font-size: 11px;
|
|
1921
2014
|
}
|
|
1922
2015
|
.ups-db .text-\[13px\] {
|
|
1923
2016
|
font-size: 13px;
|
|
1924
2017
|
}
|
|
2018
|
+
.ups-db .text-base {
|
|
2019
|
+
font-size: 1rem;
|
|
2020
|
+
line-height: 1.5rem;
|
|
2021
|
+
}
|
|
1925
2022
|
.ups-db .text-lg {
|
|
1926
2023
|
font-size: 1.125rem;
|
|
1927
2024
|
line-height: 1.75rem;
|
|
@@ -1959,9 +2056,6 @@
|
|
|
1959
2056
|
.ups-db .leading-relaxed {
|
|
1960
2057
|
line-height: 1.625;
|
|
1961
2058
|
}
|
|
1962
|
-
.ups-db .tracking-tight {
|
|
1963
|
-
letter-spacing: -0.025em;
|
|
1964
|
-
}
|
|
1965
2059
|
.ups-db .tracking-wide {
|
|
1966
2060
|
letter-spacing: 0.025em;
|
|
1967
2061
|
}
|
|
@@ -1971,6 +2065,10 @@
|
|
|
1971
2065
|
.ups-db .tracking-widest {
|
|
1972
2066
|
letter-spacing: 0.1em;
|
|
1973
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
|
+
}
|
|
1974
2072
|
.ups-db .text-amber-800 {
|
|
1975
2073
|
--tw-text-opacity: 1;
|
|
1976
2074
|
color: rgb(var(--color-amber-800) / var(--tw-text-opacity));
|
|
@@ -2047,6 +2145,10 @@
|
|
|
2047
2145
|
--tw-text-opacity: 1;
|
|
2048
2146
|
color: rgb(var(--color-pink-900) / var(--tw-text-opacity));
|
|
2049
2147
|
}
|
|
2148
|
+
.ups-db .text-purple-700 {
|
|
2149
|
+
--tw-text-opacity: 1;
|
|
2150
|
+
color: rgb(var(--color-purple-700) / var(--tw-text-opacity));
|
|
2151
|
+
}
|
|
2050
2152
|
.ups-db .text-purple-800 {
|
|
2051
2153
|
--tw-text-opacity: 1;
|
|
2052
2154
|
color: rgb(var(--color-purple-800) / var(--tw-text-opacity));
|
|
@@ -2094,6 +2196,10 @@
|
|
|
2094
2196
|
--tw-text-opacity: 1;
|
|
2095
2197
|
color: rgb(var(--color-white) / var(--tw-text-opacity));
|
|
2096
2198
|
}
|
|
2199
|
+
.ups-db .text-yellow-800 {
|
|
2200
|
+
--tw-text-opacity: 1;
|
|
2201
|
+
color: rgb(var(--color-yellow-800) / var(--tw-text-opacity));
|
|
2202
|
+
}
|
|
2097
2203
|
.ups-db .text-zinc-300 {
|
|
2098
2204
|
--tw-text-opacity: 1;
|
|
2099
2205
|
color: rgb(var(--color-zinc-300) / var(--tw-text-opacity));
|
|
@@ -2157,9 +2263,6 @@
|
|
|
2157
2263
|
.ups-db .opacity-60 {
|
|
2158
2264
|
opacity: 0.6;
|
|
2159
2265
|
}
|
|
2160
|
-
.ups-db .opacity-70 {
|
|
2161
|
-
opacity: 0.7;
|
|
2162
|
-
}
|
|
2163
2266
|
.ups-db .opacity-90 {
|
|
2164
2267
|
opacity: 0.9;
|
|
2165
2268
|
}
|
|
@@ -2179,6 +2282,14 @@
|
|
|
2179
2282
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
2180
2283
|
var(--tw-shadow);
|
|
2181
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
|
+
}
|
|
2182
2293
|
.ups-db .shadow-lg {
|
|
2183
2294
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
2184
2295
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -2218,6 +2329,14 @@
|
|
|
2218
2329
|
var(--tw-ring-shadow),
|
|
2219
2330
|
var(--tw-shadow, 0 0 #0000) !important;
|
|
2220
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
|
+
}
|
|
2221
2340
|
.ups-db .ring-offset-white {
|
|
2222
2341
|
--tw-ring-offset-color: rgb(var(--color-white) / 1);
|
|
2223
2342
|
}
|
|
@@ -2330,12 +2449,33 @@
|
|
|
2330
2449
|
--tw-enter-translate-x: initial;
|
|
2331
2450
|
--tw-enter-translate-y: initial;
|
|
2332
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
|
+
}
|
|
2333
2464
|
.ups-db .fade-in-0 {
|
|
2334
2465
|
--tw-enter-opacity: 0;
|
|
2335
2466
|
}
|
|
2467
|
+
.ups-db .fade-out {
|
|
2468
|
+
--tw-exit-opacity: 0;
|
|
2469
|
+
}
|
|
2336
2470
|
.ups-db .zoom-in-95 {
|
|
2337
2471
|
--tw-enter-scale: .95;
|
|
2338
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
|
+
}
|
|
2339
2479
|
.ups-db .duration-100 {
|
|
2340
2480
|
animation-duration: 100ms;
|
|
2341
2481
|
}
|
|
@@ -2345,6 +2485,14 @@
|
|
|
2345
2485
|
.ups-db .ease-out {
|
|
2346
2486
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2347
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
|
+
}
|
|
2348
2496
|
.ups-db .tabs-shadow-left {
|
|
2349
2497
|
background:
|
|
2350
2498
|
linear-gradient(
|
|
@@ -2451,6 +2599,10 @@
|
|
|
2451
2599
|
--tw-text-opacity: 1;
|
|
2452
2600
|
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2453
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
|
+
}
|
|
2454
2606
|
.ups-db .hover\:bg-black\/10:hover {
|
|
2455
2607
|
background-color: rgb(var(--color-black) / 0.1);
|
|
2456
2608
|
}
|
|
@@ -2466,6 +2618,10 @@
|
|
|
2466
2618
|
--tw-bg-opacity: 1;
|
|
2467
2619
|
background-color: rgb(var(--color-emerald-700) / var(--tw-bg-opacity));
|
|
2468
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
|
+
}
|
|
2469
2625
|
.ups-db .hover\:bg-red-500\/90:hover {
|
|
2470
2626
|
background-color: rgb(var(--color-red-500) / 0.9);
|
|
2471
2627
|
}
|
|
@@ -2517,8 +2673,9 @@
|
|
|
2517
2673
|
.ups-db .hover\:underline:hover {
|
|
2518
2674
|
text-decoration-line: underline;
|
|
2519
2675
|
}
|
|
2520
|
-
.ups-db .
|
|
2521
|
-
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));
|
|
2522
2679
|
}
|
|
2523
2680
|
.ups-db .focus\:border-zinc-400:focus {
|
|
2524
2681
|
--tw-border-opacity: 1;
|
|
@@ -2555,21 +2712,14 @@
|
|
|
2555
2712
|
var(--tw-ring-shadow),
|
|
2556
2713
|
var(--tw-shadow, 0 0 #0000);
|
|
2557
2714
|
}
|
|
2558
|
-
.ups-db .focus\:ring-
|
|
2559
|
-
--tw-ring-
|
|
2560
|
-
--tw-ring-
|
|
2561
|
-
box-shadow:
|
|
2562
|
-
var(--tw-ring-offset-shadow),
|
|
2563
|
-
var(--tw-ring-shadow),
|
|
2564
|
-
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));
|
|
2565
2718
|
}
|
|
2566
2719
|
.ups-db .focus\:ring-zinc-950:focus {
|
|
2567
2720
|
--tw-ring-opacity: 1;
|
|
2568
2721
|
--tw-ring-color: rgb(var(--color-zinc-950) / var(--tw-ring-opacity));
|
|
2569
2722
|
}
|
|
2570
|
-
.ups-db .focus\:ring-offset-2:focus {
|
|
2571
|
-
--tw-ring-offset-width: 2px;
|
|
2572
|
-
}
|
|
2573
2723
|
.ups-db .focus-visible\:bg-zinc-50:focus-visible {
|
|
2574
2724
|
--tw-bg-opacity: 1;
|
|
2575
2725
|
background-color: rgb(var(--color-zinc-50) / var(--tw-bg-opacity));
|
|
@@ -2586,6 +2736,18 @@
|
|
|
2586
2736
|
var(--tw-ring-shadow),
|
|
2587
2737
|
var(--tw-shadow, 0 0 #0000);
|
|
2588
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
|
+
}
|
|
2589
2751
|
.ups-db .focus-visible\:ring-zinc-950:focus-visible {
|
|
2590
2752
|
--tw-ring-opacity: 1;
|
|
2591
2753
|
--tw-ring-color: rgb(var(--color-zinc-950) / var(--tw-ring-opacity));
|
|
@@ -2593,6 +2755,9 @@
|
|
|
2593
2755
|
.ups-db .focus-visible\:ring-offset-2:focus-visible {
|
|
2594
2756
|
--tw-ring-offset-width: 2px;
|
|
2595
2757
|
}
|
|
2758
|
+
.ups-db .focus-visible\:ring-offset-white:focus-visible {
|
|
2759
|
+
--tw-ring-offset-color: rgb(var(--color-white) / 1);
|
|
2760
|
+
}
|
|
2596
2761
|
.ups-db .disabled\:pointer-events-none:disabled {
|
|
2597
2762
|
pointer-events: none;
|
|
2598
2763
|
}
|
|
@@ -2602,6 +2767,10 @@
|
|
|
2602
2767
|
.ups-db .disabled\:opacity-50:disabled {
|
|
2603
2768
|
opacity: 0.5;
|
|
2604
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
|
+
}
|
|
2605
2774
|
.ups-db .group\/editor:hover .group-hover\/editor\:flex {
|
|
2606
2775
|
display: flex;
|
|
2607
2776
|
}
|
|
@@ -2690,6 +2859,14 @@
|
|
|
2690
2859
|
--tw-translate-y: -0.25rem;
|
|
2691
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));
|
|
2692
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
|
+
}
|
|
2693
2870
|
.ups-db .data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel] {
|
|
2694
2871
|
--tw-translate-x: 0px;
|
|
2695
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));
|
|
@@ -2706,18 +2883,22 @@
|
|
|
2706
2883
|
--tw-bg-opacity: 1;
|
|
2707
2884
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
2708
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
|
+
}
|
|
2709
2890
|
.ups-db .data-\[state\=open\]\:bg-zinc-100[data-state=open] {
|
|
2710
2891
|
--tw-bg-opacity: 1;
|
|
2711
2892
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
2712
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
|
+
}
|
|
2713
2898
|
.ups-db .data-\[selected\=true\]\:text-zinc-900[data-selected=true] {
|
|
2714
2899
|
--tw-text-opacity: 1;
|
|
2715
2900
|
color: rgb(var(--color-zinc-900) / var(--tw-text-opacity));
|
|
2716
2901
|
}
|
|
2717
|
-
.ups-db .data-\[state\=open\]\:text-zinc-500[data-state=open] {
|
|
2718
|
-
--tw-text-opacity: 1;
|
|
2719
|
-
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
2720
|
-
}
|
|
2721
2902
|
.ups-db .data-\[state\=open\]\:text-zinc-900[data-state=open] {
|
|
2722
2903
|
--tw-text-opacity: 1;
|
|
2723
2904
|
color: rgb(var(--color-zinc-900) / var(--tw-text-opacity));
|
|
@@ -2811,6 +2992,10 @@
|
|
|
2811
2992
|
.ups-db .dark\:bg-neutral-50\/20:is(.dark *) {
|
|
2812
2993
|
background-color: rgb(250 250 250 / 0.2);
|
|
2813
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
|
+
}
|
|
2814
2999
|
.ups-db .dark\:bg-zinc-100:is(.dark *) {
|
|
2815
3000
|
--tw-bg-opacity: 1;
|
|
2816
3001
|
background-color: rgb(var(--color-zinc-100) / var(--tw-bg-opacity));
|
|
@@ -2823,13 +3008,16 @@
|
|
|
2823
3008
|
--tw-bg-opacity: 1;
|
|
2824
3009
|
background-color: rgb(var(--color-zinc-300) / var(--tw-bg-opacity));
|
|
2825
3010
|
}
|
|
3011
|
+
.ups-db .dark\:bg-zinc-50\/40:is(.dark *) {
|
|
3012
|
+
background-color: rgb(var(--color-zinc-50) / 0.4);
|
|
3013
|
+
}
|
|
2826
3014
|
.ups-db .dark\:text-red-400:is(.dark *) {
|
|
2827
3015
|
--tw-text-opacity: 1;
|
|
2828
3016
|
color: rgb(var(--color-red-400) / var(--tw-text-opacity));
|
|
2829
3017
|
}
|
|
2830
|
-
.ups-db .dark\:text-zinc-
|
|
3018
|
+
.ups-db .dark\:text-zinc-100:is(.dark *) {
|
|
2831
3019
|
--tw-text-opacity: 1;
|
|
2832
|
-
color: rgb(var(--color-zinc-
|
|
3020
|
+
color: rgb(var(--color-zinc-100) / var(--tw-text-opacity));
|
|
2833
3021
|
}
|
|
2834
3022
|
.ups-db .dark\:text-zinc-600:is(.dark *) {
|
|
2835
3023
|
--tw-text-opacity: 1;
|
|
@@ -2839,10 +3027,22 @@
|
|
|
2839
3027
|
--tw-bg-opacity: 1;
|
|
2840
3028
|
background-color: rgb(var(--color-zinc-200) / var(--tw-bg-opacity));
|
|
2841
3029
|
}
|
|
3030
|
+
.ups-db .dark\:focus-visible\:ring-neutral-300:focus-visible:is(.dark *) {
|
|
3031
|
+
--tw-ring-opacity: 1;
|
|
3032
|
+
--tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity));
|
|
3033
|
+
}
|
|
3034
|
+
.ups-db .dark\:focus-visible\:ring-offset-neutral-950:focus-visible:is(.dark *) {
|
|
3035
|
+
--tw-ring-offset-color: #0a0a0a;
|
|
3036
|
+
}
|
|
3037
|
+
.ups-db .dark\:data-\[state\=checked\]\:bg-neutral-50[data-state=checked]:is(.dark *) {
|
|
3038
|
+
--tw-bg-opacity: 1;
|
|
3039
|
+
background-color: rgb(250 250 250 / var(--tw-bg-opacity));
|
|
3040
|
+
}
|
|
3041
|
+
.ups-db .dark\:data-\[state\=unchecked\]\:bg-neutral-800[data-state=unchecked]:is(.dark *) {
|
|
3042
|
+
--tw-bg-opacity: 1;
|
|
3043
|
+
background-color: rgb(38 38 38 / var(--tw-bg-opacity));
|
|
3044
|
+
}
|
|
2842
3045
|
@media (min-width: 640px) {
|
|
2843
|
-
.ups-db .sm\:\!mt-0 {
|
|
2844
|
-
margin-top: 0px !important;
|
|
2845
|
-
}
|
|
2846
3046
|
.ups-db .sm\:flex-row {
|
|
2847
3047
|
flex-direction: row;
|
|
2848
3048
|
}
|
|
@@ -2857,9 +3057,6 @@
|
|
|
2857
3057
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
2858
3058
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2859
3059
|
}
|
|
2860
|
-
.ups-db .sm\:rounded-lg {
|
|
2861
|
-
border-radius: 0.5rem;
|
|
2862
|
-
}
|
|
2863
3060
|
.ups-db .sm\:text-left {
|
|
2864
3061
|
text-align: left;
|
|
2865
3062
|
}
|
|
@@ -2875,6 +3072,11 @@
|
|
|
2875
3072
|
max-width: 420px;
|
|
2876
3073
|
}
|
|
2877
3074
|
}
|
|
3075
|
+
@media (min-width: 1024px) {
|
|
3076
|
+
.ups-db .lg\:grid-cols-4 {
|
|
3077
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3078
|
+
}
|
|
3079
|
+
}
|
|
2878
3080
|
.ups-db .\[\&\+div\]\:text-xs + div {
|
|
2879
3081
|
font-size: 0.75rem;
|
|
2880
3082
|
line-height: 1rem;
|