Releases: akuzko/react-form-material-ui
Releases · akuzko/react-form-material-ui
v1.2.0
New Features
- Added
bindDialogState
helper function that, in addition tobindState
functionality ofreact-form-base
, passes "formOpen" property from container's state to dialog form component. - Dialog form's errors are now cleared when form opens.
RadioButton
component is re-exported frommaterial-ui
for convenience.- Add
includeBlank
property toSelectField
input component
Fixes and Minor Updates
- Fix missing re-export of
bindState
helper function fromreact-form-base
- Fix list of acceptable types for
value
andoptions
prop forRadioButtonGroup
andSelectField
- Add travis-ci integration
- README and Demo app updates and fixes
v1.1.0
New Features
- Depends on [email protected]. Thus, core form updates also apply on this release.
- Added
Dialog(Form)
function that generates a Dialog form to be subsequently extended. Thus, you can now declare a base form for your application with all validation rules and custom functionality and declare dialog forms in a following way:
import { Dialog } from 'react-form-material-ui';
import BaseForm from 'your-base-form';
export default class ItemForm extends Dialog(BaseForm) {
// form definitions...
}
Patch Updates
- Reduced ode organization complexity
- Minor fixes in README and tests