yarn material-ui 0.19.0

latest releases: 0.20.2, 0.20.1, 1.0.0-beta.47...
6 years ago
Aug 15, 2017

Big thanks to the 11 contributors who made this release possible.
As always, we are focusing on bug fixes but this time, we introduce an exceptional breaking change.

Breaking Changes
  • [core] Removed module's reliance on react-tap-event-plugin (#7624) @lostpebble

This change is paving the way toward supporting the upcoming react@16 release a.k.a Fiber.
The react-tap-event-plugin dependency was removed, it was first introduced 3 years ago in order to remove the click delay on mobile devices.
Mobiles devices' browsers have improved since then, it's no longer required.
It's time to remove that dependency as we have done it a year ago on the v1-beta branch.
You need to replace the onTouchTap property callbacks with onClick.

-<div onTouchTap={this.handleEvent} />
+<div onClick={this.handleEvent} />

Thanks @lostpebble for your hard work!

Component Fixes / Enhancements
Docs
Core

Don't miss a new material-ui release

NewReleases is sending notifications on new releases.