shadcn-ui-react 0.7.17 → 0.7.18
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 +10324 -5774
- package/dist/index.d.cts +785 -9
- package/dist/index.d.ts +785 -9
- package/dist/index.js +10471 -5907
- package/dist/style.css +23 -2
- 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
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shadcn-ui-react",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.18",
|
|
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.",
|