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.