react-native-gesture-handler 3.0.0-beta.1 → 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 (1365) 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 +8 -4
  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 +60 -6
  10. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerDetectorViewManager.kt +1 -1
  11. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +2 -0
  12. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +4 -10
  13. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +2 -1
  14. package/apple/Handlers/RNFlingHandler.m +7 -7
  15. package/apple/Handlers/RNForceTouchHandler.m +2 -2
  16. package/apple/Handlers/RNHoverHandler.m +38 -7
  17. package/apple/Handlers/RNLongPressHandler.m +21 -8
  18. package/apple/Handlers/RNManualHandler.m +2 -2
  19. package/apple/Handlers/RNNativeViewHandler.mm +67 -13
  20. package/apple/Handlers/RNPanHandler.m +4 -4
  21. package/apple/Handlers/RNPinchHandler.m +11 -4
  22. package/apple/Handlers/RNRotationHandler.m +11 -4
  23. package/apple/Handlers/RNTapHandler.m +6 -4
  24. package/apple/RNGHUIKit.h +2 -0
  25. package/apple/RNGestureHandler.h +16 -1
  26. package/apple/RNGestureHandler.mm +78 -4
  27. package/apple/RNGestureHandlerButton.h +42 -1
  28. package/apple/RNGestureHandlerButton.mm +619 -49
  29. package/apple/RNGestureHandlerButtonComponentView.mm +52 -2
  30. package/apple/RNGestureHandlerDetector.mm +29 -11
  31. package/apple/RNGestureHandlerEvents.h +3 -1
  32. package/apple/RNGestureHandlerEvents.mm +8 -3
  33. package/apple/RNGestureHandlerManager.h +2 -0
  34. package/apple/RNGestureHandlerManager.mm +49 -3
  35. package/apple/RNGestureHandlerModule.mm +17 -10
  36. package/apple/RNGestureHandlerRegistry.h +3 -0
  37. package/apple/RNGestureHandlerRegistry.m +43 -11
  38. package/apple/RNManualActivationRecognizer.m +1 -1
  39. package/jest-utils/package.json +1 -1
  40. package/jestSetup.js +6 -16
  41. package/lib/module/RNGestureHandlerModule.web.js +2 -1
  42. package/lib/module/RNGestureHandlerModule.web.js.map +1 -1
  43. package/lib/module/RNGestureHandlerModule.windows.js +5 -6
  44. package/lib/module/RNGestureHandlerModule.windows.js.map +1 -1
  45. package/lib/module/components/GestureButtons.js +30 -13
  46. package/lib/module/components/GestureButtons.js.map +1 -1
  47. package/lib/module/components/GestureComponents.js +6 -8
  48. package/lib/module/components/GestureComponents.js.map +1 -1
  49. package/lib/module/components/GestureComponents.web.js +3 -4
  50. package/lib/module/components/GestureComponents.web.js.map +1 -1
  51. package/lib/module/components/GestureHandlerButton.js +2 -135
  52. package/lib/module/components/GestureHandlerButton.js.map +1 -1
  53. package/lib/module/components/GestureHandlerButton.web.js +118 -6
  54. package/lib/module/components/GestureHandlerButton.web.js.map +1 -1
  55. package/lib/module/components/GestureHandlerRootView.android.js.map +1 -1
  56. package/lib/module/components/GestureHandlerRootView.js +2 -2
  57. package/lib/module/components/GestureHandlerRootView.js.map +1 -1
  58. package/lib/module/components/GestureHandlerRootView.web.js +2 -2
  59. package/lib/module/components/GestureHandlerRootView.web.js.map +1 -1
  60. package/lib/module/components/Pressable/Pressable.js +16 -10
  61. package/lib/module/components/Pressable/Pressable.js.map +1 -1
  62. package/lib/module/components/Pressable/index.js.map +1 -1
  63. package/lib/module/components/Pressable/stateDefinitions.js +14 -3
  64. package/lib/module/components/Pressable/stateDefinitions.js.map +1 -1
  65. package/lib/module/components/Pressable/utils.js +1 -1
  66. package/lib/module/components/Pressable/utils.js.map +1 -1
  67. package/lib/module/components/ReanimatedDrawerLayout.js +11 -10
  68. package/lib/module/components/ReanimatedDrawerLayout.js.map +1 -1
  69. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js +16 -16
  70. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +1 -1
  71. package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +1 -1
  72. package/lib/module/components/ReanimatedSwipeable/index.js +1 -1
  73. package/lib/module/components/ReanimatedSwipeable/index.js.map +1 -1
  74. package/lib/module/components/Text.js +33 -23
  75. package/lib/module/components/Text.js.map +1 -1
  76. package/lib/module/components/touchables/GenericTouchable.js +9 -13
  77. package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
  78. package/lib/module/components/touchables/TouchableHighlight.js +1 -1
  79. package/lib/module/components/touchables/TouchableHighlight.js.map +1 -1
  80. package/lib/module/components/touchables/TouchableNativeFeedback.android.js +1 -1
  81. package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +1 -1
  82. package/lib/module/components/touchables/TouchableOpacity.js +2 -2
  83. package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
  84. package/lib/module/components/touchables/TouchableWithoutFeedback.js +3 -4
  85. package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  86. package/lib/module/components/touchables/index.js +2 -2
  87. package/lib/module/components/touchables/index.js.map +1 -1
  88. package/lib/module/findNodeHandle.web.js +4 -2
  89. package/lib/module/findNodeHandle.web.js.map +1 -1
  90. package/lib/module/handlers/FlingGestureHandler.js.map +1 -1
  91. package/lib/module/handlers/ForceTouchGestureHandler.js +1 -1
  92. package/lib/module/handlers/ForceTouchGestureHandler.js.map +1 -1
  93. package/lib/module/handlers/LongPressGestureHandler.js.map +1 -1
  94. package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
  95. package/lib/module/handlers/PanGestureHandler.js.map +1 -1
  96. package/lib/module/handlers/PinchGestureHandler.js.map +1 -1
  97. package/lib/module/handlers/RotationGestureHandler.js.map +1 -1
  98. package/lib/module/handlers/TapGestureHandler.js.map +1 -1
  99. package/lib/module/handlers/createHandler.js +10 -10
  100. package/lib/module/handlers/createHandler.js.map +1 -1
  101. package/lib/module/handlers/createNativeWrapper.js +7 -3
  102. package/lib/module/handlers/createNativeWrapper.js.map +1 -1
  103. package/lib/module/handlers/gestures/GestureDetector/Wrap.js +1 -1
  104. package/lib/module/handlers/gestures/GestureDetector/Wrap.js.map +1 -1
  105. package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js +5 -4
  106. package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js.map +1 -1
  107. package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js +5 -5
  108. package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js.map +1 -1
  109. package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js +2 -2
  110. package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js.map +1 -1
  111. package/lib/module/handlers/gestures/GestureDetector/index.js +6 -6
  112. package/lib/module/handlers/gestures/GestureDetector/index.js.map +1 -1
  113. package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js +3 -3
  114. package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js.map +1 -1
  115. package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js +3 -3
  116. package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +1 -1
  117. package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js +4 -3
  118. package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +1 -1
  119. package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js +2 -2
  120. package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js.map +1 -1
  121. package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js +2 -2
  122. package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js.map +1 -1
  123. package/lib/module/handlers/gestures/GestureDetector/utils.js +7 -7
  124. package/lib/module/handlers/gestures/GestureDetector/utils.js.map +1 -1
  125. package/lib/module/handlers/gestures/eventReceiver.js.map +1 -1
  126. package/lib/module/handlers/gestures/flingGesture.js.map +1 -1
  127. package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -1
  128. package/lib/module/handlers/gestures/gesture.js +1 -1
  129. package/lib/module/handlers/gestures/gesture.js.map +1 -1
  130. package/lib/module/handlers/gestures/gestureComposition.js.map +1 -1
  131. package/lib/module/handlers/gestures/gestureObjects.js +3 -3
  132. package/lib/module/handlers/gestures/gestureObjects.js.map +1 -1
  133. package/lib/module/handlers/gestures/hoverGesture.js.map +1 -1
  134. package/lib/module/handlers/gestures/longPressGesture.js.map +1 -1
  135. package/lib/module/handlers/gestures/nativeGesture.js.map +1 -1
  136. package/lib/module/handlers/gestures/panGesture.js.map +1 -1
  137. package/lib/module/handlers/gestures/pinchGesture.js.map +1 -1
  138. package/lib/module/handlers/gestures/reanimatedWrapper.js.map +1 -1
  139. package/lib/module/handlers/gestures/rotationGesture.js.map +1 -1
  140. package/lib/module/handlers/gestures/tapGesture.js.map +1 -1
  141. package/lib/module/handlers/handlersRegistry.js.map +1 -1
  142. package/lib/module/handlers/utils.js +4 -4
  143. package/lib/module/handlers/utils.js.map +1 -1
  144. package/lib/module/index.js +15 -16
  145. package/lib/module/index.js.map +1 -1
  146. package/lib/module/jestUtils/index.js +1 -1
  147. package/lib/module/jestUtils/index.js.map +1 -1
  148. package/lib/module/jestUtils/jestUtils.js +0 -1
  149. package/lib/module/jestUtils/jestUtils.js.map +1 -1
  150. package/lib/module/mocks/GestureButtons.js +8 -5
  151. package/lib/module/mocks/GestureButtons.js.map +1 -1
  152. package/lib/module/mocks/Touchables.js +4 -0
  153. package/lib/module/mocks/Touchables.js.map +1 -0
  154. package/lib/module/mocks/gestureComponents.js +1 -12
  155. package/lib/module/mocks/gestureComponents.js.map +1 -1
  156. package/lib/module/specs/NativeRNGestureHandlerModule.js.map +1 -1
  157. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
  158. package/lib/module/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
  159. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
  160. package/lib/module/useIsScreenReaderEnabled.js +26 -0
  161. package/lib/module/useIsScreenReaderEnabled.js.map +1 -0
  162. package/lib/module/v3/NativeProxy.js.map +1 -1
  163. package/lib/module/v3/NativeProxy.web.js.map +1 -1
  164. package/lib/module/v3/components/GestureButtons.js +41 -25
  165. package/lib/module/v3/components/GestureButtons.js.map +1 -1
  166. package/lib/module/v3/components/GestureComponents.js +3 -3
  167. package/lib/module/v3/components/GestureComponents.js.map +1 -1
  168. package/lib/module/v3/components/GestureComponents.web.js +3 -4
  169. package/lib/module/v3/components/GestureComponents.web.js.map +1 -1
  170. package/lib/module/v3/components/Pressable.js +15 -15
  171. package/lib/module/v3/components/Pressable.js.map +1 -1
  172. package/lib/module/v3/components/Touchable/Touchable.js +94 -0
  173. package/lib/module/v3/components/Touchable/Touchable.js.map +1 -0
  174. package/lib/module/v3/components/Touchable/TouchableProps.js +4 -0
  175. package/lib/module/v3/components/Touchable/TouchableProps.js.map +1 -0
  176. package/lib/module/v3/components/index.js +3 -2
  177. package/lib/module/v3/components/index.js.map +1 -1
  178. package/lib/module/v3/createNativeWrapper.js +3 -3
  179. package/lib/module/v3/createNativeWrapper.js.map +1 -1
  180. package/lib/module/v3/detectors/GestureDetector.js +1 -1
  181. package/lib/module/v3/detectors/GestureDetector.js.map +1 -1
  182. package/lib/module/v3/detectors/HostGestureDetector.web.js +12 -10
  183. package/lib/module/v3/detectors/HostGestureDetector.web.js.map +1 -1
  184. package/lib/module/v3/detectors/NativeDetector.js +3 -3
  185. package/lib/module/v3/detectors/NativeDetector.js.map +1 -1
  186. package/lib/module/v3/detectors/ReanimatedNativeDetector.js +1 -1
  187. package/lib/module/v3/detectors/ReanimatedNativeDetector.js.map +1 -1
  188. package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +15 -9
  189. package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +1 -1
  190. package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js +8 -5
  191. package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js.map +1 -1
  192. package/lib/module/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +1 -1
  193. package/lib/module/v3/detectors/common.js +0 -3
  194. package/lib/module/v3/detectors/common.js.map +1 -1
  195. package/lib/module/v3/detectors/index.js +1 -1
  196. package/lib/module/v3/detectors/index.js.map +1 -1
  197. package/lib/module/v3/detectors/useEnsureGestureHandlerRootView.js.map +1 -1
  198. package/lib/module/v3/detectors/utils.js.map +1 -1
  199. package/lib/module/v3/gestureStateManager.js +0 -5
  200. package/lib/module/v3/gestureStateManager.js.map +1 -1
  201. package/lib/module/v3/gestureStateManager.web.js +0 -14
  202. package/lib/module/v3/gestureStateManager.web.js.map +1 -1
  203. package/lib/module/v3/hooks/callbacks/eventHandler.js +23 -19
  204. package/lib/module/v3/hooks/callbacks/eventHandler.js.map +1 -1
  205. package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js +2 -2
  206. package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js.map +1 -1
  207. package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js +2 -2
  208. package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js.map +1 -1
  209. package/lib/module/v3/hooks/composition/index.js +2 -2
  210. package/lib/module/v3/hooks/composition/index.js.map +1 -1
  211. package/lib/module/v3/hooks/composition/useCompetingGestures.js.map +1 -1
  212. package/lib/module/v3/hooks/composition/useComposedGesture.js +1 -1
  213. package/lib/module/v3/hooks/composition/useComposedGesture.js.map +1 -1
  214. package/lib/module/v3/hooks/composition/useExclusiveGestures.js.map +1 -1
  215. package/lib/module/v3/hooks/composition/useSimultaneousGestures.js.map +1 -1
  216. package/lib/module/v3/hooks/gestures/fling/{FlingProperties.js → FlingTypes.js} +1 -1
  217. package/lib/module/v3/hooks/gestures/fling/FlingTypes.js.map +1 -0
  218. package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js.map +1 -1
  219. package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js → HoverTypes.js} +1 -1
  220. package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js.map → HoverTypes.js.map} +1 -1
  221. package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js +8 -1
  222. package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js.map +1 -1
  223. package/lib/module/v3/hooks/gestures/index.js +4 -0
  224. package/lib/module/v3/hooks/gestures/index.js.map +1 -1
  225. package/lib/module/v3/hooks/gestures/longPress/{LongPressProperties.js → LongPressTypes.js} +1 -1
  226. package/lib/module/v3/hooks/gestures/longPress/LongPressTypes.js.map +1 -0
  227. package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js.map +1 -1
  228. package/lib/module/v3/hooks/gestures/manual/ManualTypes.js +4 -0
  229. package/lib/module/v3/hooks/gestures/manual/ManualTypes.js.map +1 -0
  230. package/lib/module/v3/hooks/gestures/manual/useManualGesture.js.map +1 -1
  231. package/lib/module/v3/hooks/gestures/native/{NativeProperties.js → NativeTypes.js} +1 -1
  232. package/lib/module/v3/hooks/gestures/native/NativeTypes.js.map +1 -0
  233. package/lib/module/v3/hooks/gestures/native/useNativeGesture.js.map +1 -1
  234. package/lib/module/v3/hooks/gestures/pan/{PanProperties.js → PanTypes.js} +1 -1
  235. package/lib/module/v3/hooks/gestures/pan/PanTypes.js.map +1 -0
  236. package/lib/module/v3/hooks/gestures/pan/usePanGesture.js +7 -0
  237. package/lib/module/v3/hooks/gestures/pan/usePanGesture.js.map +1 -1
  238. package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js +4 -0
  239. package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js.map +1 -0
  240. package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js +7 -2
  241. package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js.map +1 -1
  242. package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js +4 -0
  243. package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js.map +1 -0
  244. package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js +7 -1
  245. package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js.map +1 -1
  246. package/lib/module/v3/hooks/gestures/tap/{TapProperties.js → TapTypes.js} +1 -1
  247. package/lib/module/v3/hooks/gestures/tap/TapTypes.js.map +1 -0
  248. package/lib/module/v3/hooks/gestures/tap/useTapGesture.js.map +1 -1
  249. package/lib/module/v3/hooks/useGesture.js +10 -4
  250. package/lib/module/v3/hooks/useGesture.js.map +1 -1
  251. package/lib/module/v3/hooks/useGestureCallbacks.js +4 -4
  252. package/lib/module/v3/hooks/useGestureCallbacks.js.map +1 -1
  253. package/lib/module/v3/hooks/utils/configUtils.js +2 -2
  254. package/lib/module/v3/hooks/utils/configUtils.js.map +1 -1
  255. package/lib/module/v3/hooks/utils/eventHandlersUtils.js +3 -7
  256. package/lib/module/v3/hooks/utils/eventHandlersUtils.js.map +1 -1
  257. package/lib/module/v3/hooks/utils/eventUtils.js +10 -0
  258. package/lib/module/v3/hooks/utils/eventUtils.js.map +1 -1
  259. package/lib/module/v3/hooks/utils/index.js +5 -5
  260. package/lib/module/v3/hooks/utils/index.js.map +1 -1
  261. package/lib/module/v3/hooks/utils/propsWhiteList.js +9 -7
  262. package/lib/module/v3/hooks/utils/propsWhiteList.js.map +1 -1
  263. package/lib/module/v3/hooks/utils/reanimatedUtils.js +1 -1
  264. package/lib/module/v3/hooks/utils/reanimatedUtils.js.map +1 -1
  265. package/lib/module/v3/index.js +3 -3
  266. package/lib/module/v3/index.js.map +1 -1
  267. package/lib/module/v3/types/GestureTypes.js.map +1 -1
  268. package/lib/module/v3/types/index.js +1 -1
  269. package/lib/module/v3/types/index.js.map +1 -1
  270. package/lib/module/web/Gestures.js +6 -6
  271. package/lib/module/web/Gestures.js.map +1 -1
  272. package/lib/module/web/detectors/RotationGestureDetector.js +4 -7
  273. package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -1
  274. package/lib/module/web/detectors/ScaleGestureDetector.js +1 -1
  275. package/lib/module/web/detectors/ScaleGestureDetector.js.map +1 -1
  276. package/lib/module/web/handlers/FlingGestureHandler.js +3 -3
  277. package/lib/module/web/handlers/FlingGestureHandler.js.map +1 -1
  278. package/lib/module/web/handlers/GestureHandler.js +35 -58
  279. package/lib/module/web/handlers/GestureHandler.js.map +1 -1
  280. package/lib/module/web/handlers/HoverGestureHandler.js +1 -1
  281. package/lib/module/web/handlers/HoverGestureHandler.js.map +1 -1
  282. package/lib/module/web/handlers/LongPressGestureHandler.js.map +1 -1
  283. package/lib/module/web/handlers/NativeViewGestureHandler.js +1 -1
  284. package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -1
  285. package/lib/module/web/handlers/PanGestureHandler.js +1 -1
  286. package/lib/module/web/handlers/PanGestureHandler.js.map +1 -1
  287. package/lib/module/web/handlers/PinchGestureHandler.js +7 -8
  288. package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -1
  289. package/lib/module/web/handlers/RotationGestureHandler.js +26 -32
  290. package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -1
  291. package/lib/module/web/handlers/TapGestureHandler.js.map +1 -1
  292. package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +1 -1
  293. package/lib/module/web/tools/GestureHandlerWebDelegate.js +62 -17
  294. package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +1 -1
  295. package/lib/module/web/tools/InteractionManager.js.map +1 -1
  296. package/lib/module/web/tools/KeyboardEventManager.js +1 -1
  297. package/lib/module/web/tools/KeyboardEventManager.js.map +1 -1
  298. package/lib/module/web/tools/PointerEventManager.js +7 -7
  299. package/lib/module/web/tools/PointerEventManager.js.map +1 -1
  300. package/lib/module/web/tools/WheelEventManager.js +2 -2
  301. package/lib/module/web/tools/WheelEventManager.js.map +1 -1
  302. package/lib/module/web/utils.js +22 -1
  303. package/lib/module/web/utils.js.map +1 -1
  304. package/lib/typescript/RNGestureHandlerModule.web.d.ts +1 -1
  305. package/lib/typescript/RNGestureHandlerModule.web.d.ts.map +1 -1
  306. package/lib/typescript/RNGestureHandlerModule.windows.d.ts +8 -8
  307. package/lib/typescript/RNGestureHandlerModule.windows.d.ts.map +1 -1
  308. package/lib/typescript/components/GestureButtons.d.ts +16 -5
  309. package/lib/typescript/components/GestureButtons.d.ts.map +1 -1
  310. package/lib/typescript/components/GestureButtonsProps.d.ts +21 -21
  311. package/lib/typescript/components/GestureButtonsProps.d.ts.map +1 -1
  312. package/lib/typescript/components/GestureComponents.d.ts +44 -14
  313. package/lib/typescript/components/GestureComponents.d.ts.map +1 -1
  314. package/lib/typescript/components/GestureComponents.web.d.ts +26 -6
  315. package/lib/typescript/components/GestureComponents.web.d.ts.map +1 -1
  316. package/lib/typescript/components/GestureHandlerButton.d.ts +114 -2
  317. package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -1
  318. package/lib/typescript/components/GestureHandlerButton.web.d.ts +16 -2
  319. package/lib/typescript/components/GestureHandlerButton.web.d.ts.map +1 -1
  320. package/lib/typescript/components/GestureHandlerRootView.android.d.ts +1 -1
  321. package/lib/typescript/components/GestureHandlerRootView.android.d.ts.map +1 -1
  322. package/lib/typescript/components/GestureHandlerRootView.d.ts +1 -1
  323. package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -1
  324. package/lib/typescript/components/GestureHandlerRootView.web.d.ts +2 -2
  325. package/lib/typescript/components/GestureHandlerRootView.web.d.ts.map +1 -1
  326. package/lib/typescript/components/Pressable/Pressable.d.ts +6 -3
  327. package/lib/typescript/components/Pressable/Pressable.d.ts.map +1 -1
  328. package/lib/typescript/components/Pressable/PressableProps.d.ts +8 -8
  329. package/lib/typescript/components/Pressable/PressableProps.d.ts.map +1 -1
  330. package/lib/typescript/components/Pressable/StateMachine.d.ts +1 -1
  331. package/lib/typescript/components/Pressable/StateMachine.d.ts.map +1 -1
  332. package/lib/typescript/components/Pressable/index.d.ts +1 -1
  333. package/lib/typescript/components/Pressable/index.d.ts.map +1 -1
  334. package/lib/typescript/components/Pressable/stateDefinitions.d.ts +3 -3
  335. package/lib/typescript/components/Pressable/stateDefinitions.d.ts.map +1 -1
  336. package/lib/typescript/components/Pressable/utils.d.ts +8 -7
  337. package/lib/typescript/components/Pressable/utils.d.ts.map +1 -1
  338. package/lib/typescript/components/ReanimatedDrawerLayout.d.ts +9 -5
  339. package/lib/typescript/components/ReanimatedDrawerLayout.d.ts.map +1 -1
  340. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts +2 -2
  341. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts.map +1 -1
  342. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts +9 -11
  343. package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts.map +1 -1
  344. package/lib/typescript/components/ReanimatedSwipeable/index.d.ts +1 -1
  345. package/lib/typescript/components/ReanimatedSwipeable/index.d.ts.map +1 -1
  346. package/lib/typescript/components/Text.d.ts +15 -3
  347. package/lib/typescript/components/Text.d.ts.map +1 -1
  348. package/lib/typescript/components/touchables/ExtraButtonProps.d.ts +5 -5
  349. package/lib/typescript/components/touchables/ExtraButtonProps.d.ts.map +1 -1
  350. package/lib/typescript/components/touchables/GenericTouchable.d.ts +2 -2
  351. package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -1
  352. package/lib/typescript/components/touchables/GenericTouchableProps.d.ts +2 -2
  353. package/lib/typescript/components/touchables/GenericTouchableProps.d.ts.map +1 -1
  354. package/lib/typescript/components/touchables/TouchableHighlight.d.ts +3 -3
  355. package/lib/typescript/components/touchables/TouchableHighlight.d.ts.map +1 -1
  356. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +2 -2
  357. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts.map +1 -1
  358. package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts +1 -1
  359. package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts.map +1 -1
  360. package/lib/typescript/components/touchables/TouchableOpacity.d.ts +3 -2
  361. package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -1
  362. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +4 -3
  363. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -1
  364. package/lib/typescript/components/touchables/index.d.ts +3 -3
  365. package/lib/typescript/components/touchables/index.d.ts.map +1 -1
  366. package/lib/typescript/components/utils.d.ts +1 -1
  367. package/lib/typescript/components/utils.d.ts.map +1 -1
  368. package/lib/typescript/findNodeHandle.web.d.ts.map +1 -1
  369. package/lib/typescript/handlers/FlingGestureHandler.d.ts +1 -1
  370. package/lib/typescript/handlers/FlingGestureHandler.d.ts.map +1 -1
  371. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +3 -2
  372. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts.map +1 -1
  373. package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts +3 -3
  374. package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts.map +1 -1
  375. package/lib/typescript/handlers/LongPressGestureHandler.d.ts +2 -2
  376. package/lib/typescript/handlers/LongPressGestureHandler.d.ts.map +1 -1
  377. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +3 -3
  378. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -1
  379. package/lib/typescript/handlers/PanGestureHandler.d.ts +1 -1
  380. package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -1
  381. package/lib/typescript/handlers/PinchGestureHandler.d.ts +2 -2
  382. package/lib/typescript/handlers/PinchGestureHandler.d.ts.map +1 -1
  383. package/lib/typescript/handlers/RotationGestureHandler.d.ts +2 -2
  384. package/lib/typescript/handlers/RotationGestureHandler.d.ts.map +1 -1
  385. package/lib/typescript/handlers/TapGestureHandler.d.ts +1 -1
  386. package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -1
  387. package/lib/typescript/handlers/createHandler.d.ts +1 -1
  388. package/lib/typescript/handlers/createHandler.d.ts.map +1 -1
  389. package/lib/typescript/handlers/createNativeWrapper.d.ts +10 -2
  390. package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -1
  391. package/lib/typescript/handlers/gestureHandlerCommon.d.ts +27 -27
  392. package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -1
  393. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +3 -3
  394. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts.map +1 -1
  395. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.d.ts.map +1 -1
  396. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts +7 -6
  397. package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts.map +1 -1
  398. package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts +5 -5
  399. package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts.map +1 -1
  400. package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts +1 -1
  401. package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts.map +1 -1
  402. package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts +3 -3
  403. package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts.map +1 -1
  404. package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts +2 -2
  405. package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts.map +1 -1
  406. package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts +2 -2
  407. package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts.map +1 -1
  408. package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts +3 -3
  409. package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts.map +1 -1
  410. package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts +1 -1
  411. package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts.map +1 -1
  412. package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts +5 -5
  413. package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts.map +1 -1
  414. package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts +1 -1
  415. package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts.map +1 -1
  416. package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts +2 -2
  417. package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts.map +1 -1
  418. package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts +2 -2
  419. package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts.map +1 -1
  420. package/lib/typescript/handlers/gestures/eventReceiver.d.ts +1 -1
  421. package/lib/typescript/handlers/gestures/eventReceiver.d.ts.map +1 -1
  422. package/lib/typescript/handlers/gestures/flingGesture.d.ts +3 -2
  423. package/lib/typescript/handlers/gestures/flingGesture.d.ts.map +1 -1
  424. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +4 -3
  425. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts.map +1 -1
  426. package/lib/typescript/handlers/gestures/gesture.d.ts +3 -3
  427. package/lib/typescript/handlers/gestures/gesture.d.ts.map +1 -1
  428. package/lib/typescript/handlers/gestures/gestureComposition.d.ts +2 -1
  429. package/lib/typescript/handlers/gestures/gestureComposition.d.ts.map +1 -1
  430. package/lib/typescript/handlers/gestures/gestureObjects.d.ts +4 -4
  431. package/lib/typescript/handlers/gestures/gestureObjects.d.ts.map +1 -1
  432. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +1 -1
  433. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts.map +1 -1
  434. package/lib/typescript/handlers/gestures/hoverGesture.d.ts +3 -2
  435. package/lib/typescript/handlers/gestures/hoverGesture.d.ts.map +1 -1
  436. package/lib/typescript/handlers/gestures/longPressGesture.d.ts +3 -2
  437. package/lib/typescript/handlers/gestures/longPressGesture.d.ts.map +1 -1
  438. package/lib/typescript/handlers/gestures/manualGesture.d.ts +1 -1
  439. package/lib/typescript/handlers/gestures/manualGesture.d.ts.map +1 -1
  440. package/lib/typescript/handlers/gestures/nativeGesture.d.ts +3 -2
  441. package/lib/typescript/handlers/gestures/nativeGesture.d.ts.map +1 -1
  442. package/lib/typescript/handlers/gestures/panGesture.d.ts +4 -3
  443. package/lib/typescript/handlers/gestures/panGesture.d.ts.map +1 -1
  444. package/lib/typescript/handlers/gestures/pinchGesture.d.ts +2 -2
  445. package/lib/typescript/handlers/gestures/pinchGesture.d.ts.map +1 -1
  446. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +3 -3
  447. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts.map +1 -1
  448. package/lib/typescript/handlers/gestures/rotationGesture.d.ts +2 -2
  449. package/lib/typescript/handlers/gestures/rotationGesture.d.ts.map +1 -1
  450. package/lib/typescript/handlers/gestures/tapGesture.d.ts +3 -2
  451. package/lib/typescript/handlers/gestures/tapGesture.d.ts.map +1 -1
  452. package/lib/typescript/handlers/handlersRegistry.d.ts +6 -6
  453. package/lib/typescript/handlers/handlersRegistry.d.ts.map +1 -1
  454. package/lib/typescript/handlers/utils.d.ts +1 -1
  455. package/lib/typescript/handlers/utils.d.ts.map +1 -1
  456. package/lib/typescript/index.d.ts +41 -42
  457. package/lib/typescript/index.d.ts.map +1 -1
  458. package/lib/typescript/jestUtils/index.d.ts +1 -1
  459. package/lib/typescript/jestUtils/jestUtils.d.ts +22 -21
  460. package/lib/typescript/jestUtils/jestUtils.d.ts.map +1 -1
  461. package/lib/typescript/mocks/GestureButtons.d.ts +5 -5
  462. package/lib/typescript/mocks/GestureButtons.d.ts.map +1 -1
  463. package/lib/typescript/mocks/Touchables.d.ts +2 -0
  464. package/lib/typescript/mocks/Touchables.d.ts.map +1 -0
  465. package/lib/typescript/mocks/gestureComponents.d.ts +1 -13
  466. package/lib/typescript/mocks/gestureComponents.d.ts.map +1 -1
  467. package/lib/typescript/mountRegistry.d.ts +1 -1
  468. package/lib/typescript/mountRegistry.d.ts.map +1 -1
  469. package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts +2 -2
  470. package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts.map +1 -1
  471. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +36 -3
  472. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts.map +1 -1
  473. package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts +8 -8
  474. package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts.map +1 -1
  475. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +1 -1
  476. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts.map +1 -1
  477. package/lib/typescript/useIsScreenReaderEnabled.d.ts +2 -0
  478. package/lib/typescript/useIsScreenReaderEnabled.d.ts.map +1 -0
  479. package/lib/typescript/useIsomorphicLayoutEffect.d.ts +1 -1
  480. package/lib/typescript/useIsomorphicLayoutEffect.d.ts.map +1 -1
  481. package/lib/typescript/v3/NativeProxy.d.ts +3 -3
  482. package/lib/typescript/v3/NativeProxy.d.ts.map +1 -1
  483. package/lib/typescript/v3/NativeProxy.web.d.ts +3 -3
  484. package/lib/typescript/v3/NativeProxy.web.d.ts.map +1 -1
  485. package/lib/typescript/v3/components/GestureButtons.d.ts +20 -11
  486. package/lib/typescript/v3/components/GestureButtons.d.ts.map +1 -1
  487. package/lib/typescript/v3/components/GestureButtonsProps.d.ts +25 -85
  488. package/lib/typescript/v3/components/GestureButtonsProps.d.ts.map +1 -1
  489. package/lib/typescript/v3/components/GestureComponents.d.ts +24 -38
  490. package/lib/typescript/v3/components/GestureComponents.d.ts.map +1 -1
  491. package/lib/typescript/v3/components/GestureComponents.web.d.ts +22 -34
  492. package/lib/typescript/v3/components/GestureComponents.web.d.ts.map +1 -1
  493. package/lib/typescript/v3/components/Pressable.d.ts +1 -1
  494. package/lib/typescript/v3/components/Pressable.d.ts.map +1 -1
  495. package/lib/typescript/v3/components/Touchable/Touchable.d.ts +4 -0
  496. package/lib/typescript/v3/components/Touchable/Touchable.d.ts.map +1 -0
  497. package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts +31 -0
  498. package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts.map +1 -0
  499. package/lib/typescript/v3/components/index.d.ts +5 -3
  500. package/lib/typescript/v3/components/index.d.ts.map +1 -1
  501. package/lib/typescript/v3/createNativeWrapper.d.ts +3 -7
  502. package/lib/typescript/v3/createNativeWrapper.d.ts.map +1 -1
  503. package/lib/typescript/v3/detectors/GestureDetector.d.ts +3 -3
  504. package/lib/typescript/v3/detectors/GestureDetector.d.ts.map +1 -1
  505. package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts +10 -6
  506. package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts.map +1 -1
  507. package/lib/typescript/v3/detectors/NativeDetector.d.ts +2 -2
  508. package/lib/typescript/v3/detectors/NativeDetector.d.ts.map +1 -1
  509. package/lib/typescript/v3/detectors/ReanimatedNativeDetector.d.ts.map +1 -1
  510. package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts +2 -2
  511. package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts.map +1 -1
  512. package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts +2 -2
  513. package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts.map +1 -1
  514. package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts +1 -1
  515. package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts.map +1 -1
  516. package/lib/typescript/v3/detectors/common.d.ts +14 -15
  517. package/lib/typescript/v3/detectors/common.d.ts.map +1 -1
  518. package/lib/typescript/v3/detectors/index.d.ts +1 -1
  519. package/lib/typescript/v3/detectors/index.d.ts.map +1 -1
  520. package/lib/typescript/v3/detectors/useEnsureGestureHandlerRootView.d.ts.map +1 -1
  521. package/lib/typescript/v3/detectors/utils.d.ts +2 -2
  522. package/lib/typescript/v3/detectors/utils.d.ts.map +1 -1
  523. package/lib/typescript/v3/gestureStateManager.d.ts +0 -1
  524. package/lib/typescript/v3/gestureStateManager.d.ts.map +1 -1
  525. package/lib/typescript/v3/gestureStateManager.web.d.ts +1 -1
  526. package/lib/typescript/v3/gestureStateManager.web.d.ts.map +1 -1
  527. package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts +6 -6
  528. package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts.map +1 -1
  529. package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts +2 -2
  530. package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts.map +1 -1
  531. package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts +3 -3
  532. package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts.map +1 -1
  533. package/lib/typescript/v3/hooks/composition/index.d.ts +2 -2
  534. package/lib/typescript/v3/hooks/composition/index.d.ts.map +1 -1
  535. package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts +1 -1
  536. package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts.map +1 -1
  537. package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts +1 -1
  538. package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts.map +1 -1
  539. package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts +1 -1
  540. package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts.map +1 -1
  541. package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts +1 -1
  542. package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts.map +1 -1
  543. package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts +36 -0
  544. package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts.map +1 -0
  545. package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts +1 -14
  546. package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts.map +1 -1
  547. package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts +38 -0
  548. package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts.map +1 -0
  549. package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts +1 -19
  550. package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts.map +1 -1
  551. package/lib/typescript/v3/hooks/gestures/index.d.ts +19 -28
  552. package/lib/typescript/v3/hooks/gestures/index.d.ts.map +1 -1
  553. package/lib/typescript/v3/hooks/gestures/longPress/{LongPressProperties.d.ts → LongPressTypes.d.ts} +16 -1
  554. package/lib/typescript/v3/hooks/gestures/longPress/LongPressTypes.d.ts.map +1 -0
  555. package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts +1 -14
  556. package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts.map +1 -1
  557. package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts +10 -0
  558. package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts.map +1 -0
  559. package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts +1 -9
  560. package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts.map +1 -1
  561. package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts +26 -0
  562. package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts.map +1 -0
  563. package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts +2 -12
  564. package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts.map +1 -1
  565. package/lib/typescript/v3/hooks/gestures/pan/{PanProperties.d.ts → PanTypes.d.ts} +25 -1
  566. package/lib/typescript/v3/hooks/gestures/pan/PanTypes.d.ts.map +1 -0
  567. package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts +1 -21
  568. package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts.map +1 -1
  569. package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts +17 -0
  570. package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts.map +1 -0
  571. package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts +1 -15
  572. package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts.map +1 -1
  573. package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts +17 -0
  574. package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts.map +1 -0
  575. package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts +1 -15
  576. package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts.map +1 -1
  577. package/lib/typescript/v3/hooks/gestures/tap/{TapProperties.d.ts → TapTypes.d.ts} +14 -1
  578. package/lib/typescript/v3/hooks/gestures/tap/TapTypes.d.ts.map +1 -0
  579. package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts +1 -14
  580. package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts.map +1 -1
  581. package/lib/typescript/v3/hooks/useGesture.d.ts +2 -2
  582. package/lib/typescript/v3/hooks/useGesture.d.ts.map +1 -1
  583. package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts +4 -4
  584. package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts.map +1 -1
  585. package/lib/typescript/v3/hooks/utils/configUtils.d.ts +4 -4
  586. package/lib/typescript/v3/hooks/utils/configUtils.d.ts.map +1 -1
  587. package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts +4 -4
  588. package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts.map +1 -1
  589. package/lib/typescript/v3/hooks/utils/eventUtils.d.ts +8 -6
  590. package/lib/typescript/v3/hooks/utils/eventUtils.d.ts.map +1 -1
  591. package/lib/typescript/v3/hooks/utils/index.d.ts +5 -5
  592. package/lib/typescript/v3/hooks/utils/index.d.ts.map +1 -1
  593. package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts +6 -5
  594. package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts.map +1 -1
  595. package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts +4 -4
  596. package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts.map +1 -1
  597. package/lib/typescript/v3/hooks/utils/relationUtils.d.ts +2 -2
  598. package/lib/typescript/v3/hooks/utils/relationUtils.d.ts.map +1 -1
  599. package/lib/typescript/v3/index.d.ts +6 -6
  600. package/lib/typescript/v3/index.d.ts.map +1 -1
  601. package/lib/typescript/v3/types/ConfigTypes.d.ts +35 -34
  602. package/lib/typescript/v3/types/ConfigTypes.d.ts.map +1 -1
  603. package/lib/typescript/v3/types/DetectorTypes.d.ts +10 -6
  604. package/lib/typescript/v3/types/DetectorTypes.d.ts.map +1 -1
  605. package/lib/typescript/v3/types/EventTypes.d.ts +11 -8
  606. package/lib/typescript/v3/types/EventTypes.d.ts.map +1 -1
  607. package/lib/typescript/v3/types/GestureTypes.d.ts +16 -16
  608. package/lib/typescript/v3/types/GestureTypes.d.ts.map +1 -1
  609. package/lib/typescript/v3/types/NativeWrapperType.d.ts +7 -4
  610. package/lib/typescript/v3/types/NativeWrapperType.d.ts.map +1 -1
  611. package/lib/typescript/v3/types/ReanimatedTypes.d.ts +1 -1
  612. package/lib/typescript/v3/types/ReanimatedTypes.d.ts.map +1 -1
  613. package/lib/typescript/v3/types/UtilityTypes.d.ts +7 -7
  614. package/lib/typescript/v3/types/UtilityTypes.d.ts.map +1 -1
  615. package/lib/typescript/v3/types/index.d.ts +6 -6
  616. package/lib/typescript/v3/types/index.d.ts.map +1 -1
  617. package/lib/typescript/web/Gestures.d.ts +6 -6
  618. package/lib/typescript/web/Gestures.d.ts.map +1 -1
  619. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +2 -2
  620. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts.map +1 -1
  621. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +2 -2
  622. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts.map +1 -1
  623. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +3 -3
  624. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts.map +1 -1
  625. package/lib/typescript/web/handlers/GestureHandler.d.ts +9 -8
  626. package/lib/typescript/web/handlers/GestureHandler.d.ts.map +1 -1
  627. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +3 -3
  628. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts.map +1 -1
  629. package/lib/typescript/web/handlers/IGestureHandler.d.ts +6 -6
  630. package/lib/typescript/web/handlers/IGestureHandler.d.ts.map +1 -1
  631. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +4 -4
  632. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts.map +1 -1
  633. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +3 -3
  634. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts.map +1 -1
  635. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +6 -6
  636. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts.map +1 -1
  637. package/lib/typescript/web/handlers/PanGestureHandler.d.ts +4 -4
  638. package/lib/typescript/web/handlers/PanGestureHandler.d.ts.map +1 -1
  639. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +4 -4
  640. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts.map +1 -1
  641. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +5 -6
  642. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts.map +1 -1
  643. package/lib/typescript/web/handlers/TapGestureHandler.d.ts +3 -3
  644. package/lib/typescript/web/handlers/TapGestureHandler.d.ts.map +1 -1
  645. package/lib/typescript/web/interfaces.d.ts +32 -32
  646. package/lib/typescript/web/interfaces.d.ts.map +1 -1
  647. package/lib/typescript/web/tools/EventManager.d.ts +1 -1
  648. package/lib/typescript/web/tools/EventManager.d.ts.map +1 -1
  649. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +4 -0
  650. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts.map +1 -1
  651. package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts.map +1 -1
  652. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +6 -1
  653. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts.map +1 -1
  654. package/lib/typescript/web/tools/InteractionManager.d.ts +2 -2
  655. package/lib/typescript/web/tools/InteractionManager.d.ts.map +1 -1
  656. package/lib/typescript/web/tools/KeyboardEventManager.d.ts +2 -1
  657. package/lib/typescript/web/tools/KeyboardEventManager.d.ts.map +1 -1
  658. package/lib/typescript/web/tools/NodeManager.d.ts +3 -3
  659. package/lib/typescript/web/tools/NodeManager.d.ts.map +1 -1
  660. package/lib/typescript/web/tools/PointerEventManager.d.ts +2 -1
  661. package/lib/typescript/web/tools/PointerEventManager.d.ts.map +1 -1
  662. package/lib/typescript/web/tools/PointerTracker.d.ts +1 -1
  663. package/lib/typescript/web/tools/PointerTracker.d.ts.map +1 -1
  664. package/lib/typescript/web/tools/Vector.d.ts +1 -1
  665. package/lib/typescript/web/tools/Vector.d.ts.map +1 -1
  666. package/lib/typescript/web/tools/VelocityTracker.d.ts +1 -1
  667. package/lib/typescript/web/tools/VelocityTracker.d.ts.map +1 -1
  668. package/lib/typescript/web/tools/WheelEventManager.d.ts +1 -1
  669. package/lib/typescript/web/tools/WheelEventManager.d.ts.map +1 -1
  670. package/lib/typescript/web/utils.d.ts +2 -1
  671. package/lib/typescript/web/utils.d.ts.map +1 -1
  672. package/package.json +11 -11
  673. package/react-native.config.js +0 -1
  674. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h +0 -1
  675. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerDetectorShadowNode.cpp +88 -30
  676. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerDetectorShadowNode.h +8 -0
  677. package/src/RNGestureHandlerModule.web.ts +2 -2
  678. package/src/RNGestureHandlerModule.windows.ts +8 -10
  679. package/src/components/GestureButtons.tsx +47 -36
  680. package/src/components/GestureButtonsProps.ts +22 -21
  681. package/src/components/GestureComponents.tsx +28 -35
  682. package/src/components/GestureComponents.web.tsx +9 -12
  683. package/src/components/GestureHandlerButton.tsx +150 -144
  684. package/src/components/GestureHandlerButton.web.tsx +151 -3
  685. package/src/components/GestureHandlerRootView.android.tsx +2 -1
  686. package/src/components/GestureHandlerRootView.tsx +5 -4
  687. package/src/components/GestureHandlerRootView.web.tsx +6 -4
  688. package/src/components/Pressable/Pressable.tsx +34 -27
  689. package/src/components/Pressable/PressableProps.tsx +13 -12
  690. package/src/components/Pressable/StateMachine.tsx +1 -1
  691. package/src/components/Pressable/index.ts +1 -1
  692. package/src/components/Pressable/stateDefinitions.ts +28 -5
  693. package/src/components/Pressable/utils.ts +16 -12
  694. package/src/components/ReanimatedDrawerLayout.tsx +415 -426
  695. package/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx +30 -30
  696. package/src/components/ReanimatedSwipeable/ReanimatedSwipeableProps.ts +10 -13
  697. package/src/components/ReanimatedSwipeable/index.ts +2 -2
  698. package/src/components/Text.tsx +51 -52
  699. package/src/components/touchables/ExtraButtonProps.ts +5 -5
  700. package/src/components/touchables/GenericTouchable.tsx +17 -20
  701. package/src/components/touchables/GenericTouchableProps.ts +4 -3
  702. package/src/components/touchables/TouchableHighlight.tsx +8 -8
  703. package/src/components/touchables/TouchableNativeFeedback.android.tsx +5 -3
  704. package/src/components/touchables/TouchableNativeFeedbackProps.tsx +2 -1
  705. package/src/components/touchables/TouchableOpacity.tsx +5 -9
  706. package/src/components/touchables/TouchableWithoutFeedback.tsx +17 -24
  707. package/src/components/touchables/index.ts +3 -3
  708. package/src/components/utils.ts +1 -1
  709. package/src/findNodeHandle.web.ts +12 -2
  710. package/src/handlers/FlingGestureHandler.ts +3 -5
  711. package/src/handlers/ForceTouchGestureHandler.ts +6 -6
  712. package/src/handlers/GestureHandlerEventPayload.ts +3 -3
  713. package/src/handlers/LongPressGestureHandler.ts +3 -5
  714. package/src/handlers/NativeViewGestureHandler.ts +5 -7
  715. package/src/handlers/PanGestureHandler.ts +3 -5
  716. package/src/handlers/PinchGestureHandler.ts +3 -5
  717. package/src/handlers/RotationGestureHandler.ts +3 -5
  718. package/src/handlers/TapGestureHandler.ts +3 -5
  719. package/src/handlers/createHandler.tsx +19 -22
  720. package/src/handlers/createNativeWrapper.tsx +12 -7
  721. package/src/handlers/gestureHandlerCommon.ts +31 -29
  722. package/src/handlers/gestureHandlerTypesCompat.ts +5 -5
  723. package/src/handlers/gestures/GestureDetector/Wrap.tsx +2 -1
  724. package/src/handlers/gestures/GestureDetector/Wrap.web.tsx +34 -30
  725. package/src/handlers/gestures/GestureDetector/attachHandlers.ts +14 -13
  726. package/src/handlers/gestures/GestureDetector/dropHandlers.ts +3 -3
  727. package/src/handlers/gestures/GestureDetector/index.tsx +11 -10
  728. package/src/handlers/gestures/GestureDetector/needsToReattach.ts +2 -2
  729. package/src/handlers/gestures/GestureDetector/types.ts +2 -2
  730. package/src/handlers/gestures/GestureDetector/updateHandlers.ts +7 -7
  731. package/src/handlers/gestures/GestureDetector/useAnimatedGesture.ts +11 -12
  732. package/src/handlers/gestures/GestureDetector/useDetectorUpdater.ts +9 -8
  733. package/src/handlers/gestures/GestureDetector/useMountReactions.ts +5 -4
  734. package/src/handlers/gestures/GestureDetector/useViewRefHandler.ts +5 -4
  735. package/src/handlers/gestures/GestureDetector/utils.ts +13 -13
  736. package/src/handlers/gestures/eventReceiver.ts +8 -8
  737. package/src/handlers/gestures/flingGesture.ts +3 -2
  738. package/src/handlers/gestures/forceTouchGesture.ts +4 -3
  739. package/src/handlers/gestures/gesture.ts +9 -9
  740. package/src/handlers/gestures/gestureComposition.ts +2 -1
  741. package/src/handlers/gestures/gestureObjects.ts +4 -4
  742. package/src/handlers/gestures/gestureStateManager.web.ts +1 -1
  743. package/src/handlers/gestures/hoverGesture.ts +3 -2
  744. package/src/handlers/gestures/longPressGesture.ts +3 -2
  745. package/src/handlers/gestures/manualGesture.ts +1 -1
  746. package/src/handlers/gestures/nativeGesture.ts +3 -2
  747. package/src/handlers/gestures/panGesture.ts +4 -3
  748. package/src/handlers/gestures/pinchGesture.ts +2 -2
  749. package/src/handlers/gestures/reanimatedWrapper.ts +7 -6
  750. package/src/handlers/gestures/rotationGesture.ts +2 -2
  751. package/src/handlers/gestures/tapGesture.ts +3 -2
  752. package/src/handlers/handlersRegistry.ts +13 -6
  753. package/src/handlers/utils.ts +6 -5
  754. package/src/index.ts +111 -118
  755. package/src/jestUtils/index.ts +1 -1
  756. package/src/jestUtils/jestUtils.ts +45 -50
  757. package/src/mocks/GestureButtons.tsx +9 -5
  758. package/src/mocks/Touchables.tsx +6 -0
  759. package/src/mocks/gestureComponents.tsx +7 -22
  760. package/src/mountRegistry.ts +1 -1
  761. package/src/specs/NativeRNGestureHandlerModule.ts +3 -2
  762. package/src/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
  763. package/src/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
  764. package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
  765. package/src/useIsScreenReaderEnabled.ts +31 -0
  766. package/src/v3/NativeProxy.ts +13 -5
  767. package/src/v3/NativeProxy.web.ts +13 -5
  768. package/src/v3/components/GestureButtons.tsx +52 -28
  769. package/src/v3/components/GestureButtonsProps.ts +38 -110
  770. package/src/v3/components/GestureComponents.tsx +29 -34
  771. package/src/v3/components/GestureComponents.web.tsx +7 -10
  772. package/src/v3/components/Pressable.tsx +33 -29
  773. package/src/v3/components/Touchable/Touchable.tsx +134 -0
  774. package/src/v3/components/Touchable/TouchableProps.ts +41 -0
  775. package/src/v3/components/index.ts +12 -13
  776. package/src/v3/createNativeWrapper.tsx +14 -16
  777. package/src/v3/detectors/GestureDetector.tsx +17 -9
  778. package/src/v3/detectors/HostGestureDetector.web.tsx +32 -22
  779. package/src/v3/detectors/NativeDetector.tsx +12 -10
  780. package/src/v3/detectors/ReanimatedNativeDetector.tsx +4 -5
  781. package/src/v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx +66 -34
  782. package/src/v3/detectors/VirtualDetector/VirtualDetector.tsx +29 -13
  783. package/src/v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts +2 -1
  784. package/src/v3/detectors/common.ts +40 -20
  785. package/src/v3/detectors/index.ts +1 -1
  786. package/src/v3/detectors/useEnsureGestureHandlerRootView.ts +1 -0
  787. package/src/v3/detectors/utils.ts +4 -3
  788. package/src/v3/gestureStateManager.ts +0 -6
  789. package/src/v3/gestureStateManager.web.ts +2 -17
  790. package/src/v3/hooks/callbacks/eventHandler.ts +87 -47
  791. package/src/v3/hooks/callbacks/useGestureEventHandler.ts +21 -9
  792. package/src/v3/hooks/callbacks/useReanimatedEventHandler.ts +19 -11
  793. package/src/v3/hooks/composition/index.ts +2 -2
  794. package/src/v3/hooks/composition/useCompetingGestures.ts +2 -1
  795. package/src/v3/hooks/composition/useComposedGesture.ts +6 -6
  796. package/src/v3/hooks/composition/useExclusiveGestures.ts +2 -1
  797. package/src/v3/hooks/composition/useSimultaneousGestures.ts +2 -1
  798. package/src/v3/hooks/gestures/fling/FlingTypes.ts +60 -0
  799. package/src/v3/hooks/gestures/fling/useFlingGesture.ts +7 -34
  800. package/src/v3/hooks/gestures/hover/HoverTypes.ts +76 -0
  801. package/src/v3/hooks/gestures/hover/useHoverGesture.ts +24 -55
  802. package/src/v3/hooks/gestures/index.ts +111 -32
  803. package/src/v3/hooks/gestures/longPress/{LongPressProperties.ts → LongPressTypes.ts} +39 -0
  804. package/src/v3/hooks/gestures/longPress/useLongPressGesture.ts +10 -43
  805. package/src/v3/hooks/gestures/manual/ManualTypes.ts +28 -0
  806. package/src/v3/hooks/gestures/manual/useManualGesture.ts +7 -28
  807. package/src/v3/hooks/gestures/native/NativeTypes.ts +50 -0
  808. package/src/v3/hooks/gestures/native/useNativeGesture.ts +11 -38
  809. package/src/v3/hooks/gestures/pan/{PanProperties.ts → PanTypes.ts} +55 -0
  810. package/src/v3/hooks/gestures/pan/usePanGesture.ts +29 -54
  811. package/src/v3/hooks/gestures/pinch/PinchTypes.ts +40 -0
  812. package/src/v3/hooks/gestures/pinch/usePinchGesture.ts +21 -40
  813. package/src/v3/hooks/gestures/rotation/RotationTypes.ts +41 -0
  814. package/src/v3/hooks/gestures/rotation/useRotationGesture.ts +21 -38
  815. package/src/v3/hooks/gestures/tap/{TapProperties.ts → TapTypes.ts} +32 -0
  816. package/src/v3/hooks/gestures/tap/useTapGesture.ts +9 -35
  817. package/src/v3/hooks/useGesture.ts +26 -13
  818. package/src/v3/hooks/useGestureCallbacks.ts +14 -9
  819. package/src/v3/hooks/utils/configUtils.ts +46 -18
  820. package/src/v3/hooks/utils/eventHandlersUtils.ts +23 -20
  821. package/src/v3/hooks/utils/eventUtils.ts +63 -21
  822. package/src/v3/hooks/utils/index.ts +15 -20
  823. package/src/v3/hooks/utils/propsWhiteList.ts +23 -12
  824. package/src/v3/hooks/utils/reanimatedUtils.ts +22 -10
  825. package/src/v3/hooks/utils/relationUtils.ts +3 -3
  826. package/src/v3/index.ts +51 -45
  827. package/src/v3/types/ConfigTypes.ts +47 -36
  828. package/src/v3/types/DetectorTypes.ts +29 -7
  829. package/src/v3/types/EventTypes.ts +27 -16
  830. package/src/v3/types/GestureTypes.ts +49 -22
  831. package/src/v3/types/NativeWrapperType.ts +21 -6
  832. package/src/v3/types/ReanimatedTypes.ts +1 -1
  833. package/src/v3/types/UtilityTypes.ts +7 -7
  834. package/src/v3/types/index.ts +32 -36
  835. package/src/web/Gestures.ts +6 -6
  836. package/src/web/detectors/RotationGestureDetector.ts +8 -9
  837. package/src/web/detectors/ScaleGestureDetector.ts +4 -4
  838. package/src/web/handlers/FlingGestureHandler.ts +6 -7
  839. package/src/web/handlers/GestureHandler.ts +66 -119
  840. package/src/web/handlers/HoverGestureHandler.ts +5 -5
  841. package/src/web/handlers/IGestureHandler.ts +6 -6
  842. package/src/web/handlers/LongPressGestureHandler.ts +4 -5
  843. package/src/web/handlers/ManualGestureHandler.ts +3 -3
  844. package/src/web/handlers/NativeViewGestureHandler.ts +8 -8
  845. package/src/web/handlers/PanGestureHandler.ts +7 -7
  846. package/src/web/handlers/PinchGestureHandler.ts +17 -15
  847. package/src/web/handlers/RotationGestureHandler.ts +29 -42
  848. package/src/web/handlers/TapGestureHandler.ts +4 -4
  849. package/src/web/interfaces.ts +35 -35
  850. package/src/web/tools/EventManager.ts +1 -1
  851. package/src/web/tools/GestureHandlerDelegate.ts +4 -0
  852. package/src/web/tools/GestureHandlerOrchestrator.ts +0 -1
  853. package/src/web/tools/GestureHandlerWebDelegate.ts +82 -23
  854. package/src/web/tools/InteractionManager.ts +3 -2
  855. package/src/web/tools/KeyboardEventManager.ts +3 -2
  856. package/src/web/tools/NodeManager.ts +2 -2
  857. package/src/web/tools/PointerEventManager.ts +18 -9
  858. package/src/web/tools/PointerTracker.ts +1 -1
  859. package/src/web/tools/Vector.ts +1 -1
  860. package/src/web/tools/VelocityTracker.ts +1 -1
  861. package/src/web/tools/WheelEventManager.ts +3 -2
  862. package/src/web/utils.ts +28 -2
  863. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonWrapperViewManager.kt +0 -30
  864. package/apple/RNGestureHandlerButtonManager.h +0 -5
  865. package/apple/RNGestureHandlerButtonManager.mm +0 -60
  866. package/apple/RNGestureHandlerButtonWrapper.h +0 -19
  867. package/apple/RNGestureHandlerButtonWrapper.mm +0 -46
  868. package/lib/commonjs/ActionType.js +0 -22
  869. package/lib/commonjs/ActionType.js.map +0 -1
  870. package/lib/commonjs/Directions.js +0 -38
  871. package/lib/commonjs/Directions.js.map +0 -1
  872. package/lib/commonjs/GestureHandlerRootViewContext.js +0 -10
  873. package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
  874. package/lib/commonjs/PlatformConstants.js +0 -9
  875. package/lib/commonjs/PlatformConstants.js.map +0 -1
  876. package/lib/commonjs/PlatformConstants.web.js +0 -12
  877. package/lib/commonjs/PlatformConstants.web.js.map +0 -1
  878. package/lib/commonjs/PointerType.js +0 -15
  879. package/lib/commonjs/PointerType.js.map +0 -1
  880. package/lib/commonjs/RNGestureHandlerModule.js +0 -12
  881. package/lib/commonjs/RNGestureHandlerModule.js.map +0 -1
  882. package/lib/commonjs/RNGestureHandlerModule.web.js +0 -73
  883. package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
  884. package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -53
  885. package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
  886. package/lib/commonjs/RNRenderer.js +0 -14
  887. package/lib/commonjs/RNRenderer.js.map +0 -1
  888. package/lib/commonjs/RNRenderer.web.js +0 -10
  889. package/lib/commonjs/RNRenderer.web.js.map +0 -1
  890. package/lib/commonjs/State.js +0 -19
  891. package/lib/commonjs/State.js.map +0 -1
  892. package/lib/commonjs/TouchEventType.js +0 -16
  893. package/lib/commonjs/TouchEventType.js.map +0 -1
  894. package/lib/commonjs/components/GestureButtons.js +0 -220
  895. package/lib/commonjs/components/GestureButtons.js.map +0 -1
  896. package/lib/commonjs/components/GestureButtonsProps.js +0 -6
  897. package/lib/commonjs/components/GestureButtonsProps.js.map +0 -1
  898. package/lib/commonjs/components/GestureComponents.js +0 -127
  899. package/lib/commonjs/components/GestureComponents.js.map +0 -1
  900. package/lib/commonjs/components/GestureComponents.web.js +0 -61
  901. package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
  902. package/lib/commonjs/components/GestureHandlerButton.js +0 -144
  903. package/lib/commonjs/components/GestureHandlerButton.js.map +0 -1
  904. package/lib/commonjs/components/GestureHandlerButton.web.js +0 -16
  905. package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
  906. package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -32
  907. package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
  908. package/lib/commonjs/components/GestureHandlerRootView.js +0 -30
  909. package/lib/commonjs/components/GestureHandlerRootView.js.map +0 -1
  910. package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -30
  911. package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
  912. package/lib/commonjs/components/Pressable/Pressable.js +0 -270
  913. package/lib/commonjs/components/Pressable/Pressable.js.map +0 -1
  914. package/lib/commonjs/components/Pressable/PressableProps.js +0 -6
  915. package/lib/commonjs/components/Pressable/PressableProps.js.map +0 -1
  916. package/lib/commonjs/components/Pressable/StateMachine.js +0 -44
  917. package/lib/commonjs/components/Pressable/StateMachine.js.map +0 -1
  918. package/lib/commonjs/components/Pressable/index.js +0 -14
  919. package/lib/commonjs/components/Pressable/index.js.map +0 -1
  920. package/lib/commonjs/components/Pressable/stateDefinitions.js +0 -88
  921. package/lib/commonjs/components/Pressable/stateDefinitions.js.map +0 -1
  922. package/lib/commonjs/components/Pressable/utils.js +0 -92
  923. package/lib/commonjs/components/Pressable/utils.js.map +0 -1
  924. package/lib/commonjs/components/ReanimatedDrawerLayout.js +0 -377
  925. package/lib/commonjs/components/ReanimatedDrawerLayout.js.map +0 -1
  926. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js +0 -347
  927. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +0 -1
  928. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js +0 -12
  929. package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +0 -1
  930. package/lib/commonjs/components/ReanimatedSwipeable/index.js +0 -21
  931. package/lib/commonjs/components/ReanimatedSwipeable/index.js.map +0 -1
  932. package/lib/commonjs/components/Text.js +0 -60
  933. package/lib/commonjs/components/Text.js.map +0 -1
  934. package/lib/commonjs/components/touchables/ExtraButtonProps.js +0 -2
  935. package/lib/commonjs/components/touchables/ExtraButtonProps.js.map +0 -1
  936. package/lib/commonjs/components/touchables/GenericTouchable.js +0 -245
  937. package/lib/commonjs/components/touchables/GenericTouchable.js.map +0 -1
  938. package/lib/commonjs/components/touchables/GenericTouchableProps.js +0 -6
  939. package/lib/commonjs/components/touchables/GenericTouchableProps.js.map +0 -1
  940. package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -93
  941. package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
  942. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -84
  943. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  944. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -13
  945. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
  946. package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js +0 -6
  947. package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js.map +0 -1
  948. package/lib/commonjs/components/touchables/TouchableOpacity.js +0 -65
  949. package/lib/commonjs/components/touchables/TouchableOpacity.js.map +0 -1
  950. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +0 -33
  951. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +0 -1
  952. package/lib/commonjs/components/touchables/index.js +0 -35
  953. package/lib/commonjs/components/touchables/index.js.map +0 -1
  954. package/lib/commonjs/components/utils.js +0 -17
  955. package/lib/commonjs/components/utils.js.map +0 -1
  956. package/lib/commonjs/findNodeHandle.js +0 -9
  957. package/lib/commonjs/findNodeHandle.js.map +0 -1
  958. package/lib/commonjs/findNodeHandle.web.js +0 -39
  959. package/lib/commonjs/findNodeHandle.web.js.map +0 -1
  960. package/lib/commonjs/getShadowNodeFromRef.js +0 -51
  961. package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
  962. package/lib/commonjs/getShadowNodeFromRef.web.js +0 -14
  963. package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
  964. package/lib/commonjs/ghQueueMicrotask.js +0 -10
  965. package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
  966. package/lib/commonjs/global.d.js +0 -6
  967. package/lib/commonjs/global.d.js.map +0 -1
  968. package/lib/commonjs/globals.js +0 -6
  969. package/lib/commonjs/globals.js.map +0 -1
  970. package/lib/commonjs/handlers/FlingGestureHandler.js +0 -31
  971. package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
  972. package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -46
  973. package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
  974. package/lib/commonjs/handlers/GestureHandlerEventPayload.js +0 -6
  975. package/lib/commonjs/handlers/GestureHandlerEventPayload.js.map +0 -1
  976. package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -33
  977. package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
  978. package/lib/commonjs/handlers/NativeViewGestureHandler.js +0 -32
  979. package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +0 -1
  980. package/lib/commonjs/handlers/PanGestureHandler.js +0 -112
  981. package/lib/commonjs/handlers/PanGestureHandler.js.map +0 -1
  982. package/lib/commonjs/handlers/PinchGestureHandler.js +0 -29
  983. package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
  984. package/lib/commonjs/handlers/PressabilityDebugView.js +0 -13
  985. package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
  986. package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -11
  987. package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
  988. package/lib/commonjs/handlers/RotationGestureHandler.js +0 -29
  989. package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
  990. package/lib/commonjs/handlers/TapGestureHandler.js +0 -33
  991. package/lib/commonjs/handlers/TapGestureHandler.js.map +0 -1
  992. package/lib/commonjs/handlers/createHandler.js +0 -334
  993. package/lib/commonjs/handlers/createHandler.js.map +0 -1
  994. package/lib/commonjs/handlers/createNativeWrapper.js +0 -78
  995. package/lib/commonjs/handlers/createNativeWrapper.js.map +0 -1
  996. package/lib/commonjs/handlers/customDirectEventTypes.js +0 -13
  997. package/lib/commonjs/handlers/customDirectEventTypes.js.map +0 -1
  998. package/lib/commonjs/handlers/customDirectEventTypes.web.js +0 -10
  999. package/lib/commonjs/handlers/customDirectEventTypes.web.js.map +0 -1
  1000. package/lib/commonjs/handlers/gestureHandlerCommon.js +0 -27
  1001. package/lib/commonjs/handlers/gestureHandlerCommon.js.map +0 -1
  1002. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
  1003. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
  1004. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js +0 -32
  1005. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js.map +0 -1
  1006. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js +0 -41
  1007. package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js.map +0 -1
  1008. package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js +0 -68
  1009. package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js.map +0 -1
  1010. package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js +0 -20
  1011. package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js.map +0 -1
  1012. package/lib/commonjs/handlers/gestures/GestureDetector/index.js +0 -122
  1013. package/lib/commonjs/handlers/gestures/GestureDetector/index.js.map +0 -1
  1014. package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js +0 -22
  1015. package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js.map +0 -1
  1016. package/lib/commonjs/handlers/gestures/GestureDetector/types.js +0 -6
  1017. package/lib/commonjs/handlers/gestures/GestureDetector/types.js.map +0 -1
  1018. package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js +0 -67
  1019. package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js.map +0 -1
  1020. package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js +0 -143
  1021. package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +0 -1
  1022. package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js +0 -47
  1023. package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +0 -1
  1024. package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js +0 -41
  1025. package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js.map +0 -1
  1026. package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js +0 -41
  1027. package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js.map +0 -1
  1028. package/lib/commonjs/handlers/gestures/GestureDetector/utils.js +0 -145
  1029. package/lib/commonjs/handlers/gestures/GestureDetector/utils.js.map +0 -1
  1030. package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -106
  1031. package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
  1032. package/lib/commonjs/handlers/gestures/flingGesture.js +0 -37
  1033. package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
  1034. package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -80
  1035. package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
  1036. package/lib/commonjs/handlers/gestures/gesture.js +0 -344
  1037. package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
  1038. package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -90
  1039. package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
  1040. package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -132
  1041. package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
  1042. package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -50
  1043. package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
  1044. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -36
  1045. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
  1046. package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -57
  1047. package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
  1048. package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -46
  1049. package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
  1050. package/lib/commonjs/handlers/gestures/manualGesture.js +0 -25
  1051. package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
  1052. package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
  1053. package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
  1054. package/lib/commonjs/handlers/gestures/panGesture.js +0 -197
  1055. package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
  1056. package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -38
  1057. package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
  1058. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -32
  1059. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
  1060. package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -38
  1061. package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
  1062. package/lib/commonjs/handlers/gestures/tapGesture.js +0 -87
  1063. package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
  1064. package/lib/commonjs/handlers/getNextHandlerTag.js +0 -11
  1065. package/lib/commonjs/handlers/getNextHandlerTag.js.map +0 -1
  1066. package/lib/commonjs/handlers/handlersRegistry.js +0 -74
  1067. package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
  1068. package/lib/commonjs/handlers/utils.js +0 -79
  1069. package/lib/commonjs/handlers/utils.js.map +0 -1
  1070. package/lib/commonjs/index.js +0 -284
  1071. package/lib/commonjs/index.js.map +0 -1
  1072. package/lib/commonjs/init.js +0 -11
  1073. package/lib/commonjs/init.js.map +0 -1
  1074. package/lib/commonjs/jestUtils/index.js +0 -19
  1075. package/lib/commonjs/jestUtils/index.js.map +0 -1
  1076. package/lib/commonjs/jestUtils/jestUtils.js +0 -350
  1077. package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
  1078. package/lib/commonjs/mocks/GestureButtons.js +0 -23
  1079. package/lib/commonjs/mocks/GestureButtons.js.map +0 -1
  1080. package/lib/commonjs/mocks/Pressable.js +0 -13
  1081. package/lib/commonjs/mocks/Pressable.js.map +0 -1
  1082. package/lib/commonjs/mocks/gestureComponents.js +0 -19
  1083. package/lib/commonjs/mocks/gestureComponents.js.map +0 -1
  1084. package/lib/commonjs/mocks/hostDetector.js +0 -10
  1085. package/lib/commonjs/mocks/hostDetector.js.map +0 -1
  1086. package/lib/commonjs/mocks/module.js +0 -30
  1087. package/lib/commonjs/mocks/module.js.map +0 -1
  1088. package/lib/commonjs/mountRegistry.js +0 -37
  1089. package/lib/commonjs/mountRegistry.js.map +0 -1
  1090. package/lib/commonjs/package.json +0 -1
  1091. package/lib/commonjs/specs/NativeRNGestureHandlerModule.js +0 -9
  1092. package/lib/commonjs/specs/NativeRNGestureHandlerModule.js.map +0 -1
  1093. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.ts +0 -27
  1094. package/lib/commonjs/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1095. package/lib/commonjs/specs/RNGestureHandlerDetectorNativeComponent.ts +0 -74
  1096. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -15
  1097. package/lib/commonjs/typeUtils.js +0 -2
  1098. package/lib/commonjs/typeUtils.js.map +0 -1
  1099. package/lib/commonjs/useIsomorphicLayoutEffect.js +0 -20
  1100. package/lib/commonjs/useIsomorphicLayoutEffect.js.map +0 -1
  1101. package/lib/commonjs/utils.js +0 -83
  1102. package/lib/commonjs/utils.js.map +0 -1
  1103. package/lib/commonjs/v3/NativeProxy.js +0 -48
  1104. package/lib/commonjs/v3/NativeProxy.js.map +0 -1
  1105. package/lib/commonjs/v3/NativeProxy.web.js +0 -29
  1106. package/lib/commonjs/v3/NativeProxy.web.js.map +0 -1
  1107. package/lib/commonjs/v3/components/GestureButtons.js +0 -153
  1108. package/lib/commonjs/v3/components/GestureButtons.js.map +0 -1
  1109. package/lib/commonjs/v3/components/GestureButtonsProps.js +0 -6
  1110. package/lib/commonjs/v3/components/GestureButtonsProps.js.map +0 -1
  1111. package/lib/commonjs/v3/components/GestureComponents.js +0 -124
  1112. package/lib/commonjs/v3/components/GestureComponents.js.map +0 -1
  1113. package/lib/commonjs/v3/components/GestureComponents.web.js +0 -39
  1114. package/lib/commonjs/v3/components/GestureComponents.web.js.map +0 -1
  1115. package/lib/commonjs/v3/components/Pressable.js +0 -283
  1116. package/lib/commonjs/v3/components/Pressable.js.map +0 -1
  1117. package/lib/commonjs/v3/components/index.js +0 -76
  1118. package/lib/commonjs/v3/components/index.js.map +0 -1
  1119. package/lib/commonjs/v3/createNativeWrapper.js +0 -70
  1120. package/lib/commonjs/v3/createNativeWrapper.js.map +0 -1
  1121. package/lib/commonjs/v3/detectors/GestureDetector.js +0 -24
  1122. package/lib/commonjs/v3/detectors/GestureDetector.js.map +0 -1
  1123. package/lib/commonjs/v3/detectors/HostGestureDetector.js +0 -11
  1124. package/lib/commonjs/v3/detectors/HostGestureDetector.js.map +0 -1
  1125. package/lib/commonjs/v3/detectors/HostGestureDetector.web.js +0 -113
  1126. package/lib/commonjs/v3/detectors/HostGestureDetector.web.js.map +0 -1
  1127. package/lib/commonjs/v3/detectors/NativeDetector.js +0 -76
  1128. package/lib/commonjs/v3/detectors/NativeDetector.js.map +0 -1
  1129. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js +0 -74
  1130. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js.map +0 -1
  1131. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js +0 -11
  1132. package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js.map +0 -1
  1133. package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +0 -167
  1134. package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +0 -1
  1135. package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js +0 -74
  1136. package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js.map +0 -1
  1137. package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js +0 -19
  1138. package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +0 -1
  1139. package/lib/commonjs/v3/detectors/common.js +0 -22
  1140. package/lib/commonjs/v3/detectors/common.js.map +0 -1
  1141. package/lib/commonjs/v3/detectors/index.js +0 -34
  1142. package/lib/commonjs/v3/detectors/index.js.map +0 -1
  1143. package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js +0 -17
  1144. package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js.map +0 -1
  1145. package/lib/commonjs/v3/detectors/utils.js +0 -130
  1146. package/lib/commonjs/v3/detectors/utils.js.map +0 -1
  1147. package/lib/commonjs/v3/gestureStateManager.js +0 -42
  1148. package/lib/commonjs/v3/gestureStateManager.js.map +0 -1
  1149. package/lib/commonjs/v3/gestureStateManager.web.js +0 -54
  1150. package/lib/commonjs/v3/gestureStateManager.web.js.map +0 -1
  1151. package/lib/commonjs/v3/hooks/callbacks/eventHandler.js +0 -80
  1152. package/lib/commonjs/v3/hooks/callbacks/eventHandler.js.map +0 -1
  1153. package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js +0 -50
  1154. package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
  1155. package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js +0 -22
  1156. package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
  1157. package/lib/commonjs/v3/hooks/callbacks/updateHandler.js +0 -30
  1158. package/lib/commonjs/v3/hooks/callbacks/updateHandler.js.map +0 -1
  1159. package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js +0 -21
  1160. package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js.map +0 -1
  1161. package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js +0 -39
  1162. package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js.map +0 -1
  1163. package/lib/commonjs/v3/hooks/composition/index.js +0 -27
  1164. package/lib/commonjs/v3/hooks/composition/index.js.map +0 -1
  1165. package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js +0 -12
  1166. package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js.map +0 -1
  1167. package/lib/commonjs/v3/hooks/composition/useComposedGesture.js +0 -52
  1168. package/lib/commonjs/v3/hooks/composition/useComposedGesture.js.map +0 -1
  1169. package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js +0 -14
  1170. package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js.map +0 -1
  1171. package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js +0 -13
  1172. package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js.map +0 -1
  1173. package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js +0 -8
  1174. package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
  1175. package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js +0 -14
  1176. package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js.map +0 -1
  1177. package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js +0 -8
  1178. package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js.map +0 -1
  1179. package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js +0 -27
  1180. package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js.map +0 -1
  1181. package/lib/commonjs/v3/hooks/gestures/index.js +0 -69
  1182. package/lib/commonjs/v3/hooks/gestures/index.js.map +0 -1
  1183. package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js +0 -8
  1184. package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
  1185. package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js +0 -21
  1186. package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js.map +0 -1
  1187. package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js +0 -2
  1188. package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
  1189. package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js +0 -14
  1190. package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js.map +0 -1
  1191. package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js +0 -8
  1192. package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
  1193. package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js +0 -14
  1194. package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js.map +0 -1
  1195. package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js +0 -8
  1196. package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
  1197. package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js +0 -79
  1198. package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js.map +0 -1
  1199. package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
  1200. package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
  1201. package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js +0 -27
  1202. package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js.map +0 -1
  1203. package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
  1204. package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
  1205. package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js +0 -26
  1206. package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js.map +0 -1
  1207. package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js +0 -8
  1208. package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
  1209. package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js +0 -15
  1210. package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js.map +0 -1
  1211. package/lib/commonjs/v3/hooks/index.js +0 -28
  1212. package/lib/commonjs/v3/hooks/index.js.map +0 -1
  1213. package/lib/commonjs/v3/hooks/useGesture.js +0 -80
  1214. package/lib/commonjs/v3/hooks/useGesture.js.map +0 -1
  1215. package/lib/commonjs/v3/hooks/useGestureCallbacks.js +0 -53
  1216. package/lib/commonjs/v3/hooks/useGestureCallbacks.js.map +0 -1
  1217. package/lib/commonjs/v3/hooks/utils/configUtils.js +0 -73
  1218. package/lib/commonjs/v3/hooks/utils/configUtils.js.map +0 -1
  1219. package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js +0 -96
  1220. package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js.map +0 -1
  1221. package/lib/commonjs/v3/hooks/utils/eventUtils.js +0 -73
  1222. package/lib/commonjs/v3/hooks/utils/eventUtils.js.map +0 -1
  1223. package/lib/commonjs/v3/hooks/utils/index.js +0 -168
  1224. package/lib/commonjs/v3/hooks/utils/index.js.map +0 -1
  1225. package/lib/commonjs/v3/hooks/utils/propsWhiteList.js +0 -31
  1226. package/lib/commonjs/v3/hooks/utils/propsWhiteList.js.map +0 -1
  1227. package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js +0 -85
  1228. package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js.map +0 -1
  1229. package/lib/commonjs/v3/hooks/utils/relationUtils.js +0 -51
  1230. package/lib/commonjs/v3/hooks/utils/relationUtils.js.map +0 -1
  1231. package/lib/commonjs/v3/index.js +0 -178
  1232. package/lib/commonjs/v3/index.js.map +0 -1
  1233. package/lib/commonjs/v3/types/ConfigTypes.js +0 -6
  1234. package/lib/commonjs/v3/types/ConfigTypes.js.map +0 -1
  1235. package/lib/commonjs/v3/types/DetectorTypes.js +0 -6
  1236. package/lib/commonjs/v3/types/DetectorTypes.js.map +0 -1
  1237. package/lib/commonjs/v3/types/EventTypes.js +0 -6
  1238. package/lib/commonjs/v3/types/EventTypes.js.map +0 -1
  1239. package/lib/commonjs/v3/types/GestureTypes.js +0 -28
  1240. package/lib/commonjs/v3/types/GestureTypes.js.map +0 -1
  1241. package/lib/commonjs/v3/types/NativeWrapperType.js +0 -6
  1242. package/lib/commonjs/v3/types/NativeWrapperType.js.map +0 -1
  1243. package/lib/commonjs/v3/types/ReanimatedTypes.js +0 -2
  1244. package/lib/commonjs/v3/types/ReanimatedTypes.js.map +0 -1
  1245. package/lib/commonjs/v3/types/UtilityTypes.js +0 -6
  1246. package/lib/commonjs/v3/types/UtilityTypes.js.map +0 -1
  1247. package/lib/commonjs/v3/types/index.js +0 -19
  1248. package/lib/commonjs/v3/types/index.js.map +0 -1
  1249. package/lib/commonjs/web/Gestures.js +0 -30
  1250. package/lib/commonjs/web/Gestures.js.map +0 -1
  1251. package/lib/commonjs/web/constants.js +0 -9
  1252. package/lib/commonjs/web/constants.js.map +0 -1
  1253. package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -124
  1254. package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
  1255. package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -111
  1256. package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
  1257. package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -141
  1258. package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
  1259. package/lib/commonjs/web/handlers/GestureHandler.js +0 -857
  1260. package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
  1261. package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -50
  1262. package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
  1263. package/lib/commonjs/web/handlers/IGestureHandler.js +0 -2
  1264. package/lib/commonjs/web/handlers/IGestureHandler.js.map +0 -1
  1265. package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -144
  1266. package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
  1267. package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -42
  1268. package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
  1269. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -147
  1270. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
  1271. package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -386
  1272. package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
  1273. package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -126
  1274. package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
  1275. package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -133
  1276. package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
  1277. package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -213
  1278. package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
  1279. package/lib/commonjs/web/interfaces.js +0 -25
  1280. package/lib/commonjs/web/interfaces.js.map +0 -1
  1281. package/lib/commonjs/web/tools/CircularBuffer.js +0 -40
  1282. package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
  1283. package/lib/commonjs/web/tools/EventManager.js +0 -102
  1284. package/lib/commonjs/web/tools/EventManager.js.map +0 -1
  1285. package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -2
  1286. package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
  1287. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -269
  1288. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  1289. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -219
  1290. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  1291. package/lib/commonjs/web/tools/InteractionManager.js +0 -83
  1292. package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
  1293. package/lib/commonjs/web/tools/KeyboardEventManager.js +0 -108
  1294. package/lib/commonjs/web/tools/KeyboardEventManager.js.map +0 -1
  1295. package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -159
  1296. package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
  1297. package/lib/commonjs/web/tools/NodeManager.js +0 -45
  1298. package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
  1299. package/lib/commonjs/web/tools/PointerEventManager.js +0 -186
  1300. package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
  1301. package/lib/commonjs/web/tools/PointerTracker.js +0 -192
  1302. package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
  1303. package/lib/commonjs/web/tools/Vector.js +0 -37
  1304. package/lib/commonjs/web/tools/Vector.js.map +0 -1
  1305. package/lib/commonjs/web/tools/VelocityTracker.js +0 -85
  1306. package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
  1307. package/lib/commonjs/web/tools/WheelEventManager.js +0 -55
  1308. package/lib/commonjs/web/tools/WheelEventManager.js.map +0 -1
  1309. package/lib/commonjs/web/utils.js +0 -235
  1310. package/lib/commonjs/web/utils.js.map +0 -1
  1311. package/lib/module/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1312. package/lib/module/v3/hooks/callbacks/stateChangeHandler.js +0 -46
  1313. package/lib/module/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
  1314. package/lib/module/v3/hooks/callbacks/touchEventHandler.js +0 -18
  1315. package/lib/module/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
  1316. package/lib/module/v3/hooks/callbacks/updateHandler.js +0 -26
  1317. package/lib/module/v3/hooks/callbacks/updateHandler.js.map +0 -1
  1318. package/lib/module/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
  1319. package/lib/module/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
  1320. package/lib/module/v3/hooks/gestures/manual/ManualProperties.js +0 -2
  1321. package/lib/module/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
  1322. package/lib/module/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
  1323. package/lib/module/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
  1324. package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
  1325. package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
  1326. package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
  1327. package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
  1328. package/lib/module/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
  1329. package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts +0 -6
  1330. package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts.map +0 -1
  1331. package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts +0 -4
  1332. package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts.map +0 -1
  1333. package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts +0 -3
  1334. package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts.map +0 -1
  1335. package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts +0 -4
  1336. package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts.map +0 -1
  1337. package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts +0 -23
  1338. package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts.map +0 -1
  1339. package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts +0 -18
  1340. package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts.map +0 -1
  1341. package/lib/typescript/v3/hooks/gestures/longPress/LongPressProperties.d.ts.map +0 -1
  1342. package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts +0 -2
  1343. package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts.map +0 -1
  1344. package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts +0 -16
  1345. package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts.map +0 -1
  1346. package/lib/typescript/v3/hooks/gestures/pan/PanProperties.d.ts.map +0 -1
  1347. package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts +0 -2
  1348. package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts.map +0 -1
  1349. package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts +0 -2
  1350. package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts.map +0 -1
  1351. package/lib/typescript/v3/hooks/gestures/tap/TapProperties.d.ts.map +0 -1
  1352. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperComponentDescriptor.h +0 -32
  1353. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.cpp +0 -98
  1354. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.h +0 -56
  1355. package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperState.h +0 -32
  1356. package/src/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
  1357. package/src/v3/hooks/callbacks/stateChangeHandler.ts +0 -70
  1358. package/src/v3/hooks/callbacks/touchEventHandler.ts +0 -32
  1359. package/src/v3/hooks/callbacks/updateHandler.ts +0 -53
  1360. package/src/v3/hooks/gestures/fling/FlingProperties.ts +0 -26
  1361. package/src/v3/hooks/gestures/hover/HoverProperties.ts +0 -22
  1362. package/src/v3/hooks/gestures/manual/ManualProperties.ts +0 -1
  1363. package/src/v3/hooks/gestures/native/NativeProperties.ts +0 -19
  1364. package/src/v3/hooks/gestures/pinch/PinchProperties.ts +0 -1
  1365. package/src/v3/hooks/gestures/rotation/RotationProperties.ts +0 -1
@@ -1,10 +1,12 @@
1
- import { AnimatedEvent, BaseGestureConfig, ChangeCalculatorType, DiffCalculatorType, GestureHandlerEventWithHandlerData, GestureStateChangeEventWithHandlerData, GestureUpdateEventWithHandlerData, GestureEvent } from '../../types';
2
- import { GestureTouchEvent } from '../../../handlers/gestureHandlerCommon';
3
- export declare function maybeExtractNativeEvent<THandlerData>(event: GestureHandlerEventWithHandlerData<THandlerData>): GestureTouchEvent | GestureUpdateEventWithHandlerData<THandlerData> | GestureStateChangeEventWithHandlerData<THandlerData>;
1
+ import type { GestureTouchEvent } from '../../../handlers/gestureHandlerCommon';
2
+ import type { AnimatedEvent, BaseGestureConfig, ChangeCalculatorType, DiffCalculatorType, GestureEvent, GestureHandlerEventWithHandlerData, GestureStateChangeEventWithHandlerData, GestureUpdateEventWithHandlerData } from '../../types';
3
+ export declare function maybeExtractNativeEvent<THandlerData, TExtendedHandlerData extends THandlerData>(event: GestureHandlerEventWithHandlerData<THandlerData, TExtendedHandlerData>): GestureTouchEvent | GestureUpdateEventWithHandlerData<TExtendedHandlerData> | GestureStateChangeEventWithHandlerData<THandlerData>;
4
4
  export declare function flattenAndFilterEvent<THandlerData>(event: GestureUpdateEventWithHandlerData<THandlerData> | GestureStateChangeEventWithHandlerData<THandlerData>): GestureEvent<THandlerData>;
5
- export declare function isEventForHandlerWithTag<THandlerData>(handlerTag: number, event: GestureUpdateEventWithHandlerData<THandlerData> | GestureTouchEvent): boolean;
5
+ export declare function isEventForHandlerWithTag<THandlerData, TExtendedHandlerData extends THandlerData>(handlerTag: number, event: GestureStateChangeEventWithHandlerData<THandlerData> | GestureUpdateEventWithHandlerData<TExtendedHandlerData> | GestureTouchEvent): boolean;
6
6
  export declare function isNativeAnimatedEvent<THandlerData>(callback: ((event: GestureEvent<THandlerData>) => void) | AnimatedEvent | undefined): callback is AnimatedEvent;
7
7
  export declare function checkMappingForChangeProperties(animatedEvent: AnimatedEvent): void;
8
- export declare function shouldHandleTouchEvents<THandlerData, TConfig>(config: BaseGestureConfig<THandlerData, TConfig>): boolean;
9
- export declare function getChangeEventCalculator<THandlerData>(diffCalculator: DiffCalculatorType<THandlerData>): ChangeCalculatorType<THandlerData>;
8
+ export declare function shouldHandleTouchEvents<TConfig, THandlerData, TExtendedHandlerData extends THandlerData>(config: BaseGestureConfig<TConfig, THandlerData, TExtendedHandlerData>): boolean;
9
+ export declare function getChangeEventCalculator<TExtendedHandlerData>(diffCalculator: DiffCalculatorType<TExtendedHandlerData>): ChangeCalculatorType<TExtendedHandlerData>;
10
+ export declare function isTouchEvent<THandlerData, TExtendedHandlerData extends THandlerData>(event: GestureStateChangeEventWithHandlerData<THandlerData> | GestureUpdateEventWithHandlerData<TExtendedHandlerData> | GestureTouchEvent): event is GestureTouchEvent;
11
+ export declare function isStateChangeEvent<THandlerData, TExtendedHandlerData extends THandlerData>(event: GestureStateChangeEventWithHandlerData<THandlerData> | GestureUpdateEventWithHandlerData<TExtendedHandlerData> | GestureTouchEvent): event is GestureStateChangeEventWithHandlerData<THandlerData>;
10
12
  //# sourceMappingURL=eventUtils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"eventUtils.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/eventUtils.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,EACb,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,kCAAkC,EAClC,sCAAsC,EACtC,iCAAiC,EACjC,YAAY,EACb,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAc3E,wBAAgB,uBAAuB,CAAC,YAAY,EAClD,KAAK,EAAE,kCAAkC,CAAC,YAAY,CAAC,GAErD,iBAAiB,GACjB,iCAAiC,CAAC,YAAY,CAAC,GAC/C,sCAAsC,CAAC,YAAY,CAAC,CAIvD;AAED,wBAAgB,qBAAqB,CAAC,YAAY,EAChD,KAAK,EACD,iCAAiC,CAAC,YAAY,CAAC,GAC/C,sCAAsC,CAAC,YAAY,CAAC,GACvD,YAAY,CAAC,YAAY,CAAC,CAI5B;AAED,wBAAgB,wBAAwB,CAAC,YAAY,EACnD,UAAU,EAAE,MAAM,EAClB,KAAK,EAAE,iCAAiC,CAAC,YAAY,CAAC,GAAG,iBAAiB,WAK3E;AAED,wBAAgB,qBAAqB,CAAC,YAAY,EAChD,QAAQ,EACJ,CAAC,CAAC,KAAK,EAAE,YAAY,CAAC,YAAY,CAAC,KAAK,IAAI,CAAC,GAC7C,aAAa,GACb,SAAS,GACZ,QAAQ,IAAI,aAAa,CAI3B;AAED,wBAAgB,+BAA+B,CAAC,aAAa,EAAE,aAAa,QAiB3E;AAED,wBAAgB,uBAAuB,CAAC,YAAY,EAAE,OAAO,EAC3D,MAAM,EAAE,iBAAiB,CAAC,YAAY,EAAE,OAAO,CAAC,WAQjD;AAED,wBAAgB,wBAAwB,CAAC,YAAY,EACnD,cAAc,EAAE,kBAAkB,CAAC,YAAY,CAAC,GAC/C,oBAAoB,CAAC,YAAY,CAAC,CAgBpC"}
1
+ {"version":3,"file":"eventUtils.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/eventUtils.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAEhF,OAAO,KAAK,EACV,aAAa,EACb,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,YAAY,EACZ,kCAAkC,EAClC,sCAAsC,EACtC,iCAAiC,EAClC,MAAM,aAAa,CAAC;AAerB,wBAAgB,uBAAuB,CACrC,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,KAAK,EAAE,kCAAkC,CAAC,YAAY,EAAE,oBAAoB,CAAC,GAE3E,iBAAiB,GACjB,iCAAiC,CAAC,oBAAoB,CAAC,GACvD,sCAAsC,CAAC,YAAY,CAAC,CAIvD;AAED,wBAAgB,qBAAqB,CAAC,YAAY,EAChD,KAAK,EACD,iCAAiC,CAAC,YAAY,CAAC,GAC/C,sCAAsC,CAAC,YAAY,CAAC,GACvD,YAAY,CAAC,YAAY,CAAC,CAI5B;AAED,wBAAgB,wBAAwB,CACtC,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,UAAU,EAAE,MAAM,EAClB,KAAK,EACD,sCAAsC,CAAC,YAAY,CAAC,GACpD,iCAAiC,CAAC,oBAAoB,CAAC,GACvD,iBAAiB,WAKtB;AAED,wBAAgB,qBAAqB,CAAC,YAAY,EAChD,QAAQ,EACJ,CAAC,CAAC,KAAK,EAAE,YAAY,CAAC,YAAY,CAAC,KAAK,IAAI,CAAC,GAC7C,aAAa,GACb,SAAS,GACZ,QAAQ,IAAI,aAAa,CAI3B;AAED,wBAAgB,+BAA+B,CAAC,aAAa,EAAE,aAAa,QAiB3E;AAED,wBAAgB,uBAAuB,CACrC,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,EACzC,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,WAOvE;AAED,wBAAgB,wBAAwB,CAAC,oBAAoB,EAC3D,cAAc,EAAE,kBAAkB,CAAC,oBAAoB,CAAC,GACvD,oBAAoB,CAAC,oBAAoB,CAAC,CAgB5C;AAED,wBAAgB,YAAY,CAC1B,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,KAAK,EACD,sCAAsC,CAAC,YAAY,CAAC,GACpD,iCAAiC,CAAC,oBAAoB,CAAC,GACvD,iBAAiB,GACpB,KAAK,IAAI,iBAAiB,CAI5B;AAED,wBAAgB,kBAAkB,CAChC,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,KAAK,EACD,sCAAsC,CAAC,YAAY,CAAC,GACpD,iCAAiC,CAAC,oBAAoB,CAAC,GACvD,iBAAiB,GACpB,KAAK,IAAI,sCAAsC,CAAC,YAAY,CAAC,CAI/D"}
@@ -1,7 +1,7 @@
1
1
  export { prepareConfig, prepareConfigForNativeSide, useClonedAndRemappedConfig, } from './configUtils';
2
- export { useMemoizedGestureCallbacks, touchEventTypeToCallbackType, runCallback, } from './eventHandlersUtils';
3
- export { maybeExtractNativeEvent, flattenAndFilterEvent, isEventForHandlerWithTag, isNativeAnimatedEvent, checkMappingForChangeProperties, shouldHandleTouchEvents, getChangeEventCalculator, } from './eventUtils';
4
- export { bindSharedValues, unbindSharedValues, hasWorkletEventHandlers, maybeUnpackValue, } from './reanimatedUtils';
5
- export { isComposedGesture, prepareRelations, containsDuplicates, } from './relationUtils';
6
- export { allowedNativeProps, NativeWrapperProps, HandlerCallbacks, PropsToFilter, PropsWhiteLists, EMPTY_WHITE_LIST, } from './propsWhiteList';
2
+ export { runCallback, touchEventTypeToCallbackType, useMemoizedGestureCallbacks, } from './eventHandlersUtils';
3
+ export { checkMappingForChangeProperties, flattenAndFilterEvent, getChangeEventCalculator, isEventForHandlerWithTag, isNativeAnimatedEvent, maybeExtractNativeEvent, shouldHandleTouchEvents, } from './eventUtils';
4
+ export { allowedNativeProps, EMPTY_WHITE_LIST, HandlerCallbacks, NativeWrapperProps, PropsToFilter, PropsWhiteLists, } from './propsWhiteList';
5
+ export { bindSharedValues, hasWorkletEventHandlers, maybeUnpackValue, unbindSharedValues, } from './reanimatedUtils';
6
+ export { containsDuplicates, isComposedGesture, prepareRelations, } from './relationUtils';
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,0BAA0B,EAC1B,0BAA0B,GAC3B,MAAM,eAAe,CAAC;AAEvB,OAAO,EACL,2BAA2B,EAC3B,4BAA4B,EAC5B,WAAW,GACZ,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EACL,uBAAuB,EACvB,qBAAqB,EACrB,wBAAwB,EACxB,qBAAqB,EACrB,+BAA+B,EAC/B,uBAAuB,EACvB,wBAAwB,GACzB,MAAM,cAAc,CAAC;AAEtB,OAAO,EACL,gBAAgB,EAChB,kBAAkB,EAClB,uBAAuB,EACvB,gBAAgB,GACjB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EACL,iBAAiB,EACjB,gBAAgB,EAChB,kBAAkB,GACnB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EACL,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,gBAAgB,GACjB,MAAM,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,0BAA0B,EAC1B,0BAA0B,GAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,WAAW,EACX,4BAA4B,EAC5B,2BAA2B,GAC5B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,+BAA+B,EAC/B,qBAAqB,EACrB,wBAAwB,EACxB,wBAAwB,EACxB,qBAAqB,EACrB,uBAAuB,EACvB,uBAAuB,GACxB,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,kBAAkB,EAClB,aAAa,EACb,eAAe,GAChB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,gBAAgB,EAChB,uBAAuB,EACvB,gBAAgB,EAChB,kBAAkB,GACnB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,GACjB,MAAM,iBAAiB,CAAC"}
@@ -1,8 +1,9 @@
1
- import { BaseGestureConfig, ExternalRelations, GestureCallbacks, HandlersPropsWhiteList, InternalConfigProps, SingleGestureName } from '../../types';
2
- export declare const allowedNativeProps: Set<"enabled" | "shouldCancelWhenOutside" | "hitSlop" | "cancelsTouchesInView" | "activeCursor" | "mouseButton" | "manualActivation" | "runOnJS" | keyof InternalConfigProps<unknown> | "disableReanimated" | "useAnimated" | "testID">;
3
- export declare const HandlerCallbacks: Set<keyof GestureCallbacks<unknown>>;
4
- export declare const PropsToFilter: Set<BaseGestureConfig<unknown, unknown>>;
1
+ import type { BaseGestureConfig, ExternalRelations, GestureCallbacks, HandlersPropsWhiteList, InternalConfigProps } from '../../types';
2
+ import { SingleGestureName } from '../../types';
3
+ export declare const allowedNativeProps: Set<"enabled" | "shouldCancelWhenOutside" | "hitSlop" | "cancelsTouchesInView" | "activeCursor" | "mouseButton" | "manualActivation" | "runOnJS" | "disableReanimated" | "useAnimated" | "testID" | keyof InternalConfigProps<unknown>>;
4
+ export declare const HandlerCallbacks: Set<keyof GestureCallbacks<unknown, unknown>>;
5
+ export declare const PropsToFilter: Set<BaseGestureConfig<unknown, unknown, unknown>>;
5
6
  export declare const PropsWhiteLists: Map<SingleGestureName, HandlersPropsWhiteList>;
6
7
  export declare const EMPTY_WHITE_LIST: Set<string>;
7
- export declare const NativeWrapperProps: Set<"enabled" | "shouldCancelWhenOutside" | "hitSlop" | "cancelsTouchesInView" | "activeCursor" | "mouseButton" | "manualActivation" | "runOnJS" | keyof import("../gestures/native/NativeProperties").NativeGestureNativeProperties | keyof ExternalRelations | "disableReanimated" | "useAnimated" | "testID" | keyof GestureCallbacks<import("../gestures/native/useNativeGesture").NativeViewHandlerData>>;
8
+ export declare const NativeWrapperProps: Set<"enabled" | "shouldCancelWhenOutside" | "hitSlop" | "cancelsTouchesInView" | "activeCursor" | "mouseButton" | "manualActivation" | "runOnJS" | keyof ExternalRelations | "disableReanimated" | "useAnimated" | "testID" | keyof import("../gestures/native/NativeTypes").NativeGestureNativeProperties | keyof GestureCallbacks<import("../gestures/native/NativeTypes").NativeHandlerData> | keyof import("../../types/NativeWrapperType").WrapperSpecificProperties<unknown>>;
8
9
  //# sourceMappingURL=propsWhiteList.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"propsWhiteList.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/propsWhiteList.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAEjB,iBAAiB,EACjB,gBAAgB,EAChB,sBAAsB,EACtB,mBAAmB,EACnB,iBAAiB,EAClB,MAAM,aAAa,CAAC;AA0BrB,eAAO,MAAM,kBAAkB,yOAY7B,CAAC;AAOH,eAAO,MAAM,gBAAgB,sCAY3B,CAAC;AAEH,eAAO,MAAM,aAAa,0CAUxB,CAAC;AAEH,eAAO,MAAM,eAAe,gDAU1B,CAAC;AAEH,eAAO,MAAM,gBAAgB,aAAoB,CAAC;AAElD,eAAO,MAAM,kBAAkB,gZAM7B,CAAC"}
1
+ {"version":3,"file":"propsWhiteList.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/propsWhiteList.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iBAAiB,EAEjB,iBAAiB,EACjB,gBAAgB,EAChB,sBAAsB,EACtB,mBAAmB,EACpB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AA0BhD,eAAO,MAAM,kBAAkB,yOAY7B,CAAC;AAOH,eAAO,MAAM,gBAAgB,+CAY3B,CAAC;AAEH,eAAO,MAAM,aAAa,mDAmBxB,CAAC;AAEH,eAAO,MAAM,eAAe,gDAU1B,CAAC;AAEH,eAAO,MAAM,gBAAgB,aAAoB,CAAC;AAElD,eAAO,MAAM,kBAAkB,qdAQ7B,CAAC"}
@@ -1,6 +1,6 @@
1
- import { BaseGestureConfig, SharedValueOrT } from '../../types';
2
- export declare function bindSharedValues<THandlerData, TConfig>(config: BaseGestureConfig<THandlerData, TConfig>, handlerTag: number): void;
3
- export declare function unbindSharedValues<THandlerData, TConfig>(config: BaseGestureConfig<THandlerData, TConfig>, handlerTag: number): void;
4
- export declare function hasWorkletEventHandlers<THandlerData, TConfig>(config: BaseGestureConfig<THandlerData, TConfig>): boolean;
1
+ import type { BaseGestureConfig, SharedValueOrT } from '../../types';
2
+ export declare function bindSharedValues<TConfig, THandlerData, TExtendedHandlerData extends THandlerData>(config: BaseGestureConfig<TConfig, THandlerData, TExtendedHandlerData>, handlerTag: number): void;
3
+ export declare function unbindSharedValues<TConfig, THandlerData, TExtendedHandlerData extends THandlerData>(config: BaseGestureConfig<TConfig, THandlerData, TExtendedHandlerData>, handlerTag: number): void;
4
+ export declare function hasWorkletEventHandlers<TConfig, THandlerData, TExtendedHandlerData extends THandlerData>(config: BaseGestureConfig<TConfig, THandlerData, TExtendedHandlerData>): boolean;
5
5
  export declare function maybeUnpackValue<T>(v: SharedValueOrT<T, boolean> | undefined): T;
6
6
  //# sourceMappingURL=reanimatedUtils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"reanimatedUtils.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/reanimatedUtils.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,iBAAiB,EAGjB,cAAc,EACf,MAAM,aAAa,CAAC;AAqBrB,wBAAgB,gBAAgB,CAAC,YAAY,EAAE,OAAO,EACpD,MAAM,EAAE,iBAAiB,CAAC,YAAY,EAAE,OAAO,CAAC,EAChD,UAAU,EAAE,MAAM,QAkCnB;AAED,wBAAgB,kBAAkB,CAAC,YAAY,EAAE,OAAO,EACtD,MAAM,EAAE,iBAAiB,CAAC,YAAY,EAAE,OAAO,CAAC,EAChD,UAAU,EAAE,MAAM,QAoBnB;AAED,wBAAgB,uBAAuB,CAAC,YAAY,EAAE,OAAO,EAC3D,MAAM,EAAE,iBAAiB,CAAC,YAAY,EAAE,OAAO,CAAC,WAQjD;AAED,wBAAgB,gBAAgB,CAAC,CAAC,EAChC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,OAAO,CAAC,GAAG,SAAS,GACxC,CAAC,CAIH"}
1
+ {"version":3,"file":"reanimatedUtils.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/reanimatedUtils.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,iBAAiB,EAGjB,cAAc,EACf,MAAM,aAAa,CAAC;AAqBrB,wBAAgB,gBAAgB,CAC9B,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,EACtE,UAAU,EAAE,MAAM,QAkCnB;AAED,wBAAgB,kBAAkB,CAChC,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,EAEzC,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,EACtE,UAAU,EAAE,MAAM,QAoBnB;AAED,wBAAgB,uBAAuB,CACrC,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,EACzC,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,WASvE;AAED,wBAAgB,gBAAgB,CAAC,CAAC,EAChC,CAAC,EAAE,cAAc,CAAC,CAAC,EAAE,OAAO,CAAC,GAAG,SAAS,GACxC,CAAC,CAIH"}
@@ -1,5 +1,5 @@
1
- import { ComposedGesture, ExternalRelations, Gesture, GestureRelations } from '../../types';
2
- export declare function isComposedGesture<THandlerData, TConfig>(gesture: Gesture<THandlerData, TConfig> | ComposedGesture): gesture is ComposedGesture;
1
+ import type { ComposedGesture, ExternalRelations, Gesture, GestureRelations } from '../../types';
2
+ export declare function isComposedGesture<TConfig, THandlerData>(gesture: Gesture<TConfig, THandlerData> | ComposedGesture): gesture is ComposedGesture;
3
3
  export declare function prepareRelations(relations: ExternalRelations, handlerTag: number): GestureRelations;
4
4
  export declare function containsDuplicates(tags: number[]): boolean;
5
5
  //# sourceMappingURL=relationUtils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"relationUtils.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/relationUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,iBAAiB,EACjB,OAAO,EACP,gBAAgB,EACjB,MAAM,aAAa,CAAC;AAErB,wBAAgB,iBAAiB,CAAC,YAAY,EAAE,OAAO,EACrD,OAAO,EAAE,OAAO,CAAC,YAAY,EAAE,OAAO,CAAC,GAAG,eAAe,GACxD,OAAO,IAAI,eAAe,CAE5B;AAiDD,wBAAgB,gBAAgB,CAC9B,SAAS,EAAE,iBAAiB,EAC5B,UAAU,EAAE,MAAM,GACjB,gBAAgB,CAQlB;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,WAEhD"}
1
+ {"version":3,"file":"relationUtils.d.ts","sourceRoot":"","sources":["../../../../../src/v3/hooks/utils/relationUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,iBAAiB,EACjB,OAAO,EACP,gBAAgB,EACjB,MAAM,aAAa,CAAC;AAErB,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,YAAY,EACrD,OAAO,EAAE,OAAO,CAAC,OAAO,EAAE,YAAY,CAAC,GAAG,eAAe,GACxD,OAAO,IAAI,eAAe,CAE5B;AAiDD,wBAAgB,gBAAgB,CAC9B,SAAS,EAAE,iBAAiB,EAC5B,UAAU,EAAE,MAAM,GACjB,gBAAgB,CAQlB;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,WAEhD"}
@@ -1,9 +1,9 @@
1
+ export type { BaseButtonProps, BorderlessButtonProps, RawButtonProps, RectButtonProps, TouchableProps, } from './components';
2
+ export { BaseButton, BorderlessButton, FlatList, Pressable, RawButton, RectButton, RefreshControl, ScrollView, Switch, TextInput, Touchable, } from './components';
1
3
  export type { GestureDetectorProps } from './detectors';
2
- export { GestureDetector, VirtualGestureDetector, InterceptingGestureDetector, GestureDetectorType, } from './detectors';
3
- export type { TapGesture, TapGestureConfig, TapGestureEvent, FlingGesture, FlingGestureConfig, FlingGestureEvent, LongPressGesture, LongPressGestureConfig, LongPressGestureEvent, PinchGesture, PinchGestureConfig, PinchGestureEvent, RotationGesture, RotationGestureConfig, RotationGestureEvent, HoverGesture, HoverGestureConfig, HoverGestureEvent, ManualGesture, ManualGestureConfig, ManualGestureEvent, NativeGesture, NativeViewGestureConfig, NativeGestureEvent, PanGesture, PanGestureConfig, PanGestureEvent, SingleGesture, SingleGestureEvent, } from './hooks';
4
- export { useSimultaneousGestures, useExclusiveGestures, useCompetingGestures, useTapGesture, useFlingGesture, useLongPressGesture, usePinchGesture, useRotationGesture, useHoverGesture, useManualGesture, useNativeGesture, usePanGesture, } from './hooks';
5
- export type { RawButtonProps, BaseButtonProps, RectButtonProps, BorderlessButtonProps, } from './components';
6
- export { RawButton, BaseButton, RectButton, BorderlessButton, PureNativeButton, Pressable, ScrollView, Switch, TextInput, FlatList, RefreshControl, } from './components';
7
- export type { ComposedGesture } from './types';
4
+ export { GestureDetector, GestureDetectorType, InterceptingGestureDetector, VirtualGestureDetector, } from './detectors';
8
5
  export { GestureStateManager } from './gestureStateManager';
6
+ export type { FlingGesture, FlingGestureActiveEvent, FlingGestureConfig, FlingGestureEvent, HoverGesture, HoverGestureActiveEvent, HoverGestureConfig, HoverGestureEvent, LongPressGesture, LongPressGestureActiveEvent, LongPressGestureConfig, LongPressGestureEvent, ManualGesture, ManualGestureActiveEvent, ManualGestureConfig, ManualGestureEvent, NativeGesture, NativeGestureActiveEvent, NativeGestureConfig, NativeGestureEvent, PanGesture, PanGestureActiveEvent, PanGestureConfig, PanGestureEvent, PinchGesture, PinchGestureActiveEvent, PinchGestureConfig, PinchGestureEvent, RotationGesture, RotationGestureActiveEvent, RotationGestureConfig, RotationGestureEvent, SingleGesture, SingleGestureEvent, TapGesture, TapGestureActiveEvent, TapGestureConfig, TapGestureEvent, } from './hooks';
7
+ export { useCompetingGestures, useExclusiveGestures, useFlingGesture, useHoverGesture, useLongPressGesture, useManualGesture, useNativeGesture, usePanGesture, usePinchGesture, useRotationGesture, useSimultaneousGestures, useTapGesture, } from './hooks';
8
+ export type { ComposedGesture } from './types';
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/v3/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACxD,OAAO,EACL,eAAe,EACf,sBAAsB,EACtB,2BAA2B,EAC3B,mBAAmB,GACpB,MAAM,aAAa,CAAC;AAErB,YAAY,EACV,UAAU,EACV,gBAAgB,EAChB,eAAe,EACf,YAAY,EACZ,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,sBAAsB,EACtB,qBAAqB,EACrB,YAAY,EACZ,kBAAkB,EAClB,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACrB,oBAAoB,EACpB,YAAY,EACZ,kBAAkB,EAClB,iBAAiB,EACjB,aAAa,EACb,mBAAmB,EACnB,kBAAkB,EAClB,aAAa,EACb,uBAAuB,EACvB,kBAAkB,EAClB,UAAU,EACV,gBAAgB,EAChB,eAAe,EACf,aAAa,EACb,kBAAkB,GACnB,MAAM,SAAS,CAAC;AACjB,OAAO,EACL,uBAAuB,EACvB,oBAAoB,EACpB,oBAAoB,EACpB,aAAa,EACb,eAAe,EACf,mBAAmB,EACnB,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,gBAAgB,EAChB,gBAAgB,EAChB,aAAa,GACd,MAAM,SAAS,CAAC;AAEjB,YAAY,EACV,cAAc,EACd,eAAe,EACf,eAAe,EACf,qBAAqB,GACtB,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,SAAS,EACT,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,gBAAgB,EAChB,SAAS,EACT,UAAU,EACV,MAAM,EACN,SAAS,EACT,QAAQ,EACR,cAAc,GACf,MAAM,cAAc,CAAC;AAEtB,YAAY,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/v3/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,eAAe,EACf,qBAAqB,EACrB,cAAc,EACd,eAAe,EACf,cAAc,GACf,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,UAAU,EACV,gBAAgB,EAChB,QAAQ,EACR,SAAS,EACT,SAAS,EACT,UAAU,EACV,cAAc,EACd,UAAU,EACV,MAAM,EACN,SAAS,EACT,SAAS,GACV,MAAM,cAAc,CAAC;AACtB,YAAY,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACxD,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,2BAA2B,EAC3B,sBAAsB,GACvB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,YAAY,EACV,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,EACjB,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,2BAA2B,EAC3B,sBAAsB,EACtB,qBAAqB,EACrB,aAAa,EACb,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,EAClB,aAAa,EACb,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,EAClB,UAAU,EACV,qBAAqB,EACrB,gBAAgB,EAChB,eAAe,EACf,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,EACjB,eAAe,EACf,0BAA0B,EAC1B,qBAAqB,EACrB,oBAAoB,EACpB,aAAa,EACb,kBAAkB,EAClB,UAAU,EACV,qBAAqB,EACrB,gBAAgB,EAChB,eAAe,GAChB,MAAM,SAAS,CAAC;AACjB,OAAO,EACL,oBAAoB,EACpB,oBAAoB,EACpB,eAAe,EACf,eAAe,EACf,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,kBAAkB,EAClB,uBAAuB,EACvB,aAAa,GACd,MAAM,SAAS,CAAC;AACjB,YAAY,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC"}
@@ -1,48 +1,49 @@
1
- import { ActiveCursor, GestureTouchEvent, HitSlop, MouseButton, TouchAction, UserSelect } from '../../handlers/gestureHandlerCommon';
2
- import { AnimatedEvent, ChangeCalculatorType, GestureEvent } from './EventTypes';
3
- import { WithSharedValue } from './ReanimatedTypes';
1
+ import type { ActiveCursor, GestureTouchEvent, HitSlop, MouseButton, TouchAction, UserSelect } from '../../handlers/gestureHandlerCommon';
2
+ import type { AnimatedEvent, ChangeCalculatorType, GestureEndEvent, GestureEvent } from './EventTypes';
3
+ import type { WithSharedValue } from './ReanimatedTypes';
4
4
  export type GestureEventCallback<THandlerData> = (event: GestureEvent<THandlerData>) => void;
5
- export type GestureEventCallbackWithDidSucceed<THandlerData> = (event: GestureEvent<THandlerData>, didSucceed: boolean) => void;
5
+ export type GestureEndEventCallback<THandlerData> = (event: GestureEndEvent<THandlerData>) => void;
6
6
  export type GestureTouchEventCallback = (event: GestureTouchEvent) => void;
7
- export type GestureCallbacks<THandlerData> = {
8
- onBegin?: GestureEventCallback<THandlerData>;
9
- onActivate?: GestureEventCallback<THandlerData>;
10
- onDeactivate?: GestureEventCallbackWithDidSucceed<THandlerData>;
11
- onFinalize?: GestureEventCallbackWithDidSucceed<THandlerData>;
12
- onUpdate?: GestureEventCallback<THandlerData> | AnimatedEvent;
13
- onTouchesDown?: GestureTouchEventCallback;
14
- onTouchesMove?: GestureTouchEventCallback;
15
- onTouchesUp?: GestureTouchEventCallback;
16
- onTouchesCancel?: GestureTouchEventCallback;
7
+ export type GestureCallbacks<THandlerData, TExtendedHandlerData extends THandlerData = THandlerData> = {
8
+ onBegin?: GestureEventCallback<THandlerData> | undefined;
9
+ onActivate?: GestureEventCallback<TExtendedHandlerData> | undefined;
10
+ onUpdate?: GestureEventCallback<TExtendedHandlerData> | AnimatedEvent | undefined;
11
+ onDeactivate?: GestureEndEventCallback<TExtendedHandlerData> | undefined;
12
+ onFinalize?: GestureEndEventCallback<THandlerData> | undefined;
13
+ onTouchesDown?: GestureTouchEventCallback | undefined;
14
+ onTouchesMove?: GestureTouchEventCallback | undefined;
15
+ onTouchesUp?: GestureTouchEventCallback | undefined;
16
+ onTouchesCancel?: GestureTouchEventCallback | undefined;
17
17
  };
18
18
  export type GestureRelations = {
19
19
  simultaneousHandlers: number[];
20
20
  waitFor: number[];
21
21
  blocksHandlers: number[];
22
22
  };
23
- export type InternalConfigProps<THandlerData> = {
24
- shouldUseReanimatedDetector?: boolean;
25
- dispatchesReanimatedEvents?: boolean;
26
- dispatchesAnimatedEvents?: boolean;
27
- needsPointerData?: boolean;
28
- userSelect?: UserSelect;
29
- touchAction?: TouchAction;
30
- enableContextMenu?: boolean;
31
- changeEventCalculator?: ChangeCalculatorType<THandlerData>;
23
+ export type InternalConfigProps<TExtendedHandlerData> = {
24
+ shouldUseReanimatedDetector?: boolean | undefined;
25
+ dispatchesReanimatedEvents?: boolean | undefined;
26
+ dispatchesAnimatedEvents?: boolean | undefined;
27
+ needsPointerData?: boolean | undefined;
28
+ userSelect?: UserSelect | undefined;
29
+ touchAction?: TouchAction | undefined;
30
+ enableContextMenu?: boolean | undefined;
31
+ changeEventCalculator?: ChangeCalculatorType<TExtendedHandlerData> | undefined;
32
+ fillInDefaultValues?: ((event: GestureEvent<TExtendedHandlerData>) => void) | undefined;
32
33
  };
33
34
  export type CommonGestureConfig = {
34
- disableReanimated?: boolean;
35
- useAnimated?: boolean;
36
- testID?: string;
35
+ disableReanimated?: boolean | undefined;
36
+ useAnimated?: boolean | undefined;
37
+ testID?: string | undefined;
37
38
  } & WithSharedValue<{
38
- runOnJS?: boolean;
39
- enabled?: boolean;
40
- shouldCancelWhenOutside?: boolean;
41
- hitSlop?: HitSlop;
42
- activeCursor?: ActiveCursor;
43
- mouseButton?: MouseButton;
44
- cancelsTouchesInView?: boolean;
45
- manualActivation?: boolean;
39
+ runOnJS?: boolean | undefined;
40
+ enabled?: boolean | undefined;
41
+ shouldCancelWhenOutside?: boolean | undefined;
42
+ hitSlop?: HitSlop | undefined;
43
+ activeCursor?: ActiveCursor | undefined;
44
+ mouseButton?: MouseButton | undefined;
45
+ cancelsTouchesInView?: boolean | undefined;
46
+ manualActivation?: boolean | undefined;
46
47
  }, ActiveCursor | MouseButton>;
47
48
  export type ComposedGestureConfig = {
48
49
  shouldUseReanimatedDetector: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"ConfigTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/ConfigTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EACZ,iBAAiB,EACjB,OAAO,EACP,WAAW,EACX,WAAW,EACX,UAAU,EACX,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EACL,aAAa,EACb,oBAAoB,EACpB,YAAY,EACb,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,MAAM,MAAM,oBAAoB,CAAC,YAAY,IAAI,CAC/C,KAAK,EAAE,YAAY,CAAC,YAAY,CAAC,KAC9B,IAAI,CAAC;AAEV,MAAM,MAAM,kCAAkC,CAAC,YAAY,IAAI,CAC7D,KAAK,EAAE,YAAY,CAAC,YAAY,CAAC,EACjC,UAAU,EAAE,OAAO,KAChB,IAAI,CAAC;AAEV,MAAM,MAAM,yBAAyB,GAAG,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;AAE3E,MAAM,MAAM,gBAAgB,CAAC,YAAY,IAAI;IAC3C,OAAO,CAAC,EAAE,oBAAoB,CAAC,YAAY,CAAC,CAAC;IAC7C,UAAU,CAAC,EAAE,oBAAoB,CAAC,YAAY,CAAC,CAAC;IAChD,YAAY,CAAC,EAAE,kCAAkC,CAAC,YAAY,CAAC,CAAC;IAChE,UAAU,CAAC,EAAE,kCAAkC,CAAC,YAAY,CAAC,CAAC;IAC9D,QAAQ,CAAC,EAAE,oBAAoB,CAAC,YAAY,CAAC,GAAG,aAAa,CAAC;IAC9D,aAAa,CAAC,EAAE,yBAAyB,CAAC;IAC1C,aAAa,CAAC,EAAE,yBAAyB,CAAC;IAC1C,WAAW,CAAC,EAAE,yBAAyB,CAAC;IACxC,eAAe,CAAC,EAAE,yBAAyB,CAAC;CAC7C,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,oBAAoB,EAAE,MAAM,EAAE,CAAC;IAC/B,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,cAAc,EAAE,MAAM,EAAE,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,mBAAmB,CAAC,YAAY,IAAI;IAC9C,2BAA2B,CAAC,EAAE,OAAO,CAAC;IACtC,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,qBAAqB,CAAC,EAAE,oBAAoB,CAAC,YAAY,CAAC,CAAC;CAC5D,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,GAAG,eAAe,CACjB;IACE,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B,EACD,YAAY,GAAG,WAAW,CAC3B,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,2BAA2B,EAAE,OAAO,CAAC;IACrC,wBAAwB,EAAE,OAAO,CAAC;CACnC,CAAC"}
1
+ {"version":3,"file":"ConfigTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/ConfigTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EACZ,iBAAiB,EACjB,OAAO,EACP,WAAW,EACX,WAAW,EACX,UAAU,EACX,MAAM,qCAAqC,CAAC;AAC7C,OAAO,KAAK,EACV,aAAa,EACb,oBAAoB,EACpB,eAAe,EACf,YAAY,EACb,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEzD,MAAM,MAAM,oBAAoB,CAAC,YAAY,IAAI,CAC/C,KAAK,EAAE,YAAY,CAAC,YAAY,CAAC,KAC9B,IAAI,CAAC;AAEV,MAAM,MAAM,uBAAuB,CAAC,YAAY,IAAI,CAClD,KAAK,EAAE,eAAe,CAAC,YAAY,CAAC,KACjC,IAAI,CAAC;AAEV,MAAM,MAAM,yBAAyB,GAAG,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;AAE3E,MAAM,MAAM,gBAAgB,CAC1B,YAAY,EACZ,oBAAoB,SAAS,YAAY,GAAG,YAAY,IACtD;IACF,OAAO,CAAC,EAAE,oBAAoB,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC;IACzD,UAAU,CAAC,EAAE,oBAAoB,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC;IACpE,QAAQ,CAAC,EACL,oBAAoB,CAAC,oBAAoB,CAAC,GAC1C,aAAa,GACb,SAAS,CAAC;IACd,YAAY,CAAC,EAAE,uBAAuB,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC;IACzE,UAAU,CAAC,EAAE,uBAAuB,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC;IAC/D,aAAa,CAAC,EAAE,yBAAyB,GAAG,SAAS,CAAC;IACtD,aAAa,CAAC,EAAE,yBAAyB,GAAG,SAAS,CAAC;IACtD,WAAW,CAAC,EAAE,yBAAyB,GAAG,SAAS,CAAC;IACpD,eAAe,CAAC,EAAE,yBAAyB,GAAG,SAAS,CAAC;CACzD,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,oBAAoB,EAAE,MAAM,EAAE,CAAC;IAC/B,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,cAAc,EAAE,MAAM,EAAE,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,mBAAmB,CAAC,oBAAoB,IAAI;IACtD,2BAA2B,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAClD,0BAA0B,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACjD,wBAAwB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/C,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACvC,UAAU,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC;IACpC,WAAW,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IACtC,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACxC,qBAAqB,CAAC,EAClB,oBAAoB,CAAC,oBAAoB,CAAC,GAC1C,SAAS,CAAC;IACd,mBAAmB,CAAC,EAChB,CAAC,CAAC,KAAK,EAAE,YAAY,CAAC,oBAAoB,CAAC,KAAK,IAAI,CAAC,GACrD,SAAS,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACxC,WAAW,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAClC,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC7B,GAAG,eAAe,CACjB;IACE,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,uBAAuB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9C,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,YAAY,CAAC,EAAE,YAAY,GAAG,SAAS,CAAC;IACxC,WAAW,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IACtC,oBAAoB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC3C,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CACxC,EACD,YAAY,GAAG,WAAW,CAC3B,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,2BAA2B,EAAE,OAAO,CAAC;IACrC,wBAAwB,EAAE,OAAO,CAAC;CACnC,CAAC"}
@@ -1,13 +1,17 @@
1
- import { AnimatedEvent, GestureUpdateEventWithHandlerData, GestureHandlerEventWithHandlerData } from './EventTypes';
2
- export type DetectorCallbacks<THandlerData> = {
3
- jsEventHandler: undefined | ((event: GestureHandlerEventWithHandlerData<THandlerData>) => void);
4
- reanimatedEventHandler: undefined | ((event: GestureHandlerEventWithHandlerData<THandlerData>) => void);
5
- animatedEventHandler: undefined | AnimatedEvent | ((event: GestureUpdateEventWithHandlerData<THandlerData>) => void);
1
+ import type { TouchAction, UserSelect } from '../../handlers/gestureHandlerCommon';
2
+ import type { AnimatedEvent, GestureHandlerEventWithHandlerData, GestureUpdateEventWithHandlerData } from './EventTypes';
3
+ export type DetectorCallbacks<THandlerData, TExtendedHandlerData extends THandlerData = THandlerData> = {
4
+ jsEventHandler: undefined | ((event: GestureHandlerEventWithHandlerData<THandlerData, TExtendedHandlerData>) => void);
5
+ reanimatedEventHandler: undefined | ((event: GestureHandlerEventWithHandlerData<THandlerData, TExtendedHandlerData>) => void);
6
+ animatedEventHandler: undefined | AnimatedEvent | ((event: GestureUpdateEventWithHandlerData<TExtendedHandlerData>) => void);
6
7
  };
7
8
  export type VirtualChild = {
8
9
  viewTag: number;
9
10
  handlerTags: number[];
10
- methods: DetectorCallbacks<unknown>;
11
+ methods: DetectorCallbacks<unknown, unknown>;
11
12
  viewRef: unknown;
13
+ userSelect?: UserSelect | undefined;
14
+ touchAction?: TouchAction | undefined;
15
+ enableContextMenu?: boolean | undefined;
12
16
  };
13
17
  //# sourceMappingURL=DetectorTypes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DetectorTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/DetectorTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,iCAAiC,EACjC,kCAAkC,EACnC,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,iBAAiB,CAAC,YAAY,IAAI;IAC5C,cAAc,EACV,SAAS,GACT,CAAC,CAAC,KAAK,EAAE,kCAAkC,CAAC,YAAY,CAAC,KAAK,IAAI,CAAC,CAAC;IACxE,sBAAsB,EAClB,SAAS,GACT,CAAC,CAAC,KAAK,EAAE,kCAAkC,CAAC,YAAY,CAAC,KAAK,IAAI,CAAC,CAAC;IACxE,oBAAoB,EAChB,SAAS,GACT,aAAa,GACb,CAAC,CAAC,KAAK,EAAE,iCAAiC,CAAC,YAAY,CAAC,KAAK,IAAI,CAAC,CAAC;CACxE,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,OAAO,EAAE,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAGpC,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC"}
1
+ {"version":3,"file":"DetectorTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/DetectorTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,WAAW,EACX,UAAU,EACX,MAAM,qCAAqC,CAAC;AAC7C,OAAO,KAAK,EACV,aAAa,EACb,kCAAkC,EAClC,iCAAiC,EAClC,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,iBAAiB,CAC3B,YAAY,EACZ,oBAAoB,SAAS,YAAY,GAAG,YAAY,IACtD;IACF,cAAc,EACV,SAAS,GACT,CAAC,CACC,KAAK,EAAE,kCAAkC,CACvC,YAAY,EACZ,oBAAoB,CACrB,KACE,IAAI,CAAC,CAAC;IACf,sBAAsB,EAClB,SAAS,GACT,CAAC,CACC,KAAK,EAAE,kCAAkC,CACvC,YAAY,EACZ,oBAAoB,CACrB,KACE,IAAI,CAAC,CAAC;IACf,oBAAoB,EAChB,SAAS,GACT,aAAa,GACb,CAAC,CACC,KAAK,EAAE,iCAAiC,CAAC,oBAAoB,CAAC,KAC3D,IAAI,CAAC,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,OAAO,EAAE,iBAAiB,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IAG7C,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC;IACpC,WAAW,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IACtC,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CACzC,CAAC"}
@@ -1,7 +1,7 @@
1
- import { Animated, NativeSyntheticEvent } from 'react-native';
2
- import { GestureTouchEvent } from '../../handlers/gestureHandlerCommon';
3
- import { PointerType } from '../../PointerType';
4
- import { State } from '../../State';
1
+ import type { Animated, NativeSyntheticEvent } from 'react-native';
2
+ import type { GestureTouchEvent } from '../../handlers/gestureHandlerCommon';
3
+ import type { PointerType } from '../../PointerType';
4
+ import type { State } from '../../State';
5
5
  type EventPayload = {
6
6
  handlerTag: number;
7
7
  state: State;
@@ -20,19 +20,22 @@ export type GestureUpdateEventWithHandlerData<T> = EventPayload & {
20
20
  export type GestureStateChangeEventWithHandlerData<T> = StateChangeEventPayload & {
21
21
  handlerData: HandlerData<T>;
22
22
  };
23
- export type GestureHandlerEventWithHandlerData<THandlerData> = UpdateEventWithHandlerData<THandlerData> | StateChangeEventWithHandlerData<THandlerData> | TouchEvent;
24
- export type UnpackedGestureHandlerEventWithHandlerData<THandlerData> = GestureUpdateEventWithHandlerData<THandlerData> | GestureStateChangeEventWithHandlerData<THandlerData> | GestureTouchEvent;
23
+ export type GestureHandlerEventWithHandlerData<THandlerData, TExtendedHandlerData extends THandlerData = THandlerData> = UpdateEventWithHandlerData<TExtendedHandlerData> | StateChangeEventWithHandlerData<THandlerData> | TouchEvent;
24
+ export type UnpackedGestureHandlerEventWithHandlerData<THandlerData, TExtendedHandlerData extends THandlerData = THandlerData> = GestureUpdateEventWithHandlerData<TExtendedHandlerData> | GestureStateChangeEventWithHandlerData<THandlerData> | GestureTouchEvent;
25
25
  export type UpdateEventWithHandlerData<THandlerData> = GestureUpdateEventWithHandlerData<THandlerData> | NativeSyntheticEvent<GestureUpdateEventWithHandlerData<THandlerData>>;
26
26
  export type StateChangeEventWithHandlerData<THandlerData> = GestureStateChangeEventWithHandlerData<THandlerData> | NativeSyntheticEvent<GestureStateChangeEventWithHandlerData<THandlerData>>;
27
27
  export type TouchEvent = GestureTouchEvent | NativeSyntheticEvent<GestureTouchEvent>;
28
28
  export type GestureEvent<THandlerData> = {
29
29
  handlerTag: number;
30
30
  } & HandlerData<THandlerData>;
31
+ export type GestureEndEvent<THandlerData> = {
32
+ canceled: boolean;
33
+ } & GestureEvent<THandlerData>;
31
34
  export type UnpackedGestureHandlerEvent<THandlerData> = GestureEvent<THandlerData> | GestureTouchEvent;
32
35
  export type AnimatedEvent = {
33
36
  _argMapping: (Animated.Mapping | null)[];
34
37
  };
35
- export type ChangeCalculatorType<THandlerData> = (current: GestureUpdateEventWithHandlerData<THandlerData>, previous?: GestureUpdateEventWithHandlerData<THandlerData>) => GestureUpdateEventWithHandlerData<THandlerData>;
36
- export type DiffCalculatorType<THandlerData> = (current: HandlerData<THandlerData>, previous: HandlerData<THandlerData> | null) => Partial<HandlerData<THandlerData>>;
38
+ export type ChangeCalculatorType<TExtendedHandlerData> = (current: GestureUpdateEventWithHandlerData<TExtendedHandlerData>, previous?: GestureUpdateEventWithHandlerData<TExtendedHandlerData>) => GestureUpdateEventWithHandlerData<TExtendedHandlerData>;
39
+ export type DiffCalculatorType<TExtendedHandlerData> = (current: HandlerData<TExtendedHandlerData>, previous: HandlerData<TExtendedHandlerData> | null) => Partial<HandlerData<TExtendedHandlerData>>;
37
40
  export {};
38
41
  //# sourceMappingURL=EventTypes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EventTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/EventTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAC9D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qCAAqC,CAAC;AACxE,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,KAAK,YAAY,GAAG;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;CACd,CAAC;AACF,KAAK,uBAAuB,GAAG,YAAY,GAAG;IAC5C,QAAQ,EAAE,KAAK,CAAC;CACjB,CAAC;AAEF,KAAK,eAAe,GAAG;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,WAAW,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,eAAe,GAAG,CAAC,CAAC;AAEjD,MAAM,MAAM,iCAAiC,CAAC,CAAC,IAAI,YAAY,GAAG;IAChE,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,sCAAsC,CAAC,CAAC,IAClD,uBAAuB,GAAG;IACxB,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;CAC7B,CAAC;AAEJ,MAAM,MAAM,kCAAkC,CAAC,YAAY,IACvD,0BAA0B,CAAC,YAAY,CAAC,GACxC,+BAA+B,CAAC,YAAY,CAAC,GAC7C,UAAU,CAAC;AAEf,MAAM,MAAM,0CAA0C,CAAC,YAAY,IAC/D,iCAAiC,CAAC,YAAY,CAAC,GAC/C,sCAAsC,CAAC,YAAY,CAAC,GACpD,iBAAiB,CAAC;AAEtB,MAAM,MAAM,0BAA0B,CAAC,YAAY,IAC/C,iCAAiC,CAAC,YAAY,CAAC,GAC/C,oBAAoB,CAAC,iCAAiC,CAAC,YAAY,CAAC,CAAC,CAAC;AAE1E,MAAM,MAAM,+BAA+B,CAAC,YAAY,IACpD,sCAAsC,CAAC,YAAY,CAAC,GACpD,oBAAoB,CAAC,sCAAsC,CAAC,YAAY,CAAC,CAAC,CAAC;AAE/E,MAAM,MAAM,UAAU,GAClB,iBAAiB,GACjB,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;AAE5C,MAAM,MAAM,YAAY,CAAC,YAAY,IAAI;IACvC,UAAU,EAAE,MAAM,CAAC;CACpB,GAAG,WAAW,CAAC,YAAY,CAAC,CAAC;AAE9B,MAAM,MAAM,2BAA2B,CAAC,YAAY,IAChD,YAAY,CAAC,YAAY,CAAC,GAC1B,iBAAiB,CAAC;AAKtB,MAAM,MAAM,aAAa,GAAG;IAC1B,WAAW,EAAE,CAAC,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;CAC1C,CAAC;AAEF,MAAM,MAAM,oBAAoB,CAAC,YAAY,IAAI,CAC/C,OAAO,EAAE,iCAAiC,CAAC,YAAY,CAAC,EACxD,QAAQ,CAAC,EAAE,iCAAiC,CAAC,YAAY,CAAC,KACvD,iCAAiC,CAAC,YAAY,CAAC,CAAC;AAErD,MAAM,MAAM,kBAAkB,CAAC,YAAY,IAAI,CAC7C,OAAO,EAAE,WAAW,CAAC,YAAY,CAAC,EAClC,QAAQ,EAAE,WAAW,CAAC,YAAY,CAAC,GAAG,IAAI,KACvC,OAAO,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"EventTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/EventTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAEnE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qCAAqC,CAAC;AAC7E,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AACrD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEzC,KAAK,YAAY,GAAG;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;CACd,CAAC;AACF,KAAK,uBAAuB,GAAG,YAAY,GAAG;IAC5C,QAAQ,EAAE,KAAK,CAAC;CACjB,CAAC;AAEF,KAAK,eAAe,GAAG;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,WAAW,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,eAAe,GAAG,CAAC,CAAC;AAEjD,MAAM,MAAM,iCAAiC,CAAC,CAAC,IAAI,YAAY,GAAG;IAChE,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,sCAAsC,CAAC,CAAC,IAClD,uBAAuB,GAAG;IACxB,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;CAC7B,CAAC;AAEJ,MAAM,MAAM,kCAAkC,CAC5C,YAAY,EACZ,oBAAoB,SAAS,YAAY,GAAG,YAAY,IAEtD,0BAA0B,CAAC,oBAAoB,CAAC,GAChD,+BAA+B,CAAC,YAAY,CAAC,GAC7C,UAAU,CAAC;AAEf,MAAM,MAAM,0CAA0C,CACpD,YAAY,EACZ,oBAAoB,SAAS,YAAY,GAAG,YAAY,IAEtD,iCAAiC,CAAC,oBAAoB,CAAC,GACvD,sCAAsC,CAAC,YAAY,CAAC,GACpD,iBAAiB,CAAC;AAEtB,MAAM,MAAM,0BAA0B,CAAC,YAAY,IAC/C,iCAAiC,CAAC,YAAY,CAAC,GAC/C,oBAAoB,CAAC,iCAAiC,CAAC,YAAY,CAAC,CAAC,CAAC;AAE1E,MAAM,MAAM,+BAA+B,CAAC,YAAY,IACpD,sCAAsC,CAAC,YAAY,CAAC,GACpD,oBAAoB,CAAC,sCAAsC,CAAC,YAAY,CAAC,CAAC,CAAC;AAE/E,MAAM,MAAM,UAAU,GAClB,iBAAiB,GACjB,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;AAE5C,MAAM,MAAM,YAAY,CAAC,YAAY,IAAI;IACvC,UAAU,EAAE,MAAM,CAAC;CACpB,GAAG,WAAW,CAAC,YAAY,CAAC,CAAC;AAE9B,MAAM,MAAM,eAAe,CAAC,YAAY,IAAI;IAC1C,QAAQ,EAAE,OAAO,CAAC;CACnB,GAAG,YAAY,CAAC,YAAY,CAAC,CAAC;AAE/B,MAAM,MAAM,2BAA2B,CAAC,YAAY,IAChD,YAAY,CAAC,YAAY,CAAC,GAC1B,iBAAiB,CAAC;AAKtB,MAAM,MAAM,aAAa,GAAG;IAC1B,WAAW,EAAE,CAAC,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;CAC1C,CAAC;AAEF,MAAM,MAAM,oBAAoB,CAAC,oBAAoB,IAAI,CACvD,OAAO,EAAE,iCAAiC,CAAC,oBAAoB,CAAC,EAChE,QAAQ,CAAC,EAAE,iCAAiC,CAAC,oBAAoB,CAAC,KAC/D,iCAAiC,CAAC,oBAAoB,CAAC,CAAC;AAE7D,MAAM,MAAM,kBAAkB,CAAC,oBAAoB,IAAI,CACrD,OAAO,EAAE,WAAW,CAAC,oBAAoB,CAAC,EAC1C,QAAQ,EAAE,WAAW,CAAC,oBAAoB,CAAC,GAAG,IAAI,KAC/C,OAAO,CAAC,WAAW,CAAC,oBAAoB,CAAC,CAAC,CAAC"}
@@ -1,33 +1,33 @@
1
- import { DetectorCallbacks } from './DetectorTypes';
2
- import { CommonGestureConfig, ComposedGestureConfig, GestureCallbacks, GestureRelations, InternalConfigProps } from './ConfigTypes';
3
- import { FilterNeverProperties } from './UtilityTypes';
1
+ import type { CommonGestureConfig, ComposedGestureConfig, GestureCallbacks, GestureRelations, InternalConfigProps } from './ConfigTypes';
2
+ import type { DetectorCallbacks } from './DetectorTypes';
3
+ import type { FilterNeverProperties } from './UtilityTypes';
4
4
  export type ExternalRelations = {
5
- simultaneousWith?: AnyGesture | AnyGesture[];
6
- requireToFail?: AnyGesture | AnyGesture[];
7
- block?: AnyGesture | AnyGesture[];
5
+ simultaneousWith?: AnyGesture | AnyGesture[] | undefined;
6
+ requireToFail?: AnyGesture | AnyGesture[] | undefined;
7
+ block?: AnyGesture | AnyGesture[] | undefined;
8
8
  };
9
- export type BaseGestureConfig<THandlerData, TConfig> = ExternalRelations & GestureCallbacks<THandlerData> & FilterNeverProperties<TConfig> & InternalConfigProps<THandlerData> & CommonGestureConfig;
10
- export type BaseDiscreteGestureConfig<THandlerData, TConfig> = Omit<BaseGestureConfig<THandlerData, TConfig>, 'onUpdate'>;
11
- export type SingleGesture<THandlerData, TConfig> = {
9
+ export type BaseGestureConfig<TConfig, THandlerData, TExtendedHandlerData extends THandlerData = THandlerData> = ExternalRelations & GestureCallbacks<THandlerData, TExtendedHandlerData> & FilterNeverProperties<TConfig> & InternalConfigProps<TExtendedHandlerData> & CommonGestureConfig;
10
+ export type BaseDiscreteGestureConfig<TConfig, THandlerData, TExtendedHandlerData extends THandlerData = THandlerData> = Omit<BaseGestureConfig<TConfig, THandlerData, TExtendedHandlerData>, 'onUpdate'>;
11
+ export type SingleGesture<TConfig, THandlerData, TExtendedHandlerData extends THandlerData = THandlerData> = {
12
12
  handlerTag: number;
13
13
  type: SingleGestureName;
14
- config: BaseGestureConfig<THandlerData, TConfig>;
15
- detectorCallbacks: DetectorCallbacks<THandlerData>;
14
+ config: BaseGestureConfig<TConfig, THandlerData, TExtendedHandlerData>;
15
+ detectorCallbacks: DetectorCallbacks<THandlerData, TExtendedHandlerData>;
16
16
  gestureRelations: GestureRelations;
17
17
  };
18
- export type DiscreteSingleGesture<THandlerData, TConfig> = {
19
- [K in keyof SingleGesture<THandlerData, TConfig>]: K extends 'config' ? Omit<SingleGesture<THandlerData, TConfig>[K], 'onUpdate'> : SingleGesture<THandlerData, TConfig>[K];
18
+ export type DiscreteSingleGesture<TConfig, THandlerData, TExtendedHandlerData extends THandlerData = THandlerData> = {
19
+ [K in keyof SingleGesture<TConfig, THandlerData, TExtendedHandlerData>]: K extends 'config' ? Omit<SingleGesture<TConfig, THandlerData, TExtendedHandlerData>[K], 'onUpdate'> : SingleGesture<TConfig, THandlerData, TExtendedHandlerData>[K];
20
20
  };
21
21
  export type ComposedGesture = {
22
22
  handlerTags: number[];
23
23
  type: ComposedGestureName;
24
24
  config: ComposedGestureConfig;
25
- detectorCallbacks: DetectorCallbacks<unknown>;
25
+ detectorCallbacks: DetectorCallbacks<unknown, unknown>;
26
26
  externalSimultaneousHandlers: number[];
27
27
  gestures: Gesture[];
28
28
  };
29
- export type Gesture<THandlerData = unknown, TConfig = unknown> = SingleGesture<THandlerData, TConfig> | ComposedGesture;
30
- export type AnyGesture = Gesture<any, unknown>;
29
+ export type Gesture<TConfig = unknown, THandlerData = unknown, TExtendedHandlerData extends THandlerData = THandlerData> = SingleGesture<TConfig, THandlerData, TExtendedHandlerData> | ComposedGesture;
30
+ export type AnyGesture = Gesture<unknown, any>;
31
31
  export declare enum SingleGestureName {
32
32
  Tap = "TapGestureHandler",
33
33
  LongPress = "LongPressGestureHandler",
@@ -1 +1 @@
1
- {"version":3,"file":"GestureTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/GestureTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpD,OAAO,EACL,mBAAmB,EACnB,qBAAqB,EACrB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACpB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAGvD,MAAM,MAAM,iBAAiB,GAAG;IAC9B,gBAAgB,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,CAAC;IAC7C,aAAa,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,CAAC;IAC1C,KAAK,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,CAAC;CACnC,CAAC;AAGF,MAAM,MAAM,iBAAiB,CAAC,YAAY,EAAE,OAAO,IAAI,iBAAiB,GACtE,gBAAgB,CAAC,YAAY,CAAC,GAC9B,qBAAqB,CAAC,OAAO,CAAC,GAC9B,mBAAmB,CAAC,YAAY,CAAC,GACjC,mBAAmB,CAAC;AAEtB,MAAM,MAAM,yBAAyB,CAAC,YAAY,EAAE,OAAO,IAAI,IAAI,CACjE,iBAAiB,CAAC,YAAY,EAAE,OAAO,CAAC,EACxC,UAAU,CACX,CAAC;AAEF,MAAM,MAAM,aAAa,CAAC,YAAY,EAAE,OAAO,IAAI;IACjD,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,iBAAiB,CAAC;IACxB,MAAM,EAAE,iBAAiB,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;IACjD,iBAAiB,EAAE,iBAAiB,CAAC,YAAY,CAAC,CAAC;IACnD,gBAAgB,EAAE,gBAAgB,CAAC;CACpC,CAAC;AAEF,MAAM,MAAM,qBAAqB,CAAC,YAAY,EAAE,OAAO,IAAI;KACxD,CAAC,IAAI,MAAM,aAAa,CAAC,YAAY,EAAE,OAAO,CAAC,GAAG,CAAC,SAAS,QAAQ,GACjE,IAAI,CAAC,aAAa,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,GACzD,aAAa,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;CAC5C,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,IAAI,EAAE,mBAAmB,CAAC;IAC1B,MAAM,EAAE,qBAAqB,CAAC;IAC9B,iBAAiB,EAAE,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAC9C,4BAA4B,EAAE,MAAM,EAAE,CAAC;IACvC,QAAQ,EAAE,OAAO,EAAE,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,OAAO,CAAC,YAAY,GAAG,OAAO,EAAE,OAAO,GAAG,OAAO,IACzD,aAAa,CAAC,YAAY,EAAE,OAAO,CAAC,GACpC,eAAe,CAAC;AAGpB,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;AAE/C,oBAAY,iBAAiB;IAC3B,GAAG,sBAAsB;IACzB,SAAS,4BAA4B;IACrC,GAAG,sBAAsB;IACzB,KAAK,wBAAwB;IAC7B,QAAQ,2BAA2B;IACnC,KAAK,wBAAwB;IAC7B,MAAM,yBAAyB;IAC/B,MAAM,6BAA6B;IACnC,KAAK,wBAAwB;CAC9B;AAED,oBAAY,mBAAmB;IAC7B,YAAY,wBAAwB;IACpC,SAAS,qBAAqB;IAC9B,IAAI,gBAAgB;CACrB"}
1
+ {"version":3,"file":"GestureTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/GestureTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,qBAAqB,EACrB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACpB,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAG5D,MAAM,MAAM,iBAAiB,GAAG;IAC9B,gBAAgB,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,GAAG,SAAS,CAAC;IACzD,aAAa,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,GAAG,SAAS,CAAC;IACtD,KAAK,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,GAAG,SAAS,CAAC;CAC/C,CAAC;AAGF,MAAM,MAAM,iBAAiB,CAC3B,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,GAAG,YAAY,IACtD,iBAAiB,GACnB,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,GACpD,qBAAqB,CAAC,OAAO,CAAC,GAC9B,mBAAmB,CAAC,oBAAoB,CAAC,GACzC,mBAAmB,CAAC;AAEtB,MAAM,MAAM,yBAAyB,CACnC,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,GAAG,YAAY,IACtD,IAAI,CACN,iBAAiB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAC9D,UAAU,CACX,CAAC;AAEF,MAAM,MAAM,aAAa,CACvB,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,GAAG,YAAY,IACtD;IACF,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,iBAAiB,CAAC;IACxB,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,CAAC;IACvE,iBAAiB,EAAE,iBAAiB,CAAC,YAAY,EAAE,oBAAoB,CAAC,CAAC;IACzE,gBAAgB,EAAE,gBAAgB,CAAC;CACpC,CAAC;AAEF,MAAM,MAAM,qBAAqB,CAC/B,OAAO,EACP,YAAY,EACZ,oBAAoB,SAAS,YAAY,GAAG,YAAY,IACtD;KACD,CAAC,IAAI,MAAM,aAAa,CACvB,OAAO,EACP,YAAY,EACZ,oBAAoB,CACrB,GAAG,CAAC,SAAS,QAAQ,GAClB,IAAI,CACF,aAAa,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAC7D,UAAU,CACX,GACD,aAAa,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC;CAClE,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,IAAI,EAAE,mBAAmB,CAAC;IAC1B,MAAM,EAAE,qBAAqB,CAAC;IAC9B,iBAAiB,EAAE,iBAAiB,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IACvD,4BAA4B,EAAE,MAAM,EAAE,CAAC;IACvC,QAAQ,EAAE,OAAO,EAAE,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,OAAO,CACjB,OAAO,GAAG,OAAO,EACjB,YAAY,GAAG,OAAO,EACtB,oBAAoB,SAAS,YAAY,GAAG,YAAY,IAEtD,aAAa,CAAC,OAAO,EAAE,YAAY,EAAE,oBAAoB,CAAC,GAC1D,eAAe,CAAC;AAGpB,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;AAE/C,oBAAY,iBAAiB;IAC3B,GAAG,sBAAsB;IACzB,SAAS,4BAA4B;IACrC,GAAG,sBAAsB;IACzB,KAAK,wBAAwB;IAC7B,QAAQ,2BAA2B;IACnC,KAAK,wBAAwB;IAC7B,MAAM,yBAAyB;IAC/B,MAAM,6BAA6B;IACnC,KAAK,wBAAwB;CAC9B;AAED,oBAAY,mBAAmB;IAC7B,YAAY,wBAAwB;IACpC,SAAS,qBAAqB;IAC9B,IAAI,gBAAgB;CACrB"}
@@ -1,5 +1,8 @@
1
- import { CommonGestureConfig, ExternalRelations, GestureCallbacks } from '.';
2
- import { NativeGestureNativeProperties } from '../hooks/gestures/native/NativeProperties';
3
- import { NativeViewHandlerData } from '../hooks/gestures/native/useNativeGesture';
4
- export type NativeWrapperProperties = CommonGestureConfig & GestureCallbacks<NativeViewHandlerData> & NativeGestureNativeProperties & ExternalRelations;
1
+ import type { NativeGesture, NativeGestureNativeProperties, NativeHandlerData } from '../hooks/gestures/native/NativeTypes';
2
+ import type { CommonGestureConfig, ExternalRelations, GestureCallbacks } from '.';
3
+ export type WrapperSpecificProperties<T = unknown> = {
4
+ ref?: React.Ref<T> | undefined;
5
+ onGestureUpdate_CAN_CAUSE_INFINITE_RERENDER?: (gesture: NativeGesture) => void;
6
+ };
7
+ export type NativeWrapperProperties<T = unknown> = CommonGestureConfig & GestureCallbacks<NativeHandlerData> & NativeGestureNativeProperties & ExternalRelations & WrapperSpecificProperties<T>;
5
8
  //# sourceMappingURL=NativeWrapperType.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"NativeWrapperType.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/NativeWrapperType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,GAAG,CAAC;AAC7E,OAAO,EAAE,6BAA6B,EAAE,MAAM,2CAA2C,CAAC;AAC1F,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAElF,MAAM,MAAM,uBAAuB,GAAG,mBAAmB,GACvD,gBAAgB,CAAC,qBAAqB,CAAC,GACvC,6BAA6B,GAC7B,iBAAiB,CAAC"}
1
+ {"version":3,"file":"NativeWrapperType.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/NativeWrapperType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,6BAA6B,EAC7B,iBAAiB,EAClB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EACV,mBAAmB,EACnB,iBAAiB,EACjB,gBAAgB,EACjB,MAAM,GAAG,CAAC;AAEX,MAAM,MAAM,yBAAyB,CAAC,CAAC,GAAG,OAAO,IAAI;IACnD,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC;IAC/B,2CAA2C,CAAC,EAAE,CAC5C,OAAO,EAAE,aAAa,KACnB,IAAI,CAAC;CACX,CAAC;AAEF,MAAM,MAAM,uBAAuB,CAAC,CAAC,GAAG,OAAO,IAAI,mBAAmB,GACpE,gBAAgB,CAAC,iBAAiB,CAAC,GACnC,6BAA6B,GAC7B,iBAAiB,GACjB,yBAAyB,CAAC,CAAC,CAAC,CAAC"}
@@ -9,7 +9,7 @@ export type SharedValue<Value = unknown> = {
9
9
  export type SharedValueOrT<T, P = never> = T | (Exclude<T, undefined> extends P ? SharedValue<Exclude<T, undefined>> : T extends any ? SharedValue<Exclude<T, undefined>> : SharedValue<Exclude<T, undefined>>);
10
10
  export type WithSharedValue<T, P = never> = T extends object ? WithSharedValueRecursive<T, P> : Simplify<SharedValueOrT<T, P>>;
11
11
  type WithSharedValueRecursive<T extends object, P> = {
12
- [K in keyof T]: Exclude<T[K], undefined> extends P ? Simplify<SharedValueOrT<T[K], P>> : boolean extends T[K] ? boolean | SharedValue<boolean> : T[K] extends [number, number] ? [WithSharedValue<number, P>, WithSharedValue<number, P>] : WithSharedValue<T[K], P>;
12
+ [K in keyof T]: Exclude<T[K], undefined> extends P ? Simplify<SharedValueOrT<T[K], P>> : boolean extends T[K] ? boolean | SharedValue<boolean> | Extract<T[K], undefined> : T[K] extends [number, number] ? [WithSharedValue<number, P>, WithSharedValue<number, P>] : WithSharedValue<T[K], P>;
13
13
  };
14
14
  type Simplify<T> = T extends SharedValue<never> ? never : T extends SharedValue<any> ? T : {
15
15
  [K in keyof T]: T[K];
@@ -1 +1 @@
1
- {"version":3,"file":"ReanimatedTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/ReanimatedTypes.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,CAAC,KAAK,GAAG,OAAO,IAAI;IACzC,KAAK,EAAE,KAAK,CAAC;IACb,GAAG,IAAI,KAAK,CAAC;IACb,GAAG,CAAC,KAAK,EAAE,KAAK,GAAG,CAAC,CAAC,KAAK,EAAE,KAAK,KAAK,KAAK,CAAC,GAAG,IAAI,CAAC;IACpD,WAAW,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,KAAK,IAAI,CAAC;IAC5E,cAAc,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,MAAM,EAAE,CACN,QAAQ,CAAC,EAAE,CAAC,CAAC,SAAS,KAAK,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,EAC3C,WAAW,CAAC,EAAE,OAAO,KAClB,IAAI,CAAC;CACX,CAAC;AAGF,MAAM,MAAM,cAAc,CAAC,CAAC,EAAE,CAAC,GAAG,KAAK,IAEnC,CAAC,GAED,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,GAC5B,WAAW,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,GAElC,CAAC,SAAS,GAAG,GAEX,WAAW,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,GAElC,WAAW,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;AAG9C,MAAM,MAAM,eAAe,CAAC,CAAC,EAAE,CAAC,GAAG,KAAK,IAAI,CAAC,SAAS,MAAM,GACxD,wBAAwB,CAAC,CAAC,EAAE,CAAC,CAAC,GAC9B,QAAQ,CAAC,cAAc,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AAKnC,KAAK,wBAAwB,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,IAAI;KAClD,CAAC,IAAI,MAAM,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,GAC9C,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAEjC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,GAClB,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,GAE9B,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,GAC3B,CAAC,eAAe,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,eAAe,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,GAExD,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;CACjC,CAAC;AAIF,KAAK,QAAQ,CAAC,CAAC,IACb,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,GACxB,KAAK,GAEL,CAAC,SAAS,WAAW,CAAC,GAAG,CAAC,GACxB,CAAC,GACD;KAEG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACrB,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC"}
1
+ {"version":3,"file":"ReanimatedTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/ReanimatedTypes.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,CAAC,KAAK,GAAG,OAAO,IAAI;IACzC,KAAK,EAAE,KAAK,CAAC;IACb,GAAG,IAAI,KAAK,CAAC;IACb,GAAG,CAAC,KAAK,EAAE,KAAK,GAAG,CAAC,CAAC,KAAK,EAAE,KAAK,KAAK,KAAK,CAAC,GAAG,IAAI,CAAC;IACpD,WAAW,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,KAAK,IAAI,CAAC;IAC5E,cAAc,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,MAAM,EAAE,CACN,QAAQ,CAAC,EAAE,CAAC,CAAC,SAAS,KAAK,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,EAC3C,WAAW,CAAC,EAAE,OAAO,KAClB,IAAI,CAAC;CACX,CAAC;AAGF,MAAM,MAAM,cAAc,CAAC,CAAC,EAAE,CAAC,GAAG,KAAK,IAEnC,CAAC,GAED,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,GAC5B,WAAW,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,GAElC,CAAC,SAAS,GAAG,GAEX,WAAW,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,GAElC,WAAW,CAAC,OAAO,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;AAG9C,MAAM,MAAM,eAAe,CAAC,CAAC,EAAE,CAAC,GAAG,KAAK,IAAI,CAAC,SAAS,MAAM,GACxD,wBAAwB,CAAC,CAAC,EAAE,CAAC,CAAC,GAC9B,QAAQ,CAAC,cAAc,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AAKnC,KAAK,wBAAwB,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,IAAI;KAClD,CAAC,IAAI,MAAM,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,GAC9C,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAEjC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,GAClB,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,GAEzD,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,GAC3B,CAAC,eAAe,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,eAAe,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,GAExD,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;CACjC,CAAC;AAIF,KAAK,QAAQ,CAAC,CAAC,IACb,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,GACxB,KAAK,GAEL,CAAC,SAAS,WAAW,CAAC,GAAG,CAAC,GACxB,CAAC,GACD;KAEG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACrB,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC"}
@@ -1,10 +1,10 @@
1
- import { PanGestureNativeProperties } from '../hooks/gestures/pan/PanProperties';
2
- import { FlingGestureNativeProperties } from '../hooks/gestures/fling/FlingProperties';
3
- import { HoverGestureNativeProperties } from '../hooks/gestures/hover/HoverProperties';
4
- import { LongPressGestureNativeProperties } from '../hooks/gestures/longPress/LongPressProperties';
5
- import { NativeGestureNativeProperties } from '../hooks/gestures/native/NativeProperties';
6
- import { TapGestureNativeConfig } from '../hooks/gestures/tap/TapProperties';
7
- import { InternalConfigProps } from './ConfigTypes';
1
+ import type { FlingGestureNativeProperties } from '../hooks/gestures/fling/FlingTypes';
2
+ import type { HoverGestureNativeProperties } from '../hooks/gestures/hover/HoverTypes';
3
+ import type { LongPressGestureNativeProperties } from '../hooks/gestures/longPress/LongPressTypes';
4
+ import type { NativeGestureNativeProperties } from '../hooks/gestures/native/NativeTypes';
5
+ import type { PanGestureNativeProperties } from '../hooks/gestures/pan/PanTypes';
6
+ import type { TapGestureNativeConfig } from '../hooks/gestures/tap/TapTypes';
7
+ import type { InternalConfigProps } from './ConfigTypes';
8
8
  export type HandlersPropsWhiteList = Set<keyof PanGestureNativeProperties> | Set<keyof FlingGestureNativeProperties> | Set<keyof HoverGestureNativeProperties> | Set<keyof LongPressGestureNativeProperties> | Set<keyof NativeGestureNativeProperties> | Set<keyof TapGestureNativeConfig>;
9
9
  export type FilterNeverProperties<T> = {
10
10
  [K in keyof T as T[K] extends never ? never : K]: T[K];
@@ -1 +1 @@
1
- {"version":3,"file":"UtilityTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/UtilityTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAC;AACjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,yCAAyC,CAAC;AACvF,OAAO,EAAE,4BAA4B,EAAE,MAAM,yCAAyC,CAAC;AACvF,OAAO,EAAE,gCAAgC,EAAE,MAAM,iDAAiD,CAAC;AACnG,OAAO,EAAE,6BAA6B,EAAE,MAAM,2CAA2C,CAAC;AAC1F,OAAO,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAC7E,OAAO,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAEpD,MAAM,MAAM,sBAAsB,GAC9B,GAAG,CAAC,MAAM,0BAA0B,CAAC,GACrC,GAAG,CAAC,MAAM,4BAA4B,CAAC,GACvC,GAAG,CAAC,MAAM,4BAA4B,CAAC,GACvC,GAAG,CAAC,MAAM,gCAAgC,CAAC,GAC3C,GAAG,CAAC,MAAM,6BAA6B,CAAC,GACxC,GAAG,CAAC,MAAM,sBAAsB,CAAC,CAAC;AAUtC,MAAM,MAAM,qBAAqB,CAAC,CAAC,IAAI;KACpC,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,KAAK,GAAG,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACvD,CAAC;AAEF,MAAM,MAAM,0BAA0B,CAAC,CAAC,IAAI,IAAI,CAC9C,CAAC,EACD,MAAM,mBAAmB,CAAC,OAAO,CAAC,CACnC,CAAC"}
1
+ {"version":3,"file":"UtilityTypes.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/UtilityTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AACvF,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AACvF,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,4CAA4C,CAAC;AACnG,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,sCAAsC,CAAC;AAC1F,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AACjF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAEzD,MAAM,MAAM,sBAAsB,GAC9B,GAAG,CAAC,MAAM,0BAA0B,CAAC,GACrC,GAAG,CAAC,MAAM,4BAA4B,CAAC,GACvC,GAAG,CAAC,MAAM,4BAA4B,CAAC,GACvC,GAAG,CAAC,MAAM,gCAAgC,CAAC,GAC3C,GAAG,CAAC,MAAM,6BAA6B,CAAC,GACxC,GAAG,CAAC,MAAM,sBAAsB,CAAC,CAAC;AAUtC,MAAM,MAAM,qBAAqB,CAAC,CAAC,IAAI;KACpC,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,KAAK,GAAG,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACvD,CAAC;AAEF,MAAM,MAAM,0BAA0B,CAAC,CAAC,IAAI,IAAI,CAC9C,CAAC,EACD,MAAM,mBAAmB,CAAC,OAAO,CAAC,CACnC,CAAC"}
@@ -1,8 +1,8 @@
1
- export type { SharedValue, SharedValueOrT, WithSharedValue, } from './ReanimatedTypes';
2
- export type { HandlerData, GestureUpdateEventWithHandlerData, GestureStateChangeEventWithHandlerData, GestureHandlerEventWithHandlerData, UnpackedGestureHandlerEventWithHandlerData, UnpackedGestureHandlerEvent, UpdateEventWithHandlerData, StateChangeEventWithHandlerData, TouchEvent, GestureEvent, AnimatedEvent, ChangeCalculatorType, DiffCalculatorType, } from './EventTypes';
3
- export type { GestureCallbacks, GestureEventCallback, GestureEventCallbackWithDidSucceed, GestureTouchEventCallback, GestureRelations, InternalConfigProps, CommonGestureConfig, ComposedGestureConfig, } from './ConfigTypes';
1
+ export type { CommonGestureConfig, ComposedGestureConfig, GestureCallbacks, GestureEndEventCallback, GestureEventCallback, GestureRelations, GestureTouchEventCallback, InternalConfigProps, } from './ConfigTypes';
4
2
  export type { DetectorCallbacks, VirtualChild } from './DetectorTypes';
5
- export { SingleGestureName, ComposedGestureName } from './GestureTypes';
6
- export type { ExternalRelations, BaseDiscreteGestureConfig, BaseGestureConfig, SingleGesture, DiscreteSingleGesture, ComposedGesture, Gesture, AnyGesture, } from './GestureTypes';
7
- export type { HandlersPropsWhiteList, FilterNeverProperties, ExcludeInternalConfigProps, } from './UtilityTypes';
3
+ export type { AnimatedEvent, ChangeCalculatorType, DiffCalculatorType, GestureEndEvent, GestureEvent, GestureHandlerEventWithHandlerData, GestureStateChangeEventWithHandlerData, GestureUpdateEventWithHandlerData, HandlerData, StateChangeEventWithHandlerData, TouchEvent, UnpackedGestureHandlerEvent, UnpackedGestureHandlerEventWithHandlerData, UpdateEventWithHandlerData, } from './EventTypes';
4
+ export type { AnyGesture, BaseDiscreteGestureConfig, BaseGestureConfig, ComposedGesture, DiscreteSingleGesture, ExternalRelations, Gesture, SingleGesture, } from './GestureTypes';
5
+ export { ComposedGestureName, SingleGestureName } from './GestureTypes';
6
+ export type { SharedValue, SharedValueOrT, WithSharedValue, } from './ReanimatedTypes';
7
+ export type { ExcludeInternalConfigProps, FilterNeverProperties, HandlersPropsWhiteList, } from './UtilityTypes';
8
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,WAAW,EACX,cAAc,EACd,eAAe,GAChB,MAAM,mBAAmB,CAAC;AAE3B,YAAY,EACV,WAAW,EACX,iCAAiC,EACjC,sCAAsC,EACtC,kCAAkC,EAClC,0CAA0C,EAC1C,2BAA2B,EAC3B,0BAA0B,EAC1B,+BAA+B,EAC/B,UAAU,EACV,YAAY,EACZ,aAAa,EACb,oBAAoB,EACpB,kBAAkB,GACnB,MAAM,cAAc,CAAC;AAEtB,YAAY,EACV,gBAAgB,EAChB,oBAAoB,EACpB,kCAAkC,EAClC,yBAAyB,EACzB,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,eAAe,CAAC;AAEvB,YAAY,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAEvE,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AACxE,YAAY,EACV,iBAAiB,EACjB,yBAAyB,EACzB,iBAAiB,EACjB,aAAa,EACb,qBAAqB,EACrB,eAAe,EACf,OAAO,EACP,UAAU,GACX,MAAM,gBAAgB,CAAC;AAExB,YAAY,EACV,sBAAsB,EACtB,qBAAqB,EACrB,0BAA0B,GAC3B,MAAM,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/v3/types/index.ts"],"names":[],"mappings":"AAAA,YAAY,EACV,mBAAmB,EACnB,qBAAqB,EACrB,gBAAgB,EAChB,uBAAuB,EACvB,oBAAoB,EACpB,gBAAgB,EAChB,yBAAyB,EACzB,mBAAmB,GACpB,MAAM,eAAe,CAAC;AACvB,YAAY,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AACvE,YAAY,EACV,aAAa,EACb,oBAAoB,EACpB,kBAAkB,EAClB,eAAe,EACf,YAAY,EACZ,kCAAkC,EAClC,sCAAsC,EACtC,iCAAiC,EACjC,WAAW,EACX,+BAA+B,EAC/B,UAAU,EACV,2BAA2B,EAC3B,0CAA0C,EAC1C,0BAA0B,GAC3B,MAAM,cAAc,CAAC;AACtB,YAAY,EACV,UAAU,EACV,yBAAyB,EACzB,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACrB,iBAAiB,EACjB,OAAO,EACP,aAAa,GACd,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxE,YAAY,EACV,WAAW,EACX,cAAc,EACd,eAAe,GAChB,MAAM,mBAAmB,CAAC;AAC3B,YAAY,EACV,0BAA0B,EAC1B,qBAAqB,EACrB,sBAAsB,GACvB,MAAM,gBAAgB,CAAC"}
@@ -1,12 +1,12 @@
1
- import PanGestureHandler from './handlers/PanGestureHandler';
2
- import TapGestureHandler from './handlers/TapGestureHandler';
1
+ import FlingGestureHandler from './handlers/FlingGestureHandler';
2
+ import HoverGestureHandler from './handlers/HoverGestureHandler';
3
3
  import LongPressGestureHandler from './handlers/LongPressGestureHandler';
4
+ import ManualGestureHandler from './handlers/ManualGestureHandler';
5
+ import NativeViewGestureHandler from './handlers/NativeViewGestureHandler';
6
+ import PanGestureHandler from './handlers/PanGestureHandler';
4
7
  import PinchGestureHandler from './handlers/PinchGestureHandler';
5
8
  import RotationGestureHandler from './handlers/RotationGestureHandler';
6
- import FlingGestureHandler from './handlers/FlingGestureHandler';
7
- import NativeViewGestureHandler from './handlers/NativeViewGestureHandler';
8
- import ManualGestureHandler from './handlers/ManualGestureHandler';
9
- import HoverGestureHandler from './handlers/HoverGestureHandler';
9
+ import TapGestureHandler from './handlers/TapGestureHandler';
10
10
  export declare const Gestures: {
11
11
  NativeViewGestureHandler: typeof NativeViewGestureHandler;
12
12
  PanGestureHandler: typeof PanGestureHandler;
@@ -1 +1 @@
1
- {"version":3,"file":"Gestures.d.ts","sourceRoot":"","sources":["../../../src/web/Gestures.ts"],"names":[],"mappings":"AACA,OAAO,iBAAiB,MAAM,8BAA8B,CAAC;AAC7D,OAAO,iBAAiB,MAAM,8BAA8B,CAAC;AAC7D,OAAO,uBAAuB,MAAM,oCAAoC,CAAC;AACzE,OAAO,mBAAmB,MAAM,gCAAgC,CAAC;AACjE,OAAO,sBAAsB,MAAM,mCAAmC,CAAC;AACvE,OAAO,mBAAmB,MAAM,gCAAgC,CAAC;AACjE,OAAO,wBAAwB,MAAM,qCAAqC,CAAC;AAC3E,OAAO,oBAAoB,MAAM,iCAAiC,CAAC;AACnE,OAAO,mBAAmB,MAAM,gCAAgC,CAAC;AAEjE,eAAO,MAAM,QAAQ;;;;;;;;;;CAUpB,CAAC"}
1
+ {"version":3,"file":"Gestures.d.ts","sourceRoot":"","sources":["../../../src/web/Gestures.ts"],"names":[],"mappings":"AACA,OAAO,mBAAmB,MAAM,gCAAgC,CAAC;AACjE,OAAO,mBAAmB,MAAM,gCAAgC,CAAC;AACjE,OAAO,uBAAuB,MAAM,oCAAoC,CAAC;AACzE,OAAO,oBAAoB,MAAM,iCAAiC,CAAC;AACnE,OAAO,wBAAwB,MAAM,qCAAqC,CAAC;AAC3E,OAAO,iBAAiB,MAAM,8BAA8B,CAAC;AAC7D,OAAO,mBAAmB,MAAM,gCAAgC,CAAC;AACjE,OAAO,sBAAsB,MAAM,mCAAmC,CAAC;AACvE,OAAO,iBAAiB,MAAM,8BAA8B,CAAC;AAE7D,eAAO,MAAM,QAAQ;;;;;;;;;;CAUpB,CAAC"}
@@ -1,5 +1,5 @@
1
- import { AdaptedEvent } from '../interfaces';
2
- import PointerTracker from '../tools/PointerTracker';
1
+ import type { AdaptedEvent } from '../interfaces';
2
+ import type PointerTracker from '../tools/PointerTracker';
3
3
  export interface RotationGestureListener {
4
4
  onRotationBegin: (detector: RotationGestureDetector) => boolean;
5
5
  onRotation: (detector: RotationGestureDetector) => boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"RotationGestureDetector.d.ts","sourceRoot":"","sources":["../../../../src/web/detectors/RotationGestureDetector.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAc,MAAM,eAAe,CAAC;AACzD,OAAO,cAAc,MAAM,yBAAyB,CAAC;AAErD,MAAM,WAAW,uBAAuB;IACtC,eAAe,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,OAAO,CAAC;IAChE,UAAU,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,OAAO,CAAC;IAC3D,aAAa,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,IAAI,CAAC;CAC5D;AAED,MAAM,CAAC,OAAO,OAAO,uBACnB,YAAW,uBAAuB;IAElC,eAAe,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,OAAO,CAAC;IAChE,UAAU,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,OAAO,CAAC;IAC3D,aAAa,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,IAAI,CAAC;IAE3D,OAAO,CAAC,WAAW,CAAK;IACxB,OAAO,CAAC,YAAY,CAAK;IAEzB,OAAO,CAAC,aAAa,CAAK;IAC1B,OAAO,CAAC,SAAS,CAAK;IAEtB,OAAO,CAAC,QAAQ,CAAK;IACrB,OAAO,CAAC,QAAQ,CAAK;IAErB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAwB;gBAE/B,SAAS,EAAE,uBAAuB;IAM9C,OAAO,CAAC,aAAa;IAyCrB,OAAO,CAAC,MAAM;IAUd,OAAO,CAAC,cAAc;IAWf,YAAY,CAAC,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,cAAc,GAAG,OAAO;IAoDnE,KAAK,IAAI,IAAI;IAKpB,IAAW,OAAO,WAEjB;IAED,IAAW,OAAO,WAEjB;IAED,IAAW,QAAQ,WAElB;IAED,IAAW,SAAS,WAEnB;CACF"}
1
+ {"version":3,"file":"RotationGestureDetector.d.ts","sourceRoot":"","sources":["../../../../src/web/detectors/RotationGestureDetector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAElD,OAAO,KAAK,cAAc,MAAM,yBAAyB,CAAC;AAE1D,MAAM,WAAW,uBAAuB;IACtC,eAAe,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,OAAO,CAAC;IAChE,UAAU,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,OAAO,CAAC;IAC3D,aAAa,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,IAAI,CAAC;CAC5D;AAED,MAAM,CAAC,OAAO,OAAO,uBACnB,YAAW,uBAAuB;IAElC,eAAe,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,OAAO,CAAC;IAChE,UAAU,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,OAAO,CAAC;IAC3D,aAAa,EAAE,CAAC,QAAQ,EAAE,uBAAuB,KAAK,IAAI,CAAC;IAE3D,OAAO,CAAC,WAAW,CAAK;IACxB,OAAO,CAAC,YAAY,CAAK;IAEzB,OAAO,CAAC,aAAa,CAAK;IAC1B,OAAO,CAAC,SAAS,CAAK;IAEtB,OAAO,CAAC,QAAQ,CAAK;IACrB,OAAO,CAAC,QAAQ,CAAK;IAErB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAwB;gBAE/B,SAAS,EAAE,uBAAuB;IAM9C,OAAO,CAAC,aAAa;IAyCrB,OAAO,CAAC,MAAM;IASd,OAAO,CAAC,cAAc;IAWf,YAAY,CAAC,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,cAAc,GAAG,OAAO;IAmDnE,KAAK,IAAI,IAAI;IAKpB,IAAW,OAAO,WAEjB;IAED,IAAW,OAAO,WAEjB;IAED,IAAW,QAAQ,WAElB;IAED,IAAW,SAAS,WAEnB;CACF"}