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

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 (1362) 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 +43 -17
  5. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +1 -1
  6. package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +4 -6
  7. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +10 -7
  8. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +382 -129
  9. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerDetectorView.kt +17 -0
  10. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +2 -0
  11. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +4 -10
  12. package/apple/Handlers/RNFlingHandler.m +7 -7
  13. package/apple/Handlers/RNForceTouchHandler.m +2 -2
  14. package/apple/Handlers/RNHoverHandler.m +38 -7
  15. package/apple/Handlers/RNLongPressHandler.m +21 -8
  16. package/apple/Handlers/RNManualHandler.m +2 -2
  17. package/apple/Handlers/RNNativeViewHandler.mm +67 -13
  18. package/apple/Handlers/RNPanHandler.m +4 -4
  19. package/apple/Handlers/RNPinchHandler.m +11 -4
  20. package/apple/Handlers/RNRotationHandler.m +11 -4
  21. package/apple/Handlers/RNTapHandler.m +6 -4
  22. package/apple/RNGHUIKit.h +2 -0
  23. package/apple/RNGestureHandler.h +16 -1
  24. package/apple/RNGestureHandler.mm +78 -4
  25. package/apple/RNGestureHandlerButton.h +42 -1
  26. package/apple/RNGestureHandlerButton.mm +619 -49
  27. package/apple/RNGestureHandlerButtonComponentView.mm +52 -2
  28. package/apple/RNGestureHandlerDetector.mm +17 -0
  29. package/apple/RNGestureHandlerEvents.h +3 -1
  30. package/apple/RNGestureHandlerEvents.mm +8 -3
  31. package/apple/RNGestureHandlerManager.h +2 -0
  32. package/apple/RNGestureHandlerManager.mm +49 -3
  33. package/apple/RNGestureHandlerModule.mm +17 -10
  34. package/apple/RNGestureHandlerRegistry.h +2 -0
  35. package/apple/RNGestureHandlerRegistry.m +41 -11
  36. package/apple/RNManualActivationRecognizer.m +1 -1
  37. package/jest-utils/package.json +1 -1
  38. package/jestSetup.js +6 -16
  39. package/lib/module/RNGestureHandlerModule.web.js +2 -1
  40. package/lib/module/RNGestureHandlerModule.web.js.map +1 -1
  41. package/lib/module/RNGestureHandlerModule.windows.js +5 -6
  42. package/lib/module/RNGestureHandlerModule.windows.js.map +1 -1
  43. package/lib/module/components/GestureButtons.js +30 -13
  44. package/lib/module/components/GestureButtons.js.map +1 -1
  45. package/lib/module/components/GestureComponents.js +6 -8
  46. package/lib/module/components/GestureComponents.js.map +1 -1
  47. package/lib/module/components/GestureComponents.web.js +3 -4
  48. package/lib/module/components/GestureComponents.web.js.map +1 -1
  49. package/lib/module/components/GestureHandlerButton.js +2 -135
  50. package/lib/module/components/GestureHandlerButton.js.map +1 -1
  51. package/lib/module/components/GestureHandlerButton.web.js +118 -6
  52. package/lib/module/components/GestureHandlerButton.web.js.map +1 -1
  53. package/lib/module/components/GestureHandlerRootView.android.js.map +1 -1
  54. package/lib/module/components/GestureHandlerRootView.js +2 -2
  55. package/lib/module/components/GestureHandlerRootView.js.map +1 -1
  56. package/lib/module/components/GestureHandlerRootView.web.js +2 -2
  57. package/lib/module/components/GestureHandlerRootView.web.js.map +1 -1
  58. package/lib/module/components/Pressable/Pressable.js +16 -10
  59. package/lib/module/components/Pressable/Pressable.js.map +1 -1
  60. package/lib/module/components/Pressable/index.js.map +1 -1
  61. package/lib/module/components/Pressable/stateDefinitions.js +14 -3
  62. package/lib/module/components/Pressable/stateDefinitions.js.map +1 -1
  63. package/lib/module/components/Pressable/utils.js +1 -1
  64. package/lib/module/components/Pressable/utils.js.map +1 -1
  65. package/lib/module/components/ReanimatedDrawerLayout.js +11 -10
  66. package/lib/module/components/ReanimatedDrawerLayout.js.map +1 -1
  67. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js +16 -16
  68. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +1 -1
  69. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +1 -1
  70. package/lib/module/components/ReanimatedSwipeable/index.js +1 -1
  71. package/lib/module/components/ReanimatedSwipeable/index.js.map +1 -1
  72. package/lib/module/components/Text.js +33 -23
  73. package/lib/module/components/Text.js.map +1 -1
  74. package/lib/module/components/touchables/GenericTouchable.js +9 -13
  75. package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
  76. package/lib/module/components/touchables/TouchableHighlight.js +1 -1
  77. package/lib/module/components/touchables/TouchableHighlight.js.map +1 -1
  78. package/lib/module/components/touchables/TouchableNativeFeedback.android.js +1 -1
  79. package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +1 -1
  80. package/lib/module/components/touchables/TouchableOpacity.js +2 -2
  81. package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
  82. package/lib/module/components/touchables/TouchableWithoutFeedback.js +3 -4
  83. package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  84. package/lib/module/components/touchables/index.js +2 -2
  85. package/lib/module/components/touchables/index.js.map +1 -1
  86. package/lib/module/findNodeHandle.web.js +4 -2
  87. package/lib/module/findNodeHandle.web.js.map +1 -1
  88. package/lib/module/handlers/FlingGestureHandler.js.map +1 -1
  89. package/lib/module/handlers/ForceTouchGestureHandler.js +1 -1
  90. package/lib/module/handlers/ForceTouchGestureHandler.js.map +1 -1
  91. package/lib/module/handlers/LongPressGestureHandler.js.map +1 -1
  92. package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
  93. package/lib/module/handlers/PanGestureHandler.js.map +1 -1
  94. package/lib/module/handlers/PinchGestureHandler.js.map +1 -1
  95. package/lib/module/handlers/RotationGestureHandler.js.map +1 -1
  96. package/lib/module/handlers/TapGestureHandler.js.map +1 -1
  97. package/lib/module/handlers/createHandler.js +10 -10
  98. package/lib/module/handlers/createHandler.js.map +1 -1
  99. package/lib/module/handlers/createNativeWrapper.js +7 -3
  100. package/lib/module/handlers/createNativeWrapper.js.map +1 -1
  101. package/lib/module/handlers/gestures/GestureDetector/Wrap.js +1 -1
  102. package/lib/module/handlers/gestures/GestureDetector/Wrap.js.map +1 -1
  103. package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js +5 -4
  104. package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js.map +1 -1
  105. package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js +5 -5
  106. package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js.map +1 -1
  107. package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js +2 -2
  108. package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js.map +1 -1
  109. package/lib/module/handlers/gestures/GestureDetector/index.js +6 -6
  110. package/lib/module/handlers/gestures/GestureDetector/index.js.map +1 -1
  111. package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js +3 -3
  112. package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js.map +1 -1
  113. package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js +3 -3
  114. package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +1 -1
  115. package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js +4 -3
  116. package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +1 -1
  117. package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js +2 -2
  118. package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js.map +1 -1
  119. package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js +2 -2
  120. package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js.map +1 -1
  121. package/lib/module/handlers/gestures/GestureDetector/utils.js +7 -7
  122. package/lib/module/handlers/gestures/GestureDetector/utils.js.map +1 -1
  123. package/lib/module/handlers/gestures/eventReceiver.js.map +1 -1
  124. package/lib/module/handlers/gestures/flingGesture.js.map +1 -1
  125. package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -1
  126. package/lib/module/handlers/gestures/gesture.js +1 -1
  127. package/lib/module/handlers/gestures/gesture.js.map +1 -1
  128. package/lib/module/handlers/gestures/gestureComposition.js.map +1 -1
  129. package/lib/module/handlers/gestures/gestureObjects.js +3 -3
  130. package/lib/module/handlers/gestures/gestureObjects.js.map +1 -1
  131. package/lib/module/handlers/gestures/hoverGesture.js.map +1 -1
  132. package/lib/module/handlers/gestures/longPressGesture.js.map +1 -1
  133. package/lib/module/handlers/gestures/nativeGesture.js.map +1 -1
  134. package/lib/module/handlers/gestures/panGesture.js.map +1 -1
  135. package/lib/module/handlers/gestures/pinchGesture.js.map +1 -1
  136. package/lib/module/handlers/gestures/reanimatedWrapper.js.map +1 -1
  137. package/lib/module/handlers/gestures/rotationGesture.js.map +1 -1
  138. package/lib/module/handlers/gestures/tapGesture.js.map +1 -1
  139. package/lib/module/handlers/handlersRegistry.js.map +1 -1
  140. package/lib/module/handlers/utils.js +4 -4
  141. package/lib/module/handlers/utils.js.map +1 -1
  142. package/lib/module/index.js +15 -16
  143. package/lib/module/index.js.map +1 -1
  144. package/lib/module/jestUtils/index.js +1 -1
  145. package/lib/module/jestUtils/index.js.map +1 -1
  146. package/lib/module/jestUtils/jestUtils.js +0 -1
  147. package/lib/module/jestUtils/jestUtils.js.map +1 -1
  148. package/lib/module/mocks/GestureButtons.js +8 -5
  149. package/lib/module/mocks/GestureButtons.js.map +1 -1
  150. package/lib/module/mocks/Touchables.js +4 -0
  151. package/lib/module/mocks/Touchables.js.map +1 -0
  152. package/lib/module/mocks/gestureComponents.js +1 -12
  153. package/lib/module/mocks/gestureComponents.js.map +1 -1
  154. package/lib/module/specs/NativeRNGestureHandlerModule.js.map +1 -1
  155. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
  156. package/lib/module/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
  157. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
  158. package/lib/module/useIsScreenReaderEnabled.js +26 -0
  159. package/lib/module/useIsScreenReaderEnabled.js.map +1 -0
  160. package/lib/module/v3/NativeProxy.js.map +1 -1
  161. package/lib/module/v3/NativeProxy.web.js.map +1 -1
  162. package/lib/module/v3/components/GestureButtons.js +41 -25
  163. package/lib/module/v3/components/GestureButtons.js.map +1 -1
  164. package/lib/module/v3/components/GestureComponents.js +3 -3
  165. package/lib/module/v3/components/GestureComponents.js.map +1 -1
  166. package/lib/module/v3/components/GestureComponents.web.js +3 -4
  167. package/lib/module/v3/components/GestureComponents.web.js.map +1 -1
  168. package/lib/module/v3/components/Pressable.js +15 -15
  169. package/lib/module/v3/components/Pressable.js.map +1 -1
  170. package/lib/module/v3/components/Touchable/Touchable.js +94 -0
  171. package/lib/module/v3/components/Touchable/Touchable.js.map +1 -0
  172. package/lib/module/v3/components/Touchable/TouchableProps.js +4 -0
  173. package/lib/module/v3/components/Touchable/TouchableProps.js.map +1 -0
  174. package/lib/module/v3/components/index.js +3 -2
  175. package/lib/module/v3/components/index.js.map +1 -1
  176. package/lib/module/v3/createNativeWrapper.js +3 -3
  177. package/lib/module/v3/createNativeWrapper.js.map +1 -1
  178. package/lib/module/v3/detectors/GestureDetector.js +1 -1
  179. package/lib/module/v3/detectors/GestureDetector.js.map +1 -1
  180. package/lib/module/v3/detectors/HostGestureDetector.web.js +12 -10
  181. package/lib/module/v3/detectors/HostGestureDetector.web.js.map +1 -1
  182. package/lib/module/v3/detectors/NativeDetector.js +3 -3
  183. package/lib/module/v3/detectors/NativeDetector.js.map +1 -1
  184. package/lib/module/v3/detectors/ReanimatedNativeDetector.js +1 -1
  185. package/lib/module/v3/detectors/ReanimatedNativeDetector.js.map +1 -1
  186. package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +15 -9
  187. package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +1 -1
  188. package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js +8 -5
  189. package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js.map +1 -1
  190. package/lib/module/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +1 -1
  191. package/lib/module/v3/detectors/common.js +0 -3
  192. package/lib/module/v3/detectors/common.js.map +1 -1
  193. package/lib/module/v3/detectors/index.js +1 -1
  194. package/lib/module/v3/detectors/index.js.map +1 -1
  195. package/lib/module/v3/detectors/useEnsureGestureHandlerRootView.js.map +1 -1
  196. package/lib/module/v3/detectors/utils.js.map +1 -1
  197. package/lib/module/v3/gestureStateManager.js +0 -5
  198. package/lib/module/v3/gestureStateManager.js.map +1 -1
  199. package/lib/module/v3/gestureStateManager.web.js +0 -14
  200. package/lib/module/v3/gestureStateManager.web.js.map +1 -1
  201. package/lib/module/v3/hooks/callbacks/eventHandler.js +23 -19
  202. package/lib/module/v3/hooks/callbacks/eventHandler.js.map +1 -1
  203. package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js +2 -2
  204. package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js.map +1 -1
  205. package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js +2 -2
  206. package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js.map +1 -1
  207. package/lib/module/v3/hooks/composition/index.js +2 -2
  208. package/lib/module/v3/hooks/composition/index.js.map +1 -1
  209. package/lib/module/v3/hooks/composition/useCompetingGestures.js.map +1 -1
  210. package/lib/module/v3/hooks/composition/useComposedGesture.js +1 -1
  211. package/lib/module/v3/hooks/composition/useComposedGesture.js.map +1 -1
  212. package/lib/module/v3/hooks/composition/useExclusiveGestures.js.map +1 -1
  213. package/lib/module/v3/hooks/composition/useSimultaneousGestures.js.map +1 -1
  214. package/lib/module/v3/hooks/gestures/fling/{FlingProperties.js → FlingTypes.js} +1 -1
  215. package/lib/module/v3/hooks/gestures/fling/FlingTypes.js.map +1 -0
  216. package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js.map +1 -1
  217. package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js → HoverTypes.js} +1 -1
  218. package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js.map → HoverTypes.js.map} +1 -1
  219. package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js +8 -1
  220. package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js.map +1 -1
  221. package/lib/module/v3/hooks/gestures/index.js +4 -0
  222. package/lib/module/v3/hooks/gestures/index.js.map +1 -1
  223. package/lib/module/v3/hooks/gestures/longPress/{LongPressProperties.js → LongPressTypes.js} +1 -1
  224. package/lib/module/v3/hooks/gestures/longPress/LongPressTypes.js.map +1 -0
  225. package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js.map +1 -1
  226. package/lib/module/v3/hooks/gestures/manual/ManualTypes.js +4 -0
  227. package/lib/module/v3/hooks/gestures/manual/ManualTypes.js.map +1 -0
  228. package/lib/module/v3/hooks/gestures/manual/useManualGesture.js.map +1 -1
  229. package/lib/module/v3/hooks/gestures/native/{NativeProperties.js → NativeTypes.js} +1 -1
  230. package/lib/module/v3/hooks/gestures/native/NativeTypes.js.map +1 -0
  231. package/lib/module/v3/hooks/gestures/native/useNativeGesture.js.map +1 -1
  232. package/lib/module/v3/hooks/gestures/pan/{PanProperties.js → PanTypes.js} +1 -1
  233. package/lib/module/v3/hooks/gestures/pan/PanTypes.js.map +1 -0
  234. package/lib/module/v3/hooks/gestures/pan/usePanGesture.js +7 -0
  235. package/lib/module/v3/hooks/gestures/pan/usePanGesture.js.map +1 -1
  236. package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js +4 -0
  237. package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js.map +1 -0
  238. package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js +7 -2
  239. package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js.map +1 -1
  240. package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js +4 -0
  241. package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js.map +1 -0
  242. package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js +7 -1
  243. package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js.map +1 -1
  244. package/lib/module/v3/hooks/gestures/tap/{TapProperties.js → TapTypes.js} +1 -1
  245. package/lib/module/v3/hooks/gestures/tap/TapTypes.js.map +1 -0
  246. package/lib/module/v3/hooks/gestures/tap/useTapGesture.js.map +1 -1
  247. package/lib/module/v3/hooks/useGesture.js +10 -8
  248. package/lib/module/v3/hooks/useGesture.js.map +1 -1
  249. package/lib/module/v3/hooks/useGestureCallbacks.js +4 -4
  250. package/lib/module/v3/hooks/useGestureCallbacks.js.map +1 -1
  251. package/lib/module/v3/hooks/utils/configUtils.js +2 -2
  252. package/lib/module/v3/hooks/utils/configUtils.js.map +1 -1
  253. package/lib/module/v3/hooks/utils/eventHandlersUtils.js +3 -7
  254. package/lib/module/v3/hooks/utils/eventHandlersUtils.js.map +1 -1
  255. package/lib/module/v3/hooks/utils/eventUtils.js +10 -0
  256. package/lib/module/v3/hooks/utils/eventUtils.js.map +1 -1
  257. package/lib/module/v3/hooks/utils/index.js +5 -5
  258. package/lib/module/v3/hooks/utils/index.js.map +1 -1
  259. package/lib/module/v3/hooks/utils/propsWhiteList.js +9 -7
  260. package/lib/module/v3/hooks/utils/propsWhiteList.js.map +1 -1
  261. package/lib/module/v3/hooks/utils/reanimatedUtils.js +1 -1
  262. package/lib/module/v3/hooks/utils/reanimatedUtils.js.map +1 -1
  263. package/lib/module/v3/index.js +3 -4
  264. package/lib/module/v3/index.js.map +1 -1
  265. package/lib/module/v3/types/GestureTypes.js.map +1 -1
  266. package/lib/module/v3/types/index.js +1 -1
  267. package/lib/module/v3/types/index.js.map +1 -1
  268. package/lib/module/web/Gestures.js +6 -6
  269. package/lib/module/web/Gestures.js.map +1 -1
  270. package/lib/module/web/detectors/RotationGestureDetector.js +4 -7
  271. package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -1
  272. package/lib/module/web/detectors/ScaleGestureDetector.js +1 -1
  273. package/lib/module/web/detectors/ScaleGestureDetector.js.map +1 -1
  274. package/lib/module/web/handlers/FlingGestureHandler.js +3 -3
  275. package/lib/module/web/handlers/FlingGestureHandler.js.map +1 -1
  276. package/lib/module/web/handlers/GestureHandler.js +35 -58
  277. package/lib/module/web/handlers/GestureHandler.js.map +1 -1
  278. package/lib/module/web/handlers/HoverGestureHandler.js +1 -1
  279. package/lib/module/web/handlers/HoverGestureHandler.js.map +1 -1
  280. package/lib/module/web/handlers/LongPressGestureHandler.js.map +1 -1
  281. package/lib/module/web/handlers/NativeViewGestureHandler.js +1 -1
  282. package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -1
  283. package/lib/module/web/handlers/PanGestureHandler.js +1 -1
  284. package/lib/module/web/handlers/PanGestureHandler.js.map +1 -1
  285. package/lib/module/web/handlers/PinchGestureHandler.js +7 -8
  286. package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -1
  287. package/lib/module/web/handlers/RotationGestureHandler.js +26 -32
  288. package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -1
  289. package/lib/module/web/handlers/TapGestureHandler.js.map +1 -1
  290. package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +1 -1
  291. package/lib/module/web/tools/GestureHandlerWebDelegate.js +62 -17
  292. package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +1 -1
  293. package/lib/module/web/tools/InteractionManager.js.map +1 -1
  294. package/lib/module/web/tools/KeyboardEventManager.js +1 -1
  295. package/lib/module/web/tools/KeyboardEventManager.js.map +1 -1
  296. package/lib/module/web/tools/PointerEventManager.js +7 -7
  297. package/lib/module/web/tools/PointerEventManager.js.map +1 -1
  298. package/lib/module/web/tools/WheelEventManager.js +2 -2
  299. package/lib/module/web/tools/WheelEventManager.js.map +1 -1
  300. package/lib/module/web/utils.js +22 -1
  301. package/lib/module/web/utils.js.map +1 -1
  302. package/lib/typescript/RNGestureHandlerModule.web.d.ts +1 -1
  303. package/lib/typescript/RNGestureHandlerModule.web.d.ts.map +1 -1
  304. package/lib/typescript/RNGestureHandlerModule.windows.d.ts +8 -8
  305. package/lib/typescript/RNGestureHandlerModule.windows.d.ts.map +1 -1
  306. package/lib/typescript/components/GestureButtons.d.ts +16 -5
  307. package/lib/typescript/components/GestureButtons.d.ts.map +1 -1
  308. package/lib/typescript/components/GestureButtonsProps.d.ts +21 -21
  309. package/lib/typescript/components/GestureButtonsProps.d.ts.map +1 -1
  310. package/lib/typescript/components/GestureComponents.d.ts +44 -14
  311. package/lib/typescript/components/GestureComponents.d.ts.map +1 -1
  312. package/lib/typescript/components/GestureComponents.web.d.ts +26 -6
  313. package/lib/typescript/components/GestureComponents.web.d.ts.map +1 -1
  314. package/lib/typescript/components/GestureHandlerButton.d.ts +114 -2
  315. package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -1
  316. package/lib/typescript/components/GestureHandlerButton.web.d.ts +16 -2
  317. package/lib/typescript/components/GestureHandlerButton.web.d.ts.map +1 -1
  318. package/lib/typescript/components/GestureHandlerRootView.android.d.ts +1 -1
  319. package/lib/typescript/components/GestureHandlerRootView.android.d.ts.map +1 -1
  320. package/lib/typescript/components/GestureHandlerRootView.d.ts +1 -1
  321. package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -1
  322. package/lib/typescript/components/GestureHandlerRootView.web.d.ts +2 -2
  323. package/lib/typescript/components/GestureHandlerRootView.web.d.ts.map +1 -1
  324. package/lib/typescript/components/Pressable/Pressable.d.ts +6 -3
  325. package/lib/typescript/components/Pressable/Pressable.d.ts.map +1 -1
  326. package/lib/typescript/components/Pressable/PressableProps.d.ts +4 -4
  327. package/lib/typescript/components/Pressable/PressableProps.d.ts.map +1 -1
  328. package/lib/typescript/components/Pressable/StateMachine.d.ts +1 -1
  329. package/lib/typescript/components/Pressable/StateMachine.d.ts.map +1 -1
  330. package/lib/typescript/components/Pressable/index.d.ts +1 -1
  331. package/lib/typescript/components/Pressable/index.d.ts.map +1 -1
  332. package/lib/typescript/components/Pressable/stateDefinitions.d.ts +3 -3
  333. package/lib/typescript/components/Pressable/stateDefinitions.d.ts.map +1 -1
  334. package/lib/typescript/components/Pressable/utils.d.ts +8 -7
  335. package/lib/typescript/components/Pressable/utils.d.ts.map +1 -1
  336. package/lib/typescript/components/ReanimatedDrawerLayout.d.ts +9 -5
  337. package/lib/typescript/components/ReanimatedDrawerLayout.d.ts.map +1 -1
  338. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts +2 -2
  339. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts.map +1 -1
  340. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts +9 -11
  341. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts.map +1 -1
  342. package/lib/typescript/components/ReanimatedSwipeable/index.d.ts +1 -1
  343. package/lib/typescript/components/ReanimatedSwipeable/index.d.ts.map +1 -1
  344. package/lib/typescript/components/Text.d.ts +15 -3
  345. package/lib/typescript/components/Text.d.ts.map +1 -1
  346. package/lib/typescript/components/touchables/ExtraButtonProps.d.ts +5 -5
  347. package/lib/typescript/components/touchables/ExtraButtonProps.d.ts.map +1 -1
  348. package/lib/typescript/components/touchables/GenericTouchable.d.ts +2 -2
  349. package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -1
  350. package/lib/typescript/components/touchables/GenericTouchableProps.d.ts +2 -2
  351. package/lib/typescript/components/touchables/GenericTouchableProps.d.ts.map +1 -1
  352. package/lib/typescript/components/touchables/TouchableHighlight.d.ts +3 -3
  353. package/lib/typescript/components/touchables/TouchableHighlight.d.ts.map +1 -1
  354. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +2 -2
  355. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts.map +1 -1
  356. package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts +1 -1
  357. package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts.map +1 -1
  358. package/lib/typescript/components/touchables/TouchableOpacity.d.ts +3 -2
  359. package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -1
  360. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +4 -3
  361. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -1
  362. package/lib/typescript/components/touchables/index.d.ts +3 -3
  363. package/lib/typescript/components/touchables/index.d.ts.map +1 -1
  364. package/lib/typescript/components/utils.d.ts +1 -1
  365. package/lib/typescript/components/utils.d.ts.map +1 -1
  366. package/lib/typescript/findNodeHandle.web.d.ts.map +1 -1
  367. package/lib/typescript/handlers/FlingGestureHandler.d.ts +1 -1
  368. package/lib/typescript/handlers/FlingGestureHandler.d.ts.map +1 -1
  369. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +3 -2
  370. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts.map +1 -1
  371. package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts +3 -3
  372. package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts.map +1 -1
  373. package/lib/typescript/handlers/LongPressGestureHandler.d.ts +2 -2
  374. package/lib/typescript/handlers/LongPressGestureHandler.d.ts.map +1 -1
  375. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +3 -3
  376. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -1
  377. package/lib/typescript/handlers/PanGestureHandler.d.ts +1 -1
  378. package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -1
  379. package/lib/typescript/handlers/PinchGestureHandler.d.ts +2 -2
  380. package/lib/typescript/handlers/PinchGestureHandler.d.ts.map +1 -1
  381. package/lib/typescript/handlers/RotationGestureHandler.d.ts +2 -2
  382. package/lib/typescript/handlers/RotationGestureHandler.d.ts.map +1 -1
  383. package/lib/typescript/handlers/TapGestureHandler.d.ts +1 -1
  384. package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -1
  385. package/lib/typescript/handlers/createHandler.d.ts +1 -1
  386. package/lib/typescript/handlers/createHandler.d.ts.map +1 -1
  387. package/lib/typescript/handlers/createNativeWrapper.d.ts +10 -2
  388. package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -1
  389. package/lib/typescript/handlers/gestureHandlerCommon.d.ts +27 -27
  390. package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -1
  391. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +3 -3
  392. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts.map +1 -1
  393. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.d.ts.map +1 -1
  394. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts +7 -6
  395. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts.map +1 -1
  396. package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts +5 -5
  397. package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts.map +1 -1
  398. package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts +1 -1
  399. package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts.map +1 -1
  400. package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts +3 -3
  401. package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts.map +1 -1
  402. package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts +2 -2
  403. package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts.map +1 -1
  404. package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts +2 -2
  405. package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts.map +1 -1
  406. package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts +3 -3
  407. package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts.map +1 -1
  408. package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts +1 -1
  409. package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts.map +1 -1
  410. package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts +5 -5
  411. package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts.map +1 -1
  412. package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts +1 -1
  413. package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts.map +1 -1
  414. package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts +2 -2
  415. package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts.map +1 -1
  416. package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts +2 -2
  417. package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts.map +1 -1
  418. package/lib/typescript/handlers/gestures/eventReceiver.d.ts +1 -1
  419. package/lib/typescript/handlers/gestures/eventReceiver.d.ts.map +1 -1
  420. package/lib/typescript/handlers/gestures/flingGesture.d.ts +3 -2
  421. package/lib/typescript/handlers/gestures/flingGesture.d.ts.map +1 -1
  422. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +4 -3
  423. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts.map +1 -1
  424. package/lib/typescript/handlers/gestures/gesture.d.ts +3 -3
  425. package/lib/typescript/handlers/gestures/gesture.d.ts.map +1 -1
  426. package/lib/typescript/handlers/gestures/gestureComposition.d.ts +2 -1
  427. package/lib/typescript/handlers/gestures/gestureComposition.d.ts.map +1 -1
  428. package/lib/typescript/handlers/gestures/gestureObjects.d.ts +4 -4
  429. package/lib/typescript/handlers/gestures/gestureObjects.d.ts.map +1 -1
  430. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +1 -1
  431. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts.map +1 -1
  432. package/lib/typescript/handlers/gestures/hoverGesture.d.ts +3 -2
  433. package/lib/typescript/handlers/gestures/hoverGesture.d.ts.map +1 -1
  434. package/lib/typescript/handlers/gestures/longPressGesture.d.ts +3 -2
  435. package/lib/typescript/handlers/gestures/longPressGesture.d.ts.map +1 -1
  436. package/lib/typescript/handlers/gestures/manualGesture.d.ts +1 -1
  437. package/lib/typescript/handlers/gestures/manualGesture.d.ts.map +1 -1
  438. package/lib/typescript/handlers/gestures/nativeGesture.d.ts +3 -2
  439. package/lib/typescript/handlers/gestures/nativeGesture.d.ts.map +1 -1
  440. package/lib/typescript/handlers/gestures/panGesture.d.ts +4 -3
  441. package/lib/typescript/handlers/gestures/panGesture.d.ts.map +1 -1
  442. package/lib/typescript/handlers/gestures/pinchGesture.d.ts +2 -2
  443. package/lib/typescript/handlers/gestures/pinchGesture.d.ts.map +1 -1
  444. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +3 -3
  445. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts.map +1 -1
  446. package/lib/typescript/handlers/gestures/rotationGesture.d.ts +2 -2
  447. package/lib/typescript/handlers/gestures/rotationGesture.d.ts.map +1 -1
  448. package/lib/typescript/handlers/gestures/tapGesture.d.ts +3 -2
  449. package/lib/typescript/handlers/gestures/tapGesture.d.ts.map +1 -1
  450. package/lib/typescript/handlers/handlersRegistry.d.ts +6 -6
  451. package/lib/typescript/handlers/handlersRegistry.d.ts.map +1 -1
  452. package/lib/typescript/handlers/utils.d.ts +1 -1
  453. package/lib/typescript/handlers/utils.d.ts.map +1 -1
  454. package/lib/typescript/index.d.ts +41 -42
  455. package/lib/typescript/index.d.ts.map +1 -1
  456. package/lib/typescript/jestUtils/index.d.ts +1 -1
  457. package/lib/typescript/jestUtils/jestUtils.d.ts +22 -21
  458. package/lib/typescript/jestUtils/jestUtils.d.ts.map +1 -1
  459. package/lib/typescript/mocks/GestureButtons.d.ts +5 -5
  460. package/lib/typescript/mocks/GestureButtons.d.ts.map +1 -1
  461. package/lib/typescript/mocks/Touchables.d.ts +2 -0
  462. package/lib/typescript/mocks/Touchables.d.ts.map +1 -0
  463. package/lib/typescript/mocks/gestureComponents.d.ts +1 -13
  464. package/lib/typescript/mocks/gestureComponents.d.ts.map +1 -1
  465. package/lib/typescript/mountRegistry.d.ts +1 -1
  466. package/lib/typescript/mountRegistry.d.ts.map +1 -1
  467. package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts +2 -2
  468. package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts.map +1 -1
  469. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +36 -3
  470. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts.map +1 -1
  471. package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts +8 -8
  472. package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts.map +1 -1
  473. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +1 -1
  474. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts.map +1 -1
  475. package/lib/typescript/useIsScreenReaderEnabled.d.ts +2 -0
  476. package/lib/typescript/useIsScreenReaderEnabled.d.ts.map +1 -0
  477. package/lib/typescript/useIsomorphicLayoutEffect.d.ts +1 -1
  478. package/lib/typescript/useIsomorphicLayoutEffect.d.ts.map +1 -1
  479. package/lib/typescript/v3/NativeProxy.d.ts +3 -3
  480. package/lib/typescript/v3/NativeProxy.d.ts.map +1 -1
  481. package/lib/typescript/v3/NativeProxy.web.d.ts +3 -3
  482. package/lib/typescript/v3/NativeProxy.web.d.ts.map +1 -1
  483. package/lib/typescript/v3/components/GestureButtons.d.ts +20 -11
  484. package/lib/typescript/v3/components/GestureButtons.d.ts.map +1 -1
  485. package/lib/typescript/v3/components/GestureButtonsProps.d.ts +25 -85
  486. package/lib/typescript/v3/components/GestureButtonsProps.d.ts.map +1 -1
  487. package/lib/typescript/v3/components/GestureComponents.d.ts +24 -38
  488. package/lib/typescript/v3/components/GestureComponents.d.ts.map +1 -1
  489. package/lib/typescript/v3/components/GestureComponents.web.d.ts +22 -34
  490. package/lib/typescript/v3/components/GestureComponents.web.d.ts.map +1 -1
  491. package/lib/typescript/v3/components/Pressable.d.ts +1 -1
  492. package/lib/typescript/v3/components/Pressable.d.ts.map +1 -1
  493. package/lib/typescript/v3/components/Touchable/Touchable.d.ts +4 -0
  494. package/lib/typescript/v3/components/Touchable/Touchable.d.ts.map +1 -0
  495. package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts +31 -0
  496. package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts.map +1 -0
  497. package/lib/typescript/v3/components/index.d.ts +5 -3
  498. package/lib/typescript/v3/components/index.d.ts.map +1 -1
  499. package/lib/typescript/v3/createNativeWrapper.d.ts +3 -7
  500. package/lib/typescript/v3/createNativeWrapper.d.ts.map +1 -1
  501. package/lib/typescript/v3/detectors/GestureDetector.d.ts +3 -3
  502. package/lib/typescript/v3/detectors/GestureDetector.d.ts.map +1 -1
  503. package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts +10 -6
  504. package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts.map +1 -1
  505. package/lib/typescript/v3/detectors/NativeDetector.d.ts +2 -2
  506. package/lib/typescript/v3/detectors/NativeDetector.d.ts.map +1 -1
  507. package/lib/typescript/v3/detectors/ReanimatedNativeDetector.d.ts.map +1 -1
  508. package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts +2 -2
  509. package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts.map +1 -1
  510. package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts +2 -2
  511. package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts.map +1 -1
  512. package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts +1 -1
  513. package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts.map +1 -1
  514. package/lib/typescript/v3/detectors/common.d.ts +14 -15
  515. package/lib/typescript/v3/detectors/common.d.ts.map +1 -1
  516. package/lib/typescript/v3/detectors/index.d.ts +1 -1
  517. package/lib/typescript/v3/detectors/index.d.ts.map +1 -1
  518. package/lib/typescript/v3/detectors/useEnsureGestureHandlerRootView.d.ts.map +1 -1
  519. package/lib/typescript/v3/detectors/utils.d.ts +2 -2
  520. package/lib/typescript/v3/detectors/utils.d.ts.map +1 -1
  521. package/lib/typescript/v3/gestureStateManager.d.ts +0 -1
  522. package/lib/typescript/v3/gestureStateManager.d.ts.map +1 -1
  523. package/lib/typescript/v3/gestureStateManager.web.d.ts +1 -1
  524. package/lib/typescript/v3/gestureStateManager.web.d.ts.map +1 -1
  525. package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts +6 -6
  526. package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts.map +1 -1
  527. package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts +2 -2
  528. package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts.map +1 -1
  529. package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts +3 -3
  530. package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts.map +1 -1
  531. package/lib/typescript/v3/hooks/composition/index.d.ts +2 -2
  532. package/lib/typescript/v3/hooks/composition/index.d.ts.map +1 -1
  533. package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts +1 -1
  534. package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts.map +1 -1
  535. package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts +1 -1
  536. package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts.map +1 -1
  537. package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts +1 -1
  538. package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts.map +1 -1
  539. package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts +1 -1
  540. package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts.map +1 -1
  541. package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts +36 -0
  542. package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts.map +1 -0
  543. package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts +1 -14
  544. package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts.map +1 -1
  545. package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts +38 -0
  546. package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts.map +1 -0
  547. package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts +1 -19
  548. package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts.map +1 -1
  549. package/lib/typescript/v3/hooks/gestures/index.d.ts +19 -28
  550. package/lib/typescript/v3/hooks/gestures/index.d.ts.map +1 -1
  551. package/lib/typescript/v3/hooks/gestures/longPress/{LongPressProperties.d.ts → LongPressTypes.d.ts} +16 -1
  552. package/lib/typescript/v3/hooks/gestures/longPress/LongPressTypes.d.ts.map +1 -0
  553. package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts +1 -14
  554. package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts.map +1 -1
  555. package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts +10 -0
  556. package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts.map +1 -0
  557. package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts +1 -9
  558. package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts.map +1 -1
  559. package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts +26 -0
  560. package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts.map +1 -0
  561. package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts +2 -12
  562. package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts.map +1 -1
  563. package/lib/typescript/v3/hooks/gestures/pan/{PanProperties.d.ts → PanTypes.d.ts} +25 -1
  564. package/lib/typescript/v3/hooks/gestures/pan/PanTypes.d.ts.map +1 -0
  565. package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts +1 -21
  566. package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts.map +1 -1
  567. package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts +17 -0
  568. package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts.map +1 -0
  569. package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts +1 -15
  570. package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts.map +1 -1
  571. package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts +17 -0
  572. package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts.map +1 -0
  573. package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts +1 -15
  574. package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts.map +1 -1
  575. package/lib/typescript/v3/hooks/gestures/tap/{TapProperties.d.ts → TapTypes.d.ts} +14 -1
  576. package/lib/typescript/v3/hooks/gestures/tap/TapTypes.d.ts.map +1 -0
  577. package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts +1 -14
  578. package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts.map +1 -1
  579. package/lib/typescript/v3/hooks/useGesture.d.ts +2 -2
  580. package/lib/typescript/v3/hooks/useGesture.d.ts.map +1 -1
  581. package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts +4 -4
  582. package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts.map +1 -1
  583. package/lib/typescript/v3/hooks/utils/configUtils.d.ts +4 -4
  584. package/lib/typescript/v3/hooks/utils/configUtils.d.ts.map +1 -1
  585. package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts +4 -4
  586. package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts.map +1 -1
  587. package/lib/typescript/v3/hooks/utils/eventUtils.d.ts +8 -6
  588. package/lib/typescript/v3/hooks/utils/eventUtils.d.ts.map +1 -1
  589. package/lib/typescript/v3/hooks/utils/index.d.ts +5 -5
  590. package/lib/typescript/v3/hooks/utils/index.d.ts.map +1 -1
  591. package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts +6 -5
  592. package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts.map +1 -1
  593. package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts +4 -4
  594. package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts.map +1 -1
  595. package/lib/typescript/v3/hooks/utils/relationUtils.d.ts +2 -2
  596. package/lib/typescript/v3/hooks/utils/relationUtils.d.ts.map +1 -1
  597. package/lib/typescript/v3/index.d.ts +6 -7
  598. package/lib/typescript/v3/index.d.ts.map +1 -1
  599. package/lib/typescript/v3/types/ConfigTypes.d.ts +35 -34
  600. package/lib/typescript/v3/types/ConfigTypes.d.ts.map +1 -1
  601. package/lib/typescript/v3/types/DetectorTypes.d.ts +10 -6
  602. package/lib/typescript/v3/types/DetectorTypes.d.ts.map +1 -1
  603. package/lib/typescript/v3/types/EventTypes.d.ts +11 -8
  604. package/lib/typescript/v3/types/EventTypes.d.ts.map +1 -1
  605. package/lib/typescript/v3/types/GestureTypes.d.ts +16 -16
  606. package/lib/typescript/v3/types/GestureTypes.d.ts.map +1 -1
  607. package/lib/typescript/v3/types/NativeWrapperType.d.ts +7 -4
  608. package/lib/typescript/v3/types/NativeWrapperType.d.ts.map +1 -1
  609. package/lib/typescript/v3/types/ReanimatedTypes.d.ts +1 -1
  610. package/lib/typescript/v3/types/ReanimatedTypes.d.ts.map +1 -1
  611. package/lib/typescript/v3/types/UtilityTypes.d.ts +7 -7
  612. package/lib/typescript/v3/types/UtilityTypes.d.ts.map +1 -1
  613. package/lib/typescript/v3/types/index.d.ts +6 -6
  614. package/lib/typescript/v3/types/index.d.ts.map +1 -1
  615. package/lib/typescript/web/Gestures.d.ts +6 -6
  616. package/lib/typescript/web/Gestures.d.ts.map +1 -1
  617. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +2 -2
  618. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts.map +1 -1
  619. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +2 -2
  620. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts.map +1 -1
  621. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +3 -3
  622. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts.map +1 -1
  623. package/lib/typescript/web/handlers/GestureHandler.d.ts +9 -8
  624. package/lib/typescript/web/handlers/GestureHandler.d.ts.map +1 -1
  625. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +3 -3
  626. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts.map +1 -1
  627. package/lib/typescript/web/handlers/IGestureHandler.d.ts +6 -6
  628. package/lib/typescript/web/handlers/IGestureHandler.d.ts.map +1 -1
  629. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +4 -4
  630. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts.map +1 -1
  631. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +3 -3
  632. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts.map +1 -1
  633. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +6 -6
  634. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts.map +1 -1
  635. package/lib/typescript/web/handlers/PanGestureHandler.d.ts +4 -4
  636. package/lib/typescript/web/handlers/PanGestureHandler.d.ts.map +1 -1
  637. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +4 -4
  638. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts.map +1 -1
  639. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +5 -6
  640. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts.map +1 -1
  641. package/lib/typescript/web/handlers/TapGestureHandler.d.ts +3 -3
  642. package/lib/typescript/web/handlers/TapGestureHandler.d.ts.map +1 -1
  643. package/lib/typescript/web/interfaces.d.ts +32 -32
  644. package/lib/typescript/web/interfaces.d.ts.map +1 -1
  645. package/lib/typescript/web/tools/EventManager.d.ts +1 -1
  646. package/lib/typescript/web/tools/EventManager.d.ts.map +1 -1
  647. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +4 -0
  648. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts.map +1 -1
  649. package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts.map +1 -1
  650. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +6 -1
  651. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts.map +1 -1
  652. package/lib/typescript/web/tools/InteractionManager.d.ts +2 -2
  653. package/lib/typescript/web/tools/InteractionManager.d.ts.map +1 -1
  654. package/lib/typescript/web/tools/KeyboardEventManager.d.ts +2 -1
  655. package/lib/typescript/web/tools/KeyboardEventManager.d.ts.map +1 -1
  656. package/lib/typescript/web/tools/NodeManager.d.ts +3 -3
  657. package/lib/typescript/web/tools/NodeManager.d.ts.map +1 -1
  658. package/lib/typescript/web/tools/PointerEventManager.d.ts +2 -1
  659. package/lib/typescript/web/tools/PointerEventManager.d.ts.map +1 -1
  660. package/lib/typescript/web/tools/PointerTracker.d.ts +1 -1
  661. package/lib/typescript/web/tools/PointerTracker.d.ts.map +1 -1
  662. package/lib/typescript/web/tools/Vector.d.ts +1 -1
  663. package/lib/typescript/web/tools/Vector.d.ts.map +1 -1
  664. package/lib/typescript/web/tools/VelocityTracker.d.ts +1 -1
  665. package/lib/typescript/web/tools/VelocityTracker.d.ts.map +1 -1
  666. package/lib/typescript/web/tools/WheelEventManager.d.ts +1 -1
  667. package/lib/typescript/web/tools/WheelEventManager.d.ts.map +1 -1
  668. package/lib/typescript/web/utils.d.ts +2 -1
  669. package/lib/typescript/web/utils.d.ts.map +1 -1
  670. package/package.json +11 -11
  671. package/react-native.config.js +0 -1
  672. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h +0 -1
  673. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerDetectorShadowNode.cpp +61 -30
  674. package/src/RNGestureHandlerModule.web.ts +2 -2
  675. package/src/RNGestureHandlerModule.windows.ts +8 -10
  676. package/src/components/GestureButtons.tsx +47 -36
  677. package/src/components/GestureButtonsProps.ts +22 -21
  678. package/src/components/GestureComponents.tsx +28 -35
  679. package/src/components/GestureComponents.web.tsx +9 -12
  680. package/src/components/GestureHandlerButton.tsx +150 -144
  681. package/src/components/GestureHandlerButton.web.tsx +151 -3
  682. package/src/components/GestureHandlerRootView.android.tsx +2 -1
  683. package/src/components/GestureHandlerRootView.tsx +5 -4
  684. package/src/components/GestureHandlerRootView.web.tsx +6 -4
  685. package/src/components/Pressable/Pressable.tsx +34 -27
  686. package/src/components/Pressable/PressableProps.tsx +9 -8
  687. package/src/components/Pressable/StateMachine.tsx +1 -1
  688. package/src/components/Pressable/index.ts +1 -1
  689. package/src/components/Pressable/stateDefinitions.ts +28 -5
  690. package/src/components/Pressable/utils.ts +16 -12
  691. package/src/components/ReanimatedDrawerLayout.tsx +415 -426
  692. package/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx +30 -30
  693. package/src/components/ReanimatedSwipeable/ReanimatedSwipeableProps.ts +10 -13
  694. package/src/components/ReanimatedSwipeable/index.ts +2 -2
  695. package/src/components/Text.tsx +51 -52
  696. package/src/components/touchables/ExtraButtonProps.ts +5 -5
  697. package/src/components/touchables/GenericTouchable.tsx +17 -20
  698. package/src/components/touchables/GenericTouchableProps.ts +4 -3
  699. package/src/components/touchables/TouchableHighlight.tsx +8 -8
  700. package/src/components/touchables/TouchableNativeFeedback.android.tsx +5 -3
  701. package/src/components/touchables/TouchableNativeFeedbackProps.tsx +2 -1
  702. package/src/components/touchables/TouchableOpacity.tsx +5 -9
  703. package/src/components/touchables/TouchableWithoutFeedback.tsx +17 -24
  704. package/src/components/touchables/index.ts +3 -3
  705. package/src/components/utils.ts +1 -1
  706. package/src/findNodeHandle.web.ts +12 -2
  707. package/src/handlers/FlingGestureHandler.ts +3 -5
  708. package/src/handlers/ForceTouchGestureHandler.ts +6 -6
  709. package/src/handlers/GestureHandlerEventPayload.ts +3 -3
  710. package/src/handlers/LongPressGestureHandler.ts +3 -5
  711. package/src/handlers/NativeViewGestureHandler.ts +5 -7
  712. package/src/handlers/PanGestureHandler.ts +3 -5
  713. package/src/handlers/PinchGestureHandler.ts +3 -5
  714. package/src/handlers/RotationGestureHandler.ts +3 -5
  715. package/src/handlers/TapGestureHandler.ts +3 -5
  716. package/src/handlers/createHandler.tsx +19 -22
  717. package/src/handlers/createNativeWrapper.tsx +12 -7
  718. package/src/handlers/gestureHandlerCommon.ts +31 -29
  719. package/src/handlers/gestureHandlerTypesCompat.ts +5 -5
  720. package/src/handlers/gestures/GestureDetector/Wrap.tsx +2 -1
  721. package/src/handlers/gestures/GestureDetector/Wrap.web.tsx +34 -30
  722. package/src/handlers/gestures/GestureDetector/attachHandlers.ts +14 -13
  723. package/src/handlers/gestures/GestureDetector/dropHandlers.ts +3 -3
  724. package/src/handlers/gestures/GestureDetector/index.tsx +11 -10
  725. package/src/handlers/gestures/GestureDetector/needsToReattach.ts +2 -2
  726. package/src/handlers/gestures/GestureDetector/types.ts +2 -2
  727. package/src/handlers/gestures/GestureDetector/updateHandlers.ts +7 -7
  728. package/src/handlers/gestures/GestureDetector/useAnimatedGesture.ts +11 -12
  729. package/src/handlers/gestures/GestureDetector/useDetectorUpdater.ts +9 -8
  730. package/src/handlers/gestures/GestureDetector/useMountReactions.ts +5 -4
  731. package/src/handlers/gestures/GestureDetector/useViewRefHandler.ts +5 -4
  732. package/src/handlers/gestures/GestureDetector/utils.ts +13 -13
  733. package/src/handlers/gestures/eventReceiver.ts +8 -8
  734. package/src/handlers/gestures/flingGesture.ts +3 -2
  735. package/src/handlers/gestures/forceTouchGesture.ts +4 -3
  736. package/src/handlers/gestures/gesture.ts +9 -9
  737. package/src/handlers/gestures/gestureComposition.ts +2 -1
  738. package/src/handlers/gestures/gestureObjects.ts +4 -4
  739. package/src/handlers/gestures/gestureStateManager.web.ts +1 -1
  740. package/src/handlers/gestures/hoverGesture.ts +3 -2
  741. package/src/handlers/gestures/longPressGesture.ts +3 -2
  742. package/src/handlers/gestures/manualGesture.ts +1 -1
  743. package/src/handlers/gestures/nativeGesture.ts +3 -2
  744. package/src/handlers/gestures/panGesture.ts +4 -3
  745. package/src/handlers/gestures/pinchGesture.ts +2 -2
  746. package/src/handlers/gestures/reanimatedWrapper.ts +7 -6
  747. package/src/handlers/gestures/rotationGesture.ts +2 -2
  748. package/src/handlers/gestures/tapGesture.ts +3 -2
  749. package/src/handlers/handlersRegistry.ts +13 -6
  750. package/src/handlers/utils.ts +6 -5
  751. package/src/index.ts +111 -117
  752. package/src/jestUtils/index.ts +1 -1
  753. package/src/jestUtils/jestUtils.ts +45 -50
  754. package/src/mocks/GestureButtons.tsx +9 -5
  755. package/src/mocks/Touchables.tsx +6 -0
  756. package/src/mocks/gestureComponents.tsx +7 -22
  757. package/src/mountRegistry.ts +1 -1
  758. package/src/specs/NativeRNGestureHandlerModule.ts +3 -2
  759. package/src/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
  760. package/src/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
  761. package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
  762. package/src/useIsScreenReaderEnabled.ts +31 -0
  763. package/src/v3/NativeProxy.ts +13 -5
  764. package/src/v3/NativeProxy.web.ts +13 -5
  765. package/src/v3/components/GestureButtons.tsx +52 -28
  766. package/src/v3/components/GestureButtonsProps.ts +38 -110
  767. package/src/v3/components/GestureComponents.tsx +29 -34
  768. package/src/v3/components/GestureComponents.web.tsx +7 -10
  769. package/src/v3/components/Pressable.tsx +33 -29
  770. package/src/v3/components/Touchable/Touchable.tsx +134 -0
  771. package/src/v3/components/Touchable/TouchableProps.ts +41 -0
  772. package/src/v3/components/index.ts +12 -13
  773. package/src/v3/createNativeWrapper.tsx +14 -16
  774. package/src/v3/detectors/GestureDetector.tsx +17 -9
  775. package/src/v3/detectors/HostGestureDetector.web.tsx +32 -22
  776. package/src/v3/detectors/NativeDetector.tsx +12 -10
  777. package/src/v3/detectors/ReanimatedNativeDetector.tsx +4 -5
  778. package/src/v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx +66 -34
  779. package/src/v3/detectors/VirtualDetector/VirtualDetector.tsx +29 -13
  780. package/src/v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts +2 -1
  781. package/src/v3/detectors/common.ts +40 -20
  782. package/src/v3/detectors/index.ts +1 -1
  783. package/src/v3/detectors/useEnsureGestureHandlerRootView.ts +1 -0
  784. package/src/v3/detectors/utils.ts +4 -3
  785. package/src/v3/gestureStateManager.ts +0 -6
  786. package/src/v3/gestureStateManager.web.ts +2 -17
  787. package/src/v3/hooks/callbacks/eventHandler.ts +87 -47
  788. package/src/v3/hooks/callbacks/useGestureEventHandler.ts +21 -9
  789. package/src/v3/hooks/callbacks/useReanimatedEventHandler.ts +19 -11
  790. package/src/v3/hooks/composition/index.ts +2 -2
  791. package/src/v3/hooks/composition/useCompetingGestures.ts +2 -1
  792. package/src/v3/hooks/composition/useComposedGesture.ts +6 -6
  793. package/src/v3/hooks/composition/useExclusiveGestures.ts +2 -1
  794. package/src/v3/hooks/composition/useSimultaneousGestures.ts +2 -1
  795. package/src/v3/hooks/gestures/fling/FlingTypes.ts +60 -0
  796. package/src/v3/hooks/gestures/fling/useFlingGesture.ts +7 -34
  797. package/src/v3/hooks/gestures/hover/HoverTypes.ts +76 -0
  798. package/src/v3/hooks/gestures/hover/useHoverGesture.ts +24 -55
  799. package/src/v3/hooks/gestures/index.ts +111 -32
  800. package/src/v3/hooks/gestures/longPress/{LongPressProperties.ts → LongPressTypes.ts} +39 -0
  801. package/src/v3/hooks/gestures/longPress/useLongPressGesture.ts +10 -43
  802. package/src/v3/hooks/gestures/manual/ManualTypes.ts +28 -0
  803. package/src/v3/hooks/gestures/manual/useManualGesture.ts +7 -28
  804. package/src/v3/hooks/gestures/native/NativeTypes.ts +50 -0
  805. package/src/v3/hooks/gestures/native/useNativeGesture.ts +11 -38
  806. package/src/v3/hooks/gestures/pan/{PanProperties.ts → PanTypes.ts} +55 -0
  807. package/src/v3/hooks/gestures/pan/usePanGesture.ts +29 -54
  808. package/src/v3/hooks/gestures/pinch/PinchTypes.ts +40 -0
  809. package/src/v3/hooks/gestures/pinch/usePinchGesture.ts +21 -40
  810. package/src/v3/hooks/gestures/rotation/RotationTypes.ts +41 -0
  811. package/src/v3/hooks/gestures/rotation/useRotationGesture.ts +21 -38
  812. package/src/v3/hooks/gestures/tap/{TapProperties.ts → TapTypes.ts} +32 -0
  813. package/src/v3/hooks/gestures/tap/useTapGesture.ts +9 -35
  814. package/src/v3/hooks/useGesture.ts +26 -14
  815. package/src/v3/hooks/useGestureCallbacks.ts +14 -9
  816. package/src/v3/hooks/utils/configUtils.ts +46 -18
  817. package/src/v3/hooks/utils/eventHandlersUtils.ts +23 -20
  818. package/src/v3/hooks/utils/eventUtils.ts +63 -21
  819. package/src/v3/hooks/utils/index.ts +15 -20
  820. package/src/v3/hooks/utils/propsWhiteList.ts +23 -12
  821. package/src/v3/hooks/utils/reanimatedUtils.ts +22 -10
  822. package/src/v3/hooks/utils/relationUtils.ts +3 -3
  823. package/src/v3/index.ts +51 -46
  824. package/src/v3/types/ConfigTypes.ts +47 -36
  825. package/src/v3/types/DetectorTypes.ts +29 -7
  826. package/src/v3/types/EventTypes.ts +27 -16
  827. package/src/v3/types/GestureTypes.ts +49 -22
  828. package/src/v3/types/NativeWrapperType.ts +21 -6
  829. package/src/v3/types/ReanimatedTypes.ts +1 -1
  830. package/src/v3/types/UtilityTypes.ts +7 -7
  831. package/src/v3/types/index.ts +32 -36
  832. package/src/web/Gestures.ts +6 -6
  833. package/src/web/detectors/RotationGestureDetector.ts +8 -9
  834. package/src/web/detectors/ScaleGestureDetector.ts +4 -4
  835. package/src/web/handlers/FlingGestureHandler.ts +6 -7
  836. package/src/web/handlers/GestureHandler.ts +66 -119
  837. package/src/web/handlers/HoverGestureHandler.ts +5 -5
  838. package/src/web/handlers/IGestureHandler.ts +6 -6
  839. package/src/web/handlers/LongPressGestureHandler.ts +4 -5
  840. package/src/web/handlers/ManualGestureHandler.ts +3 -3
  841. package/src/web/handlers/NativeViewGestureHandler.ts +8 -8
  842. package/src/web/handlers/PanGestureHandler.ts +7 -7
  843. package/src/web/handlers/PinchGestureHandler.ts +17 -15
  844. package/src/web/handlers/RotationGestureHandler.ts +29 -42
  845. package/src/web/handlers/TapGestureHandler.ts +4 -4
  846. package/src/web/interfaces.ts +35 -35
  847. package/src/web/tools/EventManager.ts +1 -1
  848. package/src/web/tools/GestureHandlerDelegate.ts +4 -0
  849. package/src/web/tools/GestureHandlerOrchestrator.ts +0 -1
  850. package/src/web/tools/GestureHandlerWebDelegate.ts +82 -23
  851. package/src/web/tools/InteractionManager.ts +3 -2
  852. package/src/web/tools/KeyboardEventManager.ts +3 -2
  853. package/src/web/tools/NodeManager.ts +2 -2
  854. package/src/web/tools/PointerEventManager.ts +18 -9
  855. package/src/web/tools/PointerTracker.ts +1 -1
  856. package/src/web/tools/Vector.ts +1 -1
  857. package/src/web/tools/VelocityTracker.ts +1 -1
  858. package/src/web/tools/WheelEventManager.ts +3 -2
  859. package/src/web/utils.ts +28 -2
  860. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonWrapperViewManager.kt +0 -30
  861. package/apple/RNGestureHandlerButtonManager.h +0 -5
  862. package/apple/RNGestureHandlerButtonManager.mm +0 -60
  863. package/apple/RNGestureHandlerButtonWrapper.h +0 -19
  864. package/apple/RNGestureHandlerButtonWrapper.mm +0 -46
  865. package/lib/commonjs/ActionType.js +0 -22
  866. package/lib/commonjs/ActionType.js.map +0 -1
  867. package/lib/commonjs/Directions.js +0 -38
  868. package/lib/commonjs/Directions.js.map +0 -1
  869. package/lib/commonjs/GestureHandlerRootViewContext.js +0 -10
  870. package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
  871. package/lib/commonjs/PlatformConstants.js +0 -9
  872. package/lib/commonjs/PlatformConstants.js.map +0 -1
  873. package/lib/commonjs/PlatformConstants.web.js +0 -12
  874. package/lib/commonjs/PlatformConstants.web.js.map +0 -1
  875. package/lib/commonjs/PointerType.js +0 -15
  876. package/lib/commonjs/PointerType.js.map +0 -1
  877. package/lib/commonjs/RNGestureHandlerModule.js +0 -12
  878. package/lib/commonjs/RNGestureHandlerModule.js.map +0 -1
  879. package/lib/commonjs/RNGestureHandlerModule.web.js +0 -73
  880. package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
  881. package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -53
  882. package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
  883. package/lib/commonjs/RNRenderer.js +0 -14
  884. package/lib/commonjs/RNRenderer.js.map +0 -1
  885. package/lib/commonjs/RNRenderer.web.js +0 -10
  886. package/lib/commonjs/RNRenderer.web.js.map +0 -1
  887. package/lib/commonjs/State.js +0 -19
  888. package/lib/commonjs/State.js.map +0 -1
  889. package/lib/commonjs/TouchEventType.js +0 -16
  890. package/lib/commonjs/TouchEventType.js.map +0 -1
  891. package/lib/commonjs/components/GestureButtons.js +0 -220
  892. package/lib/commonjs/components/GestureButtons.js.map +0 -1
  893. package/lib/commonjs/components/GestureButtonsProps.js +0 -6
  894. package/lib/commonjs/components/GestureButtonsProps.js.map +0 -1
  895. package/lib/commonjs/components/GestureComponents.js +0 -127
  896. package/lib/commonjs/components/GestureComponents.js.map +0 -1
  897. package/lib/commonjs/components/GestureComponents.web.js +0 -61
  898. package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
  899. package/lib/commonjs/components/GestureHandlerButton.js +0 -144
  900. package/lib/commonjs/components/GestureHandlerButton.js.map +0 -1
  901. package/lib/commonjs/components/GestureHandlerButton.web.js +0 -16
  902. package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
  903. package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -32
  904. package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
  905. package/lib/commonjs/components/GestureHandlerRootView.js +0 -30
  906. package/lib/commonjs/components/GestureHandlerRootView.js.map +0 -1
  907. package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -30
  908. package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
  909. package/lib/commonjs/components/Pressable/Pressable.js +0 -270
  910. package/lib/commonjs/components/Pressable/Pressable.js.map +0 -1
  911. package/lib/commonjs/components/Pressable/PressableProps.js +0 -6
  912. package/lib/commonjs/components/Pressable/PressableProps.js.map +0 -1
  913. package/lib/commonjs/components/Pressable/StateMachine.js +0 -44
  914. package/lib/commonjs/components/Pressable/StateMachine.js.map +0 -1
  915. package/lib/commonjs/components/Pressable/index.js +0 -14
  916. package/lib/commonjs/components/Pressable/index.js.map +0 -1
  917. package/lib/commonjs/components/Pressable/stateDefinitions.js +0 -88
  918. package/lib/commonjs/components/Pressable/stateDefinitions.js.map +0 -1
  919. package/lib/commonjs/components/Pressable/utils.js +0 -92
  920. package/lib/commonjs/components/Pressable/utils.js.map +0 -1
  921. package/lib/commonjs/components/ReanimatedDrawerLayout.js +0 -377
  922. package/lib/commonjs/components/ReanimatedDrawerLayout.js.map +0 -1
  923. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js +0 -347
  924. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +0 -1
  925. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js +0 -12
  926. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +0 -1
  927. package/lib/commonjs/components/ReanimatedSwipeable/index.js +0 -21
  928. package/lib/commonjs/components/ReanimatedSwipeable/index.js.map +0 -1
  929. package/lib/commonjs/components/Text.js +0 -60
  930. package/lib/commonjs/components/Text.js.map +0 -1
  931. package/lib/commonjs/components/touchables/ExtraButtonProps.js +0 -2
  932. package/lib/commonjs/components/touchables/ExtraButtonProps.js.map +0 -1
  933. package/lib/commonjs/components/touchables/GenericTouchable.js +0 -245
  934. package/lib/commonjs/components/touchables/GenericTouchable.js.map +0 -1
  935. package/lib/commonjs/components/touchables/GenericTouchableProps.js +0 -6
  936. package/lib/commonjs/components/touchables/GenericTouchableProps.js.map +0 -1
  937. package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -93
  938. package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
  939. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -84
  940. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  941. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -13
  942. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
  943. package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js +0 -6
  944. package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js.map +0 -1
  945. package/lib/commonjs/components/touchables/TouchableOpacity.js +0 -65
  946. package/lib/commonjs/components/touchables/TouchableOpacity.js.map +0 -1
  947. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +0 -33
  948. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +0 -1
  949. package/lib/commonjs/components/touchables/index.js +0 -35
  950. package/lib/commonjs/components/touchables/index.js.map +0 -1
  951. package/lib/commonjs/components/utils.js +0 -17
  952. package/lib/commonjs/components/utils.js.map +0 -1
  953. package/lib/commonjs/findNodeHandle.js +0 -9
  954. package/lib/commonjs/findNodeHandle.js.map +0 -1
  955. package/lib/commonjs/findNodeHandle.web.js +0 -39
  956. package/lib/commonjs/findNodeHandle.web.js.map +0 -1
  957. package/lib/commonjs/getShadowNodeFromRef.js +0 -51
  958. package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
  959. package/lib/commonjs/getShadowNodeFromRef.web.js +0 -14
  960. package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
  961. package/lib/commonjs/ghQueueMicrotask.js +0 -10
  962. package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
  963. package/lib/commonjs/global.d.js +0 -6
  964. package/lib/commonjs/global.d.js.map +0 -1
  965. package/lib/commonjs/globals.js +0 -6
  966. package/lib/commonjs/globals.js.map +0 -1
  967. package/lib/commonjs/handlers/FlingGestureHandler.js +0 -31
  968. package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
  969. package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -46
  970. package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
  971. package/lib/commonjs/handlers/GestureHandlerEventPayload.js +0 -6
  972. package/lib/commonjs/handlers/GestureHandlerEventPayload.js.map +0 -1
  973. package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -33
  974. package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
  975. package/lib/commonjs/handlers/NativeViewGestureHandler.js +0 -32
  976. package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +0 -1
  977. package/lib/commonjs/handlers/PanGestureHandler.js +0 -112
  978. package/lib/commonjs/handlers/PanGestureHandler.js.map +0 -1
  979. package/lib/commonjs/handlers/PinchGestureHandler.js +0 -29
  980. package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
  981. package/lib/commonjs/handlers/PressabilityDebugView.js +0 -13
  982. package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
  983. package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -11
  984. package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
  985. package/lib/commonjs/handlers/RotationGestureHandler.js +0 -29
  986. package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
  987. package/lib/commonjs/handlers/TapGestureHandler.js +0 -33
  988. package/lib/commonjs/handlers/TapGestureHandler.js.map +0 -1
  989. package/lib/commonjs/handlers/createHandler.js +0 -334
  990. package/lib/commonjs/handlers/createHandler.js.map +0 -1
  991. package/lib/commonjs/handlers/createNativeWrapper.js +0 -78
  992. package/lib/commonjs/handlers/createNativeWrapper.js.map +0 -1
  993. package/lib/commonjs/handlers/customDirectEventTypes.js +0 -13
  994. package/lib/commonjs/handlers/customDirectEventTypes.js.map +0 -1
  995. package/lib/commonjs/handlers/customDirectEventTypes.web.js +0 -10
  996. package/lib/commonjs/handlers/customDirectEventTypes.web.js.map +0 -1
  997. package/lib/commonjs/handlers/gestureHandlerCommon.js +0 -27
  998. package/lib/commonjs/handlers/gestureHandlerCommon.js.map +0 -1
  999. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
  1000. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
  1001. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js +0 -32
  1002. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js.map +0 -1
  1003. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js +0 -41
  1004. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js.map +0 -1
  1005. package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js +0 -68
  1006. package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js.map +0 -1
  1007. package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js +0 -20
  1008. package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js.map +0 -1
  1009. package/lib/commonjs/handlers/gestures/GestureDetector/index.js +0 -122
  1010. package/lib/commonjs/handlers/gestures/GestureDetector/index.js.map +0 -1
  1011. package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js +0 -22
  1012. package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js.map +0 -1
  1013. package/lib/commonjs/handlers/gestures/GestureDetector/types.js +0 -6
  1014. package/lib/commonjs/handlers/gestures/GestureDetector/types.js.map +0 -1
  1015. package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js +0 -67
  1016. package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js.map +0 -1
  1017. package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js +0 -143
  1018. package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +0 -1
  1019. package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js +0 -47
  1020. package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +0 -1
  1021. package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js +0 -41
  1022. package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js.map +0 -1
  1023. package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js +0 -41
  1024. package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js.map +0 -1
  1025. package/lib/commonjs/handlers/gestures/GestureDetector/utils.js +0 -145
  1026. package/lib/commonjs/handlers/gestures/GestureDetector/utils.js.map +0 -1
  1027. package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -106
  1028. package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
  1029. package/lib/commonjs/handlers/gestures/flingGesture.js +0 -37
  1030. package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
  1031. package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -80
  1032. package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
  1033. package/lib/commonjs/handlers/gestures/gesture.js +0 -344
  1034. package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
  1035. package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -90
  1036. package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
  1037. package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -132
  1038. package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
  1039. package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -50
  1040. package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
  1041. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -36
  1042. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
  1043. package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -57
  1044. package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
  1045. package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -46
  1046. package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
  1047. package/lib/commonjs/handlers/gestures/manualGesture.js +0 -25
  1048. package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
  1049. package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
  1050. package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
  1051. package/lib/commonjs/handlers/gestures/panGesture.js +0 -197
  1052. package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
  1053. package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -38
  1054. package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
  1055. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -32
  1056. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
  1057. package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -38
  1058. package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
  1059. package/lib/commonjs/handlers/gestures/tapGesture.js +0 -87
  1060. package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
  1061. package/lib/commonjs/handlers/getNextHandlerTag.js +0 -11
  1062. package/lib/commonjs/handlers/getNextHandlerTag.js.map +0 -1
  1063. package/lib/commonjs/handlers/handlersRegistry.js +0 -74
  1064. package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
  1065. package/lib/commonjs/handlers/utils.js +0 -79
  1066. package/lib/commonjs/handlers/utils.js.map +0 -1
  1067. package/lib/commonjs/index.js +0 -277
  1068. package/lib/commonjs/index.js.map +0 -1
  1069. package/lib/commonjs/init.js +0 -11
  1070. package/lib/commonjs/init.js.map +0 -1
  1071. package/lib/commonjs/jestUtils/index.js +0 -19
  1072. package/lib/commonjs/jestUtils/index.js.map +0 -1
  1073. package/lib/commonjs/jestUtils/jestUtils.js +0 -350
  1074. package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
  1075. package/lib/commonjs/mocks/GestureButtons.js +0 -23
  1076. package/lib/commonjs/mocks/GestureButtons.js.map +0 -1
  1077. package/lib/commonjs/mocks/Pressable.js +0 -13
  1078. package/lib/commonjs/mocks/Pressable.js.map +0 -1
  1079. package/lib/commonjs/mocks/gestureComponents.js +0 -19
  1080. package/lib/commonjs/mocks/gestureComponents.js.map +0 -1
  1081. package/lib/commonjs/mocks/hostDetector.js +0 -10
  1082. package/lib/commonjs/mocks/hostDetector.js.map +0 -1
  1083. package/lib/commonjs/mocks/module.js +0 -30
  1084. package/lib/commonjs/mocks/module.js.map +0 -1
  1085. package/lib/commonjs/mountRegistry.js +0 -37
  1086. package/lib/commonjs/mountRegistry.js.map +0 -1
  1087. package/lib/commonjs/package.json +0 -1
  1088. package/lib/commonjs/specs/NativeRNGestureHandlerModule.js +0 -9
  1089. package/lib/commonjs/specs/NativeRNGestureHandlerModule.js.map +0 -1
  1090. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.ts +0 -27
  1091. package/lib/commonjs/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1092. package/lib/commonjs/specs/RNGestureHandlerDetectorNativeComponent.ts +0 -74
  1093. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -15
  1094. package/lib/commonjs/typeUtils.js +0 -2
  1095. package/lib/commonjs/typeUtils.js.map +0 -1
  1096. package/lib/commonjs/useIsomorphicLayoutEffect.js +0 -20
  1097. package/lib/commonjs/useIsomorphicLayoutEffect.js.map +0 -1
  1098. package/lib/commonjs/utils.js +0 -83
  1099. package/lib/commonjs/utils.js.map +0 -1
  1100. package/lib/commonjs/v3/NativeProxy.js +0 -48
  1101. package/lib/commonjs/v3/NativeProxy.js.map +0 -1
  1102. package/lib/commonjs/v3/NativeProxy.web.js +0 -29
  1103. package/lib/commonjs/v3/NativeProxy.web.js.map +0 -1
  1104. package/lib/commonjs/v3/components/GestureButtons.js +0 -153
  1105. package/lib/commonjs/v3/components/GestureButtons.js.map +0 -1
  1106. package/lib/commonjs/v3/components/GestureButtonsProps.js +0 -6
  1107. package/lib/commonjs/v3/components/GestureButtonsProps.js.map +0 -1
  1108. package/lib/commonjs/v3/components/GestureComponents.js +0 -124
  1109. package/lib/commonjs/v3/components/GestureComponents.js.map +0 -1
  1110. package/lib/commonjs/v3/components/GestureComponents.web.js +0 -39
  1111. package/lib/commonjs/v3/components/GestureComponents.web.js.map +0 -1
  1112. package/lib/commonjs/v3/components/Pressable.js +0 -283
  1113. package/lib/commonjs/v3/components/Pressable.js.map +0 -1
  1114. package/lib/commonjs/v3/components/index.js +0 -76
  1115. package/lib/commonjs/v3/components/index.js.map +0 -1
  1116. package/lib/commonjs/v3/createNativeWrapper.js +0 -70
  1117. package/lib/commonjs/v3/createNativeWrapper.js.map +0 -1
  1118. package/lib/commonjs/v3/detectors/GestureDetector.js +0 -24
  1119. package/lib/commonjs/v3/detectors/GestureDetector.js.map +0 -1
  1120. package/lib/commonjs/v3/detectors/HostGestureDetector.js +0 -11
  1121. package/lib/commonjs/v3/detectors/HostGestureDetector.js.map +0 -1
  1122. package/lib/commonjs/v3/detectors/HostGestureDetector.web.js +0 -113
  1123. package/lib/commonjs/v3/detectors/HostGestureDetector.web.js.map +0 -1
  1124. package/lib/commonjs/v3/detectors/NativeDetector.js +0 -76
  1125. package/lib/commonjs/v3/detectors/NativeDetector.js.map +0 -1
  1126. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js +0 -74
  1127. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js.map +0 -1
  1128. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js +0 -11
  1129. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js.map +0 -1
  1130. package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +0 -167
  1131. package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +0 -1
  1132. package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js +0 -74
  1133. package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js.map +0 -1
  1134. package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js +0 -19
  1135. package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +0 -1
  1136. package/lib/commonjs/v3/detectors/common.js +0 -22
  1137. package/lib/commonjs/v3/detectors/common.js.map +0 -1
  1138. package/lib/commonjs/v3/detectors/index.js +0 -34
  1139. package/lib/commonjs/v3/detectors/index.js.map +0 -1
  1140. package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js +0 -17
  1141. package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js.map +0 -1
  1142. package/lib/commonjs/v3/detectors/utils.js +0 -130
  1143. package/lib/commonjs/v3/detectors/utils.js.map +0 -1
  1144. package/lib/commonjs/v3/gestureStateManager.js +0 -42
  1145. package/lib/commonjs/v3/gestureStateManager.js.map +0 -1
  1146. package/lib/commonjs/v3/gestureStateManager.web.js +0 -54
  1147. package/lib/commonjs/v3/gestureStateManager.web.js.map +0 -1
  1148. package/lib/commonjs/v3/hooks/callbacks/eventHandler.js +0 -80
  1149. package/lib/commonjs/v3/hooks/callbacks/eventHandler.js.map +0 -1
  1150. package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js +0 -50
  1151. package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
  1152. package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js +0 -22
  1153. package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
  1154. package/lib/commonjs/v3/hooks/callbacks/updateHandler.js +0 -30
  1155. package/lib/commonjs/v3/hooks/callbacks/updateHandler.js.map +0 -1
  1156. package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js +0 -21
  1157. package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js.map +0 -1
  1158. package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js +0 -39
  1159. package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js.map +0 -1
  1160. package/lib/commonjs/v3/hooks/composition/index.js +0 -27
  1161. package/lib/commonjs/v3/hooks/composition/index.js.map +0 -1
  1162. package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js +0 -12
  1163. package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js.map +0 -1
  1164. package/lib/commonjs/v3/hooks/composition/useComposedGesture.js +0 -52
  1165. package/lib/commonjs/v3/hooks/composition/useComposedGesture.js.map +0 -1
  1166. package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js +0 -14
  1167. package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js.map +0 -1
  1168. package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js +0 -13
  1169. package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js.map +0 -1
  1170. package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js +0 -8
  1171. package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
  1172. package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js +0 -14
  1173. package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js.map +0 -1
  1174. package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js +0 -8
  1175. package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js.map +0 -1
  1176. package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js +0 -27
  1177. package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js.map +0 -1
  1178. package/lib/commonjs/v3/hooks/gestures/index.js +0 -69
  1179. package/lib/commonjs/v3/hooks/gestures/index.js.map +0 -1
  1180. package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js +0 -8
  1181. package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
  1182. package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js +0 -21
  1183. package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js.map +0 -1
  1184. package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js +0 -2
  1185. package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
  1186. package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js +0 -14
  1187. package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js.map +0 -1
  1188. package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js +0 -8
  1189. package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
  1190. package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js +0 -14
  1191. package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js.map +0 -1
  1192. package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js +0 -8
  1193. package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
  1194. package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js +0 -79
  1195. package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js.map +0 -1
  1196. package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
  1197. package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
  1198. package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js +0 -27
  1199. package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js.map +0 -1
  1200. package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
  1201. package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
  1202. package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js +0 -26
  1203. package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js.map +0 -1
  1204. package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js +0 -8
  1205. package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
  1206. package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js +0 -15
  1207. package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js.map +0 -1
  1208. package/lib/commonjs/v3/hooks/index.js +0 -28
  1209. package/lib/commonjs/v3/hooks/index.js.map +0 -1
  1210. package/lib/commonjs/v3/hooks/useGesture.js +0 -84
  1211. package/lib/commonjs/v3/hooks/useGesture.js.map +0 -1
  1212. package/lib/commonjs/v3/hooks/useGestureCallbacks.js +0 -53
  1213. package/lib/commonjs/v3/hooks/useGestureCallbacks.js.map +0 -1
  1214. package/lib/commonjs/v3/hooks/utils/configUtils.js +0 -73
  1215. package/lib/commonjs/v3/hooks/utils/configUtils.js.map +0 -1
  1216. package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js +0 -96
  1217. package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js.map +0 -1
  1218. package/lib/commonjs/v3/hooks/utils/eventUtils.js +0 -73
  1219. package/lib/commonjs/v3/hooks/utils/eventUtils.js.map +0 -1
  1220. package/lib/commonjs/v3/hooks/utils/index.js +0 -168
  1221. package/lib/commonjs/v3/hooks/utils/index.js.map +0 -1
  1222. package/lib/commonjs/v3/hooks/utils/propsWhiteList.js +0 -31
  1223. package/lib/commonjs/v3/hooks/utils/propsWhiteList.js.map +0 -1
  1224. package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js +0 -85
  1225. package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js.map +0 -1
  1226. package/lib/commonjs/v3/hooks/utils/relationUtils.js +0 -51
  1227. package/lib/commonjs/v3/hooks/utils/relationUtils.js.map +0 -1
  1228. package/lib/commonjs/v3/index.js +0 -180
  1229. package/lib/commonjs/v3/index.js.map +0 -1
  1230. package/lib/commonjs/v3/types/ConfigTypes.js +0 -6
  1231. package/lib/commonjs/v3/types/ConfigTypes.js.map +0 -1
  1232. package/lib/commonjs/v3/types/DetectorTypes.js +0 -6
  1233. package/lib/commonjs/v3/types/DetectorTypes.js.map +0 -1
  1234. package/lib/commonjs/v3/types/EventTypes.js +0 -6
  1235. package/lib/commonjs/v3/types/EventTypes.js.map +0 -1
  1236. package/lib/commonjs/v3/types/GestureTypes.js +0 -28
  1237. package/lib/commonjs/v3/types/GestureTypes.js.map +0 -1
  1238. package/lib/commonjs/v3/types/NativeWrapperType.js +0 -6
  1239. package/lib/commonjs/v3/types/NativeWrapperType.js.map +0 -1
  1240. package/lib/commonjs/v3/types/ReanimatedTypes.js +0 -2
  1241. package/lib/commonjs/v3/types/ReanimatedTypes.js.map +0 -1
  1242. package/lib/commonjs/v3/types/UtilityTypes.js +0 -6
  1243. package/lib/commonjs/v3/types/UtilityTypes.js.map +0 -1
  1244. package/lib/commonjs/v3/types/index.js +0 -19
  1245. package/lib/commonjs/v3/types/index.js.map +0 -1
  1246. package/lib/commonjs/web/Gestures.js +0 -30
  1247. package/lib/commonjs/web/Gestures.js.map +0 -1
  1248. package/lib/commonjs/web/constants.js +0 -9
  1249. package/lib/commonjs/web/constants.js.map +0 -1
  1250. package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -124
  1251. package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
  1252. package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -111
  1253. package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
  1254. package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -141
  1255. package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
  1256. package/lib/commonjs/web/handlers/GestureHandler.js +0 -857
  1257. package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
  1258. package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -50
  1259. package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
  1260. package/lib/commonjs/web/handlers/IGestureHandler.js +0 -2
  1261. package/lib/commonjs/web/handlers/IGestureHandler.js.map +0 -1
  1262. package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -144
  1263. package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
  1264. package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -42
  1265. package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
  1266. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -147
  1267. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
  1268. package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -386
  1269. package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
  1270. package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -126
  1271. package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
  1272. package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -133
  1273. package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
  1274. package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -213
  1275. package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
  1276. package/lib/commonjs/web/interfaces.js +0 -25
  1277. package/lib/commonjs/web/interfaces.js.map +0 -1
  1278. package/lib/commonjs/web/tools/CircularBuffer.js +0 -40
  1279. package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
  1280. package/lib/commonjs/web/tools/EventManager.js +0 -102
  1281. package/lib/commonjs/web/tools/EventManager.js.map +0 -1
  1282. package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -2
  1283. package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
  1284. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -269
  1285. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  1286. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -219
  1287. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  1288. package/lib/commonjs/web/tools/InteractionManager.js +0 -83
  1289. package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
  1290. package/lib/commonjs/web/tools/KeyboardEventManager.js +0 -108
  1291. package/lib/commonjs/web/tools/KeyboardEventManager.js.map +0 -1
  1292. package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -159
  1293. package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
  1294. package/lib/commonjs/web/tools/NodeManager.js +0 -45
  1295. package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
  1296. package/lib/commonjs/web/tools/PointerEventManager.js +0 -186
  1297. package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
  1298. package/lib/commonjs/web/tools/PointerTracker.js +0 -192
  1299. package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
  1300. package/lib/commonjs/web/tools/Vector.js +0 -37
  1301. package/lib/commonjs/web/tools/Vector.js.map +0 -1
  1302. package/lib/commonjs/web/tools/VelocityTracker.js +0 -85
  1303. package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
  1304. package/lib/commonjs/web/tools/WheelEventManager.js +0 -55
  1305. package/lib/commonjs/web/tools/WheelEventManager.js.map +0 -1
  1306. package/lib/commonjs/web/utils.js +0 -235
  1307. package/lib/commonjs/web/utils.js.map +0 -1
  1308. package/lib/module/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1309. package/lib/module/v3/hooks/callbacks/stateChangeHandler.js +0 -46
  1310. package/lib/module/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
  1311. package/lib/module/v3/hooks/callbacks/touchEventHandler.js +0 -18
  1312. package/lib/module/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
  1313. package/lib/module/v3/hooks/callbacks/updateHandler.js +0 -26
  1314. package/lib/module/v3/hooks/callbacks/updateHandler.js.map +0 -1
  1315. package/lib/module/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
  1316. package/lib/module/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
  1317. package/lib/module/v3/hooks/gestures/manual/ManualProperties.js +0 -2
  1318. package/lib/module/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
  1319. package/lib/module/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
  1320. package/lib/module/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
  1321. package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
  1322. package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
  1323. package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
  1324. package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
  1325. package/lib/module/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
  1326. package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts +0 -6
  1327. package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts.map +0 -1
  1328. package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts +0 -4
  1329. package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts.map +0 -1
  1330. package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts +0 -3
  1331. package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts.map +0 -1
  1332. package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts +0 -4
  1333. package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts.map +0 -1
  1334. package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts +0 -23
  1335. package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts.map +0 -1
  1336. package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts +0 -18
  1337. package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts.map +0 -1
  1338. package/lib/typescript/v3/hooks/gestures/longPress/LongPressProperties.d.ts.map +0 -1
  1339. package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts +0 -2
  1340. package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts.map +0 -1
  1341. package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts +0 -16
  1342. package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts.map +0 -1
  1343. package/lib/typescript/v3/hooks/gestures/pan/PanProperties.d.ts.map +0 -1
  1344. package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts +0 -2
  1345. package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts.map +0 -1
  1346. package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts +0 -2
  1347. package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts.map +0 -1
  1348. package/lib/typescript/v3/hooks/gestures/tap/TapProperties.d.ts.map +0 -1
  1349. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperComponentDescriptor.h +0 -32
  1350. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.cpp +0 -102
  1351. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.h +0 -56
  1352. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperState.h +0 -32
  1353. package/src/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1354. package/src/v3/hooks/callbacks/stateChangeHandler.ts +0 -70
  1355. package/src/v3/hooks/callbacks/touchEventHandler.ts +0 -32
  1356. package/src/v3/hooks/callbacks/updateHandler.ts +0 -53
  1357. package/src/v3/hooks/gestures/fling/FlingProperties.ts +0 -26
  1358. package/src/v3/hooks/gestures/hover/HoverProperties.ts +0 -22
  1359. package/src/v3/hooks/gestures/manual/ManualProperties.ts +0 -1
  1360. package/src/v3/hooks/gestures/native/NativeProperties.ts +0 -19
  1361. package/src/v3/hooks/gestures/pinch/PinchProperties.ts +0 -1
  1362. package/src/v3/hooks/gestures/rotation/RotationProperties.ts +0 -1
@@ -1 +1 @@
1
- {"version":3,"names":["useTapGesture","useFlingGesture","useLongPressGesture","usePinchGesture","useRotationGesture","useHoverGesture","useManualGesture","useNativeGesture","usePanGesture"],"sourceRoot":"../../../../../src","sources":["v3/hooks/gestures/index.ts"],"mappings":";;AAwBA,SAASA,aAAa,QAAQ,qBAAqB;AAInD,SAASC,eAAe,QAAQ,yBAAyB;AAIzD,SAASC,mBAAmB,QAAQ,iCAAiC;AAIrE,SAASC,eAAe,QAAQ,yBAAyB;AAIzD,SAASC,kBAAkB,QAAQ,+BAA+B;AAIlE,SAASC,eAAe,QAAQ,yBAAyB;AAIzD,SAASC,gBAAgB,QAAQ,2BAA2B;AAI5D,SAASC,gBAAgB,QAAQ,2BAA2B;AAI5D,SAASC,aAAa,QAAQ,qBAAqB","ignoreList":[]}
1
+ {"version":3,"names":["useTapGesture","useFlingGesture","useLongPressGesture","usePinchGesture","useRotationGesture","useHoverGesture","useManualGesture","useNativeGesture","usePanGesture"],"sourceRoot":"../../../../../src","sources":["v3/hooks/gestures/index.ts"],"mappings":";;AA6DA,SAASA,aAAa,QAAQ,qBAAqB;AAQnD,SAASC,eAAe,QAAQ,yBAAyB;AAQzD,SAASC,mBAAmB,QAAQ,iCAAiC;AAQrE,SAASC,eAAe,QAAQ,yBAAyB;AAQzD,SAASC,kBAAkB,QAAQ,+BAA+B;AAQlE,SAASC,eAAe,QAAQ,yBAAyB;AAQzD,SAASC,gBAAgB,QAAQ,2BAA2B;AAQ5D,SAASC,gBAAgB,QAAQ,2BAA2B;AAQ5D,SAASC,aAAa,QAAQ,qBAAqB;;AAanD;;AAkBA","ignoreList":[]}
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
 
3
3
  export const LongPressNativeProperties = new Set(['minDurationMs', 'maxDist', 'numberOfPointers']);
4
- //# sourceMappingURL=LongPressProperties.js.map
4
+ //# sourceMappingURL=LongPressTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["LongPressNativeProperties","Set"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/longPress/LongPressTypes.ts"],"mappings":";;AAsCA,OAAO,MAAMA,yBAAyB,GAAG,IAAIC,GAAG,CAE9C,CAAC,eAAe,EAAE,SAAS,EAAE,kBAAkB,CAAC,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","LongPressPropsMapping","Map","transformLongPressProps","config","shouldCancelWhenOutside","undefined","useLongPressGesture","longPressConfig","LongPress"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/longPress/useLongPressGesture.ts"],"mappings":";;AAAA,SAIEA,iBAAiB,QAGZ,gBAAgB;AACvB,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AAoCxD,MAAMC,qBAAqB,GAAG,IAAIC,GAAG,CAGnC,CACA,CAAC,aAAa,EAAE,eAAe,CAAC,EAChC,CAAC,aAAa,EAAE,SAAS,CAAC,CAC3B,CAAC;AAEF,SAASC,uBAAuBA,CAC9BC,MAA+D,EAC/D;EACA,IAAIA,MAAM,CAACC,uBAAuB,KAAKC,SAAS,EAAE;IAChDF,MAAM,CAACC,uBAAuB,GAAG,IAAI;EACvC;EAEA,OAAOD,MAAM;AACf;AAEA,OAAO,SAASG,mBAAmBA,CACjCH,MAA8B,EACZ;EAClB,MAAMI,eAAe,GAAGR,0BAA0B,CAIhDI,MAAM,EAAEH,qBAAqB,EAAEE,uBAAuB,CAAC;EAEzD,OAAOJ,UAAU,CACfD,iBAAiB,CAACW,SAAS,EAC3BD,eACF,CAAC;AACH","ignoreList":[]}
1
+ {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","LongPressPropsMapping","Map","transformLongPressProps","config","shouldCancelWhenOutside","undefined","useLongPressGesture","longPressConfig","LongPress"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/longPress/useLongPressGesture.ts"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AAUxD,MAAMC,qBAAqB,GAAG,IAAIC,GAAG,CAGnC,CACA,CAAC,aAAa,EAAE,eAAe,CAAC,EAChC,CAAC,aAAa,EAAE,SAAS,CAAC,CAC3B,CAAC;AAEF,SAASC,uBAAuBA,CAC9BC,MAA+D,EAC/D;EACA,IAAIA,MAAM,CAACC,uBAAuB,KAAKC,SAAS,EAAE;IAChDF,MAAM,CAACC,uBAAuB,GAAG,IAAI;EACvC;EAEA,OAAOD,MAAM;AACf;AAEA,OAAO,SAASG,mBAAmBA,CACjCH,MAA8B,EACZ;EAClB,MAAMI,eAAe,GAAGR,0BAA0B,CAIhDI,MAAM,EAAEH,qBAAqB,EAAEE,uBAAuB,CAAC;EAEzD,OAAOJ,UAAU,CACfD,iBAAiB,CAACW,SAAS,EAC3BD,eACF,CAAC;AACH","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=ManualTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/manual/ManualTypes.ts"],"mappings":"","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","useManualGesture","config","manualConfig","Manual"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/manual/useManualGesture.ts"],"mappings":";;AAAA,SAIEA,iBAAiB,QAEZ,gBAAgB;AACvB,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AAsBxD,OAAO,SAASC,gBAAgBA,CAACC,MAA2B,EAAiB;EAC3E,MAAMC,YAAY,GAAGH,0BAA0B,CAI7CE,MAAM,CAAC;EAET,OAAOH,UAAU,CAACD,iBAAiB,CAACM,MAAM,EAAED,YAAY,CAAC;AAC3D","ignoreList":[]}
1
+ {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","useManualGesture","config","manualConfig","Manual"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/manual/useManualGesture.ts"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AAQxD,OAAO,SAASC,gBAAgBA,CAACC,MAA2B,EAAiB;EAC3E,MAAMC,YAAY,GAAGH,0BAA0B,CAG7CE,MAAM,CAAC;EAET,OAAOH,UAAU,CAACD,iBAAiB,CAACM,MAAM,EAAED,YAAY,CAAC;AAC3D","ignoreList":[]}
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
 
3
3
  export const NativeHandlerNativeProperties = new Set(['shouldActivateOnStart', 'disallowInterruption']);
4
- //# sourceMappingURL=NativeProperties.js.map
4
+ //# sourceMappingURL=NativeTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["NativeHandlerNativeProperties","Set"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/native/NativeTypes.ts"],"mappings":";;AAwBA,OAAO,MAAMA,6BAA6B,GAAG,IAAIC,GAAG,CAElD,CAAC,uBAAuB,EAAE,sBAAsB,CAAC,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","useNativeGesture","config","nativeConfig","Native"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/native/useNativeGesture.ts"],"mappings":";;AAAA,SAIEA,iBAAiB,QAGZ,gBAAgB;AACvB,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AAyBxD,OAAO,SAASC,gBAAgBA,CAC9BC,MAA+B,EAChB;EACf,MAAMC,YAAY,GAAGH,0BAA0B,CAI7CE,MAAM,CAAC;EAET,OAAOH,UAAU,CAACD,iBAAiB,CAACM,MAAM,EAAED,YAAY,CAAC;AAC3D","ignoreList":[]}
1
+ {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","useNativeGesture","config","nativeConfig","Native"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/native/useNativeGesture.ts"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AAQxD,OAAO,SAASC,gBAAgBA,CAACC,MAA2B,EAAiB;EAC3E,MAAMC,YAAY,GAAGH,0BAA0B,CAG7CE,MAAM,CAAC;EAET,OAAOH,UAAU,CAACD,iBAAiB,CAACM,MAAM,EAAED,YAAY,CAAC;AAC3D","ignoreList":[]}
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
 
3
3
  export const PanNativeProperties = new Set(['minDist', 'avgTouches', 'enableTrackpadTwoFingerGesture', 'minPointers', 'maxPointers', 'minVelocity', 'minVelocityX', 'minVelocityY', 'activateAfterLongPress', 'activeOffsetYStart', 'activeOffsetYEnd', 'activeOffsetXStart', 'activeOffsetXEnd', 'failOffsetYStart', 'failOffsetYEnd', 'failOffsetXStart', 'failOffsetXEnd']);
4
- //# sourceMappingURL=PanProperties.js.map
4
+ //# sourceMappingURL=PanTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["PanNativeProperties","Set"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/pan/PanTypes.ts"],"mappings":";;AA6GA,OAAO,MAAMA,mBAAmB,GAAG,IAAIC,GAAG,CAAmC,CAC3E,SAAS,EACT,YAAY,EACZ,gCAAgC,EAChC,aAAa,EACb,aAAa,EACb,aAAa,EACb,cAAc,EACd,cAAc,EACd,wBAAwB,EACxB,oBAAoB,EACpB,kBAAkB,EAClB,oBAAoB,EACpB,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,CACjB,CAAC","ignoreList":[]}
@@ -57,12 +57,19 @@ function diffCalculator(current, previous) {
57
57
  changeY: previous ? current.translationY - previous.translationY : current.translationY
58
58
  };
59
59
  }
60
+ function fillInDefaultValues(event) {
61
+ 'worklet';
62
+
63
+ event.changeX = 0;
64
+ event.changeY = 0;
65
+ }
60
66
  function transformPanProps(config) {
61
67
  transformOffsetProp(config, 'activeOffsetY');
62
68
  transformOffsetProp(config, 'failOffsetX');
63
69
  transformOffsetProp(config, 'failOffsetY');
64
70
  transformOffsetProp(config, 'activeOffsetX');
65
71
  config.changeEventCalculator = getChangeEventCalculator(diffCalculator);
72
+ config.fillInDefaultValues = fillInDefaultValues;
66
73
  return config;
67
74
  }
68
75
  export function usePanGesture(config) {
@@ -1 +1 @@
1
- {"version":3,"names":["SingleGestureName","useGesture","getChangeEventCalculator","maybeUnpackValue","useClonedAndRemappedConfig","PanPropsMapping","Map","validateOffsetsArray","offsets","propName","undefined","Array","isArray","offsetStart","offsetEnd","Error","validatePanConfig","config","activeOffsetX","activeOffsetY","failOffsetX","failOffsetY","minDistance","transformOffsetProp","propValue","offsetValue","diffCalculator","current","previous","changeX","translationX","changeY","translationY","transformPanProps","changeEventCalculator","usePanGesture","__DEV__","panConfig","Pan"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/pan/usePanGesture.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["SingleGestureName","useGesture","getChangeEventCalculator","maybeUnpackValue","useClonedAndRemappedConfig","PanPropsMapping","Map","validateOffsetsArray","offsets","propName","undefined","Array","isArray","offsetStart","offsetEnd","Error","validatePanConfig","config","activeOffsetX","activeOffsetY","failOffsetX","failOffsetY","minDistance","transformOffsetProp","propValue","offsetValue","diffCalculator","current","previous","changeX","translationX","changeY","translationY","fillInDefaultValues","event","transformPanProps","changeEventCalculator","usePanGesture","__DEV__","panConfig","Pan"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/pan/usePanGesture.ts"],"mappings":";;AAKA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SACEC,wBAAwB,EACxBC,gBAAgB,EAChBC,0BAA0B,QACrB,aAAa;AAYpB,MAAMC,eAAe,GAAG,IAAIC,GAAG,CAG7B,CACA,CAAC,aAAa,EAAE,SAAS,CAAC,EAC1B,CAAC,gBAAgB,EAAE,YAAY,CAAC,CACjC,CAAC;AAEF,SAASC,oBAAoBA,CAC3BC,OAA+D,EAC/DC,QAAgB,EAChB;EACA,IAAID,OAAO,KAAKE,SAAS,EAAE;IACzB;EACF;EAEA,IAAI,CAACC,KAAK,CAACC,OAAO,CAACJ,OAAO,CAAC,EAAE;IAC3B;EACF;EAEA,MAAMK,WAAW,GAAGV,gBAAgB,CAASK,OAAO,CAAC,CAAC,CAAC,CAAC;EACxD,MAAMM,SAAS,GAAGX,gBAAgB,CAASK,OAAO,CAAC,CAAC,CAAC,CAAC;EAEtD,IAAIK,WAAW,GAAG,CAAC,IAAIC,SAAS,GAAG,CAAC,EAAE;IACpC,MAAM,IAAIC,KAAK,CACb,oBAAoBN,QAAQ,4DAC9B,CAAC;EACH;AACF;AAEA,SAASO,iBAAiBA,CAACC,MAAwB,EAAE;EACnDV,oBAAoB,CAACU,MAAM,CAACC,aAAa,EAAE,eAAe,CAAC;EAC3DX,oBAAoB,CAACU,MAAM,CAACE,aAAa,EAAE,eAAe,CAAC;EAC3DZ,oBAAoB,CAACU,MAAM,CAACG,WAAW,EAAE,aAAa,CAAC;EACvDb,oBAAoB,CAACU,MAAM,CAACI,WAAW,EAAE,aAAa,CAAC;EAEvD,IACEJ,MAAM,CAACK,WAAW,KAAKZ,SAAS,KAC/BO,MAAM,CAACG,WAAW,KAAKV,SAAS,IAAIO,MAAM,CAACI,WAAW,KAAKX,SAAS,CAAC,EACtE;IACA,MAAM,IAAIK,KAAK,CACb,qHACF,CAAC;EACH;EAEA,IACEE,MAAM,CAACK,WAAW,KAAKZ,SAAS,KAC/BO,MAAM,CAACC,aAAa,KAAKR,SAAS,IAAIO,MAAM,CAACE,aAAa,KAAKT,SAAS,CAAC,EAC1E;IACA,MAAM,IAAIK,KAAK,CACb,4EACF,CAAC;EACH;AACF;AAEA,SAASQ,mBAAmBA,CAC1BN,MAAmD,EACnDR,QAA2B,EAC3B;EACA,MAAMe,SAAS,GAAGP,MAAM,CAACR,QAAQ,CAAC;EAElC,IAAIe,SAAS,KAAKd,SAAS,EAAE;IAC3B;EACF;EAEA,IAAIC,KAAK,CAACC,OAAO,CAACY,SAAS,CAAC,EAAE;IAC5BP,MAAM,CAAC,GAAGR,QAAQ,OAAO,CAAC,GAAGe,SAAS,CAAC,CAAC,CAAC;IACzCP,MAAM,CAAC,GAAGR,QAAQ,KAAK,CAAC,GAAGe,SAAS,CAAC,CAAC,CAAC;EACzC,CAAC,MAAM;IACL,MAAMC,WAAW,GAAGtB,gBAAgB,CAASqB,SAAS,CAAC;IAEvD,IAAIC,WAAW,GAAG,CAAC,EAAE;MACnBR,MAAM,CAAC,GAAGR,QAAQ,OAAO,CAAC,GAAGe,SAAS;IACxC,CAAC,MAAM;MACLP,MAAM,CAAC,GAAGR,QAAQ,KAAK,CAAC,GAAGe,SAAS;IACtC;EACF;;EAEA;EACA,OAAOP,MAAM,CAACR,QAAQ,CAAC;AACzB;AAEA,SAASiB,cAAcA,CACrBC,OAA4C,EAC5CC,QAAoD,EACpD;EACA,SAAS;;EACT,OAAO;IACLC,OAAO,EAAED,QAAQ,GACbD,OAAO,CAACG,YAAY,GAAGF,QAAQ,CAACE,YAAY,GAC5CH,OAAO,CAACG,YAAY;IACxBC,OAAO,EAAEH,QAAQ,GACbD,OAAO,CAACK,YAAY,GAAGJ,QAAQ,CAACI,YAAY,GAC5CL,OAAO,CAACK;EACd,CAAC;AACH;AAEA,SAASC,mBAAmBA,CAACC,KAA2C,EAAE;EACxE,SAAS;;EAETA,KAAK,CAACL,OAAO,GAAG,CAAC;EACjBK,KAAK,CAACH,OAAO,GAAG,CAAC;AACnB;AAEA,SAASI,iBAAiBA,CACxBlB,MAAmD,EACnD;EACAM,mBAAmB,CAACN,MAAM,EAAE,eAAe,CAAC;EAC5CM,mBAAmB,CAACN,MAAM,EAAE,aAAa,CAAC;EAC1CM,mBAAmB,CAACN,MAAM,EAAE,aAAa,CAAC;EAC1CM,mBAAmB,CAACN,MAAM,EAAE,eAAe,CAAC;EAE5CA,MAAM,CAACmB,qBAAqB,GAAGlC,wBAAwB,CAACwB,cAAc,CAAC;EACvET,MAAM,CAACgB,mBAAmB,GAAGA,mBAAmB;EAEhD,OAAOhB,MAAM;AACf;AAEA,OAAO,SAASoB,aAAaA,CAACpB,MAAwB,EAAc;EAClE,IAAIqB,OAAO,EAAE;IACXtB,iBAAiB,CAACC,MAAM,CAAC;EAC3B;EAEA,MAAMsB,SAAS,GAAGnC,0BAA0B,CAK1Ca,MAAM,EAAEZ,eAAe,EAAE8B,iBAAiB,CAAC;EAE7C,OAAOlC,UAAU,CAIfD,iBAAiB,CAACwC,GAAG,EAAED,SAAS,CAAC;AACrC","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=PinchTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/pinch/PinchTypes.ts"],"mappings":"","ignoreList":[]}
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { SingleGestureName } from '../../../types';
4
4
  import { useGesture } from '../../useGesture';
5
- import { useClonedAndRemappedConfig, getChangeEventCalculator } from '../../utils';
5
+ import { getChangeEventCalculator, useClonedAndRemappedConfig } from '../../utils';
6
6
  function diffCalculator(current, previous) {
7
7
  'worklet';
8
8
 
@@ -10,14 +10,19 @@ function diffCalculator(current, previous) {
10
10
  scaleChange: previous ? current.scale / previous.scale : current.scale
11
11
  };
12
12
  }
13
+ function fillInDefaultValues(event) {
14
+ 'worklet';
15
+
16
+ event.scaleChange = 1;
17
+ }
13
18
  function transformPinchProps(config) {
14
19
  config.changeEventCalculator = getChangeEventCalculator(diffCalculator);
20
+ config.fillInDefaultValues = fillInDefaultValues;
15
21
  return config;
16
22
  }
17
23
  const PinchPropsMapping = new Map();
18
24
  export function usePinchGesture(config) {
19
25
  const pinchConfig = useClonedAndRemappedConfig(config, PinchPropsMapping, transformPinchProps);
20
- pinchConfig.changeEventCalculator = getChangeEventCalculator(diffCalculator);
21
26
  return useGesture(SingleGestureName.Pinch, pinchConfig);
22
27
  }
23
28
  //# sourceMappingURL=usePinchGesture.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","getChangeEventCalculator","diffCalculator","current","previous","scaleChange","scale","transformPinchProps","config","changeEventCalculator","PinchPropsMapping","Map","usePinchGesture","pinchConfig","Pinch"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/pinch/usePinchGesture.ts"],"mappings":";;AAAA,SAKEA,iBAAiB,QAEZ,gBAAgB;AACvB,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SACEC,0BAA0B,EAC1BC,wBAAwB,QACnB,aAAa;AA4BpB,SAASC,cAAcA,CACrBC,OAAsC,EACtCC,QAA8C,EAC9C;EACA,SAAS;;EACT,OAAO;IACLC,WAAW,EAAED,QAAQ,GAAGD,OAAO,CAACG,KAAK,GAAGF,QAAQ,CAACE,KAAK,GAAGH,OAAO,CAACG;EACnE,CAAC;AACH;AAEA,SAASC,mBAAmBA,CAC1BC,MAAuD,EACvD;EACAA,MAAM,CAACC,qBAAqB,GAAGR,wBAAwB,CAACC,cAAc,CAAC;EAEvE,OAAOM,MAAM;AACf;AAEA,MAAME,iBAAiB,GAAG,IAAIC,GAAG,CAAiB,CAAC;AAEnD,OAAO,SAASC,eAAeA,CAACJ,MAA0B,EAAgB;EACxE,MAAMK,WAAW,GAAGb,0BAA0B,CAK5CQ,MAAM,EAAEE,iBAAiB,EAAEH,mBAAmB,CAAC;EAEjDM,WAAW,CAACJ,qBAAqB,GAAGR,wBAAwB,CAACC,cAAc,CAAC;EAE5E,OAAOH,UAAU,CAACD,iBAAiB,CAACgB,KAAK,EAAED,WAAW,CAAC;AACzD","ignoreList":[]}
1
+ {"version":3,"names":["SingleGestureName","useGesture","getChangeEventCalculator","useClonedAndRemappedConfig","diffCalculator","current","previous","scaleChange","scale","fillInDefaultValues","event","transformPinchProps","config","changeEventCalculator","PinchPropsMapping","Map","usePinchGesture","pinchConfig","Pinch"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/pinch/usePinchGesture.ts"],"mappings":";;AACA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SACEC,wBAAwB,EACxBC,0BAA0B,QACrB,aAAa;AAUpB,SAASC,cAAcA,CACrBC,OAA8C,EAC9CC,QAAsD,EACtD;EACA,SAAS;;EACT,OAAO;IACLC,WAAW,EAAED,QAAQ,GAAGD,OAAO,CAACG,KAAK,GAAGF,QAAQ,CAACE,KAAK,GAAGH,OAAO,CAACG;EACnE,CAAC;AACH;AAEA,SAASC,mBAAmBA,CAACC,KAA6C,EAAE;EAC1E,SAAS;;EACTA,KAAK,CAACH,WAAW,GAAG,CAAC;AACvB;AAEA,SAASI,mBAAmBA,CAC1BC,MAAuD,EACvD;EACAA,MAAM,CAACC,qBAAqB,GAAGX,wBAAwB,CAACE,cAAc,CAAC;EACvEQ,MAAM,CAACH,mBAAmB,GAAGA,mBAAmB;EAEhD,OAAOG,MAAM;AACf;AAEA,MAAME,iBAAiB,GAAG,IAAIC,GAAG,CAAiB,CAAC;AAEnD,OAAO,SAASC,eAAeA,CAACJ,MAA0B,EAAgB;EACxE,MAAMK,WAAW,GAAGd,0BAA0B,CAM5CS,MAAM,EAAEE,iBAAiB,EAAEH,mBAAmB,CAAC;EAEjD,OAAOV,UAAU,CAACD,iBAAiB,CAACkB,KAAK,EAAED,WAAW,CAAC;AACzD","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=RotationTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/rotation/RotationTypes.ts"],"mappings":"","ignoreList":[]}
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { SingleGestureName } from '../../../types';
4
4
  import { useGesture } from '../../useGesture';
5
- import { useClonedAndRemappedConfig, getChangeEventCalculator } from '../../utils';
5
+ import { getChangeEventCalculator, useClonedAndRemappedConfig } from '../../utils';
6
6
  function diffCalculator(current, previous) {
7
7
  'worklet';
8
8
 
@@ -10,8 +10,14 @@ function diffCalculator(current, previous) {
10
10
  rotationChange: previous ? current.rotation - previous.rotation : current.rotation
11
11
  };
12
12
  }
13
+ function fillInDefaultValues(event) {
14
+ 'worklet';
15
+
16
+ event.rotationChange = 0;
17
+ }
13
18
  function transformRotationProps(config) {
14
19
  config.changeEventCalculator = getChangeEventCalculator(diffCalculator);
20
+ config.fillInDefaultValues = fillInDefaultValues;
15
21
  return config;
16
22
  }
17
23
  const RotationPropsMapping = new Map();
@@ -1 +1 @@
1
- {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","getChangeEventCalculator","diffCalculator","current","previous","rotationChange","rotation","transformRotationProps","config","changeEventCalculator","RotationPropsMapping","Map","useRotationGesture","rotationConfig","Rotation"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/rotation/useRotationGesture.ts"],"mappings":";;AAAA,SAKEA,iBAAiB,QAEZ,gBAAgB;AACvB,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SACEC,0BAA0B,EAC1BC,wBAAwB,QACnB,aAAa;AA4BpB,SAASC,cAAcA,CACrBC,OAAyC,EACzCC,QAAiD,EACjD;EACA,SAAS;;EACT,OAAO;IACLC,cAAc,EAAED,QAAQ,GACpBD,OAAO,CAACG,QAAQ,GAAGF,QAAQ,CAACE,QAAQ,GACpCH,OAAO,CAACG;EACd,CAAC;AACH;AAEA,SAASC,sBAAsBA,CAC7BC,MAA6D,EAC7D;EACAA,MAAM,CAACC,qBAAqB,GAAGR,wBAAwB,CAACC,cAAc,CAAC;EAEvE,OAAOM,MAAM;AACf;AAEA,MAAME,oBAAoB,GAAG,IAAIC,GAAG,CAAiB,CAAC;AAEtD,OAAO,SAASC,kBAAkBA,CAChCJ,MAA6B,EACZ;EACjB,MAAMK,cAAc,GAAGb,0BAA0B,CAK/CQ,MAAM,EAAEE,oBAAoB,EAAEH,sBAAsB,CAAC;EAEvD,OAAOR,UAAU,CAACD,iBAAiB,CAACgB,QAAQ,EAAED,cAAc,CAAC;AAC/D","ignoreList":[]}
1
+ {"version":3,"names":["SingleGestureName","useGesture","getChangeEventCalculator","useClonedAndRemappedConfig","diffCalculator","current","previous","rotationChange","rotation","fillInDefaultValues","event","transformRotationProps","config","changeEventCalculator","RotationPropsMapping","Map","useRotationGesture","rotationConfig","Rotation"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/rotation/useRotationGesture.ts"],"mappings":";;AACA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SACEC,wBAAwB,EACxBC,0BAA0B,QACrB,aAAa;AAUpB,SAASC,cAAcA,CACrBC,OAAiD,EACjDC,QAAyD,EACzD;EACA,SAAS;;EACT,OAAO;IACLC,cAAc,EAAED,QAAQ,GACpBD,OAAO,CAACG,QAAQ,GAAGF,QAAQ,CAACE,QAAQ,GACpCH,OAAO,CAACG;EACd,CAAC;AACH;AAEA,SAASC,mBAAmBA,CAACC,KAAgD,EAAE;EAC7E,SAAS;;EACTA,KAAK,CAACH,cAAc,GAAG,CAAC;AAC1B;AAEA,SAASI,sBAAsBA,CAC7BC,MAA6D,EAC7D;EACAA,MAAM,CAACC,qBAAqB,GAAGX,wBAAwB,CAACE,cAAc,CAAC;EACvEQ,MAAM,CAACH,mBAAmB,GAAGA,mBAAmB;EAEhD,OAAOG,MAAM;AACf;AAEA,MAAME,oBAAoB,GAAG,IAAIC,GAAG,CAAiB,CAAC;AAEtD,OAAO,SAASC,kBAAkBA,CAChCJ,MAA6B,EACZ;EACjB,MAAMK,cAAc,GAAGd,0BAA0B,CAM/CS,MAAM,EAAEE,oBAAoB,EAAEH,sBAAsB,CAAC;EAEvD,OAAOV,UAAU,CAACD,iBAAiB,CAACkB,QAAQ,EAAED,cAAc,CAAC;AAC/D","ignoreList":[]}
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
 
3
3
  export const TapNativeProperties = new Set(['minPointers', 'numberOfTaps', 'maxDeltaX', 'maxDeltaY', 'maxDurationMs', 'maxDelayMs', 'maxDist']);
4
- //# sourceMappingURL=TapProperties.js.map
4
+ //# sourceMappingURL=TapTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["TapNativeProperties","Set"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/tap/TapTypes.ts"],"mappings":";;AAmEA,OAAO,MAAMA,mBAAmB,GAAG,IAAIC,GAAG,CAA+B,CACvE,aAAa,EACb,cAAc,EACd,WAAW,EACX,WAAW,EACX,eAAe,EACf,YAAY,EACZ,SAAS,CACV,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","TapPropsMapping","Map","useTapGesture","config","tapConfig","Tap"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/tap/useTapGesture.ts"],"mappings":";;AAAA,SAKEA,iBAAiB,QAEZ,gBAAgB;AACvB,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AA4BxD,MAAMC,eAAe,GAAG,IAAIC,GAAG,CAG7B,CACA,CAAC,aAAa,EAAE,SAAS,CAAC,EAC1B,CAAC,aAAa,EAAE,eAAe,CAAC,EAChC,CAAC,UAAU,EAAE,YAAY,CAAC,CAC3B,CAAC;AAEF,OAAO,SAASC,aAAaA,CAACC,MAAwB,EAAc;EAClE,MAAMC,SAAS,GAAGL,0BAA0B,CAI1CI,MAAM,EAAEH,eAAe,CAAC;EAE1B,OAAOF,UAAU,CACfD,iBAAiB,CAACQ,GAAG,EACrBD,SACF,CAAC;AACH","ignoreList":[]}
1
+ {"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","TapPropsMapping","Map","useTapGesture","config","tapConfig","Tap"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/tap/useTapGesture.ts"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AASxD,MAAMC,eAAe,GAAG,IAAIC,GAAG,CAG7B,CACA,CAAC,aAAa,EAAE,SAAS,CAAC,EAC1B,CAAC,aAAa,EAAE,eAAe,CAAC,EAChC,CAAC,UAAU,EAAE,YAAY,CAAC,CAC3B,CAAC;AAEF,OAAO,SAASC,aAAaA,CAACC,MAAwB,EAAc;EAClE,MAAMC,SAAS,GAAGL,0BAA0B,CAI1CI,MAAM,EAAEH,eAAe,CAAC;EAE1B,OAAOF,UAAU,CACfD,iBAAiB,CAACQ,GAAG,EACrBD,SACF,CAAC;AACH","ignoreList":[]}
@@ -2,12 +2,12 @@
2
2
 
3
3
  import { useEffect, useMemo, useRef } from 'react';
4
4
  import { getNextHandlerTag } from '../../handlers/getNextHandlerTag';
5
- import { useGestureCallbacks } from './useGestureCallbacks';
6
- import { prepareConfig, prepareRelations, bindSharedValues, unbindSharedValues, prepareConfigForNativeSide } from './utils';
7
- import { tagMessage } from '../../utils';
8
- import { scheduleFlushOperations } from '../../handlers/utils';
9
5
  import { registerGesture, unregisterGesture } from '../../handlers/handlersRegistry';
6
+ import { scheduleFlushOperations } from '../../handlers/utils';
7
+ import { tagMessage } from '../../utils';
10
8
  import { NativeProxy } from '../NativeProxy';
9
+ import { useGestureCallbacks } from './useGestureCallbacks';
10
+ import { bindSharedValues, prepareConfig, prepareConfigForNativeSide, prepareRelations, unbindSharedValues } from './utils';
11
11
  export function useGesture(type, config) {
12
12
  const handlerTag = useMemo(() => getNextHandlerTag(), []);
13
13
  const disableReanimated = useMemo(() => config.disableReanimated, []);
@@ -56,10 +56,12 @@ export function useGesture(type, config) {
56
56
  }), [handlerTag, type, config, jsEventHandler, reanimatedEventHandler, animatedEventHandler, gestureRelations]);
57
57
  useEffect(() => {
58
58
  return () => {
59
- currentGestureRef.current = {
60
- type: '',
61
- handlerTag: -1
62
- };
59
+ if (currentGestureRef.current.handlerTag === handlerTag) {
60
+ currentGestureRef.current = {
61
+ type: '',
62
+ handlerTag: -1
63
+ };
64
+ }
63
65
  NativeProxy.dropGestureHandler(handlerTag);
64
66
  scheduleFlushOperations();
65
67
  };
@@ -1 +1 @@
1
- {"version":3,"names":["useEffect","useMemo","useRef","getNextHandlerTag","useGestureCallbacks","prepareConfig","prepareRelations","bindSharedValues","unbindSharedValues","prepareConfigForNativeSide","tagMessage","scheduleFlushOperations","registerGesture","unregisterGesture","NativeProxy","useGesture","type","config","handlerTag","disableReanimated","Error","jsEventHandler","reanimatedEventHandler","animatedEventHandler","shouldUseReanimatedDetector","gestureRelations","simultaneousWith","requireToFail","block","currentGestureRef","current","createGestureHandler","gesture","detectorCallbacks","dropGestureHandler","preparedConfig","setGestureHandlerConfig"],"sourceRoot":"../../../../src","sources":["v3/hooks/useGesture.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["useEffect","useMemo","useRef","getNextHandlerTag","registerGesture","unregisterGesture","scheduleFlushOperations","tagMessage","NativeProxy","useGestureCallbacks","bindSharedValues","prepareConfig","prepareConfigForNativeSide","prepareRelations","unbindSharedValues","useGesture","type","config","handlerTag","disableReanimated","Error","jsEventHandler","reanimatedEventHandler","animatedEventHandler","shouldUseReanimatedDetector","gestureRelations","simultaneousWith","requireToFail","block","currentGestureRef","current","createGestureHandler","gesture","detectorCallbacks","dropGestureHandler","preparedConfig","setGestureHandlerConfig"],"sourceRoot":"../../../../src","sources":["v3/hooks/useGesture.ts"],"mappings":"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","ignoreList":[]}
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
 
3
+ import { Reanimated } from '../../handlers/gestures/reanimatedWrapper';
4
+ import { tagMessage } from '../../utils';
3
5
  import { useGestureEventHandler } from './callbacks/useGestureEventHandler';
4
- import { checkMappingForChangeProperties, isNativeAnimatedEvent, useMemoizedGestureCallbacks } from './utils';
5
6
  import { useReanimatedEventHandler } from './callbacks/useReanimatedEventHandler';
6
- import { tagMessage } from '../../utils';
7
- import { Reanimated } from '../../handlers/gestures/reanimatedWrapper';
7
+ import { checkMappingForChangeProperties, isNativeAnimatedEvent, useMemoizedGestureCallbacks } from './utils';
8
8
  function guardJSAnimatedEvent(handler) {
9
9
  return (...args) => {
10
10
  try {
@@ -25,7 +25,7 @@ export function useGestureCallbacks(handlerTag, config) {
25
25
  // eslint-disable-next-line react-hooks/rules-of-hooks
26
26
  const reanimatedHandler = Reanimated?.useHandler(callbacks);
27
27
  // eslint-disable-next-line react-hooks/rules-of-hooks
28
- reanimatedEventHandler = useReanimatedEventHandler(handlerTag, callbacks, reanimatedHandler, config.changeEventCalculator);
28
+ reanimatedEventHandler = useReanimatedEventHandler(handlerTag, callbacks, reanimatedHandler, config.changeEventCalculator, config.fillInDefaultValues);
29
29
  }
30
30
  let animatedEventHandler;
31
31
  if (config.dispatchesAnimatedEvents) {
@@ -1 +1 @@
1
- {"version":3,"names":["useGestureEventHandler","checkMappingForChangeProperties","isNativeAnimatedEvent","useMemoizedGestureCallbacks","useReanimatedEventHandler","tagMessage","Reanimated","guardJSAnimatedEvent","handler","args","e","Error","message","includes","useGestureCallbacks","handlerTag","config","callbacks","jsEventHandler","reanimatedEventHandler","disableReanimated","reanimatedHandler","useHandler","changeEventCalculator","animatedEventHandler","dispatchesAnimatedEvents","__DEV__","onUpdate"],"sourceRoot":"../../../../src","sources":["v3/hooks/useGestureCallbacks.ts"],"mappings":";;AAAA,SAASA,sBAAsB,QAAQ,oCAAoC;AAM3E,SACEC,+BAA+B,EAC/BC,qBAAqB,EACrBC,2BAA2B,QACtB,SAAS;AAChB,SAASC,yBAAyB,QAAQ,uCAAuC;AACjF,SAASC,UAAU,QAAQ,aAAa;AACxC,SAASC,UAAU,QAAQ,2CAA2C;AAEtE,SAASC,oBAAoBA,CAACC,OAAqC,EAAE;EACnE,OAAO,CAAC,GAAGC,IAAe,KAAK;IAC7B,IAAI;MACFD,OAAO,CAAC,GAAGC,IAAI,CAAC;IAClB,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,IACEA,CAAC,YAAYC,KAAK,IAClBD,CAAC,CAACE,OAAO,CAACC,QAAQ,CAAC,qCAAqC,CAAC,EACzD;QACA,MAAM,IAAIF,KAAK,CACbN,UAAU,CACR,yDAAyD,GACvD,iFAAiF,GACjF,gEACJ,CACF,CAAC;MACH;MAEA,MAAMK,CAAC;IACT;EACF,CAAC;AACH;AAEA,OAAO,SAASI,mBAAmBA,CACjCC,UAAkB,EAClBC,MAAgD,EAChD;EACA,MAAMC,SAAS,GAAGd,2BAA2B,CAACa,MAAM,CAAC;EAErD,MAAME,cAAc,GAAGlB,sBAAsB,CAACe,UAAU,EAAEE,SAAS,EAAED,MAAM,CAAC;EAE5E,IAAIG,sBAAsB;EAE1B,IAAI,CAACH,MAAM,CAACI,iBAAiB,EAAE;IAC7B;IACA,MAAMC,iBAAiB,GAAGf,UAAU,EAAEgB,UAAU,CAACL,SAAS,CAAC;IAC3D;IACAE,sBAAsB,GAAGf,yBAAyB,CAChDW,UAAU,EACVE,SAAS,EACTI,iBAAiB,EACjBL,MAAM,CAACO,qBACT,CAAC;EACH;EAEA,IAAIC,oBAGS;EACb,IAAIR,MAAM,CAACS,wBAAwB,EAAE;IACnC,IAAIC,OAAO,IAAIxB,qBAAqB,CAACc,MAAM,CAACW,QAAQ,CAAC,EAAE;MACrD1B,+BAA+B,CAACe,MAAM,CAACW,QAAQ,CAAC;IAClD;IAEA,IAAID,OAAO,IAAI,CAACxB,qBAAqB,CAACc,MAAM,CAACW,QAAQ,CAAC,EAAE;MACtD;MACAH,oBAAoB,GAAGjB,oBAAoB,CAACS,MAAM,CAACW,QAAQ,CAAC;IAC9D,CAAC,MAAM;MACL;MACAH,oBAAoB,GAAGR,MAAM,CAACW,QAAQ;IACxC;EACF;EAEA,OAAO;IACLT,cAAc;IACdC,sBAAsB;IACtBK;EACF,CAAC;AACH","ignoreList":[]}
1
+ {"version":3,"names":["Reanimated","tagMessage","useGestureEventHandler","useReanimatedEventHandler","checkMappingForChangeProperties","isNativeAnimatedEvent","useMemoizedGestureCallbacks","guardJSAnimatedEvent","handler","args","e","Error","message","includes","useGestureCallbacks","handlerTag","config","callbacks","jsEventHandler","reanimatedEventHandler","disableReanimated","reanimatedHandler","useHandler","changeEventCalculator","fillInDefaultValues","animatedEventHandler","dispatchesAnimatedEvents","__DEV__","onUpdate"],"sourceRoot":"../../../../src","sources":["v3/hooks/useGestureCallbacks.ts"],"mappings":";;AAAA,SAASA,UAAU,QAAQ,2CAA2C;AACtE,SAASC,UAAU,QAAQ,aAAa;AAMxC,SAASC,sBAAsB,QAAQ,oCAAoC;AAC3E,SAASC,yBAAyB,QAAQ,uCAAuC;AACjF,SACEC,+BAA+B,EAC/BC,qBAAqB,EACrBC,2BAA2B,QACtB,SAAS;AAEhB,SAASC,oBAAoBA,CAACC,OAAqC,EAAE;EACnE,OAAO,CAAC,GAAGC,IAAe,KAAK;IAC7B,IAAI;MACFD,OAAO,CAAC,GAAGC,IAAI,CAAC;IAClB,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,IACEA,CAAC,YAAYC,KAAK,IAClBD,CAAC,CAACE,OAAO,CAACC,QAAQ,CAAC,qCAAqC,CAAC,EACzD;QACA,MAAM,IAAIF,KAAK,CACbV,UAAU,CACR,yDAAyD,GACvD,iFAAiF,GACjF,gEACJ,CACF,CAAC;MACH;MAEA,MAAMS,CAAC;IACT;EACF,CAAC;AACH;AAEA,OAAO,SAASI,mBAAmBA,CAKjCC,UAAkB,EAClBC,MAAsE,EACtE;EACA,MAAMC,SAAS,GAAGX,2BAA2B,CAACU,MAAM,CAAC;EAErD,MAAME,cAAc,GAAGhB,sBAAsB,CAACa,UAAU,EAAEE,SAAS,EAAED,MAAM,CAAC;EAE5E,IAAIG,sBAAsB;EAE1B,IAAI,CAACH,MAAM,CAACI,iBAAiB,EAAE;IAC7B;IACA,MAAMC,iBAAiB,GAAGrB,UAAU,EAAEsB,UAAU,CAACL,SAAS,CAAC;IAC3D;IACAE,sBAAsB,GAAGhB,yBAAyB,CAChDY,UAAU,EACVE,SAAS,EACTI,iBAAiB,EACjBL,MAAM,CAACO,qBAAqB,EAC5BP,MAAM,CAACQ,mBACT,CAAC;EACH;EAEA,IAAIC,oBAGS;EACb,IAAIT,MAAM,CAACU,wBAAwB,EAAE;IACnC,IAAIC,OAAO,IAAItB,qBAAqB,CAACW,MAAM,CAACY,QAAQ,CAAC,EAAE;MACrDxB,+BAA+B,CAACY,MAAM,CAACY,QAAQ,CAAC;IAClD;IAEA,IAAID,OAAO,IAAI,CAACtB,qBAAqB,CAACW,MAAM,CAACY,QAAQ,CAAC,EAAE;MACtD;MACAH,oBAAoB,GAAGlB,oBAAoB,CAACS,MAAM,CAACY,QAAQ,CAAC;IAC9D,CAAC,MAAM;MACL;MACAH,oBAAoB,GAAGT,MAAM,CAACY,QAAQ;IACxC;EACF;EAEA,OAAO;IACLV,cAAc;IACdC,sBAAsB;IACtBM;EACF,CAAC;AACH","ignoreList":[]}
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
 
3
+ import { useMemo } from 'react';
3
4
  import { Reanimated } from '../../../handlers/gestures/reanimatedWrapper';
4
5
  import { tagMessage } from '../../../utils';
5
- import { hasWorkletEventHandlers, maybeUnpackValue } from './reanimatedUtils';
6
6
  import { isNativeAnimatedEvent, shouldHandleTouchEvents } from './eventUtils';
7
7
  import { allowedNativeProps, EMPTY_WHITE_LIST, PropsToFilter, PropsWhiteLists } from './propsWhiteList';
8
- import { useMemo } from 'react';
8
+ import { hasWorkletEventHandlers, maybeUnpackValue } from './reanimatedUtils';
9
9
  export function prepareConfig(config) {
10
10
  const runOnJS = maybeUnpackValue(config.runOnJS);
11
11
  if (__DEV__ && isNativeAnimatedEvent(config.onUpdate) && !config.useAnimated) {
@@ -1 +1 @@
1
- {"version":3,"names":["Reanimated","tagMessage","hasWorkletEventHandlers","maybeUnpackValue","isNativeAnimatedEvent","shouldHandleTouchEvents","allowedNativeProps","EMPTY_WHITE_LIST","PropsToFilter","PropsWhiteLists","useMemo","prepareConfig","config","runOnJS","__DEV__","onUpdate","useAnimated","console","warn","dispatchesAnimatedEvents","disableReanimated","Error","shouldUseReanimatedDetector","undefined","needsPointerData","dispatchesReanimatedEvents","prepareConfigForNativeSide","handlerType","filteredConfig","handlerPropsWhiteList","get","key","value","Object","entries","has","assign","isSharedValue","cloneConfig","remapProps","propsMapping","forEach","internalKey","useClonedAndRemappedConfig","Map","propsTransformer","cfg","clonedConfig"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/configUtils.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["useMemo","Reanimated","tagMessage","isNativeAnimatedEvent","shouldHandleTouchEvents","allowedNativeProps","EMPTY_WHITE_LIST","PropsToFilter","PropsWhiteLists","hasWorkletEventHandlers","maybeUnpackValue","prepareConfig","config","runOnJS","__DEV__","onUpdate","useAnimated","console","warn","dispatchesAnimatedEvents","disableReanimated","Error","shouldUseReanimatedDetector","undefined","needsPointerData","dispatchesReanimatedEvents","prepareConfigForNativeSide","handlerType","filteredConfig","handlerPropsWhiteList","get","key","value","Object","entries","has","assign","isSharedValue","cloneConfig","remapProps","propsMapping","forEach","internalKey","useClonedAndRemappedConfig","Map","propsTransformer","cfg","clonedConfig"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/configUtils.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,OAAO;AAE/B,SAASC,UAAU,QAAQ,8CAA8C;AACzE,SAASC,UAAU,QAAQ,gBAAgB;AAM3C,SAASC,qBAAqB,EAAEC,uBAAuB,QAAQ,cAAc;AAC7E,SACEC,kBAAkB,EAClBC,gBAAgB,EAChBC,aAAa,EACbC,eAAe,QACV,kBAAkB;AACzB,SAASC,uBAAuB,EAAEC,gBAAgB,QAAQ,mBAAmB;AAE7E,OAAO,SAASC,aAAaA,CAI3BC,MAAsE,EAAE;EACxE,MAAMC,OAAO,GAAGH,gBAAgB,CAACE,MAAM,CAACC,OAAO,CAAC;EAEhD,IACEC,OAAO,IACPX,qBAAqB,CAACS,MAAM,CAACG,QAAQ,CAAC,IACtC,CAACH,MAAM,CAACI,WAAW,EACnB;IACAC,OAAO,CAACC,IAAI,CACVhB,UAAU,CACR,gFAAgF,GAC9E,6EAA6E,GAC7E,uDACJ,CACF,CAAC;EACH;EAEAU,MAAM,CAACO,wBAAwB,GAC7BP,MAAM,CAACI,WAAW,IAAIb,qBAAqB,CAACS,MAAM,CAACG,QAAQ,CAAC;;EAE9D;EACA,IACED,OAAO,IACPF,MAAM,CAACO,wBAAwB,KAC9BP,MAAM,CAACQ,iBAAiB,KAAK,KAAK,IAAIR,MAAM,CAACC,OAAO,KAAK,KAAK,CAAC,EAChE;IACA,MAAM,IAAIQ,KAAK,CACbnB,UAAU,CACR,gJACF,CACF,CAAC;EACH;EAEA,IAAIU,MAAM,CAACO,wBAAwB,EAAE;IACnCP,MAAM,CAACQ,iBAAiB,GAAG,IAAI;EACjC;EAEAR,MAAM,CAACU,2BAA2B,GAChC,CAACV,MAAM,CAACQ,iBAAiB,IACzBnB,UAAU,KAAKsB,SAAS,IACxBd,uBAAuB,CAACG,MAAM,CAAC,IAC/B,CAACA,MAAM,CAACO,wBAAwB;EAClCP,MAAM,CAACY,gBAAgB,GAAGpB,uBAAuB,CAACQ,MAAM,CAAC;EACzDA,MAAM,CAACa,0BAA0B,GAC/Bb,MAAM,CAACU,2BAA2B,IAAI,CAACT,OAAO;AAClD;AAEA,OAAO,SAASa,0BAA0BA,CAKxCC,WAA8B,EAC9Bf,MAAsE,EACtE;EACA;EACA,MAAMgB,cAIL,GAAG,CAAC,CAAC;EACN,MAAMC,qBAAqB,GACzBrB,eAAe,CAACsB,GAAG,CAACH,WAAW,CAAC,IAAIrB,gBAAgB;EAEtD,KAAK,MAAM,CAACyB,GAAG,EAAEC,KAAK,CAAC,IAAIC,MAAM,CAACC,OAAO,CAACtB,MAAM,CAAC,EAAE;IACjD;IACA,IAAIP,kBAAkB,CAAC8B,GAAG,CAACJ,GAAG,CAAC,IAAIF,qBAAqB,CAACM,GAAG,CAACJ,GAAG,CAAC,EAAE;MACjEE,MAAM,CAACG,MAAM,CAACR,cAAc,EAAE;QAC5B,CAACG,GAAG,GAAG9B,UAAU,EAAEoC,aAAa,CAACL,KAAK,CAAC,GAAGA,KAAK,CAACA,KAAK,GAAGA;MAC1D,CAAC,CAAC;IACJ,CAAC,MAAM,IAAIzB,aAAa,CAAC4B,GAAG,CAACJ,GAAG,CAAC,EAAE;MACjC;IACF,CAAC,MAAM;MACLd,OAAO,CAACC,IAAI,CACVhB,UAAU,CACR,GAAG6B,GAAG,gCAAgCJ,WAAW,uBACnD,CACF,CAAC;IACH;EACF;EAEA,OAAOC,cAAc;AACvB;AAEA,SAASU,WAAWA,CAKlB1B,MAEC,EAC+D;EAChE,OAAO;IAAE,GAAGA;EAAO,CAAC;AAKtB;AAEA,SAAS2B,UAAUA,CAIjB3B,MAAiC,EACjC4B,YAAiC,EAChB;EAGjBA,YAAY,CAACC,OAAO,CAAC,CAACC,WAAW,EAAEX,GAAG,KAAK;IACzC,IAAIA,GAAG,IAAInB,MAAM,EAAE;MACjBA,MAAM,CAAC8B,WAAW,CAAuB,GACvC9B,MAAM,CAACmB,GAAG,CAAuB;;MAEnC;MACA,OAAOnB,MAAM,CAACmB,GAAG,CAAuB;IAC1C;EACF,CAAC,CAAC;EAEF,OAAOnB,MAAM;AACf;AAEA,OAAO,SAAS+B,0BAA0BA,CAMxC/B,MAEC,EACD4B,YAAiC,GAAG,IAAII,GAAG,CAAC,CAAC,EAC7CC,gBAA8D,GAAIC,GAAG,IAAKA,GAAG,EACL;EACxE,OAAO9C,OAAO,CAAC,MAAM;IACnB,MAAM+C,YAAY,GAAGT,WAAW,CAI9B1B,MAAM,CAAC;IAET,OAAOiC,gBAAgB,CACrBN,UAAU,CACRQ,YAAY,EACZP,YACF,CACF,CAAC;EACH,CAAC,EAAE,CAAC5B,MAAM,EAAE4B,YAAY,EAAEK,gBAAgB,CAAC,CAAC;AAC9C","ignoreList":[]}
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
 
3
3
  import { useMemo } from 'react';
4
- import { TouchEventType } from '../../../TouchEventType';
5
4
  import { CALLBACK_TYPE } from '../../../handlers/gestures/gesture';
5
+ import { TouchEventType } from '../../../TouchEventType';
6
6
  export function useMemoizedGestureCallbacks(callbacks) {
7
7
  return useMemo(() => ({
8
8
  ...(callbacks.onBegin ? {
@@ -74,17 +74,13 @@ export function touchEventTypeToCallbackType(eventType) {
74
74
  }
75
75
  return CALLBACK_TYPE.UNDEFINED;
76
76
  }
77
- export function runCallback(type, callbacks, event, didSucceed) {
77
+ export function runCallback(type, callbacks, event) {
78
78
  'worklet';
79
79
 
80
80
  const handler = getHandler(type, callbacks);
81
81
  if (!handler) {
82
82
  return;
83
83
  }
84
- if (didSucceed === undefined) {
85
- handler(event);
86
- } else {
87
- handler(event, didSucceed);
88
- }
84
+ handler(event);
89
85
  }
90
86
  //# sourceMappingURL=eventHandlersUtils.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["useMemo","TouchEventType","CALLBACK_TYPE","useMemoizedGestureCallbacks","callbacks","onBegin","onActivate","onDeactivate","onFinalize","onUpdate","onTouchesDown","onTouchesMove","onTouchesUp","onTouchesCancel","getHandler","type","BEGAN","START","UPDATE","END","FINALIZE","TOUCHES_DOWN","TOUCHES_MOVE","TOUCHES_UP","TOUCHES_CANCEL","touchEventTypeToCallbackType","eventType","UNDEFINED","runCallback","event","didSucceed","handler","undefined"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/eventHandlersUtils.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["useMemo","CALLBACK_TYPE","TouchEventType","useMemoizedGestureCallbacks","callbacks","onBegin","onActivate","onDeactivate","onFinalize","onUpdate","onTouchesDown","onTouchesMove","onTouchesUp","onTouchesCancel","getHandler","type","BEGAN","START","UPDATE","END","FINALIZE","TOUCHES_DOWN","TOUCHES_MOVE","TOUCHES_UP","TOUCHES_CANCEL","touchEventTypeToCallbackType","eventType","UNDEFINED","runCallback","event","handler"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/eventHandlersUtils.ts"],"mappings":"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","ignoreList":[]}
@@ -60,4 +60,14 @@ export function getChangeEventCalculator(diffCalculator) {
60
60
  return current;
61
61
  };
62
62
  }
63
+ export function isTouchEvent(event) {
64
+ 'worklet';
65
+
66
+ return 'allTouches' in event;
67
+ }
68
+ export function isStateChangeEvent(event) {
69
+ 'worklet';
70
+
71
+ return 'oldState' in event && event.oldState !== undefined;
72
+ }
63
73
  //# sourceMappingURL=eventUtils.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["tagMessage","isNativeEvent","event","maybeExtractNativeEvent","nativeEvent","flattenAndFilterEvent","handlerTag","handlerData","isEventForHandlerWithTag","isNativeAnimatedEvent","callback","checkMappingForChangeProperties","animatedEvent","mapping","_argMapping","key","startsWith","Error","shouldHandleTouchEvents","config","onTouchesDown","onTouchesMove","onTouchesUp","onTouchesCancel","getChangeEventCalculator","diffCalculator","current","previous","currentEventData","previousEventData","changePayload"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/eventUtils.ts"],"mappings":";;AAYA,SAASA,UAAU,QAAQ,gBAAgB;AAE3C,SAASC,aAAaA,CACpBC,KAAuD,EAIb;EAC1C,SAAS;;EAET,OAAO,aAAa,IAAIA,KAAK;AAC/B;AAEA,OAAO,SAASC,uBAAuBA,CACrCD,KAAuD,EAIA;EACvD,SAAS;;EAET,OAAOD,aAAa,CAACC,KAAK,CAAC,GAAGA,KAAK,CAACE,WAAW,GAAGF,KAAK;AACzD;AAEA,OAAO,SAASG,qBAAqBA,CACnCH,KAEwD,EAC5B;EAC5B,SAAS;;EAET,OAAO;IAAEI,UAAU,EAAEJ,KAAK,CAACI,UAAU;IAAE,GAAGJ,KAAK,CAACK;EAAY,CAAC;AAC/D;AAEA,OAAO,SAASC,wBAAwBA,CACtCF,UAAkB,EAClBJ,KAA0E,EAC1E;EACA,SAAS;;EAET,OAAOA,KAAK,CAACI,UAAU,KAAKA,UAAU;AACxC;AAEA,OAAO,SAASG,qBAAqBA,CACnCC,QAGa,EACc;EAC3B,SAAS;;EAET,OAAO,CAAC,CAACA,QAAQ,IAAI,aAAa,IAAIA,QAAQ;AAChD;AAEA,OAAO,SAASC,+BAA+BA,CAACC,aAA4B,EAAE;EAC5E,KAAK,MAAMC,OAAO,IAAID,aAAa,CAACE,WAAW,EAAE;IAC/C,IACE,CAACD,OAAO,IACR,EAAE,aAAa,IAAIA,OAAO,IAAI,aAAa,IAAIA,OAAO,CAACT,WAAW,CAAC,EACnE;MACA;IACF;IAEA,KAAK,MAAMW,GAAG,IAAIF,OAAO,CAACT,WAAW,CAACG,WAAW,EAAE;MACjD,IAAIQ,GAAG,CAACC,UAAU,CAAC,QAAQ,CAAC,EAAE;QAC5B,MAAM,IAAIC,KAAK,CACbjB,UAAU,CAAC,GAAGe,GAAG,8CAA8C,CACjE,CAAC;MACH;IACF;EACF;AACF;AAEA,OAAO,SAASG,uBAAuBA,CACrCC,MAAgD,EAChD;EACA,OACE,CAAC,CAACA,MAAM,CAACC,aAAa,IACtB,CAAC,CAACD,MAAM,CAACE,aAAa,IACtB,CAAC,CAACF,MAAM,CAACG,WAAW,IACpB,CAAC,CAACH,MAAM,CAACI,eAAe;AAE5B;AAEA,OAAO,SAASC,wBAAwBA,CACtCC,cAAgD,EACZ;EACpC,SAAS;;EACT,OAAO,CACLC,OAAwD,EACxDC,QAA0D,KACvD;IACH,SAAS;;IACT,MAAMC,gBAAgB,GAAGF,OAAO,CAACnB,WAAW;IAC5C,MAAMsB,iBAAiB,GAAGF,QAAQ,GAAGA,QAAQ,CAACpB,WAAW,GAAG,IAAI;IAEhE,MAAMuB,aAAa,GAAGL,cAAc,CAACG,gBAAgB,EAAEC,iBAAiB,CAAC;IAEzEH,OAAO,CAACnB,WAAW,GAAG;MAAE,GAAGqB,gBAAgB;MAAE,GAAGE;IAAc,CAAC;IAE/D,OAAOJ,OAAO;EAChB,CAAC;AACH","ignoreList":[]}
1
+ {"version":3,"names":["tagMessage","isNativeEvent","event","maybeExtractNativeEvent","nativeEvent","flattenAndFilterEvent","handlerTag","handlerData","isEventForHandlerWithTag","isNativeAnimatedEvent","callback","checkMappingForChangeProperties","animatedEvent","mapping","_argMapping","key","startsWith","Error","shouldHandleTouchEvents","config","onTouchesDown","onTouchesMove","onTouchesUp","onTouchesCancel","getChangeEventCalculator","diffCalculator","current","previous","currentEventData","previousEventData","changePayload","isTouchEvent","isStateChangeEvent","oldState","undefined"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/eventUtils.ts"],"mappings":";;AAGA,SAASA,UAAU,QAAQ,gBAAgB;AAY3C,SAASC,aAAaA,CACpBC,KAA6E,EAMnC;EAC1C,SAAS;;EAET,OAAO,aAAa,IAAIA,KAAK;AAC/B;AAEA,OAAO,SAASC,uBAAuBA,CAIrCD,KAA6E,EAItB;EACvD,SAAS;;EAET,OAAOD,aAAa,CAACC,KAAK,CAAC,GAAGA,KAAK,CAACE,WAAW,GAAGF,KAAK;AACzD;AAEA,OAAO,SAASG,qBAAqBA,CACnCH,KAEwD,EAC5B;EAC5B,SAAS;;EAET,OAAO;IAAEI,UAAU,EAAEJ,KAAK,CAACI,UAAU;IAAE,GAAGJ,KAAK,CAACK;EAAY,CAAC;AAC/D;AAEA,OAAO,SAASC,wBAAwBA,CAItCF,UAAkB,EAClBJ,KAGqB,EACrB;EACA,SAAS;;EAET,OAAOA,KAAK,CAACI,UAAU,KAAKA,UAAU;AACxC;AAEA,OAAO,SAASG,qBAAqBA,CACnCC,QAGa,EACc;EAC3B,SAAS;;EAET,OAAO,CAAC,CAACA,QAAQ,IAAI,aAAa,IAAIA,QAAQ;AAChD;AAEA,OAAO,SAASC,+BAA+BA,CAACC,aAA4B,EAAE;EAC5E,KAAK,MAAMC,OAAO,IAAID,aAAa,CAACE,WAAW,EAAE;IAC/C,IACE,CAACD,OAAO,IACR,EAAE,aAAa,IAAIA,OAAO,IAAI,aAAa,IAAIA,OAAO,CAACT,WAAW,CAAC,EACnE;MACA;IACF;IAEA,KAAK,MAAMW,GAAG,IAAIF,OAAO,CAACT,WAAW,CAACG,WAAW,EAAE;MACjD,IAAIQ,GAAG,CAACC,UAAU,CAAC,QAAQ,CAAC,EAAE;QAC5B,MAAM,IAAIC,KAAK,CACbjB,UAAU,CAAC,GAAGe,GAAG,8CAA8C,CACjE,CAAC;MACH;IACF;EACF;AACF;AAEA,OAAO,SAASG,uBAAuBA,CAIrCC,MAAsE,EAAE;EACxE,OACE,CAAC,CAACA,MAAM,CAACC,aAAa,IACtB,CAAC,CAACD,MAAM,CAACE,aAAa,IACtB,CAAC,CAACF,MAAM,CAACG,WAAW,IACpB,CAAC,CAACH,MAAM,CAACI,eAAe;AAE5B;AAEA,OAAO,SAASC,wBAAwBA,CACtCC,cAAwD,EACZ;EAC5C,SAAS;;EACT,OAAO,CACLC,OAAgE,EAChEC,QAAkE,KAC/D;IACH,SAAS;;IACT,MAAMC,gBAAgB,GAAGF,OAAO,CAACnB,WAAW;IAC5C,MAAMsB,iBAAiB,GAAGF,QAAQ,GAAGA,QAAQ,CAACpB,WAAW,GAAG,IAAI;IAEhE,MAAMuB,aAAa,GAAGL,cAAc,CAACG,gBAAgB,EAAEC,iBAAiB,CAAC;IAEzEH,OAAO,CAACnB,WAAW,GAAG;MAAE,GAAGqB,gBAAgB;MAAE,GAAGE;IAAc,CAAC;IAE/D,OAAOJ,OAAO;EAChB,CAAC;AACH;AAEA,OAAO,SAASK,YAAYA,CAI1B7B,KAGqB,EACO;EAC5B,SAAS;;EAET,OAAO,YAAY,IAAIA,KAAK;AAC9B;AAEA,OAAO,SAAS8B,kBAAkBA,CAIhC9B,KAGqB,EAC0C;EAC/D,SAAS;;EAET,OAAO,UAAU,IAAIA,KAAK,IAAIA,KAAK,CAAC+B,QAAQ,KAAKC,SAAS;AAC5D","ignoreList":[]}
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
 
3
3
  export { prepareConfig, prepareConfigForNativeSide, useClonedAndRemappedConfig } from './configUtils';
4
- export { useMemoizedGestureCallbacks, touchEventTypeToCallbackType, runCallback } from './eventHandlersUtils';
5
- export { maybeExtractNativeEvent, flattenAndFilterEvent, isEventForHandlerWithTag, isNativeAnimatedEvent, checkMappingForChangeProperties, shouldHandleTouchEvents, getChangeEventCalculator } from './eventUtils';
6
- export { bindSharedValues, unbindSharedValues, hasWorkletEventHandlers, maybeUnpackValue } from './reanimatedUtils';
7
- export { isComposedGesture, prepareRelations, containsDuplicates } from './relationUtils';
8
- export { allowedNativeProps, NativeWrapperProps, HandlerCallbacks, PropsToFilter, PropsWhiteLists, EMPTY_WHITE_LIST } from './propsWhiteList';
4
+ export { runCallback, touchEventTypeToCallbackType, useMemoizedGestureCallbacks } from './eventHandlersUtils';
5
+ export { checkMappingForChangeProperties, flattenAndFilterEvent, getChangeEventCalculator, isEventForHandlerWithTag, isNativeAnimatedEvent, maybeExtractNativeEvent, shouldHandleTouchEvents } from './eventUtils';
6
+ export { allowedNativeProps, EMPTY_WHITE_LIST, HandlerCallbacks, NativeWrapperProps, PropsToFilter, PropsWhiteLists } from './propsWhiteList';
7
+ export { bindSharedValues, hasWorkletEventHandlers, maybeUnpackValue, unbindSharedValues } from './reanimatedUtils';
8
+ export { containsDuplicates, isComposedGesture, prepareRelations } from './relationUtils';
9
9
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["prepareConfig","prepareConfigForNativeSide","useClonedAndRemappedConfig","useMemoizedGestureCallbacks","touchEventTypeToCallbackType","runCallback","maybeExtractNativeEvent","flattenAndFilterEvent","isEventForHandlerWithTag","isNativeAnimatedEvent","checkMappingForChangeProperties","shouldHandleTouchEvents","getChangeEventCalculator","bindSharedValues","unbindSharedValues","hasWorkletEventHandlers","maybeUnpackValue","isComposedGesture","prepareRelations","containsDuplicates","allowedNativeProps","NativeWrapperProps","HandlerCallbacks","PropsToFilter","PropsWhiteLists","EMPTY_WHITE_LIST"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/index.ts"],"mappings":";;AAAA,SACEA,aAAa,EACbC,0BAA0B,EAC1BC,0BAA0B,QACrB,eAAe;AAEtB,SACEC,2BAA2B,EAC3BC,4BAA4B,EAC5BC,WAAW,QACN,sBAAsB;AAE7B,SACEC,uBAAuB,EACvBC,qBAAqB,EACrBC,wBAAwB,EACxBC,qBAAqB,EACrBC,+BAA+B,EAC/BC,uBAAuB,EACvBC,wBAAwB,QACnB,cAAc;AAErB,SACEC,gBAAgB,EAChBC,kBAAkB,EAClBC,uBAAuB,EACvBC,gBAAgB,QACX,mBAAmB;AAE1B,SACEC,iBAAiB,EACjBC,gBAAgB,EAChBC,kBAAkB,QACb,iBAAiB;AAExB,SACEC,kBAAkB,EAClBC,kBAAkB,EAClBC,gBAAgB,EAChBC,aAAa,EACbC,eAAe,EACfC,gBAAgB,QACX,kBAAkB","ignoreList":[]}
1
+ {"version":3,"names":["prepareConfig","prepareConfigForNativeSide","useClonedAndRemappedConfig","runCallback","touchEventTypeToCallbackType","useMemoizedGestureCallbacks","checkMappingForChangeProperties","flattenAndFilterEvent","getChangeEventCalculator","isEventForHandlerWithTag","isNativeAnimatedEvent","maybeExtractNativeEvent","shouldHandleTouchEvents","allowedNativeProps","EMPTY_WHITE_LIST","HandlerCallbacks","NativeWrapperProps","PropsToFilter","PropsWhiteLists","bindSharedValues","hasWorkletEventHandlers","maybeUnpackValue","unbindSharedValues","containsDuplicates","isComposedGesture","prepareRelations"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/index.ts"],"mappings":";;AAAA,SACEA,aAAa,EACbC,0BAA0B,EAC1BC,0BAA0B,QACrB,eAAe;AACtB,SACEC,WAAW,EACXC,4BAA4B,EAC5BC,2BAA2B,QACtB,sBAAsB;AAC7B,SACEC,+BAA+B,EAC/BC,qBAAqB,EACrBC,wBAAwB,EACxBC,wBAAwB,EACxBC,qBAAqB,EACrBC,uBAAuB,EACvBC,uBAAuB,QAClB,cAAc;AACrB,SACEC,kBAAkB,EAClBC,gBAAgB,EAChBC,gBAAgB,EAChBC,kBAAkB,EAClBC,aAAa,EACbC,eAAe,QACV,kBAAkB;AACzB,SACEC,gBAAgB,EAChBC,uBAAuB,EACvBC,gBAAgB,EAChBC,kBAAkB,QACb,mBAAmB;AAC1B,SACEC,kBAAkB,EAClBC,iBAAiB,EACjBC,gBAAgB,QACX,iBAAiB","ignoreList":[]}
@@ -1,12 +1,12 @@
1
1
  "use strict";
2
2
 
3
3
  import { SingleGestureName } from '../../types';
4
- import { FlingNativeProperties } from '../gestures/fling/FlingProperties';
5
- import { HoverNativeProperties } from '../gestures/hover/HoverProperties';
6
- import { LongPressNativeProperties } from '../gestures/longPress/LongPressProperties';
7
- import { NativeHandlerNativeProperties } from '../gestures/native/NativeProperties';
8
- import { PanNativeProperties } from '../gestures/pan/PanProperties';
9
- import { TapNativeProperties } from '../gestures/tap/TapProperties';
4
+ import { FlingNativeProperties } from '../gestures/fling/FlingTypes';
5
+ import { HoverNativeProperties } from '../gestures/hover/HoverTypes';
6
+ import { LongPressNativeProperties } from '../gestures/longPress/LongPressTypes';
7
+ import { NativeHandlerNativeProperties } from '../gestures/native/NativeTypes';
8
+ import { PanNativeProperties } from '../gestures/pan/PanTypes';
9
+ import { TapNativeProperties } from '../gestures/tap/TapTypes';
10
10
  const CommonConfig = new Set(['enabled', 'shouldCancelWhenOutside', 'hitSlop', 'activeCursor', 'mouseButton', 'testID', 'cancelsTouchesInView', 'manualActivation']);
11
11
  const ExternalRelationsConfig = new Set(['simultaneousWith', 'requireToFail', 'block']);
12
12
  export const allowedNativeProps = new Set([...CommonConfig,
@@ -20,7 +20,9 @@ if (!__DEV__) {
20
20
  export const HandlerCallbacks = new Set(['onBegin', 'onActivate', 'onUpdate', 'onDeactivate', 'onFinalize', 'onTouchesDown', 'onTouchesMove', 'onTouchesUp', 'onTouchesCancel']);
21
21
  export const PropsToFilter = new Set([...HandlerCallbacks, ...ExternalRelationsConfig,
22
22
  // Config props
23
- 'changeEventCalculator', 'disableReanimated', 'shouldUseReanimatedDetector', 'useAnimated', 'runOnJS']);
23
+ 'fillInDefaultValues', 'changeEventCalculator', 'disableReanimated', 'shouldUseReanimatedDetector', 'useAnimated', 'runOnJS',
24
+ // Pan offset props before remapping:
25
+ 'activeOffsetY', 'failOffsetX', 'failOffsetY', 'activeOffsetX']);
24
26
  export const PropsWhiteLists = new Map([[SingleGestureName.Pan, PanNativeProperties], [SingleGestureName.Tap, TapNativeProperties], [SingleGestureName.Native, NativeHandlerNativeProperties], [SingleGestureName.Fling, FlingNativeProperties], [SingleGestureName.Hover, HoverNativeProperties], [SingleGestureName.LongPress, LongPressNativeProperties]]);
25
27
  export const EMPTY_WHITE_LIST = new Set();
26
28
  export const NativeWrapperProps = new Set([...CommonConfig, ...HandlerCallbacks, ...NativeHandlerNativeProperties, ...ExternalRelationsConfig, 'disableReanimated']);
@@ -1 +1 @@
1
- {"version":3,"names":["SingleGestureName","FlingNativeProperties","HoverNativeProperties","LongPressNativeProperties","NativeHandlerNativeProperties","PanNativeProperties","TapNativeProperties","CommonConfig","Set","ExternalRelationsConfig","allowedNativeProps","__DEV__","delete","HandlerCallbacks","PropsToFilter","PropsWhiteLists","Map","Pan","Tap","Native","Fling","Hover","LongPress","EMPTY_WHITE_LIST","NativeWrapperProps"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/propsWhiteList.ts"],"mappings":";;AAAA,SAOEA,iBAAiB,QACZ,aAAa;AAEpB,SAASC,qBAAqB,QAAQ,mCAAmC;AACzE,SAASC,qBAAqB,QAAQ,mCAAmC;AACzE,SAASC,yBAAyB,QAAQ,2CAA2C;AACrF,SAASC,6BAA6B,QAAQ,qCAAqC;AACnF,SAASC,mBAAmB,QAAQ,+BAA+B;AACnE,SAASC,mBAAmB,QAAQ,+BAA+B;AAEnE,MAAMC,YAAY,GAAG,IAAIC,GAAG,CAA4B,CACtD,SAAS,EACT,yBAAyB,EACzB,SAAS,EACT,cAAc,EACd,aAAa,EACb,QAAQ,EACR,sBAAsB,EACtB,kBAAkB,CACnB,CAAC;AAEF,MAAMC,uBAAuB,GAAG,IAAID,GAAG,CAA0B,CAC/D,kBAAkB,EAClB,eAAe,EACf,OAAO,CACR,CAAC;AAEF,OAAO,MAAME,kBAAkB,GAAG,IAAIF,GAAG,CAEvC,CACA,GAAGD,YAAY;AAEf;AACA,YAAY,EACZ,mBAAmB,EACnB,aAAa,EACb,4BAA4B,EAC5B,0BAA0B,EAC1B,kBAAkB,CACnB,CAAC;;AAEF;AACA,IAAI,CAACI,OAAO,EAAE;EACZD,kBAAkB,CAACE,MAAM,CAAC,QAAQ,CAAC;AACrC;AAEA,OAAO,MAAMC,gBAAgB,GAAG,IAAIL,GAAG,CAErC,CACA,SAAS,EACT,YAAY,EACZ,UAAU,EACV,cAAc,EACd,YAAY,EACZ,eAAe,EACf,eAAe,EACf,aAAa,EACb,iBAAiB,CAClB,CAAC;AAEF,OAAO,MAAMM,aAAa,GAAG,IAAIN,GAAG,CAAsC,CACxE,GAAGK,gBAAgB,EACnB,GAAGJ,uBAAuB;AAE1B;AACA,uBAAuB,EACvB,mBAAmB,EACnB,6BAA6B,EAC7B,aAAa,EACb,SAAS,CACV,CAAC;AAEF,OAAO,MAAMM,eAAe,GAAG,IAAIC,GAAG,CAGpC,CACA,CAAChB,iBAAiB,CAACiB,GAAG,EAAEZ,mBAAmB,CAAC,EAC5C,CAACL,iBAAiB,CAACkB,GAAG,EAAEZ,mBAAmB,CAAC,EAC5C,CAACN,iBAAiB,CAACmB,MAAM,EAAEf,6BAA6B,CAAC,EACzD,CAACJ,iBAAiB,CAACoB,KAAK,EAAEnB,qBAAqB,CAAC,EAChD,CAACD,iBAAiB,CAACqB,KAAK,EAAEnB,qBAAqB,CAAC,EAChD,CAACF,iBAAiB,CAACsB,SAAS,EAAEnB,yBAAyB,CAAC,CACzD,CAAC;AAEF,OAAO,MAAMoB,gBAAgB,GAAG,IAAIf,GAAG,CAAS,CAAC;AAEjD,OAAO,MAAMgB,kBAAkB,GAAG,IAAIhB,GAAG,CAAgC,CACvE,GAAGD,YAAY,EACf,GAAGM,gBAAgB,EACnB,GAAGT,6BAA6B,EAChC,GAAGK,uBAAuB,EAC1B,mBAAmB,CACpB,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["SingleGestureName","FlingNativeProperties","HoverNativeProperties","LongPressNativeProperties","NativeHandlerNativeProperties","PanNativeProperties","TapNativeProperties","CommonConfig","Set","ExternalRelationsConfig","allowedNativeProps","__DEV__","delete","HandlerCallbacks","PropsToFilter","PropsWhiteLists","Map","Pan","Tap","Native","Fling","Hover","LongPress","EMPTY_WHITE_LIST","NativeWrapperProps"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/propsWhiteList.ts"],"mappings":";;AAQA,SAASA,iBAAiB,QAAQ,aAAa;AAE/C,SAASC,qBAAqB,QAAQ,8BAA8B;AACpE,SAASC,qBAAqB,QAAQ,8BAA8B;AACpE,SAASC,yBAAyB,QAAQ,sCAAsC;AAChF,SAASC,6BAA6B,QAAQ,gCAAgC;AAC9E,SAASC,mBAAmB,QAAQ,0BAA0B;AAC9D,SAASC,mBAAmB,QAAQ,0BAA0B;AAE9D,MAAMC,YAAY,GAAG,IAAIC,GAAG,CAA4B,CACtD,SAAS,EACT,yBAAyB,EACzB,SAAS,EACT,cAAc,EACd,aAAa,EACb,QAAQ,EACR,sBAAsB,EACtB,kBAAkB,CACnB,CAAC;AAEF,MAAMC,uBAAuB,GAAG,IAAID,GAAG,CAA0B,CAC/D,kBAAkB,EAClB,eAAe,EACf,OAAO,CACR,CAAC;AAEF,OAAO,MAAME,kBAAkB,GAAG,IAAIF,GAAG,CAEvC,CACA,GAAGD,YAAY;AAEf;AACA,YAAY,EACZ,mBAAmB,EACnB,aAAa,EACb,4BAA4B,EAC5B,0BAA0B,EAC1B,kBAAkB,CACnB,CAAC;;AAEF;AACA,IAAI,CAACI,OAAO,EAAE;EACZD,kBAAkB,CAACE,MAAM,CAAC,QAAQ,CAAC;AACrC;AAEA,OAAO,MAAMC,gBAAgB,GAAG,IAAIL,GAAG,CAErC,CACA,SAAS,EACT,YAAY,EACZ,UAAU,EACV,cAAc,EACd,YAAY,EACZ,eAAe,EACf,eAAe,EACf,aAAa,EACb,iBAAiB,CAClB,CAAC;AAEF,OAAO,MAAMM,aAAa,GAAG,IAAIN,GAAG,CAElC,CACA,GAAGK,gBAAgB,EACnB,GAAGJ,uBAAuB;AAE1B;AACA,qBAAqB,EACrB,uBAAuB,EACvB,mBAAmB,EACnB,6BAA6B,EAC7B,aAAa,EACb,SAAS;AAET;AACA,eAAe,EACf,aAAa,EACb,aAAa,EACb,eAAe,CAChB,CAAC;AAEF,OAAO,MAAMM,eAAe,GAAG,IAAIC,GAAG,CAGpC,CACA,CAAChB,iBAAiB,CAACiB,GAAG,EAAEZ,mBAAmB,CAAC,EAC5C,CAACL,iBAAiB,CAACkB,GAAG,EAAEZ,mBAAmB,CAAC,EAC5C,CAACN,iBAAiB,CAACmB,MAAM,EAAEf,6BAA6B,CAAC,EACzD,CAACJ,iBAAiB,CAACoB,KAAK,EAAEnB,qBAAqB,CAAC,EAChD,CAACD,iBAAiB,CAACqB,KAAK,EAAEnB,qBAAqB,CAAC,EAChD,CAACF,iBAAiB,CAACsB,SAAS,EAAEnB,yBAAyB,CAAC,CACzD,CAAC;AAEF,OAAO,MAAMoB,gBAAgB,GAAG,IAAIf,GAAG,CAAS,CAAC;AAEjD,OAAO,MAAMgB,kBAAkB,GAAG,IAAIhB,GAAG,CAEvC,CACA,GAAGD,YAAY,EACf,GAAGM,gBAAgB,EACnB,GAAGT,6BAA6B,EAChC,GAAGK,uBAAuB,EAC1B,mBAAmB,CACpB,CAAC","ignoreList":[]}
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
- import { NativeProxy } from '../../NativeProxy';
4
3
  import { Reanimated } from '../../../handlers/gestures/reanimatedWrapper';
4
+ import { NativeProxy } from '../../NativeProxy';
5
5
  import { HandlerCallbacks } from './propsWhiteList';
6
6
 
7
7
  // Variant of djb2 hash function.
@@ -1 +1 @@
1
- {"version":3,"names":["NativeProxy","Reanimated","HandlerCallbacks","hash","str","len","length","h","i","charCodeAt","SHARED_VALUE_OFFSET","updateGestureHandlerConfig","bindSharedValues","config","handlerTag","undefined","baseListenerId","attachListener","sharedValue","configKey","keyHash","listenerId","addListener","value","dispatchesReanimatedEvents","shouldUseReanimatedDetector","key","maybeSharedValue","Object","entries","isSharedValue","runOnUI","unbindSharedValues","removeListener","hasWorkletEventHandlers","some","has","maybeUnpackValue","v"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/reanimatedUtils.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["Reanimated","NativeProxy","HandlerCallbacks","hash","str","len","length","h","i","charCodeAt","SHARED_VALUE_OFFSET","updateGestureHandlerConfig","bindSharedValues","config","handlerTag","undefined","baseListenerId","attachListener","sharedValue","configKey","keyHash","listenerId","addListener","value","dispatchesReanimatedEvents","shouldUseReanimatedDetector","key","maybeSharedValue","Object","entries","isSharedValue","runOnUI","unbindSharedValues","removeListener","hasWorkletEventHandlers","some","has","maybeUnpackValue","v"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/reanimatedUtils.ts"],"mappings":"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","ignoreList":[]}
@@ -1,8 +1,7 @@
1
1
  "use strict";
2
2
 
3
- export { GestureDetector, VirtualGestureDetector, InterceptingGestureDetector, GestureDetectorType } from './detectors';
4
- export { useSimultaneousGestures, useExclusiveGestures, useCompetingGestures, useTapGesture, useFlingGesture, useLongPressGesture, usePinchGesture, useRotationGesture, useHoverGesture, useManualGesture, useNativeGesture, usePanGesture } from './hooks';
5
- export { RawButton, BaseButton, RectButton, BorderlessButton, Pressable, ScrollView, Switch, TextInput, FlatList, RefreshControl } from './components';
3
+ export { BaseButton, BorderlessButton, FlatList, Pressable, RawButton, RectButton, RefreshControl, ScrollView, Switch, TextInput, Touchable } from './components';
4
+ export { GestureDetector, GestureDetectorType, InterceptingGestureDetector, VirtualGestureDetector } from './detectors';
6
5
  export { GestureStateManager } from './gestureStateManager';
7
- export { default as createNativeWrapper } from './createNativeWrapper';
6
+ export { useCompetingGestures, useExclusiveGestures, useFlingGesture, useHoverGesture, useLongPressGesture, useManualGesture, useNativeGesture, usePanGesture, usePinchGesture, useRotationGesture, useSimultaneousGestures, useTapGesture } from './hooks';
8
7
  //# sourceMappingURL=index.js.map