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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +0,0 @@
1
- {"version":3,"sources":["Swipeable.tsx"],"names":["React","Component","Animated","StyleSheet","View","I18nManager","PanGestureHandler","TapGestureHandler","State","DRAG_TOSS","Swipeable","constructor","props","state","friction","overshootFriction","dragX","rowTranslation","leftWidth","rowWidth","rightOffset","rightWidth","Math","max","overshootLeft","overshootRight","transX","add","interpolate","inputRange","outputRange","showLeftAction","Value","leftActionTranslate","Number","MIN_VALUE","extrapolate","showRightAction","rightActionTranslate","nativeEvent","oldState","ACTIVE","close","ev","handleRelease","velocityX","translationX","rowState","direction","onSwipeableOpenStartDrag","onSwipeableCloseStartDrag","leftThreshold","rightThreshold","startOffsetX","currentOffset","toValue","animateRow","fromValue","setValue","setState","sign","spring","restSpeedThreshold","restDisplacementThreshold","velocity","bounciness","useNativeDriver","useNativeAnimations","animationOptions","start","finished","onSwipeableLeftOpen","onSwipeableOpen","onSwipeableRightOpen","closingDirection","onSwipeableClose","onSwipeableLeftWillOpen","onSwipeableWillOpen","onSwipeableRightWillOpen","onSwipeableWillClose","layout","width","undefined","updateAnimatedEvent","onGestureEvent","event","shouldComponentUpdate","render","children","renderLeftActions","renderRightActions","dragOffsetFromLeftEdge","dragOffsetFromRightEdge","left","styles","leftActions","transform","translateX","x","right","rightActions","onHandlerStateChange","onRowLayout","container","containerStyle","onTapHandlerStateChange","childrenContainerStyle","create","overflow","absoluteFillObject","flexDirection","isRTL"],"mappings":"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","sourcesContent":["// Similarily to the DrawerLayout component this deserves to be put in a\r\n// separate repo. Although, keeping it here for the time being will allow us to\r\n// move faster and fix possible issues quicker\r\n\r\nimport * as React from 'react';\r\nimport { Component } from 'react';\r\nimport {\r\n Animated,\r\n StyleSheet,\r\n View,\r\n I18nManager,\r\n LayoutChangeEvent,\r\n StyleProp,\r\n ViewStyle,\r\n} from 'react-native';\r\n\r\nimport {\r\n GestureEvent,\r\n HandlerStateChangeEvent,\r\n} from '../handlers/gestureHandlerCommon';\r\nimport {\r\n PanGestureHandler,\r\n PanGestureHandlerEventPayload,\r\n PanGestureHandlerProps,\r\n} from '../handlers/PanGestureHandler';\r\nimport {\r\n TapGestureHandler,\r\n TapGestureHandlerEventPayload,\r\n} from '../handlers/TapGestureHandler';\r\nimport { State } from '../State';\r\n\r\nconst DRAG_TOSS = 0.05;\r\n\r\ntype SwipeableExcludes = Exclude<\r\n keyof PanGestureHandlerProps,\r\n 'onGestureEvent' | 'onHandlerStateChange'\r\n>;\r\n\r\n// Animated.AnimatedInterpolation has been converted to a generic type\r\n// in @types/react-native 0.70. This way we can maintain compatibility\r\n// with all versions of @types/react-native\r\ntype AnimatedInterpolation = ReturnType<Animated.Value['interpolate']>;\r\n\r\nexport interface SwipeableProps\r\n extends Pick<PanGestureHandlerProps, SwipeableExcludes> {\r\n /**\r\n * Enables two-finger gestures on supported devices, for example iPads with\r\n * trackpads. If not enabled the gesture will require click + drag, with\r\n * `enableTrackpadTwoFingerGesture` swiping with two fingers will also trigger\r\n * the gesture.\r\n */\r\n enableTrackpadTwoFingerGesture?: boolean;\r\n\r\n /**\r\n * Specifies how much the visual interaction will be delayed compared to the\r\n * gesture distance. e.g. value of 1 will indicate that the swipeable panel\r\n * should exactly follow the gesture, 2 means it is going to be two times\r\n * \"slower\".\r\n */\r\n friction?: number;\r\n\r\n /**\r\n * Distance from the left edge at which released panel will animate to the\r\n * open state (or the open panel will animate into the closed state). By\r\n * default it's a half of the panel's width.\r\n */\r\n leftThreshold?: number;\r\n\r\n /**\r\n * Distance from the right edge at which released panel will animate to the\r\n * open state (or the open panel will animate into the closed state). By\r\n * default it's a half of the panel's width.\r\n */\r\n rightThreshold?: number;\r\n\r\n /**\r\n * Distance that the panel must be dragged from the left edge to be considered\r\n * a swipe. The default value is 10.\r\n */\r\n dragOffsetFromLeftEdge?: number;\r\n\r\n /**\r\n * Distance that the panel must be dragged from the right edge to be considered\r\n * a swipe. The default value is 10.\r\n */\r\n dragOffsetFromRightEdge?: number;\r\n\r\n /**\r\n * Value indicating if the swipeable panel can be pulled further than the left\r\n * actions panel's width. It is set to true by default as long as the left\r\n * panel render method is present.\r\n */\r\n overshootLeft?: boolean;\r\n\r\n /**\r\n * Value indicating if the swipeable panel can be pulled further than the\r\n * right actions panel's width. It is set to true by default as long as the\r\n * right panel render method is present.\r\n */\r\n overshootRight?: boolean;\r\n\r\n /**\r\n * Specifies how much the visual interaction will be delayed compared to the\r\n * gesture distance at overshoot. Default value is 1, it mean no friction, for\r\n * a native feel, try 8 or above.\r\n */\r\n overshootFriction?: number;\r\n\r\n /**\r\n * @deprecated Use `direction` argument of onSwipeableOpen()\r\n *\r\n * Called when left action panel gets open.\r\n */\r\n onSwipeableLeftOpen?: () => void;\r\n\r\n /**\r\n * @deprecated Use `direction` argument of onSwipeableOpen()\r\n *\r\n * Called when right action panel gets open.\r\n */\r\n onSwipeableRightOpen?: () => void;\r\n\r\n /**\r\n * Called when action panel gets open (either right or left).\r\n */\r\n onSwipeableOpen?: (direction: 'left' | 'right', swipeable: Swipeable) => void;\r\n\r\n /**\r\n * Called when action panel is closed.\r\n */\r\n onSwipeableClose?: (\r\n direction: 'left' | 'right',\r\n swipeable: Swipeable\r\n ) => void;\r\n\r\n /**\r\n * @deprecated Use `direction` argument of onSwipeableWillOpen()\r\n *\r\n * Called when left action panel starts animating on open.\r\n */\r\n onSwipeableLeftWillOpen?: () => void;\r\n\r\n /**\r\n * @deprecated Use `direction` argument of onSwipeableWillOpen()\r\n *\r\n * Called when right action panel starts animating on open.\r\n */\r\n onSwipeableRightWillOpen?: () => void;\r\n\r\n /**\r\n * Called when action panel starts animating on open (either right or left).\r\n */\r\n onSwipeableWillOpen?: (direction: 'left' | 'right') => void;\r\n\r\n /**\r\n * Called when action panel starts animating on close.\r\n */\r\n onSwipeableWillClose?: (direction: 'left' | 'right') => void;\r\n\r\n /**\r\n * Called when action panel starts being shown on dragging to open.\r\n */\r\n onSwipeableOpenStartDrag?: (direction: 'left' | 'right') => void;\r\n\r\n /**\r\n * Called when action panel starts being shown on dragging to close.\r\n */\r\n onSwipeableCloseStartDrag?: (direction: 'left' | 'right') => void;\r\n\r\n /**\r\n *\r\n * This map describes the values to use as inputRange for extra interpolation:\r\n * AnimatedValue: [startValue, endValue]\r\n *\r\n * progressAnimatedValue: [0, 1] dragAnimatedValue: [0, +]\r\n *\r\n * To support `rtl` flexbox layouts use `flexDirection` styling.\r\n * */\r\n renderLeftActions?: (\r\n progressAnimatedValue: AnimatedInterpolation,\r\n dragAnimatedValue: AnimatedInterpolation,\r\n swipeable: Swipeable\r\n ) => React.ReactNode;\r\n /**\r\n *\r\n * This map describes the values to use as inputRange for extra interpolation:\r\n * AnimatedValue: [startValue, endValue]\r\n *\r\n * progressAnimatedValue: [0, 1] dragAnimatedValue: [0, -]\r\n *\r\n * To support `rtl` flexbox layouts use `flexDirection` styling.\r\n * */\r\n renderRightActions?: (\r\n progressAnimatedValue: AnimatedInterpolation,\r\n dragAnimatedValue: AnimatedInterpolation,\r\n swipeable: Swipeable\r\n ) => React.ReactNode;\r\n\r\n useNativeAnimations?: boolean;\r\n\r\n animationOptions?: Record<string, unknown>;\r\n\r\n /**\r\n * Style object for the container (`Animated.View`), for example to override\r\n * `overflow: 'hidden'`.\r\n */\r\n containerStyle?: StyleProp<ViewStyle>;\r\n\r\n /**\r\n * Style object for the children container (`Animated.View`), for example to\r\n * apply `flex: 1`\r\n */\r\n childrenContainerStyle?: StyleProp<ViewStyle>;\r\n}\r\n\r\ntype SwipeableState = {\r\n dragX: Animated.Value;\r\n rowTranslation: Animated.Value;\r\n rowState: number;\r\n leftWidth?: number;\r\n rightOffset?: number;\r\n rowWidth?: number;\r\n};\r\n\r\nexport default class Swipeable extends Component<\r\n SwipeableProps,\r\n SwipeableState\r\n> {\r\n static defaultProps = {\r\n friction: 1,\r\n overshootFriction: 1,\r\n useNativeAnimations: true,\r\n };\r\n\r\n constructor(props: SwipeableProps) {\r\n super(props);\r\n const dragX = new Animated.Value(0);\r\n this.state = {\r\n dragX,\r\n rowTranslation: new Animated.Value(0),\r\n rowState: 0,\r\n leftWidth: undefined,\r\n rightOffset: undefined,\r\n rowWidth: undefined,\r\n };\r\n this.updateAnimatedEvent(props, this.state);\r\n\r\n this.onGestureEvent = Animated.event(\r\n [{ nativeEvent: { translationX: dragX } }],\r\n { useNativeDriver: props.useNativeAnimations! }\r\n );\r\n }\r\n\r\n shouldComponentUpdate(props: SwipeableProps, state: SwipeableState) {\r\n if (\r\n this.props.friction !== props.friction ||\r\n this.props.overshootLeft !== props.overshootLeft ||\r\n this.props.overshootRight !== props.overshootRight ||\r\n this.props.overshootFriction !== props.overshootFriction ||\r\n this.state.leftWidth !== state.leftWidth ||\r\n this.state.rightOffset !== state.rightOffset ||\r\n this.state.rowWidth !== state.rowWidth\r\n ) {\r\n this.updateAnimatedEvent(props, state);\r\n }\r\n\r\n return true;\r\n }\r\n\r\n private onGestureEvent?: (\r\n event: GestureEvent<PanGestureHandlerEventPayload>\r\n ) => void;\r\n private transX?: AnimatedInterpolation;\r\n private showLeftAction?: AnimatedInterpolation | Animated.Value;\r\n private leftActionTranslate?: AnimatedInterpolation;\r\n private showRightAction?: AnimatedInterpolation | Animated.Value;\r\n private rightActionTranslate?: AnimatedInterpolation;\r\n\r\n private updateAnimatedEvent = (\r\n props: SwipeableProps,\r\n state: SwipeableState\r\n ) => {\r\n const { friction, overshootFriction } = props;\r\n const { dragX, rowTranslation, leftWidth = 0, rowWidth = 0 } = state;\r\n const { rightOffset = rowWidth } = state;\r\n const rightWidth = Math.max(0, rowWidth - rightOffset);\r\n\r\n const { overshootLeft = leftWidth > 0, overshootRight = rightWidth > 0 } =\r\n props;\r\n\r\n const transX = Animated.add(\r\n rowTranslation,\r\n dragX.interpolate({\r\n inputRange: [0, friction!],\r\n outputRange: [0, 1],\r\n })\r\n ).interpolate({\r\n inputRange: [-rightWidth - 1, -rightWidth, leftWidth, leftWidth + 1],\r\n outputRange: [\r\n -rightWidth - (overshootRight ? 1 / overshootFriction! : 0),\r\n -rightWidth,\r\n leftWidth,\r\n leftWidth + (overshootLeft ? 1 / overshootFriction! : 0),\r\n ],\r\n });\r\n this.transX = transX;\r\n this.showLeftAction =\r\n leftWidth > 0\r\n ? transX.interpolate({\r\n inputRange: [-1, 0, leftWidth],\r\n outputRange: [0, 0, 1],\r\n })\r\n : new Animated.Value(0);\r\n this.leftActionTranslate = this.showLeftAction.interpolate({\r\n inputRange: [0, Number.MIN_VALUE],\r\n outputRange: [-10000, 0],\r\n extrapolate: 'clamp',\r\n });\r\n this.showRightAction =\r\n rightWidth > 0\r\n ? transX.interpolate({\r\n inputRange: [-rightWidth, 0, 1],\r\n outputRange: [1, 0, 0],\r\n })\r\n : new Animated.Value(0);\r\n this.rightActionTranslate = this.showRightAction.interpolate({\r\n inputRange: [0, Number.MIN_VALUE],\r\n outputRange: [-10000, 0],\r\n extrapolate: 'clamp',\r\n });\r\n };\r\n\r\n private onTapHandlerStateChange = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<TapGestureHandlerEventPayload>) => {\r\n if (nativeEvent.oldState === State.ACTIVE) {\r\n this.close();\r\n }\r\n };\r\n\r\n private onHandlerStateChange = (\r\n ev: HandlerStateChangeEvent<PanGestureHandlerEventPayload>\r\n ) => {\r\n if (ev.nativeEvent.oldState === State.ACTIVE) {\r\n this.handleRelease(ev);\r\n }\r\n\r\n if (ev.nativeEvent.state === State.ACTIVE) {\r\n const { velocityX, translationX: dragX } = ev.nativeEvent;\r\n const { rowState } = this.state;\r\n const { friction } = this.props;\r\n\r\n const translationX = (dragX + DRAG_TOSS * velocityX) / friction!;\r\n\r\n const direction =\r\n rowState === -1\r\n ? 'right'\r\n : rowState === 1\r\n ? 'left'\r\n : translationX > 0\r\n ? 'left'\r\n : 'right';\r\n\r\n if (rowState === 0) {\r\n this.props.onSwipeableOpenStartDrag?.(direction);\r\n } else {\r\n this.props.onSwipeableCloseStartDrag?.(direction);\r\n }\r\n }\r\n };\r\n\r\n private handleRelease = (\r\n ev: HandlerStateChangeEvent<PanGestureHandlerEventPayload>\r\n ) => {\r\n const { velocityX, translationX: dragX } = ev.nativeEvent;\r\n const { leftWidth = 0, rowWidth = 0, rowState } = this.state;\r\n const { rightOffset = rowWidth } = this.state;\r\n const rightWidth = rowWidth - rightOffset;\r\n const {\r\n friction,\r\n leftThreshold = leftWidth / 2,\r\n rightThreshold = rightWidth / 2,\r\n } = this.props;\r\n\r\n const startOffsetX = this.currentOffset() + dragX / friction!;\r\n const translationX = (dragX + DRAG_TOSS * velocityX) / friction!;\r\n\r\n let toValue = 0;\r\n if (rowState === 0) {\r\n if (translationX > leftThreshold) {\r\n toValue = leftWidth;\r\n } else if (translationX < -rightThreshold) {\r\n toValue = -rightWidth;\r\n }\r\n } else if (rowState === 1) {\r\n // swiped to left\r\n if (translationX > -leftThreshold) {\r\n toValue = leftWidth;\r\n }\r\n } else {\r\n // swiped to right\r\n if (translationX < rightThreshold) {\r\n toValue = -rightWidth;\r\n }\r\n }\r\n\r\n this.animateRow(startOffsetX, toValue, velocityX / friction!);\r\n };\r\n\r\n private animateRow = (\r\n fromValue: number,\r\n toValue: number,\r\n velocityX?:\r\n | number\r\n | {\r\n x: number;\r\n y: number;\r\n }\r\n ) => {\r\n const { dragX, rowTranslation } = this.state;\r\n dragX.setValue(0);\r\n rowTranslation.setValue(fromValue);\r\n\r\n this.setState({ rowState: Math.sign(toValue) });\r\n Animated.spring(rowTranslation, {\r\n restSpeedThreshold: 1.7,\r\n restDisplacementThreshold: 0.4,\r\n velocity: velocityX,\r\n bounciness: 0,\r\n toValue,\r\n useNativeDriver: this.props.useNativeAnimations!,\r\n ...this.props.animationOptions,\r\n }).start(({ finished }) => {\r\n if (finished) {\r\n if (toValue > 0) {\r\n this.props.onSwipeableLeftOpen?.();\r\n this.props.onSwipeableOpen?.('left', this);\r\n } else if (toValue < 0) {\r\n this.props.onSwipeableRightOpen?.();\r\n this.props.onSwipeableOpen?.('right', this);\r\n } else {\r\n const closingDirection = fromValue > 0 ? 'left' : 'right';\r\n this.props.onSwipeableClose?.(closingDirection, this);\r\n }\r\n }\r\n });\r\n if (toValue > 0) {\r\n this.props.onSwipeableLeftWillOpen?.();\r\n this.props.onSwipeableWillOpen?.('left');\r\n } else if (toValue < 0) {\r\n this.props.onSwipeableRightWillOpen?.();\r\n this.props.onSwipeableWillOpen?.('right');\r\n } else {\r\n const closingDirection = fromValue > 0 ? 'left' : 'right';\r\n this.props.onSwipeableWillClose?.(closingDirection);\r\n }\r\n };\r\n\r\n private onRowLayout = ({ nativeEvent }: LayoutChangeEvent) => {\r\n this.setState({ rowWidth: nativeEvent.layout.width });\r\n };\r\n\r\n private currentOffset = () => {\r\n const { leftWidth = 0, rowWidth = 0, rowState } = this.state;\r\n const { rightOffset = rowWidth } = this.state;\r\n const rightWidth = rowWidth - rightOffset;\r\n if (rowState === 1) {\r\n return leftWidth;\r\n } else if (rowState === -1) {\r\n return -rightWidth;\r\n }\r\n return 0;\r\n };\r\n\r\n close = () => {\r\n this.animateRow(this.currentOffset(), 0);\r\n };\r\n\r\n openLeft = () => {\r\n const { leftWidth = 0 } = this.state;\r\n this.animateRow(this.currentOffset(), leftWidth);\r\n };\r\n\r\n openRight = () => {\r\n const { rowWidth = 0 } = this.state;\r\n const { rightOffset = rowWidth } = this.state;\r\n const rightWidth = rowWidth - rightOffset;\r\n this.animateRow(this.currentOffset(), -rightWidth);\r\n };\r\n\r\n reset = () => {\r\n const { dragX, rowTranslation } = this.state;\r\n dragX.setValue(0);\r\n rowTranslation.setValue(0);\r\n this.setState({ rowState: 0 });\r\n };\r\n\r\n render() {\r\n const { rowState } = this.state;\r\n const {\r\n children,\r\n renderLeftActions,\r\n renderRightActions,\r\n dragOffsetFromLeftEdge = 10,\r\n dragOffsetFromRightEdge = 10,\r\n } = this.props;\r\n\r\n const left = renderLeftActions && (\r\n <Animated.View\r\n style={[\r\n styles.leftActions,\r\n // all those and below parameters can have ! since they are all\r\n // asigned in constructor in `updateAnimatedEvent` but TS cannot spot\r\n // it for some reason\r\n { transform: [{ translateX: this.leftActionTranslate! }] },\r\n ]}>\r\n {renderLeftActions(this.showLeftAction!, this.transX!, this)}\r\n <View\r\n onLayout={({ nativeEvent }) =>\r\n this.setState({ leftWidth: nativeEvent.layout.x })\r\n }\r\n />\r\n </Animated.View>\r\n );\r\n\r\n const right = renderRightActions && (\r\n <Animated.View\r\n style={[\r\n styles.rightActions,\r\n { transform: [{ translateX: this.rightActionTranslate! }] },\r\n ]}>\r\n {renderRightActions(this.showRightAction!, this.transX!, this)}\r\n <View\r\n onLayout={({ nativeEvent }) =>\r\n this.setState({ rightOffset: nativeEvent.layout.x })\r\n }\r\n />\r\n </Animated.View>\r\n );\r\n\r\n return (\r\n <PanGestureHandler\r\n activeOffsetX={[-dragOffsetFromRightEdge, dragOffsetFromLeftEdge]}\r\n {...this.props}\r\n onGestureEvent={this.onGestureEvent}\r\n onHandlerStateChange={this.onHandlerStateChange}>\r\n <Animated.View\r\n onLayout={this.onRowLayout}\r\n style={[styles.container, this.props.containerStyle]}>\r\n {left}\r\n {right}\r\n <TapGestureHandler\r\n enabled={rowState !== 0}\r\n onHandlerStateChange={this.onTapHandlerStateChange}>\r\n <Animated.View\r\n pointerEvents={rowState === 0 ? 'auto' : 'box-only'}\r\n style={[\r\n {\r\n transform: [{ translateX: this.transX! }],\r\n },\r\n this.props.childrenContainerStyle,\r\n ]}>\r\n {children}\r\n </Animated.View>\r\n </TapGestureHandler>\r\n </Animated.View>\r\n </PanGestureHandler>\r\n );\r\n }\r\n}\r\n\r\nconst styles = StyleSheet.create({\r\n container: {\r\n overflow: 'hidden',\r\n },\r\n leftActions: {\r\n ...StyleSheet.absoluteFillObject,\r\n flexDirection: I18nManager.isRTL ? 'row-reverse' : 'row',\r\n },\r\n rightActions: {\r\n ...StyleSheet.absoluteFillObject,\r\n flexDirection: I18nManager.isRTL ? 'row' : 'row-reverse',\r\n },\r\n});\r\n"]}
@@ -1,22 +0,0 @@
1
- import * as React from 'react';
2
- import { StyleSheet } from 'react-native';
3
- import hoistNonReactStatics from 'hoist-non-react-statics';
4
- import GestureHandlerRootView from './GestureHandlerRootView';
5
- export default function gestureHandlerRootHOC(Component, containerStyles) {
6
- function Wrapper(props) {
7
- return /*#__PURE__*/React.createElement(GestureHandlerRootView, {
8
- style: [styles.container, containerStyles]
9
- }, /*#__PURE__*/React.createElement(Component, props));
10
- }
11
-
12
- Wrapper.displayName = `gestureHandlerRootHOC(${Component.displayName || Component.name})`; // @ts-ignore - hoistNonReactStatics uses old version of @types/react
13
-
14
- hoistNonReactStatics(Wrapper, Component);
15
- return Wrapper;
16
- }
17
- const styles = StyleSheet.create({
18
- container: {
19
- flex: 1
20
- }
21
- });
22
- //# sourceMappingURL=gestureHandlerRootHOC.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["gestureHandlerRootHOC.tsx"],"names":["React","StyleSheet","hoistNonReactStatics","GestureHandlerRootView","gestureHandlerRootHOC","Component","containerStyles","Wrapper","props","styles","container","displayName","name","create","flex"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SAASC,UAAT,QAAiD,cAAjD;AACA,OAAOC,oBAAP,MAAiC,yBAAjC;AACA,OAAOC,sBAAP,MAAmC,0BAAnC;AAEA,eAAe,SAASC,qBAAT,CAGbC,SAHa,EAIbC,eAJa,EAKW;AACxB,WAASC,OAAT,CAAiBC,KAAjB,EAA2B;AACzB,wBACE,oBAAC,sBAAD;AAAwB,MAAA,KAAK,EAAE,CAACC,MAAM,CAACC,SAAR,EAAmBJ,eAAnB;AAA/B,oBACE,oBAAC,SAAD,EAAeE,KAAf,CADF,CADF;AAKD;;AAEDD,EAAAA,OAAO,CAACI,WAAR,GAAuB,yBACrBN,SAAS,CAACM,WAAV,IAAyBN,SAAS,CAACO,IACpC,GAFD,CATwB,CAaxB;;AACAV,EAAAA,oBAAoB,CAACK,OAAD,EAAUF,SAAV,CAApB;AAEA,SAAOE,OAAP;AACD;AAED,MAAME,MAAM,GAAGR,UAAU,CAACY,MAAX,CAAkB;AAC/BH,EAAAA,SAAS,EAAE;AAAEI,IAAAA,IAAI,EAAE;AAAR;AADoB,CAAlB,CAAf","sourcesContent":["import * as React from 'react';\r\nimport { StyleSheet, StyleProp, ViewStyle } from 'react-native';\r\nimport hoistNonReactStatics from 'hoist-non-react-statics';\r\nimport GestureHandlerRootView from './GestureHandlerRootView';\r\n\r\nexport default function gestureHandlerRootHOC<\r\n P extends Record<string, unknown>\r\n>(\r\n Component: React.ComponentType<P>,\r\n containerStyles?: StyleProp<ViewStyle>\r\n): React.ComponentType<P> {\r\n function Wrapper(props: P) {\r\n return (\r\n <GestureHandlerRootView style={[styles.container, containerStyles]}>\r\n <Component {...props} />\r\n </GestureHandlerRootView>\r\n );\r\n }\r\n\r\n Wrapper.displayName = `gestureHandlerRootHOC(${\r\n Component.displayName || Component.name\r\n })`;\r\n\r\n // @ts-ignore - hoistNonReactStatics uses old version of @types/react\r\n hoistNonReactStatics(Wrapper, Component);\r\n\r\n return Wrapper;\r\n}\r\n\r\nconst styles = StyleSheet.create({\r\n container: { flex: 1 },\r\n});\r\n"]}
@@ -1,95 +0,0 @@
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
-
5
- import * as React from 'react';
6
- import { Component } from 'react';
7
- import GenericTouchable, { TOUCHABLE_STATE } from './GenericTouchable';
8
- import { StyleSheet, View } from 'react-native';
9
-
10
- /**
11
- * TouchableHighlight follows RN's implementation
12
- */
13
- export default class TouchableHighlight extends Component {
14
- constructor(props) {
15
- super(props);
16
-
17
- _defineProperty(this, "showUnderlay", () => {
18
- var _this$props$onShowUnd, _this$props;
19
-
20
- if (!this.hasPressHandler()) {
21
- return;
22
- }
23
-
24
- this.setState({
25
- extraChildStyle: {
26
- opacity: this.props.activeOpacity
27
- },
28
- extraUnderlayStyle: {
29
- backgroundColor: this.props.underlayColor
30
- }
31
- });
32
- (_this$props$onShowUnd = (_this$props = this.props).onShowUnderlay) === null || _this$props$onShowUnd === void 0 ? void 0 : _this$props$onShowUnd.call(_this$props);
33
- });
34
-
35
- _defineProperty(this, "hasPressHandler", () => this.props.onPress || this.props.onPressIn || this.props.onPressOut || this.props.onLongPress);
36
-
37
- _defineProperty(this, "hideUnderlay", () => {
38
- var _this$props$onHideUnd, _this$props2;
39
-
40
- this.setState({
41
- extraChildStyle: null,
42
- extraUnderlayStyle: null
43
- });
44
- (_this$props$onHideUnd = (_this$props2 = this.props).onHideUnderlay) === null || _this$props$onHideUnd === void 0 ? void 0 : _this$props$onHideUnd.call(_this$props2);
45
- });
46
-
47
- _defineProperty(this, "onStateChange", (_from, to) => {
48
- if (to === TOUCHABLE_STATE.BEGAN) {
49
- this.showUnderlay();
50
- } else if (to === TOUCHABLE_STATE.UNDETERMINED || to === TOUCHABLE_STATE.MOVED_OUTSIDE) {
51
- this.hideUnderlay();
52
- }
53
- });
54
-
55
- this.state = {
56
- extraChildStyle: null,
57
- extraUnderlayStyle: null
58
- };
59
- } // Copied from RN
60
-
61
-
62
- renderChildren() {
63
- if (!this.props.children) {
64
- return /*#__PURE__*/React.createElement(View, null);
65
- }
66
-
67
- const child = React.Children.only(this.props.children); // TODO: not sure if OK but fixes error
68
-
69
- return /*#__PURE__*/React.cloneElement(child, {
70
- style: StyleSheet.compose(child.props.style, this.state.extraChildStyle)
71
- });
72
- }
73
-
74
- render() {
75
- const {
76
- style = {},
77
- ...rest
78
- } = this.props;
79
- const {
80
- extraUnderlayStyle
81
- } = this.state;
82
- return /*#__PURE__*/React.createElement(GenericTouchable, _extends({}, rest, {
83
- style: [style, extraUnderlayStyle],
84
- onStateChange: this.onStateChange
85
- }), this.renderChildren());
86
- }
87
-
88
- }
89
-
90
- _defineProperty(TouchableHighlight, "defaultProps", { ...GenericTouchable.defaultProps,
91
- activeOpacity: 0.85,
92
- delayPressOut: 100,
93
- underlayColor: 'black'
94
- });
95
- //# sourceMappingURL=TouchableHighlight.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["TouchableHighlight.tsx"],"names":["React","Component","GenericTouchable","TOUCHABLE_STATE","StyleSheet","View","TouchableHighlight","constructor","props","hasPressHandler","setState","extraChildStyle","opacity","activeOpacity","extraUnderlayStyle","backgroundColor","underlayColor","onShowUnderlay","onPress","onPressIn","onPressOut","onLongPress","onHideUnderlay","_from","to","BEGAN","showUnderlay","UNDETERMINED","MOVED_OUTSIDE","hideUnderlay","state","renderChildren","children","child","Children","only","cloneElement","style","compose","render","rest","onStateChange","defaultProps","delayPressOut"],"mappings":";;;;AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SAASC,SAAT,QAA0B,OAA1B;AACA,OAAOC,gBAAP,IAEEC,eAFF,QAGO,oBAHP;AAIA,SACEC,UADF,EAEEC,IAFF,QAMO,cANP;;AAoBA;AACA;AACA;AACA,eAAe,MAAMC,kBAAN,SAAiCL,SAAjC,CAGb;AAQAM,EAAAA,WAAW,CAACC,KAAD,EAAiC;AAC1C,UAAMA,KAAN;;AAD0C,0CAS7B,MAAM;AAAA;;AACnB,UAAI,CAAC,KAAKC,eAAL,EAAL,EAA6B;AAC3B;AACD;;AACD,WAAKC,QAAL,CAAc;AACZC,QAAAA,eAAe,EAAE;AACfC,UAAAA,OAAO,EAAE,KAAKJ,KAAL,CAAWK;AADL,SADL;AAIZC,QAAAA,kBAAkB,EAAE;AAClBC,UAAAA,eAAe,EAAE,KAAKP,KAAL,CAAWQ;AADV;AAJR,OAAd;AAQA,mDAAKR,KAAL,EAAWS,cAAX;AACD,KAtB2C;;AAAA,6CAwB1B,MAChB,KAAKT,KAAL,CAAWU,OAAX,IACA,KAAKV,KAAL,CAAWW,SADX,IAEA,KAAKX,KAAL,CAAWY,UAFX,IAGA,KAAKZ,KAAL,CAAWa,WA5B+B;;AAAA,0CA8B7B,MAAM;AAAA;;AACnB,WAAKX,QAAL,CAAc;AACZC,QAAAA,eAAe,EAAE,IADL;AAEZG,QAAAA,kBAAkB,EAAE;AAFR,OAAd;AAIA,oDAAKN,KAAL,EAAWc,cAAX;AACD,KApC2C;;AAAA,2CAmD5B,CAACC,KAAD,EAAgBC,EAAhB,KAA+B;AAC7C,UAAIA,EAAE,KAAKrB,eAAe,CAACsB,KAA3B,EAAkC;AAChC,aAAKC,YAAL;AACD,OAFD,MAEO,IACLF,EAAE,KAAKrB,eAAe,CAACwB,YAAvB,IACAH,EAAE,KAAKrB,eAAe,CAACyB,aAFlB,EAGL;AACA,aAAKC,YAAL;AACD;AACF,KA5D2C;;AAE1C,SAAKC,KAAL,GAAa;AACXnB,MAAAA,eAAe,EAAE,IADN;AAEXG,MAAAA,kBAAkB,EAAE;AAFT,KAAb;AAID,GAdD,CAgBA;;;AA8BAiB,EAAAA,cAAc,GAAG;AACf,QAAI,CAAC,KAAKvB,KAAL,CAAWwB,QAAhB,EAA0B;AACxB,0BAAO,oBAAC,IAAD,OAAP;AACD;;AAED,UAAMC,KAAK,GAAGjC,KAAK,CAACkC,QAAN,CAAeC,IAAf,CACZ,KAAK3B,KAAL,CAAWwB,QADC,CAAd,CALe,CAOqB;;AACpC,wBAAOhC,KAAK,CAACoC,YAAN,CAAmBH,KAAnB,EAA0B;AAC/BI,MAAAA,KAAK,EAAEjC,UAAU,CAACkC,OAAX,CAAmBL,KAAK,CAACzB,KAAN,CAAY6B,KAA/B,EAAsC,KAAKP,KAAL,CAAWnB,eAAjD;AADwB,KAA1B,CAAP;AAGD;;AAaD4B,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEF,MAAAA,KAAK,GAAG,EAAV;AAAc,SAAGG;AAAjB,QAA0B,KAAKhC,KAArC;AACA,UAAM;AAAEM,MAAAA;AAAF,QAAyB,KAAKgB,KAApC;AACA,wBACE,oBAAC,gBAAD,eACMU,IADN;AAEE,MAAA,KAAK,EAAE,CAACH,KAAD,EAAQvB,kBAAR,CAFT;AAGE,MAAA,aAAa,EAAE,KAAK2B;AAHtB,QAIG,KAAKV,cAAL,EAJH,CADF;AAQD;;AAjFD;;gBAHmBzB,kB,kBAIG,EACpB,GAAGJ,gBAAgB,CAACwC,YADA;AAEpB7B,EAAAA,aAAa,EAAE,IAFK;AAGpB8B,EAAAA,aAAa,EAAE,GAHK;AAIpB3B,EAAAA,aAAa,EAAE;AAJK,C","sourcesContent":["import * as React from 'react';\r\nimport { Component } from 'react';\r\nimport GenericTouchable, {\r\n GenericTouchableProps,\r\n TOUCHABLE_STATE,\r\n} from './GenericTouchable';\r\nimport {\r\n StyleSheet,\r\n View,\r\n TouchableHighlightProps as RNTouchableHighlightProps,\r\n ColorValue,\r\n ViewProps,\r\n} from 'react-native';\r\n\r\ninterface State {\r\n extraChildStyle: null | {\r\n opacity?: number;\r\n };\r\n extraUnderlayStyle: null | {\r\n backgroundColor?: ColorValue;\r\n };\r\n}\r\n\r\nexport type TouchableHighlightProps = RNTouchableHighlightProps &\r\n GenericTouchableProps;\r\n\r\n/**\r\n * TouchableHighlight follows RN's implementation\r\n */\r\nexport default class TouchableHighlight extends Component<\r\n TouchableHighlightProps,\r\n State\r\n> {\r\n static defaultProps = {\r\n ...GenericTouchable.defaultProps,\r\n activeOpacity: 0.85,\r\n delayPressOut: 100,\r\n underlayColor: 'black',\r\n };\r\n\r\n constructor(props: TouchableHighlightProps) {\r\n super(props);\r\n this.state = {\r\n extraChildStyle: null,\r\n extraUnderlayStyle: null,\r\n };\r\n }\r\n\r\n // Copied from RN\r\n showUnderlay = () => {\r\n if (!this.hasPressHandler()) {\r\n return;\r\n }\r\n this.setState({\r\n extraChildStyle: {\r\n opacity: this.props.activeOpacity,\r\n },\r\n extraUnderlayStyle: {\r\n backgroundColor: this.props.underlayColor,\r\n },\r\n });\r\n this.props.onShowUnderlay?.();\r\n };\r\n\r\n hasPressHandler = () =>\r\n this.props.onPress ||\r\n this.props.onPressIn ||\r\n this.props.onPressOut ||\r\n this.props.onLongPress;\r\n\r\n hideUnderlay = () => {\r\n this.setState({\r\n extraChildStyle: null,\r\n extraUnderlayStyle: null,\r\n });\r\n this.props.onHideUnderlay?.();\r\n };\r\n\r\n renderChildren() {\r\n if (!this.props.children) {\r\n return <View />;\r\n }\r\n\r\n const child = React.Children.only(\r\n this.props.children\r\n ) as React.ReactElement<ViewProps>; // TODO: not sure if OK but fixes error\r\n return React.cloneElement(child, {\r\n style: StyleSheet.compose(child.props.style, this.state.extraChildStyle),\r\n });\r\n }\r\n\r\n onStateChange = (_from: number, to: number) => {\r\n if (to === TOUCHABLE_STATE.BEGAN) {\r\n this.showUnderlay();\r\n } else if (\r\n to === TOUCHABLE_STATE.UNDETERMINED ||\r\n to === TOUCHABLE_STATE.MOVED_OUTSIDE\r\n ) {\r\n this.hideUnderlay();\r\n }\r\n };\r\n\r\n render() {\r\n const { style = {}, ...rest } = this.props;\r\n const { extraUnderlayStyle } = this.state;\r\n return (\r\n <GenericTouchable\r\n {...rest}\r\n style={[style, extraUnderlayStyle]}\r\n onStateChange={this.onStateChange}>\r\n {this.renderChildren()}\r\n </GenericTouchable>\r\n );\r\n }\r\n}\r\n"]}
@@ -1,84 +0,0 @@
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
-
5
- import { Platform } from 'react-native';
6
- import * as React from 'react';
7
- import { Component } from 'react';
8
- import GenericTouchable from './GenericTouchable';
9
-
10
- /**
11
- * TouchableNativeFeedback behaves slightly different than RN's TouchableNativeFeedback.
12
- * There's small difference with handling long press ripple since RN's implementation calls
13
- * ripple animation via bridge. This solution leaves all animations' handling for native components so
14
- * it follows native behaviours.
15
- */
16
- export default class TouchableNativeFeedback extends Component {
17
- // could be taken as RNTouchableNativeFeedback.SelectableBackground etc. but the API may change
18
- getExtraButtonProps() {
19
- const extraProps = {};
20
- const {
21
- background
22
- } = this.props;
23
-
24
- if (background) {
25
- // I changed type values to match those used in RN
26
- // TODO(TS): check if it works the same as previous implementation - looks like it works the same as RN component, so it should be ok
27
- if (background.type === 'RippleAndroid') {
28
- extraProps['borderless'] = background.borderless;
29
- extraProps['rippleColor'] = background.color;
30
- } else if (background.type === 'ThemeAttrAndroid') {
31
- extraProps['borderless'] = background.attribute === 'selectableItemBackgroundBorderless';
32
- } // I moved it from above since it should be available in all options
33
-
34
-
35
- extraProps['rippleRadius'] = background.rippleRadius;
36
- }
37
-
38
- extraProps['foreground'] = this.props.useForeground;
39
- return extraProps;
40
- }
41
-
42
- render() {
43
- const {
44
- style = {},
45
- ...rest
46
- } = this.props;
47
- return /*#__PURE__*/React.createElement(GenericTouchable, _extends({}, rest, {
48
- style: style,
49
- extraButtonProps: this.getExtraButtonProps()
50
- }));
51
- }
52
-
53
- }
54
-
55
- _defineProperty(TouchableNativeFeedback, "defaultProps", { ...GenericTouchable.defaultProps,
56
- useForeground: true,
57
- extraButtonProps: {
58
- // Disable hiding ripple on Android
59
- rippleColor: null
60
- }
61
- });
62
-
63
- _defineProperty(TouchableNativeFeedback, "SelectableBackground", rippleRadius => ({
64
- type: 'ThemeAttrAndroid',
65
- // I added `attribute` prop to clone the implementation of RN and be able to use only 2 types
66
- attribute: 'selectableItemBackground',
67
- rippleRadius
68
- }));
69
-
70
- _defineProperty(TouchableNativeFeedback, "SelectableBackgroundBorderless", rippleRadius => ({
71
- type: 'ThemeAttrAndroid',
72
- attribute: 'selectableItemBackgroundBorderless',
73
- rippleRadius
74
- }));
75
-
76
- _defineProperty(TouchableNativeFeedback, "Ripple", (color, borderless, rippleRadius) => ({
77
- type: 'RippleAndroid',
78
- color,
79
- borderless,
80
- rippleRadius
81
- }));
82
-
83
- _defineProperty(TouchableNativeFeedback, "canUseNativeForeground", () => Platform.OS === 'android' && Platform.Version >= 23);
84
- //# sourceMappingURL=TouchableNativeFeedback.android.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["TouchableNativeFeedback.android.tsx"],"names":["Platform","React","Component","GenericTouchable","TouchableNativeFeedback","getExtraButtonProps","extraProps","background","props","type","borderless","color","attribute","rippleRadius","useForeground","render","style","rest","defaultProps","extraButtonProps","rippleColor","OS","Version"],"mappings":";;;;AAAA,SACEA,QADF,QAIO,cAJP;AAKA,OAAO,KAAKC,KAAZ,MAAuB,OAAvB;AACA,SAASC,SAAT,QAA0B,OAA1B;AACA,OAAOC,gBAAP,MAAwD,oBAAxD;;AAYA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,MAAMC,uBAAN,SAAsCF,SAAtC,CAA8E;AAU3F;AA0BAG,EAAAA,mBAAmB,GAAG;AACpB,UAAMC,UAA6C,GAAG,EAAtD;AACA,UAAM;AAAEC,MAAAA;AAAF,QAAiB,KAAKC,KAA5B;;AACA,QAAID,UAAJ,EAAgB;AACd;AACA;AACA,UAAIA,UAAU,CAACE,IAAX,KAAoB,eAAxB,EAAyC;AACvCH,QAAAA,UAAU,CAAC,YAAD,CAAV,GAA2BC,UAAU,CAACG,UAAtC;AACAJ,QAAAA,UAAU,CAAC,aAAD,CAAV,GAA4BC,UAAU,CAACI,KAAvC;AACD,OAHD,MAGO,IAAIJ,UAAU,CAACE,IAAX,KAAoB,kBAAxB,EAA4C;AACjDH,QAAAA,UAAU,CAAC,YAAD,CAAV,GACEC,UAAU,CAACK,SAAX,KAAyB,oCAD3B;AAED,OATa,CAUd;;;AACAN,MAAAA,UAAU,CAAC,cAAD,CAAV,GAA6BC,UAAU,CAACM,YAAxC;AACD;;AACDP,IAAAA,UAAU,CAAC,YAAD,CAAV,GAA2B,KAAKE,KAAL,CAAWM,aAAtC;AACA,WAAOR,UAAP;AACD;;AACDS,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEC,MAAAA,KAAK,GAAG,EAAV;AAAc,SAAGC;AAAjB,QAA0B,KAAKT,KAArC;AACA,wBACE,oBAAC,gBAAD,eACMS,IADN;AAEE,MAAA,KAAK,EAAED,KAFT;AAGE,MAAA,gBAAgB,EAAE,KAAKX,mBAAL;AAHpB,OADF;AAOD;;AAhE0F;;gBAAxED,uB,kBACG,EACpB,GAAGD,gBAAgB,CAACe,YADA;AAEpBJ,EAAAA,aAAa,EAAE,IAFK;AAGpBK,EAAAA,gBAAgB,EAAE;AAChB;AACAC,IAAAA,WAAW,EAAE;AAFG;AAHE,C;;gBADHhB,uB,0BAWYS,YAAD,KAA4B;AACxDJ,EAAAA,IAAI,EAAE,kBADkD;AAExD;AACAG,EAAAA,SAAS,EAAE,0BAH6C;AAIxDC,EAAAA;AAJwD,CAA5B,C;;gBAXXT,uB,oCAiBsBS,YAAD,KAA4B;AAClEJ,EAAAA,IAAI,EAAE,kBAD4D;AAElEG,EAAAA,SAAS,EAAE,oCAFuD;AAGlEC,EAAAA;AAHkE,CAA5B,C;;gBAjBrBT,uB,YAsBH,CACdO,KADc,EAEdD,UAFc,EAGdG,YAHc,MAIV;AACJJ,EAAAA,IAAI,EAAE,eADF;AAEJE,EAAAA,KAFI;AAGJD,EAAAA,UAHI;AAIJG,EAAAA;AAJI,CAJU,C;;gBAtBGT,uB,4BAiCa,MAC9BJ,QAAQ,CAACqB,EAAT,KAAgB,SAAhB,IAA6BrB,QAAQ,CAACsB,OAAT,IAAoB,E","sourcesContent":["import {\r\n Platform,\r\n TouchableNativeFeedbackProps as RNTouchableNativeFeedbackProps,\r\n ColorValue,\r\n} from 'react-native';\r\nimport * as React from 'react';\r\nimport { Component } from 'react';\r\nimport GenericTouchable, { GenericTouchableProps } from './GenericTouchable';\r\n\r\nexport type TouchableNativeFeedbackExtraProps = {\r\n borderless?: boolean;\r\n rippleColor?: number | null;\r\n rippleRadius?: number | null;\r\n foreground?: boolean;\r\n};\r\n\r\nexport type TouchableNativeFeedbackProps = RNTouchableNativeFeedbackProps &\r\n GenericTouchableProps;\r\n\r\n/**\r\n * TouchableNativeFeedback behaves slightly different than RN's TouchableNativeFeedback.\r\n * There's small difference with handling long press ripple since RN's implementation calls\r\n * ripple animation via bridge. This solution leaves all animations' handling for native components so\r\n * it follows native behaviours.\r\n */\r\nexport default class TouchableNativeFeedback extends Component<TouchableNativeFeedbackProps> {\r\n static defaultProps = {\r\n ...GenericTouchable.defaultProps,\r\n useForeground: true,\r\n extraButtonProps: {\r\n // Disable hiding ripple on Android\r\n rippleColor: null,\r\n },\r\n };\r\n\r\n // could be taken as RNTouchableNativeFeedback.SelectableBackground etc. but the API may change\r\n static SelectableBackground = (rippleRadius?: number) => ({\r\n type: 'ThemeAttrAndroid',\r\n // I added `attribute` prop to clone the implementation of RN and be able to use only 2 types\r\n attribute: 'selectableItemBackground',\r\n rippleRadius,\r\n });\r\n static SelectableBackgroundBorderless = (rippleRadius?: number) => ({\r\n type: 'ThemeAttrAndroid',\r\n attribute: 'selectableItemBackgroundBorderless',\r\n rippleRadius,\r\n });\r\n static Ripple = (\r\n color: ColorValue,\r\n borderless: boolean,\r\n rippleRadius?: number\r\n ) => ({\r\n type: 'RippleAndroid',\r\n color,\r\n borderless,\r\n rippleRadius,\r\n });\r\n\r\n static canUseNativeForeground = () =>\r\n Platform.OS === 'android' && Platform.Version >= 23;\r\n\r\n getExtraButtonProps() {\r\n const extraProps: TouchableNativeFeedbackExtraProps = {};\r\n const { background } = this.props;\r\n if (background) {\r\n // I changed type values to match those used in RN\r\n // TODO(TS): check if it works the same as previous implementation - looks like it works the same as RN component, so it should be ok\r\n if (background.type === 'RippleAndroid') {\r\n extraProps['borderless'] = background.borderless;\r\n extraProps['rippleColor'] = background.color;\r\n } else if (background.type === 'ThemeAttrAndroid') {\r\n extraProps['borderless'] =\r\n background.attribute === 'selectableItemBackgroundBorderless';\r\n }\r\n // I moved it from above since it should be available in all options\r\n extraProps['rippleRadius'] = background.rippleRadius;\r\n }\r\n extraProps['foreground'] = this.props.useForeground;\r\n return extraProps;\r\n }\r\n render() {\r\n const { style = {}, ...rest } = this.props;\r\n return (\r\n <GenericTouchable\r\n {...rest}\r\n style={style}\r\n extraButtonProps={this.getExtraButtonProps()}\r\n />\r\n );\r\n }\r\n}\r\n"]}
@@ -1,3 +0,0 @@
1
- import { TouchableNativeFeedback } from 'react-native';
2
- export default TouchableNativeFeedback;
3
- //# sourceMappingURL=TouchableNativeFeedback.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["TouchableNativeFeedback.tsx"],"names":["TouchableNativeFeedback"],"mappings":"AAAA,SAASA,uBAAT,QAAwC,cAAxC;AAEA,eAAeA,uBAAf","sourcesContent":["import { TouchableNativeFeedback } from 'react-native';\r\n\r\nexport default TouchableNativeFeedback;\r\n"]}
@@ -1,10 +0,0 @@
1
- import pack from 'react-native/package.json';
2
- const [majorStr, minorStr] = pack.version.split('.');
3
- const REACT_NATIVE_VERSION = {
4
- major: parseInt(majorStr, 10),
5
- minor: parseInt(minorStr, 10)
6
- };
7
- export function getReactNativeVersion() {
8
- return REACT_NATIVE_VERSION;
9
- }
10
- //# sourceMappingURL=getReactNativeVersion.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["getReactNativeVersion.ts"],"names":["pack","majorStr","minorStr","version","split","REACT_NATIVE_VERSION","major","parseInt","minor","getReactNativeVersion"],"mappings":"AAAA,OAAOA,IAAP,MAAiB,2BAAjB;AAEA,MAAM,CAACC,QAAD,EAAWC,QAAX,IAAuBF,IAAI,CAACG,OAAL,CAAaC,KAAb,CAAmB,GAAnB,CAA7B;AACA,MAAMC,oBAAoB,GAAG;AAC3BC,EAAAA,KAAK,EAAEC,QAAQ,CAACN,QAAD,EAAW,EAAX,CADY;AAE3BO,EAAAA,KAAK,EAAED,QAAQ,CAACL,QAAD,EAAW,EAAX;AAFY,CAA7B;AAKA,OAAO,SAASO,qBAAT,GAAiC;AACtC,SAAOJ,oBAAP;AACD","sourcesContent":["import pack from 'react-native/package.json';\r\n\r\nconst [majorStr, minorStr] = pack.version.split('.');\r\nconst REACT_NATIVE_VERSION = {\r\n major: parseInt(majorStr, 10),\r\n minor: parseInt(minorStr, 10),\r\n};\r\n\r\nexport function getReactNativeVersion() {\r\n return REACT_NATIVE_VERSION;\r\n}\r\n"]}
@@ -1,4 +0,0 @@
1
- export function getReactNativeVersion() {
2
- throw new Error('getReactNativeVersion is not supported on web');
3
- }
4
- //# sourceMappingURL=getReactNativeVersion.web.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["getReactNativeVersion.web.ts"],"names":["getReactNativeVersion","Error"],"mappings":"AAAA,OAAO,SAASA,qBAAT,GAAiC;AACtC,QAAM,IAAIC,KAAJ,CAAU,+CAAV,CAAN;AACD","sourcesContent":["export function getReactNativeVersion() {\r\n throw new Error('getReactNativeVersion is not supported on web');\r\n}\r\n"]}
@@ -1,20 +0,0 @@
1
- // Used by GestureDetector (unsupported on web at the moment) to check whether the
2
- // attached view may get flattened on Fabric. This implementation causes errors
3
- // on web due to the static resolution of `require` statements by webpack breaking
4
- // the conditional importing. Solved by making .web file.
5
- let findHostInstance_DEPRECATED;
6
- export function getShadowNodeFromRef(ref) {
7
- // load findHostInstance_DEPRECATED lazily because it may not be available before render
8
- if (findHostInstance_DEPRECATED === undefined) {
9
- try {
10
- findHostInstance_DEPRECATED = // eslint-disable-next-line @typescript-eslint/no-var-requires
11
- require('react-native/Libraries/Renderer/shims/ReactFabric').findHostInstance_DEPRECATED;
12
- } catch (e) {
13
- findHostInstance_DEPRECATED = _ref => null;
14
- }
15
- } // @ts-ignore Fabric
16
-
17
-
18
- return findHostInstance_DEPRECATED(ref)._internalInstanceHandle.stateNode.node;
19
- }
20
- //# sourceMappingURL=getShadowNodeFromRef.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["getShadowNodeFromRef.ts"],"names":["findHostInstance_DEPRECATED","getShadowNodeFromRef","ref","undefined","require","e","_ref","_internalInstanceHandle","stateNode","node"],"mappings":"AAAA;AACA;AACA;AACA;AACA,IAAIA,2BAAJ;AAEA,OAAO,SAASC,oBAAT,CAA8BC,GAA9B,EAAwC;AAC7C;AACA,MAAIF,2BAA2B,KAAKG,SAApC,EAA+C;AAC7C,QAAI;AACFH,MAAAA,2BAA2B,GACzB;AACAI,MAAAA,OAAO,CAAC,mDAAD,CAAP,CAA6DJ,2BAF/D;AAGD,KAJD,CAIE,OAAOK,CAAP,EAAU;AACVL,MAAAA,2BAA2B,GAAIM,IAAD,IAAe,IAA7C;AACD;AACF,GAV4C,CAY7C;;;AACA,SAAON,2BAA2B,CAACE,GAAD,CAA3B,CAAiCK,uBAAjC,CAAyDC,SAAzD,CACJC,IADH;AAED","sourcesContent":["// Used by GestureDetector (unsupported on web at the moment) to check whether the\r\n// attached view may get flattened on Fabric. This implementation causes errors\r\n// on web due to the static resolution of `require` statements by webpack breaking\r\n// the conditional importing. Solved by making .web file.\r\nlet findHostInstance_DEPRECATED: (ref: any) => void;\r\n\r\nexport function getShadowNodeFromRef(ref: any) {\r\n // load findHostInstance_DEPRECATED lazily because it may not be available before render\r\n if (findHostInstance_DEPRECATED === undefined) {\r\n try {\r\n findHostInstance_DEPRECATED =\r\n // eslint-disable-next-line @typescript-eslint/no-var-requires\r\n require('react-native/Libraries/Renderer/shims/ReactFabric').findHostInstance_DEPRECATED;\r\n } catch (e) {\r\n findHostInstance_DEPRECATED = (_ref: any) => null;\r\n }\r\n }\r\n\r\n // @ts-ignore Fabric\r\n return findHostInstance_DEPRECATED(ref)._internalInstanceHandle.stateNode\r\n .node;\r\n}\r\n"]}
@@ -1,8 +0,0 @@
1
- // Used by GestureDetector (unsupported on web at the moment) to check whether the
2
- // attached view may get flattened on Fabric. Original implementation causes errors
3
- // on web due to the static resolution of `require` statements by webpack breaking
4
- // the conditional importing.
5
- export function getShadowNodeFromRef(_ref) {
6
- return null;
7
- }
8
- //# sourceMappingURL=getShadowNodeFromRef.web.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["getShadowNodeFromRef.web.ts"],"names":["getShadowNodeFromRef","_ref"],"mappings":"AAAA;AACA;AACA;AACA;AACA,OAAO,SAASA,oBAAT,CAA8BC,IAA9B,EAAyC;AAC9C,SAAO,IAAP;AACD","sourcesContent":["// Used by GestureDetector (unsupported on web at the moment) to check whether the\r\n// attached view may get flattened on Fabric. Original implementation causes errors\r\n// on web due to the static resolution of `require` statements by webpack breaking\r\n// the conditional importing.\r\nexport function getShadowNodeFromRef(_ref: any) {\r\n return null;\r\n}\r\n"]}
@@ -1,5 +0,0 @@
1
- // `queueMicrotask` was introduced to react-native in version 0.66 (https://github.com/react-native-community/releases/blob/master/CHANGELOG.md#v0660)
2
- // Because Gesture Handler supports versions 0.64+, we have to handle situations where someone uses older version of react native.
3
- // That's why if `queueMicrotask` doesn't exist, we use `setImmediate` instead, since it was used before we switched to `queueMicrotask` in version 2.11.0
4
- export const ghQueueMicrotask = typeof queueMicrotask === 'function' ? queueMicrotask : setImmediate;
5
- //# sourceMappingURL=ghQueueMicrotask.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["ghQueueMicrotask.ts"],"names":["ghQueueMicrotask","queueMicrotask","setImmediate"],"mappings":"AAAA;AACA;AACA;AACA,OAAO,MAAMA,gBAAgB,GAC3B,OAAOC,cAAP,KAA0B,UAA1B,GAAuCA,cAAvC,GAAwDC,YADnD","sourcesContent":["// `queueMicrotask` was introduced to react-native in version 0.66 (https://github.com/react-native-community/releases/blob/master/CHANGELOG.md#v0660)\r\n// Because Gesture Handler supports versions 0.64+, we have to handle situations where someone uses older version of react native.\r\n// That's why if `queueMicrotask` doesn't exist, we use `setImmediate` instead, since it was used before we switched to `queueMicrotask` in version 2.11.0\r\nexport const ghQueueMicrotask =\r\n typeof queueMicrotask === 'function' ? queueMicrotask : setImmediate;\r\n"]}
@@ -1,11 +0,0 @@
1
- import createHandler from './createHandler';
2
- import { baseGestureHandlerProps } from './gestureHandlerCommon';
3
- export const flingGestureHandlerProps = ['numberOfPointers', 'direction'];
4
- export const flingHandlerName = 'FlingGestureHandler';
5
- // eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file
6
- export const FlingGestureHandler = createHandler({
7
- name: flingHandlerName,
8
- allowedProps: [...baseGestureHandlerProps, ...flingGestureHandlerProps],
9
- config: {}
10
- });
11
- //# sourceMappingURL=FlingGestureHandler.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["FlingGestureHandler.ts"],"names":["createHandler","baseGestureHandlerProps","flingGestureHandlerProps","flingHandlerName","FlingGestureHandler","name","allowedProps","config"],"mappings":"AAAA,OAAOA,aAAP,MAA0B,iBAA1B;AACA,SAEEC,uBAFF,QAGO,wBAHP;AAKA,OAAO,MAAMC,wBAAwB,GAAG,CACtC,kBADsC,EAEtC,WAFsC,CAAjC;AAsCP,OAAO,MAAMC,gBAAgB,GAAG,qBAAzB;AAGP;AACA,OAAO,MAAMC,mBAAmB,GAAGJ,aAAa,CAG9C;AACAK,EAAAA,IAAI,EAAEF,gBADN;AAEAG,EAAAA,YAAY,EAAE,CACZ,GAAGL,uBADS,EAEZ,GAAGC,wBAFS,CAFd;AAMAK,EAAAA,MAAM,EAAE;AANR,CAH8C,CAAzC","sourcesContent":["import createHandler from './createHandler';\r\nimport {\r\n BaseGestureHandlerProps,\r\n baseGestureHandlerProps,\r\n} from './gestureHandlerCommon';\r\n\r\nexport const flingGestureHandlerProps = [\r\n 'numberOfPointers',\r\n 'direction',\r\n] as const;\r\n\r\nexport type FlingGestureHandlerEventPayload = {\r\n x: number;\r\n y: number;\r\n absoluteX: number;\r\n absoluteY: number;\r\n};\r\nexport interface FlingGestureConfig {\r\n /**\r\n * Expressed allowed direction of movement. It's possible to pass one or many\r\n * directions in one parameter:\r\n *\r\n * ```js\r\n * direction={Directions.RIGHT | Directions.LEFT}\r\n * ```\r\n *\r\n * or\r\n *\r\n * ```js\r\n * direction={Directions.DOWN}\r\n * ```\r\n */\r\n direction?: number;\r\n\r\n /**\r\n * Determine exact number of points required to handle the fling gesture.\r\n */\r\n numberOfPointers?: number;\r\n}\r\n\r\nexport interface FlingGestureHandlerProps\r\n extends BaseGestureHandlerProps<FlingGestureHandlerEventPayload>,\r\n FlingGestureConfig {}\r\n\r\nexport const flingHandlerName = 'FlingGestureHandler';\r\n\r\nexport type FlingGestureHandler = typeof FlingGestureHandler;\r\n// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file\r\nexport const FlingGestureHandler = createHandler<\r\n FlingGestureHandlerProps,\r\n FlingGestureHandlerEventPayload\r\n>({\r\n name: flingHandlerName,\r\n allowedProps: [\r\n ...baseGestureHandlerProps,\r\n ...flingGestureHandlerProps,\r\n ] as const,\r\n config: {},\r\n});\r\n"]}
@@ -1,31 +0,0 @@
1
- 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; }
2
-
3
- import React from 'react';
4
- import { tagMessage } from '../utils';
5
- import PlatformConstants from '../PlatformConstants';
6
- import createHandler from './createHandler';
7
- import { baseGestureHandlerProps } from './gestureHandlerCommon';
8
- export const forceTouchGestureHandlerProps = ['minForce', 'maxForce', 'feedbackOnActivation']; // implicit `children` prop has been removed in @types/react^18.0.0
9
-
10
- class ForceTouchFallback extends React.Component {
11
- componentDidMount() {
12
- console.warn(tagMessage('ForceTouchGestureHandler is not available on this platform. Please use ForceTouchGestureHandler.forceTouchAvailable to conditionally render other components that would provide a fallback behavior specific to your usecase'));
13
- }
14
-
15
- render() {
16
- return this.props.children;
17
- }
18
-
19
- }
20
-
21
- _defineProperty(ForceTouchFallback, "forceTouchAvailable", false);
22
-
23
- export const forceTouchHandlerName = 'ForceTouchGestureHandler'; // eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file
24
-
25
- export const ForceTouchGestureHandler = PlatformConstants !== null && PlatformConstants !== void 0 && PlatformConstants.forceTouchAvailable ? createHandler({
26
- name: forceTouchHandlerName,
27
- allowedProps: [...baseGestureHandlerProps, ...forceTouchGestureHandlerProps],
28
- config: {}
29
- }) : ForceTouchFallback;
30
- ForceTouchGestureHandler.forceTouchAvailable = (PlatformConstants === null || PlatformConstants === void 0 ? void 0 : PlatformConstants.forceTouchAvailable) || false;
31
- //# sourceMappingURL=ForceTouchGestureHandler.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["ForceTouchGestureHandler.ts"],"names":["React","tagMessage","PlatformConstants","createHandler","baseGestureHandlerProps","forceTouchGestureHandlerProps","ForceTouchFallback","Component","componentDidMount","console","warn","render","props","children","forceTouchHandlerName","ForceTouchGestureHandler","forceTouchAvailable","name","allowedProps","config"],"mappings":";;AAAA,OAAOA,KAAP,MAAyC,OAAzC;AACA,SAASC,UAAT,QAA2B,UAA3B;AACA,OAAOC,iBAAP,MAA8B,sBAA9B;AACA,OAAOC,aAAP,MAA0B,iBAA1B;AACA,SAEEC,uBAFF,QAGO,wBAHP;AAKA,OAAO,MAAMC,6BAA6B,GAAG,CAC3C,UAD2C,EAE3C,UAF2C,EAG3C,sBAH2C,CAAtC,C,CAMP;;AACA,MAAMC,kBAAN,SAAiCN,KAAK,CAACO,SAAvC,CAA6E;AAE3EC,EAAAA,iBAAiB,GAAG;AAClBC,IAAAA,OAAO,CAACC,IAAR,CACET,UAAU,CACR,8NADQ,CADZ;AAKD;;AACDU,EAAAA,MAAM,GAAG;AACP,WAAO,KAAKC,KAAL,CAAWC,QAAlB;AACD;;AAX0E;;gBAAvEP,kB,yBACyB,K;;AAsD/B,OAAO,MAAMQ,qBAAqB,GAAG,0BAA9B,C,CAEP;;AACA,OAAO,MAAMC,wBAAwB,GAAGb,iBAAiB,SAAjB,IAAAA,iBAAiB,WAAjB,IAAAA,iBAAiB,CAAEc,mBAAnB,GACpCb,aAAa,CAGX;AACAc,EAAAA,IAAI,EAAEH,qBADN;AAEAI,EAAAA,YAAY,EAAE,CACZ,GAAGd,uBADS,EAEZ,GAAGC,6BAFS,CAFd;AAMAc,EAAAA,MAAM,EAAE;AANR,CAHW,CADuB,GAYpCb,kBAZG;AAcNS,wBAAD,CAAuDC,mBAAvD,GACE,CAAAd,iBAAiB,SAAjB,IAAAA,iBAAiB,WAAjB,YAAAA,iBAAiB,CAAEc,mBAAnB,KAA0C,KAD5C","sourcesContent":["import React, { PropsWithChildren } from 'react';\r\nimport { tagMessage } from '../utils';\r\nimport PlatformConstants from '../PlatformConstants';\r\nimport createHandler from './createHandler';\r\nimport {\r\n BaseGestureHandlerProps,\r\n baseGestureHandlerProps,\r\n} from './gestureHandlerCommon';\r\n\r\nexport const forceTouchGestureHandlerProps = [\r\n 'minForce',\r\n 'maxForce',\r\n 'feedbackOnActivation',\r\n] as const;\r\n\r\n// implicit `children` prop has been removed in @types/react^18.0.0\r\nclass ForceTouchFallback extends React.Component<PropsWithChildren<unknown>> {\r\n static forceTouchAvailable = false;\r\n componentDidMount() {\r\n console.warn(\r\n tagMessage(\r\n 'ForceTouchGestureHandler is not available on this platform. Please use ForceTouchGestureHandler.forceTouchAvailable to conditionally render other components that would provide a fallback behavior specific to your usecase'\r\n )\r\n );\r\n }\r\n render() {\r\n return this.props.children;\r\n }\r\n}\r\n\r\nexport type ForceTouchGestureHandlerEventPayload = {\r\n x: number;\r\n y: number;\r\n absoluteX: number;\r\n absoluteY: number;\r\n\r\n /**\r\n * The pressure of a touch.\r\n */\r\n force: number;\r\n};\r\n\r\nexport interface ForceTouchGestureConfig {\r\n /**\r\n *\r\n * A minimal pressure that is required before handler can activate. Should be a\r\n * value from range `[0.0, 1.0]`. Default is `0.2`.\r\n */\r\n minForce?: number;\r\n\r\n /**\r\n * A maximal pressure that could be applied for handler. If the pressure is\r\n * greater, handler fails. Should be a value from range `[0.0, 1.0]`.\r\n */\r\n maxForce?: number;\r\n\r\n /**\r\n * Boolean value defining if haptic feedback has to be performed on\r\n * activation.\r\n */\r\n feedbackOnActivation?: boolean;\r\n}\r\n\r\nexport interface ForceTouchGestureHandlerProps\r\n extends BaseGestureHandlerProps<ForceTouchGestureHandlerEventPayload>,\r\n ForceTouchGestureConfig {}\r\n\r\nexport type ForceTouchGestureHandler = typeof ForceTouchGestureHandler & {\r\n forceTouchAvailable: boolean;\r\n};\r\n\r\nexport const forceTouchHandlerName = 'ForceTouchGestureHandler';\r\n\r\n// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file\r\nexport const ForceTouchGestureHandler = PlatformConstants?.forceTouchAvailable\r\n ? createHandler<\r\n ForceTouchGestureHandlerProps,\r\n ForceTouchGestureHandlerEventPayload\r\n >({\r\n name: forceTouchHandlerName,\r\n allowedProps: [\r\n ...baseGestureHandlerProps,\r\n ...forceTouchGestureHandlerProps,\r\n ] as const,\r\n config: {},\r\n })\r\n : ForceTouchFallback;\r\n\r\n(ForceTouchGestureHandler as ForceTouchGestureHandler).forceTouchAvailable =\r\n PlatformConstants?.forceTouchAvailable || false;\r\n"]}
@@ -1,13 +0,0 @@
1
- import createHandler from './createHandler';
2
- import { baseGestureHandlerProps } from './gestureHandlerCommon';
3
- export const longPressGestureHandlerProps = ['minDurationMs', 'maxDist'];
4
- export const longPressHandlerName = 'LongPressGestureHandler';
5
- // eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file
6
- export const LongPressGestureHandler = createHandler({
7
- name: longPressHandlerName,
8
- allowedProps: [...baseGestureHandlerProps, ...longPressGestureHandlerProps],
9
- config: {
10
- shouldCancelWhenOutside: true
11
- }
12
- });
13
- //# sourceMappingURL=LongPressGestureHandler.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["LongPressGestureHandler.ts"],"names":["createHandler","baseGestureHandlerProps","longPressGestureHandlerProps","longPressHandlerName","LongPressGestureHandler","name","allowedProps","config","shouldCancelWhenOutside"],"mappings":"AAAA,OAAOA,aAAP,MAA0B,iBAA1B;AACA,SAEEC,uBAFF,QAGO,wBAHP;AAKA,OAAO,MAAMC,4BAA4B,GAAG,CAC1C,eAD0C,EAE1C,SAF0C,CAArC;AAiEP,OAAO,MAAMC,oBAAoB,GAAG,yBAA7B;AAGP;AACA,OAAO,MAAMC,uBAAuB,GAAGJ,aAAa,CAGlD;AACAK,EAAAA,IAAI,EAAEF,oBADN;AAEAG,EAAAA,YAAY,EAAE,CACZ,GAAGL,uBADS,EAEZ,GAAGC,4BAFS,CAFd;AAMAK,EAAAA,MAAM,EAAE;AACNC,IAAAA,uBAAuB,EAAE;AADnB;AANR,CAHkD,CAA7C","sourcesContent":["import createHandler from './createHandler';\r\nimport {\r\n BaseGestureHandlerProps,\r\n baseGestureHandlerProps,\r\n} from './gestureHandlerCommon';\r\n\r\nexport const longPressGestureHandlerProps = [\r\n 'minDurationMs',\r\n 'maxDist',\r\n] as const;\r\n\r\nexport type LongPressGestureHandlerEventPayload = {\r\n /**\r\n * X coordinate, expressed in points, of the current position of the pointer\r\n * (finger or a leading pointer when there are multiple fingers placed)\r\n * relative to the view attached to the handler.\r\n */\r\n x: number;\r\n\r\n /**\r\n * Y coordinate, expressed in points, of the current position of the pointer\r\n * (finger or a leading pointer when there are multiple fingers placed)\r\n * relative to the view attached to the handler.\r\n */\r\n y: number;\r\n\r\n /**\r\n * X coordinate, expressed in points, of the current position of the pointer\r\n * (finger or a leading pointer when there are multiple fingers placed)\r\n * relative to the window. It is recommended to use `absoluteX` instead of\r\n * `x` in cases when the view attached to the handler can be transformed as an\r\n * effect of the gesture.\r\n */\r\n absoluteX: number;\r\n\r\n /**\r\n * Y coordinate, expressed in points, of the current position of the pointer\r\n * (finger or a leading pointer when there are multiple fingers placed)\r\n * relative to the window. It is recommended to use `absoluteY` instead of\r\n * `y` in cases when the view attached to the handler can be transformed as an\r\n * effect of the gesture.\r\n */\r\n absoluteY: number;\r\n\r\n /**\r\n * Duration of the long press (time since the start of the event), expressed\r\n * in milliseconds.\r\n */\r\n duration: number;\r\n};\r\n\r\nexport interface LongPressGestureConfig {\r\n /**\r\n * Minimum time, expressed in milliseconds, that a finger must remain pressed on\r\n * the corresponding view. The default value is 500.\r\n */\r\n minDurationMs?: number;\r\n\r\n /**\r\n * Maximum distance, expressed in points, that defines how far the finger is\r\n * allowed to travel during a long press gesture. If the finger travels\r\n * further than the defined distance and the handler hasn't yet activated, it\r\n * will fail to recognize the gesture. The default value is 10.\r\n */\r\n maxDist?: number;\r\n}\r\n\r\nexport interface LongPressGestureHandlerProps\r\n extends BaseGestureHandlerProps<LongPressGestureHandlerEventPayload>,\r\n LongPressGestureConfig {}\r\n\r\nexport const longPressHandlerName = 'LongPressGestureHandler';\r\n\r\nexport type LongPressGestureHandler = typeof LongPressGestureHandler;\r\n// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file\r\nexport const LongPressGestureHandler = createHandler<\r\n LongPressGestureHandlerProps,\r\n LongPressGestureHandlerEventPayload\r\n>({\r\n name: longPressHandlerName,\r\n allowedProps: [\r\n ...baseGestureHandlerProps,\r\n ...longPressGestureHandlerProps,\r\n ] as const,\r\n config: {\r\n shouldCancelWhenOutside: true,\r\n },\r\n});\r\n"]}
@@ -1,10 +0,0 @@
1
- import createHandler from './createHandler';
2
- import { baseGestureHandlerProps } from './gestureHandlerCommon';
3
- export const pinchHandlerName = 'PinchGestureHandler';
4
- // eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file
5
- export const PinchGestureHandler = createHandler({
6
- name: pinchHandlerName,
7
- allowedProps: baseGestureHandlerProps,
8
- config: {}
9
- });
10
- //# sourceMappingURL=PinchGestureHandler.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["PinchGestureHandler.ts"],"names":["createHandler","baseGestureHandlerProps","pinchHandlerName","PinchGestureHandler","name","allowedProps","config"],"mappings":"AAAA,OAAOA,aAAP,MAA0B,iBAA1B;AACA,SAEEC,uBAFF,QAGO,wBAHP;AAmCA,OAAO,MAAMC,gBAAgB,GAAG,qBAAzB;AAGP;AACA,OAAO,MAAMC,mBAAmB,GAAGH,aAAa,CAG9C;AACAI,EAAAA,IAAI,EAAEF,gBADN;AAEAG,EAAAA,YAAY,EAAEJ,uBAFd;AAGAK,EAAAA,MAAM,EAAE;AAHR,CAH8C,CAAzC","sourcesContent":["import createHandler from './createHandler';\r\nimport {\r\n BaseGestureHandlerProps,\r\n baseGestureHandlerProps,\r\n} from './gestureHandlerCommon';\r\n\r\nexport type PinchGestureHandlerEventPayload = {\r\n /**\r\n * The scale factor relative to the points of the two touches in screen\r\n * coordinates.\r\n */\r\n scale: number;\r\n\r\n /**\r\n * Position expressed in points along X axis of center anchor point of\r\n * gesture.\r\n */\r\n focalX: number;\r\n\r\n /**\r\n * Position expressed in points along Y axis of center anchor point of\r\n * gesture.\r\n */\r\n focalY: number;\r\n\r\n /**\r\n *\r\n * Velocity of the pan gesture the current moment. The value is expressed in\r\n * point units per second.\r\n */\r\n velocity: number;\r\n};\r\n\r\nexport interface PinchGestureHandlerProps\r\n extends BaseGestureHandlerProps<PinchGestureHandlerEventPayload> {}\r\n\r\nexport const pinchHandlerName = 'PinchGestureHandler';\r\n\r\nexport type PinchGestureHandler = typeof PinchGestureHandler;\r\n// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file\r\nexport const PinchGestureHandler = createHandler<\r\n PinchGestureHandlerProps,\r\n PinchGestureHandlerEventPayload\r\n>({\r\n name: pinchHandlerName,\r\n allowedProps: baseGestureHandlerProps,\r\n config: {},\r\n});\r\n"]}
@@ -1,3 +0,0 @@
1
- // @ts-ignore it's not exported so we need to import it from path
2
- export { PressabilityDebugView } from 'react-native/Libraries/Pressability/PressabilityDebug';
3
- //# sourceMappingURL=PressabilityDebugView.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["PressabilityDebugView.tsx"],"names":["PressabilityDebugView"],"mappings":"AAAA;AACA,SAASA,qBAAT,QAAsC,uDAAtC","sourcesContent":["// @ts-ignore it's not exported so we need to import it from path\r\nexport { PressabilityDebugView } from 'react-native/Libraries/Pressability/PressabilityDebug';\r\n"]}
@@ -1,5 +0,0 @@
1
- // PressabilityDebugView is not implemented in react-native-web
2
- export function PressabilityDebugView() {
3
- return null;
4
- }
5
- //# sourceMappingURL=PressabilityDebugView.web.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["PressabilityDebugView.web.tsx"],"names":["PressabilityDebugView"],"mappings":"AAAA;AACA,OAAO,SAASA,qBAAT,GAAiC;AACtC,SAAO,IAAP;AACD","sourcesContent":["// PressabilityDebugView is not implemented in react-native-web\r\nexport function PressabilityDebugView() {\r\n return null;\r\n}\r\n"]}
@@ -1,10 +0,0 @@
1
- import createHandler from './createHandler';
2
- import { baseGestureHandlerProps } from './gestureHandlerCommon';
3
- export const rotationHandlerName = 'RotationGestureHandler';
4
- // eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file
5
- export const RotationGestureHandler = createHandler({
6
- name: rotationHandlerName,
7
- allowedProps: baseGestureHandlerProps,
8
- config: {}
9
- });
10
- //# sourceMappingURL=RotationGestureHandler.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["RotationGestureHandler.ts"],"names":["createHandler","baseGestureHandlerProps","rotationHandlerName","RotationGestureHandler","name","allowedProps","config"],"mappings":"AAAA,OAAOA,aAAP,MAA0B,iBAA1B;AACA,SAEEC,uBAFF,QAGO,wBAHP;AAmCA,OAAO,MAAMC,mBAAmB,GAAG,wBAA5B;AAGP;AACA,OAAO,MAAMC,sBAAsB,GAAGH,aAAa,CAGjD;AACAI,EAAAA,IAAI,EAAEF,mBADN;AAEAG,EAAAA,YAAY,EAAEJ,uBAFd;AAGAK,EAAAA,MAAM,EAAE;AAHR,CAHiD,CAA5C","sourcesContent":["import createHandler from './createHandler';\r\nimport {\r\n BaseGestureHandlerProps,\r\n baseGestureHandlerProps,\r\n} from './gestureHandlerCommon';\r\n\r\nexport type RotationGestureHandlerEventPayload = {\r\n /**\r\n * Amount rotated, expressed in radians, from the gesture's focal point\r\n * (anchor).\r\n */\r\n rotation: number;\r\n\r\n /**\r\n * X coordinate, expressed in points, of the gesture's central focal point\r\n * (anchor).\r\n */\r\n anchorX: number;\r\n\r\n /**\r\n * Y coordinate, expressed in points, of the gesture's central focal point\r\n * (anchor).\r\n */\r\n anchorY: number;\r\n\r\n /**\r\n *\r\n * Instantaneous velocity, expressed in point units per second, of the\r\n * gesture.\r\n */\r\n velocity: number;\r\n};\r\n\r\nexport interface RotationGestureHandlerProps\r\n extends BaseGestureHandlerProps<RotationGestureHandlerEventPayload> {}\r\n\r\nexport const rotationHandlerName = 'RotationGestureHandler';\r\n\r\nexport type RotationGestureHandler = typeof RotationGestureHandler;\r\n// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file\r\nexport const RotationGestureHandler = createHandler<\r\n RotationGestureHandlerProps,\r\n RotationGestureHandlerEventPayload\r\n>({\r\n name: rotationHandlerName,\r\n allowedProps: baseGestureHandlerProps,\r\n config: {},\r\n});\r\n"]}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=gestureHandlerTypesCompat.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[]}