Skip to content

Releases: erikras/redux-form-material-ui

v4.1.0

03 Oct 18:44
Compare
Choose a tag to compare
  • Added TimePicker component. #34
  • Fixed bug with RadioButtonGroup. #35
  • Fixed jsnext value in build. #32

v4.0.1

02 Aug 17:50
Compare
Choose a tag to compare
  • Fixed dependency problem. #23

v4.0.0

02 Aug 17:06
Compare
Choose a tag to compare
  • 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

06 Jul 20:28
Compare
Choose a tag to compare

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

28 Jun 13:35
Compare
Choose a tag to compare
  • Converted to use component classes to allow ref access. #4
  • Added getRenderedComponent() instance method
  • Added display names for better debugging. #6

v2.1.1

28 Jun 09:41
Compare
Choose a tag to compare
  • Added DatePicker

v2.0.0

30 May 17:02
Compare
Choose a tag to compare
  • 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

v1.1.0

24 May 15:57
Compare
Choose a tag to compare

v1.0.0

24 May 15:47
Compare
Choose a tag to compare

Initial Release. 🎉