Skip to content

v1.0.0-alpha.22

Pre-release
Pre-release
Compare
Choose a tag to compare
@oliviertassinari oliviertassinari released this 18 Jul 09:37
· 20632 commits to master since this release
Jul 18, 2017
Breaking changes
<RadioGroup>
-  <LabelRadio label="Male" value="male" />
+  <FormControlLabel value="male" control={<Radio />} label="Male" />
</RadioGroup>

This change provides more flexibility.

-  <BottomNavigation index={index} onChange={this.handleChange}>
+  <BottomNavigation value={value} onChange={this.handleChange}>

Also plan to do the same for the Tabs in order to have a consistant API
where we always use value/onChange for controlled components.

<TextField
-  marginForm
+  margin="normal"
/>
Component Fixes / Enhancements
Docs
Core