shadcn-ui-react 0.7.17 → 0.7.19
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.cjs +10329 -5775
- package/dist/index.d.cts +787 -9
- package/dist/index.d.ts +787 -9
- package/dist/index.js +10472 -5904
- package/dist/style.css +23 -20
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -664,8 +664,26 @@
|
|
|
664
664
|
.min-h-0 {
|
|
665
665
|
min-height: calc(var(--spacing) * 0);
|
|
666
666
|
}
|
|
667
|
-
.min-h
|
|
668
|
-
min-height:
|
|
667
|
+
.min-h-14 {
|
|
668
|
+
min-height: calc(var(--spacing) * 14);
|
|
669
|
+
}
|
|
670
|
+
.min-h-16 {
|
|
671
|
+
min-height: calc(var(--spacing) * 16);
|
|
672
|
+
}
|
|
673
|
+
.min-h-20 {
|
|
674
|
+
min-height: calc(var(--spacing) * 20);
|
|
675
|
+
}
|
|
676
|
+
.min-h-24 {
|
|
677
|
+
min-height: calc(var(--spacing) * 24);
|
|
678
|
+
}
|
|
679
|
+
.min-h-28 {
|
|
680
|
+
min-height: calc(var(--spacing) * 28);
|
|
681
|
+
}
|
|
682
|
+
.min-h-32 {
|
|
683
|
+
min-height: calc(var(--spacing) * 32);
|
|
684
|
+
}
|
|
685
|
+
.min-h-36 {
|
|
686
|
+
min-height: calc(var(--spacing) * 36);
|
|
669
687
|
}
|
|
670
688
|
.min-h-screen {
|
|
671
689
|
min-height: 100vh;
|
|
@@ -899,6 +917,9 @@
|
|
|
899
917
|
.resize {
|
|
900
918
|
resize: both;
|
|
901
919
|
}
|
|
920
|
+
.resize-y {
|
|
921
|
+
resize: vertical;
|
|
922
|
+
}
|
|
902
923
|
.scrollbar-thin {
|
|
903
924
|
scrollbar-width: thin;
|
|
904
925
|
}
|
|
@@ -2487,16 +2508,6 @@
|
|
|
2487
2508
|
}
|
|
2488
2509
|
}
|
|
2489
2510
|
}
|
|
2490
|
-
.hover\:bg-accent\/40 {
|
|
2491
|
-
&:hover {
|
|
2492
|
-
@media (hover: hover) {
|
|
2493
|
-
background-color: var(--accent);
|
|
2494
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2495
|
-
background-color: color-mix(in oklab, var(--accent) 40%, transparent);
|
|
2496
|
-
}
|
|
2497
|
-
}
|
|
2498
|
-
}
|
|
2499
|
-
}
|
|
2500
2511
|
.hover\:bg-accent\/70 {
|
|
2501
2512
|
&:hover {
|
|
2502
2513
|
@media (hover: hover) {
|
|
@@ -3091,14 +3102,6 @@
|
|
|
3091
3102
|
}
|
|
3092
3103
|
}
|
|
3093
3104
|
}
|
|
3094
|
-
.focus-visible\:ring-destructive\/30 {
|
|
3095
|
-
&:focus-visible {
|
|
3096
|
-
--tw-ring-color: var(--destructive);
|
|
3097
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3098
|
-
--tw-ring-color: color-mix(in oklab, var(--destructive) 30%, transparent);
|
|
3099
|
-
}
|
|
3100
|
-
}
|
|
3101
|
-
}
|
|
3102
3105
|
.focus-visible\:ring-emerald-500\/40 {
|
|
3103
3106
|
&:focus-visible {
|
|
3104
3107
|
--tw-ring-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 40%, transparent);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shadcn-ui-react",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.19",
|
|
4
4
|
"private": false,
|
|
5
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.",
|