@esmate/shadcn 1.1.0 → 1.1.1

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -242,9 +242,9 @@ Shadcn comes with many dependencies, which can be complicated to manage and use
242
242
  package: to bundle them all together. To make them reusable and avoid reinstalling them, I re-export them for you.
243
243
 
244
244
  ```typescript
245
- import { z } from "@esmate/shadcn/zod";
246
245
  import { useForm } from "@esmate/shadcn/react-hook-form";
247
- import { useForm } from "@esmate/shadcn/hookform__resolvers";
246
+ import { zodResolver } from "@esmate/shadcn/hookform__resolvers";
247
+ import { z } from "@esmate/shadcn/zod";
248
248
 
249
249
  // You can check src/lib or dist/lib to find more modules
250
250
  ```
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": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "repository": {