Releases: aderbas/jsonform
Releases · aderbas/jsonform
Release 0.2.2
Release 0.2.2
Added confirm for control buttons.
<JsonForm
components={formFields}
controlOptions={{
confirmSave: 'Confirm form submission?',
confirmCancel: 'Do you really want to cancel?',
confirmButtonsLabel: {
yes: 'Yep', no: 'Noooo'
}
}}
onSave={(data) => console.log(data)}
/>- confirmSave: Adds the confirm alert for the save button. String with the text of the question. Default: null
- confirmCancel: Adds the confirm alert for the cancel button. String with the text of the question. Default: null
- confirmButtonsLabel: Text for "yes" and "no" dialog buttons. Default: {no: 'No', yes: 'Yes'}
Release 0.2.1
Introduced simple rule option for dependencies between form fields and fix some bugs. See documentation.
Release 0.2.0
- Fix bug on Select componente when value of first options is 0
- Fix position of control buttons
Release 0.1.9
- Change dependency metodology
- Added handler when form is populated by remote date
- Bug fixies
Release 0.1.8
- Added MultiSelect component.
- Added RadioGroup component.
- Fixed crash if component not found or any component render error.
- Fixed issue on responsive layout on small devices.
- Change the metodologi to "skip" field from model. (Check Readme)
Release 0.1.7
- Added support for custom components
Release 0.1.6
- Added columns for form
Release 0.1.5
- Add form split
- Add custom label for buttons
Release 0.1.4
Added file upload field option