elm-pointer-events icon indicating copy to clipboard operation
elm-pointer-events copied to clipboard

Mouse, Touch, Pointer, Wheel and Drag events in elm

Results 10 elm-pointer-events issues
Sort by recently updated
recently updated
newest added

Hi, I saw that meta key is not provided on purpose for Mouse Event because it's not supported on Linux (https://github.com/mpizenberg/elm-pointer-events/blob/master/src/Html/Events/Extra/Mouse.elm#L110) Still, on Mac, this key is the most used...

I really appreciate the work you put into this library and I find it very useful. However, I've encountered an extremely subtle bug due to the default of setting preventDefault...

There was no needed change in the base code for elm 0.19.1 so I forgot that the examples are still in 0.19.0. Can't take the time to update and check...

help wanted
good first issue

I am using elm 0.19 and library version 3.1.0. I've assigned touch event on a sidebar to figure out when a left swipe occurs, but I've realized that scrolling is...

Implementing a horizontal swipe using touch events with this library started producing this warning in our console: ```Main.elm:8830 [Violation] Added non-passive event listener to a scroll-blocking 'touchmove' event. Consider marking...

Hi! Thanks for the nice library 💟 I was using it to make a [small drawing app](https://chimeces.com/elm-canvas/drawing.html), and used `Mouse` and `Touch` separately, as I didn't want to deal with...

- API inspirations from [material design guidelines](https://material.io/guidelines/patterns/gestures.html#gestures-drag-swipe-or-fling-details) - Try a performance evaluation of decoders on high frequency events like touchmove (is there a way to do better?) - Evaluate usability...

* Ian's [`Interaction` module][opensolid-interaction]. In this module, a lot of mouse and touch features are reimplemented with additional gestures management. [opensolid-interaction]: https://github.com/opensolid/svg/blob/master/src/OpenSolid/Svg/Interaction.elm

Following discussion in #29 I added some details about `movementX/Y` support

According to official [docs](https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/movementX#browser_compatibility), `movementX/Y` is well-supported both by Safari and iOS. If you don't mind, I'd like to make a PR adding it.

help wanted
good first issue