@dmitryvim/form-builder 0.2.7 → 0.2.8
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 +3 -1
- package/dist/browser/formbuilder.min.js +104 -41
- package/dist/browser/formbuilder.v0.2.8.min.js +304 -0
- package/dist/cjs/index.cjs +657 -4
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +651 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/form-builder.js +104 -41
- package/dist/types/components/index.d.ts +2 -1
- package/dist/types/components/slider.d.ts +11 -0
- package/dist/types/instance/FormBuilderInstance.d.ts +4 -0
- package/dist/types/types/index.d.ts +1 -1
- package/dist/types/types/schema.d.ts +20 -1
- package/package.json +1 -1
- package/dist/browser/formbuilder.v0.2.7.min.js +0 -241
package/README.md
CHANGED
|
@@ -260,9 +260,11 @@ See [Integration Guide](docs/integration.md) for detailed setup instructions.
|
|
|
260
260
|
- **Textarea**: Multi-line with configurable rows
|
|
261
261
|
- **Number**: Numeric input with min/max/step/decimals
|
|
262
262
|
- **Select**: Dropdown with options and default values
|
|
263
|
+
- **Colour**: Colour picker with hex values (single or palette)
|
|
264
|
+
- **Slider**: Range slider with linear/exponential scales (v0.2.7+)
|
|
263
265
|
- **File**: Single file upload with preview and type restrictions
|
|
264
266
|
- **Files**: Multiple file upload with grid layout and drag-and-drop
|
|
265
|
-
- **
|
|
267
|
+
- **Container**: Nested containers with repeatable array support
|
|
266
268
|
|
|
267
269
|
### File Handling
|
|
268
270
|
|