@upstash/react-redis-browser 0.2.4 → 0.2.6
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 +149 -5
- package/dist/index.js +505 -63
- package/dist/index.mjs +528 -86
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -371,6 +371,9 @@
|
|
|
371
371
|
white-space: nowrap;
|
|
372
372
|
border-width: 0;
|
|
373
373
|
}
|
|
374
|
+
.ups-db .pointer-events-none {
|
|
375
|
+
pointer-events: none;
|
|
376
|
+
}
|
|
374
377
|
.ups-db .pointer-events-auto {
|
|
375
378
|
pointer-events: auto;
|
|
376
379
|
}
|
|
@@ -440,6 +443,9 @@
|
|
|
440
443
|
.ups-db .-z-10 {
|
|
441
444
|
z-index: -10;
|
|
442
445
|
}
|
|
446
|
+
.ups-db .z-10 {
|
|
447
|
+
z-index: 10;
|
|
448
|
+
}
|
|
443
449
|
.ups-db .z-50 {
|
|
444
450
|
z-index: 50;
|
|
445
451
|
}
|
|
@@ -476,8 +482,8 @@
|
|
|
476
482
|
.ups-db .ml-auto {
|
|
477
483
|
margin-left: auto;
|
|
478
484
|
}
|
|
479
|
-
.ups-db .mr-
|
|
480
|
-
margin-right: 0.
|
|
485
|
+
.ups-db .mr-2 {
|
|
486
|
+
margin-right: 0.5rem;
|
|
481
487
|
}
|
|
482
488
|
.ups-db .mt-0\.5 {
|
|
483
489
|
margin-top: 0.125rem;
|
|
@@ -574,6 +580,9 @@
|
|
|
574
580
|
.ups-db .h-px {
|
|
575
581
|
height: 1px;
|
|
576
582
|
}
|
|
583
|
+
.ups-db .max-h-\[300px\] {
|
|
584
|
+
max-height: 300px;
|
|
585
|
+
}
|
|
577
586
|
.ups-db .max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
|
|
578
587
|
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
579
588
|
}
|
|
@@ -616,6 +625,9 @@
|
|
|
616
625
|
.ups-db .w-5 {
|
|
617
626
|
width: 1.25rem;
|
|
618
627
|
}
|
|
628
|
+
.ups-db .w-6 {
|
|
629
|
+
width: 1.5rem;
|
|
630
|
+
}
|
|
619
631
|
.ups-db .w-7 {
|
|
620
632
|
width: 1.75rem;
|
|
621
633
|
}
|
|
@@ -625,6 +637,9 @@
|
|
|
625
637
|
.ups-db .w-8 {
|
|
626
638
|
width: 2rem;
|
|
627
639
|
}
|
|
640
|
+
.ups-db .w-96 {
|
|
641
|
+
width: 24rem;
|
|
642
|
+
}
|
|
628
643
|
.ups-db .w-\[--radix-popover-trigger-width\] {
|
|
629
644
|
width: var(--radix-popover-trigger-width);
|
|
630
645
|
}
|
|
@@ -658,6 +673,9 @@
|
|
|
658
673
|
.ups-db .max-w-32 {
|
|
659
674
|
max-width: 8rem;
|
|
660
675
|
}
|
|
676
|
+
.ups-db .max-w-\[370px\] {
|
|
677
|
+
max-width: 370px;
|
|
678
|
+
}
|
|
661
679
|
.ups-db .max-w-\[400px\] {
|
|
662
680
|
max-width: 400px;
|
|
663
681
|
}
|
|
@@ -734,6 +752,9 @@
|
|
|
734
752
|
-moz-user-select: none;
|
|
735
753
|
user-select: none;
|
|
736
754
|
}
|
|
755
|
+
.ups-db .resize {
|
|
756
|
+
resize: both;
|
|
757
|
+
}
|
|
737
758
|
.ups-db .flex-col {
|
|
738
759
|
flex-direction: column;
|
|
739
760
|
}
|
|
@@ -812,15 +833,15 @@
|
|
|
812
833
|
.ups-db .overflow-visible {
|
|
813
834
|
overflow: visible;
|
|
814
835
|
}
|
|
836
|
+
.ups-db .overflow-x-auto {
|
|
837
|
+
overflow-x: auto;
|
|
838
|
+
}
|
|
815
839
|
.ups-db .overflow-y-auto {
|
|
816
840
|
overflow-y: auto;
|
|
817
841
|
}
|
|
818
842
|
.ups-db .overflow-x-hidden {
|
|
819
843
|
overflow-x: hidden;
|
|
820
844
|
}
|
|
821
|
-
.ups-db .overflow-x-scroll {
|
|
822
|
-
overflow-x: scroll;
|
|
823
|
-
}
|
|
824
845
|
.ups-db .truncate {
|
|
825
846
|
overflow: hidden;
|
|
826
847
|
text-overflow: ellipsis;
|
|
@@ -1133,6 +1154,9 @@
|
|
|
1133
1154
|
.ups-db .pl-\[3px\] {
|
|
1134
1155
|
padding-left: 3px;
|
|
1135
1156
|
}
|
|
1157
|
+
.ups-db .pr-1 {
|
|
1158
|
+
padding-right: 0.25rem;
|
|
1159
|
+
}
|
|
1136
1160
|
.ups-db .pr-2 {
|
|
1137
1161
|
padding-right: 0.5rem;
|
|
1138
1162
|
}
|
|
@@ -1320,6 +1344,10 @@
|
|
|
1320
1344
|
--tw-text-opacity: 1;
|
|
1321
1345
|
color: rgb(113 113 122 / var(--tw-text-opacity));
|
|
1322
1346
|
}
|
|
1347
|
+
.ups-db .text-zinc-600 {
|
|
1348
|
+
--tw-text-opacity: 1;
|
|
1349
|
+
color: rgb(82 82 91 / var(--tw-text-opacity));
|
|
1350
|
+
}
|
|
1323
1351
|
.ups-db .text-zinc-700 {
|
|
1324
1352
|
--tw-text-opacity: 1;
|
|
1325
1353
|
color: rgb(63 63 70 / var(--tw-text-opacity));
|
|
@@ -1342,6 +1370,9 @@
|
|
|
1342
1370
|
.ups-db .opacity-0 {
|
|
1343
1371
|
opacity: 0;
|
|
1344
1372
|
}
|
|
1373
|
+
.ups-db .opacity-100 {
|
|
1374
|
+
opacity: 1;
|
|
1375
|
+
}
|
|
1345
1376
|
.ups-db .opacity-50 {
|
|
1346
1377
|
opacity: 0.5;
|
|
1347
1378
|
}
|
|
@@ -1354,6 +1385,14 @@
|
|
|
1354
1385
|
.ups-db .opacity-90 {
|
|
1355
1386
|
opacity: 0.9;
|
|
1356
1387
|
}
|
|
1388
|
+
.ups-db .shadow {
|
|
1389
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1390
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1391
|
+
box-shadow:
|
|
1392
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
1393
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
1394
|
+
var(--tw-shadow);
|
|
1395
|
+
}
|
|
1357
1396
|
.ups-db .shadow-lg {
|
|
1358
1397
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1359
1398
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -1511,6 +1550,20 @@
|
|
|
1511
1550
|
.ups-db .duration-200 {
|
|
1512
1551
|
animation-duration: 200ms;
|
|
1513
1552
|
}
|
|
1553
|
+
.ups-db .ups-db .tabs-shadow-left {
|
|
1554
|
+
background:
|
|
1555
|
+
linear-gradient(
|
|
1556
|
+
to right,
|
|
1557
|
+
rgba(0, 0, 0, 0.08),
|
|
1558
|
+
rgba(0, 0, 0, 0));
|
|
1559
|
+
}
|
|
1560
|
+
.ups-db .ups-db .tabs-shadow-right {
|
|
1561
|
+
background:
|
|
1562
|
+
linear-gradient(
|
|
1563
|
+
to left,
|
|
1564
|
+
rgba(0, 0, 0, 0.08),
|
|
1565
|
+
rgba(0, 0, 0, 0));
|
|
1566
|
+
}
|
|
1514
1567
|
.ups-db .file\:border-0::file-selector-button {
|
|
1515
1568
|
border-width: 0px;
|
|
1516
1569
|
}
|
|
@@ -1524,6 +1577,14 @@
|
|
|
1524
1577
|
.ups-db .file\:font-medium::file-selector-button {
|
|
1525
1578
|
font-weight: 500;
|
|
1526
1579
|
}
|
|
1580
|
+
.ups-db .placeholder\:text-neutral-500::-moz-placeholder {
|
|
1581
|
+
--tw-text-opacity: 1;
|
|
1582
|
+
color: rgb(115 115 115 / var(--tw-text-opacity));
|
|
1583
|
+
}
|
|
1584
|
+
.ups-db .placeholder\:text-neutral-500::placeholder {
|
|
1585
|
+
--tw-text-opacity: 1;
|
|
1586
|
+
color: rgb(115 115 115 / var(--tw-text-opacity));
|
|
1587
|
+
}
|
|
1527
1588
|
.ups-db .placeholder\:text-zinc-500::-moz-placeholder {
|
|
1528
1589
|
--tw-text-opacity: 1;
|
|
1529
1590
|
color: rgb(113 113 122 / var(--tw-text-opacity));
|
|
@@ -1709,6 +1770,9 @@
|
|
|
1709
1770
|
.ups-db .peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
1710
1771
|
opacity: 0.7;
|
|
1711
1772
|
}
|
|
1773
|
+
.ups-db .data-\[disabled\=true\]\:pointer-events-none[data-disabled=true] {
|
|
1774
|
+
pointer-events: none;
|
|
1775
|
+
}
|
|
1712
1776
|
.ups-db .data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
1713
1777
|
pointer-events: none;
|
|
1714
1778
|
}
|
|
@@ -1740,6 +1804,10 @@
|
|
|
1740
1804
|
--tw-translate-x: var(--radix-toast-swipe-move-x);
|
|
1741
1805
|
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));
|
|
1742
1806
|
}
|
|
1807
|
+
.ups-db .data-\[selected\=true\]\:bg-neutral-100[data-selected=true] {
|
|
1808
|
+
--tw-bg-opacity: 1;
|
|
1809
|
+
background-color: rgb(245 245 245 / var(--tw-bg-opacity));
|
|
1810
|
+
}
|
|
1743
1811
|
.ups-db .data-\[state\=open\]\:bg-neutral-100[data-state=open] {
|
|
1744
1812
|
--tw-bg-opacity: 1;
|
|
1745
1813
|
background-color: rgb(245 245 245 / var(--tw-bg-opacity));
|
|
@@ -1748,6 +1816,10 @@
|
|
|
1748
1816
|
--tw-bg-opacity: 1;
|
|
1749
1817
|
background-color: rgb(244 244 245 / var(--tw-bg-opacity));
|
|
1750
1818
|
}
|
|
1819
|
+
.ups-db .data-\[selected\=true\]\:text-neutral-900[data-selected=true] {
|
|
1820
|
+
--tw-text-opacity: 1;
|
|
1821
|
+
color: rgb(23 23 23 / var(--tw-text-opacity));
|
|
1822
|
+
}
|
|
1751
1823
|
.ups-db .data-\[state\=open\]\:text-neutral-900[data-state=open] {
|
|
1752
1824
|
--tw-text-opacity: 1;
|
|
1753
1825
|
color: rgb(23 23 23 / var(--tw-text-opacity));
|
|
@@ -1756,6 +1828,9 @@
|
|
|
1756
1828
|
--tw-text-opacity: 1;
|
|
1757
1829
|
color: rgb(113 113 122 / var(--tw-text-opacity));
|
|
1758
1830
|
}
|
|
1831
|
+
.ups-db .data-\[disabled\=true\]\:opacity-50[data-disabled=true] {
|
|
1832
|
+
opacity: 0.5;
|
|
1833
|
+
}
|
|
1759
1834
|
.ups-db .data-\[disabled\]\:opacity-50[data-disabled] {
|
|
1760
1835
|
opacity: 0.5;
|
|
1761
1836
|
}
|
|
@@ -1918,6 +1993,14 @@
|
|
|
1918
1993
|
.ups-db .dark\:ring-offset-zinc-950:is(.dark *) {
|
|
1919
1994
|
--tw-ring-offset-color: #09090b;
|
|
1920
1995
|
}
|
|
1996
|
+
.ups-db .dark\:placeholder\:text-neutral-400:is(.dark *)::-moz-placeholder {
|
|
1997
|
+
--tw-text-opacity: 1;
|
|
1998
|
+
color: rgb(163 163 163 / var(--tw-text-opacity));
|
|
1999
|
+
}
|
|
2000
|
+
.ups-db .dark\:placeholder\:text-neutral-400:is(.dark *)::placeholder {
|
|
2001
|
+
--tw-text-opacity: 1;
|
|
2002
|
+
color: rgb(163 163 163 / var(--tw-text-opacity));
|
|
2003
|
+
}
|
|
1921
2004
|
.ups-db .dark\:placeholder\:text-zinc-400:is(.dark *)::-moz-placeholder {
|
|
1922
2005
|
--tw-text-opacity: 1;
|
|
1923
2006
|
color: rgb(161 161 170 / var(--tw-text-opacity));
|
|
@@ -1993,6 +2076,10 @@
|
|
|
1993
2076
|
--tw-ring-opacity: 1;
|
|
1994
2077
|
--tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity));
|
|
1995
2078
|
}
|
|
2079
|
+
.ups-db .dark\:data-\[selected\=true\]\:bg-neutral-800[data-selected=true]:is(.dark *) {
|
|
2080
|
+
--tw-bg-opacity: 1;
|
|
2081
|
+
background-color: rgb(38 38 38 / var(--tw-bg-opacity));
|
|
2082
|
+
}
|
|
1996
2083
|
.ups-db .dark\:data-\[state\=open\]\:bg-neutral-800[data-state=open]:is(.dark *) {
|
|
1997
2084
|
--tw-bg-opacity: 1;
|
|
1998
2085
|
background-color: rgb(38 38 38 / var(--tw-bg-opacity));
|
|
@@ -2001,6 +2088,10 @@
|
|
|
2001
2088
|
--tw-bg-opacity: 1;
|
|
2002
2089
|
background-color: rgb(39 39 42 / var(--tw-bg-opacity));
|
|
2003
2090
|
}
|
|
2091
|
+
.ups-db .dark\:data-\[selected\=true\]\:text-neutral-50[data-selected=true]:is(.dark *) {
|
|
2092
|
+
--tw-text-opacity: 1;
|
|
2093
|
+
color: rgb(250 250 250 / var(--tw-text-opacity));
|
|
2094
|
+
}
|
|
2004
2095
|
.ups-db .dark\:data-\[state\=open\]\:text-neutral-50[data-state=open]:is(.dark *) {
|
|
2005
2096
|
--tw-text-opacity: 1;
|
|
2006
2097
|
color: rgb(250 250 250 / var(--tw-text-opacity));
|
|
@@ -2062,6 +2153,59 @@
|
|
|
2062
2153
|
.ups-db .\[\&\>svg\]\:shrink-0 > svg {
|
|
2063
2154
|
flex-shrink: 0;
|
|
2064
2155
|
}
|
|
2156
|
+
.ups-db .\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
|
|
2157
|
+
padding-left: 0.5rem;
|
|
2158
|
+
padding-right: 0.5rem;
|
|
2159
|
+
}
|
|
2160
|
+
.ups-db .\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
|
|
2161
|
+
padding-top: 0.375rem;
|
|
2162
|
+
padding-bottom: 0.375rem;
|
|
2163
|
+
}
|
|
2164
|
+
.ups-db .\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
|
|
2165
|
+
font-size: 0.75rem;
|
|
2166
|
+
line-height: 1rem;
|
|
2167
|
+
}
|
|
2168
|
+
.ups-db .\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
|
|
2169
|
+
font-weight: 500;
|
|
2170
|
+
}
|
|
2171
|
+
.ups-db .\[\&_\[cmdk-group-heading\]\]\:text-neutral-500 [cmdk-group-heading] {
|
|
2172
|
+
--tw-text-opacity: 1;
|
|
2173
|
+
color: rgb(115 115 115 / var(--tw-text-opacity));
|
|
2174
|
+
}
|
|
2175
|
+
.ups-db .dark\:\[\&_\[cmdk-group-heading\]\]\:text-neutral-400 [cmdk-group-heading]:is(.dark *) {
|
|
2176
|
+
--tw-text-opacity: 1;
|
|
2177
|
+
color: rgb(163 163 163 / var(--tw-text-opacity));
|
|
2178
|
+
}
|
|
2179
|
+
.ups-db .\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~ [cmdk-group] {
|
|
2180
|
+
padding-top: 0px;
|
|
2181
|
+
}
|
|
2182
|
+
.ups-db .\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group] {
|
|
2183
|
+
padding-left: 0.5rem;
|
|
2184
|
+
padding-right: 0.5rem;
|
|
2185
|
+
}
|
|
2186
|
+
.ups-db .\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg {
|
|
2187
|
+
height: 1.25rem;
|
|
2188
|
+
}
|
|
2189
|
+
.ups-db .\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg {
|
|
2190
|
+
width: 1.25rem;
|
|
2191
|
+
}
|
|
2192
|
+
.ups-db .\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input] {
|
|
2193
|
+
height: 3rem;
|
|
2194
|
+
}
|
|
2195
|
+
.ups-db .\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item] {
|
|
2196
|
+
padding-left: 0.5rem;
|
|
2197
|
+
padding-right: 0.5rem;
|
|
2198
|
+
}
|
|
2199
|
+
.ups-db .\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item] {
|
|
2200
|
+
padding-top: 0.75rem;
|
|
2201
|
+
padding-bottom: 0.75rem;
|
|
2202
|
+
}
|
|
2203
|
+
.ups-db .\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg {
|
|
2204
|
+
height: 1.25rem;
|
|
2205
|
+
}
|
|
2206
|
+
.ups-db .\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
|
|
2207
|
+
width: 1.25rem;
|
|
2208
|
+
}
|
|
2065
2209
|
.ups-db .\[\&_svg\]\:pointer-events-none svg {
|
|
2066
2210
|
pointer-events: none;
|
|
2067
2211
|
}
|