Skip to content

v0.19.0

Compare
Choose a tag to compare
@oliviertassinari oliviertassinari released this 15 Aug 08:18
· 21824 commits to master since this release
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