Skip to content

v1.0.0-beta.13

Pre-release
Pre-release
Compare
Choose a tag to compare
@oliviertassinari oliviertassinari released this 01 Oct 19:59
· 20140 commits to master since this release
Oct 1, 2017

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

Here are some highlights ✨:

  • Improve react@16 support (#8468, #8429)
  • Many bug fixes

Breaking change

  • [Table] Introduce padding property (#8362) @eyn
-  <TableCell checkbox>
+  <TableCell padding="checkbox">
-  withTheme,
+  withTheme(),
      <Dialog
-       enterTransitionDuration={100}
-       leaveTransitionDuration={100}
+       transitionDuration={100}
      </Dialog>
      <Dialog
-       enterTransitionDuration={100}
-       leaveTransitionDuration={200}
+       transitionDuration={{
+         enter: 100,
+         exit: 200,
+       }}
      </Dialog>

Component Fixes / Enhancements

Docs

Core