Releases: NewOldMax/react-material-ui-form-validator
Releases · NewOldMax/react-material-ui-form-validator
1.1.4
React 16.3 support
2.0.0-beta.8 Fix wrong build.
React 16.3 support
1.1.3 Fix wrong build.
New features release
AutocompleteValidator
was removed because material-ui v1 doesn't have built-in implementation. You must implement your own Validator component in order to validate Autocomplete- core validations was moved to
react-form-validator-core
so you can use latest validation features in your forms
Expose components release
Now you don't need to install react-form-validator-core
, compatible version will be installed automatically. 🍦
Just import all required components from react-material-ui-form-validator
- import { ValidatorForm } from 'react-form-validator-core';
- import { TextValidator } from 'react-material-ui-form-validator';
+ import { ValidatorForm, TextValidator } from 'react-material-ui-form-validator';
`debounce` release
Update deps to have debounce
feature
1.0.5
Redo Select validator release
Breaking change
For now SelectValidator
uses TextField
component in select mode, to migrate you should remove formControl
and inputLabel
props and use label
prop
<SelectValidator
...
- formControl={FormControl}
- inputLabel={InputLabel}
+ label="Label title"
/>
1.0.4
Fix React 16 version
1.0.3 Bump version.