Skip to content

v1.0.0-beta.27

Pre-release
Pre-release
Compare
Choose a tag to compare
@oliviertassinari oliviertassinari released this 06 Jan 15:30
· 19097 commits to master since this release
Jan 6, 2018

Big thanks to the 19 contributors who made this release possible.

Here are some highlights ✨:

  • A strong focus on the documentation.
  • Add a new Zoom component (#9693) @mbrookes
  • Better vertical alignment of our components (#9709) @oliviertassinari
  • And many more bug fixes and documentation improvements.

Breaking change

Remove the rootRef property from the Grow and List component.
Instead, you can use the ref property in combination with findDOMNode() or a RootRef helper.

Remove the transitionClasses property of the Popover component. Instead, you can provide a transition component.

  • [BottomNavigation] Rename BottomNavigationButton to BottomNavigationAction (#9692) @mbrookes
-import BottomNavigation, { BottomNavigationButton } from 'material-ui/BottomNavigation';
+import BottomNavigation, { BottomNavigationAction } from 'material-ui/BottomNavigation';

You might be relying on the transitive dependency of Material-UI: jss-preset-default.
If you do, you need to declare the dependency in your package.json. Material-UI will no longer install it for you.
Alternatively, you can use our preset to save bundle size.

-import preset from 'jss-preset-default';
+import { jssPreset } from 'material-ui/styles';

Component Fixes / Enhancements

Docs

Core