@esmate/shadcn 3.3.0 → 3.3.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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,6 +28,7 @@ Import a style in your `./src/global.css`:
28
28
  ```css
29
29
  @import "tailwindcss";
30
30
 
31
+ /* Please make sure the source is correct */
31
32
  @source "../node_modules/@esmate/shadcn";
32
33
  @import "@esmate/shadcn/styles/new-york.css";
33
34
  ```
@@ -249,7 +250,8 @@ having to install each dependency individually.
249
250
  ```typescript
250
251
  import { useForm } from "@esmate/shadcn/pkgs/react-hook-form";
251
252
  import { zodResolver } from "@esmate/shadcn/pkgs/hookform/resolvers";
253
+ import { Accordion } from "@esmate/shadcn/pkgs/radix-ui/react-accordion";
252
254
  import { z } from "@esmate/shadcn/pkgs/zod";
253
255
 
254
- // You can check src/lib or dist/lib to find more modules
256
+ // You can check src/pkgs or dist/pkgs to find more modules
255
257
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esmate/shadcn",
3
3
  "description": "Shadcn components, hooks, and styles in one package.",
4
- "version": "3.3.0",
4
+ "version": "3.3.2",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "repository": {