Releases: erikras/redux-form-material-ui
Release with MUI 1.0
- This beta version releases with support final release of MUI 1.0
v4.3.2
v5.0.0-beta-2
- Remove refs for stateless component from MUI Fixes #188
This version is only compatible with material-ui v1.0.0-beta-16
and higher.
v5.0.0-beta-1
- Added
Material UI V1.0
support. #165 Thanks to @gfgfpacheco for initial revision.
Breaking Change
Due to the beta version of material-ui
few components have been removed because either they are not yet ported to V1 or it is stopped.
This version is only compatible with material-ui v1.0.0-beta-16
and higher.
V4.3.0
v4.2.0
This release ignores all default value props. #134 #135 An explanation for this change has been added to the README:
Because of the strict "controlled component" nature of
redux-form
, some of the Material UI functionality related to defaulting of values has been disabled e.g.defaultValue
,defaultDate
,defaultTime
,defaultToggled
,defaultChecked
, etc. If you need a field to be initialized to a certain state, you should use theinitialValues
API ofredux-form
.
It really shouldn't be a breaking change, as your form could not really have been working correctly if you were using the default value props before, as those values were never actually in the Redux store.