react-tappable
react-tappable copied to clipboard
Tappable component for React
``` ``` Workaround is to not wrap Tappable around the Input and just overlay.
I understand all people involved with this library are all super busy. I mean, the amount of @JedWatson initiated projects is insane! So very understandable some projects can't be supported...
This package is the only one left in our projects still depending on react-create-class. Would it be possible to remove this dependency?
Bumps [eslint](https://github.com/eslint/eslint) from 1.10.3 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...
An element that sits inside a tappable area with a higher zindex should take precedence and not trigger the tappable event inside it. In my case the underlying "card" layer...
In the source I found the following code for handling the mousemove event: ``` onMouseMove: function (event) { if (window._blockMouseEvents || !this._mouseDown) return; this.processEvent(event); this.props.onMouseMove && this.props.onMouseMove(event); }, ``` Why...
In our application we create a large scrollable list of tappable tiles and sometimes, when a user attempts to stop their fast scrolling action by pressing on the screen this...
When Your DOM consists of text inputs (or elements with contenteditable="true" attribute) and one of them is focused, normally, outside click will blur it. But if You outside click a...