@upstash/react-redis-browser 0.2.14-rc.1 → 0.2.14-rc.2
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 +68 -6
- package/dist/index.js +3438 -2330
- package/dist/index.mjs +3896 -2788
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -864,6 +864,9 @@
|
|
|
864
864
|
.ups-db .z-\[100\] {
|
|
865
865
|
z-index: 100;
|
|
866
866
|
}
|
|
867
|
+
.ups-db .col-span-2 {
|
|
868
|
+
grid-column: span 2 / span 2;
|
|
869
|
+
}
|
|
867
870
|
.ups-db .-mx-1 {
|
|
868
871
|
margin-left: -0.25rem;
|
|
869
872
|
margin-right: -0.25rem;
|
|
@@ -894,6 +897,9 @@
|
|
|
894
897
|
.ups-db .mb-1 {
|
|
895
898
|
margin-bottom: 0.25rem;
|
|
896
899
|
}
|
|
900
|
+
.ups-db .mb-1\.5 {
|
|
901
|
+
margin-bottom: 0.375rem;
|
|
902
|
+
}
|
|
897
903
|
.ups-db .mb-2 {
|
|
898
904
|
margin-bottom: 0.5rem;
|
|
899
905
|
}
|
|
@@ -924,9 +930,15 @@
|
|
|
924
930
|
.ups-db .mt-0\.5 {
|
|
925
931
|
margin-top: 0.125rem;
|
|
926
932
|
}
|
|
933
|
+
.ups-db .mt-1 {
|
|
934
|
+
margin-top: 0.25rem;
|
|
935
|
+
}
|
|
927
936
|
.ups-db .mt-2 {
|
|
928
937
|
margin-top: 0.5rem;
|
|
929
938
|
}
|
|
939
|
+
.ups-db .mt-3 {
|
|
940
|
+
margin-top: 0.75rem;
|
|
941
|
+
}
|
|
930
942
|
.ups-db .mt-4 {
|
|
931
943
|
margin-top: 1rem;
|
|
932
944
|
}
|
|
@@ -1034,6 +1046,9 @@
|
|
|
1034
1046
|
.ups-db .h-px {
|
|
1035
1047
|
height: 1px;
|
|
1036
1048
|
}
|
|
1049
|
+
.ups-db .max-h-\[200px\] {
|
|
1050
|
+
max-height: 200px;
|
|
1051
|
+
}
|
|
1037
1052
|
.ups-db .max-h-\[300px\] {
|
|
1038
1053
|
max-height: 300px;
|
|
1039
1054
|
}
|
|
@@ -1131,6 +1146,9 @@
|
|
|
1131
1146
|
.ups-db .min-w-24 {
|
|
1132
1147
|
min-width: 6rem;
|
|
1133
1148
|
}
|
|
1149
|
+
.ups-db .min-w-\[140px\] {
|
|
1150
|
+
min-width: 140px;
|
|
1151
|
+
}
|
|
1134
1152
|
.ups-db .min-w-\[30px\] {
|
|
1135
1153
|
min-width: 30px;
|
|
1136
1154
|
}
|
|
@@ -1143,6 +1161,9 @@
|
|
|
1143
1161
|
.ups-db .max-w-0 {
|
|
1144
1162
|
max-width: 0px;
|
|
1145
1163
|
}
|
|
1164
|
+
.ups-db .max-w-2xl {
|
|
1165
|
+
max-width: 42rem;
|
|
1166
|
+
}
|
|
1146
1167
|
.ups-db .max-w-32 {
|
|
1147
1168
|
max-width: 8rem;
|
|
1148
1169
|
}
|
|
@@ -1242,6 +1263,9 @@
|
|
|
1242
1263
|
.ups-db .resize {
|
|
1243
1264
|
resize: both;
|
|
1244
1265
|
}
|
|
1266
|
+
.ups-db .grid-cols-4 {
|
|
1267
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1268
|
+
}
|
|
1245
1269
|
.ups-db .flex-col {
|
|
1246
1270
|
flex-direction: column;
|
|
1247
1271
|
}
|
|
@@ -1330,9 +1354,6 @@
|
|
|
1330
1354
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1331
1355
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1332
1356
|
}
|
|
1333
|
-
.ups-db .overflow-auto {
|
|
1334
|
-
overflow: auto;
|
|
1335
|
-
}
|
|
1336
1357
|
.ups-db .overflow-hidden {
|
|
1337
1358
|
overflow: hidden;
|
|
1338
1359
|
}
|
|
@@ -1359,9 +1380,6 @@
|
|
|
1359
1380
|
.ups-db .whitespace-nowrap {
|
|
1360
1381
|
white-space: nowrap;
|
|
1361
1382
|
}
|
|
1362
|
-
.ups-db .whitespace-pre-wrap {
|
|
1363
|
-
white-space: pre-wrap;
|
|
1364
|
-
}
|
|
1365
1383
|
.ups-db .text-balance {
|
|
1366
1384
|
text-wrap: balance;
|
|
1367
1385
|
}
|
|
@@ -1407,6 +1425,10 @@
|
|
|
1407
1425
|
border-top-left-radius: 0px;
|
|
1408
1426
|
border-bottom-left-radius: 0px;
|
|
1409
1427
|
}
|
|
1428
|
+
.ups-db .rounded-r-lg {
|
|
1429
|
+
border-top-right-radius: 0.5rem;
|
|
1430
|
+
border-bottom-right-radius: 0.5rem;
|
|
1431
|
+
}
|
|
1410
1432
|
.ups-db .rounded-r-md {
|
|
1411
1433
|
border-top-right-radius: 0.375rem;
|
|
1412
1434
|
border-bottom-right-radius: 0.375rem;
|
|
@@ -1422,6 +1444,9 @@
|
|
|
1422
1444
|
.ups-db .border {
|
|
1423
1445
|
border-width: 1px;
|
|
1424
1446
|
}
|
|
1447
|
+
.ups-db .border-2 {
|
|
1448
|
+
border-width: 2px;
|
|
1449
|
+
}
|
|
1425
1450
|
.ups-db .border-\[4px\] {
|
|
1426
1451
|
border-width: 4px;
|
|
1427
1452
|
}
|
|
@@ -1506,6 +1531,10 @@
|
|
|
1506
1531
|
--tw-border-opacity: 1;
|
|
1507
1532
|
border-bottom-color: rgb(var(--color-zinc-100) / var(--tw-border-opacity));
|
|
1508
1533
|
}
|
|
1534
|
+
.ups-db .border-t-zinc-600 {
|
|
1535
|
+
--tw-border-opacity: 1;
|
|
1536
|
+
border-top-color: rgb(var(--color-zinc-600) / var(--tw-border-opacity));
|
|
1537
|
+
}
|
|
1509
1538
|
.ups-db .\!bg-amber-50 {
|
|
1510
1539
|
--tw-bg-opacity: 1 !important;
|
|
1511
1540
|
background-color: rgb(var(--color-amber-50) / var(--tw-bg-opacity)) !important;
|
|
@@ -1680,6 +1709,9 @@
|
|
|
1680
1709
|
.ups-db .p-2 {
|
|
1681
1710
|
padding: 0.5rem;
|
|
1682
1711
|
}
|
|
1712
|
+
.ups-db .p-3 {
|
|
1713
|
+
padding: 0.75rem;
|
|
1714
|
+
}
|
|
1683
1715
|
.ups-db .p-4 {
|
|
1684
1716
|
padding: 1rem;
|
|
1685
1717
|
}
|
|
@@ -1751,6 +1783,10 @@
|
|
|
1751
1783
|
padding-top: 0.75rem;
|
|
1752
1784
|
padding-bottom: 0.75rem;
|
|
1753
1785
|
}
|
|
1786
|
+
.ups-db .py-4 {
|
|
1787
|
+
padding-top: 1rem;
|
|
1788
|
+
padding-bottom: 1rem;
|
|
1789
|
+
}
|
|
1754
1790
|
.ups-db .py-5 {
|
|
1755
1791
|
padding-top: 1.25rem;
|
|
1756
1792
|
padding-bottom: 1.25rem;
|
|
@@ -1989,6 +2025,9 @@
|
|
|
1989
2025
|
--tw-text-opacity: 1;
|
|
1990
2026
|
color: rgb(var(--color-sky-900) / var(--tw-text-opacity));
|
|
1991
2027
|
}
|
|
2028
|
+
.ups-db .text-transparent {
|
|
2029
|
+
color: transparent;
|
|
2030
|
+
}
|
|
1992
2031
|
.ups-db .text-white {
|
|
1993
2032
|
--tw-text-opacity: 1;
|
|
1994
2033
|
color: rgb(var(--color-white) / var(--tw-text-opacity));
|
|
@@ -2028,6 +2067,9 @@
|
|
|
2028
2067
|
.ups-db .text-zinc-950\/50 {
|
|
2029
2068
|
color: rgb(var(--color-zinc-950) / 0.5);
|
|
2030
2069
|
}
|
|
2070
|
+
.ups-db .underline {
|
|
2071
|
+
text-decoration-line: underline;
|
|
2072
|
+
}
|
|
2031
2073
|
.ups-db .underline-offset-2 {
|
|
2032
2074
|
text-underline-offset: 2px;
|
|
2033
2075
|
}
|
|
@@ -2317,6 +2359,14 @@
|
|
|
2317
2359
|
.ups-db .file\:font-medium::file-selector-button {
|
|
2318
2360
|
font-weight: 500;
|
|
2319
2361
|
}
|
|
2362
|
+
.ups-db .placeholder\:text-zinc-400::-moz-placeholder {
|
|
2363
|
+
--tw-text-opacity: 1;
|
|
2364
|
+
color: rgb(var(--color-zinc-400) / var(--tw-text-opacity));
|
|
2365
|
+
}
|
|
2366
|
+
.ups-db .placeholder\:text-zinc-400::placeholder {
|
|
2367
|
+
--tw-text-opacity: 1;
|
|
2368
|
+
color: rgb(var(--color-zinc-400) / var(--tw-text-opacity));
|
|
2369
|
+
}
|
|
2320
2370
|
.ups-db .placeholder\:text-zinc-500::-moz-placeholder {
|
|
2321
2371
|
--tw-text-opacity: 1;
|
|
2322
2372
|
color: rgb(var(--color-zinc-500) / var(--tw-text-opacity));
|
|
@@ -2328,6 +2378,10 @@
|
|
|
2328
2378
|
.ups-db .hover\:bg-black\/10:hover {
|
|
2329
2379
|
background-color: rgb(var(--color-black) / 0.1);
|
|
2330
2380
|
}
|
|
2381
|
+
.ups-db .hover\:bg-emerald-100:hover {
|
|
2382
|
+
--tw-bg-opacity: 1;
|
|
2383
|
+
background-color: rgb(var(--color-emerald-100) / var(--tw-bg-opacity));
|
|
2384
|
+
}
|
|
2331
2385
|
.ups-db .hover\:bg-emerald-600:hover {
|
|
2332
2386
|
--tw-bg-opacity: 1;
|
|
2333
2387
|
background-color: rgb(var(--color-emerald-600) / var(--tw-bg-opacity));
|
|
@@ -2352,6 +2406,10 @@
|
|
|
2352
2406
|
.ups-db .hover\:bg-zinc-300\/10:hover {
|
|
2353
2407
|
background-color: rgb(var(--color-zinc-300) / 0.1);
|
|
2354
2408
|
}
|
|
2409
|
+
.ups-db .hover\:bg-zinc-50:hover {
|
|
2410
|
+
--tw-bg-opacity: 1;
|
|
2411
|
+
background-color: rgb(var(--color-zinc-50) / var(--tw-bg-opacity));
|
|
2412
|
+
}
|
|
2355
2413
|
.ups-db .hover\:bg-zinc-800:hover {
|
|
2356
2414
|
--tw-bg-opacity: 1;
|
|
2357
2415
|
background-color: rgb(var(--color-zinc-800) / var(--tw-bg-opacity));
|
|
@@ -2698,6 +2756,10 @@
|
|
|
2698
2756
|
--tw-text-opacity: 1;
|
|
2699
2757
|
color: rgb(var(--color-zinc-100) / var(--tw-text-opacity));
|
|
2700
2758
|
}
|
|
2759
|
+
.ups-db .dark\:text-zinc-300:is(.dark *) {
|
|
2760
|
+
--tw-text-opacity: 1;
|
|
2761
|
+
color: rgb(var(--color-zinc-300) / var(--tw-text-opacity));
|
|
2762
|
+
}
|
|
2701
2763
|
.ups-db .dark\:text-zinc-400:is(.dark *) {
|
|
2702
2764
|
--tw-text-opacity: 1;
|
|
2703
2765
|
color: rgb(var(--color-zinc-400) / var(--tw-text-opacity));
|