Core engine for receiving gestures
Last release 2 years ago
no release in 18 months
Release timing varies
gaps range from 1 weeks to 6 months
Nearly every release is documented
notes for 40 of 41 stable releases
Nothing withdrawn
no release was ever pulled
5 years old
67 releases · first in 2021
Release timeline
67 releases since 2021Releases
- 10.3.121 Mar 2024
Release notes
Open source →Patch Changes
- 6f6f4a5b4: fix(types): compatibility with @types/react >=18.2.66
- 10.3.016 Sept 2023
Release notes
Open source →Minor Changes
- 1ee9f42e3: Fix: touch support is reverted to only checking TouchEvent support #626
Patch Changes
- c19ff0b24: feat: modifierKey can be an array via @BJvdA
- 10.2.2721 May 2023
Release notes
Open source →Patch Changes
- 0dce2216c: detect lost pointer capture in PinchEngine
- 957aee8b5: fix: don't block events with similar timestamps #581
- 51c6cfcf4: chore: upgrade to typescript 5.0
- 10.2.267 Apr 2023
Release notes
Open source →Patch Changes
- db0d934eb: fix: add a try catch when calculating the distance and angle as apparently some events might be undefined on Windows #551
- 43e751a51: fix: calculate swipe from raw movement (_movement) #592
- 10.2.2527 Mar 2023
- 10.2.2428 Jan 2023
Release notes
Open source →Patch Changes
- 60aae2149: feat: Added option to configure keyboard displacement in the drag gesture
- 10.2.239 Dec 2022
- 10.2.223 Nov 2022
- 10.2.2130 Oct 2022
Release notes
Open source →Patch Changes
-
6f4c09b55: fix: rolls back wheel-based pinch movement to bounds (thanks @Andarist!)
-
854f4dfc1: feat (pinch):
pinchOnwheel: falseprevents pinching with wheel.
-
- 10.2.2015 Sept 2022
Release notes
Open source →Patch Changes
- de807fddc: fix: applying a new config to useGesture / Gesture shouldn't throw an error.
- 10.2.1930 Aug 2022
Release notes
Open source →Patch Changes
-
c7cb407bd: ts: Typescript 4.8 introduced a new mapping definition for NonNullable which breaks the package types.
// Native NonNullable Utility Type // definition on 4.7 and lower type NonNullable<T> = T extends null | undefined ? never : T // definition from 4.8 type NonNullable<T> = T & {}This fix reverts the definition of NonNullable so that it works. More information here: https://github.com/pmndrs/use-gesture/issues/501#issuecomment-1229486104
-
- 10.2.1810 Aug 2022
Release notes
Open source →Patch Changes
- 115ee1f59: fix: don't let Enter key preventDefault on onClick when filterTaps is true.
- 10.2.1716 Jul 2022
Release notes
Open source →Patch Changes
- 48dc6a102: feat: add option to remove arrow keys listeners for the drag gesture.
- d73ee4e34: Always trigger wheel events on pinch
- 10.2.1623 Jun 2022
Release notes
Open source →Patch Changes
- a521a171f: types: remove React types dependency on core package
- 10.2.1523 May 2022
Release notes
Open source →Patch Changes
- be1703a6d: fix: reset _preventScroll when setting up scroll prevention to avoid side effects
- 10.2.1416 May 2022
Release notes
Open source →Patch Changes
- e82f1c220: fix: improve detection for drag gesture, also fixes #494
- 10.2.1314 May 2022
Release notes
Open source →Patch Changes
- 6896094b3: fix: preventScroll should resist to multiple fingers drag
- 15724eb5c: - Have
deltaincrement on first keydown for drag- Fix
config.boundstype for drag gestures - Add
eventOptionsoption for each gesture
- Fix
- 10.2.1228 Apr 2022
- 10.2.1131 Mar 2022
Release notes
Open source →Patch Changes
- 670e6e2db: - fix: trigger
pointerDownevent whentriggerAllEventsanddelayoptions are set- fix: disable scroll prevention when the event type is
'mouse' - feat: add
axisThresholdproperty to set a threshold for axis calculation (can be set per device for the drag gesture) - fix: axis are now calculated on pixel movement rather than on transformed movement
- fix: disable scroll prevention when the event type is
- 5979b1add: feat: add modifierKey for wheel option. Defaults to
'ctrlKey'.
- 670e6e2db: - fix: trigger
- 10.2.1014 Mar 2022
Release notes
Open source →Patch Changes
- f593dbe09: - fix: increase
PINCH_WHEEL_RATIOto100to slow down zoom on wheel-based devices.- fix: force drag to start no matter the threshold when delay is reached.
- fix: improve
preventScroll.
- f593dbe09: - fix: increase
- 10.2.97 Mar 2022
Release notes
Open source →Patch Changes
- d86df73b9: feat: add
pointer.mouseoption to force mouse listeners instead of pointers when possible.
- d86df73b9: feat: add
- 10.2.85 Mar 2022
Release notes
Open source →Patch Changes
- 2c0fde118: fix: delta is now derived from the
offsetvalue after it is clamped by bounds.
- 2c0fde118: fix: delta is now derived from the
- 10.2.71 Mar 2022
- 10.2.611 Feb 2022
Release notes
Open source →Patch Changes
- 916d178c6: fix: make sure the drag gesture is ended when
touchcancelevent is triggered.
- 916d178c6: fix: make sure the drag gesture is ended when
- 10.2.53 Feb 2022
Release notes
Open source →Patch Changes
- cd5533a4c: fix: change TouchEvent detection
- 548a90985: [Drag] feat: Adding a custom threshold to taps when filtering them (
tapThreshold) - c5067dce0: feat: add
overflowstate attribute telling when offset is overflowing bounds. [Wheel] fix: only updateoffsetwhen it stays within bounds. - 4eaabaf1a: fix: add
lostpointercapturelistener for cases when thepointerupevent is missed.
- 10.2.412 Dec 2021
- 10.2.311 Dec 2021
Release notes
Open source →Patch Changes
- 8302c5bfd: fix: prevent deprecated resolvers from applying in dev mode
- 10.2.26 Dec 2021
- 10.2.16 Dec 2021
Release notes
Open source →Patch Changes
- 2f0cd466b: fix: release pointerId when PointerEvent is canceled. Should fix #376.
- 10.2.01 Dec 2021
Release notes
Open source →Minor Changes
- b4e6181e7: Fix: should fix
transformfunction doesn't have [0,0] origin. This required some pretty drastic internal changes hence the minor version bump.
- b4e6181e7: Fix: should fix
- 10.1.621 Nov 2021
- 10.1.515 Nov 2021
Release notes
Open source →Patch Changes
- 55505c071: fix:
event.buttonscondition was preventingpointer.touchfrom behaving properly.
- 55505c071: fix:
- 10.1.48 Nov 2021
Release notes
Open source →Patch Changes
- 090ba6b62: feat: allow pointer.buttons to accept an array or -1
- 10.1.34 Nov 2021
Release notes
Open source →Patch Changes
- a9f99ce3c: feat: warn in dev mode if transform function return invalid values
- 10.1.23 Nov 2021
- 10.1.118 Oct 2021
Release notes
Open source →Patch Changes
- 8a0bfacb0: fix: Remove the console output statement.
- 8a0bfacb0: fix: Remove the console output statement.
- 10.1.013 Oct 2021
Release notes
Open source →Minor Changes
- b67543ff7: Feat (drag): add the
pointer.buttonsin order to customize which buttons combination will trigger the drag gesture.
- b67543ff7: Feat (drag): add the
- 10.0.36 Oct 2021
Release notes
Open source →Patch Changes
- de01d7dbb: Sets state
canceled/_activeattributes synchronously withcancel().
- de01d7dbb: Sets state
- 10.0.230 Sept 2021
Release notes
Open source →Patch Changes
- a219d3f69: fix: make sure delay still set first to true when moving so that onDragStart can fire.
- 10.0.127 Sept 2021
Release notes
Open source →Patch Changes
- c00c7b1: fix: add movement to offset when using wheel-based browsers on pinch
- 10.0.022 Sept 2021
Nothing published for this version
- 10.0.0-beta.2615 Sept 2021pre-release
Nothing published for this version
- 10.0.0-beta.2513 Sept 2021pre-release
Nothing published for this version
- 10.0.0-beta.248 Sept 2021pre-release
Nothing published for this version
- 10.0.0-beta.232 Sept 2021pre-release
Nothing published for this version
- 10.0.0-beta.2227 Jul 2021pre-release
Nothing published for this version
- 10.0.0-beta.219 Jul 2021pre-release
Nothing published for this version
- 10.0.0-beta.208 Jul 2021pre-release
Nothing published for this version
- 10.0.0-beta.196 Jul 2021pre-release
Nothing published for this version
- 10.0.0-beta.186 Jul 2021pre-release
Nothing published for this version
- 10.0.0-beta.174 Jul 2021pre-release
Nothing published for this version
- 10.0.0-beta.1629 Jun 2021pre-release
Nothing published for this version
- 10.0.0-beta.1527 Jun 2021pre-release
Nothing published for this version
- 10.0.0-beta.1426 Jun 2021pre-release
Nothing published for this version
- 10.0.0-beta.1319 Jun 2021pre-release
Nothing published for this version
- 10.0.0-beta.1217 Jun 2021pre-release
Nothing published for this version
- 10.0.0-beta.116 Jun 2021pre-release
Nothing published for this version
- 10.0.0-beta.104 Jun 2021pre-release
Nothing published for this version
- 10.0.0-beta.927 May 2021pre-release
Nothing published for this version
- 10.0.0-beta.822 May 2021pre-release
Nothing published for this version