shadcn-zod-formkit 1.0.3 → 1.0.4
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 -1
- package/dist/index.cjs +408 -59
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +391 -43
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ yarn add shadcn-zod-formkit
|
|
|
26
26
|
You need installa shadcn basic components
|
|
27
27
|
```typescript
|
|
28
28
|
# Add Shadcn Basics
|
|
29
|
-
npx shadcn@latest add accordion alert badge button calendar card checkbox dialog popover form input label select sonner tooltip switch textarea input-otp collapsible input-group radio-group
|
|
29
|
+
npx shadcn@latest add accordion alert badge button calendar card checkbox dialog popover form input label select sonner tooltip switch textarea input-otp collapsible input-group radio-group slider
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
|
|
@@ -88,6 +88,7 @@ const mockFields: Array<FieldProps |FieldProps[]> = [
|
|
|
88
88
|
| **Switch** | `InputTypes.SWITCH` |
|
|
89
89
|
| **Checkbox** | `InputTypes.CHECKBOX` |
|
|
90
90
|
| **Date Picker** | `InputTypes.DATE` |
|
|
91
|
+
| **Date Time Picker** | `InputTypes.DATE_TIME` |
|
|
91
92
|
| **Select** | `InputTypes.SELECT` |
|
|
92
93
|
| **OTP Code** | `InputTypes.OTP` |
|
|
93
94
|
| **Upload File** | `InputTypes.FILE` |
|