shadcn-ui-react 0.2.8 → 0.3.0
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 +186 -58
- package/dist/index.cjs +98 -61
- package/dist/index.d.cts +11 -6
- package/dist/index.d.ts +11 -6
- package/dist/index.js +150 -113
- package/dist/style.css +15 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
--drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);
|
|
54
54
|
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
55
55
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
56
|
+
--animate-spin: spin 1s linear infinite;
|
|
56
57
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
57
58
|
--default-transition-duration: 150ms;
|
|
58
59
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -430,12 +431,18 @@
|
|
|
430
431
|
.mb-1 {
|
|
431
432
|
margin-bottom: calc(var(--spacing) * 1);
|
|
432
433
|
}
|
|
434
|
+
.mb-4 {
|
|
435
|
+
margin-bottom: calc(var(--spacing) * 4);
|
|
436
|
+
}
|
|
433
437
|
.-ml-4 {
|
|
434
438
|
margin-left: calc(var(--spacing) * -4);
|
|
435
439
|
}
|
|
436
440
|
.ml-1 {
|
|
437
441
|
margin-left: calc(var(--spacing) * 1);
|
|
438
442
|
}
|
|
443
|
+
.ml-2 {
|
|
444
|
+
margin-left: calc(var(--spacing) * 2);
|
|
445
|
+
}
|
|
439
446
|
.ml-auto {
|
|
440
447
|
margin-left: auto;
|
|
441
448
|
}
|
|
@@ -677,6 +684,9 @@
|
|
|
677
684
|
.animate-pulse {
|
|
678
685
|
animation: var(--animate-pulse);
|
|
679
686
|
}
|
|
687
|
+
.animate-spin {
|
|
688
|
+
animation: var(--animate-spin);
|
|
689
|
+
}
|
|
680
690
|
.cursor-default {
|
|
681
691
|
cursor: default;
|
|
682
692
|
}
|
|
@@ -2908,6 +2918,11 @@
|
|
|
2908
2918
|
@property --tw-duration { syntax: "*"; inherits: false; }
|
|
2909
2919
|
@property --tw-ease { syntax: "*"; inherits: false; }
|
|
2910
2920
|
@property --tw-content { syntax: "*"; initial-value: ""; inherits: false; }
|
|
2921
|
+
@keyframes spin {
|
|
2922
|
+
to {
|
|
2923
|
+
transform: rotate(360deg);
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2911
2926
|
@keyframes pulse {
|
|
2912
2927
|
50% {
|
|
2913
2928
|
opacity: 0.5;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shadcn-ui-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Bleker Cordova <bleker@gliyen.com>",
|
|
6
6
|
"description": "A collection of components for building beautiful and accessible user interfaces with React and Tailwind CSS.",
|