shadcn-ui-react 0.7.9 → 0.7.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/README.md +1 -1
- package/bin/shadcn-ui-react.mjs +1 -1
- package/dist/index.cjs +1662 -1012
- package/dist/index.d.cts +104 -26
- package/dist/index.d.ts +104 -26
- package/dist/index.js +1626 -989
- package/dist/style.css +217 -163
- package/package.json +31 -19
package/dist/style.css
CHANGED
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
--container-sm: 24rem;
|
|
65
65
|
--container-md: 28rem;
|
|
66
66
|
--container-lg: 32rem;
|
|
67
|
+
--container-xl: 36rem;
|
|
67
68
|
--text-xs: 0.75rem;
|
|
68
69
|
--text-xs--line-height: calc(1 / 0.75);
|
|
69
70
|
--text-sm: 0.875rem;
|
|
@@ -347,12 +348,6 @@
|
|
|
347
348
|
.inset-y-0 {
|
|
348
349
|
inset-block: calc(var(--spacing) * 0);
|
|
349
350
|
}
|
|
350
|
-
.start {
|
|
351
|
-
inset-inline-start: var(--spacing);
|
|
352
|
-
}
|
|
353
|
-
.end {
|
|
354
|
-
inset-inline-end: var(--spacing);
|
|
355
|
-
}
|
|
356
351
|
.-top-12 {
|
|
357
352
|
top: calc(var(--spacing) * -12);
|
|
358
353
|
}
|
|
@@ -564,9 +559,6 @@
|
|
|
564
559
|
width: calc(var(--spacing) * 8);
|
|
565
560
|
height: calc(var(--spacing) * 8);
|
|
566
561
|
}
|
|
567
|
-
.h-\(--radix-select-trigger-height\) {
|
|
568
|
-
height: var(--radix-select-trigger-height);
|
|
569
|
-
}
|
|
570
562
|
.h-1\.5 {
|
|
571
563
|
height: calc(var(--spacing) * 1.5);
|
|
572
564
|
}
|
|
@@ -639,12 +631,12 @@
|
|
|
639
631
|
.max-h-72 {
|
|
640
632
|
max-height: calc(var(--spacing) * 72);
|
|
641
633
|
}
|
|
642
|
-
.max-h-96 {
|
|
643
|
-
max-height: calc(var(--spacing) * 96);
|
|
644
|
-
}
|
|
645
634
|
.max-h-\[300px\] {
|
|
646
635
|
max-height: 300px;
|
|
647
636
|
}
|
|
637
|
+
.max-h-full {
|
|
638
|
+
max-height: 100%;
|
|
639
|
+
}
|
|
648
640
|
.max-h-screen {
|
|
649
641
|
max-height: 100vh;
|
|
650
642
|
}
|
|
@@ -654,6 +646,9 @@
|
|
|
654
646
|
.min-h-\[60px\] {
|
|
655
647
|
min-height: 60px;
|
|
656
648
|
}
|
|
649
|
+
.min-h-screen {
|
|
650
|
+
min-height: 100vh;
|
|
651
|
+
}
|
|
657
652
|
.w-\(--radix-select-trigger-width\) {
|
|
658
653
|
width: var(--radix-select-trigger-width);
|
|
659
654
|
}
|
|
@@ -749,6 +744,9 @@
|
|
|
749
744
|
.max-w-md {
|
|
750
745
|
max-width: var(--container-md);
|
|
751
746
|
}
|
|
747
|
+
.max-w-xl {
|
|
748
|
+
max-width: var(--container-xl);
|
|
749
|
+
}
|
|
752
750
|
.min-w-\(--radix-select-trigger-width\) {
|
|
753
751
|
min-width: var(--radix-select-trigger-width);
|
|
754
752
|
}
|
|
@@ -853,6 +851,15 @@
|
|
|
853
851
|
.touch-none {
|
|
854
852
|
touch-action: none;
|
|
855
853
|
}
|
|
854
|
+
.resize {
|
|
855
|
+
resize: both;
|
|
856
|
+
}
|
|
857
|
+
.\[scrollbar-width\:thin\] {
|
|
858
|
+
scrollbar-width: thin;
|
|
859
|
+
}
|
|
860
|
+
.\[scrollbar-gutter\:stable\] {
|
|
861
|
+
scrollbar-gutter: stable;
|
|
862
|
+
}
|
|
856
863
|
.list-none {
|
|
857
864
|
list-style-type: none;
|
|
858
865
|
}
|
|
@@ -907,6 +914,9 @@
|
|
|
907
914
|
.gap-4 {
|
|
908
915
|
gap: calc(var(--spacing) * 4);
|
|
909
916
|
}
|
|
917
|
+
.gap-6 {
|
|
918
|
+
gap: calc(var(--spacing) * 6);
|
|
919
|
+
}
|
|
910
920
|
.space-y-1 {
|
|
911
921
|
:where(& > :not(:last-child)) {
|
|
912
922
|
--tw-space-y-reverse: 0;
|
|
@@ -980,9 +990,15 @@
|
|
|
980
990
|
.overflow-visible {
|
|
981
991
|
overflow: visible;
|
|
982
992
|
}
|
|
993
|
+
.\!overflow-x-hidden {
|
|
994
|
+
overflow-x: hidden !important;
|
|
995
|
+
}
|
|
983
996
|
.overflow-x-hidden {
|
|
984
997
|
overflow-x: hidden;
|
|
985
998
|
}
|
|
999
|
+
.\!overflow-y-scroll {
|
|
1000
|
+
overflow-y: scroll !important;
|
|
1001
|
+
}
|
|
986
1002
|
.overflow-y-auto {
|
|
987
1003
|
overflow-y: auto;
|
|
988
1004
|
}
|
|
@@ -1023,9 +1039,17 @@
|
|
|
1023
1039
|
border-top-left-radius: 10px;
|
|
1024
1040
|
border-top-right-radius: 10px;
|
|
1025
1041
|
}
|
|
1042
|
+
.rounded-l-md {
|
|
1043
|
+
border-top-left-radius: calc(var(--radius) - 2px);
|
|
1044
|
+
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
1045
|
+
}
|
|
1026
1046
|
.rounded-tl-sm {
|
|
1027
1047
|
border-top-left-radius: calc(var(--radius) - 4px);
|
|
1028
1048
|
}
|
|
1049
|
+
.rounded-r-md {
|
|
1050
|
+
border-top-right-radius: calc(var(--radius) - 2px);
|
|
1051
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
1052
|
+
}
|
|
1029
1053
|
.border {
|
|
1030
1054
|
border-style: var(--tw-border-style);
|
|
1031
1055
|
border-width: 1px;
|
|
@@ -1411,12 +1435,18 @@
|
|
|
1411
1435
|
.p-6 {
|
|
1412
1436
|
padding: calc(var(--spacing) * 6);
|
|
1413
1437
|
}
|
|
1438
|
+
.p-10 {
|
|
1439
|
+
padding: calc(var(--spacing) * 10);
|
|
1440
|
+
}
|
|
1414
1441
|
.p-\[1px\] {
|
|
1415
1442
|
padding: 1px;
|
|
1416
1443
|
}
|
|
1417
1444
|
.px-0 {
|
|
1418
1445
|
padding-inline: calc(var(--spacing) * 0);
|
|
1419
1446
|
}
|
|
1447
|
+
.px-1 {
|
|
1448
|
+
padding-inline: calc(var(--spacing) * 1);
|
|
1449
|
+
}
|
|
1420
1450
|
.px-2 {
|
|
1421
1451
|
padding-inline: calc(var(--spacing) * 2);
|
|
1422
1452
|
}
|
|
@@ -1498,6 +1528,9 @@
|
|
|
1498
1528
|
.pb-4 {
|
|
1499
1529
|
padding-bottom: calc(var(--spacing) * 4);
|
|
1500
1530
|
}
|
|
1531
|
+
.pb-230 {
|
|
1532
|
+
padding-bottom: calc(var(--spacing) * 230);
|
|
1533
|
+
}
|
|
1501
1534
|
.pl-2 {
|
|
1502
1535
|
padding-left: calc(var(--spacing) * 2);
|
|
1503
1536
|
}
|
|
@@ -1816,9 +1849,6 @@
|
|
|
1816
1849
|
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-fuchsia-500) 20%, transparent) var(--tw-shadow-alpha), transparent);
|
|
1817
1850
|
}
|
|
1818
1851
|
}
|
|
1819
|
-
.ring-destructive {
|
|
1820
|
-
--tw-ring-color: var(--destructive);
|
|
1821
|
-
}
|
|
1822
1852
|
.ring-destructive\/20 {
|
|
1823
1853
|
--tw-ring-color: var(--destructive);
|
|
1824
1854
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1950,9 +1980,6 @@
|
|
|
1950
1980
|
-moz-user-select: none;
|
|
1951
1981
|
user-select: none;
|
|
1952
1982
|
}
|
|
1953
|
-
.\[scrollbar-gutter\:stable\] {
|
|
1954
|
-
scrollbar-gutter: stable;
|
|
1955
|
-
}
|
|
1956
1983
|
.duration-200 {
|
|
1957
1984
|
animation-duration: 200ms;
|
|
1958
1985
|
}
|
|
@@ -2152,14 +2179,54 @@
|
|
|
2152
2179
|
z-index: 20;
|
|
2153
2180
|
}
|
|
2154
2181
|
}
|
|
2155
|
-
.focus-within\:border-
|
|
2182
|
+
.focus-within\:border-b-2 {
|
|
2183
|
+
&:focus-within {
|
|
2184
|
+
border-bottom-style: var(--tw-border-style);
|
|
2185
|
+
border-bottom-width: 2px;
|
|
2186
|
+
}
|
|
2187
|
+
}
|
|
2188
|
+
.focus-within\:border-destructive {
|
|
2189
|
+
&:focus-within {
|
|
2190
|
+
border-color: var(--destructive);
|
|
2191
|
+
}
|
|
2192
|
+
}
|
|
2193
|
+
.focus-within\:border-primary {
|
|
2156
2194
|
&:focus-within {
|
|
2157
2195
|
border-color: var(--primary);
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
.focus-within\:bg-input\/70 {
|
|
2199
|
+
&:focus-within {
|
|
2200
|
+
background-color: var(--input);
|
|
2158
2201
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2159
|
-
|
|
2202
|
+
background-color: color-mix(in oklab, var(--input) 70%, transparent);
|
|
2160
2203
|
}
|
|
2161
2204
|
}
|
|
2162
2205
|
}
|
|
2206
|
+
.focus-within\:bg-input\/80 {
|
|
2207
|
+
&:focus-within {
|
|
2208
|
+
background-color: var(--input);
|
|
2209
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2210
|
+
background-color: color-mix(in oklab, var(--input) 80%, transparent);
|
|
2211
|
+
}
|
|
2212
|
+
}
|
|
2213
|
+
}
|
|
2214
|
+
.focus-within\:underline {
|
|
2215
|
+
&:focus-within {
|
|
2216
|
+
text-decoration-line: underline;
|
|
2217
|
+
}
|
|
2218
|
+
}
|
|
2219
|
+
.focus-within\:ring-0 {
|
|
2220
|
+
&:focus-within {
|
|
2221
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2222
|
+
box-shadow:
|
|
2223
|
+
var(--tw-inset-shadow),
|
|
2224
|
+
var(--tw-inset-ring-shadow),
|
|
2225
|
+
var(--tw-ring-offset-shadow),
|
|
2226
|
+
var(--tw-ring-shadow),
|
|
2227
|
+
var(--tw-shadow);
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2163
2230
|
.focus-within\:ring-2 {
|
|
2164
2231
|
&:focus-within {
|
|
2165
2232
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
@@ -2171,6 +2238,14 @@
|
|
|
2171
2238
|
var(--tw-shadow);
|
|
2172
2239
|
}
|
|
2173
2240
|
}
|
|
2241
|
+
.focus-within\:ring-destructive\/20 {
|
|
2242
|
+
&:focus-within {
|
|
2243
|
+
--tw-ring-color: var(--destructive);
|
|
2244
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2245
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
2246
|
+
}
|
|
2247
|
+
}
|
|
2248
|
+
}
|
|
2174
2249
|
.focus-within\:ring-primary\/20 {
|
|
2175
2250
|
&:focus-within {
|
|
2176
2251
|
--tw-ring-color: var(--primary);
|
|
@@ -2179,6 +2254,11 @@
|
|
|
2179
2254
|
}
|
|
2180
2255
|
}
|
|
2181
2256
|
}
|
|
2257
|
+
.focus-within\:ring-ring {
|
|
2258
|
+
&:focus-within {
|
|
2259
|
+
--tw-ring-color: var(--ring);
|
|
2260
|
+
}
|
|
2261
|
+
}
|
|
2182
2262
|
.hover\:border-gray-400 {
|
|
2183
2263
|
&:hover {
|
|
2184
2264
|
@media (hover: hover) {
|
|
@@ -2374,13 +2454,6 @@
|
|
|
2374
2454
|
}
|
|
2375
2455
|
}
|
|
2376
2456
|
}
|
|
2377
|
-
.hover\:bg-primary {
|
|
2378
|
-
&:hover {
|
|
2379
|
-
@media (hover: hover) {
|
|
2380
|
-
background-color: var(--primary);
|
|
2381
|
-
}
|
|
2382
|
-
}
|
|
2383
|
-
}
|
|
2384
2457
|
.hover\:bg-primary\/15 {
|
|
2385
2458
|
&:hover {
|
|
2386
2459
|
@media (hover: hover) {
|
|
@@ -2507,13 +2580,6 @@
|
|
|
2507
2580
|
}
|
|
2508
2581
|
}
|
|
2509
2582
|
}
|
|
2510
|
-
.hover\:text-primary-foreground {
|
|
2511
|
-
&:hover {
|
|
2512
|
-
@media (hover: hover) {
|
|
2513
|
-
color: var(--primary-foreground);
|
|
2514
|
-
}
|
|
2515
|
-
}
|
|
2516
|
-
}
|
|
2517
2583
|
.hover\:underline {
|
|
2518
2584
|
&:hover {
|
|
2519
2585
|
@media (hover: hover) {
|
|
@@ -2682,21 +2748,11 @@
|
|
|
2682
2748
|
}
|
|
2683
2749
|
}
|
|
2684
2750
|
}
|
|
2685
|
-
.focus\:bg-primary {
|
|
2686
|
-
&:focus {
|
|
2687
|
-
background-color: var(--primary);
|
|
2688
|
-
}
|
|
2689
|
-
}
|
|
2690
2751
|
.focus\:text-accent-foreground {
|
|
2691
2752
|
&:focus {
|
|
2692
2753
|
color: var(--accent-foreground);
|
|
2693
2754
|
}
|
|
2694
2755
|
}
|
|
2695
|
-
.focus\:text-primary-foreground {
|
|
2696
|
-
&:focus {
|
|
2697
|
-
color: var(--primary-foreground);
|
|
2698
|
-
}
|
|
2699
|
-
}
|
|
2700
2756
|
.focus\:underline {
|
|
2701
2757
|
&:focus {
|
|
2702
2758
|
text-decoration-line: underline;
|
|
@@ -2748,14 +2804,6 @@
|
|
|
2748
2804
|
}
|
|
2749
2805
|
}
|
|
2750
2806
|
}
|
|
2751
|
-
.focus\:ring-destructive\/40 {
|
|
2752
|
-
&:focus {
|
|
2753
|
-
--tw-ring-color: var(--destructive);
|
|
2754
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2755
|
-
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
2756
|
-
}
|
|
2757
|
-
}
|
|
2758
|
-
}
|
|
2759
2807
|
.focus\:ring-primary\/20 {
|
|
2760
2808
|
&:focus {
|
|
2761
2809
|
--tw-ring-color: var(--primary);
|
|
@@ -2949,47 +2997,24 @@
|
|
|
2949
2997
|
background-color: var(--accent);
|
|
2950
2998
|
}
|
|
2951
2999
|
}
|
|
2952
|
-
.aria-selected\:bg-accent\/50 {
|
|
2953
|
-
&[aria-selected=true] {
|
|
2954
|
-
background-color: var(--accent);
|
|
2955
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2956
|
-
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
2957
|
-
}
|
|
2958
|
-
}
|
|
2959
|
-
}
|
|
2960
3000
|
.aria-selected\:text-accent-foreground {
|
|
2961
3001
|
&[aria-selected=true] {
|
|
2962
3002
|
color: var(--accent-foreground);
|
|
2963
3003
|
}
|
|
2964
3004
|
}
|
|
2965
|
-
.aria-selected\:text-muted-foreground {
|
|
2966
|
-
&[aria-selected=true] {
|
|
2967
|
-
color: var(--muted-foreground);
|
|
2968
|
-
}
|
|
2969
|
-
}
|
|
2970
|
-
.aria-selected\:opacity-30 {
|
|
2971
|
-
&[aria-selected=true] {
|
|
2972
|
-
opacity: 30%;
|
|
2973
|
-
}
|
|
2974
|
-
}
|
|
2975
|
-
.aria-selected\:opacity-100 {
|
|
2976
|
-
&[aria-selected=true] {
|
|
2977
|
-
opacity: 100%;
|
|
2978
|
-
}
|
|
2979
|
-
}
|
|
2980
3005
|
.aria-\[orientation\=vertical\]\:flex-col {
|
|
2981
3006
|
&[aria-orientation=vertical] {
|
|
2982
3007
|
flex-direction: column;
|
|
2983
3008
|
}
|
|
2984
3009
|
}
|
|
2985
|
-
.data-
|
|
2986
|
-
&[data-
|
|
2987
|
-
|
|
3010
|
+
.data-highlighted\:bg-accent {
|
|
3011
|
+
&[data-highlighted] {
|
|
3012
|
+
background-color: var(--accent);
|
|
2988
3013
|
}
|
|
2989
3014
|
}
|
|
2990
|
-
.data-
|
|
2991
|
-
&[data-
|
|
2992
|
-
|
|
3015
|
+
.data-highlighted\:text-accent-foreground {
|
|
3016
|
+
&[data-highlighted] {
|
|
3017
|
+
color: var(--accent-foreground);
|
|
2993
3018
|
}
|
|
2994
3019
|
}
|
|
2995
3020
|
.data-\[accent\=on\]\:before\:bg-\[color\:var\(--dt-accent\)\] {
|
|
@@ -3200,10 +3225,9 @@
|
|
|
3200
3225
|
}
|
|
3201
3226
|
}
|
|
3202
3227
|
}
|
|
3203
|
-
.data-\[
|
|
3204
|
-
&[data-
|
|
3205
|
-
|
|
3206
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3228
|
+
.data-\[placeholder\]\:text-muted-foreground {
|
|
3229
|
+
&[data-placeholder] {
|
|
3230
|
+
color: var(--muted-foreground);
|
|
3207
3231
|
}
|
|
3208
3232
|
}
|
|
3209
3233
|
.data-\[side\=bottom\]\:slide-in-from-top-2 {
|
|
@@ -3211,34 +3235,16 @@
|
|
|
3211
3235
|
--tw-enter-translate-y: -0.5rem;
|
|
3212
3236
|
}
|
|
3213
3237
|
}
|
|
3214
|
-
.data-\[side\=left\]\:-translate-x-1 {
|
|
3215
|
-
&[data-side=left] {
|
|
3216
|
-
--tw-translate-x: calc(var(--spacing) * -1);
|
|
3217
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3218
|
-
}
|
|
3219
|
-
}
|
|
3220
3238
|
.data-\[side\=left\]\:slide-in-from-right-2 {
|
|
3221
3239
|
&[data-side=left] {
|
|
3222
3240
|
--tw-enter-translate-x: 0.5rem;
|
|
3223
3241
|
}
|
|
3224
3242
|
}
|
|
3225
|
-
.data-\[side\=right\]\:translate-x-1 {
|
|
3226
|
-
&[data-side=right] {
|
|
3227
|
-
--tw-translate-x: calc(var(--spacing) * 1);
|
|
3228
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3229
|
-
}
|
|
3230
|
-
}
|
|
3231
3243
|
.data-\[side\=right\]\:slide-in-from-left-2 {
|
|
3232
3244
|
&[data-side=right] {
|
|
3233
3245
|
--tw-enter-translate-x: -0.5rem;
|
|
3234
3246
|
}
|
|
3235
3247
|
}
|
|
3236
|
-
.data-\[side\=top\]\:-translate-y-1 {
|
|
3237
|
-
&[data-side=top] {
|
|
3238
|
-
--tw-translate-y: calc(var(--spacing) * -1);
|
|
3239
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3240
|
-
}
|
|
3241
|
-
}
|
|
3242
3248
|
.data-\[side\=top\]\:slide-in-from-bottom-2 {
|
|
3243
3249
|
&[data-side=top] {
|
|
3244
3250
|
--tw-enter-translate-y: 0.5rem;
|
|
@@ -3765,13 +3771,10 @@
|
|
|
3765
3771
|
gap: calc(var(--spacing) * 8);
|
|
3766
3772
|
}
|
|
3767
3773
|
}
|
|
3768
|
-
.sm\:
|
|
3774
|
+
.sm\:gap-x-4 {
|
|
3769
3775
|
@media (width >= 40rem) {
|
|
3770
|
-
:
|
|
3771
|
-
|
|
3772
|
-
margin-block-start: calc(calc(var(--spacing) * 0) * var(--tw-space-y-reverse));
|
|
3773
|
-
margin-block-end: calc(calc(var(--spacing) * 0) * calc(1 - var(--tw-space-y-reverse)));
|
|
3774
|
-
}
|
|
3776
|
+
-moz-column-gap: calc(var(--spacing) * 4);
|
|
3777
|
+
column-gap: calc(var(--spacing) * 4);
|
|
3775
3778
|
}
|
|
3776
3779
|
}
|
|
3777
3780
|
.sm\:space-x-2 {
|
|
@@ -3783,13 +3786,9 @@
|
|
|
3783
3786
|
}
|
|
3784
3787
|
}
|
|
3785
3788
|
}
|
|
3786
|
-
.sm\:
|
|
3789
|
+
.sm\:gap-y-0 {
|
|
3787
3790
|
@media (width >= 40rem) {
|
|
3788
|
-
:
|
|
3789
|
-
--tw-space-x-reverse: 0;
|
|
3790
|
-
margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
|
|
3791
|
-
margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
|
|
3792
|
-
}
|
|
3791
|
+
row-gap: calc(var(--spacing) * 0);
|
|
3793
3792
|
}
|
|
3794
3793
|
}
|
|
3795
3794
|
.sm\:rounded-lg {
|
|
@@ -3999,6 +3998,11 @@
|
|
|
3999
3998
|
max-height: calc(var(--spacing) * 72);
|
|
4000
3999
|
}
|
|
4001
4000
|
}
|
|
4001
|
+
.\[\&_\[data-radix-select-viewport\]\]\:\[scrollbar-gutter\:stable\] {
|
|
4002
|
+
& [data-radix-select-viewport] {
|
|
4003
|
+
scrollbar-gutter: stable;
|
|
4004
|
+
}
|
|
4005
|
+
}
|
|
4002
4006
|
.\[\&_\[data-radix-select-viewport\]\]\:overflow-y-auto {
|
|
4003
4007
|
& [data-radix-select-viewport] {
|
|
4004
4008
|
overflow-y: auto;
|
|
@@ -4009,11 +4013,6 @@
|
|
|
4009
4013
|
overscroll-behavior: contain;
|
|
4010
4014
|
}
|
|
4011
4015
|
}
|
|
4012
|
-
.\[\&_\[data-radix-select-viewport\]\]\:\[scrollbar-gutter\:stable\] {
|
|
4013
|
-
& [data-radix-select-viewport] {
|
|
4014
|
-
scrollbar-gutter: stable;
|
|
4015
|
-
}
|
|
4016
|
-
}
|
|
4017
4016
|
.\[\&_p\]\:leading-relaxed {
|
|
4018
4017
|
& p {
|
|
4019
4018
|
--tw-leading: var(--leading-relaxed);
|
|
@@ -4246,56 +4245,29 @@
|
|
|
4246
4245
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
4247
4246
|
}
|
|
4248
4247
|
}
|
|
4249
|
-
.\[
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
4253
|
-
}
|
|
4254
|
-
}
|
|
4255
|
-
.\[\&\:has\(\>\.day-range-start\)\]\:rounded-l-md {
|
|
4256
|
-
&:has(> .day-range-start) {
|
|
4257
|
-
border-top-left-radius: calc(var(--radius) - 2px);
|
|
4258
|
-
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
4259
|
-
}
|
|
4260
|
-
}
|
|
4261
|
-
.\[\&\:has\(\[aria-selected\]\)\]\:rounded-md {
|
|
4262
|
-
&:has([aria-selected]) {
|
|
4263
|
-
border-radius: calc(var(--radius) - 2px);
|
|
4264
|
-
}
|
|
4265
|
-
}
|
|
4266
|
-
.\[\&\:has\(\[aria-selected\]\)\]\:bg-accent {
|
|
4267
|
-
&:has([aria-selected]) {
|
|
4268
|
-
background-color: var(--accent);
|
|
4248
|
+
.\[\&\:\:-webkit-scrollbar\]\:\!block {
|
|
4249
|
+
&::-webkit-scrollbar {
|
|
4250
|
+
display: block !important;
|
|
4269
4251
|
}
|
|
4270
4252
|
}
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
border-top-left-radius: calc(var(--radius) - 2px);
|
|
4275
|
-
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
4276
|
-
}
|
|
4253
|
+
.\[\&\:\:-webkit-scrollbar\]\:\!w-2 {
|
|
4254
|
+
&::-webkit-scrollbar {
|
|
4255
|
+
width: calc(var(--spacing) * 2) !important;
|
|
4277
4256
|
}
|
|
4278
4257
|
}
|
|
4279
|
-
|
|
4280
|
-
|
|
4281
|
-
|
|
4282
|
-
border-top-right-radius: calc(var(--radius) - 2px);
|
|
4283
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
4284
|
-
}
|
|
4258
|
+
.\[\&\:\:-webkit-scrollbar-thumb\]\:\!rounded-full {
|
|
4259
|
+
&::-webkit-scrollbar-thumb {
|
|
4260
|
+
border-radius: calc(infinity * 1px) !important;
|
|
4285
4261
|
}
|
|
4286
4262
|
}
|
|
4287
|
-
.\[
|
|
4288
|
-
|
|
4289
|
-
background-color: var(--
|
|
4290
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4291
|
-
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
4292
|
-
}
|
|
4263
|
+
.\[\&\:\:-webkit-scrollbar-thumb\]\:\!bg-border {
|
|
4264
|
+
&::-webkit-scrollbar-thumb {
|
|
4265
|
+
background-color: var(--border) !important;
|
|
4293
4266
|
}
|
|
4294
4267
|
}
|
|
4295
|
-
.\[
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
4268
|
+
.\[\&\:\:-webkit-scrollbar-track\]\:\!bg-transparent {
|
|
4269
|
+
&::-webkit-scrollbar-track {
|
|
4270
|
+
background-color: transparent !important;
|
|
4299
4271
|
}
|
|
4300
4272
|
}
|
|
4301
4273
|
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
|
|
@@ -4311,6 +4283,73 @@
|
|
|
4311
4283
|
}
|
|
4312
4284
|
}
|
|
4313
4285
|
}
|
|
4286
|
+
.\[\&\>button\]\:cursor-not-allowed {
|
|
4287
|
+
& > button {
|
|
4288
|
+
cursor: not-allowed;
|
|
4289
|
+
}
|
|
4290
|
+
}
|
|
4291
|
+
.\[\&\>button\]\:rounded-none {
|
|
4292
|
+
& > button {
|
|
4293
|
+
border-radius: 0;
|
|
4294
|
+
}
|
|
4295
|
+
}
|
|
4296
|
+
.\[\&\>button\]\:rounded-l-md {
|
|
4297
|
+
& > button {
|
|
4298
|
+
border-top-left-radius: calc(var(--radius) - 2px);
|
|
4299
|
+
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
4300
|
+
}
|
|
4301
|
+
}
|
|
4302
|
+
.\[\&\>button\]\:rounded-r-md {
|
|
4303
|
+
& > button {
|
|
4304
|
+
border-top-right-radius: calc(var(--radius) - 2px);
|
|
4305
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
4306
|
+
}
|
|
4307
|
+
}
|
|
4308
|
+
.\[\&\>button\]\:bg-accent {
|
|
4309
|
+
& > button {
|
|
4310
|
+
background-color: var(--accent);
|
|
4311
|
+
}
|
|
4312
|
+
}
|
|
4313
|
+
.\[\&\>button\]\:bg-primary {
|
|
4314
|
+
& > button {
|
|
4315
|
+
background-color: var(--primary);
|
|
4316
|
+
}
|
|
4317
|
+
}
|
|
4318
|
+
.\[\&\>button\]\:text-accent-foreground {
|
|
4319
|
+
& > button {
|
|
4320
|
+
color: var(--accent-foreground);
|
|
4321
|
+
}
|
|
4322
|
+
}
|
|
4323
|
+
.\[\&\>button\]\:text-muted-foreground {
|
|
4324
|
+
& > button {
|
|
4325
|
+
color: var(--muted-foreground);
|
|
4326
|
+
}
|
|
4327
|
+
}
|
|
4328
|
+
.\[\&\>button\]\:text-primary-foreground {
|
|
4329
|
+
& > button {
|
|
4330
|
+
color: var(--primary-foreground);
|
|
4331
|
+
}
|
|
4332
|
+
}
|
|
4333
|
+
.\[\&\>button\:focus\]\:bg-primary {
|
|
4334
|
+
& > button:focus {
|
|
4335
|
+
background-color: var(--primary);
|
|
4336
|
+
}
|
|
4337
|
+
}
|
|
4338
|
+
.\[\&\>button\:focus\]\:text-primary-foreground {
|
|
4339
|
+
& > button:focus {
|
|
4340
|
+
color: var(--primary-foreground);
|
|
4341
|
+
}
|
|
4342
|
+
}
|
|
4343
|
+
.\[\&\>button\:hover\]\:bg-primary {
|
|
4344
|
+
& > button:hover {
|
|
4345
|
+
background-color: var(--primary);
|
|
4346
|
+
}
|
|
4347
|
+
}
|
|
4348
|
+
.\[\&\>button\:hover\]\:text-primary-foreground {
|
|
4349
|
+
& > button:hover {
|
|
4350
|
+
color: var(--primary-foreground);
|
|
4351
|
+
}
|
|
4352
|
+
}
|
|
4314
4353
|
.\[\&\>span\]\:line-clamp-1 {
|
|
4315
4354
|
& > span {
|
|
4316
4355
|
overflow: hidden;
|
|
@@ -4491,6 +4530,21 @@
|
|
|
4491
4530
|
color: var(--foreground);
|
|
4492
4531
|
}
|
|
4493
4532
|
}
|
|
4533
|
+
[data-select-scroll-content] {
|
|
4534
|
+
overflow-y: scroll !important;
|
|
4535
|
+
scrollbar-width: thin !important;
|
|
4536
|
+
}
|
|
4537
|
+
[data-select-scroll-content]::-webkit-scrollbar {
|
|
4538
|
+
display: block !important;
|
|
4539
|
+
width: 8px !important;
|
|
4540
|
+
}
|
|
4541
|
+
[data-select-scroll-content]::-webkit-scrollbar-track {
|
|
4542
|
+
background: transparent !important;
|
|
4543
|
+
}
|
|
4544
|
+
[data-select-scroll-content]::-webkit-scrollbar-thumb {
|
|
4545
|
+
border-radius: 9999px !important;
|
|
4546
|
+
background: hsl(var(--border)) !important;
|
|
4547
|
+
}
|
|
4494
4548
|
@keyframes enter {
|
|
4495
4549
|
from {
|
|
4496
4550
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -4658,4 +4712,4 @@
|
|
|
4658
4712
|
}
|
|
4659
4713
|
}
|
|
4660
4714
|
}
|
|
4661
|
-
/*! tailwindcss v4.
|
|
4715
|
+
/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
|