Releases: erikras/redux-form-material-ui
Releases · erikras/redux-form-material-ui
v4.1.0
v4.0.1
v4.0.0
- Added
AutoComplete
support. #17 - Fixed
DatePicker
bug. #22 - Updated
material-ui
version. #18 - Added error messages to
DatePicker
#15
And, yet another...
Breaking Change
Due to the recent changes of how redux-form v6.0.0-rc.4
is structuring its props, redux-form-material-ui
had to change.
This version is only compatible with redux-form v6.0.0-rc.4
and higher.
v3.0.0
Breaking Change
- Adapted to the breaking change from
redux-form v6.0.0-rc.2
which, itself was caused by a warning introduced in React 15.2.0.
If you are not using React 15.2.0, you should feel free to stay with v2.2.0
.
v2.2.0
v2.1.1
v2.0.0
- Ditched "adapter"
redux-form
API in favor of just exporting components named the same as their Material UI counterparts. #1
Breaking Change
In v1
, where you did
import adapter from 'redux-form-material-ui'
...
<Field name="myField" component="TextField"/>
...
reduxForm({ form: 'myForm', adapter })(MyForm)
...in v2
, you do this:
import { TextField } from 'redux-form-material-ui' // <--- import component directly
...
<Field name="myField" component={TextField}/> // <--- pass component directly
...
reduxForm({ form: 'myForm' })(MyForm) // <--- no adapter