shadcn-packaged 2025.6.16-1 → 2025.6.16-2
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 +5 -3
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Shadcn Packaged
|
2
2
|
|
3
|
+
**Support Tailwindcss V4**
|
4
|
+
|
3
5
|
This is an npm package that exports all [shadcn/ui](https://ui.shadcn.com/) components without the need for a CLI, designed for ease of use.
|
4
6
|
|
5
7
|
It simply provides all useful files along with type declarations.
|
@@ -50,6 +52,7 @@ Import default style
|
|
50
52
|
The global entry css file, `index.css` | `global.css`
|
51
53
|
|
52
54
|
```css
|
55
|
+
/* "shadcn-packaged/index.css" includes `@import "tailwindcss"` */
|
53
56
|
@import "shadcn-packaged/index.css";
|
54
57
|
/* source detection, according to the actual path specified */
|
55
58
|
@source "../node_modules/shadcn-packaged";
|
@@ -97,9 +100,8 @@ If the automatic code import does not take effect, please try the following meth
|
|
97
100
|
The global entry css file, `index.css` | `global.css`, more detail see [shadcn theme](https://ui.shadcn.com/docs/theming)
|
98
101
|
|
99
102
|
```css
|
100
|
-
|
101
|
-
@import "
|
102
|
-
|
103
|
+
/* "shadcn-packaged/index.css" includes `@import "tailwindcss"` */
|
104
|
+
@import "shadcn-packaged/index.css";
|
103
105
|
/* source detection, according to the actual path specified */
|
104
106
|
@source "../node_modules/shadcn-packaged";
|
105
107
|
|