@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.
- package/README.md +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 {
|
|
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
|
```
|