shadcn-ui-react 0.7.1 → 0.7.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/README.md +450 -336
- package/dist/index.cjs +2183 -1465
- package/dist/index.d.cts +273 -912
- package/dist/index.d.ts +273 -912
- package/dist/index.js +2207 -1504
- package/dist/style.css +173 -44
- package/package.json +6 -6
package/dist/style.css
CHANGED
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
--color-white: #fff;
|
|
63
63
|
--spacing: 0.25rem;
|
|
64
64
|
--container-sm: 24rem;
|
|
65
|
+
--container-md: 28rem;
|
|
65
66
|
--container-lg: 32rem;
|
|
66
67
|
--text-xs: 0.75rem;
|
|
67
68
|
--text-xs--line-height: calc(1 / 0.75);
|
|
@@ -511,9 +512,6 @@
|
|
|
511
512
|
.ml-auto {
|
|
512
513
|
margin-left: auto;
|
|
513
514
|
}
|
|
514
|
-
.ml-px {
|
|
515
|
-
margin-left: 1px;
|
|
516
|
-
}
|
|
517
515
|
.block {
|
|
518
516
|
display: block;
|
|
519
517
|
}
|
|
@@ -597,9 +595,6 @@
|
|
|
597
595
|
.h-36 {
|
|
598
596
|
height: calc(var(--spacing) * 36);
|
|
599
597
|
}
|
|
600
|
-
.h-\[1px\] {
|
|
601
|
-
height: 1px;
|
|
602
|
-
}
|
|
603
598
|
.h-\[420px\] {
|
|
604
599
|
height: 420px;
|
|
605
600
|
}
|
|
@@ -618,6 +613,9 @@
|
|
|
618
613
|
.h-px {
|
|
619
614
|
height: 1px;
|
|
620
615
|
}
|
|
616
|
+
.max-h-80 {
|
|
617
|
+
max-height: calc(var(--spacing) * 80);
|
|
618
|
+
}
|
|
621
619
|
.max-h-96 {
|
|
622
620
|
max-height: calc(var(--spacing) * 96);
|
|
623
621
|
}
|
|
@@ -651,6 +649,12 @@
|
|
|
651
649
|
.w-4 {
|
|
652
650
|
width: calc(var(--spacing) * 4);
|
|
653
651
|
}
|
|
652
|
+
.w-5 {
|
|
653
|
+
width: calc(var(--spacing) * 5);
|
|
654
|
+
}
|
|
655
|
+
.w-6 {
|
|
656
|
+
width: calc(var(--spacing) * 6);
|
|
657
|
+
}
|
|
654
658
|
.w-7 {
|
|
655
659
|
width: calc(var(--spacing) * 7);
|
|
656
660
|
}
|
|
@@ -693,9 +697,6 @@
|
|
|
693
697
|
.w-72 {
|
|
694
698
|
width: calc(var(--spacing) * 72);
|
|
695
699
|
}
|
|
696
|
-
.w-\[1px\] {
|
|
697
|
-
width: 1px;
|
|
698
|
-
}
|
|
699
700
|
.w-\[4\.5rem\] {
|
|
700
701
|
width: 4.5rem;
|
|
701
702
|
}
|
|
@@ -719,6 +720,9 @@
|
|
|
719
720
|
max-width: -moz-max-content;
|
|
720
721
|
max-width: max-content;
|
|
721
722
|
}
|
|
723
|
+
.max-w-md {
|
|
724
|
+
max-width: var(--container-md);
|
|
725
|
+
}
|
|
722
726
|
.min-w-\(--radix-select-trigger-width\) {
|
|
723
727
|
min-width: var(--radix-select-trigger-width);
|
|
724
728
|
}
|
|
@@ -728,6 +732,9 @@
|
|
|
728
732
|
.min-w-32 {
|
|
729
733
|
min-width: calc(var(--spacing) * 32);
|
|
730
734
|
}
|
|
735
|
+
.min-w-48 {
|
|
736
|
+
min-width: calc(var(--spacing) * 48);
|
|
737
|
+
}
|
|
731
738
|
.min-w-\[8rem\] {
|
|
732
739
|
min-width: 8rem;
|
|
733
740
|
}
|
|
@@ -740,6 +747,10 @@
|
|
|
740
747
|
.min-w-full {
|
|
741
748
|
min-width: 100%;
|
|
742
749
|
}
|
|
750
|
+
.min-w-max {
|
|
751
|
+
min-width: -moz-max-content;
|
|
752
|
+
min-width: max-content;
|
|
753
|
+
}
|
|
743
754
|
.flex-1 {
|
|
744
755
|
flex: 1;
|
|
745
756
|
}
|
|
@@ -807,6 +818,9 @@
|
|
|
807
818
|
.cursor-default {
|
|
808
819
|
cursor: default;
|
|
809
820
|
}
|
|
821
|
+
.cursor-not-allowed {
|
|
822
|
+
cursor: not-allowed;
|
|
823
|
+
}
|
|
810
824
|
.cursor-pointer {
|
|
811
825
|
cursor: pointer;
|
|
812
826
|
}
|
|
@@ -849,9 +863,6 @@
|
|
|
849
863
|
.justify-end {
|
|
850
864
|
justify-content: flex-end;
|
|
851
865
|
}
|
|
852
|
-
.gap-0 {
|
|
853
|
-
gap: calc(var(--spacing) * 0);
|
|
854
|
-
}
|
|
855
866
|
.gap-0\.5 {
|
|
856
867
|
gap: calc(var(--spacing) * 0.5);
|
|
857
868
|
}
|
|
@@ -926,9 +937,6 @@
|
|
|
926
937
|
.gap-y-1 {
|
|
927
938
|
row-gap: calc(var(--spacing) * 1);
|
|
928
939
|
}
|
|
929
|
-
.self-center {
|
|
930
|
-
align-self: center;
|
|
931
|
-
}
|
|
932
940
|
.overflow-auto {
|
|
933
941
|
overflow: auto;
|
|
934
942
|
}
|
|
@@ -1036,6 +1044,12 @@
|
|
|
1036
1044
|
.border-destructive {
|
|
1037
1045
|
border-color: var(--destructive);
|
|
1038
1046
|
}
|
|
1047
|
+
.border-destructive\/20 {
|
|
1048
|
+
border-color: var(--destructive);
|
|
1049
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1050
|
+
border-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1039
1053
|
.border-destructive\/40 {
|
|
1040
1054
|
border-color: var(--destructive);
|
|
1041
1055
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1069,12 +1083,6 @@
|
|
|
1069
1083
|
.border-primary {
|
|
1070
1084
|
border-color: var(--primary);
|
|
1071
1085
|
}
|
|
1072
|
-
.border-primary\/20 {
|
|
1073
|
-
border-color: var(--primary);
|
|
1074
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1075
|
-
border-color: color-mix(in oklab, var(--primary) 20%, transparent);
|
|
1076
|
-
}
|
|
1077
|
-
}
|
|
1078
1086
|
.border-primary\/50 {
|
|
1079
1087
|
border-color: var(--primary);
|
|
1080
1088
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1168,6 +1176,12 @@
|
|
|
1168
1176
|
.bg-destructive {
|
|
1169
1177
|
background-color: var(--destructive);
|
|
1170
1178
|
}
|
|
1179
|
+
.bg-destructive\/5 {
|
|
1180
|
+
background-color: var(--destructive);
|
|
1181
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1182
|
+
background-color: color-mix(in oklab, var(--destructive) 5%, transparent);
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1171
1185
|
.bg-destructive\/10 {
|
|
1172
1186
|
background-color: var(--destructive);
|
|
1173
1187
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1219,12 +1233,6 @@
|
|
|
1219
1233
|
.bg-popover {
|
|
1220
1234
|
background-color: var(--popover);
|
|
1221
1235
|
}
|
|
1222
|
-
.bg-popover\/80 {
|
|
1223
|
-
background-color: var(--popover);
|
|
1224
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1225
|
-
background-color: color-mix(in oklab, var(--popover) 80%, transparent);
|
|
1226
|
-
}
|
|
1227
|
-
}
|
|
1228
1236
|
.bg-primary {
|
|
1229
1237
|
background-color: var(--primary);
|
|
1230
1238
|
}
|
|
@@ -1341,6 +1349,9 @@
|
|
|
1341
1349
|
.fill-primary {
|
|
1342
1350
|
fill: var(--primary);
|
|
1343
1351
|
}
|
|
1352
|
+
.stroke-\[2\.5\] {
|
|
1353
|
+
stroke-width: 2.5;
|
|
1354
|
+
}
|
|
1344
1355
|
.object-cover {
|
|
1345
1356
|
-o-object-fit: cover;
|
|
1346
1357
|
object-fit: cover;
|
|
@@ -1378,6 +1389,9 @@
|
|
|
1378
1389
|
.px-3 {
|
|
1379
1390
|
padding-inline: calc(var(--spacing) * 3);
|
|
1380
1391
|
}
|
|
1392
|
+
.px-3\.5 {
|
|
1393
|
+
padding-inline: calc(var(--spacing) * 3.5);
|
|
1394
|
+
}
|
|
1381
1395
|
.px-4 {
|
|
1382
1396
|
padding-inline: calc(var(--spacing) * 4);
|
|
1383
1397
|
}
|
|
@@ -1390,9 +1404,6 @@
|
|
|
1390
1404
|
.px-10 {
|
|
1391
1405
|
padding-inline: calc(var(--spacing) * 10);
|
|
1392
1406
|
}
|
|
1393
|
-
.px-\[0\.9rem\] {
|
|
1394
|
-
padding-inline: 0.9rem;
|
|
1395
|
-
}
|
|
1396
1407
|
.py-0\.5 {
|
|
1397
1408
|
padding-block: calc(var(--spacing) * 0.5);
|
|
1398
1409
|
}
|
|
@@ -1411,15 +1422,9 @@
|
|
|
1411
1422
|
.py-4 {
|
|
1412
1423
|
padding-block: calc(var(--spacing) * 4);
|
|
1413
1424
|
}
|
|
1414
|
-
.py-5 {
|
|
1415
|
-
padding-block: calc(var(--spacing) * 5);
|
|
1416
|
-
}
|
|
1417
1425
|
.py-6 {
|
|
1418
1426
|
padding-block: calc(var(--spacing) * 6);
|
|
1419
1427
|
}
|
|
1420
|
-
.py-10 {
|
|
1421
|
-
padding-block: calc(var(--spacing) * 10);
|
|
1422
|
-
}
|
|
1423
1428
|
.pt-0 {
|
|
1424
1429
|
padding-top: calc(var(--spacing) * 0);
|
|
1425
1430
|
}
|
|
@@ -1519,6 +1524,10 @@
|
|
|
1519
1524
|
--tw-leading: 1;
|
|
1520
1525
|
line-height: 1;
|
|
1521
1526
|
}
|
|
1527
|
+
.leading-relaxed {
|
|
1528
|
+
--tw-leading: var(--leading-relaxed);
|
|
1529
|
+
line-height: var(--leading-relaxed);
|
|
1530
|
+
}
|
|
1522
1531
|
.font-bold {
|
|
1523
1532
|
--tw-font-weight: var(--font-weight-bold);
|
|
1524
1533
|
font-weight: var(--font-weight-bold);
|
|
@@ -1746,6 +1755,12 @@
|
|
|
1746
1755
|
.ring-destructive {
|
|
1747
1756
|
--tw-ring-color: var(--destructive);
|
|
1748
1757
|
}
|
|
1758
|
+
.ring-destructive\/20 {
|
|
1759
|
+
--tw-ring-color: var(--destructive);
|
|
1760
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1761
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
1762
|
+
}
|
|
1763
|
+
}
|
|
1749
1764
|
.ring-ring {
|
|
1750
1765
|
--tw-ring-color: var(--ring);
|
|
1751
1766
|
}
|
|
@@ -2097,6 +2112,16 @@
|
|
|
2097
2112
|
}
|
|
2098
2113
|
}
|
|
2099
2114
|
}
|
|
2115
|
+
.hover\:border-primary\/70 {
|
|
2116
|
+
&:hover {
|
|
2117
|
+
@media (hover: hover) {
|
|
2118
|
+
border-color: var(--primary);
|
|
2119
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2120
|
+
border-color: color-mix(in oklab, var(--primary) 70%, transparent);
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2100
2125
|
.hover\:bg-accent {
|
|
2101
2126
|
&:hover {
|
|
2102
2127
|
@media (hover: hover) {
|
|
@@ -2425,6 +2450,19 @@
|
|
|
2425
2450
|
}
|
|
2426
2451
|
}
|
|
2427
2452
|
}
|
|
2453
|
+
.hover\:shadow-md {
|
|
2454
|
+
&:hover {
|
|
2455
|
+
@media (hover: hover) {
|
|
2456
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2457
|
+
box-shadow:
|
|
2458
|
+
var(--tw-inset-shadow),
|
|
2459
|
+
var(--tw-inset-ring-shadow),
|
|
2460
|
+
var(--tw-ring-offset-shadow),
|
|
2461
|
+
var(--tw-ring-shadow),
|
|
2462
|
+
var(--tw-shadow);
|
|
2463
|
+
}
|
|
2464
|
+
}
|
|
2465
|
+
}
|
|
2428
2466
|
.hover\:shadow-xl {
|
|
2429
2467
|
&:hover {
|
|
2430
2468
|
@media (hover: hover) {
|
|
@@ -2627,6 +2665,14 @@
|
|
|
2627
2665
|
--tw-ring-color: var(--ring);
|
|
2628
2666
|
}
|
|
2629
2667
|
}
|
|
2668
|
+
.focus\:ring-ring\/40 {
|
|
2669
|
+
&:focus {
|
|
2670
|
+
--tw-ring-color: var(--ring);
|
|
2671
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2672
|
+
--tw-ring-color: color-mix(in oklab, var(--ring) 40%, transparent);
|
|
2673
|
+
}
|
|
2674
|
+
}
|
|
2675
|
+
}
|
|
2630
2676
|
.focus\:ring-offset-2 {
|
|
2631
2677
|
&:focus {
|
|
2632
2678
|
--tw-ring-offset-width: 2px;
|
|
@@ -2690,6 +2736,14 @@
|
|
|
2690
2736
|
}
|
|
2691
2737
|
}
|
|
2692
2738
|
}
|
|
2739
|
+
.focus-visible\:ring-destructive\/40 {
|
|
2740
|
+
&:focus-visible {
|
|
2741
|
+
--tw-ring-color: var(--destructive);
|
|
2742
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2743
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
2744
|
+
}
|
|
2745
|
+
}
|
|
2746
|
+
}
|
|
2693
2747
|
.focus-visible\:ring-emerald-500\/40 {
|
|
2694
2748
|
&:focus-visible {
|
|
2695
2749
|
--tw-ring-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 40%, transparent);
|
|
@@ -2742,6 +2796,14 @@
|
|
|
2742
2796
|
outline-style: none;
|
|
2743
2797
|
}
|
|
2744
2798
|
}
|
|
2799
|
+
.active\:scale-95 {
|
|
2800
|
+
&:active {
|
|
2801
|
+
--tw-scale-x: 95%;
|
|
2802
|
+
--tw-scale-y: 95%;
|
|
2803
|
+
--tw-scale-z: 95%;
|
|
2804
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
2805
|
+
}
|
|
2806
|
+
}
|
|
2745
2807
|
.active\:bg-muted\/35 {
|
|
2746
2808
|
&:active {
|
|
2747
2809
|
background-color: var(--muted);
|
|
@@ -3113,16 +3175,80 @@
|
|
|
3113
3175
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3114
3176
|
}
|
|
3115
3177
|
}
|
|
3178
|
+
.data-\[state\=checked\]\:scale-100 {
|
|
3179
|
+
&[data-state=checked] {
|
|
3180
|
+
--tw-scale-x: 100%;
|
|
3181
|
+
--tw-scale-y: 100%;
|
|
3182
|
+
--tw-scale-z: 100%;
|
|
3183
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
3184
|
+
}
|
|
3185
|
+
}
|
|
3186
|
+
.data-\[state\=checked\]\:border-destructive {
|
|
3187
|
+
&[data-state=checked] {
|
|
3188
|
+
border-color: var(--destructive);
|
|
3189
|
+
}
|
|
3190
|
+
}
|
|
3191
|
+
.data-\[state\=checked\]\:border-emerald-500 {
|
|
3192
|
+
&[data-state=checked] {
|
|
3193
|
+
border-color: var(--color-emerald-500);
|
|
3194
|
+
}
|
|
3195
|
+
}
|
|
3196
|
+
.data-\[state\=checked\]\:border-primary {
|
|
3197
|
+
&[data-state=checked] {
|
|
3198
|
+
border-color: var(--primary);
|
|
3199
|
+
}
|
|
3200
|
+
}
|
|
3201
|
+
.data-\[state\=checked\]\:bg-destructive {
|
|
3202
|
+
&[data-state=checked] {
|
|
3203
|
+
background-color: var(--destructive);
|
|
3204
|
+
}
|
|
3205
|
+
}
|
|
3206
|
+
.data-\[state\=checked\]\:bg-emerald-500 {
|
|
3207
|
+
&[data-state=checked] {
|
|
3208
|
+
background-color: var(--color-emerald-500);
|
|
3209
|
+
}
|
|
3210
|
+
}
|
|
3116
3211
|
.data-\[state\=checked\]\:bg-primary {
|
|
3117
3212
|
&[data-state=checked] {
|
|
3118
3213
|
background-color: var(--primary);
|
|
3119
3214
|
}
|
|
3120
3215
|
}
|
|
3216
|
+
.data-\[state\=checked\]\:bg-primary\/15 {
|
|
3217
|
+
&[data-state=checked] {
|
|
3218
|
+
background-color: var(--primary);
|
|
3219
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3220
|
+
background-color: color-mix(in oklab, var(--primary) 15%, transparent);
|
|
3221
|
+
}
|
|
3222
|
+
}
|
|
3223
|
+
}
|
|
3224
|
+
.data-\[state\=checked\]\:text-destructive-foreground {
|
|
3225
|
+
&[data-state=checked] {
|
|
3226
|
+
color: var(--destructive-foreground);
|
|
3227
|
+
}
|
|
3228
|
+
}
|
|
3229
|
+
.data-\[state\=checked\]\:text-primary {
|
|
3230
|
+
&[data-state=checked] {
|
|
3231
|
+
color: var(--primary);
|
|
3232
|
+
}
|
|
3233
|
+
}
|
|
3121
3234
|
.data-\[state\=checked\]\:text-primary-foreground {
|
|
3122
3235
|
&[data-state=checked] {
|
|
3123
3236
|
color: var(--primary-foreground);
|
|
3124
3237
|
}
|
|
3125
3238
|
}
|
|
3239
|
+
.data-\[state\=checked\]\:text-white {
|
|
3240
|
+
&[data-state=checked] {
|
|
3241
|
+
color: var(--color-white);
|
|
3242
|
+
}
|
|
3243
|
+
}
|
|
3244
|
+
.data-\[state\=checked\]\:shadow-primary\/20 {
|
|
3245
|
+
&[data-state=checked] {
|
|
3246
|
+
--tw-shadow-color: var(--primary);
|
|
3247
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3248
|
+
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--primary) 20%, transparent) var(--tw-shadow-alpha), transparent);
|
|
3249
|
+
}
|
|
3250
|
+
}
|
|
3251
|
+
}
|
|
3126
3252
|
.data-\[state\=closed\]\:duration-300 {
|
|
3127
3253
|
&[data-state=closed] {
|
|
3128
3254
|
--tw-duration: 300ms;
|
|
@@ -3355,6 +3481,11 @@
|
|
|
3355
3481
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3356
3482
|
}
|
|
3357
3483
|
}
|
|
3484
|
+
.data-\[state\=unchecked\]\:bg-background {
|
|
3485
|
+
&[data-state=unchecked] {
|
|
3486
|
+
background-color: var(--background);
|
|
3487
|
+
}
|
|
3488
|
+
}
|
|
3358
3489
|
.data-\[state\=unchecked\]\:bg-input {
|
|
3359
3490
|
&[data-state=unchecked] {
|
|
3360
3491
|
background-color: var(--input);
|
|
@@ -3458,14 +3589,6 @@
|
|
|
3458
3589
|
}
|
|
3459
3590
|
}
|
|
3460
3591
|
}
|
|
3461
|
-
.supports-\[backdrop-filter\]\:bg-popover\/60 {
|
|
3462
|
-
@supports (backdrop-filter: var(--tw)) {
|
|
3463
|
-
background-color: var(--popover);
|
|
3464
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3465
|
-
background-color: color-mix(in oklab, var(--popover) 60%, transparent);
|
|
3466
|
-
}
|
|
3467
|
-
}
|
|
3468
|
-
}
|
|
3469
3592
|
.supports-\[height\:100dvh\]\:h-\[clamp\(22rem\,80dvh\,44rem\)\] {
|
|
3470
3593
|
@supports (height:100dvh) {
|
|
3471
3594
|
height: clamp(22rem, 80dvh, 44rem);
|
|
@@ -4334,6 +4457,9 @@
|
|
|
4334
4457
|
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
|
|
4335
4458
|
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
4336
4459
|
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
|
|
4460
|
+
@property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
|
|
4461
|
+
@property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
|
|
4462
|
+
@property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
|
|
4337
4463
|
@keyframes spin {
|
|
4338
4464
|
to {
|
|
4339
4465
|
transform: rotate(360deg);
|
|
@@ -4415,6 +4541,9 @@
|
|
|
4415
4541
|
--tw-drop-shadow-color: initial;
|
|
4416
4542
|
--tw-drop-shadow-alpha: 100%;
|
|
4417
4543
|
--tw-drop-shadow-size: initial;
|
|
4544
|
+
--tw-scale-x: 1;
|
|
4545
|
+
--tw-scale-y: 1;
|
|
4546
|
+
--tw-scale-z: 1;
|
|
4418
4547
|
}
|
|
4419
4548
|
}
|
|
4420
4549
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shadcn-ui-react",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
4
4
|
"private": false,
|
|
5
|
-
"author": "Bleker
|
|
5
|
+
"author": "Bleker <bleker@gliyen.com>",
|
|
6
6
|
"description": "A collection of components for building beautiful and accessible user interfaces with React and Tailwind CSS.",
|
|
7
7
|
"sideEffect": [
|
|
8
8
|
"**/*.css"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@babel/core": "^7.29.0",
|
|
55
|
-
"@babel/preset-env": "^7.29.
|
|
55
|
+
"@babel/preset-env": "^7.29.5",
|
|
56
56
|
"@babel/preset-react": "^7.28.5",
|
|
57
57
|
"@babel/preset-typescript": "^7.28.5",
|
|
58
58
|
"@eslint/config-array": "^0.23.5",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"@types/node": "^25.6.0",
|
|
69
69
|
"@types/react": "^19.2.14",
|
|
70
70
|
"@types/react-dom": "^19.2.3",
|
|
71
|
-
"@typescript-eslint/eslint-plugin": "^8.59.
|
|
72
|
-
"@typescript-eslint/parser": "^8.59.
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^8.59.2",
|
|
72
|
+
"@typescript-eslint/parser": "^8.59.2",
|
|
73
73
|
"autoprefixer": "^10.5.0",
|
|
74
74
|
"babel-jest": "^30.3.0",
|
|
75
75
|
"cross-env": "^10.1.0",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"vite": "^8.0.10",
|
|
93
93
|
"vite-plugin-dts": "^5.0.0",
|
|
94
94
|
"vite-plugin-ts-alias": "^0.1.1",
|
|
95
|
-
"zod": "^4.4.
|
|
95
|
+
"zod": "^4.4.3"
|
|
96
96
|
},
|
|
97
97
|
"peerDependencies": {
|
|
98
98
|
"react": "^17.0.0 || ^18.3.1 || ^19.2.5 || ^20.0.0",
|