shadcn-zod-formkit 3.1.0 → 3.3.0
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 -0
- package/dist/index.cjs +731 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +37 -22
- package/dist/index.d.ts +37 -22
- package/dist/index.mjs +732 -7
- package/dist/index.mjs.map +1 -1
- package/dist/shadcn-zod-formkit-3.3.0.tgz +0 -0
- package/package.json +3 -2
- package/dist/shadcn-zod-formkit-3.1.0.tgz +0 -0
package/README.md
CHANGED
|
@@ -112,6 +112,8 @@ export default function BasicFormExample() {
|
|
|
112
112
|
|
|
113
113
|
## 📚 Available Input Types
|
|
114
114
|
|
|
115
|
+
> New in v1.36.0: `Date Range`, `Country Select`, `Range`, plus existing `Location Picker` and `Search` inputs.
|
|
116
|
+
|
|
115
117
|
| Input Type | Constant | Description |
|
|
116
118
|
|-------------------------------------|-------------------------------------------|---------------------------------------|
|
|
117
119
|
| **Text Input** | `InputTypes.TEXT_GROUP` | Text input with icon support |
|
|
@@ -126,6 +128,9 @@ export default function BasicFormExample() {
|
|
|
126
128
|
| **Date Time Picker** | `InputTypes.DATE_TIME` | Date and time selection |
|
|
127
129
|
| **Time Picker** | `InputTypes.TIME` | Time selection |
|
|
128
130
|
| **Location Picker** ✨ | `InputTypes.LOCATION_PICKER` | Interactive map with GPS & geocoding |
|
|
131
|
+
| **Date Range Picker** ✨ | `InputTypes.DATE_RANGE` | Range selection with dual calendar |
|
|
132
|
+
| **Country Select** ✨ | `InputTypes.COUNTRY_SELECT` | Searchable country dropdown with flags|
|
|
133
|
+
| **Range Input** ✨ | `InputTypes.RANGE` | Min/max slider range input |
|
|
129
134
|
| **Select** | `InputTypes.SELECT` | Dropdown select |
|
|
130
135
|
| **Multi Select** | `InputTypes.MULTI_SELECT` | Multiple selection dropdown |
|
|
131
136
|
| **Combobox** | `InputTypes.COMBOBOX` | Searchable select |
|