@react-native-oh-tpl/react-native-gesture-handler 2.12.1-0.0.1 → 2.12.6-1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (918) hide show
  1. package/README.md +1 -62
  2. package/harmony/gesture_handler/build-profile.json5 +8 -0
  3. package/harmony/gesture_handler/hvigorfile.ts +2 -0
  4. package/harmony/gesture_handler/index.ets +3 -0
  5. package/harmony/gesture_handler/oh-package.json5 +11 -0
  6. package/harmony/gesture_handler/src/main/cpp/CMakeLists.txt +8 -0
  7. package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.cpp +34 -0
  8. package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.h +15 -0
  9. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerButtonComponentDescriptor.h +60 -0
  10. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.cpp +17 -0
  11. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.h +12 -0
  12. package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerRootViewComponentDescriptor.h +60 -0
  13. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/CircularBuffer.ts +1 -1
  14. package/harmony/gesture_handler/src/main/ets/Event.ts +68 -0
  15. package/harmony/gesture_handler/src/main/ets/EventDispatcher.ts +38 -0
  16. package/harmony/gesture_handler/src/main/ets/GestureHandler.ts +663 -0
  17. package/harmony/gesture_handler/src/main/ets/GestureHandlerArkUIAdapter.ets +202 -0
  18. package/harmony/gesture_handler/src/main/ets/GestureHandlerFactory.ts +45 -0
  19. package/harmony/gesture_handler/src/main/ets/GestureHandlerOrchestrator.ts +280 -0
  20. package/harmony/gesture_handler/src/main/ets/GestureHandlerPackage.ts +22 -0
  21. package/harmony/gesture_handler/src/main/ets/GestureHandlerRegistry.ts +28 -0
  22. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/InteractionManager.ts +36 -57
  23. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/LeastSquareSolver.ts +1 -1
  24. package/harmony/gesture_handler/src/main/ets/NativeViewGestureHandler.ts +115 -0
  25. package/harmony/gesture_handler/src/main/ets/OutgoingEvent.ts +34 -0
  26. package/harmony/gesture_handler/src/main/ets/PanGestureHandler.ts +328 -0
  27. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/PointerTracker.ts +13 -14
  28. package/harmony/gesture_handler/src/main/ets/RNGHError.ts +5 -0
  29. package/harmony/gesture_handler/src/main/ets/RNGHLogger.ts +29 -0
  30. package/harmony/gesture_handler/src/main/ets/RNGHRootTouchHandler.ets +58 -0
  31. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerButton.ets +37 -0
  32. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerModule.ts +125 -0
  33. package/harmony/gesture_handler/src/main/ets/RNGestureHandlerRootView.ets +56 -0
  34. package/harmony/gesture_handler/src/main/ets/RNOHScrollLocker.ts +11 -0
  35. package/harmony/gesture_handler/src/main/ets/State.ts +47 -0
  36. package/harmony/gesture_handler/src/main/ets/TapGestureHandler.ts +206 -0
  37. package/harmony/gesture_handler/src/main/ets/Vector2D.ts +36 -0
  38. package/{src/web/tools → harmony/gesture_handler/src/main/ets}/VelocityTracker.ts +4 -4
  39. package/harmony/gesture_handler/src/main/ets/View.ts +71 -0
  40. package/harmony/gesture_handler/src/main/ets/ViewRegistry.ts +43 -0
  41. package/harmony/gesture_handler/src/main/ets/pages/Index.ets +17 -0
  42. package/harmony/gesture_handler/src/main/ets/webviewability/WebviewAbility.ts +41 -0
  43. package/harmony/gesture_handler/src/main/module.json5 +7 -0
  44. package/harmony/gesture_handler/src/main/resources/base/element/color.json +8 -0
  45. package/harmony/gesture_handler/src/main/resources/base/element/string.json +16 -0
  46. package/harmony/gesture_handler/src/main/resources/base/media/icon.png +0 -0
  47. package/harmony/gesture_handler/src/main/resources/base/profile/main_pages.json +5 -0
  48. package/harmony/gesture_handler/src/main/resources/en_US/element/string.json +16 -0
  49. package/harmony/gesture_handler/src/main/resources/zh_CN/element/string.json +16 -0
  50. package/harmony/gesture_handler/ts.ts +1 -0
  51. package/harmony/gesture_handler.har +0 -0
  52. package/lib/commonjs/RNGestureHandlerModule.js +2 -22
  53. package/lib/commonjs/RNGestureHandlerModule.js.map +1 -1
  54. package/lib/commonjs/components/GestureButtons.js +88 -142
  55. package/lib/commonjs/components/GestureButtons.js.map +1 -1
  56. package/lib/commonjs/components/GestureHandlerButton.js +2 -7
  57. package/lib/commonjs/components/GestureHandlerButton.js.map +1 -1
  58. package/lib/commonjs/components/GestureHandlerRootView.js +13 -13
  59. package/lib/commonjs/components/GestureHandlerRootView.js.map +1 -1
  60. package/lib/commonjs/components/RNGestureHandlerButton.js +23 -0
  61. package/lib/commonjs/components/RNGestureHandlerButton.js.map +1 -0
  62. package/lib/commonjs/components/touchables/GenericTouchable.js +94 -136
  63. package/lib/commonjs/components/touchables/GenericTouchable.js.map +1 -1
  64. package/lib/commonjs/components/touchables/TouchableOpacity.js +32 -51
  65. package/lib/commonjs/components/touchables/TouchableOpacity.js.map +1 -1
  66. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +4 -12
  67. package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  68. package/lib/commonjs/components/touchables/index.js +2 -21
  69. package/lib/commonjs/components/touchables/index.js.map +1 -1
  70. package/lib/commonjs/handlers/NativeViewGestureHandler.js +6 -14
  71. package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +1 -1
  72. package/lib/commonjs/handlers/PanGestureHandler.js +12 -32
  73. package/lib/commonjs/handlers/PanGestureHandler.js.map +1 -1
  74. package/lib/commonjs/handlers/TapGestureHandler.js +6 -11
  75. package/lib/commonjs/handlers/TapGestureHandler.js.map +1 -1
  76. package/lib/commonjs/handlers/createHandler.js +141 -223
  77. package/lib/commonjs/handlers/createHandler.js.map +1 -1
  78. package/lib/commonjs/handlers/createNativeWrapper.js +16 -26
  79. package/lib/commonjs/handlers/createNativeWrapper.js.map +1 -1
  80. package/lib/commonjs/handlers/gestureHandlerCommon.js +6 -87
  81. package/lib/commonjs/handlers/gestureHandlerCommon.js.map +1 -1
  82. package/lib/commonjs/handlers/gestures/GestureDetector.js +111 -226
  83. package/lib/commonjs/handlers/gestures/GestureDetector.js.map +1 -1
  84. package/lib/commonjs/index.js +168 -211
  85. package/lib/commonjs/index.js.map +1 -1
  86. package/lib/commonjs/init.js +7 -15
  87. package/lib/commonjs/init.js.map +1 -1
  88. package/lib/module/RNGestureHandlerModule.js +2 -18
  89. package/lib/module/RNGestureHandlerModule.js.map +1 -1
  90. package/lib/module/components/GestureButtons.js +83 -121
  91. package/lib/module/components/GestureButtons.js.map +1 -1
  92. package/lib/module/components/GestureHandlerButton.js +2 -2
  93. package/lib/module/components/GestureHandlerButton.js.map +1 -1
  94. package/lib/module/components/GestureHandlerRootView.js +11 -3
  95. package/lib/module/components/GestureHandlerRootView.js.map +1 -1
  96. package/lib/module/components/RNGestureHandlerButton.js +17 -0
  97. package/lib/module/components/RNGestureHandlerButton.js.map +1 -0
  98. package/lib/module/components/touchables/GenericTouchable.js +89 -124
  99. package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
  100. package/lib/module/components/touchables/TouchableOpacity.js +27 -41
  101. package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
  102. package/lib/module/components/touchables/TouchableWithoutFeedback.js +1 -2
  103. package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
  104. package/lib/module/components/touchables/index.js +5 -2
  105. package/lib/module/components/touchables/index.js.map +1 -1
  106. package/lib/module/handlers/NativeViewGestureHandler.js +1 -1
  107. package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
  108. package/lib/module/handlers/PanGestureHandler.js +6 -21
  109. package/lib/module/handlers/PanGestureHandler.js.map +1 -1
  110. package/lib/module/handlers/TapGestureHandler.js +2 -1
  111. package/lib/module/handlers/TapGestureHandler.js.map +1 -1
  112. package/lib/module/handlers/createHandler.js +140 -196
  113. package/lib/module/handlers/createHandler.js.map +1 -1
  114. package/lib/module/handlers/createNativeWrapper.js +11 -16
  115. package/lib/module/handlers/createNativeWrapper.js.map +1 -1
  116. package/lib/module/handlers/gestureHandlerCommon.js +5 -71
  117. package/lib/module/handlers/gestureHandlerCommon.js.map +1 -1
  118. package/lib/module/handlers/gestures/GestureDetector.js +99 -175
  119. package/lib/module/handlers/gestures/GestureDetector.js.map +1 -1
  120. package/lib/module/index.js +160 -18
  121. package/lib/module/index.js.map +1 -1
  122. package/lib/module/init.js +6 -5
  123. package/lib/module/init.js.map +1 -1
  124. package/lib/typescript/RNGestureHandlerModule.d.ts +7 -13
  125. package/lib/typescript/RNGestureHandlerModule.d.ts.map +1 -0
  126. package/lib/typescript/components/GestureButtons.d.ts +122 -121
  127. package/lib/typescript/components/GestureButtons.d.ts.map +1 -0
  128. package/lib/typescript/components/GestureHandlerButton.d.ts +5 -4
  129. package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -0
  130. package/lib/typescript/components/GestureHandlerRootView.d.ts +7 -6
  131. package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -0
  132. package/lib/typescript/components/RNGestureHandlerButton.d.ts +2 -0
  133. package/lib/typescript/components/RNGestureHandlerButton.d.ts.map +1 -0
  134. package/lib/typescript/components/touchables/GenericTouchable.d.ts +68 -68
  135. package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -0
  136. package/lib/typescript/components/touchables/TouchableOpacity.d.ts +26 -25
  137. package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -0
  138. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +8 -7
  139. package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -0
  140. package/lib/typescript/components/touchables/index.d.ts +4 -7
  141. package/lib/typescript/components/touchables/index.d.ts.map +1 -0
  142. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +29 -28
  143. package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -0
  144. package/lib/typescript/handlers/PanGestureHandler.d.ts +140 -139
  145. package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -0
  146. package/lib/typescript/handlers/TapGestureHandler.d.ts +58 -57
  147. package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -0
  148. package/lib/typescript/handlers/createHandler.d.ts +12 -11
  149. package/lib/typescript/handlers/createHandler.d.ts.map +1 -0
  150. package/lib/typescript/handlers/createNativeWrapper.d.ts +4 -3
  151. package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -0
  152. package/lib/typescript/handlers/gestureHandlerCommon.d.ts +2 -68
  153. package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -0
  154. package/lib/typescript/handlers/gestures/GestureDetector.d.ts +24 -19
  155. package/lib/typescript/handlers/gestures/GestureDetector.d.ts.map +1 -0
  156. package/lib/typescript/index.d.ts +9 -52
  157. package/lib/typescript/index.d.ts.map +1 -0
  158. package/lib/typescript/init.d.ts +3 -2
  159. package/lib/typescript/init.d.ts.map +1 -0
  160. package/package.json +34 -120
  161. package/src/RNGestureHandlerModule.ts +4 -48
  162. package/src/components/GestureButtons.tsx +7 -5
  163. package/src/components/GestureHandlerButton.tsx +3 -3
  164. package/src/components/GestureHandlerRootView.tsx +15 -4
  165. package/src/components/RNGestureHandlerButton.tsx +23 -0
  166. package/src/components/touchables/GenericTouchable.tsx +7 -7
  167. package/src/components/touchables/TouchableOpacity.tsx +2 -1
  168. package/src/components/touchables/TouchableWithoutFeedback.tsx +3 -3
  169. package/src/components/touchables/index.ts +4 -4
  170. package/src/handlers/NativeViewGestureHandler.ts +1 -1
  171. package/src/handlers/PanGestureHandler.ts +4 -2
  172. package/src/handlers/TapGestureHandler.ts +2 -1
  173. package/src/handlers/createHandler.tsx +17 -15
  174. package/src/handlers/createNativeWrapper.tsx +2 -1
  175. package/src/handlers/gestureHandlerCommon.ts +5 -240
  176. package/src/handlers/gestures/GestureDetector.tsx +40 -39
  177. package/src/index.ts +158 -160
  178. package/src/init.ts +3 -3
  179. package/DrawerLayout/package.json +0 -6
  180. package/LICENSE +0 -21
  181. package/RNGestureHandler.podspec +0 -44
  182. package/Swipeable/package.json +0 -6
  183. package/android/build.gradle +0 -209
  184. package/android/common/src/main/java/com/swmansion/common/GestureHandlerStateManager.kt +0 -5
  185. package/android/fabric/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerComponentsRegistry.java +0 -29
  186. package/android/fabric/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -12
  187. package/android/gradle.properties +0 -19
  188. package/android/noreanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -10
  189. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +0 -50
  190. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +0 -23
  191. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +0 -25
  192. package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +0 -16
  193. package/android/paper/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -13
  194. package/android/reanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -17
  195. package/android/src/main/AndroidManifest.xml +0 -3
  196. package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -21
  197. package/android/src/main/java/com/swmansion/gesturehandler/core/FlingGestureHandler.kt +0 -100
  198. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +0 -807
  199. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.kt +0 -8
  200. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +0 -671
  201. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerRegistry.kt +0 -8
  202. package/android/src/main/java/com/swmansion/gesturehandler/core/GestureUtils.kt +0 -47
  203. package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +0 -120
  204. package/android/src/main/java/com/swmansion/gesturehandler/core/LongPressGestureHandler.kt +0 -100
  205. package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +0 -11
  206. package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +0 -257
  207. package/android/src/main/java/com/swmansion/gesturehandler/core/OnTouchEventListener.kt +0 -9
  208. package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +0 -322
  209. package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +0 -103
  210. package/android/src/main/java/com/swmansion/gesturehandler/core/PointerEventsConfig.kt +0 -23
  211. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureDetector.kt +0 -125
  212. package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +0 -93
  213. package/android/src/main/java/com/swmansion/gesturehandler/core/ScaleGestureDetector.java +0 -558
  214. package/android/src/main/java/com/swmansion/gesturehandler/core/TapGestureHandler.kt +0 -168
  215. package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +0 -10
  216. package/android/src/main/java/com/swmansion/gesturehandler/react/Extensions.kt +0 -16
  217. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +0 -423
  218. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.kt +0 -15
  219. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.kt +0 -75
  220. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +0 -74
  221. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +0 -702
  222. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +0 -100
  223. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +0 -142
  224. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.kt +0 -5
  225. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +0 -78
  226. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.kt +0 -51
  227. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.kt +0 -78
  228. package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt +0 -69
  229. package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +0 -51
  230. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.kt +0 -30
  231. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.kt +0 -22
  232. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.kt +0 -30
  233. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.kt +0 -33
  234. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.kt +0 -5
  235. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.kt +0 -18
  236. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.kt +0 -42
  237. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.kt +0 -30
  238. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.kt +0 -30
  239. package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.kt +0 -30
  240. package/android/src/main/jni/CMakeLists.txt +0 -37
  241. package/android/src/main/jni/cpp-adapter.cpp +0 -44
  242. package/ios/Handlers/RNFlingHandler.h +0 -4
  243. package/ios/Handlers/RNFlingHandler.m +0 -152
  244. package/ios/Handlers/RNForceTouchHandler.h +0 -4
  245. package/ios/Handlers/RNForceTouchHandler.m +0 -175
  246. package/ios/Handlers/RNHoverHandler.h +0 -12
  247. package/ios/Handlers/RNHoverHandler.m +0 -153
  248. package/ios/Handlers/RNLongPressHandler.h +0 -12
  249. package/ios/Handlers/RNLongPressHandler.m +0 -183
  250. package/ios/Handlers/RNManualHandler.h +0 -4
  251. package/ios/Handlers/RNManualHandler.m +0 -88
  252. package/ios/Handlers/RNNativeViewHandler.h +0 -15
  253. package/ios/Handlers/RNNativeViewHandler.mm +0 -193
  254. package/ios/Handlers/RNPanHandler.h +0 -12
  255. package/ios/Handlers/RNPanHandler.m +0 -331
  256. package/ios/Handlers/RNPinchHandler.h +0 -12
  257. package/ios/Handlers/RNPinchHandler.m +0 -95
  258. package/ios/Handlers/RNRotationHandler.h +0 -12
  259. package/ios/Handlers/RNRotationHandler.m +0 -93
  260. package/ios/Handlers/RNTapHandler.h +0 -12
  261. package/ios/Handlers/RNTapHandler.m +0 -265
  262. package/ios/RNGHTouchEventType.h +0 -9
  263. package/ios/RNGestureHandler.h +0 -90
  264. package/ios/RNGestureHandler.m +0 -493
  265. package/ios/RNGestureHandler.xcodeproj/project.pbxproj +0 -690
  266. package/ios/RNGestureHandler.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  267. package/ios/RNGestureHandlerActionType.h +0 -10
  268. package/ios/RNGestureHandlerButton.h +0 -19
  269. package/ios/RNGestureHandlerButton.m +0 -77
  270. package/ios/RNGestureHandlerButtonComponentView.h +0 -17
  271. package/ios/RNGestureHandlerButtonComponentView.mm +0 -64
  272. package/ios/RNGestureHandlerButtonManager.h +0 -5
  273. package/ios/RNGestureHandlerButtonManager.m +0 -34
  274. package/ios/RNGestureHandlerDirection.h +0 -8
  275. package/ios/RNGestureHandlerEvents.h +0 -65
  276. package/ios/RNGestureHandlerEvents.m +0 -260
  277. package/ios/RNGestureHandlerManager.h +0 -35
  278. package/ios/RNGestureHandlerManager.mm +0 -367
  279. package/ios/RNGestureHandlerModule.h +0 -7
  280. package/ios/RNGestureHandlerModule.mm +0 -320
  281. package/ios/RNGestureHandlerPointerTracker.h +0 -25
  282. package/ios/RNGestureHandlerPointerTracker.m +0 -243
  283. package/ios/RNGestureHandlerRegistry.h +0 -21
  284. package/ios/RNGestureHandlerRegistry.m +0 -63
  285. package/ios/RNGestureHandlerRootViewComponentView.mm +0 -21
  286. package/ios/RNGestureHandlerState.h +0 -10
  287. package/ios/RNGestureHandlerStateManager.h +0 -5
  288. package/ios/RNManualActivationRecognizer.h +0 -10
  289. package/ios/RNManualActivationRecognizer.m +0 -88
  290. package/ios/RNRootViewGestureRecognizer.h +0 -17
  291. package/ios/RNRootViewGestureRecognizer.m +0 -106
  292. package/jest-utils/package.json +0 -6
  293. package/jestSetup.js +0 -7
  294. package/lib/commonjs/ActionType.js +0 -15
  295. package/lib/commonjs/ActionType.js.map +0 -1
  296. package/lib/commonjs/Directions.js +0 -15
  297. package/lib/commonjs/Directions.js.map +0 -1
  298. package/lib/commonjs/EnableNewWebImplementation.js +0 -35
  299. package/lib/commonjs/EnableNewWebImplementation.js.map +0 -1
  300. package/lib/commonjs/GestureHandlerRootViewContext.js +0 -15
  301. package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
  302. package/lib/commonjs/PlatformConstants.js +0 -15
  303. package/lib/commonjs/PlatformConstants.js.map +0 -1
  304. package/lib/commonjs/PlatformConstants.web.js +0 -14
  305. package/lib/commonjs/PlatformConstants.web.js.map +0 -1
  306. package/lib/commonjs/RNGestureHandlerModule.macos.js +0 -149
  307. package/lib/commonjs/RNGestureHandlerModule.macos.js.map +0 -1
  308. package/lib/commonjs/RNGestureHandlerModule.web.js +0 -163
  309. package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
  310. package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -158
  311. package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
  312. package/lib/commonjs/RNRenderer.js +0 -16
  313. package/lib/commonjs/RNRenderer.js.map +0 -1
  314. package/lib/commonjs/RNRenderer.web.js +0 -11
  315. package/lib/commonjs/RNRenderer.web.js.map +0 -1
  316. package/lib/commonjs/State.js +0 -18
  317. package/lib/commonjs/State.js.map +0 -1
  318. package/lib/commonjs/TouchEventType.js +0 -16
  319. package/lib/commonjs/TouchEventType.js.map +0 -1
  320. package/lib/commonjs/components/DrawerLayout.js +0 -566
  321. package/lib/commonjs/components/DrawerLayout.js.map +0 -1
  322. package/lib/commonjs/components/GestureComponents.js +0 -115
  323. package/lib/commonjs/components/GestureComponents.js.map +0 -1
  324. package/lib/commonjs/components/GestureComponents.web.js +0 -52
  325. package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
  326. package/lib/commonjs/components/GestureHandlerButton.web.js +0 -24
  327. package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
  328. package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -31
  329. package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
  330. package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -25
  331. package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
  332. package/lib/commonjs/components/Swipeable.js +0 -408
  333. package/lib/commonjs/components/Swipeable.js.map +0 -1
  334. package/lib/commonjs/components/gestureHandlerRootHOC.js +0 -40
  335. package/lib/commonjs/components/gestureHandlerRootHOC.js.map +0 -1
  336. package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -109
  337. package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
  338. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -100
  339. package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  340. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -12
  341. package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
  342. package/lib/commonjs/getReactNativeVersion.js +0 -22
  343. package/lib/commonjs/getReactNativeVersion.js.map +0 -1
  344. package/lib/commonjs/getReactNativeVersion.web.js +0 -11
  345. package/lib/commonjs/getReactNativeVersion.web.js.map +0 -1
  346. package/lib/commonjs/getShadowNodeFromRef.js +0 -27
  347. package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
  348. package/lib/commonjs/getShadowNodeFromRef.web.js +0 -15
  349. package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
  350. package/lib/commonjs/ghQueueMicrotask.js +0 -12
  351. package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
  352. package/lib/commonjs/handlers/FlingGestureHandler.js +0 -25
  353. package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
  354. package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -49
  355. package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
  356. package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -27
  357. package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
  358. package/lib/commonjs/handlers/PinchGestureHandler.js +0 -23
  359. package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
  360. package/lib/commonjs/handlers/PressabilityDebugView.js +0 -14
  361. package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
  362. package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -12
  363. package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
  364. package/lib/commonjs/handlers/RotationGestureHandler.js +0 -23
  365. package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
  366. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
  367. package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
  368. package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -147
  369. package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
  370. package/lib/commonjs/handlers/gestures/flingGesture.js +0 -34
  371. package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
  372. package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -65
  373. package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
  374. package/lib/commonjs/handlers/gestures/gesture.js +0 -241
  375. package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
  376. package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -105
  377. package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
  378. package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -90
  379. package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
  380. package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -65
  381. package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
  382. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -32
  383. package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
  384. package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -74
  385. package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
  386. package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -35
  387. package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
  388. package/lib/commonjs/handlers/gestures/manualGesture.js +0 -31
  389. package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
  390. package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
  391. package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
  392. package/lib/commonjs/handlers/gestures/panGesture.js +0 -149
  393. package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
  394. package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -45
  395. package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
  396. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -37
  397. package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
  398. package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -45
  399. package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
  400. package/lib/commonjs/handlers/gestures/tapGesture.js +0 -60
  401. package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
  402. package/lib/commonjs/handlers/handlersRegistry.js +0 -67
  403. package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
  404. package/lib/commonjs/jestUtils/index.js +0 -20
  405. package/lib/commonjs/jestUtils/index.js.map +0 -1
  406. package/lib/commonjs/jestUtils/jestUtils.js +0 -375
  407. package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
  408. package/lib/commonjs/mocks.js +0 -66
  409. package/lib/commonjs/mocks.js.map +0 -1
  410. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js +0 -15
  411. package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
  412. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js +0 -15
  413. package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
  414. package/lib/commonjs/typeUtils.js +0 -2
  415. package/lib/commonjs/typeUtils.js.map +0 -1
  416. package/lib/commonjs/utils.js +0 -63
  417. package/lib/commonjs/utils.js.map +0 -1
  418. package/lib/commonjs/web/constants.js +0 -16
  419. package/lib/commonjs/web/constants.js.map +0 -1
  420. package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -165
  421. package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
  422. package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -156
  423. package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
  424. package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -167
  425. package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
  426. package/lib/commonjs/web/handlers/GestureHandler.js +0 -794
  427. package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
  428. package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -62
  429. package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
  430. package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -151
  431. package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
  432. package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -61
  433. package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
  434. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -178
  435. package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
  436. package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -448
  437. package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
  438. package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -174
  439. package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
  440. package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -186
  441. package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
  442. package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -280
  443. package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
  444. package/lib/commonjs/web/interfaces.js +0 -55
  445. package/lib/commonjs/web/interfaces.js.map +0 -1
  446. package/lib/commonjs/web/tools/CircularBuffer.js +0 -59
  447. package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
  448. package/lib/commonjs/web/tools/EventManager.js +0 -127
  449. package/lib/commonjs/web/tools/EventManager.js.map +0 -1
  450. package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -6
  451. package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
  452. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -349
  453. package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  454. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -118
  455. package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  456. package/lib/commonjs/web/tools/InteractionManager.js +0 -114
  457. package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
  458. package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -204
  459. package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
  460. package/lib/commonjs/web/tools/NodeManager.js +0 -48
  461. package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
  462. package/lib/commonjs/web/tools/PointerEventManager.js +0 -198
  463. package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
  464. package/lib/commonjs/web/tools/PointerTracker.js +0 -226
  465. package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
  466. package/lib/commonjs/web/tools/TouchEventManager.js +0 -138
  467. package/lib/commonjs/web/tools/TouchEventManager.js.map +0 -1
  468. package/lib/commonjs/web/tools/VelocityTracker.js +0 -111
  469. package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
  470. package/lib/commonjs/web/utils.js +0 -15
  471. package/lib/commonjs/web/utils.js.map +0 -1
  472. package/lib/commonjs/web_hammer/DiscreteGestureHandler.js +0 -105
  473. package/lib/commonjs/web_hammer/DiscreteGestureHandler.js.map +0 -1
  474. package/lib/commonjs/web_hammer/DraggingGestureHandler.js +0 -53
  475. package/lib/commonjs/web_hammer/DraggingGestureHandler.js.map +0 -1
  476. package/lib/commonjs/web_hammer/Errors.js +0 -16
  477. package/lib/commonjs/web_hammer/Errors.js.map +0 -1
  478. package/lib/commonjs/web_hammer/FlingGestureHandler.js +0 -170
  479. package/lib/commonjs/web_hammer/FlingGestureHandler.js.map +0 -1
  480. package/lib/commonjs/web_hammer/GestureHandler.js +0 -579
  481. package/lib/commonjs/web_hammer/GestureHandler.js.map +0 -1
  482. package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js +0 -54
  483. package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js.map +0 -1
  484. package/lib/commonjs/web_hammer/LongPressGestureHandler.js +0 -71
  485. package/lib/commonjs/web_hammer/LongPressGestureHandler.js.map +0 -1
  486. package/lib/commonjs/web_hammer/NativeViewGestureHandler.js +0 -66
  487. package/lib/commonjs/web_hammer/NativeViewGestureHandler.js.map +0 -1
  488. package/lib/commonjs/web_hammer/NodeManager.js +0 -46
  489. package/lib/commonjs/web_hammer/NodeManager.js.map +0 -1
  490. package/lib/commonjs/web_hammer/PanGestureHandler.js +0 -208
  491. package/lib/commonjs/web_hammer/PanGestureHandler.js.map +0 -1
  492. package/lib/commonjs/web_hammer/PinchGestureHandler.js +0 -40
  493. package/lib/commonjs/web_hammer/PinchGestureHandler.js.map +0 -1
  494. package/lib/commonjs/web_hammer/PressGestureHandler.js +0 -188
  495. package/lib/commonjs/web_hammer/PressGestureHandler.js.map +0 -1
  496. package/lib/commonjs/web_hammer/RotationGestureHandler.js +0 -44
  497. package/lib/commonjs/web_hammer/RotationGestureHandler.js.map +0 -1
  498. package/lib/commonjs/web_hammer/TapGestureHandler.js +0 -192
  499. package/lib/commonjs/web_hammer/TapGestureHandler.js.map +0 -1
  500. package/lib/commonjs/web_hammer/constants.js +0 -64
  501. package/lib/commonjs/web_hammer/constants.js.map +0 -1
  502. package/lib/commonjs/web_hammer/utils.js +0 -42
  503. package/lib/commonjs/web_hammer/utils.js.map +0 -1
  504. package/lib/module/ActionType.js +0 -7
  505. package/lib/module/ActionType.js.map +0 -1
  506. package/lib/module/Directions.js +0 -7
  507. package/lib/module/Directions.js.map +0 -1
  508. package/lib/module/EnableNewWebImplementation.js +0 -22
  509. package/lib/module/EnableNewWebImplementation.js.map +0 -1
  510. package/lib/module/GestureHandlerRootViewContext.js +0 -3
  511. package/lib/module/GestureHandlerRootViewContext.js.map +0 -1
  512. package/lib/module/PlatformConstants.js +0 -5
  513. package/lib/module/PlatformConstants.js.map +0 -1
  514. package/lib/module/PlatformConstants.web.js +0 -7
  515. package/lib/module/PlatformConstants.web.js.map +0 -1
  516. package/lib/module/RNGestureHandlerModule.macos.js +0 -110
  517. package/lib/module/RNGestureHandlerModule.macos.js.map +0 -1
  518. package/lib/module/RNGestureHandlerModule.web.js +0 -122
  519. package/lib/module/RNGestureHandlerModule.web.js.map +0 -1
  520. package/lib/module/RNGestureHandlerModule.windows.js +0 -118
  521. package/lib/module/RNGestureHandlerModule.windows.js.map +0 -1
  522. package/lib/module/RNRenderer.js +0 -4
  523. package/lib/module/RNRenderer.js.map +0 -1
  524. package/lib/module/RNRenderer.web.js +0 -4
  525. package/lib/module/RNRenderer.web.js.map +0 -1
  526. package/lib/module/State.js +0 -10
  527. package/lib/module/State.js.map +0 -1
  528. package/lib/module/TouchEventType.js +0 -8
  529. package/lib/module/TouchEventType.js.map +0 -1
  530. package/lib/module/components/DrawerLayout.js +0 -551
  531. package/lib/module/components/DrawerLayout.js.map +0 -1
  532. package/lib/module/components/GestureComponents.js +0 -90
  533. package/lib/module/components/GestureComponents.js.map +0 -1
  534. package/lib/module/components/GestureComponents.web.js +0 -28
  535. package/lib/module/components/GestureComponents.web.js.map +0 -1
  536. package/lib/module/components/GestureHandlerButton.web.js +0 -9
  537. package/lib/module/components/GestureHandlerButton.web.js.map +0 -1
  538. package/lib/module/components/GestureHandlerRootView.android.js +0 -14
  539. package/lib/module/components/GestureHandlerRootView.android.js.map +0 -1
  540. package/lib/module/components/GestureHandlerRootView.web.js +0 -9
  541. package/lib/module/components/GestureHandlerRootView.web.js.map +0 -1
  542. package/lib/module/components/Swipeable.js +0 -390
  543. package/lib/module/components/Swipeable.js.map +0 -1
  544. package/lib/module/components/gestureHandlerRootHOC.js +0 -22
  545. package/lib/module/components/gestureHandlerRootHOC.js.map +0 -1
  546. package/lib/module/components/touchables/TouchableHighlight.js +0 -95
  547. package/lib/module/components/touchables/TouchableHighlight.js.map +0 -1
  548. package/lib/module/components/touchables/TouchableNativeFeedback.android.js +0 -84
  549. package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
  550. package/lib/module/components/touchables/TouchableNativeFeedback.js +0 -3
  551. package/lib/module/components/touchables/TouchableNativeFeedback.js.map +0 -1
  552. package/lib/module/getReactNativeVersion.js +0 -10
  553. package/lib/module/getReactNativeVersion.js.map +0 -1
  554. package/lib/module/getReactNativeVersion.web.js +0 -4
  555. package/lib/module/getReactNativeVersion.web.js.map +0 -1
  556. package/lib/module/getShadowNodeFromRef.js +0 -20
  557. package/lib/module/getShadowNodeFromRef.js.map +0 -1
  558. package/lib/module/getShadowNodeFromRef.web.js +0 -8
  559. package/lib/module/getShadowNodeFromRef.web.js.map +0 -1
  560. package/lib/module/ghQueueMicrotask.js +0 -5
  561. package/lib/module/ghQueueMicrotask.js.map +0 -1
  562. package/lib/module/handlers/FlingGestureHandler.js +0 -11
  563. package/lib/module/handlers/FlingGestureHandler.js.map +0 -1
  564. package/lib/module/handlers/ForceTouchGestureHandler.js +0 -31
  565. package/lib/module/handlers/ForceTouchGestureHandler.js.map +0 -1
  566. package/lib/module/handlers/LongPressGestureHandler.js +0 -13
  567. package/lib/module/handlers/LongPressGestureHandler.js.map +0 -1
  568. package/lib/module/handlers/PinchGestureHandler.js +0 -10
  569. package/lib/module/handlers/PinchGestureHandler.js.map +0 -1
  570. package/lib/module/handlers/PressabilityDebugView.js +0 -3
  571. package/lib/module/handlers/PressabilityDebugView.js.map +0 -1
  572. package/lib/module/handlers/PressabilityDebugView.web.js +0 -5
  573. package/lib/module/handlers/PressabilityDebugView.web.js.map +0 -1
  574. package/lib/module/handlers/RotationGestureHandler.js +0 -10
  575. package/lib/module/handlers/RotationGestureHandler.js.map +0 -1
  576. package/lib/module/handlers/gestureHandlerTypesCompat.js +0 -2
  577. package/lib/module/handlers/gestureHandlerTypesCompat.js.map +0 -1
  578. package/lib/module/handlers/gestures/eventReceiver.js +0 -131
  579. package/lib/module/handlers/gestures/eventReceiver.js.map +0 -1
  580. package/lib/module/handlers/gestures/flingGesture.js +0 -24
  581. package/lib/module/handlers/gestures/flingGesture.js.map +0 -1
  582. package/lib/module/handlers/gestures/forceTouchGesture.js +0 -56
  583. package/lib/module/handlers/gestures/forceTouchGesture.js.map +0 -1
  584. package/lib/module/handlers/gestures/gesture.js +0 -222
  585. package/lib/module/handlers/gestures/gesture.js.map +0 -1
  586. package/lib/module/handlers/gestures/gestureComposition.js +0 -90
  587. package/lib/module/handlers/gestures/gestureComposition.js.map +0 -1
  588. package/lib/module/handlers/gestures/gestureObjects.js +0 -71
  589. package/lib/module/handlers/gestures/gestureObjects.js.map +0 -1
  590. package/lib/module/handlers/gestures/gestureStateManager.js +0 -54
  591. package/lib/module/handlers/gestures/gestureStateManager.js.map +0 -1
  592. package/lib/module/handlers/gestures/gestureStateManager.web.js +0 -21
  593. package/lib/module/handlers/gestures/gestureStateManager.web.js.map +0 -1
  594. package/lib/module/handlers/gestures/hoverGesture.js +0 -62
  595. package/lib/module/handlers/gestures/hoverGesture.js.map +0 -1
  596. package/lib/module/handlers/gestures/longPressGesture.js +0 -25
  597. package/lib/module/handlers/gestures/longPressGesture.js.map +0 -1
  598. package/lib/module/handlers/gestures/manualGesture.js +0 -22
  599. package/lib/module/handlers/gestures/manualGesture.js.map +0 -1
  600. package/lib/module/handlers/gestures/nativeGesture.js +0 -24
  601. package/lib/module/handlers/gestures/nativeGesture.js.map +0 -1
  602. package/lib/module/handlers/gestures/panGesture.js +0 -140
  603. package/lib/module/handlers/gestures/panGesture.js.map +0 -1
  604. package/lib/module/handlers/gestures/pinchGesture.js +0 -36
  605. package/lib/module/handlers/gestures/pinchGesture.js.map +0 -1
  606. package/lib/module/handlers/gestures/reanimatedWrapper.js +0 -30
  607. package/lib/module/handlers/gestures/reanimatedWrapper.js.map +0 -1
  608. package/lib/module/handlers/gestures/rotationGesture.js +0 -36
  609. package/lib/module/handlers/gestures/rotationGesture.js.map +0 -1
  610. package/lib/module/handlers/gestures/tapGesture.js +0 -50
  611. package/lib/module/handlers/gestures/tapGesture.js.map +0 -1
  612. package/lib/module/handlers/handlersRegistry.js +0 -44
  613. package/lib/module/handlers/handlersRegistry.js.map +0 -1
  614. package/lib/module/jestUtils/index.js +0 -2
  615. package/lib/module/jestUtils/index.js.map +0 -1
  616. package/lib/module/jestUtils/jestUtils.js +0 -350
  617. package/lib/module/jestUtils/jestUtils.js.map +0 -1
  618. package/lib/module/mocks.js +0 -56
  619. package/lib/module/mocks.js.map +0 -1
  620. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js +0 -3
  621. package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
  622. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js +0 -3
  623. package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
  624. package/lib/module/typeUtils.js +0 -2
  625. package/lib/module/typeUtils.js.map +0 -1
  626. package/lib/module/utils.js +0 -44
  627. package/lib/module/utils.js.map +0 -1
  628. package/lib/module/web/constants.js +0 -8
  629. package/lib/module/web/constants.js.map +0 -1
  630. package/lib/module/web/detectors/RotationGestureDetector.js +0 -155
  631. package/lib/module/web/detectors/RotationGestureDetector.js.map +0 -1
  632. package/lib/module/web/detectors/ScaleGestureDetector.js +0 -145
  633. package/lib/module/web/detectors/ScaleGestureDetector.js.map +0 -1
  634. package/lib/module/web/handlers/FlingGestureHandler.js +0 -152
  635. package/lib/module/web/handlers/FlingGestureHandler.js.map +0 -1
  636. package/lib/module/web/handlers/GestureHandler.js +0 -776
  637. package/lib/module/web/handlers/GestureHandler.js.map +0 -1
  638. package/lib/module/web/handlers/HoverGestureHandler.js +0 -47
  639. package/lib/module/web/handlers/HoverGestureHandler.js.map +0 -1
  640. package/lib/module/web/handlers/LongPressGestureHandler.js +0 -136
  641. package/lib/module/web/handlers/LongPressGestureHandler.js.map +0 -1
  642. package/lib/module/web/handlers/ManualGestureHandler.js +0 -49
  643. package/lib/module/web/handlers/ManualGestureHandler.js.map +0 -1
  644. package/lib/module/web/handlers/NativeViewGestureHandler.js +0 -163
  645. package/lib/module/web/handlers/NativeViewGestureHandler.js.map +0 -1
  646. package/lib/module/web/handlers/PanGestureHandler.js +0 -433
  647. package/lib/module/web/handlers/PanGestureHandler.js.map +0 -1
  648. package/lib/module/web/handlers/PinchGestureHandler.js +0 -159
  649. package/lib/module/web/handlers/PinchGestureHandler.js.map +0 -1
  650. package/lib/module/web/handlers/RotationGestureHandler.js +0 -171
  651. package/lib/module/web/handlers/RotationGestureHandler.js.map +0 -1
  652. package/lib/module/web/handlers/TapGestureHandler.js +0 -265
  653. package/lib/module/web/handlers/TapGestureHandler.js.map +0 -1
  654. package/lib/module/web/interfaces.js +0 -45
  655. package/lib/module/web/interfaces.js.map +0 -1
  656. package/lib/module/web/tools/CircularBuffer.js +0 -50
  657. package/lib/module/web/tools/CircularBuffer.js.map +0 -1
  658. package/lib/module/web/tools/EventManager.js +0 -118
  659. package/lib/module/web/tools/EventManager.js.map +0 -1
  660. package/lib/module/web/tools/GestureHandlerDelegate.js +0 -2
  661. package/lib/module/web/tools/GestureHandlerDelegate.js.map +0 -1
  662. package/lib/module/web/tools/GestureHandlerOrchestrator.js +0 -335
  663. package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +0 -1
  664. package/lib/module/web/tools/GestureHandlerWebDelegate.js +0 -102
  665. package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +0 -1
  666. package/lib/module/web/tools/InteractionManager.js +0 -105
  667. package/lib/module/web/tools/InteractionManager.js.map +0 -1
  668. package/lib/module/web/tools/LeastSquareSolver.js +0 -195
  669. package/lib/module/web/tools/LeastSquareSolver.js.map +0 -1
  670. package/lib/module/web/tools/NodeManager.js +0 -39
  671. package/lib/module/web/tools/NodeManager.js.map +0 -1
  672. package/lib/module/web/tools/PointerEventManager.js +0 -184
  673. package/lib/module/web/tools/PointerEventManager.js.map +0 -1
  674. package/lib/module/web/tools/PointerTracker.js +0 -213
  675. package/lib/module/web/tools/PointerTracker.js.map +0 -1
  676. package/lib/module/web/tools/TouchEventManager.js +0 -124
  677. package/lib/module/web/tools/TouchEventManager.js.map +0 -1
  678. package/lib/module/web/tools/VelocityTracker.js +0 -98
  679. package/lib/module/web/tools/VelocityTracker.js.map +0 -1
  680. package/lib/module/web/utils.js +0 -8
  681. package/lib/module/web/utils.js.map +0 -1
  682. package/lib/module/web_hammer/DiscreteGestureHandler.js +0 -94
  683. package/lib/module/web_hammer/DiscreteGestureHandler.js.map +0 -1
  684. package/lib/module/web_hammer/DraggingGestureHandler.js +0 -40
  685. package/lib/module/web_hammer/DraggingGestureHandler.js.map +0 -1
  686. package/lib/module/web_hammer/Errors.js +0 -7
  687. package/lib/module/web_hammer/Errors.js.map +0 -1
  688. package/lib/module/web_hammer/FlingGestureHandler.js +0 -156
  689. package/lib/module/web_hammer/FlingGestureHandler.js.map +0 -1
  690. package/lib/module/web_hammer/GestureHandler.js +0 -563
  691. package/lib/module/web_hammer/GestureHandler.js.map +0 -1
  692. package/lib/module/web_hammer/IndiscreteGestureHandler.js +0 -44
  693. package/lib/module/web_hammer/IndiscreteGestureHandler.js.map +0 -1
  694. package/lib/module/web_hammer/LongPressGestureHandler.js +0 -58
  695. package/lib/module/web_hammer/LongPressGestureHandler.js.map +0 -1
  696. package/lib/module/web_hammer/NativeViewGestureHandler.js +0 -49
  697. package/lib/module/web_hammer/NativeViewGestureHandler.js.map +0 -1
  698. package/lib/module/web_hammer/NodeManager.js +0 -33
  699. package/lib/module/web_hammer/NodeManager.js.map +0 -1
  700. package/lib/module/web_hammer/PanGestureHandler.js +0 -194
  701. package/lib/module/web_hammer/PanGestureHandler.js.map +0 -1
  702. package/lib/module/web_hammer/PinchGestureHandler.js +0 -29
  703. package/lib/module/web_hammer/PinchGestureHandler.js.map +0 -1
  704. package/lib/module/web_hammer/PressGestureHandler.js +0 -174
  705. package/lib/module/web_hammer/PressGestureHandler.js.map +0 -1
  706. package/lib/module/web_hammer/RotationGestureHandler.js +0 -32
  707. package/lib/module/web_hammer/RotationGestureHandler.js.map +0 -1
  708. package/lib/module/web_hammer/TapGestureHandler.js +0 -180
  709. package/lib/module/web_hammer/TapGestureHandler.js.map +0 -1
  710. package/lib/module/web_hammer/constants.js +0 -43
  711. package/lib/module/web_hammer/constants.js.map +0 -1
  712. package/lib/module/web_hammer/utils.js +0 -19
  713. package/lib/module/web_hammer/utils.js.map +0 -1
  714. package/lib/typescript/ActionType.d.ts +0 -7
  715. package/lib/typescript/Directions.d.ts +0 -7
  716. package/lib/typescript/EnableNewWebImplementation.d.ts +0 -3
  717. package/lib/typescript/GestureHandlerRootViewContext.d.ts +0 -3
  718. package/lib/typescript/PlatformConstants.d.ts +0 -5
  719. package/lib/typescript/PlatformConstants.web.d.ts +0 -4
  720. package/lib/typescript/RNGestureHandlerModule.macos.d.ts +0 -47
  721. package/lib/typescript/RNGestureHandlerModule.web.d.ts +0 -50
  722. package/lib/typescript/RNGestureHandlerModule.windows.d.ts +0 -48
  723. package/lib/typescript/RNRenderer.d.ts +0 -1
  724. package/lib/typescript/RNRenderer.web.d.ts +0 -3
  725. package/lib/typescript/State.d.ts +0 -9
  726. package/lib/typescript/TouchEventType.d.ts +0 -8
  727. package/lib/typescript/components/DrawerLayout.d.ts +0 -148
  728. package/lib/typescript/components/GestureComponents.d.ts +0 -22
  729. package/lib/typescript/components/GestureComponents.web.d.ts +0 -8
  730. package/lib/typescript/components/GestureHandlerButton.web.d.ts +0 -4
  731. package/lib/typescript/components/GestureHandlerRootView.android.d.ts +0 -6
  732. package/lib/typescript/components/GestureHandlerRootView.web.d.ts +0 -6
  733. package/lib/typescript/components/Swipeable.d.ts +0 -178
  734. package/lib/typescript/components/gestureHandlerRootHOC.d.ts +0 -3
  735. package/lib/typescript/components/touchables/TouchableHighlight.d.ts +0 -36
  736. package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +0 -45
  737. package/lib/typescript/components/touchables/TouchableNativeFeedback.d.ts +0 -2
  738. package/lib/typescript/getReactNativeVersion.d.ts +0 -4
  739. package/lib/typescript/getReactNativeVersion.web.d.ts +0 -1
  740. package/lib/typescript/getShadowNodeFromRef.d.ts +0 -1
  741. package/lib/typescript/getShadowNodeFromRef.web.d.ts +0 -1
  742. package/lib/typescript/ghQueueMicrotask.d.ts +0 -1
  743. package/lib/typescript/handlers/FlingGestureHandler.d.ts +0 -34
  744. package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +0 -44
  745. package/lib/typescript/handlers/LongPressGestureHandler.d.ts +0 -56
  746. package/lib/typescript/handlers/PinchGestureHandler.d.ts +0 -29
  747. package/lib/typescript/handlers/PressabilityDebugView.d.ts +0 -1
  748. package/lib/typescript/handlers/PressabilityDebugView.web.d.ts +0 -1
  749. package/lib/typescript/handlers/RotationGestureHandler.d.ts +0 -29
  750. package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +0 -42
  751. package/lib/typescript/handlers/gestures/eventReceiver.d.ts +0 -4
  752. package/lib/typescript/handlers/gestures/flingGesture.d.ts +0 -9
  753. package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +0 -15
  754. package/lib/typescript/handlers/gestures/gesture.d.ts +0 -110
  755. package/lib/typescript/handlers/gestures/gestureComposition.d.ts +0 -21
  756. package/lib/typescript/handlers/gestures/gestureObjects.d.ts +0 -41
  757. package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +0 -9
  758. package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +0 -4
  759. package/lib/typescript/handlers/gestures/hoverGesture.d.ts +0 -32
  760. package/lib/typescript/handlers/gestures/longPressGesture.d.ts +0 -9
  761. package/lib/typescript/handlers/gestures/manualGesture.d.ts +0 -7
  762. package/lib/typescript/handlers/gestures/nativeGesture.d.ts +0 -9
  763. package/lib/typescript/handlers/gestures/panGesture.d.ts +0 -26
  764. package/lib/typescript/handlers/gestures/pinchGesture.d.ts +0 -11
  765. package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +0 -14
  766. package/lib/typescript/handlers/gestures/rotationGesture.d.ts +0 -12
  767. package/lib/typescript/handlers/gestures/tapGesture.d.ts +0 -14
  768. package/lib/typescript/handlers/handlersRegistry.d.ts +0 -14
  769. package/lib/typescript/jestUtils/index.d.ts +0 -1
  770. package/lib/typescript/jestUtils/jestUtils.d.ts +0 -28
  771. package/lib/typescript/mocks.d.ts +0 -44
  772. package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +0 -14
  773. package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +0 -6
  774. package/lib/typescript/typeUtils.d.ts +0 -1
  775. package/lib/typescript/utils.d.ts +0 -8
  776. package/lib/typescript/web/constants.d.ts +0 -7
  777. package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +0 -30
  778. package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +0 -29
  779. package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +0 -27
  780. package/lib/typescript/web/handlers/GestureHandler.d.ts +0 -90
  781. package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +0 -10
  782. package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +0 -26
  783. package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +0 -12
  784. package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +0 -24
  785. package/lib/typescript/web/handlers/PanGestureHandler.d.ts +0 -55
  786. package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +0 -28
  787. package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +0 -29
  788. package/lib/typescript/web/handlers/TapGestureHandler.d.ts +0 -39
  789. package/lib/typescript/web/interfaces.d.ts +0 -141
  790. package/lib/typescript/web/tools/CircularBuffer.d.ts +0 -11
  791. package/lib/typescript/web/tools/EventManager.d.ts +0 -34
  792. package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +0 -22
  793. package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +0 -29
  794. package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +0 -21
  795. package/lib/typescript/web/tools/InteractionManager.d.ts +0 -17
  796. package/lib/typescript/web/tools/LeastSquareSolver.d.ts +0 -12
  797. package/lib/typescript/web/tools/NodeManager.d.ts +0 -11
  798. package/lib/typescript/web/tools/PointerEventManager.d.ts +0 -8
  799. package/lib/typescript/web/tools/PointerTracker.d.ts +0 -53
  800. package/lib/typescript/web/tools/TouchEventManager.d.ts +0 -6
  801. package/lib/typescript/web/tools/VelocityTracker.d.ts +0 -13
  802. package/lib/typescript/web/utils.d.ts +0 -4
  803. package/lib/typescript/web_hammer/DiscreteGestureHandler.d.ts +0 -20
  804. package/lib/typescript/web_hammer/DraggingGestureHandler.d.ts +0 -15
  805. package/lib/typescript/web_hammer/Errors.d.ts +0 -3
  806. package/lib/typescript/web_hammer/FlingGestureHandler.d.ts +0 -43
  807. package/lib/typescript/web_hammer/GestureHandler.d.ts +0 -145
  808. package/lib/typescript/web_hammer/IndiscreteGestureHandler.d.ts +0 -40
  809. package/lib/typescript/web_hammer/LongPressGestureHandler.d.ts +0 -38
  810. package/lib/typescript/web_hammer/NativeViewGestureHandler.d.ts +0 -7
  811. package/lib/typescript/web_hammer/NodeManager.d.ts +0 -8
  812. package/lib/typescript/web_hammer/PanGestureHandler.d.ts +0 -56
  813. package/lib/typescript/web_hammer/PinchGestureHandler.d.ts +0 -13
  814. package/lib/typescript/web_hammer/PressGestureHandler.d.ts +0 -83
  815. package/lib/typescript/web_hammer/RotationGestureHandler.d.ts +0 -13
  816. package/lib/typescript/web_hammer/TapGestureHandler.d.ts +0 -57
  817. package/lib/typescript/web_hammer/constants.d.ts +0 -39
  818. package/lib/typescript/web_hammer/utils.d.ts +0 -9
  819. package/src/ActionType.ts +0 -9
  820. package/src/Directions.ts +0 -9
  821. package/src/EnableNewWebImplementation.ts +0 -35
  822. package/src/GestureHandlerRootViewContext.ts +0 -3
  823. package/src/PlatformConstants.ts +0 -8
  824. package/src/PlatformConstants.web.ts +0 -5
  825. package/src/RNGestureHandlerModule.macos.ts +0 -133
  826. package/src/RNGestureHandlerModule.web.ts +0 -146
  827. package/src/RNGestureHandlerModule.windows.ts +0 -144
  828. package/src/RNRenderer.ts +0 -3
  829. package/src/RNRenderer.web.ts +0 -3
  830. package/src/State.ts +0 -13
  831. package/src/TouchEventType.ts +0 -10
  832. package/src/components/DrawerLayout.tsx +0 -743
  833. package/src/components/GestureComponents.tsx +0 -148
  834. package/src/components/GestureComponents.web.tsx +0 -41
  835. package/src/components/GestureHandlerButton.web.tsx +0 -6
  836. package/src/components/GestureHandlerRootView.android.tsx +0 -24
  837. package/src/components/GestureHandlerRootView.web.tsx +0 -17
  838. package/src/components/Swipeable.tsx +0 -584
  839. package/src/components/gestureHandlerRootHOC.tsx +0 -32
  840. package/src/components/touchables/TouchableHighlight.tsx +0 -115
  841. package/src/components/touchables/TouchableNativeFeedback.android.tsx +0 -91
  842. package/src/components/touchables/TouchableNativeFeedback.tsx +0 -3
  843. package/src/getReactNativeVersion.ts +0 -11
  844. package/src/getReactNativeVersion.web.ts +0 -3
  845. package/src/getShadowNodeFromRef.ts +0 -22
  846. package/src/getShadowNodeFromRef.web.ts +0 -7
  847. package/src/ghQueueMicrotask.ts +0 -5
  848. package/src/handlers/FlingGestureHandler.ts +0 -59
  849. package/src/handlers/ForceTouchGestureHandler.ts +0 -90
  850. package/src/handlers/LongPressGestureHandler.ts +0 -88
  851. package/src/handlers/PinchGestureHandler.ts +0 -48
  852. package/src/handlers/PressabilityDebugView.tsx +0 -2
  853. package/src/handlers/PressabilityDebugView.web.tsx +0 -4
  854. package/src/handlers/RotationGestureHandler.ts +0 -48
  855. package/src/handlers/gestureHandlerTypesCompat.ts +0 -106
  856. package/src/handlers/gestures/eventReceiver.ts +0 -155
  857. package/src/handlers/gestures/flingGesture.ts +0 -27
  858. package/src/handlers/gestures/forceTouchGesture.ts +0 -74
  859. package/src/handlers/gestures/gesture.ts +0 -349
  860. package/src/handlers/gestures/gestureComposition.ts +0 -122
  861. package/src/handlers/gestures/gestureObjects.ts +0 -84
  862. package/src/handlers/gestures/gestureStateManager.ts +0 -62
  863. package/src/handlers/gestures/gestureStateManager.web.ts +0 -24
  864. package/src/handlers/gestures/hoverGesture.ts +0 -83
  865. package/src/handlers/gestures/longPressGesture.ts +0 -28
  866. package/src/handlers/gestures/manualGesture.ts +0 -31
  867. package/src/handlers/gestures/nativeGesture.ts +0 -27
  868. package/src/handlers/gestures/panGesture.ts +0 -152
  869. package/src/handlers/gestures/pinchGesture.ts +0 -51
  870. package/src/handlers/gestures/reanimatedWrapper.ts +0 -56
  871. package/src/handlers/gestures/rotationGesture.ts +0 -51
  872. package/src/handlers/gestures/tapGesture.ts +0 -53
  873. package/src/handlers/handlersRegistry.ts +0 -60
  874. package/src/jestUtils/index.ts +0 -1
  875. package/src/jestUtils/jestUtils.ts +0 -505
  876. package/src/mocks.ts +0 -67
  877. package/src/specs/RNGestureHandlerButtonNativeComponent.ts +0 -18
  878. package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -6
  879. package/src/typeUtils.ts +0 -1
  880. package/src/utils.ts +0 -54
  881. package/src/web/constants.ts +0 -8
  882. package/src/web/detectors/RotationGestureDetector.ts +0 -168
  883. package/src/web/detectors/ScaleGestureDetector.ts +0 -172
  884. package/src/web/handlers/FlingGestureHandler.ts +0 -161
  885. package/src/web/handlers/GestureHandler.ts +0 -849
  886. package/src/web/handlers/HoverGestureHandler.ts +0 -43
  887. package/src/web/handlers/LongPressGestureHandler.ts +0 -125
  888. package/src/web/handlers/ManualGestureHandler.ts +0 -43
  889. package/src/web/handlers/NativeViewGestureHandler.ts +0 -167
  890. package/src/web/handlers/PanGestureHandler.ts +0 -485
  891. package/src/web/handlers/PinchGestureHandler.ts +0 -158
  892. package/src/web/handlers/RotationGestureHandler.ts +0 -172
  893. package/src/web/handlers/TapGestureHandler.ts +0 -273
  894. package/src/web/interfaces.ts +0 -167
  895. package/src/web/tools/EventManager.ts +0 -104
  896. package/src/web/tools/GestureHandlerDelegate.ts +0 -23
  897. package/src/web/tools/GestureHandlerOrchestrator.ts +0 -389
  898. package/src/web/tools/GestureHandlerWebDelegate.ts +0 -115
  899. package/src/web/tools/NodeManager.ts +0 -43
  900. package/src/web/tools/PointerEventManager.ts +0 -202
  901. package/src/web/tools/TouchEventManager.ts +0 -167
  902. package/src/web/utils.ts +0 -8
  903. package/src/web_hammer/DiscreteGestureHandler.ts +0 -82
  904. package/src/web_hammer/DraggingGestureHandler.ts +0 -34
  905. package/src/web_hammer/Errors.ts +0 -7
  906. package/src/web_hammer/FlingGestureHandler.ts +0 -134
  907. package/src/web_hammer/GestureHandler.ts +0 -599
  908. package/src/web_hammer/IndiscreteGestureHandler.ts +0 -33
  909. package/src/web_hammer/LongPressGestureHandler.ts +0 -56
  910. package/src/web_hammer/NativeViewGestureHandler.ts +0 -47
  911. package/src/web_hammer/NodeManager.ts +0 -42
  912. package/src/web_hammer/PanGestureHandler.ts +0 -226
  913. package/src/web_hammer/PinchGestureHandler.ts +0 -25
  914. package/src/web_hammer/PressGestureHandler.ts +0 -167
  915. package/src/web_hammer/RotationGestureHandler.ts +0 -25
  916. package/src/web_hammer/TapGestureHandler.ts +0 -172
  917. package/src/web_hammer/constants.ts +0 -48
  918. package/src/web_hammer/utils.ts +0 -24
@@ -1,13 +1,9 @@
1
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
-
3
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
4
-
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
5
2
  import * as React from 'react';
6
3
  import { Component } from 'react';
7
4
  import { Animated, Platform } from 'react-native';
8
- import { State } from '../../State';
5
+ import { State } from 'react-native-gesture-handler/src/State';
9
6
  import { BaseButton } from '../GestureButtons';
10
-
11
7
  /**
12
8
  * Each touchable is a states' machine which preforms transitions.
13
9
  * On very beginning (and on the very end or recognition) touchable is
@@ -21,79 +17,31 @@ export const TOUCHABLE_STATE = {
21
17
  MOVED_OUTSIDE: 2
22
18
  };
23
19
 
20
+ // TODO: maybe can be better
21
+ // TODO: all clearTimeout have ! added, maybe they shouldn't ?
22
+
24
23
  /**
25
24
  * GenericTouchable is not intented to be used as it is.
26
25
  * Should be treated as a source for the rest of touchables
27
26
  */
28
- export default class GenericTouchable extends Component {
29
- constructor(...args) {
30
- super(...args);
31
-
32
- _defineProperty(this, "pressInTimeout", void 0);
33
-
34
- _defineProperty(this, "pressOutTimeout", void 0);
35
-
36
- _defineProperty(this, "longPressTimeout", void 0);
37
-
38
- _defineProperty(this, "longPressDetected", false);
39
-
40
- _defineProperty(this, "pointerInside", true);
41
-
42
- _defineProperty(this, "STATE", TOUCHABLE_STATE.UNDETERMINED);
43
-
44
- _defineProperty(this, "onGestureEvent", ({
45
- nativeEvent: {
46
- pointerInside
47
- }
48
- }) => {
49
- if (this.pointerInside !== pointerInside) {
50
- if (pointerInside) {
51
- this.onMoveIn();
52
- } else {
53
- this.onMoveOut();
54
- }
55
- }
56
-
57
- this.pointerInside = pointerInside;
58
- });
59
-
60
- _defineProperty(this, "onHandlerStateChange", ({
61
- nativeEvent
62
- }) => {
63
- const {
64
- state
65
- } = nativeEvent;
66
27
 
67
- if (state === State.CANCELLED || state === State.FAILED) {
68
- // Need to handle case with external cancellation (e.g. by ScrollView)
69
- this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
70
- } else if ( // This platform check is an implication of slightly different behavior of handlers on different platform.
71
- // And Android "Active" state is achieving on first move of a finger, not on press in.
72
- // On iOS event on "Began" is not delivered.
73
- state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) && this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
74
- // Moving inside requires
75
- this.handlePressIn();
76
- } else if (state === State.END) {
77
- const shouldCallOnPress = !this.longPressDetected && this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE && this.pressOutTimeout === null;
78
- this.handleGoToUndetermined();
79
-
80
- if (shouldCallOnPress) {
81
- var _this$props$onPress, _this$props;
82
-
83
- // Calls only inside component whether no long press was called previously
84
- (_this$props$onPress = (_this$props = this.props).onPress) === null || _this$props$onPress === void 0 ? void 0 : _this$props$onPress.call(_this$props);
85
- }
86
- }
87
- });
28
+ export default class GenericTouchable extends Component {
29
+ static defaultProps = {
30
+ delayLongPress: 600,
31
+ extraButtonProps: {
32
+ rippleColor: 'transparent',
33
+ exclusive: true
34
+ }
35
+ };
88
36
 
89
- _defineProperty(this, "onLongPressDetected", () => {
90
- var _this$props$onLongPre, _this$props2;
37
+ // timeout handlers
91
38
 
92
- this.longPressDetected = true; // checked for in the caller of `onLongPressDetected`, but better to check twice
39
+ // This flag is required since recognition of longPress implies not-invoking onPress
40
+ longPressDetected = false;
41
+ pointerInside = true;
93
42
 
94
- (_this$props$onLongPre = (_this$props2 = this.props).onLongPress) === null || _this$props$onLongPre === void 0 ? void 0 : _this$props$onLongPre.call(_this$props2);
95
- });
96
- }
43
+ // State of touchable
44
+ STATE = TOUCHABLE_STATE.UNDETERMINED;
97
45
 
98
46
  // handlePressIn in called on first touch on traveling inside component.
99
47
  // Handles state transition with delay.
@@ -106,15 +54,13 @@ export default class GenericTouchable extends Component {
106
54
  } else {
107
55
  this.moveToState(TOUCHABLE_STATE.BEGAN);
108
56
  }
109
-
110
57
  if (this.props.onLongPress) {
111
58
  const time = (this.props.delayPressIn || 0) + (this.props.delayLongPress || 0);
112
59
  this.longPressTimeout = setTimeout(this.onLongPressDetected, time);
113
60
  }
114
- } // handleMoveOutside in called on traveling outside component.
61
+ }
62
+ // handleMoveOutside in called on traveling outside component.
115
63
  // Handles state transition with delay.
116
-
117
-
118
64
  handleMoveOutside() {
119
65
  if (this.props.delayPressOut) {
120
66
  this.pressOutTimeout = this.pressOutTimeout || setTimeout(() => {
@@ -124,18 +70,16 @@ export default class GenericTouchable extends Component {
124
70
  } else {
125
71
  this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);
126
72
  }
127
- } // handleGoToUndetermined transits to UNDETERMINED state with proper delay
128
-
73
+ }
129
74
 
75
+ // handleGoToUndetermined transits to UNDETERMINED state with proper delay
130
76
  handleGoToUndetermined() {
131
77
  clearTimeout(this.pressOutTimeout); // TODO: maybe it can be undefined
132
-
133
78
  if (this.props.delayPressOut) {
134
79
  this.pressOutTimeout = setTimeout(() => {
135
80
  if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
136
81
  this.moveToState(TOUCHABLE_STATE.BEGAN);
137
82
  }
138
-
139
83
  this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
140
84
  this.pressOutTimeout = null;
141
85
  }, this.props.delayPressOut);
@@ -143,16 +87,13 @@ export default class GenericTouchable extends Component {
143
87
  if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
144
88
  this.moveToState(TOUCHABLE_STATE.BEGAN);
145
89
  }
146
-
147
90
  this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
148
91
  }
149
92
  }
150
-
151
93
  componentDidMount() {
152
94
  this.reset();
153
- } // reset timeout to prevent memory leaks.
154
-
155
-
95
+ }
96
+ // reset timeout to prevent memory leaks.
156
97
  reset() {
157
98
  this.longPressDetected = false;
158
99
  this.pointerInside = true;
@@ -162,76 +103,108 @@ export default class GenericTouchable extends Component {
162
103
  this.pressOutTimeout = null;
163
104
  this.longPressTimeout = null;
164
105
  this.pressInTimeout = null;
165
- } // All states' transitions are defined here.
166
-
106
+ }
167
107
 
108
+ // All states' transitions are defined here.
168
109
  moveToState(newState) {
169
- var _this$props$onStateCh, _this$props6;
170
-
110
+ var _this$props$onStateCh, _this$props4;
171
111
  if (newState === this.STATE) {
172
112
  // Ignore dummy transitions
173
113
  return;
174
114
  }
175
-
176
115
  if (newState === TOUCHABLE_STATE.BEGAN) {
177
- var _this$props$onPressIn, _this$props3;
178
-
116
+ var _this$props$onPressIn, _this$props;
179
117
  // First touch and moving inside
180
- (_this$props$onPressIn = (_this$props3 = this.props).onPressIn) === null || _this$props$onPressIn === void 0 ? void 0 : _this$props$onPressIn.call(_this$props3);
118
+ (_this$props$onPressIn = (_this$props = this.props).onPressIn) === null || _this$props$onPressIn === void 0 || _this$props$onPressIn.call(_this$props);
181
119
  } else if (newState === TOUCHABLE_STATE.MOVED_OUTSIDE) {
182
- var _this$props$onPressOu, _this$props4;
183
-
120
+ var _this$props$onPressOu, _this$props2;
184
121
  // Moving outside
185
- (_this$props$onPressOu = (_this$props4 = this.props).onPressOut) === null || _this$props$onPressOu === void 0 ? void 0 : _this$props$onPressOu.call(_this$props4);
122
+ (_this$props$onPressOu = (_this$props2 = this.props).onPressOut) === null || _this$props$onPressOu === void 0 || _this$props$onPressOu.call(_this$props2);
186
123
  } else if (newState === TOUCHABLE_STATE.UNDETERMINED) {
187
124
  // Need to reset each time on transition to UNDETERMINED
188
125
  this.reset();
189
-
190
126
  if (this.STATE === TOUCHABLE_STATE.BEGAN) {
191
- var _this$props$onPressOu2, _this$props5;
192
-
127
+ var _this$props$onPressOu2, _this$props3;
193
128
  // ... and if it happens inside button.
194
- (_this$props$onPressOu2 = (_this$props5 = this.props).onPressOut) === null || _this$props$onPressOu2 === void 0 ? void 0 : _this$props$onPressOu2.call(_this$props5);
129
+ (_this$props$onPressOu2 = (_this$props3 = this.props).onPressOut) === null || _this$props$onPressOu2 === void 0 || _this$props$onPressOu2.call(_this$props3);
195
130
  }
196
- } // Finally call lister (used by subclasses)
197
-
198
-
199
- (_this$props$onStateCh = (_this$props6 = this.props).onStateChange) === null || _this$props$onStateCh === void 0 ? void 0 : _this$props$onStateCh.call(_this$props6, this.STATE, newState); // ... and make transition.
200
-
131
+ }
132
+ // Finally call lister (used by subclasses)
133
+ (_this$props$onStateCh = (_this$props4 = this.props).onStateChange) === null || _this$props$onStateCh === void 0 || _this$props$onStateCh.call(_this$props4, this.STATE, newState);
134
+ // ... and make transition.
201
135
  this.STATE = newState;
202
136
  }
203
-
137
+ onGestureEvent = ({
138
+ nativeEvent: {
139
+ pointerInside
140
+ }
141
+ }) => {
142
+ if (this.pointerInside !== pointerInside) {
143
+ if (pointerInside) {
144
+ this.onMoveIn();
145
+ } else {
146
+ this.onMoveOut();
147
+ }
148
+ }
149
+ this.pointerInside = pointerInside;
150
+ };
151
+ onHandlerStateChange = ({
152
+ nativeEvent
153
+ }) => {
154
+ const {
155
+ state
156
+ } = nativeEvent;
157
+ if (state === State.CANCELLED || state === State.FAILED) {
158
+ // Need to handle case with external cancellation (e.g. by ScrollView)
159
+ this.moveToState(TOUCHABLE_STATE.UNDETERMINED);
160
+ } else if (
161
+ // This platform check is an implication of slightly different behavior of handlers on different platform.
162
+ // And Android "Active" state is achieving on first move of a finger, not on press in.
163
+ // On iOS event on "Began" is not delivered.
164
+ state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) && this.STATE === TOUCHABLE_STATE.UNDETERMINED) {
165
+ // Moving inside requires
166
+ this.handlePressIn();
167
+ } else if (state === State.END) {
168
+ const shouldCallOnPress = !this.longPressDetected && this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE && this.pressOutTimeout === null;
169
+ this.handleGoToUndetermined();
170
+ if (shouldCallOnPress) {
171
+ var _this$props$onPress, _this$props5;
172
+ // Calls only inside component whether no long press was called previously
173
+ (_this$props$onPress = (_this$props5 = this.props).onPress) === null || _this$props$onPress === void 0 || _this$props$onPress.call(_this$props5);
174
+ }
175
+ }
176
+ };
177
+ onLongPressDetected = () => {
178
+ var _this$props$onLongPre, _this$props6;
179
+ this.longPressDetected = true;
180
+ // checked for in the caller of `onLongPressDetected`, but better to check twice
181
+ (_this$props$onLongPre = (_this$props6 = this.props).onLongPress) === null || _this$props$onLongPre === void 0 || _this$props$onLongPre.call(_this$props6);
182
+ };
204
183
  componentWillUnmount() {
205
184
  // to prevent memory leaks
206
185
  this.reset();
207
186
  }
208
-
209
187
  onMoveIn() {
210
188
  if (this.STATE === TOUCHABLE_STATE.MOVED_OUTSIDE) {
211
189
  // This call is not throttled with delays (like in RN's implementation).
212
190
  this.moveToState(TOUCHABLE_STATE.BEGAN);
213
191
  }
214
192
  }
215
-
216
193
  onMoveOut() {
217
194
  // long press should no longer be detected
218
195
  clearTimeout(this.longPressTimeout);
219
196
  this.longPressTimeout = null;
220
-
221
197
  if (this.STATE === TOUCHABLE_STATE.BEGAN) {
222
198
  this.handleMoveOutside();
223
199
  }
224
200
  }
225
-
226
201
  render() {
227
- var _ref, _this$props$touchSoun;
228
-
229
- const hitSlop = (_ref = typeof this.props.hitSlop === 'number' ? {
202
+ const hitSlop = (typeof this.props.hitSlop === 'number' ? {
230
203
  top: this.props.hitSlop,
231
204
  left: this.props.hitSlop,
232
205
  bottom: this.props.hitSlop,
233
206
  right: this.props.hitSlop
234
- } : this.props.hitSlop) !== null && _ref !== void 0 ? _ref : undefined;
207
+ } : this.props.hitSlop) ?? undefined;
235
208
  const coreProps = {
236
209
  accessible: this.props.accessible !== false,
237
210
  accessibilityLabel: this.props.accessibilityLabel,
@@ -247,27 +220,19 @@ export default class GenericTouchable extends Component {
247
220
  };
248
221
  return /*#__PURE__*/React.createElement(BaseButton, _extends({
249
222
  style: this.props.containerStyle,
250
- onHandlerStateChange: // TODO: not sure if it can be undefined instead of null
223
+ onHandlerStateChange:
224
+ // TODO: not sure if it can be undefined instead of null
251
225
  this.props.disabled ? undefined : this.onHandlerStateChange,
252
226
  onGestureEvent: this.onGestureEvent,
253
227
  hitSlop: hitSlop,
254
228
  shouldActivateOnStart: this.props.shouldActivateOnStart,
255
229
  disallowInterruption: this.props.disallowInterruption,
256
230
  testID: this.props.testID,
257
- touchSoundDisabled: (_this$props$touchSoun = this.props.touchSoundDisabled) !== null && _this$props$touchSoun !== void 0 ? _this$props$touchSoun : false,
231
+ touchSoundDisabled: this.props.touchSoundDisabled ?? false,
258
232
  enabled: !this.props.disabled
259
233
  }, this.props.extraButtonProps), /*#__PURE__*/React.createElement(Animated.View, _extends({}, coreProps, {
260
234
  style: this.props.style
261
235
  }), this.props.children));
262
236
  }
263
-
264
237
  }
265
-
266
- _defineProperty(GenericTouchable, "defaultProps", {
267
- delayLongPress: 600,
268
- extraButtonProps: {
269
- rippleColor: 'transparent',
270
- exclusive: true
271
- }
272
- });
273
238
  //# sourceMappingURL=GenericTouchable.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["GenericTouchable.tsx"],"names":["React","Component","Animated","Platform","State","BaseButton","TOUCHABLE_STATE","UNDETERMINED","BEGAN","MOVED_OUTSIDE","GenericTouchable","nativeEvent","pointerInside","onMoveIn","onMoveOut","state","CANCELLED","FAILED","moveToState","OS","ACTIVE","STATE","handlePressIn","END","shouldCallOnPress","longPressDetected","pressOutTimeout","handleGoToUndetermined","props","onPress","onLongPress","delayPressIn","pressInTimeout","setTimeout","time","delayLongPress","longPressTimeout","onLongPressDetected","handleMoveOutside","delayPressOut","clearTimeout","componentDidMount","reset","newState","onPressIn","onPressOut","onStateChange","componentWillUnmount","render","hitSlop","top","left","bottom","right","undefined","coreProps","accessible","accessibilityLabel","accessibilityHint","accessibilityRole","accessibilityState","accessibilityActions","onAccessibilityAction","nativeID","onLayout","containerStyle","disabled","onHandlerStateChange","onGestureEvent","shouldActivateOnStart","disallowInterruption","testID","touchSoundDisabled","extraButtonProps","style","children","rippleColor","exclusive"],"mappings":"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","sourcesContent":["import * as React from 'react';\r\nimport { Component } from 'react';\r\nimport {\r\n Animated,\r\n Platform,\r\n StyleProp,\r\n ViewStyle,\r\n TouchableWithoutFeedbackProps,\r\n Insets,\r\n} from 'react-native';\r\n\r\nimport { State } from '../../State';\r\nimport { BaseButton } from '../GestureButtons';\r\n\r\nimport {\r\n GestureEvent,\r\n HandlerStateChangeEvent,\r\n} from '../../handlers/gestureHandlerCommon';\r\nimport { NativeViewGestureHandlerPayload } from '../../handlers/NativeViewGestureHandler';\r\nimport { TouchableNativeFeedbackExtraProps } from './TouchableNativeFeedback.android';\r\n\r\n/**\r\n * Each touchable is a states' machine which preforms transitions.\r\n * On very beginning (and on the very end or recognition) touchable is\r\n * UNDETERMINED. Then it moves to BEGAN. If touchable recognizes that finger\r\n * travel outside it transits to special MOVED_OUTSIDE state. Gesture recognition\r\n * finishes in UNDETERMINED state.\r\n */\r\nexport const TOUCHABLE_STATE = {\r\n UNDETERMINED: 0,\r\n BEGAN: 1,\r\n MOVED_OUTSIDE: 2,\r\n} as const;\r\n\r\ntype TouchableState = typeof TOUCHABLE_STATE[keyof typeof TOUCHABLE_STATE];\r\n\r\nexport interface GenericTouchableProps\r\n extends Omit<TouchableWithoutFeedbackProps, 'hitSlop'> {\r\n // Decided to drop not used fields from RN's implementation.\r\n // e.g. onBlur and onFocus as well as deprecated props. - TODO: this comment may be unuseful in this moment\r\n\r\n // TODO: in RN these events get native event parameter, which prolly could be used in our implementation too\r\n onPress?: () => void;\r\n onPressIn?: () => void;\r\n onPressOut?: () => void;\r\n onLongPress?: () => void;\r\n\r\n nativeID?: string;\r\n shouldActivateOnStart?: boolean;\r\n disallowInterruption?: boolean;\r\n\r\n containerStyle?: StyleProp<ViewStyle>;\r\n hitSlop?: Insets | number;\r\n}\r\n\r\ninterface InternalProps {\r\n extraButtonProps: TouchableNativeFeedbackExtraProps;\r\n onStateChange?: (oldState: TouchableState, newState: TouchableState) => void;\r\n}\r\n\r\n// TODO: maybe can be better\r\n// TODO: all clearTimeout have ! added, maybe they shouldn't ?\r\ntype Timeout = ReturnType<typeof setTimeout> | null | undefined;\r\n\r\n/**\r\n * GenericTouchable is not intented to be used as it is.\r\n * Should be treated as a source for the rest of touchables\r\n */\r\n\r\nexport default class GenericTouchable extends Component<\r\n GenericTouchableProps & InternalProps\r\n> {\r\n static defaultProps = {\r\n delayLongPress: 600,\r\n extraButtonProps: {\r\n rippleColor: 'transparent',\r\n exclusive: true,\r\n },\r\n };\r\n\r\n // timeout handlers\r\n pressInTimeout: Timeout;\r\n pressOutTimeout: Timeout;\r\n longPressTimeout: Timeout;\r\n\r\n // This flag is required since recognition of longPress implies not-invoking onPress\r\n longPressDetected = false;\r\n\r\n pointerInside = true;\r\n\r\n // State of touchable\r\n STATE: TouchableState = TOUCHABLE_STATE.UNDETERMINED;\r\n\r\n // handlePressIn in called on first touch on traveling inside component.\r\n // Handles state transition with delay.\r\n handlePressIn() {\r\n if (this.props.delayPressIn) {\r\n this.pressInTimeout = setTimeout(() => {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n this.pressInTimeout = null;\r\n }, this.props.delayPressIn);\r\n } else {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n if (this.props.onLongPress) {\r\n const time =\r\n (this.props.delayPressIn || 0) + (this.props.delayLongPress || 0);\r\n this.longPressTimeout = setTimeout(this.onLongPressDetected, time);\r\n }\r\n }\r\n // handleMoveOutside in called on traveling outside component.\r\n // Handles state transition with delay.\r\n handleMoveOutside() {\r\n if (this.props.delayPressOut) {\r\n this.pressOutTimeout =\r\n this.pressOutTimeout ||\r\n setTimeout(() => {\r\n this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);\r\n this.pressOutTimeout = null;\r\n }, this.props.delayPressOut);\r\n } else {\r\n this.moveToState(TOUCHABLE_STATE.MOVED_OUTSIDE);\r\n }\r\n }\r\n\r\n // handleGoToUndetermined transits to UNDETERMINED state with proper delay\r\n handleGoToUndetermined() {\r\n clearTimeout(this.pressOutTimeout!); // TODO: maybe it can be undefined\r\n if (this.props.delayPressOut) {\r\n this.pressOutTimeout = setTimeout(() => {\r\n if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n this.pressOutTimeout = null;\r\n }, this.props.delayPressOut);\r\n } else {\r\n if (this.STATE === TOUCHABLE_STATE.UNDETERMINED) {\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n }\r\n }\r\n\r\n componentDidMount() {\r\n this.reset();\r\n }\r\n // reset timeout to prevent memory leaks.\r\n reset() {\r\n this.longPressDetected = false;\r\n this.pointerInside = true;\r\n clearTimeout(this.pressInTimeout!);\r\n clearTimeout(this.pressOutTimeout!);\r\n clearTimeout(this.longPressTimeout!);\r\n this.pressOutTimeout = null;\r\n this.longPressTimeout = null;\r\n this.pressInTimeout = null;\r\n }\r\n\r\n // All states' transitions are defined here.\r\n moveToState(newState: TouchableState) {\r\n if (newState === this.STATE) {\r\n // Ignore dummy transitions\r\n return;\r\n }\r\n if (newState === TOUCHABLE_STATE.BEGAN) {\r\n // First touch and moving inside\r\n this.props.onPressIn?.();\r\n } else if (newState === TOUCHABLE_STATE.MOVED_OUTSIDE) {\r\n // Moving outside\r\n this.props.onPressOut?.();\r\n } else if (newState === TOUCHABLE_STATE.UNDETERMINED) {\r\n // Need to reset each time on transition to UNDETERMINED\r\n this.reset();\r\n if (this.STATE === TOUCHABLE_STATE.BEGAN) {\r\n // ... and if it happens inside button.\r\n this.props.onPressOut?.();\r\n }\r\n }\r\n // Finally call lister (used by subclasses)\r\n this.props.onStateChange?.(this.STATE, newState);\r\n // ... and make transition.\r\n this.STATE = newState;\r\n }\r\n\r\n onGestureEvent = ({\r\n nativeEvent: { pointerInside },\r\n }: GestureEvent<NativeViewGestureHandlerPayload>) => {\r\n if (this.pointerInside !== pointerInside) {\r\n if (pointerInside) {\r\n this.onMoveIn();\r\n } else {\r\n this.onMoveOut();\r\n }\r\n }\r\n this.pointerInside = pointerInside;\r\n };\r\n\r\n onHandlerStateChange = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>) => {\r\n const { state } = nativeEvent;\r\n if (state === State.CANCELLED || state === State.FAILED) {\r\n // Need to handle case with external cancellation (e.g. by ScrollView)\r\n this.moveToState(TOUCHABLE_STATE.UNDETERMINED);\r\n } else if (\r\n // This platform check is an implication of slightly different behavior of handlers on different platform.\r\n // And Android \"Active\" state is achieving on first move of a finger, not on press in.\r\n // On iOS event on \"Began\" is not delivered.\r\n state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) &&\r\n this.STATE === TOUCHABLE_STATE.UNDETERMINED\r\n ) {\r\n // Moving inside requires\r\n this.handlePressIn();\r\n } else if (state === State.END) {\r\n const shouldCallOnPress =\r\n !this.longPressDetected &&\r\n this.STATE !== TOUCHABLE_STATE.MOVED_OUTSIDE &&\r\n this.pressOutTimeout === null;\r\n this.handleGoToUndetermined();\r\n if (shouldCallOnPress) {\r\n // Calls only inside component whether no long press was called previously\r\n this.props.onPress?.();\r\n }\r\n }\r\n };\r\n\r\n onLongPressDetected = () => {\r\n this.longPressDetected = true;\r\n // checked for in the caller of `onLongPressDetected`, but better to check twice\r\n this.props.onLongPress?.();\r\n };\r\n\r\n componentWillUnmount() {\r\n // to prevent memory leaks\r\n this.reset();\r\n }\r\n\r\n onMoveIn() {\r\n if (this.STATE === TOUCHABLE_STATE.MOVED_OUTSIDE) {\r\n // This call is not throttled with delays (like in RN's implementation).\r\n this.moveToState(TOUCHABLE_STATE.BEGAN);\r\n }\r\n }\r\n\r\n onMoveOut() {\r\n // long press should no longer be detected\r\n clearTimeout(this.longPressTimeout!);\r\n this.longPressTimeout = null;\r\n if (this.STATE === TOUCHABLE_STATE.BEGAN) {\r\n this.handleMoveOutside();\r\n }\r\n }\r\n\r\n render() {\r\n const hitSlop =\r\n (typeof this.props.hitSlop === 'number'\r\n ? {\r\n top: this.props.hitSlop,\r\n left: this.props.hitSlop,\r\n bottom: this.props.hitSlop,\r\n right: this.props.hitSlop,\r\n }\r\n : this.props.hitSlop) ?? undefined;\r\n\r\n const coreProps = {\r\n accessible: this.props.accessible !== false,\r\n accessibilityLabel: this.props.accessibilityLabel,\r\n accessibilityHint: this.props.accessibilityHint,\r\n accessibilityRole: this.props.accessibilityRole,\r\n // TODO: check if changed to no 's' correctly, also removed 2 props that are no longer available: `accessibilityComponentType` and `accessibilityTraits`,\r\n // would be good to check if it is ok for sure, see: https://github.com/facebook/react-native/issues/24016\r\n accessibilityState: this.props.accessibilityState,\r\n accessibilityActions: this.props.accessibilityActions,\r\n onAccessibilityAction: this.props.onAccessibilityAction,\r\n nativeID: this.props.nativeID,\r\n onLayout: this.props.onLayout,\r\n };\r\n\r\n return (\r\n <BaseButton\r\n style={this.props.containerStyle}\r\n onHandlerStateChange={\r\n // TODO: not sure if it can be undefined instead of null\r\n this.props.disabled ? undefined : this.onHandlerStateChange\r\n }\r\n onGestureEvent={this.onGestureEvent}\r\n hitSlop={hitSlop}\r\n shouldActivateOnStart={this.props.shouldActivateOnStart}\r\n disallowInterruption={this.props.disallowInterruption}\r\n testID={this.props.testID}\r\n touchSoundDisabled={this.props.touchSoundDisabled ?? false}\r\n enabled={!this.props.disabled}\r\n {...this.props.extraButtonProps}>\r\n <Animated.View {...coreProps} style={this.props.style}>\r\n {this.props.children}\r\n </Animated.View>\r\n </BaseButton>\r\n );\r\n }\r\n}\r\n"]}
1
+ {"version":3,"names":["React","Component","Animated","Platform","State","BaseButton","TOUCHABLE_STATE","UNDETERMINED","BEGAN","MOVED_OUTSIDE","GenericTouchable","defaultProps","delayLongPress","extraButtonProps","rippleColor","exclusive","longPressDetected","pointerInside","STATE","handlePressIn","props","delayPressIn","pressInTimeout","setTimeout","moveToState","onLongPress","time","longPressTimeout","onLongPressDetected","handleMoveOutside","delayPressOut","pressOutTimeout","handleGoToUndetermined","clearTimeout","componentDidMount","reset","newState","_this$props$onStateCh","_this$props4","_this$props$onPressIn","_this$props","onPressIn","call","_this$props$onPressOu","_this$props2","onPressOut","_this$props$onPressOu2","_this$props3","onStateChange","onGestureEvent","nativeEvent","onMoveIn","onMoveOut","onHandlerStateChange","state","CANCELLED","FAILED","OS","ACTIVE","END","shouldCallOnPress","_this$props$onPress","_this$props5","onPress","_this$props$onLongPre","_this$props6","componentWillUnmount","render","hitSlop","top","left","bottom","right","undefined","coreProps","accessible","accessibilityLabel","accessibilityHint","accessibilityRole","accessibilityState","accessibilityActions","onAccessibilityAction","nativeID","onLayout","createElement","_extends","style","containerStyle","disabled","shouldActivateOnStart","disallowInterruption","testID","touchSoundDisabled","enabled","View","children"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/touchables/GenericTouchable.tsx"],"mappings":"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"}
@@ -1,46 +1,38 @@
1
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
-
3
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
4
-
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
5
2
  import { Animated, Easing, StyleSheet, View } from 'react-native';
6
3
  import GenericTouchable, { TOUCHABLE_STATE } from './GenericTouchable';
7
4
  import * as React from 'react';
8
5
  import { Component } from 'react';
9
-
10
6
  /**
11
7
  * TouchableOpacity bases on timing animation which has been used in RN's core
12
8
  */
13
9
  export default class TouchableOpacity extends Component {
14
- constructor(...args) {
15
- super(...args);
16
-
17
- _defineProperty(this, "getChildStyleOpacityWithDefault", () => {
18
- const childStyle = StyleSheet.flatten(this.props.style) || {};
19
- return childStyle.opacity == null ? 1 : childStyle.opacity.valueOf();
20
- });
21
-
22
- _defineProperty(this, "opacity", new Animated.Value(this.getChildStyleOpacityWithDefault()));
23
-
24
- _defineProperty(this, "setOpacityTo", (value, duration) => {
25
- var _this$props$useNative;
26
-
27
- Animated.timing(this.opacity, {
28
- toValue: value,
29
- duration: duration,
30
- easing: Easing.inOut(Easing.quad),
31
- useNativeDriver: (_this$props$useNative = this.props.useNativeAnimations) !== null && _this$props$useNative !== void 0 ? _this$props$useNative : true
32
- }).start();
33
- });
34
-
35
- _defineProperty(this, "onStateChange", (_from, to) => {
36
- if (to === TOUCHABLE_STATE.BEGAN) {
37
- this.setOpacityTo(this.props.activeOpacity, 0);
38
- } else if (to === TOUCHABLE_STATE.UNDETERMINED || to === TOUCHABLE_STATE.MOVED_OUTSIDE) {
39
- this.setOpacityTo(this.getChildStyleOpacityWithDefault(), 150);
40
- }
41
- });
42
- }
43
-
10
+ static defaultProps = {
11
+ ...GenericTouchable.defaultProps,
12
+ activeOpacity: 0.2
13
+ };
14
+
15
+ // opacity is 1 one by default but could be overwritten
16
+ getChildStyleOpacityWithDefault = () => {
17
+ const childStyle = StyleSheet.flatten(this.props.style) || {};
18
+ return childStyle.opacity == null ? 1 : childStyle.opacity.valueOf();
19
+ };
20
+ opacity = new Animated.Value(this.getChildStyleOpacityWithDefault());
21
+ setOpacityTo = (value, duration) => {
22
+ Animated.timing(this.opacity, {
23
+ toValue: value,
24
+ duration: duration,
25
+ easing: Easing.inOut(Easing.quad),
26
+ useNativeDriver: this.props.useNativeAnimations ?? true
27
+ }).start();
28
+ };
29
+ onStateChange = (_from, to) => {
30
+ if (to === TOUCHABLE_STATE.BEGAN) {
31
+ this.setOpacityTo(this.props.activeOpacity, 0);
32
+ } else if (to === TOUCHABLE_STATE.UNDETERMINED || to === TOUCHABLE_STATE.MOVED_OUTSIDE) {
33
+ this.setOpacityTo(this.getChildStyleOpacityWithDefault(), 150);
34
+ }
35
+ };
44
36
  render() {
45
37
  const {
46
38
  style = {},
@@ -49,15 +41,9 @@ export default class TouchableOpacity extends Component {
49
41
  return /*#__PURE__*/React.createElement(GenericTouchable, _extends({}, rest, {
50
42
  style: [style, {
51
43
  opacity: this.opacity // TODO: fix this
52
-
53
44
  }],
54
45
  onStateChange: this.onStateChange
55
46
  }), this.props.children ? this.props.children : /*#__PURE__*/React.createElement(View, null));
56
47
  }
57
-
58
48
  }
59
-
60
- _defineProperty(TouchableOpacity, "defaultProps", { ...GenericTouchable.defaultProps,
61
- activeOpacity: 0.2
62
- });
63
49
  //# sourceMappingURL=TouchableOpacity.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["TouchableOpacity.tsx"],"names":["Animated","Easing","StyleSheet","View","GenericTouchable","TOUCHABLE_STATE","React","Component","TouchableOpacity","childStyle","flatten","props","style","opacity","valueOf","Value","getChildStyleOpacityWithDefault","value","duration","timing","toValue","easing","inOut","quad","useNativeDriver","useNativeAnimations","start","_from","to","BEGAN","setOpacityTo","activeOpacity","UNDETERMINED","MOVED_OUTSIDE","render","rest","onStateChange","children","defaultProps"],"mappings":";;;;AAAA,SACEA,QADF,EAEEC,MAFF,EAGEC,UAHF,EAIEC,IAJF,QAMO,cANP;AAOA,OAAOC,gBAAP,IACEC,eADF,QAGO,oBAHP;AAIA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,SAASC,SAAT,QAA0B,OAA1B;;AAOA;AACA;AACA;AACA,eAAe,MAAMC,gBAAN,SAA+BD,SAA/B,CAAgE;AAAA;AAAA;;AAAA,6DAO3C,MAAM;AACtC,YAAME,UAAU,GAAGP,UAAU,CAACQ,OAAX,CAAmB,KAAKC,KAAL,CAAWC,KAA9B,KAAwC,EAA3D;AACA,aAAOH,UAAU,CAACI,OAAX,IAAsB,IAAtB,GACH,CADG,GAEFJ,UAAU,CAACI,OAAX,CAAmBC,OAAnB,EAFL;AAGD,KAZ4E;;AAAA,qCAcnE,IAAId,QAAQ,CAACe,KAAb,CAAmB,KAAKC,+BAAL,EAAnB,CAdmE;;AAAA,0CAgB9D,CAACC,KAAD,EAAgBC,QAAhB,KAAqC;AAAA;;AAClDlB,MAAAA,QAAQ,CAACmB,MAAT,CAAgB,KAAKN,OAArB,EAA8B;AAC5BO,QAAAA,OAAO,EAAEH,KADmB;AAE5BC,QAAAA,QAAQ,EAAEA,QAFkB;AAG5BG,QAAAA,MAAM,EAAEpB,MAAM,CAACqB,KAAP,CAAarB,MAAM,CAACsB,IAApB,CAHoB;AAI5BC,QAAAA,eAAe,2BAAE,KAAKb,KAAL,CAAWc,mBAAb,yEAAoC;AAJvB,OAA9B,EAKGC,KALH;AAMD,KAvB4E;;AAAA,2CAyB7D,CAACC,KAAD,EAAgBC,EAAhB,KAA+B;AAC7C,UAAIA,EAAE,KAAKvB,eAAe,CAACwB,KAA3B,EAAkC;AAChC,aAAKC,YAAL,CAAkB,KAAKnB,KAAL,CAAWoB,aAA7B,EAA6C,CAA7C;AACD,OAFD,MAEO,IACLH,EAAE,KAAKvB,eAAe,CAAC2B,YAAvB,IACAJ,EAAE,KAAKvB,eAAe,CAAC4B,aAFlB,EAGL;AACA,aAAKH,YAAL,CAAkB,KAAKd,+BAAL,EAAlB,EAA0D,GAA1D;AACD;AACF,KAlC4E;AAAA;;AAoC7EkB,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEtB,MAAAA,KAAK,GAAG,EAAV;AAAc,SAAGuB;AAAjB,QAA0B,KAAKxB,KAArC;AACA,wBACE,oBAAC,gBAAD,eACMwB,IADN;AAEE,MAAA,KAAK,EAAE,CACLvB,KADK,EAEL;AACEC,QAAAA,OAAO,EAAE,KAAKA,OADhB,CAC8C;;AAD9C,OAFK,CAFT;AAQE,MAAA,aAAa,EAAE,KAAKuB;AARtB,QASG,KAAKzB,KAAL,CAAW0B,QAAX,GAAsB,KAAK1B,KAAL,CAAW0B,QAAjC,gBAA4C,oBAAC,IAAD,OAT/C,CADF;AAaD;;AAnD4E;;gBAA1D7B,gB,kBACG,EACpB,GAAGJ,gBAAgB,CAACkC,YADA;AAEpBP,EAAAA,aAAa,EAAE;AAFK,C","sourcesContent":["import {\r\n Animated,\r\n Easing,\r\n StyleSheet,\r\n View,\r\n TouchableOpacityProps as RNTouchableOpacityProps,\r\n} from 'react-native';\r\nimport GenericTouchable, {\r\n TOUCHABLE_STATE,\r\n GenericTouchableProps,\r\n} from './GenericTouchable';\r\nimport * as React from 'react';\r\nimport { Component } from 'react';\r\n\r\nexport type TouchableOpacityProps = RNTouchableOpacityProps &\r\n GenericTouchableProps & {\r\n useNativeAnimations?: boolean;\r\n };\r\n\r\n/**\r\n * TouchableOpacity bases on timing animation which has been used in RN's core\r\n */\r\nexport default class TouchableOpacity extends Component<TouchableOpacityProps> {\r\n static defaultProps = {\r\n ...GenericTouchable.defaultProps,\r\n activeOpacity: 0.2,\r\n };\r\n\r\n // opacity is 1 one by default but could be overwritten\r\n getChildStyleOpacityWithDefault = () => {\r\n const childStyle = StyleSheet.flatten(this.props.style) || {};\r\n return childStyle.opacity == null\r\n ? 1\r\n : (childStyle.opacity.valueOf() as number);\r\n };\r\n\r\n opacity = new Animated.Value(this.getChildStyleOpacityWithDefault());\r\n\r\n setOpacityTo = (value: number, duration: number) => {\r\n Animated.timing(this.opacity, {\r\n toValue: value,\r\n duration: duration,\r\n easing: Easing.inOut(Easing.quad),\r\n useNativeDriver: this.props.useNativeAnimations ?? true,\r\n }).start();\r\n };\r\n\r\n onStateChange = (_from: number, to: number) => {\r\n if (to === TOUCHABLE_STATE.BEGAN) {\r\n this.setOpacityTo(this.props.activeOpacity!, 0);\r\n } else if (\r\n to === TOUCHABLE_STATE.UNDETERMINED ||\r\n to === TOUCHABLE_STATE.MOVED_OUTSIDE\r\n ) {\r\n this.setOpacityTo(this.getChildStyleOpacityWithDefault(), 150);\r\n }\r\n };\r\n\r\n render() {\r\n const { style = {}, ...rest } = this.props;\r\n return (\r\n <GenericTouchable\r\n {...rest}\r\n style={[\r\n style,\r\n {\r\n opacity: this.opacity as unknown as number, // TODO: fix this\r\n },\r\n ]}\r\n onStateChange={this.onStateChange}>\r\n {this.props.children ? this.props.children : <View />}\r\n </GenericTouchable>\r\n );\r\n }\r\n}\r\n"]}
1
+ {"version":3,"names":["Animated","Easing","StyleSheet","View","GenericTouchable","TOUCHABLE_STATE","React","Component","TouchableOpacity","defaultProps","activeOpacity","getChildStyleOpacityWithDefault","childStyle","flatten","props","style","opacity","valueOf","Value","setOpacityTo","value","duration","timing","toValue","easing","inOut","quad","useNativeDriver","useNativeAnimations","start","onStateChange","_from","to","BEGAN","UNDETERMINED","MOVED_OUTSIDE","render","rest","createElement","_extends","children"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/touchables/TouchableOpacity.tsx"],"mappings":";AAAA,SACEA,QAAQ,EACRC,MAAM,EACNC,UAAU,EACVC,IAAI,QAEC,cAAc;AACrB,OAAOC,gBAAgB,IACrBC,eAAe,QAEV,oBAAoB;AAC3B,OAAO,KAAKC,KAAK,MAAM,OAAO;AAC9B,SAASC,SAAS,QAAQ,OAAO;AAOjC;AACA;AACA;AACA,eAAe,MAAMC,gBAAgB,SAASD,SAAS,CAAwB;EAC7E,OAAOE,YAAY,GAAG;IACpB,GAAGL,gBAAgB,CAACK,YAAY;IAChCC,aAAa,EAAE;EACjB,CAAC;;EAED;EACAC,+BAA+B,GAAGA,CAAA,KAAM;IACtC,MAAMC,UAAU,GAAGV,UAAU,CAACW,OAAO,CAAC,IAAI,CAACC,KAAK,CAACC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC7D,OAAOH,UAAU,CAACI,OAAO,IAAI,IAAI,GAC7B,CAAC,GACAJ,UAAU,CAACI,OAAO,CAACC,OAAO,CAAC,CAAY;EAC9C,CAAC;EAEDD,OAAO,GAAG,IAAIhB,QAAQ,CAACkB,KAAK,CAAC,IAAI,CAACP,+BAA+B,CAAC,CAAC,CAAC;EAEpEQ,YAAY,GAAGA,CAACC,KAAa,EAAEC,QAAgB,KAAK;IAClDrB,QAAQ,CAACsB,MAAM,CAAC,IAAI,CAACN,OAAO,EAAE;MAC5BO,OAAO,EAAEH,KAAK;MACdC,QAAQ,EAAEA,QAAQ;MAClBG,MAAM,EAAEvB,MAAM,CAACwB,KAAK,CAACxB,MAAM,CAACyB,IAAI,CAAC;MACjCC,eAAe,EAAE,IAAI,CAACb,KAAK,CAACc,mBAAmB,IAAI;IACrD,CAAC,CAAC,CAACC,KAAK,CAAC,CAAC;EACZ,CAAC;EAEDC,aAAa,GAAGA,CAACC,KAAa,EAAEC,EAAU,KAAK;IAC7C,IAAIA,EAAE,KAAK3B,eAAe,CAAC4B,KAAK,EAAE;MAChC,IAAI,CAACd,YAAY,CAAC,IAAI,CAACL,KAAK,CAACJ,aAAa,EAAG,CAAC,CAAC;IACjD,CAAC,MAAM,IACLsB,EAAE,KAAK3B,eAAe,CAAC6B,YAAY,IACnCF,EAAE,KAAK3B,eAAe,CAAC8B,aAAa,EACpC;MACA,IAAI,CAAChB,YAAY,CAAC,IAAI,CAACR,+BAA+B,CAAC,CAAC,EAAE,GAAG,CAAC;IAChE;EACF,CAAC;EAEDyB,MAAMA,CAAA,EAAG;IACP,MAAM;MAAErB,KAAK,GAAG,CAAC,CAAC;MAAE,GAAGsB;IAAK,CAAC,GAAG,IAAI,CAACvB,KAAK;IAC1C,oBACER,KAAA,CAAAgC,aAAA,CAAClC,gBAAgB,EAAAmC,QAAA,KACXF,IAAI;MACRtB,KAAK,EAAE,CACLA,KAAK,EACL;QACEC,OAAO,EAAE,IAAI,CAACA,OAA4B,CAAE;MAC9C,CAAC,CACD;MACFc,aAAa,EAAE,IAAI,CAACA;IAAc,IAEjC,IAAI,CAAChB,KAAK,CAAC0B,QAAQ,GAAG,IAAI,CAAC1B,KAAK,CAAC0B,QAAQ,gBAAGlC,KAAA,CAAAgC,aAAA,CAACnC,IAAI,MAAE,CACpC,CAAC;EAEvB;AACF"}
@@ -1,5 +1,4 @@
1
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
-
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
3
2
  import * as React from 'react';
4
3
  import GenericTouchable from './GenericTouchable';
5
4
  const TouchableWithoutFeedback = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement(GenericTouchable, _extends({
@@ -1 +1 @@
1
- {"version":3,"sources":["TouchableWithoutFeedback.tsx"],"names":["React","GenericTouchable","TouchableWithoutFeedback","forwardRef","props","ref","defaultProps"],"mappings":";;AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AAEA,OAAOC,gBAAP,MAAwD,oBAAxD;AAIA,MAAMC,wBAAwB,gBAAGF,KAAK,CAACG,UAAN,CAG/B,CAACC,KAAD,EAAQC,GAAR,kBAAgB,oBAAC,gBAAD;AAAkB,EAAA,GAAG,EAAEA;AAAvB,GAAgCD,KAAhC,EAHe,CAAjC;AAKAF,wBAAwB,CAACI,YAAzB,GAAwCL,gBAAgB,CAACK,YAAzD;AAEA,eAAeJ,wBAAf","sourcesContent":["import * as React from 'react';\r\nimport { PropsWithChildren } from 'react';\r\nimport GenericTouchable, { GenericTouchableProps } from './GenericTouchable';\r\n\r\nexport type TouchableWithoutFeedbackProps = GenericTouchableProps;\r\n\r\nconst TouchableWithoutFeedback = React.forwardRef<\r\n GenericTouchable,\r\n PropsWithChildren<TouchableWithoutFeedbackProps>\r\n>((props, ref) => <GenericTouchable ref={ref} {...props} />);\r\n\r\nTouchableWithoutFeedback.defaultProps = GenericTouchable.defaultProps;\r\n\r\nexport default TouchableWithoutFeedback;\r\n"]}
1
+ {"version":3,"names":["React","GenericTouchable","TouchableWithoutFeedback","forwardRef","props","ref","createElement","_extends","defaultProps"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/touchables/TouchableWithoutFeedback.tsx"],"mappings":";AAAA,OAAO,KAAKA,KAAK,MAAM,OAAO;AAE9B,OAAOC,gBAAgB,MAAiC,oBAAoB;AAI5E,MAAMC,wBAAwB,gBAAGF,KAAK,CAACG,UAAU,CAG/C,CAACC,KAAK,EAAEC,GAAG,kBAAKL,KAAA,CAAAM,aAAA,CAACL,gBAAgB,EAAAM,QAAA;EAACF,GAAG,EAAEA;AAAI,GAAKD,KAAK,CAAG,CAAC,CAAC;AAE5DF,wBAAwB,CAACM,YAAY,GAAGP,gBAAgB,CAACO,YAAY;AAErE,eAAeN,wBAAwB"}
@@ -1,5 +1,8 @@
1
- export { default as TouchableNativeFeedback } from './TouchableNativeFeedback';
1
+ // export type { TouchableHighlightProps } from './TouchableHighlight';
2
+
3
+ // export type { TouchableWithoutFeedbackProps } from './TouchableWithoutFeedback';
4
+ // export { default as TouchableNativeFeedback } from './TouchableNativeFeedback';
2
5
  export { default as TouchableWithoutFeedback } from './TouchableWithoutFeedback';
3
6
  export { default as TouchableOpacity } from './TouchableOpacity';
4
- export { default as TouchableHighlight } from './TouchableHighlight';
7
+ // export { default as TouchableHighlight } from './TouchableHighlight';
5
8
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":["default","TouchableNativeFeedback","TouchableWithoutFeedback","TouchableOpacity","TouchableHighlight"],"mappings":"AAGA,SAASA,OAAO,IAAIC,uBAApB,QAAmD,2BAAnD;AACA,SAASD,OAAO,IAAIE,wBAApB,QAAoD,4BAApD;AACA,SAASF,OAAO,IAAIG,gBAApB,QAA4C,oBAA5C;AACA,SAASH,OAAO,IAAII,kBAApB,QAA8C,sBAA9C","sourcesContent":["export type { TouchableHighlightProps } from './TouchableHighlight';\r\nexport type { TouchableOpacityProps } from './TouchableOpacity';\r\nexport type { TouchableWithoutFeedbackProps } from './TouchableWithoutFeedback';\r\nexport { default as TouchableNativeFeedback } from './TouchableNativeFeedback';\r\nexport { default as TouchableWithoutFeedback } from './TouchableWithoutFeedback';\r\nexport { default as TouchableOpacity } from './TouchableOpacity';\r\nexport { default as TouchableHighlight } from './TouchableHighlight';\r\n"]}
1
+ {"version":3,"names":["default","TouchableWithoutFeedback","TouchableOpacity"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/touchables/index.ts"],"mappings":"AAAA;;AAEA;AACA;AACA,SAASA,OAAO,IAAIC,wBAAwB,QAAQ,4BAA4B;AAChF,SAASD,OAAO,IAAIE,gBAAgB,QAAQ,oBAAoB;AAChE"}
@@ -1,5 +1,5 @@
1
1
  import createHandler from './createHandler';
2
- import { baseGestureHandlerProps } from './gestureHandlerCommon';
2
+ import { baseGestureHandlerProps } from 'react-native-gesture-handler/src/handlers/gestureHandlerCommon';
3
3
  export const nativeViewGestureHandlerProps = ['shouldActivateOnStart', 'disallowInterruption'];
4
4
  export const nativeViewProps = [...baseGestureHandlerProps, ...nativeViewGestureHandlerProps];
5
5
  export const nativeViewHandlerName = 'NativeViewGestureHandler';
@@ -1 +1 @@
1
- {"version":3,"sources":["NativeViewGestureHandler.ts"],"names":["createHandler","baseGestureHandlerProps","nativeViewGestureHandlerProps","nativeViewProps","nativeViewHandlerName","NativeViewGestureHandler","name","allowedProps","config"],"mappings":"AAAA,OAAOA,aAAP,MAA0B,iBAA1B;AACA,SAEEC,uBAFF,QAGO,wBAHP;AAKA,OAAO,MAAMC,6BAA6B,GAAG,CAC3C,uBAD2C,EAE3C,sBAF2C,CAAtC;AAgCP,OAAO,MAAMC,eAAe,GAAG,CAC7B,GAAGF,uBAD0B,EAE7B,GAAGC,6BAF0B,CAAxB;AAKP,OAAO,MAAME,qBAAqB,GAAG,0BAA9B;AAGP;AACA,OAAO,MAAMC,wBAAwB,GAAGL,aAAa,CAGnD;AACAM,EAAAA,IAAI,EAAEF,qBADN;AAEAG,EAAAA,YAAY,EAAEJ,eAFd;AAGAK,EAAAA,MAAM,EAAE;AAHR,CAHmD,CAA9C","sourcesContent":["import createHandler from './createHandler';\r\nimport {\r\n BaseGestureHandlerProps,\r\n baseGestureHandlerProps,\r\n} from './gestureHandlerCommon';\r\n\r\nexport const nativeViewGestureHandlerProps = [\r\n 'shouldActivateOnStart',\r\n 'disallowInterruption',\r\n] as const;\r\n\r\nexport interface NativeViewGestureConfig {\r\n /**\r\n * Android only.\r\n *\r\n * Determines whether the handler should check for an existing touch event on\r\n * instantiation.\r\n */\r\n shouldActivateOnStart?: boolean;\r\n\r\n /**\r\n * When `true`, cancels all other gesture handlers when this\r\n * `NativeViewGestureHandler` receives an `ACTIVE` state event.\r\n */\r\n disallowInterruption?: boolean;\r\n}\r\n\r\nexport interface NativeViewGestureHandlerProps\r\n extends BaseGestureHandlerProps<NativeViewGestureHandlerPayload>,\r\n NativeViewGestureConfig {}\r\n\r\nexport type NativeViewGestureHandlerPayload = {\r\n /**\r\n * True if gesture was performed inside of containing view, false otherwise.\r\n */\r\n pointerInside: boolean;\r\n};\r\n\r\nexport const nativeViewProps = [\r\n ...baseGestureHandlerProps,\r\n ...nativeViewGestureHandlerProps,\r\n] as const;\r\n\r\nexport const nativeViewHandlerName = 'NativeViewGestureHandler';\r\n\r\nexport type NativeViewGestureHandler = typeof NativeViewGestureHandler;\r\n// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file\r\nexport const NativeViewGestureHandler = createHandler<\r\n NativeViewGestureHandlerProps,\r\n NativeViewGestureHandlerPayload\r\n>({\r\n name: nativeViewHandlerName,\r\n allowedProps: nativeViewProps,\r\n config: {},\r\n});\r\n"]}
1
+ {"version":3,"names":["createHandler","baseGestureHandlerProps","nativeViewGestureHandlerProps","nativeViewProps","nativeViewHandlerName","NativeViewGestureHandler","name","allowedProps","config"],"sourceRoot":"..\\..\\..\\src","sources":["handlers/NativeViewGestureHandler.ts"],"mappings":"AAAA,OAAOA,aAAa,MAAM,iBAAiB;AAC3C,SAEEC,uBAAuB,QAClB,gEAAgE;AAEvE,OAAO,MAAMC,6BAA6B,GAAG,CAC3C,uBAAuB,EACvB,sBAAsB,CACd;AA6BV,OAAO,MAAMC,eAAe,GAAG,CAC7B,GAAGF,uBAAuB,EAC1B,GAAGC,6BAA6B,CACxB;AAEV,OAAO,MAAME,qBAAqB,GAAG,0BAA0B;AAG/D;AACA,OAAO,MAAMC,wBAAwB,GAAGL,aAAa,CAGnD;EACAM,IAAI,EAAEF,qBAAqB;EAC3BG,YAAY,EAAEJ,eAAe;EAC7BK,MAAM,EAAE,CAAC;AACX,CAAC,CAAC"}