react-native-gesture-handler 3.0.0-beta.2 → 3.0.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1421) hide show
  1. package/ReanimatedDrawerLayout/package.json +1 -1
  2. package/ReanimatedSwipeable/package.json +1 -1
  3. package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -5
  4. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +58 -28
  5. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +23 -5
  6. package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +3 -6
  7. package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +2 -0
  8. package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +67 -12
  9. package/android/src/main/java/com/swmansion/gesturehandler/core/OnJSResponderCancelListener.kt +6 -0
  10. package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +2 -0
  11. package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +16 -6
  12. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +23 -7
  13. package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +0 -1
  14. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +429 -135
  15. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerDetectorView.kt +17 -0
  16. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +3 -1
  17. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +4 -10
  18. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +18 -8
  19. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +15 -4
  20. package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +0 -6
  21. package/apple/Handlers/RNFlingHandler.m +7 -7
  22. package/apple/Handlers/RNForceTouchHandler.m +3 -3
  23. package/apple/Handlers/RNHoverHandler.m +44 -13
  24. package/apple/Handlers/RNLongPressHandler.m +23 -10
  25. package/apple/Handlers/RNManualHandler.m +7 -2
  26. package/apple/Handlers/RNNativeViewHandler.mm +151 -36
  27. package/apple/Handlers/RNPanHandler.m +11 -7
  28. package/apple/Handlers/RNPinchHandler.m +20 -7
  29. package/apple/Handlers/RNRotationHandler.m +18 -6
  30. package/apple/Handlers/RNTapHandler.m +7 -5
  31. package/apple/RNGHUIKit.h +2 -0
  32. package/apple/RNGestureHandler.h +34 -1
  33. package/apple/RNGestureHandler.mm +110 -10
  34. package/apple/RNGestureHandlerButton.h +50 -1
  35. package/apple/RNGestureHandlerButton.mm +710 -49
  36. package/apple/RNGestureHandlerButtonComponentView.mm +134 -3
  37. package/apple/RNGestureHandlerDetector.mm +17 -0
  38. package/apple/RNGestureHandlerEvents.h +3 -1
  39. package/apple/RNGestureHandlerEvents.mm +8 -3
  40. package/apple/RNGestureHandlerManager.h +2 -0
  41. package/apple/RNGestureHandlerManager.mm +49 -3
  42. package/apple/RNGestureHandlerModule.mm +17 -10
  43. package/apple/RNGestureHandlerRegistry.h +2 -1
  44. package/apple/RNGestureHandlerRegistry.m +41 -11
  45. package/apple/RNManualActivationRecognizer.m +1 -1
  46. package/apple/RNRootViewGestureRecognizer.m +4 -15
  47. package/jest-utils/package.json +1 -1
  48. package/jestSetup.js +6 -16
  49. package/lib/module/RNGestureHandlerModule.web.js +2 -1
  50. package/lib/module/RNGestureHandlerModule.web.js.map +1 -1
  51. package/lib/module/RNGestureHandlerModule.windows.js +5 -6
  52. package/lib/module/RNGestureHandlerModule.windows.js.map +1 -1
  53. package/lib/module/components/GestureButtons.js +37 -20
  54. package/lib/module/components/GestureButtons.js.map +1 -1
  55. package/lib/module/components/GestureComponents.js +6 -8
  56. package/lib/module/components/GestureComponents.js.map +1 -1
  57. package/lib/module/components/GestureComponents.web.js +3 -4
  58. package/lib/module/components/GestureComponents.web.js.map +1 -1
  59. package/lib/module/components/GestureHandlerButton.js +2 -135
  60. package/lib/module/components/GestureHandlerButton.js.map +1 -1
  61. package/lib/module/components/GestureHandlerButton.web.js +160 -6
  62. package/lib/module/components/GestureHandlerButton.web.js.map +1 -1
  63. package/lib/module/components/GestureHandlerRootView.android.js.map +1 -1
  64. package/lib/module/components/GestureHandlerRootView.js +2 -2
  65. package/lib/module/components/GestureHandlerRootView.js.map +1 -1
  66. package/lib/module/components/GestureHandlerRootView.web.js +2 -2
  67. package/lib/module/components/GestureHandlerRootView.web.js.map +1 -1
  68. package/lib/module/components/Pressable/Pressable.js +17 -11
  69. package/lib/module/components/Pressable/Pressable.js.map +1 -1
  70. package/lib/module/components/Pressable/index.js.map +1 -1
  71. package/lib/module/components/Pressable/stateDefinitions.js +16 -3
  72. package/lib/module/components/Pressable/stateDefinitions.js.map +1 -1
  73. package/lib/module/components/Pressable/utils.js +1 -1
  74. package/lib/module/components/Pressable/utils.js.map +1 -1
  75. package/lib/module/components/ReanimatedDrawerLayout.js +11 -10
  76. package/lib/module/components/ReanimatedDrawerLayout.js.map +1 -1
  77. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js +16 -16
  78. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +1 -1
  79. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +1 -1
  80. package/lib/module/components/ReanimatedSwipeable/index.js +1 -1
  81. package/lib/module/components/ReanimatedSwipeable/index.js.map +1 -1
  82. package/lib/module/components/Text.js +33 -23
  83. package/lib/module/components/Text.js.map +1 -1
  84. package/lib/module/components/touchables/GenericTouchable.js +11 -19
  85. package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
  86. package/lib/module/components/touchables/TouchableHighlight.js +1 -1
  87. package/lib/module/components/touchables/TouchableHighlight.js.map +1 -1
  88. package/lib/module/components/touchables/TouchableNativeFeedback.android.js +1 -1
  89. package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +1 -1
  90. package/lib/module/components/touchables/TouchableOpacity.js +2 -2
  91. package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
  92. package/lib/module/components/touchables/TouchableWithoutFeedback.js +3 -4
  93. package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  94. package/lib/module/components/touchables/index.js +2 -2
  95. package/lib/module/components/touchables/index.js.map +1 -1
  96. package/lib/module/findNodeHandle.web.js +4 -2
  97. package/lib/module/findNodeHandle.web.js.map +1 -1
  98. package/lib/module/handlers/FlingGestureHandler.js.map +1 -1
  99. package/lib/module/handlers/ForceTouchGestureHandler.js +1 -1
  100. package/lib/module/handlers/ForceTouchGestureHandler.js.map +1 -1
  101. package/lib/module/handlers/LongPressGestureHandler.js.map +1 -1
  102. package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
  103. package/lib/module/handlers/PanGestureHandler.js.map +1 -1
  104. package/lib/module/handlers/PinchGestureHandler.js.map +1 -1
  105. package/lib/module/handlers/RotationGestureHandler.js.map +1 -1
  106. package/lib/module/handlers/TapGestureHandler.js.map +1 -1
  107. package/lib/module/handlers/createHandler.js +10 -10
  108. package/lib/module/handlers/createHandler.js.map +1 -1
  109. package/lib/module/handlers/createNativeWrapper.js +7 -3
  110. package/lib/module/handlers/createNativeWrapper.js.map +1 -1
  111. package/lib/module/handlers/gestures/GestureDetector/Wrap.js +1 -1
  112. package/lib/module/handlers/gestures/GestureDetector/Wrap.js.map +1 -1
  113. package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js +5 -4
  114. package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js.map +1 -1
  115. package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js +5 -5
  116. package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js.map +1 -1
  117. package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js +2 -2
  118. package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js.map +1 -1
  119. package/lib/module/handlers/gestures/GestureDetector/index.js +6 -6
  120. package/lib/module/handlers/gestures/GestureDetector/index.js.map +1 -1
  121. package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js +3 -3
  122. package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js.map +1 -1
  123. package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js +3 -3
  124. package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +1 -1
  125. package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js +4 -3
  126. package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +1 -1
  127. package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js +2 -2
  128. package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js.map +1 -1
  129. package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js +2 -2
  130. package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js.map +1 -1
  131. package/lib/module/handlers/gestures/GestureDetector/utils.js +18 -8
  132. package/lib/module/handlers/gestures/GestureDetector/utils.js.map +1 -1
  133. package/lib/module/handlers/gestures/eventReceiver.js.map +1 -1
  134. package/lib/module/handlers/gestures/flingGesture.js +8 -0
  135. package/lib/module/handlers/gestures/flingGesture.js.map +1 -1
  136. package/lib/module/handlers/gestures/forceTouchGesture.js +3 -3
  137. package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -1
  138. package/lib/module/handlers/gestures/gesture.js +9 -1
  139. package/lib/module/handlers/gestures/gesture.js.map +1 -1
  140. package/lib/module/handlers/gestures/gestureComposition.js +28 -0
  141. package/lib/module/handlers/gestures/gestureComposition.js.map +1 -1
  142. package/lib/module/handlers/gestures/gestureObjects.js +30 -4
  143. package/lib/module/handlers/gestures/gestureObjects.js.map +1 -1
  144. package/lib/module/handlers/gestures/gestureStateManager.js +9 -0
  145. package/lib/module/handlers/gestures/gestureStateManager.js.map +1 -1
  146. package/lib/module/handlers/gestures/hoverGesture.js +8 -0
  147. package/lib/module/handlers/gestures/hoverGesture.js.map +1 -1
  148. package/lib/module/handlers/gestures/longPressGesture.js +8 -0
  149. package/lib/module/handlers/gestures/longPressGesture.js.map +1 -1
  150. package/lib/module/handlers/gestures/manualGesture.js +8 -0
  151. package/lib/module/handlers/gestures/manualGesture.js.map +1 -1
  152. package/lib/module/handlers/gestures/nativeGesture.js +8 -0
  153. package/lib/module/handlers/gestures/nativeGesture.js.map +1 -1
  154. package/lib/module/handlers/gestures/panGesture.js +13 -0
  155. package/lib/module/handlers/gestures/panGesture.js.map +1 -1
  156. package/lib/module/handlers/gestures/pinchGesture.js +13 -0
  157. package/lib/module/handlers/gestures/pinchGesture.js.map +1 -1
  158. package/lib/module/handlers/gestures/reanimatedWrapper.js.map +1 -1
  159. package/lib/module/handlers/gestures/rotationGesture.js +8 -0
  160. package/lib/module/handlers/gestures/rotationGesture.js.map +1 -1
  161. package/lib/module/handlers/gestures/tapGesture.js +8 -0
  162. package/lib/module/handlers/gestures/tapGesture.js.map +1 -1
  163. package/lib/module/handlers/handlersRegistry.js.map +1 -1
  164. package/lib/module/handlers/utils.js +4 -4
  165. package/lib/module/handlers/utils.js.map +1 -1
  166. package/lib/module/index.js +15 -16
  167. package/lib/module/index.js.map +1 -1
  168. package/lib/module/jestUtils/index.js +1 -1
  169. package/lib/module/jestUtils/index.js.map +1 -1
  170. package/lib/module/jestUtils/jestUtils.js +0 -1
  171. package/lib/module/jestUtils/jestUtils.js.map +1 -1
  172. package/lib/module/mocks/GestureButtons.js +8 -5
  173. package/lib/module/mocks/GestureButtons.js.map +1 -1
  174. package/lib/module/mocks/Touchables.js +4 -0
  175. package/lib/module/mocks/Touchables.js.map +1 -0
  176. package/lib/module/mocks/gestureComponents.js +1 -12
  177. package/lib/module/mocks/gestureComponents.js.map +1 -1
  178. package/lib/module/specs/NativeRNGestureHandlerModule.js.map +1 -1
  179. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
  180. package/lib/module/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
  181. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
  182. package/lib/module/useIsScreenReaderEnabled.js +26 -0
  183. package/lib/module/useIsScreenReaderEnabled.js.map +1 -0
  184. package/lib/module/v3/NativeProxy.js.map +1 -1
  185. package/lib/module/v3/NativeProxy.web.js.map +1 -1
  186. package/lib/module/v3/components/GestureButtons.js +41 -25
  187. package/lib/module/v3/components/GestureButtons.js.map +1 -1
  188. package/lib/module/v3/components/GestureComponents.js +3 -3
  189. package/lib/module/v3/components/GestureComponents.js.map +1 -1
  190. package/lib/module/v3/components/GestureComponents.web.js +3 -4
  191. package/lib/module/v3/components/GestureComponents.web.js.map +1 -1
  192. package/lib/module/v3/components/Pressable.js +16 -15
  193. package/lib/module/v3/components/Pressable.js.map +1 -1
  194. package/lib/module/v3/components/Touchable/Touchable.js +132 -0
  195. package/lib/module/v3/components/Touchable/Touchable.js.map +1 -0
  196. package/lib/module/v3/components/Touchable/TouchableProps.js +4 -0
  197. package/lib/module/v3/components/Touchable/TouchableProps.js.map +1 -0
  198. package/lib/module/v3/components/index.js +3 -2
  199. package/lib/module/v3/components/index.js.map +1 -1
  200. package/lib/module/v3/createNativeWrapper.js +3 -3
  201. package/lib/module/v3/createNativeWrapper.js.map +1 -1
  202. package/lib/module/v3/detectors/GestureDetector.js +1 -1
  203. package/lib/module/v3/detectors/GestureDetector.js.map +1 -1
  204. package/lib/module/v3/detectors/HostGestureDetector.web.js +14 -10
  205. package/lib/module/v3/detectors/HostGestureDetector.web.js.map +1 -1
  206. package/lib/module/v3/detectors/NativeDetector.js +3 -3
  207. package/lib/module/v3/detectors/NativeDetector.js.map +1 -1
  208. package/lib/module/v3/detectors/ReanimatedNativeDetector.js +1 -1
  209. package/lib/module/v3/detectors/ReanimatedNativeDetector.js.map +1 -1
  210. package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +15 -9
  211. package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +1 -1
  212. package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js +10 -5
  213. package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js.map +1 -1
  214. package/lib/module/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +1 -1
  215. package/lib/module/v3/detectors/common.js +0 -3
  216. package/lib/module/v3/detectors/common.js.map +1 -1
  217. package/lib/module/v3/detectors/index.js +1 -1
  218. package/lib/module/v3/detectors/index.js.map +1 -1
  219. package/lib/module/v3/detectors/useEnsureGestureHandlerRootView.js.map +1 -1
  220. package/lib/module/v3/detectors/useNativeGestureRole.js +6 -0
  221. package/lib/module/v3/detectors/useNativeGestureRole.js.map +1 -0
  222. package/lib/module/v3/detectors/useNativeGestureRole.web.js +27 -0
  223. package/lib/module/v3/detectors/useNativeGestureRole.web.js.map +1 -0
  224. package/lib/module/v3/detectors/utils.js.map +1 -1
  225. package/lib/module/v3/gestureStateManager.js +0 -5
  226. package/lib/module/v3/gestureStateManager.js.map +1 -1
  227. package/lib/module/v3/gestureStateManager.web.js +0 -14
  228. package/lib/module/v3/gestureStateManager.web.js.map +1 -1
  229. package/lib/module/v3/hooks/callbacks/eventHandler.js +23 -19
  230. package/lib/module/v3/hooks/callbacks/eventHandler.js.map +1 -1
  231. package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js +2 -2
  232. package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js.map +1 -1
  233. package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js +19 -4
  234. package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js.map +1 -1
  235. package/lib/module/v3/hooks/composition/index.js +2 -2
  236. package/lib/module/v3/hooks/composition/index.js.map +1 -1
  237. package/lib/module/v3/hooks/composition/useCompetingGestures.js.map +1 -1
  238. package/lib/module/v3/hooks/composition/useComposedGesture.js +1 -1
  239. package/lib/module/v3/hooks/composition/useComposedGesture.js.map +1 -1
  240. package/lib/module/v3/hooks/composition/useExclusiveGestures.js.map +1 -1
  241. package/lib/module/v3/hooks/composition/useSimultaneousGestures.js.map +1 -1
  242. package/lib/module/v3/hooks/gestures/fling/{FlingProperties.js → FlingTypes.js} +1 -1
  243. package/lib/module/v3/hooks/gestures/fling/FlingTypes.js.map +1 -0
  244. package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js +2 -1
  245. package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js.map +1 -1
  246. package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js → HoverTypes.js} +1 -1
  247. package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js.map → HoverTypes.js.map} +1 -1
  248. package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js +10 -2
  249. package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js.map +1 -1
  250. package/lib/module/v3/hooks/gestures/index.js +4 -0
  251. package/lib/module/v3/hooks/gestures/index.js.map +1 -1
  252. package/lib/module/v3/hooks/gestures/longPress/{LongPressProperties.js → LongPressTypes.js} +1 -1
  253. package/lib/module/v3/hooks/gestures/longPress/LongPressTypes.js.map +1 -0
  254. package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js +2 -1
  255. package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js.map +1 -1
  256. package/lib/module/v3/hooks/gestures/manual/ManualTypes.js +4 -0
  257. package/lib/module/v3/hooks/gestures/manual/ManualTypes.js.map +1 -0
  258. package/lib/module/v3/hooks/gestures/manual/useManualGesture.js +2 -1
  259. package/lib/module/v3/hooks/gestures/manual/useManualGesture.js.map +1 -1
  260. package/lib/module/v3/hooks/gestures/native/NativeTypes.js +4 -0
  261. package/lib/module/v3/hooks/gestures/native/NativeTypes.js.map +1 -0
  262. package/lib/module/v3/hooks/gestures/native/useNativeGesture.js +2 -1
  263. package/lib/module/v3/hooks/gestures/native/useNativeGesture.js.map +1 -1
  264. package/lib/module/v3/hooks/gestures/pan/{PanProperties.js → PanTypes.js} +1 -1
  265. package/lib/module/v3/hooks/gestures/pan/PanTypes.js.map +1 -0
  266. package/lib/module/v3/hooks/gestures/pan/usePanGesture.js +9 -1
  267. package/lib/module/v3/hooks/gestures/pan/usePanGesture.js.map +1 -1
  268. package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js +4 -0
  269. package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js.map +1 -0
  270. package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js +9 -3
  271. package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js.map +1 -1
  272. package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js +4 -0
  273. package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js.map +1 -0
  274. package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js +9 -2
  275. package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js.map +1 -1
  276. package/lib/module/v3/hooks/gestures/tap/{TapProperties.js → TapTypes.js} +1 -1
  277. package/lib/module/v3/hooks/gestures/tap/TapTypes.js.map +1 -0
  278. package/lib/module/v3/hooks/gestures/tap/useTapGesture.js +2 -1
  279. package/lib/module/v3/hooks/gestures/tap/useTapGesture.js.map +1 -1
  280. package/lib/module/v3/hooks/useGesture.js +10 -11
  281. package/lib/module/v3/hooks/useGesture.js.map +1 -1
  282. package/lib/module/v3/hooks/useGestureCallbacks.js +4 -4
  283. package/lib/module/v3/hooks/useGestureCallbacks.js.map +1 -1
  284. package/lib/module/v3/hooks/utils/configUtils.js +9 -5
  285. package/lib/module/v3/hooks/utils/configUtils.js.map +1 -1
  286. package/lib/module/v3/hooks/utils/eventHandlersUtils.js +3 -7
  287. package/lib/module/v3/hooks/utils/eventHandlersUtils.js.map +1 -1
  288. package/lib/module/v3/hooks/utils/eventUtils.js +10 -0
  289. package/lib/module/v3/hooks/utils/eventUtils.js.map +1 -1
  290. package/lib/module/v3/hooks/utils/index.js +6 -6
  291. package/lib/module/v3/hooks/utils/index.js.map +1 -1
  292. package/lib/module/v3/hooks/utils/propsWhiteList.js +10 -8
  293. package/lib/module/v3/hooks/utils/propsWhiteList.js.map +1 -1
  294. package/lib/module/v3/hooks/utils/reanimatedUtils.js +1 -1
  295. package/lib/module/v3/hooks/utils/reanimatedUtils.js.map +1 -1
  296. package/lib/module/v3/index.js +3 -4
  297. package/lib/module/v3/index.js.map +1 -1
  298. package/lib/module/v3/types/GestureTypes.js.map +1 -1
  299. package/lib/module/v3/types/index.js +1 -1
  300. package/lib/module/v3/types/index.js.map +1 -1
  301. package/lib/module/web/Gestures.js +6 -6
  302. package/lib/module/web/Gestures.js.map +1 -1
  303. package/lib/module/web/constants.js +1 -0
  304. package/lib/module/web/constants.js.map +1 -1
  305. package/lib/module/web/detectors/RotationGestureDetector.js +22 -12
  306. package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -1
  307. package/lib/module/web/detectors/ScaleGestureDetector.js +10 -2
  308. package/lib/module/web/detectors/ScaleGestureDetector.js.map +1 -1
  309. package/lib/module/web/handlers/FlingGestureHandler.js +3 -3
  310. package/lib/module/web/handlers/FlingGestureHandler.js.map +1 -1
  311. package/lib/module/web/handlers/GestureHandler.js +60 -63
  312. package/lib/module/web/handlers/GestureHandler.js.map +1 -1
  313. package/lib/module/web/handlers/HoverGestureHandler.js +2 -5
  314. package/lib/module/web/handlers/HoverGestureHandler.js.map +1 -1
  315. package/lib/module/web/handlers/LongPressGestureHandler.js.map +1 -1
  316. package/lib/module/web/handlers/ManualGestureHandler.js +1 -0
  317. package/lib/module/web/handlers/ManualGestureHandler.js.map +1 -1
  318. package/lib/module/web/handlers/NativeViewGestureHandler.js +66 -18
  319. package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -1
  320. package/lib/module/web/handlers/PanGestureHandler.js +2 -1
  321. package/lib/module/web/handlers/PanGestureHandler.js.map +1 -1
  322. package/lib/module/web/handlers/PinchGestureHandler.js +11 -14
  323. package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -1
  324. package/lib/module/web/handlers/RotationGestureHandler.js +30 -35
  325. package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -1
  326. package/lib/module/web/handlers/TapGestureHandler.js.map +1 -1
  327. package/lib/module/web/interfaces.js +6 -0
  328. package/lib/module/web/interfaces.js.map +1 -1
  329. package/lib/module/web/tools/GestureHandlerOrchestrator.js +8 -2
  330. package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +1 -1
  331. package/lib/module/web/tools/GestureHandlerWebDelegate.js +62 -17
  332. package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +1 -1
  333. package/lib/module/web/tools/GestureLifecycleEvents.js +10 -0
  334. package/lib/module/web/tools/GestureLifecycleEvents.js.map +1 -0
  335. package/lib/module/web/tools/InteractionManager.js.map +1 -1
  336. package/lib/module/web/tools/KeyboardEventManager.js +1 -1
  337. package/lib/module/web/tools/KeyboardEventManager.js.map +1 -1
  338. package/lib/module/web/tools/PointerEventManager.js +16 -7
  339. package/lib/module/web/tools/PointerEventManager.js.map +1 -1
  340. package/lib/module/web/tools/WheelEventManager.js +2 -2
  341. package/lib/module/web/tools/WheelEventManager.js.map +1 -1
  342. package/lib/module/web/utils.js +22 -1
  343. package/lib/module/web/utils.js.map +1 -1
  344. package/lib/typescript/RNGestureHandlerModule.web.d.ts +1 -1
  345. package/lib/typescript/RNGestureHandlerModule.web.d.ts.map +1 -1
  346. package/lib/typescript/RNGestureHandlerModule.windows.d.ts +8 -8
  347. package/lib/typescript/RNGestureHandlerModule.windows.d.ts.map +1 -1
  348. package/lib/typescript/components/GestureButtons.d.ts +16 -5
  349. package/lib/typescript/components/GestureButtons.d.ts.map +1 -1
  350. package/lib/typescript/components/GestureButtonsProps.d.ts +21 -21
  351. package/lib/typescript/components/GestureButtonsProps.d.ts.map +1 -1
  352. package/lib/typescript/components/GestureComponents.d.ts +44 -14
  353. package/lib/typescript/components/GestureComponents.d.ts.map +1 -1
  354. package/lib/typescript/components/GestureComponents.web.d.ts +26 -6
  355. package/lib/typescript/components/GestureComponents.web.d.ts.map +1 -1
  356. package/lib/typescript/components/GestureHandlerButton.d.ts +114 -2
  357. package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -1
  358. package/lib/typescript/components/GestureHandlerButton.web.d.ts +20 -2
  359. package/lib/typescript/components/GestureHandlerButton.web.d.ts.map +1 -1
  360. package/lib/typescript/components/GestureHandlerRootView.android.d.ts +1 -1
  361. package/lib/typescript/components/GestureHandlerRootView.android.d.ts.map +1 -1
  362. package/lib/typescript/components/GestureHandlerRootView.d.ts +1 -1
  363. package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -1
  364. package/lib/typescript/components/GestureHandlerRootView.web.d.ts +2 -2
  365. package/lib/typescript/components/GestureHandlerRootView.web.d.ts.map +1 -1
  366. package/lib/typescript/components/Pressable/Pressable.d.ts +6 -3
  367. package/lib/typescript/components/Pressable/Pressable.d.ts.map +1 -1
  368. package/lib/typescript/components/Pressable/PressableProps.d.ts +4 -4
  369. package/lib/typescript/components/Pressable/PressableProps.d.ts.map +1 -1
  370. package/lib/typescript/components/Pressable/StateMachine.d.ts +1 -1
  371. package/lib/typescript/components/Pressable/StateMachine.d.ts.map +1 -1
  372. package/lib/typescript/components/Pressable/index.d.ts +1 -1
  373. package/lib/typescript/components/Pressable/index.d.ts.map +1 -1
  374. package/lib/typescript/components/Pressable/stateDefinitions.d.ts +3 -3
  375. package/lib/typescript/components/Pressable/stateDefinitions.d.ts.map +1 -1
  376. package/lib/typescript/components/Pressable/utils.d.ts +8 -7
  377. package/lib/typescript/components/Pressable/utils.d.ts.map +1 -1
  378. package/lib/typescript/components/ReanimatedDrawerLayout.d.ts +9 -5
  379. package/lib/typescript/components/ReanimatedDrawerLayout.d.ts.map +1 -1
  380. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts +2 -2
  381. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts.map +1 -1
  382. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts +9 -11
  383. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts.map +1 -1
  384. package/lib/typescript/components/ReanimatedSwipeable/index.d.ts +1 -1
  385. package/lib/typescript/components/ReanimatedSwipeable/index.d.ts.map +1 -1
  386. package/lib/typescript/components/Text.d.ts +15 -3
  387. package/lib/typescript/components/Text.d.ts.map +1 -1
  388. package/lib/typescript/components/touchables/ExtraButtonProps.d.ts +5 -5
  389. package/lib/typescript/components/touchables/ExtraButtonProps.d.ts.map +1 -1
  390. package/lib/typescript/components/touchables/GenericTouchable.d.ts +2 -2
  391. package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -1
  392. package/lib/typescript/components/touchables/GenericTouchableProps.d.ts +2 -2
  393. package/lib/typescript/components/touchables/GenericTouchableProps.d.ts.map +1 -1
  394. package/lib/typescript/components/touchables/TouchableHighlight.d.ts +3 -3
  395. package/lib/typescript/components/touchables/TouchableHighlight.d.ts.map +1 -1
  396. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +2 -2
  397. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts.map +1 -1
  398. package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts +1 -1
  399. package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts.map +1 -1
  400. package/lib/typescript/components/touchables/TouchableOpacity.d.ts +3 -2
  401. package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -1
  402. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +4 -3
  403. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -1
  404. package/lib/typescript/components/touchables/index.d.ts +3 -3
  405. package/lib/typescript/components/touchables/index.d.ts.map +1 -1
  406. package/lib/typescript/components/utils.d.ts +1 -1
  407. package/lib/typescript/components/utils.d.ts.map +1 -1
  408. package/lib/typescript/findNodeHandle.web.d.ts.map +1 -1
  409. package/lib/typescript/handlers/FlingGestureHandler.d.ts +1 -1
  410. package/lib/typescript/handlers/FlingGestureHandler.d.ts.map +1 -1
  411. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +3 -2
  412. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts.map +1 -1
  413. package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts +3 -3
  414. package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts.map +1 -1
  415. package/lib/typescript/handlers/LongPressGestureHandler.d.ts +2 -2
  416. package/lib/typescript/handlers/LongPressGestureHandler.d.ts.map +1 -1
  417. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +3 -3
  418. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -1
  419. package/lib/typescript/handlers/PanGestureHandler.d.ts +1 -1
  420. package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -1
  421. package/lib/typescript/handlers/PinchGestureHandler.d.ts +2 -2
  422. package/lib/typescript/handlers/PinchGestureHandler.d.ts.map +1 -1
  423. package/lib/typescript/handlers/RotationGestureHandler.d.ts +2 -2
  424. package/lib/typescript/handlers/RotationGestureHandler.d.ts.map +1 -1
  425. package/lib/typescript/handlers/TapGestureHandler.d.ts +1 -1
  426. package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -1
  427. package/lib/typescript/handlers/createHandler.d.ts +1 -1
  428. package/lib/typescript/handlers/createHandler.d.ts.map +1 -1
  429. package/lib/typescript/handlers/createNativeWrapper.d.ts +10 -2
  430. package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -1
  431. package/lib/typescript/handlers/gestureHandlerCommon.d.ts +27 -27
  432. package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -1
  433. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +3 -3
  434. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts.map +1 -1
  435. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.d.ts.map +1 -1
  436. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts +7 -6
  437. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts.map +1 -1
  438. package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts +5 -5
  439. package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts.map +1 -1
  440. package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts +1 -1
  441. package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts.map +1 -1
  442. package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts +3 -3
  443. package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts.map +1 -1
  444. package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts +2 -2
  445. package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts.map +1 -1
  446. package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts +2 -2
  447. package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts.map +1 -1
  448. package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts +3 -3
  449. package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts.map +1 -1
  450. package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts +1 -1
  451. package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts.map +1 -1
  452. package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts +5 -5
  453. package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts.map +1 -1
  454. package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts +1 -1
  455. package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts.map +1 -1
  456. package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts +2 -2
  457. package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts.map +1 -1
  458. package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts +2 -2
  459. package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts.map +1 -1
  460. package/lib/typescript/handlers/gestures/eventReceiver.d.ts +1 -1
  461. package/lib/typescript/handlers/gestures/eventReceiver.d.ts.map +1 -1
  462. package/lib/typescript/handlers/gestures/flingGesture.d.ts +9 -2
  463. package/lib/typescript/handlers/gestures/flingGesture.d.ts.map +1 -1
  464. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +7 -6
  465. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts.map +1 -1
  466. package/lib/typescript/handlers/gestures/gesture.d.ts +9 -3
  467. package/lib/typescript/handlers/gestures/gesture.d.ts.map +1 -1
  468. package/lib/typescript/handlers/gestures/gestureComposition.d.ts +23 -1
  469. package/lib/typescript/handlers/gestures/gestureComposition.d.ts.map +1 -1
  470. package/lib/typescript/handlers/gestures/gestureObjects.d.ts +31 -5
  471. package/lib/typescript/handlers/gestures/gestureObjects.d.ts.map +1 -1
  472. package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +6 -0
  473. package/lib/typescript/handlers/gestures/gestureStateManager.d.ts.map +1 -1
  474. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +1 -1
  475. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts.map +1 -1
  476. package/lib/typescript/handlers/gestures/hoverGesture.d.ts +9 -2
  477. package/lib/typescript/handlers/gestures/hoverGesture.d.ts.map +1 -1
  478. package/lib/typescript/handlers/gestures/longPressGesture.d.ts +9 -2
  479. package/lib/typescript/handlers/gestures/longPressGesture.d.ts.map +1 -1
  480. package/lib/typescript/handlers/gestures/manualGesture.d.ts +7 -1
  481. package/lib/typescript/handlers/gestures/manualGesture.d.ts.map +1 -1
  482. package/lib/typescript/handlers/gestures/nativeGesture.d.ts +9 -2
  483. package/lib/typescript/handlers/gestures/nativeGesture.d.ts.map +1 -1
  484. package/lib/typescript/handlers/gestures/panGesture.d.ts +13 -3
  485. package/lib/typescript/handlers/gestures/panGesture.d.ts.map +1 -1
  486. package/lib/typescript/handlers/gestures/pinchGesture.d.ts +11 -2
  487. package/lib/typescript/handlers/gestures/pinchGesture.d.ts.map +1 -1
  488. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +3 -3
  489. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts.map +1 -1
  490. package/lib/typescript/handlers/gestures/rotationGesture.d.ts +8 -2
  491. package/lib/typescript/handlers/gestures/rotationGesture.d.ts.map +1 -1
  492. package/lib/typescript/handlers/gestures/tapGesture.d.ts +9 -2
  493. package/lib/typescript/handlers/gestures/tapGesture.d.ts.map +1 -1
  494. package/lib/typescript/handlers/handlersRegistry.d.ts +6 -6
  495. package/lib/typescript/handlers/handlersRegistry.d.ts.map +1 -1
  496. package/lib/typescript/handlers/utils.d.ts +1 -1
  497. package/lib/typescript/handlers/utils.d.ts.map +1 -1
  498. package/lib/typescript/index.d.ts +41 -42
  499. package/lib/typescript/index.d.ts.map +1 -1
  500. package/lib/typescript/jestUtils/index.d.ts +1 -1
  501. package/lib/typescript/jestUtils/jestUtils.d.ts +22 -21
  502. package/lib/typescript/jestUtils/jestUtils.d.ts.map +1 -1
  503. package/lib/typescript/mocks/GestureButtons.d.ts +5 -5
  504. package/lib/typescript/mocks/GestureButtons.d.ts.map +1 -1
  505. package/lib/typescript/mocks/Touchables.d.ts +2 -0
  506. package/lib/typescript/mocks/Touchables.d.ts.map +1 -0
  507. package/lib/typescript/mocks/gestureComponents.d.ts +1 -13
  508. package/lib/typescript/mocks/gestureComponents.d.ts.map +1 -1
  509. package/lib/typescript/mountRegistry.d.ts +1 -1
  510. package/lib/typescript/mountRegistry.d.ts.map +1 -1
  511. package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts +2 -2
  512. package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts.map +1 -1
  513. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +36 -3
  514. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts.map +1 -1
  515. package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts +8 -8
  516. package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts.map +1 -1
  517. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +1 -1
  518. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts.map +1 -1
  519. package/lib/typescript/useIsScreenReaderEnabled.d.ts +2 -0
  520. package/lib/typescript/useIsScreenReaderEnabled.d.ts.map +1 -0
  521. package/lib/typescript/useIsomorphicLayoutEffect.d.ts +1 -1
  522. package/lib/typescript/useIsomorphicLayoutEffect.d.ts.map +1 -1
  523. package/lib/typescript/v3/NativeProxy.d.ts +3 -3
  524. package/lib/typescript/v3/NativeProxy.d.ts.map +1 -1
  525. package/lib/typescript/v3/NativeProxy.web.d.ts +3 -3
  526. package/lib/typescript/v3/NativeProxy.web.d.ts.map +1 -1
  527. package/lib/typescript/v3/components/GestureButtons.d.ts +21 -11
  528. package/lib/typescript/v3/components/GestureButtons.d.ts.map +1 -1
  529. package/lib/typescript/v3/components/GestureButtonsProps.d.ts +25 -85
  530. package/lib/typescript/v3/components/GestureButtonsProps.d.ts.map +1 -1
  531. package/lib/typescript/v3/components/GestureComponents.d.ts +27 -38
  532. package/lib/typescript/v3/components/GestureComponents.d.ts.map +1 -1
  533. package/lib/typescript/v3/components/GestureComponents.web.d.ts +26 -34
  534. package/lib/typescript/v3/components/GestureComponents.web.d.ts.map +1 -1
  535. package/lib/typescript/v3/components/Pressable.d.ts +1 -1
  536. package/lib/typescript/v3/components/Pressable.d.ts.map +1 -1
  537. package/lib/typescript/v3/components/Touchable/Touchable.d.ts +4 -0
  538. package/lib/typescript/v3/components/Touchable/Touchable.d.ts.map +1 -0
  539. package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts +40 -0
  540. package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts.map +1 -0
  541. package/lib/typescript/v3/components/index.d.ts +5 -3
  542. package/lib/typescript/v3/components/index.d.ts.map +1 -1
  543. package/lib/typescript/v3/createNativeWrapper.d.ts +3 -7
  544. package/lib/typescript/v3/createNativeWrapper.d.ts.map +1 -1
  545. package/lib/typescript/v3/detectors/GestureDetector.d.ts +3 -3
  546. package/lib/typescript/v3/detectors/GestureDetector.d.ts.map +1 -1
  547. package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts +10 -6
  548. package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts.map +1 -1
  549. package/lib/typescript/v3/detectors/NativeDetector.d.ts +2 -2
  550. package/lib/typescript/v3/detectors/NativeDetector.d.ts.map +1 -1
  551. package/lib/typescript/v3/detectors/ReanimatedNativeDetector.d.ts.map +1 -1
  552. package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts +2 -2
  553. package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts.map +1 -1
  554. package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts +2 -2
  555. package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts.map +1 -1
  556. package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts +1 -1
  557. package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts.map +1 -1
  558. package/lib/typescript/v3/detectors/common.d.ts +14 -15
  559. package/lib/typescript/v3/detectors/common.d.ts.map +1 -1
  560. package/lib/typescript/v3/detectors/index.d.ts +1 -1
  561. package/lib/typescript/v3/detectors/index.d.ts.map +1 -1
  562. package/lib/typescript/v3/detectors/useEnsureGestureHandlerRootView.d.ts.map +1 -1
  563. package/lib/typescript/v3/detectors/useNativeGestureRole.d.ts +3 -0
  564. package/lib/typescript/v3/detectors/useNativeGestureRole.d.ts.map +1 -0
  565. package/lib/typescript/v3/detectors/useNativeGestureRole.web.d.ts +3 -0
  566. package/lib/typescript/v3/detectors/useNativeGestureRole.web.d.ts.map +1 -0
  567. package/lib/typescript/v3/detectors/utils.d.ts +2 -2
  568. package/lib/typescript/v3/detectors/utils.d.ts.map +1 -1
  569. package/lib/typescript/v3/gestureStateManager.d.ts +0 -1
  570. package/lib/typescript/v3/gestureStateManager.d.ts.map +1 -1
  571. package/lib/typescript/v3/gestureStateManager.web.d.ts +1 -1
  572. package/lib/typescript/v3/gestureStateManager.web.d.ts.map +1 -1
  573. package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts +6 -6
  574. package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts.map +1 -1
  575. package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts +2 -2
  576. package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts.map +1 -1
  577. package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts +3 -3
  578. package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts.map +1 -1
  579. package/lib/typescript/v3/hooks/composition/index.d.ts +2 -2
  580. package/lib/typescript/v3/hooks/composition/index.d.ts.map +1 -1
  581. package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts +1 -1
  582. package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts.map +1 -1
  583. package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts +1 -1
  584. package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts.map +1 -1
  585. package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts +1 -1
  586. package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts.map +1 -1
  587. package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts +1 -1
  588. package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts.map +1 -1
  589. package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts +36 -0
  590. package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts.map +1 -0
  591. package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts +2 -15
  592. package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts.map +1 -1
  593. package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts +38 -0
  594. package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts.map +1 -0
  595. package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts +2 -20
  596. package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts.map +1 -1
  597. package/lib/typescript/v3/hooks/gestures/index.d.ts +19 -28
  598. package/lib/typescript/v3/hooks/gestures/index.d.ts.map +1 -1
  599. package/lib/typescript/v3/hooks/gestures/longPress/{LongPressProperties.d.ts → LongPressTypes.d.ts} +16 -1
  600. package/lib/typescript/v3/hooks/gestures/longPress/LongPressTypes.d.ts.map +1 -0
  601. package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts +2 -15
  602. package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts.map +1 -1
  603. package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts +10 -0
  604. package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts.map +1 -0
  605. package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts +2 -10
  606. package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts.map +1 -1
  607. package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts +33 -0
  608. package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts.map +1 -0
  609. package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts +2 -12
  610. package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts.map +1 -1
  611. package/lib/typescript/v3/hooks/gestures/pan/{PanProperties.d.ts → PanTypes.d.ts} +25 -1
  612. package/lib/typescript/v3/hooks/gestures/pan/PanTypes.d.ts.map +1 -0
  613. package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts +2 -22
  614. package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts.map +1 -1
  615. package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts +17 -0
  616. package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts.map +1 -0
  617. package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts +2 -16
  618. package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts.map +1 -1
  619. package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts +17 -0
  620. package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts.map +1 -0
  621. package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts +2 -16
  622. package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts.map +1 -1
  623. package/lib/typescript/v3/hooks/gestures/tap/{TapProperties.d.ts → TapTypes.d.ts} +14 -1
  624. package/lib/typescript/v3/hooks/gestures/tap/TapTypes.d.ts.map +1 -0
  625. package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts +2 -15
  626. package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts.map +1 -1
  627. package/lib/typescript/v3/hooks/useGesture.d.ts +2 -2
  628. package/lib/typescript/v3/hooks/useGesture.d.ts.map +1 -1
  629. package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts +4 -4
  630. package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts.map +1 -1
  631. package/lib/typescript/v3/hooks/utils/configUtils.d.ts +4 -4
  632. package/lib/typescript/v3/hooks/utils/configUtils.d.ts.map +1 -1
  633. package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts +4 -4
  634. package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts.map +1 -1
  635. package/lib/typescript/v3/hooks/utils/eventUtils.d.ts +8 -6
  636. package/lib/typescript/v3/hooks/utils/eventUtils.d.ts.map +1 -1
  637. package/lib/typescript/v3/hooks/utils/index.d.ts +6 -6
  638. package/lib/typescript/v3/hooks/utils/index.d.ts.map +1 -1
  639. package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts +6 -5
  640. package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts.map +1 -1
  641. package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts +4 -4
  642. package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts.map +1 -1
  643. package/lib/typescript/v3/hooks/utils/relationUtils.d.ts +2 -2
  644. package/lib/typescript/v3/hooks/utils/relationUtils.d.ts.map +1 -1
  645. package/lib/typescript/v3/index.d.ts +6 -7
  646. package/lib/typescript/v3/index.d.ts.map +1 -1
  647. package/lib/typescript/v3/types/ConfigTypes.d.ts +36 -34
  648. package/lib/typescript/v3/types/ConfigTypes.d.ts.map +1 -1
  649. package/lib/typescript/v3/types/DetectorTypes.d.ts +10 -6
  650. package/lib/typescript/v3/types/DetectorTypes.d.ts.map +1 -1
  651. package/lib/typescript/v3/types/EventTypes.d.ts +11 -8
  652. package/lib/typescript/v3/types/EventTypes.d.ts.map +1 -1
  653. package/lib/typescript/v3/types/GestureTypes.d.ts +16 -16
  654. package/lib/typescript/v3/types/GestureTypes.d.ts.map +1 -1
  655. package/lib/typescript/v3/types/NativeWrapperType.d.ts +7 -4
  656. package/lib/typescript/v3/types/NativeWrapperType.d.ts.map +1 -1
  657. package/lib/typescript/v3/types/ReanimatedTypes.d.ts +1 -1
  658. package/lib/typescript/v3/types/ReanimatedTypes.d.ts.map +1 -1
  659. package/lib/typescript/v3/types/UtilityTypes.d.ts +7 -7
  660. package/lib/typescript/v3/types/UtilityTypes.d.ts.map +1 -1
  661. package/lib/typescript/v3/types/index.d.ts +6 -6
  662. package/lib/typescript/v3/types/index.d.ts.map +1 -1
  663. package/lib/typescript/web/Gestures.d.ts +6 -6
  664. package/lib/typescript/web/Gestures.d.ts.map +1 -1
  665. package/lib/typescript/web/constants.d.ts +1 -0
  666. package/lib/typescript/web/constants.d.ts.map +1 -1
  667. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +2 -2
  668. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts.map +1 -1
  669. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +2 -2
  670. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts.map +1 -1
  671. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +3 -3
  672. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts.map +1 -1
  673. package/lib/typescript/web/handlers/GestureHandler.d.ts +16 -9
  674. package/lib/typescript/web/handlers/GestureHandler.d.ts.map +1 -1
  675. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +4 -4
  676. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts.map +1 -1
  677. package/lib/typescript/web/handlers/IGestureHandler.d.ts +8 -6
  678. package/lib/typescript/web/handlers/IGestureHandler.d.ts.map +1 -1
  679. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +4 -4
  680. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts.map +1 -1
  681. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +4 -3
  682. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts.map +1 -1
  683. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +17 -7
  684. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts.map +1 -1
  685. package/lib/typescript/web/handlers/PanGestureHandler.d.ts +5 -4
  686. package/lib/typescript/web/handlers/PanGestureHandler.d.ts.map +1 -1
  687. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +5 -4
  688. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts.map +1 -1
  689. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +6 -6
  690. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts.map +1 -1
  691. package/lib/typescript/web/handlers/TapGestureHandler.d.ts +3 -3
  692. package/lib/typescript/web/handlers/TapGestureHandler.d.ts.map +1 -1
  693. package/lib/typescript/web/interfaces.d.ts +38 -32
  694. package/lib/typescript/web/interfaces.d.ts.map +1 -1
  695. package/lib/typescript/web/tools/EventManager.d.ts +1 -1
  696. package/lib/typescript/web/tools/EventManager.d.ts.map +1 -1
  697. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +4 -0
  698. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts.map +1 -1
  699. package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +1 -0
  700. package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts.map +1 -1
  701. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +6 -1
  702. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts.map +1 -1
  703. package/lib/typescript/web/tools/GestureLifecycleEvents.d.ts +7 -0
  704. package/lib/typescript/web/tools/GestureLifecycleEvents.d.ts.map +1 -0
  705. package/lib/typescript/web/tools/InteractionManager.d.ts +2 -2
  706. package/lib/typescript/web/tools/InteractionManager.d.ts.map +1 -1
  707. package/lib/typescript/web/tools/KeyboardEventManager.d.ts +2 -1
  708. package/lib/typescript/web/tools/KeyboardEventManager.d.ts.map +1 -1
  709. package/lib/typescript/web/tools/NodeManager.d.ts +3 -3
  710. package/lib/typescript/web/tools/NodeManager.d.ts.map +1 -1
  711. package/lib/typescript/web/tools/PointerEventManager.d.ts +2 -1
  712. package/lib/typescript/web/tools/PointerEventManager.d.ts.map +1 -1
  713. package/lib/typescript/web/tools/PointerTracker.d.ts +1 -1
  714. package/lib/typescript/web/tools/PointerTracker.d.ts.map +1 -1
  715. package/lib/typescript/web/tools/Vector.d.ts +1 -1
  716. package/lib/typescript/web/tools/Vector.d.ts.map +1 -1
  717. package/lib/typescript/web/tools/VelocityTracker.d.ts +1 -1
  718. package/lib/typescript/web/tools/VelocityTracker.d.ts.map +1 -1
  719. package/lib/typescript/web/tools/WheelEventManager.d.ts +1 -1
  720. package/lib/typescript/web/tools/WheelEventManager.d.ts.map +1 -1
  721. package/lib/typescript/web/utils.d.ts +2 -1
  722. package/lib/typescript/web/utils.d.ts.map +1 -1
  723. package/package.json +11 -11
  724. package/react-native.config.js +0 -1
  725. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h +0 -1
  726. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerDetectorShadowNode.cpp +61 -30
  727. package/src/RNGestureHandlerModule.web.ts +2 -2
  728. package/src/RNGestureHandlerModule.windows.ts +8 -10
  729. package/src/components/GestureButtons.tsx +55 -43
  730. package/src/components/GestureButtonsProps.ts +22 -21
  731. package/src/components/GestureComponents.tsx +28 -35
  732. package/src/components/GestureComponents.web.tsx +9 -12
  733. package/src/components/GestureHandlerButton.tsx +150 -144
  734. package/src/components/GestureHandlerButton.web.tsx +219 -3
  735. package/src/components/GestureHandlerRootView.android.tsx +2 -1
  736. package/src/components/GestureHandlerRootView.tsx +5 -4
  737. package/src/components/GestureHandlerRootView.web.tsx +6 -4
  738. package/src/components/Pressable/Pressable.tsx +36 -28
  739. package/src/components/Pressable/PressableProps.tsx +9 -8
  740. package/src/components/Pressable/StateMachine.tsx +1 -1
  741. package/src/components/Pressable/index.ts +1 -1
  742. package/src/components/Pressable/stateDefinitions.ts +31 -5
  743. package/src/components/Pressable/utils.ts +16 -12
  744. package/src/components/ReanimatedDrawerLayout.tsx +415 -426
  745. package/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx +30 -30
  746. package/src/components/ReanimatedSwipeable/ReanimatedSwipeableProps.ts +10 -13
  747. package/src/components/ReanimatedSwipeable/index.ts +2 -2
  748. package/src/components/Text.tsx +51 -52
  749. package/src/components/touchables/ExtraButtonProps.ts +5 -5
  750. package/src/components/touchables/GenericTouchable.tsx +19 -25
  751. package/src/components/touchables/GenericTouchableProps.ts +4 -3
  752. package/src/components/touchables/TouchableHighlight.tsx +8 -8
  753. package/src/components/touchables/TouchableNativeFeedback.android.tsx +5 -3
  754. package/src/components/touchables/TouchableNativeFeedbackProps.tsx +2 -1
  755. package/src/components/touchables/TouchableOpacity.tsx +5 -9
  756. package/src/components/touchables/TouchableWithoutFeedback.tsx +17 -24
  757. package/src/components/touchables/index.ts +3 -3
  758. package/src/components/utils.ts +1 -1
  759. package/src/findNodeHandle.web.ts +12 -2
  760. package/src/handlers/FlingGestureHandler.ts +3 -5
  761. package/src/handlers/ForceTouchGestureHandler.ts +6 -6
  762. package/src/handlers/GestureHandlerEventPayload.ts +3 -3
  763. package/src/handlers/LongPressGestureHandler.ts +3 -5
  764. package/src/handlers/NativeViewGestureHandler.ts +5 -7
  765. package/src/handlers/PanGestureHandler.ts +3 -5
  766. package/src/handlers/PinchGestureHandler.ts +3 -5
  767. package/src/handlers/RotationGestureHandler.ts +3 -5
  768. package/src/handlers/TapGestureHandler.ts +3 -5
  769. package/src/handlers/createHandler.tsx +19 -22
  770. package/src/handlers/createNativeWrapper.tsx +12 -7
  771. package/src/handlers/gestureHandlerCommon.ts +31 -29
  772. package/src/handlers/gestureHandlerTypesCompat.ts +5 -5
  773. package/src/handlers/gestures/GestureDetector/Wrap.tsx +2 -1
  774. package/src/handlers/gestures/GestureDetector/Wrap.web.tsx +34 -30
  775. package/src/handlers/gestures/GestureDetector/attachHandlers.ts +14 -13
  776. package/src/handlers/gestures/GestureDetector/dropHandlers.ts +3 -3
  777. package/src/handlers/gestures/GestureDetector/index.tsx +11 -10
  778. package/src/handlers/gestures/GestureDetector/needsToReattach.ts +2 -2
  779. package/src/handlers/gestures/GestureDetector/types.ts +2 -2
  780. package/src/handlers/gestures/GestureDetector/updateHandlers.ts +7 -7
  781. package/src/handlers/gestures/GestureDetector/useAnimatedGesture.ts +11 -12
  782. package/src/handlers/gestures/GestureDetector/useDetectorUpdater.ts +9 -8
  783. package/src/handlers/gestures/GestureDetector/useMountReactions.ts +5 -4
  784. package/src/handlers/gestures/GestureDetector/useViewRefHandler.ts +5 -4
  785. package/src/handlers/gestures/GestureDetector/utils.ts +24 -14
  786. package/src/handlers/gestures/eventReceiver.ts +8 -8
  787. package/src/handlers/gestures/flingGesture.ts +9 -2
  788. package/src/handlers/gestures/forceTouchGesture.ts +7 -6
  789. package/src/handlers/gestures/gesture.ts +15 -9
  790. package/src/handlers/gestures/gestureComposition.ts +23 -1
  791. package/src/handlers/gestures/gestureObjects.ts +31 -5
  792. package/src/handlers/gestures/gestureStateManager.ts +6 -0
  793. package/src/handlers/gestures/gestureStateManager.web.ts +1 -1
  794. package/src/handlers/gestures/hoverGesture.ts +9 -2
  795. package/src/handlers/gestures/longPressGesture.ts +9 -2
  796. package/src/handlers/gestures/manualGesture.ts +7 -1
  797. package/src/handlers/gestures/nativeGesture.ts +9 -2
  798. package/src/handlers/gestures/panGesture.ts +13 -3
  799. package/src/handlers/gestures/pinchGesture.ts +11 -2
  800. package/src/handlers/gestures/reanimatedWrapper.ts +7 -6
  801. package/src/handlers/gestures/rotationGesture.ts +8 -2
  802. package/src/handlers/gestures/tapGesture.ts +9 -2
  803. package/src/handlers/handlersRegistry.ts +13 -6
  804. package/src/handlers/utils.ts +6 -5
  805. package/src/index.ts +111 -117
  806. package/src/jestUtils/index.ts +1 -1
  807. package/src/jestUtils/jestUtils.ts +45 -50
  808. package/src/mocks/GestureButtons.tsx +9 -5
  809. package/src/mocks/Touchables.tsx +6 -0
  810. package/src/mocks/gestureComponents.tsx +7 -22
  811. package/src/mountRegistry.ts +1 -1
  812. package/src/specs/NativeRNGestureHandlerModule.ts +3 -2
  813. package/src/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
  814. package/src/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
  815. package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
  816. package/src/useIsScreenReaderEnabled.ts +31 -0
  817. package/src/v3/NativeProxy.ts +13 -5
  818. package/src/v3/NativeProxy.web.ts +13 -5
  819. package/src/v3/components/GestureButtons.tsx +52 -28
  820. package/src/v3/components/GestureButtonsProps.ts +38 -110
  821. package/src/v3/components/GestureComponents.tsx +29 -34
  822. package/src/v3/components/GestureComponents.web.tsx +7 -10
  823. package/src/v3/components/Pressable.tsx +33 -28
  824. package/src/v3/components/Touchable/Touchable.tsx +167 -0
  825. package/src/v3/components/Touchable/TouchableProps.ts +55 -0
  826. package/src/v3/components/index.ts +12 -13
  827. package/src/v3/createNativeWrapper.tsx +14 -16
  828. package/src/v3/detectors/GestureDetector.tsx +17 -9
  829. package/src/v3/detectors/HostGestureDetector.web.tsx +35 -22
  830. package/src/v3/detectors/NativeDetector.tsx +12 -10
  831. package/src/v3/detectors/ReanimatedNativeDetector.tsx +4 -5
  832. package/src/v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx +66 -34
  833. package/src/v3/detectors/VirtualDetector/VirtualDetector.tsx +32 -13
  834. package/src/v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts +2 -1
  835. package/src/v3/detectors/common.ts +40 -20
  836. package/src/v3/detectors/index.ts +1 -1
  837. package/src/v3/detectors/useEnsureGestureHandlerRootView.ts +1 -0
  838. package/src/v3/detectors/useNativeGestureRole.ts +8 -0
  839. package/src/v3/detectors/useNativeGestureRole.web.ts +42 -0
  840. package/src/v3/detectors/utils.ts +4 -3
  841. package/src/v3/gestureStateManager.ts +0 -6
  842. package/src/v3/gestureStateManager.web.ts +2 -17
  843. package/src/v3/hooks/callbacks/eventHandler.ts +87 -47
  844. package/src/v3/hooks/callbacks/useGestureEventHandler.ts +21 -9
  845. package/src/v3/hooks/callbacks/useReanimatedEventHandler.ts +42 -18
  846. package/src/v3/hooks/composition/index.ts +2 -2
  847. package/src/v3/hooks/composition/useCompetingGestures.ts +2 -1
  848. package/src/v3/hooks/composition/useComposedGesture.ts +6 -6
  849. package/src/v3/hooks/composition/useExclusiveGestures.ts +2 -1
  850. package/src/v3/hooks/composition/useSimultaneousGestures.ts +2 -1
  851. package/src/v3/hooks/gestures/fling/FlingTypes.ts +60 -0
  852. package/src/v3/hooks/gestures/fling/useFlingGesture.ts +11 -34
  853. package/src/v3/hooks/gestures/hover/HoverTypes.ts +76 -0
  854. package/src/v3/hooks/gestures/hover/useHoverGesture.ts +29 -56
  855. package/src/v3/hooks/gestures/index.ts +111 -32
  856. package/src/v3/hooks/gestures/longPress/{LongPressProperties.ts → LongPressTypes.ts} +39 -0
  857. package/src/v3/hooks/gestures/longPress/useLongPressGesture.ts +13 -44
  858. package/src/v3/hooks/gestures/manual/ManualTypes.ts +28 -0
  859. package/src/v3/hooks/gestures/manual/useManualGesture.ts +11 -28
  860. package/src/v3/hooks/gestures/native/NativeTypes.ts +62 -0
  861. package/src/v3/hooks/gestures/native/useNativeGesture.ts +11 -34
  862. package/src/v3/hooks/gestures/pan/{PanProperties.ts → PanTypes.ts} +55 -0
  863. package/src/v3/hooks/gestures/pan/usePanGesture.ts +34 -55
  864. package/src/v3/hooks/gestures/pinch/PinchTypes.ts +40 -0
  865. package/src/v3/hooks/gestures/pinch/usePinchGesture.ts +26 -41
  866. package/src/v3/hooks/gestures/rotation/RotationTypes.ts +41 -0
  867. package/src/v3/hooks/gestures/rotation/useRotationGesture.ts +24 -39
  868. package/src/v3/hooks/gestures/tap/{TapProperties.ts → TapTypes.ts} +32 -0
  869. package/src/v3/hooks/gestures/tap/useTapGesture.ts +14 -36
  870. package/src/v3/hooks/useGesture.ts +26 -18
  871. package/src/v3/hooks/useGestureCallbacks.ts +14 -9
  872. package/src/v3/hooks/utils/configUtils.ts +61 -22
  873. package/src/v3/hooks/utils/eventHandlersUtils.ts +23 -20
  874. package/src/v3/hooks/utils/eventUtils.ts +63 -21
  875. package/src/v3/hooks/utils/index.ts +15 -21
  876. package/src/v3/hooks/utils/propsWhiteList.ts +24 -12
  877. package/src/v3/hooks/utils/reanimatedUtils.ts +22 -10
  878. package/src/v3/hooks/utils/relationUtils.ts +3 -3
  879. package/src/v3/index.ts +51 -46
  880. package/src/v3/types/ConfigTypes.ts +48 -36
  881. package/src/v3/types/DetectorTypes.ts +29 -7
  882. package/src/v3/types/EventTypes.ts +27 -16
  883. package/src/v3/types/GestureTypes.ts +49 -22
  884. package/src/v3/types/NativeWrapperType.ts +21 -6
  885. package/src/v3/types/ReanimatedTypes.ts +1 -1
  886. package/src/v3/types/UtilityTypes.ts +7 -7
  887. package/src/v3/types/index.ts +32 -36
  888. package/src/web/Gestures.ts +6 -6
  889. package/src/web/constants.ts +1 -0
  890. package/src/web/detectors/RotationGestureDetector.ts +27 -14
  891. package/src/web/detectors/ScaleGestureDetector.ts +13 -7
  892. package/src/web/handlers/FlingGestureHandler.ts +6 -7
  893. package/src/web/handlers/GestureHandler.ts +102 -125
  894. package/src/web/handlers/HoverGestureHandler.ts +7 -10
  895. package/src/web/handlers/IGestureHandler.ts +8 -6
  896. package/src/web/handlers/LongPressGestureHandler.ts +4 -5
  897. package/src/web/handlers/ManualGestureHandler.ts +5 -3
  898. package/src/web/handlers/NativeViewGestureHandler.ts +128 -25
  899. package/src/web/handlers/PanGestureHandler.ts +9 -7
  900. package/src/web/handlers/PinchGestureHandler.ts +22 -22
  901. package/src/web/handlers/RotationGestureHandler.ts +34 -47
  902. package/src/web/handlers/TapGestureHandler.ts +4 -4
  903. package/src/web/interfaces.ts +42 -35
  904. package/src/web/tools/EventManager.ts +1 -1
  905. package/src/web/tools/GestureHandlerDelegate.ts +4 -0
  906. package/src/web/tools/GestureHandlerOrchestrator.ts +11 -4
  907. package/src/web/tools/GestureHandlerWebDelegate.ts +82 -23
  908. package/src/web/tools/GestureLifecycleEvents.ts +14 -0
  909. package/src/web/tools/InteractionManager.ts +3 -2
  910. package/src/web/tools/KeyboardEventManager.ts +3 -2
  911. package/src/web/tools/NodeManager.ts +2 -2
  912. package/src/web/tools/PointerEventManager.ts +30 -9
  913. package/src/web/tools/PointerTracker.ts +1 -1
  914. package/src/web/tools/Vector.ts +1 -1
  915. package/src/web/tools/VelocityTracker.ts +1 -1
  916. package/src/web/tools/WheelEventManager.ts +3 -2
  917. package/src/web/utils.ts +28 -2
  918. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonWrapperViewManager.kt +0 -30
  919. package/apple/RNGestureHandlerButtonManager.h +0 -5
  920. package/apple/RNGestureHandlerButtonManager.mm +0 -60
  921. package/apple/RNGestureHandlerButtonWrapper.h +0 -19
  922. package/apple/RNGestureHandlerButtonWrapper.mm +0 -46
  923. package/lib/commonjs/ActionType.js +0 -22
  924. package/lib/commonjs/ActionType.js.map +0 -1
  925. package/lib/commonjs/Directions.js +0 -38
  926. package/lib/commonjs/Directions.js.map +0 -1
  927. package/lib/commonjs/GestureHandlerRootViewContext.js +0 -10
  928. package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
  929. package/lib/commonjs/PlatformConstants.js +0 -9
  930. package/lib/commonjs/PlatformConstants.js.map +0 -1
  931. package/lib/commonjs/PlatformConstants.web.js +0 -12
  932. package/lib/commonjs/PlatformConstants.web.js.map +0 -1
  933. package/lib/commonjs/PointerType.js +0 -15
  934. package/lib/commonjs/PointerType.js.map +0 -1
  935. package/lib/commonjs/RNGestureHandlerModule.js +0 -12
  936. package/lib/commonjs/RNGestureHandlerModule.js.map +0 -1
  937. package/lib/commonjs/RNGestureHandlerModule.web.js +0 -73
  938. package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
  939. package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -53
  940. package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
  941. package/lib/commonjs/RNRenderer.js +0 -14
  942. package/lib/commonjs/RNRenderer.js.map +0 -1
  943. package/lib/commonjs/RNRenderer.web.js +0 -10
  944. package/lib/commonjs/RNRenderer.web.js.map +0 -1
  945. package/lib/commonjs/State.js +0 -19
  946. package/lib/commonjs/State.js.map +0 -1
  947. package/lib/commonjs/TouchEventType.js +0 -16
  948. package/lib/commonjs/TouchEventType.js.map +0 -1
  949. package/lib/commonjs/components/GestureButtons.js +0 -220
  950. package/lib/commonjs/components/GestureButtons.js.map +0 -1
  951. package/lib/commonjs/components/GestureButtonsProps.js +0 -6
  952. package/lib/commonjs/components/GestureButtonsProps.js.map +0 -1
  953. package/lib/commonjs/components/GestureComponents.js +0 -127
  954. package/lib/commonjs/components/GestureComponents.js.map +0 -1
  955. package/lib/commonjs/components/GestureComponents.web.js +0 -61
  956. package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
  957. package/lib/commonjs/components/GestureHandlerButton.js +0 -144
  958. package/lib/commonjs/components/GestureHandlerButton.js.map +0 -1
  959. package/lib/commonjs/components/GestureHandlerButton.web.js +0 -16
  960. package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
  961. package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -32
  962. package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
  963. package/lib/commonjs/components/GestureHandlerRootView.js +0 -30
  964. package/lib/commonjs/components/GestureHandlerRootView.js.map +0 -1
  965. package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -30
  966. package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
  967. package/lib/commonjs/components/Pressable/Pressable.js +0 -270
  968. package/lib/commonjs/components/Pressable/Pressable.js.map +0 -1
  969. package/lib/commonjs/components/Pressable/PressableProps.js +0 -6
  970. package/lib/commonjs/components/Pressable/PressableProps.js.map +0 -1
  971. package/lib/commonjs/components/Pressable/StateMachine.js +0 -44
  972. package/lib/commonjs/components/Pressable/StateMachine.js.map +0 -1
  973. package/lib/commonjs/components/Pressable/index.js +0 -14
  974. package/lib/commonjs/components/Pressable/index.js.map +0 -1
  975. package/lib/commonjs/components/Pressable/stateDefinitions.js +0 -88
  976. package/lib/commonjs/components/Pressable/stateDefinitions.js.map +0 -1
  977. package/lib/commonjs/components/Pressable/utils.js +0 -92
  978. package/lib/commonjs/components/Pressable/utils.js.map +0 -1
  979. package/lib/commonjs/components/ReanimatedDrawerLayout.js +0 -377
  980. package/lib/commonjs/components/ReanimatedDrawerLayout.js.map +0 -1
  981. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js +0 -347
  982. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +0 -1
  983. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js +0 -12
  984. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +0 -1
  985. package/lib/commonjs/components/ReanimatedSwipeable/index.js +0 -21
  986. package/lib/commonjs/components/ReanimatedSwipeable/index.js.map +0 -1
  987. package/lib/commonjs/components/Text.js +0 -60
  988. package/lib/commonjs/components/Text.js.map +0 -1
  989. package/lib/commonjs/components/touchables/ExtraButtonProps.js +0 -2
  990. package/lib/commonjs/components/touchables/ExtraButtonProps.js.map +0 -1
  991. package/lib/commonjs/components/touchables/GenericTouchable.js +0 -245
  992. package/lib/commonjs/components/touchables/GenericTouchable.js.map +0 -1
  993. package/lib/commonjs/components/touchables/GenericTouchableProps.js +0 -6
  994. package/lib/commonjs/components/touchables/GenericTouchableProps.js.map +0 -1
  995. package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -93
  996. package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
  997. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -84
  998. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  999. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -13
  1000. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
  1001. package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js +0 -6
  1002. package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js.map +0 -1
  1003. package/lib/commonjs/components/touchables/TouchableOpacity.js +0 -65
  1004. package/lib/commonjs/components/touchables/TouchableOpacity.js.map +0 -1
  1005. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +0 -33
  1006. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +0 -1
  1007. package/lib/commonjs/components/touchables/index.js +0 -35
  1008. package/lib/commonjs/components/touchables/index.js.map +0 -1
  1009. package/lib/commonjs/components/utils.js +0 -17
  1010. package/lib/commonjs/components/utils.js.map +0 -1
  1011. package/lib/commonjs/findNodeHandle.js +0 -9
  1012. package/lib/commonjs/findNodeHandle.js.map +0 -1
  1013. package/lib/commonjs/findNodeHandle.web.js +0 -39
  1014. package/lib/commonjs/findNodeHandle.web.js.map +0 -1
  1015. package/lib/commonjs/getShadowNodeFromRef.js +0 -51
  1016. package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
  1017. package/lib/commonjs/getShadowNodeFromRef.web.js +0 -14
  1018. package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
  1019. package/lib/commonjs/ghQueueMicrotask.js +0 -10
  1020. package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
  1021. package/lib/commonjs/global.d.js +0 -6
  1022. package/lib/commonjs/global.d.js.map +0 -1
  1023. package/lib/commonjs/globals.js +0 -6
  1024. package/lib/commonjs/globals.js.map +0 -1
  1025. package/lib/commonjs/handlers/FlingGestureHandler.js +0 -31
  1026. package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
  1027. package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -46
  1028. package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
  1029. package/lib/commonjs/handlers/GestureHandlerEventPayload.js +0 -6
  1030. package/lib/commonjs/handlers/GestureHandlerEventPayload.js.map +0 -1
  1031. package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -33
  1032. package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
  1033. package/lib/commonjs/handlers/NativeViewGestureHandler.js +0 -32
  1034. package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +0 -1
  1035. package/lib/commonjs/handlers/PanGestureHandler.js +0 -112
  1036. package/lib/commonjs/handlers/PanGestureHandler.js.map +0 -1
  1037. package/lib/commonjs/handlers/PinchGestureHandler.js +0 -29
  1038. package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
  1039. package/lib/commonjs/handlers/PressabilityDebugView.js +0 -13
  1040. package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
  1041. package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -11
  1042. package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
  1043. package/lib/commonjs/handlers/RotationGestureHandler.js +0 -29
  1044. package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
  1045. package/lib/commonjs/handlers/TapGestureHandler.js +0 -33
  1046. package/lib/commonjs/handlers/TapGestureHandler.js.map +0 -1
  1047. package/lib/commonjs/handlers/createHandler.js +0 -334
  1048. package/lib/commonjs/handlers/createHandler.js.map +0 -1
  1049. package/lib/commonjs/handlers/createNativeWrapper.js +0 -78
  1050. package/lib/commonjs/handlers/createNativeWrapper.js.map +0 -1
  1051. package/lib/commonjs/handlers/customDirectEventTypes.js +0 -13
  1052. package/lib/commonjs/handlers/customDirectEventTypes.js.map +0 -1
  1053. package/lib/commonjs/handlers/customDirectEventTypes.web.js +0 -10
  1054. package/lib/commonjs/handlers/customDirectEventTypes.web.js.map +0 -1
  1055. package/lib/commonjs/handlers/gestureHandlerCommon.js +0 -27
  1056. package/lib/commonjs/handlers/gestureHandlerCommon.js.map +0 -1
  1057. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
  1058. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
  1059. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js +0 -32
  1060. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js.map +0 -1
  1061. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js +0 -41
  1062. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js.map +0 -1
  1063. package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js +0 -68
  1064. package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js.map +0 -1
  1065. package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js +0 -20
  1066. package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js.map +0 -1
  1067. package/lib/commonjs/handlers/gestures/GestureDetector/index.js +0 -122
  1068. package/lib/commonjs/handlers/gestures/GestureDetector/index.js.map +0 -1
  1069. package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js +0 -22
  1070. package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js.map +0 -1
  1071. package/lib/commonjs/handlers/gestures/GestureDetector/types.js +0 -6
  1072. package/lib/commonjs/handlers/gestures/GestureDetector/types.js.map +0 -1
  1073. package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js +0 -67
  1074. package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js.map +0 -1
  1075. package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js +0 -143
  1076. package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +0 -1
  1077. package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js +0 -47
  1078. package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +0 -1
  1079. package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js +0 -41
  1080. package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js.map +0 -1
  1081. package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js +0 -41
  1082. package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js.map +0 -1
  1083. package/lib/commonjs/handlers/gestures/GestureDetector/utils.js +0 -145
  1084. package/lib/commonjs/handlers/gestures/GestureDetector/utils.js.map +0 -1
  1085. package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -106
  1086. package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
  1087. package/lib/commonjs/handlers/gestures/flingGesture.js +0 -37
  1088. package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
  1089. package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -80
  1090. package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
  1091. package/lib/commonjs/handlers/gestures/gesture.js +0 -344
  1092. package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
  1093. package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -90
  1094. package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
  1095. package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -132
  1096. package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
  1097. package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -50
  1098. package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
  1099. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -36
  1100. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
  1101. package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -57
  1102. package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
  1103. package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -46
  1104. package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
  1105. package/lib/commonjs/handlers/gestures/manualGesture.js +0 -25
  1106. package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
  1107. package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
  1108. package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
  1109. package/lib/commonjs/handlers/gestures/panGesture.js +0 -197
  1110. package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
  1111. package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -38
  1112. package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
  1113. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -32
  1114. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
  1115. package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -38
  1116. package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
  1117. package/lib/commonjs/handlers/gestures/tapGesture.js +0 -87
  1118. package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
  1119. package/lib/commonjs/handlers/getNextHandlerTag.js +0 -11
  1120. package/lib/commonjs/handlers/getNextHandlerTag.js.map +0 -1
  1121. package/lib/commonjs/handlers/handlersRegistry.js +0 -74
  1122. package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
  1123. package/lib/commonjs/handlers/utils.js +0 -79
  1124. package/lib/commonjs/handlers/utils.js.map +0 -1
  1125. package/lib/commonjs/index.js +0 -277
  1126. package/lib/commonjs/index.js.map +0 -1
  1127. package/lib/commonjs/init.js +0 -11
  1128. package/lib/commonjs/init.js.map +0 -1
  1129. package/lib/commonjs/jestUtils/index.js +0 -19
  1130. package/lib/commonjs/jestUtils/index.js.map +0 -1
  1131. package/lib/commonjs/jestUtils/jestUtils.js +0 -350
  1132. package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
  1133. package/lib/commonjs/mocks/GestureButtons.js +0 -23
  1134. package/lib/commonjs/mocks/GestureButtons.js.map +0 -1
  1135. package/lib/commonjs/mocks/Pressable.js +0 -13
  1136. package/lib/commonjs/mocks/Pressable.js.map +0 -1
  1137. package/lib/commonjs/mocks/gestureComponents.js +0 -19
  1138. package/lib/commonjs/mocks/gestureComponents.js.map +0 -1
  1139. package/lib/commonjs/mocks/hostDetector.js +0 -10
  1140. package/lib/commonjs/mocks/hostDetector.js.map +0 -1
  1141. package/lib/commonjs/mocks/module.js +0 -30
  1142. package/lib/commonjs/mocks/module.js.map +0 -1
  1143. package/lib/commonjs/mountRegistry.js +0 -37
  1144. package/lib/commonjs/mountRegistry.js.map +0 -1
  1145. package/lib/commonjs/package.json +0 -1
  1146. package/lib/commonjs/specs/NativeRNGestureHandlerModule.js +0 -9
  1147. package/lib/commonjs/specs/NativeRNGestureHandlerModule.js.map +0 -1
  1148. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.ts +0 -27
  1149. package/lib/commonjs/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1150. package/lib/commonjs/specs/RNGestureHandlerDetectorNativeComponent.ts +0 -74
  1151. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -15
  1152. package/lib/commonjs/typeUtils.js +0 -2
  1153. package/lib/commonjs/typeUtils.js.map +0 -1
  1154. package/lib/commonjs/useIsomorphicLayoutEffect.js +0 -20
  1155. package/lib/commonjs/useIsomorphicLayoutEffect.js.map +0 -1
  1156. package/lib/commonjs/utils.js +0 -83
  1157. package/lib/commonjs/utils.js.map +0 -1
  1158. package/lib/commonjs/v3/NativeProxy.js +0 -48
  1159. package/lib/commonjs/v3/NativeProxy.js.map +0 -1
  1160. package/lib/commonjs/v3/NativeProxy.web.js +0 -29
  1161. package/lib/commonjs/v3/NativeProxy.web.js.map +0 -1
  1162. package/lib/commonjs/v3/components/GestureButtons.js +0 -153
  1163. package/lib/commonjs/v3/components/GestureButtons.js.map +0 -1
  1164. package/lib/commonjs/v3/components/GestureButtonsProps.js +0 -6
  1165. package/lib/commonjs/v3/components/GestureButtonsProps.js.map +0 -1
  1166. package/lib/commonjs/v3/components/GestureComponents.js +0 -124
  1167. package/lib/commonjs/v3/components/GestureComponents.js.map +0 -1
  1168. package/lib/commonjs/v3/components/GestureComponents.web.js +0 -39
  1169. package/lib/commonjs/v3/components/GestureComponents.web.js.map +0 -1
  1170. package/lib/commonjs/v3/components/Pressable.js +0 -283
  1171. package/lib/commonjs/v3/components/Pressable.js.map +0 -1
  1172. package/lib/commonjs/v3/components/index.js +0 -76
  1173. package/lib/commonjs/v3/components/index.js.map +0 -1
  1174. package/lib/commonjs/v3/createNativeWrapper.js +0 -70
  1175. package/lib/commonjs/v3/createNativeWrapper.js.map +0 -1
  1176. package/lib/commonjs/v3/detectors/GestureDetector.js +0 -24
  1177. package/lib/commonjs/v3/detectors/GestureDetector.js.map +0 -1
  1178. package/lib/commonjs/v3/detectors/HostGestureDetector.js +0 -11
  1179. package/lib/commonjs/v3/detectors/HostGestureDetector.js.map +0 -1
  1180. package/lib/commonjs/v3/detectors/HostGestureDetector.web.js +0 -113
  1181. package/lib/commonjs/v3/detectors/HostGestureDetector.web.js.map +0 -1
  1182. package/lib/commonjs/v3/detectors/NativeDetector.js +0 -76
  1183. package/lib/commonjs/v3/detectors/NativeDetector.js.map +0 -1
  1184. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js +0 -74
  1185. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js.map +0 -1
  1186. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js +0 -11
  1187. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js.map +0 -1
  1188. package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +0 -167
  1189. package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +0 -1
  1190. package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js +0 -74
  1191. package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js.map +0 -1
  1192. package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js +0 -19
  1193. package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +0 -1
  1194. package/lib/commonjs/v3/detectors/common.js +0 -22
  1195. package/lib/commonjs/v3/detectors/common.js.map +0 -1
  1196. package/lib/commonjs/v3/detectors/index.js +0 -34
  1197. package/lib/commonjs/v3/detectors/index.js.map +0 -1
  1198. package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js +0 -17
  1199. package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js.map +0 -1
  1200. package/lib/commonjs/v3/detectors/utils.js +0 -130
  1201. package/lib/commonjs/v3/detectors/utils.js.map +0 -1
  1202. package/lib/commonjs/v3/gestureStateManager.js +0 -42
  1203. package/lib/commonjs/v3/gestureStateManager.js.map +0 -1
  1204. package/lib/commonjs/v3/gestureStateManager.web.js +0 -54
  1205. package/lib/commonjs/v3/gestureStateManager.web.js.map +0 -1
  1206. package/lib/commonjs/v3/hooks/callbacks/eventHandler.js +0 -80
  1207. package/lib/commonjs/v3/hooks/callbacks/eventHandler.js.map +0 -1
  1208. package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js +0 -50
  1209. package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
  1210. package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js +0 -22
  1211. package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
  1212. package/lib/commonjs/v3/hooks/callbacks/updateHandler.js +0 -30
  1213. package/lib/commonjs/v3/hooks/callbacks/updateHandler.js.map +0 -1
  1214. package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js +0 -21
  1215. package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js.map +0 -1
  1216. package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js +0 -39
  1217. package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js.map +0 -1
  1218. package/lib/commonjs/v3/hooks/composition/index.js +0 -27
  1219. package/lib/commonjs/v3/hooks/composition/index.js.map +0 -1
  1220. package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js +0 -12
  1221. package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js.map +0 -1
  1222. package/lib/commonjs/v3/hooks/composition/useComposedGesture.js +0 -52
  1223. package/lib/commonjs/v3/hooks/composition/useComposedGesture.js.map +0 -1
  1224. package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js +0 -14
  1225. package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js.map +0 -1
  1226. package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js +0 -13
  1227. package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js.map +0 -1
  1228. package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js +0 -8
  1229. package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
  1230. package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js +0 -14
  1231. package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js.map +0 -1
  1232. package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js +0 -8
  1233. package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js.map +0 -1
  1234. package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js +0 -27
  1235. package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js.map +0 -1
  1236. package/lib/commonjs/v3/hooks/gestures/index.js +0 -69
  1237. package/lib/commonjs/v3/hooks/gestures/index.js.map +0 -1
  1238. package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js +0 -8
  1239. package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
  1240. package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js +0 -21
  1241. package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js.map +0 -1
  1242. package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js +0 -2
  1243. package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
  1244. package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js +0 -14
  1245. package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js.map +0 -1
  1246. package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js +0 -8
  1247. package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
  1248. package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js +0 -14
  1249. package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js.map +0 -1
  1250. package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js +0 -8
  1251. package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
  1252. package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js +0 -79
  1253. package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js.map +0 -1
  1254. package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
  1255. package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
  1256. package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js +0 -27
  1257. package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js.map +0 -1
  1258. package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
  1259. package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
  1260. package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js +0 -26
  1261. package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js.map +0 -1
  1262. package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js +0 -8
  1263. package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
  1264. package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js +0 -15
  1265. package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js.map +0 -1
  1266. package/lib/commonjs/v3/hooks/index.js +0 -28
  1267. package/lib/commonjs/v3/hooks/index.js.map +0 -1
  1268. package/lib/commonjs/v3/hooks/useGesture.js +0 -84
  1269. package/lib/commonjs/v3/hooks/useGesture.js.map +0 -1
  1270. package/lib/commonjs/v3/hooks/useGestureCallbacks.js +0 -53
  1271. package/lib/commonjs/v3/hooks/useGestureCallbacks.js.map +0 -1
  1272. package/lib/commonjs/v3/hooks/utils/configUtils.js +0 -73
  1273. package/lib/commonjs/v3/hooks/utils/configUtils.js.map +0 -1
  1274. package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js +0 -96
  1275. package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js.map +0 -1
  1276. package/lib/commonjs/v3/hooks/utils/eventUtils.js +0 -73
  1277. package/lib/commonjs/v3/hooks/utils/eventUtils.js.map +0 -1
  1278. package/lib/commonjs/v3/hooks/utils/index.js +0 -168
  1279. package/lib/commonjs/v3/hooks/utils/index.js.map +0 -1
  1280. package/lib/commonjs/v3/hooks/utils/propsWhiteList.js +0 -31
  1281. package/lib/commonjs/v3/hooks/utils/propsWhiteList.js.map +0 -1
  1282. package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js +0 -85
  1283. package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js.map +0 -1
  1284. package/lib/commonjs/v3/hooks/utils/relationUtils.js +0 -51
  1285. package/lib/commonjs/v3/hooks/utils/relationUtils.js.map +0 -1
  1286. package/lib/commonjs/v3/index.js +0 -180
  1287. package/lib/commonjs/v3/index.js.map +0 -1
  1288. package/lib/commonjs/v3/types/ConfigTypes.js +0 -6
  1289. package/lib/commonjs/v3/types/ConfigTypes.js.map +0 -1
  1290. package/lib/commonjs/v3/types/DetectorTypes.js +0 -6
  1291. package/lib/commonjs/v3/types/DetectorTypes.js.map +0 -1
  1292. package/lib/commonjs/v3/types/EventTypes.js +0 -6
  1293. package/lib/commonjs/v3/types/EventTypes.js.map +0 -1
  1294. package/lib/commonjs/v3/types/GestureTypes.js +0 -28
  1295. package/lib/commonjs/v3/types/GestureTypes.js.map +0 -1
  1296. package/lib/commonjs/v3/types/NativeWrapperType.js +0 -6
  1297. package/lib/commonjs/v3/types/NativeWrapperType.js.map +0 -1
  1298. package/lib/commonjs/v3/types/ReanimatedTypes.js +0 -2
  1299. package/lib/commonjs/v3/types/ReanimatedTypes.js.map +0 -1
  1300. package/lib/commonjs/v3/types/UtilityTypes.js +0 -6
  1301. package/lib/commonjs/v3/types/UtilityTypes.js.map +0 -1
  1302. package/lib/commonjs/v3/types/index.js +0 -19
  1303. package/lib/commonjs/v3/types/index.js.map +0 -1
  1304. package/lib/commonjs/web/Gestures.js +0 -30
  1305. package/lib/commonjs/web/Gestures.js.map +0 -1
  1306. package/lib/commonjs/web/constants.js +0 -9
  1307. package/lib/commonjs/web/constants.js.map +0 -1
  1308. package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -124
  1309. package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
  1310. package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -111
  1311. package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
  1312. package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -141
  1313. package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
  1314. package/lib/commonjs/web/handlers/GestureHandler.js +0 -857
  1315. package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
  1316. package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -50
  1317. package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
  1318. package/lib/commonjs/web/handlers/IGestureHandler.js +0 -2
  1319. package/lib/commonjs/web/handlers/IGestureHandler.js.map +0 -1
  1320. package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -144
  1321. package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
  1322. package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -42
  1323. package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
  1324. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -147
  1325. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
  1326. package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -386
  1327. package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
  1328. package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -126
  1329. package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
  1330. package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -133
  1331. package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
  1332. package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -213
  1333. package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
  1334. package/lib/commonjs/web/interfaces.js +0 -25
  1335. package/lib/commonjs/web/interfaces.js.map +0 -1
  1336. package/lib/commonjs/web/tools/CircularBuffer.js +0 -40
  1337. package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
  1338. package/lib/commonjs/web/tools/EventManager.js +0 -102
  1339. package/lib/commonjs/web/tools/EventManager.js.map +0 -1
  1340. package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -2
  1341. package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
  1342. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -269
  1343. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  1344. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -219
  1345. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  1346. package/lib/commonjs/web/tools/InteractionManager.js +0 -83
  1347. package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
  1348. package/lib/commonjs/web/tools/KeyboardEventManager.js +0 -108
  1349. package/lib/commonjs/web/tools/KeyboardEventManager.js.map +0 -1
  1350. package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -159
  1351. package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
  1352. package/lib/commonjs/web/tools/NodeManager.js +0 -45
  1353. package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
  1354. package/lib/commonjs/web/tools/PointerEventManager.js +0 -186
  1355. package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
  1356. package/lib/commonjs/web/tools/PointerTracker.js +0 -192
  1357. package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
  1358. package/lib/commonjs/web/tools/Vector.js +0 -37
  1359. package/lib/commonjs/web/tools/Vector.js.map +0 -1
  1360. package/lib/commonjs/web/tools/VelocityTracker.js +0 -85
  1361. package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
  1362. package/lib/commonjs/web/tools/WheelEventManager.js +0 -55
  1363. package/lib/commonjs/web/tools/WheelEventManager.js.map +0 -1
  1364. package/lib/commonjs/web/utils.js +0 -235
  1365. package/lib/commonjs/web/utils.js.map +0 -1
  1366. package/lib/module/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1367. package/lib/module/v3/hooks/callbacks/stateChangeHandler.js +0 -46
  1368. package/lib/module/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
  1369. package/lib/module/v3/hooks/callbacks/touchEventHandler.js +0 -18
  1370. package/lib/module/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
  1371. package/lib/module/v3/hooks/callbacks/updateHandler.js +0 -26
  1372. package/lib/module/v3/hooks/callbacks/updateHandler.js.map +0 -1
  1373. package/lib/module/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
  1374. package/lib/module/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
  1375. package/lib/module/v3/hooks/gestures/manual/ManualProperties.js +0 -2
  1376. package/lib/module/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
  1377. package/lib/module/v3/hooks/gestures/native/NativeProperties.js +0 -4
  1378. package/lib/module/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
  1379. package/lib/module/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
  1380. package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
  1381. package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
  1382. package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
  1383. package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
  1384. package/lib/module/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
  1385. package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts +0 -6
  1386. package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts.map +0 -1
  1387. package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts +0 -4
  1388. package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts.map +0 -1
  1389. package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts +0 -3
  1390. package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts.map +0 -1
  1391. package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts +0 -4
  1392. package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts.map +0 -1
  1393. package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts +0 -23
  1394. package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts.map +0 -1
  1395. package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts +0 -18
  1396. package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts.map +0 -1
  1397. package/lib/typescript/v3/hooks/gestures/longPress/LongPressProperties.d.ts.map +0 -1
  1398. package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts +0 -2
  1399. package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts.map +0 -1
  1400. package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts +0 -16
  1401. package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts.map +0 -1
  1402. package/lib/typescript/v3/hooks/gestures/pan/PanProperties.d.ts.map +0 -1
  1403. package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts +0 -2
  1404. package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts.map +0 -1
  1405. package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts +0 -2
  1406. package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts.map +0 -1
  1407. package/lib/typescript/v3/hooks/gestures/tap/TapProperties.d.ts.map +0 -1
  1408. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperComponentDescriptor.h +0 -32
  1409. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.cpp +0 -102
  1410. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.h +0 -56
  1411. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperState.h +0 -32
  1412. package/src/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1413. package/src/v3/hooks/callbacks/stateChangeHandler.ts +0 -70
  1414. package/src/v3/hooks/callbacks/touchEventHandler.ts +0 -32
  1415. package/src/v3/hooks/callbacks/updateHandler.ts +0 -53
  1416. package/src/v3/hooks/gestures/fling/FlingProperties.ts +0 -26
  1417. package/src/v3/hooks/gestures/hover/HoverProperties.ts +0 -22
  1418. package/src/v3/hooks/gestures/manual/ManualProperties.ts +0 -1
  1419. package/src/v3/hooks/gestures/native/NativeProperties.ts +0 -19
  1420. package/src/v3/hooks/gestures/pinch/PinchProperties.ts +0 -1
  1421. package/src/v3/hooks/gestures/rotation/RotationProperties.ts +0 -1
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import { NativeDetectorProps } from './common';
3
- export declare function NativeDetector<THandlerData, TConfig>({ gesture, children, touchAction, userSelect, enableContextMenu, }: NativeDetectorProps<THandlerData, TConfig>): React.JSX.Element;
2
+ import type { NativeDetectorProps } from './common';
3
+ export declare function NativeDetector<TConfig, THandlerData, TExtendedHandlerData extends THandlerData>({ gesture, children, touchAction, userSelect, enableContextMenu, }: NativeDetectorProps<TConfig, THandlerData, TExtendedHandlerData>): React.JSX.Element;
4
4
  //# sourceMappingURL=NativeDetector.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"NativeDetector.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/NativeDetector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAIvC,OAAO,EAEL,mBAAmB,EAEpB,MAAM,UAAU,CAAC;AAIlB,wBAAgB,cAAc,CAAC,YAAY,EAAE,OAAO,EAAE,EACpD,OAAO,EACP,QAAQ,EACR,WAAW,EACX,UAAU,EACV,iBAAiB,GAClB,EAAE,mBAAmB,CAAC,YAAY,EAAE,OAAO,CAAC,qBAuE5C"}
1
+ {"version":3,"file":"NativeDetector.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/NativeDetector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAIvC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAMpD,wBAAgB,cAAc,CAC5B,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,EACzC,EACA,OAAO,EACP,QAAQ,EACR,WAAW,EACX,UAAU,EACV,iBAAiB,GAClB,EAAE,mBAAmB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,qBAuElE"}
@@ -1 +1 @@
1
- {"version":3,"file":"ReanimatedNativeDetector.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/ReanimatedNativeDetector.tsx"],"names":[],"mappings":"AAKA,OAA4B,EAC1B,KAAK,4CAA4C,EAClD,MAAM,uBAAuB,CAAC;AA2B/B,iBAAS,4BAA4B,CACnC,KAAK,EAAE,4CAA4C,+BAuDpD;AAED,eAAO,MAAM,wBAAwB,qIAE+B,CAAC"}
1
+ {"version":3,"file":"ReanimatedNativeDetector.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/ReanimatedNativeDetector.tsx"],"names":[],"mappings":"AAKA,OAA4B,EAC1B,KAAK,4CAA4C,EAClD,MAAM,uBAAuB,CAAC;AA0B/B,iBAAS,4BAA4B,CACnC,KAAK,EAAE,4CAA4C,+BAuDpD;AAED,eAAO,MAAM,wBAAwB,qIAE+B,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import { InterceptingGestureDetectorProps } from '../common';
3
- export declare function InterceptingGestureDetector<THandlerData, TConfig>({ gesture, children, touchAction, userSelect, enableContextMenu, }: InterceptingGestureDetectorProps<THandlerData, TConfig>): React.JSX.Element;
2
+ import type { InterceptingGestureDetectorProps } from '../common';
3
+ export declare function InterceptingGestureDetector<TConfig, THandlerData, TExtendedHandlerData extends THandlerData>({ gesture, children, touchAction, userSelect, enableContextMenu, }: InterceptingGestureDetectorProps<TConfig, THandlerData, TExtendedHandlerData>): React.JSX.Element;
4
4
  //# sourceMappingURL=InterceptingGestureDetector.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"InterceptingGestureDetector.d.ts","sourceRoot":"","sources":["../../../../../src/v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAezE,OAAO,EAEL,gCAAgC,EAEjC,MAAM,WAAW,CAAC;AAYnB,wBAAgB,2BAA2B,CAAC,YAAY,EAAE,OAAO,EAAE,EACjE,OAAO,EACP,QAAQ,EACR,WAAW,EACX,UAAU,EACV,iBAAiB,GAClB,EAAE,gCAAgC,CAAC,YAAY,EAAE,OAAO,CAAC,qBAwOzD"}
1
+ {"version":3,"file":"InterceptingGestureDetector.d.ts","sourceRoot":"","sources":["../../../../../src/v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAezE,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,WAAW,CAAC;AAqBlE,wBAAgB,2BAA2B,CACzC,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,EACzC,EACA,OAAO,EACP,QAAQ,EACR,WAAW,EACX,UAAU,EACV,iBAAiB,GAClB,EAAE,gCAAgC,CACjC,OAAO,EACP,YAAY,EACZ,oBAAoB,CACrB,qBA2PA"}
@@ -1,3 +1,3 @@
1
- import { VirtualDetectorProps } from '../common';
2
- export declare function VirtualDetector<THandlerData, TConfig>(props: VirtualDetectorProps<THandlerData, TConfig>): import("react").JSX.Element;
1
+ import type { VirtualDetectorProps } from '../common';
2
+ export declare function VirtualDetector<TConfig, THandlerData, TExtendedHandlerData extends THandlerData>(props: VirtualDetectorProps<TConfig, THandlerData, TExtendedHandlerData>): import("react").JSX.Element;
3
3
  //# sourceMappingURL=VirtualDetector.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"VirtualDetector.d.ts","sourceRoot":"","sources":["../../../../../src/v3/detectors/VirtualDetector/VirtualDetector.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AAiBjD,wBAAgB,eAAe,CAAC,YAAY,EAAE,OAAO,EACnD,KAAK,EAAE,oBAAoB,CAAC,YAAY,EAAE,OAAO,CAAC,+BAgEnD"}
1
+ {"version":3,"file":"VirtualDetector.d.ts","sourceRoot":"","sources":["../../../../../src/v3/detectors/VirtualDetector/VirtualDetector.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AAoBtD,wBAAgB,eAAe,CAC7B,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,EACzC,KAAK,EAAE,oBAAoB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,+BA8EzE"}
@@ -1,4 +1,4 @@
1
- import { VirtualChild } from '../../types';
1
+ import type { VirtualChild } from '../../types';
2
2
  export declare enum InterceptingDetectorMode {
3
3
  DEFAULT = 0,
4
4
  ANIMATED = 1,
@@ -1 +1 @@
1
- {"version":3,"file":"useInterceptingDetectorContext.d.ts","sourceRoot":"","sources":["../../../../../src/v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,oBAAY,wBAAwB;IAClC,OAAO,IAAA;IACP,QAAQ,IAAA;IACR,UAAU,IAAA;CACX;AAED,MAAM,MAAM,gCAAgC,GAAG;IAC7C,IAAI,EAAE,wBAAwB,CAAC;IAC/B,OAAO,EAAE,CAAC,IAAI,EAAE,wBAAwB,KAAK,IAAI,CAAC;IAClD,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,IAAI,CAAC;IACxC,UAAU,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,IAAI,CAAC;CAC3C,CAAC;AAEF,eAAO,MAAM,2BAA2B,kEACsB,CAAC;AAE/D,wBAAgB,8BAA8B,4CAE7C"}
1
+ {"version":3,"file":"useInterceptingDetectorContext.d.ts","sourceRoot":"","sources":["../../../../../src/v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,oBAAY,wBAAwB;IAClC,OAAO,IAAA;IACP,QAAQ,IAAA;IACR,UAAU,IAAA;CACX;AAED,MAAM,MAAM,gCAAgC,GAAG;IAC7C,IAAI,EAAE,wBAAwB,CAAC;IAC/B,OAAO,EAAE,CAAC,IAAI,EAAE,wBAAwB,KAAK,IAAI,CAAC;IAClD,QAAQ,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,IAAI,CAAC;IACxC,UAAU,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,IAAI,CAAC;CAC3C,CAAC;AAEF,eAAO,MAAM,2BAA2B,kEACsB,CAAC;AAE/D,wBAAgB,8BAA8B,4CAE7C"}
@@ -1,8 +1,8 @@
1
- import React from 'react';
2
- import { Gesture } from '../types';
1
+ import type React from 'react';
3
2
  import { Animated } from 'react-native';
4
- import { GestureDetectorProps as LegacyDetectorProps } from '../../handlers/gestures/GestureDetector';
5
- import { TouchAction, UserSelect } from '../../handlers/gestureHandlerCommon';
3
+ import type { TouchAction, UserSelect } from '../../handlers/gestureHandlerCommon';
4
+ import type { GestureDetectorProps as LegacyDetectorProps } from '../../handlers/gestures/GestureDetector';
5
+ import type { Gesture } from '../types';
6
6
  export declare enum GestureDetectorType {
7
7
  Native = 0,
8
8
  Virtual = 1,
@@ -10,21 +10,20 @@ export declare enum GestureDetectorType {
10
10
  }
11
11
  interface CommonGestureDetectorProps {
12
12
  children?: React.ReactNode;
13
- userSelect?: UserSelect;
14
- touchAction?: TouchAction;
15
- enableContextMenu?: boolean;
13
+ userSelect?: UserSelect | undefined;
14
+ touchAction?: TouchAction | undefined;
15
+ enableContextMenu?: boolean | undefined;
16
16
  }
17
- export interface NativeDetectorProps<THandlerData, TConfig> extends CommonGestureDetectorProps {
18
- gesture: Gesture<THandlerData, TConfig>;
17
+ export interface NativeDetectorProps<TConfig, THandlerData, TExtendedHandlerData extends THandlerData> extends CommonGestureDetectorProps {
18
+ gesture: Gesture<TConfig, THandlerData, TExtendedHandlerData>;
19
19
  }
20
- export interface InterceptingGestureDetectorProps<THandlerData, TConfig> extends CommonGestureDetectorProps {
21
- gesture?: Gesture<THandlerData, TConfig>;
20
+ export interface InterceptingGestureDetectorProps<TConfig, THandlerData, TExtendedHandlerData extends THandlerData> extends CommonGestureDetectorProps {
21
+ gesture?: Gesture<TConfig, THandlerData, TExtendedHandlerData>;
22
22
  }
23
- export interface VirtualDetectorProps<THandlerData, TConfig> {
24
- children?: React.ReactNode;
25
- gesture: Gesture<THandlerData, TConfig>;
23
+ export interface VirtualDetectorProps<TConfig, THandlerData, TExtendedHandlerData extends THandlerData> extends CommonGestureDetectorProps {
24
+ gesture: Gesture<TConfig, THandlerData, TExtendedHandlerData>;
26
25
  }
27
- export type GestureDetectorProps<THandlerData, TConfig> = NativeDetectorProps<THandlerData, TConfig> | InterceptingGestureDetectorProps<THandlerData, TConfig> | LegacyDetectorProps;
26
+ export type GestureDetectorProps<TConfig, THandlerData, TExtendedHandlerData extends THandlerData> = NativeDetectorProps<TConfig, THandlerData, TExtendedHandlerData> | InterceptingGestureDetectorProps<TConfig, THandlerData, TExtendedHandlerData> | LegacyDetectorProps;
28
27
  export declare const AnimatedNativeDetector: Animated.AnimatedComponent<import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<import("./HostGestureDetector").RNGestureHandlerDetectorNativeComponentProps>>;
29
28
  export declare const nativeDetectorStyles: {
30
29
  detector: {
@@ -1 +1 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/common.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AACnC,OAAO,EAAE,QAAQ,EAAc,MAAM,cAAc,CAAC;AAEpD,OAAO,EAAE,oBAAoB,IAAI,mBAAmB,EAAE,MAAM,yCAAyC,CAAC;AACtG,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AAE9E,oBAAY,mBAAmB;IAC7B,MAAM,IAAA;IACN,OAAO,IAAA;IACP,YAAY,IAAA;CACb;AAED,UAAU,0BAA0B;IAClC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED,MAAM,WAAW,mBAAmB,CAAC,YAAY,EAAE,OAAO,CACxD,SAAQ,0BAA0B;IAClC,OAAO,EAAE,OAAO,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;CACzC;AAED,MAAM,WAAW,gCAAgC,CAAC,YAAY,EAAE,OAAO,CACrE,SAAQ,0BAA0B;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;CAC1C;AAGD,MAAM,WAAW,oBAAoB,CAAC,YAAY,EAAE,OAAO;IACzD,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,OAAO,EAAE,OAAO,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;CACzC;AAED,MAAM,MAAM,oBAAoB,CAAC,YAAY,EAAE,OAAO,IAClD,mBAAmB,CAAC,YAAY,EAAE,OAAO,CAAC,GAC1C,gCAAgC,CAAC,YAAY,EAAE,OAAO,CAAC,GACvD,mBAAmB,CAAC;AAExB,eAAO,MAAM,sBAAsB,iMACoB,CAAC;AAExD,eAAO,MAAM,oBAAoB;;;;CAI/B,CAAC"}
1
+ {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/common.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,QAAQ,EAAc,MAAM,cAAc,CAAC;AAEpD,OAAO,KAAK,EACV,WAAW,EACX,UAAU,EACX,MAAM,qCAAqC,CAAC;AAC7C,OAAO,KAAK,EAAE,oBAAoB,IAAI,mBAAmB,EAAE,MAAM,yCAAyC,CAAC;AAC3G,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAGxC,oBAAY,mBAAmB;IAC7B,MAAM,IAAA;IACN,OAAO,IAAA;IACP,YAAY,IAAA;CACb;AAED,UAAU,0BAA0B;IAClC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,UAAU,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC;IACpC,WAAW,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IACtC,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CACzC;AAED,MAAM,WAAW,mBAAmB,CAClC,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,CACzC,SAAQ,0BAA0B;IAClC,OAAO,EAAE,OAAO,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,CAAC;CAC/D;AAED,MAAM,WAAW,gCAAgC,CAC/C,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,CACzC,SAAQ,0BAA0B;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,CAAC;CAChE;AAED,MAAM,WAAW,oBAAoB,CACnC,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,CACzC,SAAQ,0BAA0B;IAClC,OAAO,EAAE,OAAO,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,CAAC;CAC/D;AAED,MAAM,MAAM,oBAAoB,CAC9B,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,IAEvC,mBAAmB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,GAChE,gCAAgC,CAC9B,OAAO,EACP,YAAY,EACZ,oBAAoB,CACrB,GACD,mBAAmB,CAAC;AAExB,eAAO,MAAM,sBAAsB,iMACoB,CAAC;AAExD,eAAO,MAAM,oBAAoB;;;;CAI/B,CAAC"}
@@ -1,6 +1,6 @@
1
1
  export type { GestureDetectorProps } from './common';
2
2
  export { GestureDetectorType } from './common';
3
3
  export { GestureDetector } from './GestureDetector';
4
- export { VirtualDetector as VirtualGestureDetector } from './VirtualDetector/VirtualDetector';
5
4
  export { InterceptingGestureDetector } from './VirtualDetector/InterceptingGestureDetector';
5
+ export { VirtualDetector as VirtualGestureDetector } from './VirtualDetector/VirtualDetector';
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AACrD,OAAO,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAC/C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,eAAe,IAAI,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;AAC9F,OAAO,EAAE,2BAA2B,EAAE,MAAM,+CAA+C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AACrD,OAAO,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAC/C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,+CAA+C,CAAC;AAC5F,OAAO,EAAE,eAAe,IAAI,sBAAsB,EAAE,MAAM,mCAAmC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"useEnsureGestureHandlerRootView.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/useEnsureGestureHandlerRootView.ts"],"names":[],"mappings":"AAIA,wBAAgB,+BAA+B,SAQ9C"}
1
+ {"version":3,"file":"useEnsureGestureHandlerRootView.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/useEnsureGestureHandlerRootView.ts"],"names":[],"mappings":"AAKA,wBAAgB,+BAA+B,SAQ9C"}
@@ -0,0 +1,3 @@
1
+ import type { ReactNode, RefObject } from 'react';
2
+ export declare function useNativeGestureRole(_viewRef: RefObject<unknown>, _children: ReactNode): void;
3
+ //# sourceMappingURL=useNativeGestureRole.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useNativeGestureRole.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/useNativeGestureRole.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElD,wBAAgB,oBAAoB,CAClC,QAAQ,EAAE,SAAS,CAAC,OAAO,CAAC,EAC5B,SAAS,EAAE,SAAS,GACnB,IAAI,CAEN"}
@@ -0,0 +1,3 @@
1
+ import type { ReactNode, RefObject } from 'react';
2
+ export declare function useNativeGestureRole(viewRef: RefObject<Element | null>, children: ReactNode): void;
3
+ //# sourceMappingURL=useNativeGestureRole.web.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useNativeGestureRole.web.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/useNativeGestureRole.web.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAMlD,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,SAAS,CAAC,OAAO,GAAG,IAAI,CAAC,EAClC,QAAQ,EAAE,SAAS,GAClB,IAAI,CAgCN"}
@@ -1,6 +1,6 @@
1
- import { Gesture } from '../types';
1
+ import type { Gesture } from '../types';
2
2
  export declare const traverseAndConfigureRelations: (node: Gesture, simultaneousHandlers: Set<number>, waitFor?: number[]) => void;
3
- export declare function configureRelations<THandlerData, TConfig>(gesture: Gesture<THandlerData, TConfig>): void;
3
+ export declare function configureRelations<TConfig, THandlerData>(gesture: Gesture<TConfig, THandlerData>): void;
4
4
  export declare function ensureNativeDetectorComponent(NativeDetectorComponent: unknown): asserts NativeDetectorComponent;
5
5
  export declare const EMPTY_SET: Set<number>;
6
6
  //# sourceMappingURL=utils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/utils.ts"],"names":[],"mappings":"AAYA,OAAO,EAAuB,OAAO,EAAE,MAAM,UAAU,CAAC;AAGxD,eAAO,MAAM,6BAA6B,GACxC,MAAM,OAAO,EACb,sBAAsB,GAAG,CAAC,MAAM,CAAC,EACjC,UAAS,MAAM,EAAO,SAqHvB,CAAC;AAEF,wBAAgB,kBAAkB,CAAC,YAAY,EAAE,OAAO,EACtD,OAAO,EAAE,OAAO,CAAC,YAAY,EAAE,OAAO,CAAC,QAqBxC;AAED,wBAAgB,6BAA6B,CAC3C,uBAAuB,EAAE,OAAO,GAC/B,OAAO,CAAC,uBAAuB,CAQjC;AAED,eAAO,MAAM,SAAS,aAAoB,CAAC"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../src/v3/detectors/utils.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAIxC,eAAO,MAAM,6BAA6B,GACxC,MAAM,OAAO,EACb,sBAAsB,GAAG,CAAC,MAAM,CAAC,EACjC,UAAS,MAAM,EAAO,SAqHvB,CAAC;AAEF,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,YAAY,EACtD,OAAO,EAAE,OAAO,CAAC,OAAO,EAAE,YAAY,CAAC,QAqBxC;AAED,wBAAgB,6BAA6B,CAC3C,uBAAuB,EAAE,OAAO,GAC/B,OAAO,CAAC,uBAAuB,CAQjC;AAED,eAAO,MAAM,SAAS,aAAoB,CAAC"}
@@ -1,5 +1,4 @@
1
1
  export type GestureStateManagerType = {
2
- begin(handlerTag: number): void;
3
2
  activate(handlerTag: number): void;
4
3
  fail(handlerTag: number): void;
5
4
  deactivate(handlerTag: number): void;
@@ -1 +1 @@
1
- {"version":3,"file":"gestureStateManager.d.ts","sourceRoot":"","sources":["../../../src/v3/gestureStateManager.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,uBAAuB,GAAG;IACpC,KAAK,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,UAAU,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;CACtC,CAAC;AAcF,eAAO,MAAM,mBAAmB,EAAE,uBAoBjC,CAAC"}
1
+ {"version":3,"file":"gestureStateManager.d.ts","sourceRoot":"","sources":["../../../src/v3/gestureStateManager.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,uBAAuB,GAAG;IACpC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,UAAU,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;CACtC,CAAC;AAcF,eAAO,MAAM,mBAAmB,EAAE,uBAejC,CAAC"}
@@ -1,3 +1,3 @@
1
- import { GestureStateManagerType } from './gestureStateManager';
1
+ import type { GestureStateManagerType } from './gestureStateManager';
2
2
  export declare const GestureStateManager: GestureStateManagerType;
3
3
  //# sourceMappingURL=gestureStateManager.web.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"gestureStateManager.web.d.ts","sourceRoot":"","sources":["../../../src/v3/gestureStateManager.web.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAYhE,eAAO,MAAM,mBAAmB,EAAE,uBAuCjC,CAAC"}
1
+ {"version":3,"file":"gestureStateManager.web.d.ts","sourceRoot":"","sources":["../../../src/v3/gestureStateManager.web.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAYrE,eAAO,MAAM,mBAAmB,EAAE,uBAyBjC,CAAC"}
@@ -1,7 +1,7 @@
1
- import { ReanimatedContext } from '../../../handlers/gestures/reanimatedWrapper';
2
- import { ChangeCalculatorType, GestureCallbacks, GestureHandlerEventWithHandlerData, GestureUpdateEventWithHandlerData } from '../../types';
3
- import { GestureTouchEvent } from '../../../handlers/gestureHandlerCommon';
4
- export declare function handleUpdateEvent<THandlerData>(eventWithData: GestureUpdateEventWithHandlerData<THandlerData>, handlers: GestureCallbacks<THandlerData>, changeEventCalculator: ChangeCalculatorType<THandlerData> | undefined, context: ReanimatedContext<THandlerData>): void;
5
- export declare function handleTouchEvent<THandlerData>(event: GestureTouchEvent, handlers: GestureCallbacks<THandlerData>): void;
6
- export declare function eventHandler<THandlerData>(handlerTag: number, sourceEvent: GestureHandlerEventWithHandlerData<THandlerData>, handlers: GestureCallbacks<THandlerData>, changeEventCalculator: ChangeCalculatorType<THandlerData> | undefined, jsContext: ReanimatedContext<THandlerData>, dispatchesAnimatedEvents: boolean): void;
1
+ import type { GestureTouchEvent } from '../../../handlers/gestureHandlerCommon';
2
+ import type { ReanimatedContext } from '../../../handlers/gestures/reanimatedWrapper';
3
+ import type { ChangeCalculatorType, GestureCallbacks, GestureEvent, GestureHandlerEventWithHandlerData, GestureUpdateEventWithHandlerData } from '../../types';
4
+ export declare function handleUpdateEvent<THandlerData, TExtendedHandlerData extends THandlerData>(eventWithData: GestureUpdateEventWithHandlerData<TExtendedHandlerData>, handlers: GestureCallbacks<THandlerData, TExtendedHandlerData>, changeEventCalculator: ChangeCalculatorType<TExtendedHandlerData> | undefined, context: ReanimatedContext<TExtendedHandlerData>): void;
5
+ export declare function handleTouchEvent<THandlerData, TExtendedHandlerData extends THandlerData>(event: GestureTouchEvent, handlers: GestureCallbacks<THandlerData, TExtendedHandlerData>): void;
6
+ export declare function eventHandler<THandlerData, TExtendedHandlerData extends THandlerData>(handlerTag: number, sourceEvent: GestureHandlerEventWithHandlerData<THandlerData, TExtendedHandlerData>, handlers: GestureCallbacks<THandlerData, TExtendedHandlerData>, changeEventCalculator: ChangeCalculatorType<TExtendedHandlerData> | undefined, jsContext: ReanimatedContext<TExtendedHandlerData>, dispatchesAnimatedEvents: boolean, fillInDefaultValues?: (event: GestureEvent<TExtendedHandlerData>) => void): void;
7
7
  //# sourceMappingURL=eventHandler.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"eventHandler.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/callbacks/eventHandler.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,iBAAiB,EAAE,MAAM,8CAA8C,CAAC;AACjF,OAAO,EACL,oBAAoB,EACpB,gBAAgB,EAChB,kCAAkC,EAElC,iCAAiC,EAClC,MAAM,aAAa,CAAC;AAIrB,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AA0C3E,wBAAgB,iBAAiB,CAAC,YAAY,EAC5C,aAAa,EAAE,iCAAiC,CAAC,YAAY,CAAC,EAC9D,QAAQ,EAAE,gBAAgB,CAAC,YAAY,CAAC,EACxC,qBAAqB,EAAE,oBAAoB,CAAC,YAAY,CAAC,GAAG,SAAS,EACrE,OAAO,EAAE,iBAAiB,CAAC,YAAY,CAAC,QAqBzC;AAED,wBAAgB,gBAAgB,CAAC,YAAY,EAC3C,KAAK,EAAE,iBAAiB,EACxB,QAAQ,EAAE,gBAAgB,CAAC,YAAY,CAAC,QAOzC;AAED,wBAAgB,YAAY,CAAC,YAAY,EACvC,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,kCAAkC,CAAC,YAAY,CAAC,EAC7D,QAAQ,EAAE,gBAAgB,CAAC,YAAY,CAAC,EACxC,qBAAqB,EAAE,oBAAoB,CAAC,YAAY,CAAC,GAAG,SAAS,EACrE,SAAS,EAAE,iBAAiB,CAAC,YAAY,CAAC,EAC1C,wBAAwB,EAAE,OAAO,QAqBlC"}
1
+ {"version":3,"file":"eventHandler.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/callbacks/eventHandler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAEhF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8CAA8C,CAAC;AAItF,OAAO,KAAK,EACV,oBAAoB,EACpB,gBAAgB,EAEhB,YAAY,EACZ,kCAAkC,EAElC,iCAAiC,EAClC,MAAM,aAAa,CAAC;AA+DrB,wBAAgB,iBAAiB,CAC/B,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,aAAa,EAAE,iCAAiC,CAAC,oBAAoB,CAAC,EACtE,QAAQ,EAAE,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,EAC9D,qBAAqB,EAAE,oBAAoB,CAAC,oBAAoB,CAAC,GAAG,SAAS,EAC7E,OAAO,EAAE,iBAAiB,CAAC,oBAAoB,CAAC,QAqBjD;AAED,wBAAgB,gBAAgB,CAC9B,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,KAAK,EAAE,iBAAiB,EACxB,QAAQ,EAAE,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,QAO/D;AAED,wBAAgB,YAAY,CAC1B,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,kCAAkC,CAC7C,YAAY,EACZ,oBAAoB,CACrB,EACD,QAAQ,EAAE,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,EAC9D,qBAAqB,EAAE,oBAAoB,CAAC,oBAAoB,CAAC,GAAG,SAAS,EAC7E,SAAS,EAAE,iBAAiB,CAAC,oBAAoB,CAAC,EAClD,wBAAwB,EAAE,OAAO,EACjC,mBAAmB,CAAC,EAAE,CAAC,KAAK,EAAE,YAAY,CAAC,oBAAoB,CAAC,KAAK,IAAI,QAgC1E"}
@@ -1,3 +1,3 @@
1
- import { BaseGestureConfig, GestureCallbacks, GestureHandlerEventWithHandlerData } from '../../types';
2
- export declare function useGestureEventHandler<THandlerData, TConfig>(handlerTag: number, handlers: GestureCallbacks<THandlerData>, config: BaseGestureConfig<THandlerData, TConfig>): (event: GestureHandlerEventWithHandlerData<THandlerData>) => void;
1
+ import type { BaseGestureConfig, GestureCallbacks, GestureHandlerEventWithHandlerData } from '../../types';
2
+ export declare function useGestureEventHandler<TConfig, THandlerData, TExtendedHandlerData extends THandlerData>(handlerTag: number, handlers: GestureCallbacks<THandlerData, TExtendedHandlerData>, config: BaseGestureConfig<TConfig, THandlerData, TExtendedHandlerData>): (event: GestureHandlerEventWithHandlerData<THandlerData, TExtendedHandlerData>) => void;
3
3
  //# sourceMappingURL=useGestureEventHandler.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useGestureEventHandler.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/callbacks/useGestureEventHandler.ts"],"names":[],"mappings":"AACA,OAAO,EACL,iBAAiB,EACjB,gBAAgB,EAChB,kCAAkC,EACnC,MAAM,aAAa,CAAC;AAIrB,wBAAgB,sBAAsB,CAAC,YAAY,EAAE,OAAO,EAC1D,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,gBAAgB,CAAC,YAAY,CAAC,EACxC,MAAM,EAAE,iBAAiB,CAAC,YAAY,EAAE,OAAO,CAAC,WAS/B,kCAAkC,CAAC,YAAY,CAAC,UAiBlE"}
1
+ {"version":3,"file":"useGestureEventHandler.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/callbacks/useGestureEventHandler.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,iBAAiB,EACjB,gBAAgB,EAChB,kCAAkC,EACnC,MAAM,aAAa,CAAC;AAGrB,wBAAgB,sBAAsB,CACpC,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,EAC9D,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,WAU3D,kCAAkC,CACvC,YAAY,EACZ,oBAAoB,CACrB,UAoBN"}
@@ -1,4 +1,4 @@
1
- import { ReanimatedHandler } from '../../../handlers/gestures/reanimatedWrapper';
2
- import { ChangeCalculatorType, GestureCallbacks } from '../../types';
3
- export declare function useReanimatedEventHandler<THandlerData>(handlerTag: number, handlers: GestureCallbacks<THandlerData>, reanimatedHandler: ReanimatedHandler<THandlerData> | undefined, changeEventCalculator: ChangeCalculatorType<THandlerData> | undefined): ((event: unknown) => void) | undefined;
1
+ import type { ReanimatedHandler } from '../../../handlers/gestures/reanimatedWrapper';
2
+ import type { ChangeCalculatorType, GestureCallbacks, GestureEvent } from '../../types';
3
+ export declare function useReanimatedEventHandler<THandlerData, TExtendedHandlerData extends THandlerData>(handlerTag: number, handlers: GestureCallbacks<THandlerData, TExtendedHandlerData>, reanimatedHandler: ReanimatedHandler<TExtendedHandlerData> | undefined, changeEventCalculator: ChangeCalculatorType<TExtendedHandlerData> | undefined, fillInDefaultValues?: (event: GestureEvent<TExtendedHandlerData>) => void): ((event: unknown) => void) | undefined;
4
4
  //# sourceMappingURL=useReanimatedEventHandler.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useReanimatedEventHandler.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/callbacks/useReanimatedEventHandler.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAClB,MAAM,8CAA8C,CAAC;AACtD,OAAO,EACL,oBAAoB,EACpB,gBAAgB,EAEjB,MAAM,aAAa,CAAC;AAQrB,wBAAgB,yBAAyB,CAAC,YAAY,EACpD,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,gBAAgB,CAAC,YAAY,CAAC,EACxC,iBAAiB,EAAE,iBAAiB,CAAC,YAAY,CAAC,GAAG,SAAS,EAC9D,qBAAqB,EAAE,oBAAoB,CAAC,YAAY,CAAC,GAAG,SAAS,0CA2CtE"}
1
+ {"version":3,"file":"useReanimatedEventHandler.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/callbacks/useReanimatedEventHandler.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8CAA8C,CAAC;AAEtF,OAAO,KAAK,EACV,oBAAoB,EACpB,gBAAgB,EAChB,YAAY,EAEb,MAAM,aAAa,CAAC;AAcrB,wBAAgB,yBAAyB,CACvC,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,EAC9D,iBAAiB,EAAE,iBAAiB,CAAC,oBAAoB,CAAC,GAAG,SAAS,EACtE,qBAAqB,EAAE,oBAAoB,CAAC,oBAAoB,CAAC,GAAG,SAAS,EAC7E,mBAAmB,CAAC,EAAE,CAAC,KAAK,EAAE,YAAY,CAAC,oBAAoB,CAAC,KAAK,IAAI,0CAyD1E"}
@@ -1,4 +1,4 @@
1
- export { useSimultaneousGestures } from './useSimultaneousGestures';
2
- export { useExclusiveGestures } from './useExclusiveGestures';
3
1
  export { useCompetingGestures } from './useCompetingGestures';
2
+ export { useExclusiveGestures } from './useExclusiveGestures';
3
+ export { useSimultaneousGestures } from './useSimultaneousGestures';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC"}
@@ -1,3 +1,3 @@
1
- import { AnyGesture } from '../../types';
1
+ import type { AnyGesture } from '../../types';
2
2
  export declare function useCompetingGestures(...gestures: AnyGesture[]): import("../../types").ComposedGesture;
3
3
  //# sourceMappingURL=useCompetingGestures.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useCompetingGestures.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/useCompetingGestures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAuB,MAAM,aAAa,CAAC;AAG9D,wBAAgB,oBAAoB,CAAC,GAAG,QAAQ,EAAE,UAAU,EAAE,yCAE7D"}
1
+ {"version":3,"file":"useCompetingGestures.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/useCompetingGestures.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAI9C,wBAAgB,oBAAoB,CAAC,GAAG,QAAQ,EAAE,UAAU,EAAE,yCAE7D"}
@@ -1,3 +1,3 @@
1
- import { ComposedGesture, ComposedGestureName, AnyGesture } from '../../types';
1
+ import type { AnyGesture, ComposedGesture, ComposedGestureName } from '../../types';
2
2
  export declare function useComposedGesture(type: ComposedGestureName, ...gestures: AnyGesture[]): ComposedGesture;
3
3
  //# sourceMappingURL=useComposedGesture.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useComposedGesture.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/useComposedGesture.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,UAAU,EAGX,MAAM,aAAa,CAAC;AAMrB,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,mBAAmB,EACzB,GAAG,QAAQ,EAAE,UAAU,EAAE,GACxB,eAAe,CA6EjB"}
1
+ {"version":3,"file":"useComposedGesture.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/useComposedGesture.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,UAAU,EACV,eAAe,EAEf,mBAAmB,EAEpB,MAAM,aAAa,CAAC;AAIrB,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,mBAAmB,EACzB,GAAG,QAAQ,EAAE,UAAU,EAAE,GACxB,eAAe,CA6EjB"}
@@ -1,3 +1,3 @@
1
- import { AnyGesture } from '../../types';
1
+ import type { AnyGesture } from '../../types';
2
2
  export declare function useExclusiveGestures(...gestures: AnyGesture[]): import("../../types").ComposedGesture;
3
3
  //# sourceMappingURL=useExclusiveGestures.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useExclusiveGestures.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/useExclusiveGestures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAuB,MAAM,aAAa,CAAC;AAG9D,wBAAgB,oBAAoB,CAAC,GAAG,QAAQ,EAAE,UAAU,EAAE,yCAS7D"}
1
+ {"version":3,"file":"useExclusiveGestures.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/useExclusiveGestures.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAI9C,wBAAgB,oBAAoB,CAAC,GAAG,QAAQ,EAAE,UAAU,EAAE,yCAS7D"}
@@ -1,3 +1,3 @@
1
- import { AnyGesture } from '../../types';
1
+ import type { AnyGesture } from '../../types';
2
2
  export declare function useSimultaneousGestures(...gestures: AnyGesture[]): import("../../types").ComposedGesture;
3
3
  //# sourceMappingURL=useSimultaneousGestures.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useSimultaneousGestures.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/useSimultaneousGestures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAuB,MAAM,aAAa,CAAC;AAG9D,wBAAgB,uBAAuB,CAAC,GAAG,QAAQ,EAAE,UAAU,EAAE,yCAOhE"}
1
+ {"version":3,"file":"useSimultaneousGestures.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/composition/useSimultaneousGestures.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAI9C,wBAAgB,uBAAuB,CAAC,GAAG,QAAQ,EAAE,UAAU,EAAE,yCAOhE"}
@@ -0,0 +1,36 @@
1
+ import type { BaseDiscreteGestureConfig, ExcludeInternalConfigProps, GestureEvent, SingleGesture, WithSharedValue } from '../../../types';
2
+ export type FlingGestureNativeProperties = {
3
+ /**
4
+ * Expressed allowed direction of movement. It's possible to pass one or many
5
+ * directions in one parameter:
6
+ *
7
+ * ```js
8
+ * direction={Directions.RIGHT | Directions.LEFT}
9
+ * ```
10
+ *
11
+ * or
12
+ *
13
+ * ```js
14
+ * direction={Directions.DOWN}
15
+ * ```
16
+ */
17
+ direction?: number;
18
+ /**
19
+ * Determine exact number of points required to handle the fling gesture.
20
+ */
21
+ numberOfPointers?: number;
22
+ };
23
+ export declare const FlingNativeProperties: Set<keyof FlingGestureNativeProperties>;
24
+ export type FlingHandlerData = {
25
+ x: number;
26
+ y: number;
27
+ absoluteX: number;
28
+ absoluteY: number;
29
+ };
30
+ export type FlingGestureProperties = WithSharedValue<FlingGestureNativeProperties>;
31
+ export type FlingGestureInternalConfig = BaseDiscreteGestureConfig<FlingGestureProperties, FlingHandlerData>;
32
+ export type FlingGestureConfig = ExcludeInternalConfigProps<FlingGestureInternalConfig>;
33
+ export type FlingGestureEvent = GestureEvent<FlingHandlerData>;
34
+ export type FlingGestureActiveEvent = FlingGestureEvent;
35
+ export type FlingGesture = SingleGesture<FlingGestureProperties, FlingHandlerData>;
36
+ //# sourceMappingURL=FlingTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FlingTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/v3/hooks/gestures/fling/FlingTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,yBAAyB,EACzB,0BAA0B,EAC1B,YAAY,EACZ,aAAa,EACb,eAAe,EAChB,MAAM,gBAAgB,CAAC;AAExB,MAAM,MAAM,4BAA4B,GAAG;IACzC;;;;;;;;;;;;;OAaG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,qBAAqB,yCAEE,CAAC;AAErC,MAAM,MAAM,gBAAgB,GAAG;IAC7B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAChC,eAAe,CAAC,4BAA4B,CAAC,CAAC;AAEhD,MAAM,MAAM,0BAA0B,GAAG,yBAAyB,CAChE,sBAAsB,EACtB,gBAAgB,CACjB,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAC5B,0BAA0B,CAAC,0BAA0B,CAAC,CAAC;AAEzD,MAAM,MAAM,iBAAiB,GAAG,YAAY,CAAC,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,uBAAuB,GAAG,iBAAiB,CAAC;AAExD,MAAM,MAAM,YAAY,GAAG,aAAa,CACtC,sBAAsB,EACtB,gBAAgB,CACjB,CAAC"}
@@ -1,16 +1,3 @@
1
- import { BaseDiscreteGestureConfig, ExcludeInternalConfigProps, SingleGesture, WithSharedValue, GestureEvent } from '../../../types';
2
- import type { FlingGestureNativeProperties } from './FlingProperties';
3
- type FlingHandlerData = {
4
- x: number;
5
- y: number;
6
- absoluteX: number;
7
- absoluteY: number;
8
- };
9
- type FlingGestureProperties = WithSharedValue<FlingGestureNativeProperties>;
10
- type FlingGestureInternalConfig = BaseDiscreteGestureConfig<FlingHandlerData, FlingGestureProperties>;
11
- export type FlingGestureConfig = ExcludeInternalConfigProps<FlingGestureInternalConfig>;
12
- export type FlingGestureEvent = GestureEvent<FlingHandlerData>;
13
- export type FlingGesture = SingleGesture<FlingHandlerData, FlingGestureProperties>;
14
- export declare function useFlingGesture(config: FlingGestureConfig): FlingGesture;
15
- export {};
1
+ import type { FlingGesture, FlingGestureConfig } from './FlingTypes';
2
+ export declare function useFlingGesture(config?: FlingGestureConfig): FlingGesture;
16
3
  //# sourceMappingURL=useFlingGesture.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useFlingGesture.d.ts","sourceRoot":"","sources":["../../../../../../src/v3/hooks/gestures/fling/useFlingGesture.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,yBAAyB,EACzB,0BAA0B,EAC1B,aAAa,EAEb,eAAe,EACf,YAAY,EACb,MAAM,gBAAgB,CAAC;AAGxB,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEtE,KAAK,gBAAgB,GAAG;IACtB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,sBAAsB,GAAG,eAAe,CAAC,4BAA4B,CAAC,CAAC;AAE5E,KAAK,0BAA0B,GAAG,yBAAyB,CACzD,gBAAgB,EAChB,sBAAsB,CACvB,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAC5B,0BAA0B,CAAC,0BAA0B,CAAC,CAAC;AAEzD,MAAM,MAAM,iBAAiB,GAAG,YAAY,CAAC,gBAAgB,CAAC,CAAC;AAE/D,MAAM,MAAM,YAAY,GAAG,aAAa,CACtC,gBAAgB,EAChB,sBAAsB,CACvB,CAAC;AAEF,wBAAgB,eAAe,CAAC,MAAM,EAAE,kBAAkB,GAAG,YAAY,CAQxE"}
1
+ {"version":3,"file":"useFlingGesture.d.ts","sourceRoot":"","sources":["../../../../../../src/v3/hooks/gestures/fling/useFlingGesture.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,EACZ,kBAAkB,EAGnB,MAAM,cAAc,CAAC;AAItB,wBAAgB,eAAe,CAC7B,MAAM,GAAE,kBAAuC,GAC9C,YAAY,CAOd"}
@@ -0,0 +1,38 @@
1
+ import type { StylusData } from '../../../../handlers/gestureHandlerCommon';
2
+ import type { HoverEffect } from '../../../../handlers/gestures/hoverGesture';
3
+ import type { BaseGestureConfig, ExcludeInternalConfigProps, GestureEvent, SingleGesture, WithSharedValue } from '../../../types';
4
+ export type HoverGestureExternalProperties = {
5
+ /**
6
+ * Visual effect applied to the view while the view is hovered. The possible values are:
7
+ *
8
+ * - `HoverEffect.None`
9
+ * - `HoverEffect.Lift`
10
+ * - `HoverEffect.Highlight`
11
+ *
12
+ * Defaults to `HoverEffect.None`
13
+ */
14
+ effect?: HoverEffect;
15
+ };
16
+ export type HoverGestureNativeProperties = {
17
+ hoverEffect: HoverEffect;
18
+ };
19
+ export declare const HoverNativeProperties: Set<"hoverEffect">;
20
+ export type HoverHandlerData = {
21
+ x: number;
22
+ y: number;
23
+ absoluteX: number;
24
+ absoluteY: number;
25
+ stylusData: StylusData;
26
+ };
27
+ export type HoverExtendedHandlerData = HoverHandlerData & {
28
+ changeX: number;
29
+ changeY: number;
30
+ };
31
+ export type HoverGestureProperties = WithSharedValue<HoverGestureExternalProperties, HoverEffect>;
32
+ export type HoverGestureInternalProperties = WithSharedValue<HoverGestureNativeProperties, HoverEffect>;
33
+ export type HoverGestureConfig = ExcludeInternalConfigProps<BaseGestureConfig<HoverGestureProperties, HoverHandlerData, HoverExtendedHandlerData>>;
34
+ export type HoverGestureInternalConfig = BaseGestureConfig<HoverGestureInternalProperties, HoverHandlerData, HoverExtendedHandlerData>;
35
+ export type HoverGestureEvent = GestureEvent<HoverHandlerData>;
36
+ export type HoverGestureActiveEvent = GestureEvent<HoverExtendedHandlerData>;
37
+ export type HoverGesture = SingleGesture<HoverGestureInternalProperties, HoverHandlerData, HoverExtendedHandlerData>;
38
+ //# sourceMappingURL=HoverTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HoverTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/v3/hooks/gestures/hover/HoverTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2CAA2C,CAAC;AAC5E,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAC;AAC9E,OAAO,KAAK,EACV,iBAAiB,EACjB,0BAA0B,EAC1B,YAAY,EACZ,aAAa,EACb,eAAe,EAChB,MAAM,gBAAgB,CAAC;AAExB,MAAM,MAAM,8BAA8B,GAAG;IAC3C;;;;;;;;OAQG;IACH,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG;IACzC,WAAW,EAAE,WAAW,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,qBAAqB,oBAEhB,CAAC;AAEnB,MAAM,MAAM,gBAAgB,GAAG;IAC7B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,UAAU,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,gBAAgB,GAAG;IACxD,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,eAAe,CAClD,8BAA8B,EAC9B,WAAW,CACZ,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG,eAAe,CAC1D,4BAA4B,EAC5B,WAAW,CACZ,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,0BAA0B,CACzD,iBAAiB,CACf,sBAAsB,EACtB,gBAAgB,EAChB,wBAAwB,CACzB,CACF,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG,iBAAiB,CACxD,8BAA8B,EAC9B,gBAAgB,EAChB,wBAAwB,CACzB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,YAAY,CAAC,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,uBAAuB,GAAG,YAAY,CAAC,wBAAwB,CAAC,CAAC;AAE7E,MAAM,MAAM,YAAY,GAAG,aAAa,CACtC,8BAA8B,EAC9B,gBAAgB,EAChB,wBAAwB,CACzB,CAAC"}
@@ -1,21 +1,3 @@
1
- import { StylusData } from '../../../../handlers/gestureHandlerCommon';
2
- import { HoverEffect } from '../../../../handlers/gestures/hoverGesture';
3
- import { BaseGestureConfig, ExcludeInternalConfigProps, SingleGesture, WithSharedValue, GestureEvent } from '../../../types';
4
- import { HoverGestureExternalProperties, HoverGestureNativeProperties } from './HoverProperties';
5
- type HoverHandlerData = {
6
- x: number;
7
- y: number;
8
- absoluteX: number;
9
- absoluteY: number;
10
- stylusData: StylusData;
11
- changeX: number;
12
- changeY: number;
13
- };
14
- type HoverGestureProperties = WithSharedValue<HoverGestureExternalProperties, HoverEffect>;
15
- type HoverGestureInternalProperties = WithSharedValue<HoverGestureNativeProperties, HoverEffect>;
16
- export type HoverGestureConfig = ExcludeInternalConfigProps<BaseGestureConfig<HoverHandlerData, HoverGestureProperties>>;
17
- export type HoverGestureEvent = GestureEvent<HoverHandlerData>;
18
- export type HoverGesture = SingleGesture<HoverHandlerData, HoverGestureInternalProperties>;
19
- export declare function useHoverGesture(config: HoverGestureConfig): HoverGesture;
20
- export {};
1
+ import type { HoverGesture, HoverGestureConfig } from './HoverTypes';
2
+ export declare function useHoverGesture(config?: HoverGestureConfig): HoverGesture;
21
3
  //# sourceMappingURL=useHoverGesture.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useHoverGesture.d.ts","sourceRoot":"","sources":["../../../../../../src/v3/hooks/gestures/hover/useHoverGesture.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,2CAA2C,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAC;AACzE,OAAO,EACL,iBAAiB,EACjB,0BAA0B,EAC1B,aAAa,EAGb,eAAe,EACf,YAAY,EACb,MAAM,gBAAgB,CAAC;AAMxB,OAAO,EACL,8BAA8B,EAC9B,4BAA4B,EAC7B,MAAM,mBAAmB,CAAC;AAE3B,KAAK,gBAAgB,GAAG;IACtB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,UAAU,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,sBAAsB,GAAG,eAAe,CAC3C,8BAA8B,EAC9B,WAAW,CACZ,CAAC;AAEF,KAAK,8BAA8B,GAAG,eAAe,CACnD,4BAA4B,EAC5B,WAAW,CACZ,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,0BAA0B,CACzD,iBAAiB,CAAC,gBAAgB,EAAE,sBAAsB,CAAC,CAC5D,CAAC;AAOF,MAAM,MAAM,iBAAiB,GAAG,YAAY,CAAC,gBAAgB,CAAC,CAAC;AAE/D,MAAM,MAAM,YAAY,GAAG,aAAa,CACtC,gBAAgB,EAChB,8BAA8B,CAC/B,CAAC;AAuBF,wBAAgB,eAAe,CAAC,MAAM,EAAE,kBAAkB,GAAG,YAAY,CAQxE"}
1
+ {"version":3,"file":"useHoverGesture.d.ts","sourceRoot":"","sources":["../../../../../../src/v3/hooks/gestures/hover/useHoverGesture.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAEV,YAAY,EACZ,kBAAkB,EAKnB,MAAM,cAAc,CAAC;AAiCtB,wBAAgB,eAAe,CAC7B,MAAM,GAAE,kBAAuC,GAC9C,YAAY,CASd"}
@@ -1,39 +1,30 @@
1
- import type { FlingGestureEvent, FlingGesture } from './fling/useFlingGesture';
2
- import type { HoverGestureEvent, HoverGesture } from './hover/useHoverGesture';
3
- import type { LongPressGestureEvent, LongPressGesture } from './longPress/useLongPressGesture';
4
- import type { ManualGestureEvent, ManualGesture } from './manual/useManualGesture';
5
- import type { NativeGestureEvent, NativeGesture } from './native/useNativeGesture';
6
- import type { PanGestureEvent, PanGesture } from './pan/usePanGesture';
7
- import type { PinchGestureEvent, PinchGesture } from './pinch/usePinchGesture';
8
- import type { RotationGestureEvent, RotationGesture } from './rotation/useRotationGesture';
9
- import type { TapGestureEvent, TapGesture } from './tap/useTapGesture';
10
- export type { TapGestureConfig } from './tap/useTapGesture';
11
- export type { TapGesture, TapGestureEvent };
1
+ import type { FlingGesture, FlingGestureActiveEvent, FlingGestureConfig, FlingGestureEvent } from './fling/FlingTypes';
2
+ import type { HoverGesture, HoverGestureActiveEvent, HoverGestureConfig, HoverGestureEvent } from './hover/HoverTypes';
3
+ import type { LongPressGesture, LongPressGestureActiveEvent, LongPressGestureConfig, LongPressGestureEvent } from './longPress/LongPressTypes';
4
+ import type { ManualGesture, ManualGestureActiveEvent, ManualGestureConfig, ManualGestureEvent } from './manual/ManualTypes';
5
+ import type { NativeGesture, NativeGestureActiveEvent, NativeGestureConfig, NativeGestureEvent } from './native/NativeTypes';
6
+ import type { PanGesture, PanGestureActiveEvent, PanGestureConfig, PanGestureEvent } from './pan/PanTypes';
7
+ import type { PinchGesture, PinchGestureActiveEvent, PinchGestureConfig, PinchGestureEvent } from './pinch/PinchTypes';
8
+ import type { RotationGesture, RotationGestureActiveEvent, RotationGestureConfig, RotationGestureEvent } from './rotation/RotationTypes';
9
+ import type { TapGesture, TapGestureActiveEvent, TapGestureConfig, TapGestureEvent } from './tap/TapTypes';
10
+ export type { TapGesture, TapGestureActiveEvent, TapGestureConfig, TapGestureEvent, };
12
11
  export { useTapGesture } from './tap/useTapGesture';
13
- export type { FlingGestureConfig } from './fling/useFlingGesture';
14
- export type { FlingGesture, FlingGestureEvent };
12
+ export type { FlingGesture, FlingGestureActiveEvent, FlingGestureConfig, FlingGestureEvent, };
15
13
  export { useFlingGesture } from './fling/useFlingGesture';
16
- export type { LongPressGestureConfig } from './longPress/useLongPressGesture';
17
- export type { LongPressGesture, LongPressGestureEvent };
14
+ export type { LongPressGesture, LongPressGestureActiveEvent, LongPressGestureConfig, LongPressGestureEvent, };
18
15
  export { useLongPressGesture } from './longPress/useLongPressGesture';
19
- export type { PinchGestureConfig } from './pinch/usePinchGesture';
20
- export type { PinchGesture, PinchGestureEvent };
16
+ export type { PinchGesture, PinchGestureActiveEvent, PinchGestureConfig, PinchGestureEvent, };
21
17
  export { usePinchGesture } from './pinch/usePinchGesture';
22
- export type { RotationGestureConfig } from './rotation/useRotationGesture';
23
- export type { RotationGesture, RotationGestureEvent };
18
+ export type { RotationGesture, RotationGestureActiveEvent, RotationGestureConfig, RotationGestureEvent, };
24
19
  export { useRotationGesture } from './rotation/useRotationGesture';
25
- export type { HoverGestureConfig } from './hover/useHoverGesture';
26
- export type { HoverGesture, HoverGestureEvent };
20
+ export type { HoverGesture, HoverGestureActiveEvent, HoverGestureConfig, HoverGestureEvent, };
27
21
  export { useHoverGesture } from './hover/useHoverGesture';
28
- export type { ManualGestureConfig } from './manual/useManualGesture';
29
- export type { ManualGesture, ManualGestureEvent };
22
+ export type { ManualGesture, ManualGestureActiveEvent, ManualGestureConfig, ManualGestureEvent, };
30
23
  export { useManualGesture } from './manual/useManualGesture';
31
- export type { NativeViewGestureConfig } from './native/useNativeGesture';
32
- export type { NativeGesture, NativeGestureEvent };
24
+ export type { NativeGesture, NativeGestureActiveEvent, NativeGestureConfig, NativeGestureEvent, };
33
25
  export { useNativeGesture } from './native/useNativeGesture';
34
- export type { PanGestureConfig } from './pan/usePanGesture';
35
- export type { PanGesture, PanGestureEvent };
26
+ export type { PanGesture, PanGestureActiveEvent, PanGestureConfig, PanGestureEvent, };
36
27
  export { usePanGesture } from './pan/usePanGesture';
37
28
  export type SingleGesture = TapGesture | FlingGesture | LongPressGesture | PinchGesture | RotationGesture | HoverGesture | ManualGesture | NativeGesture | PanGesture;
38
- export type SingleGestureEvent = TapGestureEvent | FlingGestureEvent | LongPressGestureEvent | RotationGestureEvent | HoverGestureEvent | ManualGestureEvent | NativeGestureEvent | PanGestureEvent;
29
+ export type SingleGestureEvent = TapGestureEvent | TapGestureActiveEvent | FlingGestureEvent | FlingGestureActiveEvent | LongPressGestureEvent | LongPressGestureActiveEvent | RotationGestureEvent | RotationGestureActiveEvent | HoverGestureEvent | HoverGestureActiveEvent | ManualGestureEvent | ManualGestureActiveEvent | NativeGestureEvent | NativeGestureActiveEvent | PanGestureEvent | PanGestureActiveEvent;
39
30
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/gestures/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,KAAK,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,KAAK,EACV,qBAAqB,EACrB,gBAAgB,EACjB,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EACV,kBAAkB,EAClB,aAAa,EACd,MAAM,2BAA2B,CAAC;AACnC,OAAO,KAAK,EACV,kBAAkB,EAClB,aAAa,EACd,MAAM,2BAA2B,CAAC;AACnC,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,KAAK,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,KAAK,EACV,oBAAoB,EACpB,eAAe,EAChB,MAAM,+BAA+B,CAAC;AACvC,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEvE,YAAY,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,YAAY,EAAE,UAAU,EAAE,eAAe,EAAE,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,YAAY,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,YAAY,EAAE,YAAY,EAAE,iBAAiB,EAAE,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,YAAY,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,YAAY,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,CAAC;AACxD,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAEtE,YAAY,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,YAAY,EAAE,YAAY,EAAE,iBAAiB,EAAE,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,YAAY,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAC3E,YAAY,EAAE,eAAe,EAAE,oBAAoB,EAAE,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAEnE,YAAY,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,YAAY,EAAE,YAAY,EAAE,iBAAiB,EAAE,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,YAAY,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AACrE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAE7D,YAAY,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACzE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAE7D,YAAY,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,YAAY,EAAE,UAAU,EAAE,eAAe,EAAE,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,MAAM,MAAM,aAAa,GACrB,UAAU,GACV,YAAY,GACZ,gBAAgB,GAChB,YAAY,GACZ,eAAe,GACf,YAAY,GACZ,aAAa,GACb,aAAa,GACb,UAAU,CAAC;AAEf,MAAM,MAAM,kBAAkB,GAC1B,eAAe,GACf,iBAAiB,GACjB,qBAAqB,GACrB,oBAAoB,GACpB,iBAAiB,GACjB,kBAAkB,GAClB,kBAAkB,GAClB,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/gestures/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,KAAK,EACV,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,KAAK,EACV,gBAAgB,EAChB,2BAA2B,EAC3B,sBAAsB,EACtB,qBAAqB,EACtB,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EACV,aAAa,EACb,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,EACnB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EACV,aAAa,EACb,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,EACnB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EACV,UAAU,EACV,qBAAqB,EACrB,gBAAgB,EAChB,eAAe,EAChB,MAAM,gBAAgB,CAAC;AACxB,OAAO,KAAK,EACV,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,KAAK,EACV,eAAe,EACf,0BAA0B,EAC1B,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EACV,UAAU,EACV,qBAAqB,EACrB,gBAAgB,EAChB,eAAe,EAChB,MAAM,gBAAgB,CAAC;AAExB,YAAY,EACV,UAAU,EACV,qBAAqB,EACrB,gBAAgB,EAChB,eAAe,GAChB,CAAC;AACF,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,YAAY,EACV,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,GAClB,CAAC;AACF,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,YAAY,EACV,gBAAgB,EAChB,2BAA2B,EAC3B,sBAAsB,EACtB,qBAAqB,GACtB,CAAC;AACF,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAEtE,YAAY,EACV,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,GAClB,CAAC;AACF,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,YAAY,EACV,eAAe,EACf,0BAA0B,EAC1B,qBAAqB,EACrB,oBAAoB,GACrB,CAAC;AACF,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAEnE,YAAY,EACV,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,GAClB,CAAC;AACF,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,YAAY,EACV,aAAa,EACb,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,GACnB,CAAC;AACF,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAE7D,YAAY,EACV,aAAa,EACb,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,GACnB,CAAC;AACF,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAE7D,YAAY,EACV,UAAU,EACV,qBAAqB,EACrB,gBAAgB,EAChB,eAAe,GAChB,CAAC;AACF,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,MAAM,MAAM,aAAa,GACrB,UAAU,GACV,YAAY,GACZ,gBAAgB,GAChB,YAAY,GACZ,eAAe,GACf,YAAY,GACZ,aAAa,GACb,aAAa,GACb,UAAU,CAAC;AAGf,MAAM,MAAM,kBAAkB,GAC1B,eAAe,GACf,qBAAqB,GACrB,iBAAiB,GACjB,uBAAuB,GACvB,qBAAqB,GACrB,2BAA2B,GAC3B,oBAAoB,GACpB,0BAA0B,GAC1B,iBAAiB,GACjB,uBAAuB,GACvB,kBAAkB,GAClB,wBAAwB,GACxB,kBAAkB,GAClB,wBAAwB,GACxB,eAAe,GACf,qBAAqB,CAAC"}