@react-native-oh-tpl/react-native-gesture-handler 2.12.1-0.0.1 → 2.12.6-1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -62
- package/harmony/gesture_handler/build-profile.json5 +8 -0
- package/harmony/gesture_handler/hvigorfile.ts +2 -0
- package/harmony/gesture_handler/index.ets +3 -0
- package/harmony/gesture_handler/oh-package.json5 +11 -0
- package/harmony/gesture_handler/src/main/cpp/CMakeLists.txt +8 -0
- package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.cpp +34 -0
- package/harmony/gesture_handler/src/main/cpp/GestureHandlerPackage.h +15 -0
- package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerButtonComponentDescriptor.h +60 -0
- package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.cpp +17 -0
- package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerModule.h +12 -0
- package/harmony/gesture_handler/src/main/cpp/RNGestureHandlerRootViewComponentDescriptor.h +60 -0
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/CircularBuffer.ts +1 -1
- package/harmony/gesture_handler/src/main/ets/Event.ts +68 -0
- package/harmony/gesture_handler/src/main/ets/EventDispatcher.ts +38 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandler.ts +663 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerArkUIAdapter.ets +202 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerFactory.ts +45 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerOrchestrator.ts +280 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerPackage.ts +22 -0
- package/harmony/gesture_handler/src/main/ets/GestureHandlerRegistry.ts +28 -0
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/InteractionManager.ts +36 -57
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/LeastSquareSolver.ts +1 -1
- package/harmony/gesture_handler/src/main/ets/NativeViewGestureHandler.ts +115 -0
- package/harmony/gesture_handler/src/main/ets/OutgoingEvent.ts +34 -0
- package/harmony/gesture_handler/src/main/ets/PanGestureHandler.ts +328 -0
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/PointerTracker.ts +13 -14
- package/harmony/gesture_handler/src/main/ets/RNGHError.ts +5 -0
- package/harmony/gesture_handler/src/main/ets/RNGHLogger.ts +29 -0
- package/harmony/gesture_handler/src/main/ets/RNGHRootTouchHandler.ets +58 -0
- package/harmony/gesture_handler/src/main/ets/RNGestureHandlerButton.ets +37 -0
- package/harmony/gesture_handler/src/main/ets/RNGestureHandlerModule.ts +125 -0
- package/harmony/gesture_handler/src/main/ets/RNGestureHandlerRootView.ets +56 -0
- package/harmony/gesture_handler/src/main/ets/RNOHScrollLocker.ts +11 -0
- package/harmony/gesture_handler/src/main/ets/State.ts +47 -0
- package/harmony/gesture_handler/src/main/ets/TapGestureHandler.ts +206 -0
- package/harmony/gesture_handler/src/main/ets/Vector2D.ts +36 -0
- package/{src/web/tools → harmony/gesture_handler/src/main/ets}/VelocityTracker.ts +4 -4
- package/harmony/gesture_handler/src/main/ets/View.ts +71 -0
- package/harmony/gesture_handler/src/main/ets/ViewRegistry.ts +43 -0
- package/harmony/gesture_handler/src/main/ets/pages/Index.ets +17 -0
- package/harmony/gesture_handler/src/main/ets/webviewability/WebviewAbility.ts +41 -0
- package/harmony/gesture_handler/src/main/module.json5 +7 -0
- package/harmony/gesture_handler/src/main/resources/base/element/color.json +8 -0
- package/harmony/gesture_handler/src/main/resources/base/element/string.json +16 -0
- package/harmony/gesture_handler/src/main/resources/base/media/icon.png +0 -0
- package/harmony/gesture_handler/src/main/resources/base/profile/main_pages.json +5 -0
- package/harmony/gesture_handler/src/main/resources/en_US/element/string.json +16 -0
- package/harmony/gesture_handler/src/main/resources/zh_CN/element/string.json +16 -0
- package/harmony/gesture_handler/ts.ts +1 -0
- package/harmony/gesture_handler.har +0 -0
- package/lib/commonjs/RNGestureHandlerModule.js +2 -22
- package/lib/commonjs/RNGestureHandlerModule.js.map +1 -1
- package/lib/commonjs/components/GestureButtons.js +88 -142
- package/lib/commonjs/components/GestureButtons.js.map +1 -1
- package/lib/commonjs/components/GestureHandlerButton.js +2 -7
- package/lib/commonjs/components/GestureHandlerButton.js.map +1 -1
- package/lib/commonjs/components/GestureHandlerRootView.js +13 -13
- package/lib/commonjs/components/GestureHandlerRootView.js.map +1 -1
- package/lib/commonjs/components/RNGestureHandlerButton.js +23 -0
- package/lib/commonjs/components/RNGestureHandlerButton.js.map +1 -0
- package/lib/commonjs/components/touchables/GenericTouchable.js +94 -136
- package/lib/commonjs/components/touchables/GenericTouchable.js.map +1 -1
- package/lib/commonjs/components/touchables/TouchableOpacity.js +32 -51
- package/lib/commonjs/components/touchables/TouchableOpacity.js.map +1 -1
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +4 -12
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +1 -1
- package/lib/commonjs/components/touchables/index.js +2 -21
- package/lib/commonjs/components/touchables/index.js.map +1 -1
- package/lib/commonjs/handlers/NativeViewGestureHandler.js +6 -14
- package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/commonjs/handlers/PanGestureHandler.js +12 -32
- package/lib/commonjs/handlers/PanGestureHandler.js.map +1 -1
- package/lib/commonjs/handlers/TapGestureHandler.js +6 -11
- package/lib/commonjs/handlers/TapGestureHandler.js.map +1 -1
- package/lib/commonjs/handlers/createHandler.js +141 -223
- package/lib/commonjs/handlers/createHandler.js.map +1 -1
- package/lib/commonjs/handlers/createNativeWrapper.js +16 -26
- package/lib/commonjs/handlers/createNativeWrapper.js.map +1 -1
- package/lib/commonjs/handlers/gestureHandlerCommon.js +6 -87
- package/lib/commonjs/handlers/gestureHandlerCommon.js.map +1 -1
- package/lib/commonjs/handlers/gestures/GestureDetector.js +111 -226
- package/lib/commonjs/handlers/gestures/GestureDetector.js.map +1 -1
- package/lib/commonjs/index.js +168 -211
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/init.js +7 -15
- package/lib/commonjs/init.js.map +1 -1
- package/lib/module/RNGestureHandlerModule.js +2 -18
- package/lib/module/RNGestureHandlerModule.js.map +1 -1
- package/lib/module/components/GestureButtons.js +83 -121
- package/lib/module/components/GestureButtons.js.map +1 -1
- package/lib/module/components/GestureHandlerButton.js +2 -2
- package/lib/module/components/GestureHandlerButton.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.js +11 -3
- package/lib/module/components/GestureHandlerRootView.js.map +1 -1
- package/lib/module/components/RNGestureHandlerButton.js +17 -0
- package/lib/module/components/RNGestureHandlerButton.js.map +1 -0
- package/lib/module/components/touchables/GenericTouchable.js +89 -124
- package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
- package/lib/module/components/touchables/TouchableOpacity.js +27 -41
- package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
- package/lib/module/components/touchables/TouchableWithoutFeedback.js +1 -2
- package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
- package/lib/module/components/touchables/index.js +5 -2
- package/lib/module/components/touchables/index.js.map +1 -1
- package/lib/module/handlers/NativeViewGestureHandler.js +1 -1
- package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/handlers/PanGestureHandler.js +6 -21
- package/lib/module/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/handlers/TapGestureHandler.js +2 -1
- package/lib/module/handlers/TapGestureHandler.js.map +1 -1
- package/lib/module/handlers/createHandler.js +140 -196
- package/lib/module/handlers/createHandler.js.map +1 -1
- package/lib/module/handlers/createNativeWrapper.js +11 -16
- package/lib/module/handlers/createNativeWrapper.js.map +1 -1
- package/lib/module/handlers/gestureHandlerCommon.js +5 -71
- package/lib/module/handlers/gestureHandlerCommon.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector.js +99 -175
- package/lib/module/handlers/gestures/GestureDetector.js.map +1 -1
- package/lib/module/index.js +160 -18
- package/lib/module/index.js.map +1 -1
- package/lib/module/init.js +6 -5
- package/lib/module/init.js.map +1 -1
- package/lib/typescript/RNGestureHandlerModule.d.ts +7 -13
- package/lib/typescript/RNGestureHandlerModule.d.ts.map +1 -0
- package/lib/typescript/components/GestureButtons.d.ts +122 -121
- package/lib/typescript/components/GestureButtons.d.ts.map +1 -0
- package/lib/typescript/components/GestureHandlerButton.d.ts +5 -4
- package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -0
- package/lib/typescript/components/GestureHandlerRootView.d.ts +7 -6
- package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -0
- package/lib/typescript/components/RNGestureHandlerButton.d.ts +2 -0
- package/lib/typescript/components/RNGestureHandlerButton.d.ts.map +1 -0
- package/lib/typescript/components/touchables/GenericTouchable.d.ts +68 -68
- package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -0
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts +26 -25
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -0
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +8 -7
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -0
- package/lib/typescript/components/touchables/index.d.ts +4 -7
- package/lib/typescript/components/touchables/index.d.ts.map +1 -0
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +29 -28
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -0
- package/lib/typescript/handlers/PanGestureHandler.d.ts +140 -139
- package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -0
- package/lib/typescript/handlers/TapGestureHandler.d.ts +58 -57
- package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -0
- package/lib/typescript/handlers/createHandler.d.ts +12 -11
- package/lib/typescript/handlers/createHandler.d.ts.map +1 -0
- package/lib/typescript/handlers/createNativeWrapper.d.ts +4 -3
- package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -0
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts +2 -68
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -0
- package/lib/typescript/handlers/gestures/GestureDetector.d.ts +24 -19
- package/lib/typescript/handlers/gestures/GestureDetector.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +9 -52
- package/lib/typescript/index.d.ts.map +1 -0
- package/lib/typescript/init.d.ts +3 -2
- package/lib/typescript/init.d.ts.map +1 -0
- package/package.json +34 -120
- package/src/RNGestureHandlerModule.ts +4 -48
- package/src/components/GestureButtons.tsx +7 -5
- package/src/components/GestureHandlerButton.tsx +3 -3
- package/src/components/GestureHandlerRootView.tsx +15 -4
- package/src/components/RNGestureHandlerButton.tsx +23 -0
- package/src/components/touchables/GenericTouchable.tsx +7 -7
- package/src/components/touchables/TouchableOpacity.tsx +2 -1
- package/src/components/touchables/TouchableWithoutFeedback.tsx +3 -3
- package/src/components/touchables/index.ts +4 -4
- package/src/handlers/NativeViewGestureHandler.ts +1 -1
- package/src/handlers/PanGestureHandler.ts +4 -2
- package/src/handlers/TapGestureHandler.ts +2 -1
- package/src/handlers/createHandler.tsx +17 -15
- package/src/handlers/createNativeWrapper.tsx +2 -1
- package/src/handlers/gestureHandlerCommon.ts +5 -240
- package/src/handlers/gestures/GestureDetector.tsx +40 -39
- package/src/index.ts +158 -160
- package/src/init.ts +3 -3
- package/DrawerLayout/package.json +0 -6
- package/LICENSE +0 -21
- package/RNGestureHandler.podspec +0 -44
- package/Swipeable/package.json +0 -6
- package/android/build.gradle +0 -209
- package/android/common/src/main/java/com/swmansion/common/GestureHandlerStateManager.kt +0 -5
- package/android/fabric/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerComponentsRegistry.java +0 -29
- package/android/fabric/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -12
- package/android/gradle.properties +0 -19
- package/android/noreanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -10
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +0 -50
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +0 -23
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +0 -25
- package/android/paper/src/main/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +0 -16
- package/android/paper/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt +0 -13
- package/android/reanimated/src/main/java/com/swmansion/gesturehandler/ReanimatedEventDispatcher.kt +0 -17
- package/android/src/main/AndroidManifest.xml +0 -3
- package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -21
- package/android/src/main/java/com/swmansion/gesturehandler/core/FlingGestureHandler.kt +0 -100
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +0 -807
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.kt +0 -8
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +0 -671
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerRegistry.kt +0 -8
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureUtils.kt +0 -47
- package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +0 -120
- package/android/src/main/java/com/swmansion/gesturehandler/core/LongPressGestureHandler.kt +0 -100
- package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +0 -11
- package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +0 -257
- package/android/src/main/java/com/swmansion/gesturehandler/core/OnTouchEventListener.kt +0 -9
- package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +0 -322
- package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +0 -103
- package/android/src/main/java/com/swmansion/gesturehandler/core/PointerEventsConfig.kt +0 -23
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureDetector.kt +0 -125
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +0 -93
- package/android/src/main/java/com/swmansion/gesturehandler/core/ScaleGestureDetector.java +0 -558
- package/android/src/main/java/com/swmansion/gesturehandler/core/TapGestureHandler.kt +0 -168
- package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +0 -10
- package/android/src/main/java/com/swmansion/gesturehandler/react/Extensions.kt +0 -16
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +0 -423
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.kt +0 -15
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.kt +0 -75
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +0 -74
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +0 -702
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +0 -100
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +0 -142
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.kt +0 -5
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +0 -78
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.kt +0 -51
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.kt +0 -78
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.kt +0 -69
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +0 -51
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.kt +0 -22
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.kt +0 -33
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.kt +0 -5
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.kt +0 -18
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.kt +0 -42
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/java/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.kt +0 -30
- package/android/src/main/jni/CMakeLists.txt +0 -37
- package/android/src/main/jni/cpp-adapter.cpp +0 -44
- package/ios/Handlers/RNFlingHandler.h +0 -4
- package/ios/Handlers/RNFlingHandler.m +0 -152
- package/ios/Handlers/RNForceTouchHandler.h +0 -4
- package/ios/Handlers/RNForceTouchHandler.m +0 -175
- package/ios/Handlers/RNHoverHandler.h +0 -12
- package/ios/Handlers/RNHoverHandler.m +0 -153
- package/ios/Handlers/RNLongPressHandler.h +0 -12
- package/ios/Handlers/RNLongPressHandler.m +0 -183
- package/ios/Handlers/RNManualHandler.h +0 -4
- package/ios/Handlers/RNManualHandler.m +0 -88
- package/ios/Handlers/RNNativeViewHandler.h +0 -15
- package/ios/Handlers/RNNativeViewHandler.mm +0 -193
- package/ios/Handlers/RNPanHandler.h +0 -12
- package/ios/Handlers/RNPanHandler.m +0 -331
- package/ios/Handlers/RNPinchHandler.h +0 -12
- package/ios/Handlers/RNPinchHandler.m +0 -95
- package/ios/Handlers/RNRotationHandler.h +0 -12
- package/ios/Handlers/RNRotationHandler.m +0 -93
- package/ios/Handlers/RNTapHandler.h +0 -12
- package/ios/Handlers/RNTapHandler.m +0 -265
- package/ios/RNGHTouchEventType.h +0 -9
- package/ios/RNGestureHandler.h +0 -90
- package/ios/RNGestureHandler.m +0 -493
- package/ios/RNGestureHandler.xcodeproj/project.pbxproj +0 -690
- package/ios/RNGestureHandler.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/ios/RNGestureHandlerActionType.h +0 -10
- package/ios/RNGestureHandlerButton.h +0 -19
- package/ios/RNGestureHandlerButton.m +0 -77
- package/ios/RNGestureHandlerButtonComponentView.h +0 -17
- package/ios/RNGestureHandlerButtonComponentView.mm +0 -64
- package/ios/RNGestureHandlerButtonManager.h +0 -5
- package/ios/RNGestureHandlerButtonManager.m +0 -34
- package/ios/RNGestureHandlerDirection.h +0 -8
- package/ios/RNGestureHandlerEvents.h +0 -65
- package/ios/RNGestureHandlerEvents.m +0 -260
- package/ios/RNGestureHandlerManager.h +0 -35
- package/ios/RNGestureHandlerManager.mm +0 -367
- package/ios/RNGestureHandlerModule.h +0 -7
- package/ios/RNGestureHandlerModule.mm +0 -320
- package/ios/RNGestureHandlerPointerTracker.h +0 -25
- package/ios/RNGestureHandlerPointerTracker.m +0 -243
- package/ios/RNGestureHandlerRegistry.h +0 -21
- package/ios/RNGestureHandlerRegistry.m +0 -63
- package/ios/RNGestureHandlerRootViewComponentView.mm +0 -21
- package/ios/RNGestureHandlerState.h +0 -10
- package/ios/RNGestureHandlerStateManager.h +0 -5
- package/ios/RNManualActivationRecognizer.h +0 -10
- package/ios/RNManualActivationRecognizer.m +0 -88
- package/ios/RNRootViewGestureRecognizer.h +0 -17
- package/ios/RNRootViewGestureRecognizer.m +0 -106
- package/jest-utils/package.json +0 -6
- package/jestSetup.js +0 -7
- package/lib/commonjs/ActionType.js +0 -15
- package/lib/commonjs/ActionType.js.map +0 -1
- package/lib/commonjs/Directions.js +0 -15
- package/lib/commonjs/Directions.js.map +0 -1
- package/lib/commonjs/EnableNewWebImplementation.js +0 -35
- package/lib/commonjs/EnableNewWebImplementation.js.map +0 -1
- package/lib/commonjs/GestureHandlerRootViewContext.js +0 -15
- package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
- package/lib/commonjs/PlatformConstants.js +0 -15
- package/lib/commonjs/PlatformConstants.js.map +0 -1
- package/lib/commonjs/PlatformConstants.web.js +0 -14
- package/lib/commonjs/PlatformConstants.web.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.macos.js +0 -149
- package/lib/commonjs/RNGestureHandlerModule.macos.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.web.js +0 -163
- package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -158
- package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
- package/lib/commonjs/RNRenderer.js +0 -16
- package/lib/commonjs/RNRenderer.js.map +0 -1
- package/lib/commonjs/RNRenderer.web.js +0 -11
- package/lib/commonjs/RNRenderer.web.js.map +0 -1
- package/lib/commonjs/State.js +0 -18
- package/lib/commonjs/State.js.map +0 -1
- package/lib/commonjs/TouchEventType.js +0 -16
- package/lib/commonjs/TouchEventType.js.map +0 -1
- package/lib/commonjs/components/DrawerLayout.js +0 -566
- package/lib/commonjs/components/DrawerLayout.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.js +0 -115
- package/lib/commonjs/components/GestureComponents.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.web.js +0 -52
- package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerButton.web.js +0 -24
- package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -31
- package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -25
- package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
- package/lib/commonjs/components/Swipeable.js +0 -408
- package/lib/commonjs/components/Swipeable.js.map +0 -1
- package/lib/commonjs/components/gestureHandlerRootHOC.js +0 -40
- package/lib/commonjs/components/gestureHandlerRootHOC.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -109
- package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -100
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -12
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
- package/lib/commonjs/getReactNativeVersion.js +0 -22
- package/lib/commonjs/getReactNativeVersion.js.map +0 -1
- package/lib/commonjs/getReactNativeVersion.web.js +0 -11
- package/lib/commonjs/getReactNativeVersion.web.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.js +0 -27
- package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.web.js +0 -15
- package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
- package/lib/commonjs/ghQueueMicrotask.js +0 -12
- package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
- package/lib/commonjs/handlers/FlingGestureHandler.js +0 -25
- package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -49
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -27
- package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PinchGestureHandler.js +0 -23
- package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.js +0 -14
- package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -12
- package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
- package/lib/commonjs/handlers/RotationGestureHandler.js +0 -23
- package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
- package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -147
- package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
- package/lib/commonjs/handlers/gestures/flingGesture.js +0 -34
- package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -65
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gesture.js +0 -241
- package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -105
- package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -90
- package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -65
- package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -32
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
- package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -74
- package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -35
- package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/manualGesture.js +0 -31
- package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
- package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/panGesture.js +0 -149
- package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -45
- package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -37
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
- package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -45
- package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/tapGesture.js +0 -60
- package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
- package/lib/commonjs/handlers/handlersRegistry.js +0 -67
- package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
- package/lib/commonjs/jestUtils/index.js +0 -20
- package/lib/commonjs/jestUtils/index.js.map +0 -1
- package/lib/commonjs/jestUtils/jestUtils.js +0 -375
- package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
- package/lib/commonjs/mocks.js +0 -66
- package/lib/commonjs/mocks.js.map +0 -1
- package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js +0 -15
- package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
- package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js +0 -15
- package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
- package/lib/commonjs/typeUtils.js +0 -2
- package/lib/commonjs/typeUtils.js.map +0 -1
- package/lib/commonjs/utils.js +0 -63
- package/lib/commonjs/utils.js.map +0 -1
- package/lib/commonjs/web/constants.js +0 -16
- package/lib/commonjs/web/constants.js.map +0 -1
- package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -165
- package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -156
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
- package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -167
- package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/GestureHandler.js +0 -794
- package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -62
- package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -151
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -61
- package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -178
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -448
- package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -174
- package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -186
- package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -280
- package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/web/interfaces.js +0 -55
- package/lib/commonjs/web/interfaces.js.map +0 -1
- package/lib/commonjs/web/tools/CircularBuffer.js +0 -59
- package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
- package/lib/commonjs/web/tools/EventManager.js +0 -127
- package/lib/commonjs/web/tools/EventManager.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -6
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -349
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -118
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
- package/lib/commonjs/web/tools/InteractionManager.js +0 -114
- package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
- package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -204
- package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
- package/lib/commonjs/web/tools/NodeManager.js +0 -48
- package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
- package/lib/commonjs/web/tools/PointerEventManager.js +0 -198
- package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
- package/lib/commonjs/web/tools/PointerTracker.js +0 -226
- package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
- package/lib/commonjs/web/tools/TouchEventManager.js +0 -138
- package/lib/commonjs/web/tools/TouchEventManager.js.map +0 -1
- package/lib/commonjs/web/tools/VelocityTracker.js +0 -111
- package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
- package/lib/commonjs/web/utils.js +0 -15
- package/lib/commonjs/web/utils.js.map +0 -1
- package/lib/commonjs/web_hammer/DiscreteGestureHandler.js +0 -105
- package/lib/commonjs/web_hammer/DiscreteGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/DraggingGestureHandler.js +0 -53
- package/lib/commonjs/web_hammer/DraggingGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/Errors.js +0 -16
- package/lib/commonjs/web_hammer/Errors.js.map +0 -1
- package/lib/commonjs/web_hammer/FlingGestureHandler.js +0 -170
- package/lib/commonjs/web_hammer/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/GestureHandler.js +0 -579
- package/lib/commonjs/web_hammer/GestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js +0 -54
- package/lib/commonjs/web_hammer/IndiscreteGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/LongPressGestureHandler.js +0 -71
- package/lib/commonjs/web_hammer/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/NativeViewGestureHandler.js +0 -66
- package/lib/commonjs/web_hammer/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/NodeManager.js +0 -46
- package/lib/commonjs/web_hammer/NodeManager.js.map +0 -1
- package/lib/commonjs/web_hammer/PanGestureHandler.js +0 -208
- package/lib/commonjs/web_hammer/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/PinchGestureHandler.js +0 -40
- package/lib/commonjs/web_hammer/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/PressGestureHandler.js +0 -188
- package/lib/commonjs/web_hammer/PressGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/RotationGestureHandler.js +0 -44
- package/lib/commonjs/web_hammer/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/TapGestureHandler.js +0 -192
- package/lib/commonjs/web_hammer/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/web_hammer/constants.js +0 -64
- package/lib/commonjs/web_hammer/constants.js.map +0 -1
- package/lib/commonjs/web_hammer/utils.js +0 -42
- package/lib/commonjs/web_hammer/utils.js.map +0 -1
- package/lib/module/ActionType.js +0 -7
- package/lib/module/ActionType.js.map +0 -1
- package/lib/module/Directions.js +0 -7
- package/lib/module/Directions.js.map +0 -1
- package/lib/module/EnableNewWebImplementation.js +0 -22
- package/lib/module/EnableNewWebImplementation.js.map +0 -1
- package/lib/module/GestureHandlerRootViewContext.js +0 -3
- package/lib/module/GestureHandlerRootViewContext.js.map +0 -1
- package/lib/module/PlatformConstants.js +0 -5
- package/lib/module/PlatformConstants.js.map +0 -1
- package/lib/module/PlatformConstants.web.js +0 -7
- package/lib/module/PlatformConstants.web.js.map +0 -1
- package/lib/module/RNGestureHandlerModule.macos.js +0 -110
- package/lib/module/RNGestureHandlerModule.macos.js.map +0 -1
- package/lib/module/RNGestureHandlerModule.web.js +0 -122
- package/lib/module/RNGestureHandlerModule.web.js.map +0 -1
- package/lib/module/RNGestureHandlerModule.windows.js +0 -118
- package/lib/module/RNGestureHandlerModule.windows.js.map +0 -1
- package/lib/module/RNRenderer.js +0 -4
- package/lib/module/RNRenderer.js.map +0 -1
- package/lib/module/RNRenderer.web.js +0 -4
- package/lib/module/RNRenderer.web.js.map +0 -1
- package/lib/module/State.js +0 -10
- package/lib/module/State.js.map +0 -1
- package/lib/module/TouchEventType.js +0 -8
- package/lib/module/TouchEventType.js.map +0 -1
- package/lib/module/components/DrawerLayout.js +0 -551
- package/lib/module/components/DrawerLayout.js.map +0 -1
- package/lib/module/components/GestureComponents.js +0 -90
- package/lib/module/components/GestureComponents.js.map +0 -1
- package/lib/module/components/GestureComponents.web.js +0 -28
- package/lib/module/components/GestureComponents.web.js.map +0 -1
- package/lib/module/components/GestureHandlerButton.web.js +0 -9
- package/lib/module/components/GestureHandlerButton.web.js.map +0 -1
- package/lib/module/components/GestureHandlerRootView.android.js +0 -14
- package/lib/module/components/GestureHandlerRootView.android.js.map +0 -1
- package/lib/module/components/GestureHandlerRootView.web.js +0 -9
- package/lib/module/components/GestureHandlerRootView.web.js.map +0 -1
- package/lib/module/components/Swipeable.js +0 -390
- package/lib/module/components/Swipeable.js.map +0 -1
- package/lib/module/components/gestureHandlerRootHOC.js +0 -22
- package/lib/module/components/gestureHandlerRootHOC.js.map +0 -1
- package/lib/module/components/touchables/TouchableHighlight.js +0 -95
- package/lib/module/components/touchables/TouchableHighlight.js.map +0 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js +0 -84
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.js +0 -3
- package/lib/module/components/touchables/TouchableNativeFeedback.js.map +0 -1
- package/lib/module/getReactNativeVersion.js +0 -10
- package/lib/module/getReactNativeVersion.js.map +0 -1
- package/lib/module/getReactNativeVersion.web.js +0 -4
- package/lib/module/getReactNativeVersion.web.js.map +0 -1
- package/lib/module/getShadowNodeFromRef.js +0 -20
- package/lib/module/getShadowNodeFromRef.js.map +0 -1
- package/lib/module/getShadowNodeFromRef.web.js +0 -8
- package/lib/module/getShadowNodeFromRef.web.js.map +0 -1
- package/lib/module/ghQueueMicrotask.js +0 -5
- package/lib/module/ghQueueMicrotask.js.map +0 -1
- package/lib/module/handlers/FlingGestureHandler.js +0 -11
- package/lib/module/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/module/handlers/ForceTouchGestureHandler.js +0 -31
- package/lib/module/handlers/ForceTouchGestureHandler.js.map +0 -1
- package/lib/module/handlers/LongPressGestureHandler.js +0 -13
- package/lib/module/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/module/handlers/PinchGestureHandler.js +0 -10
- package/lib/module/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/module/handlers/PressabilityDebugView.js +0 -3
- package/lib/module/handlers/PressabilityDebugView.js.map +0 -1
- package/lib/module/handlers/PressabilityDebugView.web.js +0 -5
- package/lib/module/handlers/PressabilityDebugView.web.js.map +0 -1
- package/lib/module/handlers/RotationGestureHandler.js +0 -10
- package/lib/module/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/module/handlers/gestureHandlerTypesCompat.js +0 -2
- package/lib/module/handlers/gestureHandlerTypesCompat.js.map +0 -1
- package/lib/module/handlers/gestures/eventReceiver.js +0 -131
- package/lib/module/handlers/gestures/eventReceiver.js.map +0 -1
- package/lib/module/handlers/gestures/flingGesture.js +0 -24
- package/lib/module/handlers/gestures/flingGesture.js.map +0 -1
- package/lib/module/handlers/gestures/forceTouchGesture.js +0 -56
- package/lib/module/handlers/gestures/forceTouchGesture.js.map +0 -1
- package/lib/module/handlers/gestures/gesture.js +0 -222
- package/lib/module/handlers/gestures/gesture.js.map +0 -1
- package/lib/module/handlers/gestures/gestureComposition.js +0 -90
- package/lib/module/handlers/gestures/gestureComposition.js.map +0 -1
- package/lib/module/handlers/gestures/gestureObjects.js +0 -71
- package/lib/module/handlers/gestures/gestureObjects.js.map +0 -1
- package/lib/module/handlers/gestures/gestureStateManager.js +0 -54
- package/lib/module/handlers/gestures/gestureStateManager.js.map +0 -1
- package/lib/module/handlers/gestures/gestureStateManager.web.js +0 -21
- package/lib/module/handlers/gestures/gestureStateManager.web.js.map +0 -1
- package/lib/module/handlers/gestures/hoverGesture.js +0 -62
- package/lib/module/handlers/gestures/hoverGesture.js.map +0 -1
- package/lib/module/handlers/gestures/longPressGesture.js +0 -25
- package/lib/module/handlers/gestures/longPressGesture.js.map +0 -1
- package/lib/module/handlers/gestures/manualGesture.js +0 -22
- package/lib/module/handlers/gestures/manualGesture.js.map +0 -1
- package/lib/module/handlers/gestures/nativeGesture.js +0 -24
- package/lib/module/handlers/gestures/nativeGesture.js.map +0 -1
- package/lib/module/handlers/gestures/panGesture.js +0 -140
- package/lib/module/handlers/gestures/panGesture.js.map +0 -1
- package/lib/module/handlers/gestures/pinchGesture.js +0 -36
- package/lib/module/handlers/gestures/pinchGesture.js.map +0 -1
- package/lib/module/handlers/gestures/reanimatedWrapper.js +0 -30
- package/lib/module/handlers/gestures/reanimatedWrapper.js.map +0 -1
- package/lib/module/handlers/gestures/rotationGesture.js +0 -36
- package/lib/module/handlers/gestures/rotationGesture.js.map +0 -1
- package/lib/module/handlers/gestures/tapGesture.js +0 -50
- package/lib/module/handlers/gestures/tapGesture.js.map +0 -1
- package/lib/module/handlers/handlersRegistry.js +0 -44
- package/lib/module/handlers/handlersRegistry.js.map +0 -1
- package/lib/module/jestUtils/index.js +0 -2
- package/lib/module/jestUtils/index.js.map +0 -1
- package/lib/module/jestUtils/jestUtils.js +0 -350
- package/lib/module/jestUtils/jestUtils.js.map +0 -1
- package/lib/module/mocks.js +0 -56
- package/lib/module/mocks.js.map +0 -1
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js +0 -3
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.js.map +0 -1
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js +0 -3
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.js.map +0 -1
- package/lib/module/typeUtils.js +0 -2
- package/lib/module/typeUtils.js.map +0 -1
- package/lib/module/utils.js +0 -44
- package/lib/module/utils.js.map +0 -1
- package/lib/module/web/constants.js +0 -8
- package/lib/module/web/constants.js.map +0 -1
- package/lib/module/web/detectors/RotationGestureDetector.js +0 -155
- package/lib/module/web/detectors/RotationGestureDetector.js.map +0 -1
- package/lib/module/web/detectors/ScaleGestureDetector.js +0 -145
- package/lib/module/web/detectors/ScaleGestureDetector.js.map +0 -1
- package/lib/module/web/handlers/FlingGestureHandler.js +0 -152
- package/lib/module/web/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/GestureHandler.js +0 -776
- package/lib/module/web/handlers/GestureHandler.js.map +0 -1
- package/lib/module/web/handlers/HoverGestureHandler.js +0 -47
- package/lib/module/web/handlers/HoverGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/LongPressGestureHandler.js +0 -136
- package/lib/module/web/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/ManualGestureHandler.js +0 -49
- package/lib/module/web/handlers/ManualGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/NativeViewGestureHandler.js +0 -163
- package/lib/module/web/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/PanGestureHandler.js +0 -433
- package/lib/module/web/handlers/PanGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/PinchGestureHandler.js +0 -159
- package/lib/module/web/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/RotationGestureHandler.js +0 -171
- package/lib/module/web/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/module/web/handlers/TapGestureHandler.js +0 -265
- package/lib/module/web/handlers/TapGestureHandler.js.map +0 -1
- package/lib/module/web/interfaces.js +0 -45
- package/lib/module/web/interfaces.js.map +0 -1
- package/lib/module/web/tools/CircularBuffer.js +0 -50
- package/lib/module/web/tools/CircularBuffer.js.map +0 -1
- package/lib/module/web/tools/EventManager.js +0 -118
- package/lib/module/web/tools/EventManager.js.map +0 -1
- package/lib/module/web/tools/GestureHandlerDelegate.js +0 -2
- package/lib/module/web/tools/GestureHandlerDelegate.js.map +0 -1
- package/lib/module/web/tools/GestureHandlerOrchestrator.js +0 -335
- package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +0 -1
- package/lib/module/web/tools/GestureHandlerWebDelegate.js +0 -102
- package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +0 -1
- package/lib/module/web/tools/InteractionManager.js +0 -105
- package/lib/module/web/tools/InteractionManager.js.map +0 -1
- package/lib/module/web/tools/LeastSquareSolver.js +0 -195
- package/lib/module/web/tools/LeastSquareSolver.js.map +0 -1
- package/lib/module/web/tools/NodeManager.js +0 -39
- package/lib/module/web/tools/NodeManager.js.map +0 -1
- package/lib/module/web/tools/PointerEventManager.js +0 -184
- package/lib/module/web/tools/PointerEventManager.js.map +0 -1
- package/lib/module/web/tools/PointerTracker.js +0 -213
- package/lib/module/web/tools/PointerTracker.js.map +0 -1
- package/lib/module/web/tools/TouchEventManager.js +0 -124
- package/lib/module/web/tools/TouchEventManager.js.map +0 -1
- package/lib/module/web/tools/VelocityTracker.js +0 -98
- package/lib/module/web/tools/VelocityTracker.js.map +0 -1
- package/lib/module/web/utils.js +0 -8
- package/lib/module/web/utils.js.map +0 -1
- package/lib/module/web_hammer/DiscreteGestureHandler.js +0 -94
- package/lib/module/web_hammer/DiscreteGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/DraggingGestureHandler.js +0 -40
- package/lib/module/web_hammer/DraggingGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/Errors.js +0 -7
- package/lib/module/web_hammer/Errors.js.map +0 -1
- package/lib/module/web_hammer/FlingGestureHandler.js +0 -156
- package/lib/module/web_hammer/FlingGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/GestureHandler.js +0 -563
- package/lib/module/web_hammer/GestureHandler.js.map +0 -1
- package/lib/module/web_hammer/IndiscreteGestureHandler.js +0 -44
- package/lib/module/web_hammer/IndiscreteGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/LongPressGestureHandler.js +0 -58
- package/lib/module/web_hammer/LongPressGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/NativeViewGestureHandler.js +0 -49
- package/lib/module/web_hammer/NativeViewGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/NodeManager.js +0 -33
- package/lib/module/web_hammer/NodeManager.js.map +0 -1
- package/lib/module/web_hammer/PanGestureHandler.js +0 -194
- package/lib/module/web_hammer/PanGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/PinchGestureHandler.js +0 -29
- package/lib/module/web_hammer/PinchGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/PressGestureHandler.js +0 -174
- package/lib/module/web_hammer/PressGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/RotationGestureHandler.js +0 -32
- package/lib/module/web_hammer/RotationGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/TapGestureHandler.js +0 -180
- package/lib/module/web_hammer/TapGestureHandler.js.map +0 -1
- package/lib/module/web_hammer/constants.js +0 -43
- package/lib/module/web_hammer/constants.js.map +0 -1
- package/lib/module/web_hammer/utils.js +0 -19
- package/lib/module/web_hammer/utils.js.map +0 -1
- package/lib/typescript/ActionType.d.ts +0 -7
- package/lib/typescript/Directions.d.ts +0 -7
- package/lib/typescript/EnableNewWebImplementation.d.ts +0 -3
- package/lib/typescript/GestureHandlerRootViewContext.d.ts +0 -3
- package/lib/typescript/PlatformConstants.d.ts +0 -5
- package/lib/typescript/PlatformConstants.web.d.ts +0 -4
- package/lib/typescript/RNGestureHandlerModule.macos.d.ts +0 -47
- package/lib/typescript/RNGestureHandlerModule.web.d.ts +0 -50
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts +0 -48
- package/lib/typescript/RNRenderer.d.ts +0 -1
- package/lib/typescript/RNRenderer.web.d.ts +0 -3
- package/lib/typescript/State.d.ts +0 -9
- package/lib/typescript/TouchEventType.d.ts +0 -8
- package/lib/typescript/components/DrawerLayout.d.ts +0 -148
- package/lib/typescript/components/GestureComponents.d.ts +0 -22
- package/lib/typescript/components/GestureComponents.web.d.ts +0 -8
- package/lib/typescript/components/GestureHandlerButton.web.d.ts +0 -4
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts +0 -6
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts +0 -6
- package/lib/typescript/components/Swipeable.d.ts +0 -178
- package/lib/typescript/components/gestureHandlerRootHOC.d.ts +0 -3
- package/lib/typescript/components/touchables/TouchableHighlight.d.ts +0 -36
- package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +0 -45
- package/lib/typescript/components/touchables/TouchableNativeFeedback.d.ts +0 -2
- package/lib/typescript/getReactNativeVersion.d.ts +0 -4
- package/lib/typescript/getReactNativeVersion.web.d.ts +0 -1
- package/lib/typescript/getShadowNodeFromRef.d.ts +0 -1
- package/lib/typescript/getShadowNodeFromRef.web.d.ts +0 -1
- package/lib/typescript/ghQueueMicrotask.d.ts +0 -1
- package/lib/typescript/handlers/FlingGestureHandler.d.ts +0 -34
- package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +0 -44
- package/lib/typescript/handlers/LongPressGestureHandler.d.ts +0 -56
- package/lib/typescript/handlers/PinchGestureHandler.d.ts +0 -29
- package/lib/typescript/handlers/PressabilityDebugView.d.ts +0 -1
- package/lib/typescript/handlers/PressabilityDebugView.web.d.ts +0 -1
- package/lib/typescript/handlers/RotationGestureHandler.d.ts +0 -29
- package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +0 -42
- package/lib/typescript/handlers/gestures/eventReceiver.d.ts +0 -4
- package/lib/typescript/handlers/gestures/flingGesture.d.ts +0 -9
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +0 -15
- package/lib/typescript/handlers/gestures/gesture.d.ts +0 -110
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts +0 -21
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts +0 -41
- package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +0 -9
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +0 -4
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts +0 -32
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts +0 -9
- package/lib/typescript/handlers/gestures/manualGesture.d.ts +0 -7
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts +0 -9
- package/lib/typescript/handlers/gestures/panGesture.d.ts +0 -26
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts +0 -11
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +0 -14
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts +0 -12
- package/lib/typescript/handlers/gestures/tapGesture.d.ts +0 -14
- package/lib/typescript/handlers/handlersRegistry.d.ts +0 -14
- package/lib/typescript/jestUtils/index.d.ts +0 -1
- package/lib/typescript/jestUtils/jestUtils.d.ts +0 -28
- package/lib/typescript/mocks.d.ts +0 -44
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +0 -14
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +0 -6
- package/lib/typescript/typeUtils.d.ts +0 -1
- package/lib/typescript/utils.d.ts +0 -8
- package/lib/typescript/web/constants.d.ts +0 -7
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +0 -30
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +0 -29
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +0 -27
- package/lib/typescript/web/handlers/GestureHandler.d.ts +0 -90
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +0 -10
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +0 -26
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +0 -12
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +0 -24
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts +0 -55
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +0 -28
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +0 -29
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts +0 -39
- package/lib/typescript/web/interfaces.d.ts +0 -141
- package/lib/typescript/web/tools/CircularBuffer.d.ts +0 -11
- package/lib/typescript/web/tools/EventManager.d.ts +0 -34
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +0 -22
- package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +0 -29
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +0 -21
- package/lib/typescript/web/tools/InteractionManager.d.ts +0 -17
- package/lib/typescript/web/tools/LeastSquareSolver.d.ts +0 -12
- package/lib/typescript/web/tools/NodeManager.d.ts +0 -11
- package/lib/typescript/web/tools/PointerEventManager.d.ts +0 -8
- package/lib/typescript/web/tools/PointerTracker.d.ts +0 -53
- package/lib/typescript/web/tools/TouchEventManager.d.ts +0 -6
- package/lib/typescript/web/tools/VelocityTracker.d.ts +0 -13
- package/lib/typescript/web/utils.d.ts +0 -4
- package/lib/typescript/web_hammer/DiscreteGestureHandler.d.ts +0 -20
- package/lib/typescript/web_hammer/DraggingGestureHandler.d.ts +0 -15
- package/lib/typescript/web_hammer/Errors.d.ts +0 -3
- package/lib/typescript/web_hammer/FlingGestureHandler.d.ts +0 -43
- package/lib/typescript/web_hammer/GestureHandler.d.ts +0 -145
- package/lib/typescript/web_hammer/IndiscreteGestureHandler.d.ts +0 -40
- package/lib/typescript/web_hammer/LongPressGestureHandler.d.ts +0 -38
- package/lib/typescript/web_hammer/NativeViewGestureHandler.d.ts +0 -7
- package/lib/typescript/web_hammer/NodeManager.d.ts +0 -8
- package/lib/typescript/web_hammer/PanGestureHandler.d.ts +0 -56
- package/lib/typescript/web_hammer/PinchGestureHandler.d.ts +0 -13
- package/lib/typescript/web_hammer/PressGestureHandler.d.ts +0 -83
- package/lib/typescript/web_hammer/RotationGestureHandler.d.ts +0 -13
- package/lib/typescript/web_hammer/TapGestureHandler.d.ts +0 -57
- package/lib/typescript/web_hammer/constants.d.ts +0 -39
- package/lib/typescript/web_hammer/utils.d.ts +0 -9
- package/src/ActionType.ts +0 -9
- package/src/Directions.ts +0 -9
- package/src/EnableNewWebImplementation.ts +0 -35
- package/src/GestureHandlerRootViewContext.ts +0 -3
- package/src/PlatformConstants.ts +0 -8
- package/src/PlatformConstants.web.ts +0 -5
- package/src/RNGestureHandlerModule.macos.ts +0 -133
- package/src/RNGestureHandlerModule.web.ts +0 -146
- package/src/RNGestureHandlerModule.windows.ts +0 -144
- package/src/RNRenderer.ts +0 -3
- package/src/RNRenderer.web.ts +0 -3
- package/src/State.ts +0 -13
- package/src/TouchEventType.ts +0 -10
- package/src/components/DrawerLayout.tsx +0 -743
- package/src/components/GestureComponents.tsx +0 -148
- package/src/components/GestureComponents.web.tsx +0 -41
- package/src/components/GestureHandlerButton.web.tsx +0 -6
- package/src/components/GestureHandlerRootView.android.tsx +0 -24
- package/src/components/GestureHandlerRootView.web.tsx +0 -17
- package/src/components/Swipeable.tsx +0 -584
- package/src/components/gestureHandlerRootHOC.tsx +0 -32
- package/src/components/touchables/TouchableHighlight.tsx +0 -115
- package/src/components/touchables/TouchableNativeFeedback.android.tsx +0 -91
- package/src/components/touchables/TouchableNativeFeedback.tsx +0 -3
- package/src/getReactNativeVersion.ts +0 -11
- package/src/getReactNativeVersion.web.ts +0 -3
- package/src/getShadowNodeFromRef.ts +0 -22
- package/src/getShadowNodeFromRef.web.ts +0 -7
- package/src/ghQueueMicrotask.ts +0 -5
- package/src/handlers/FlingGestureHandler.ts +0 -59
- package/src/handlers/ForceTouchGestureHandler.ts +0 -90
- package/src/handlers/LongPressGestureHandler.ts +0 -88
- package/src/handlers/PinchGestureHandler.ts +0 -48
- package/src/handlers/PressabilityDebugView.tsx +0 -2
- package/src/handlers/PressabilityDebugView.web.tsx +0 -4
- package/src/handlers/RotationGestureHandler.ts +0 -48
- package/src/handlers/gestureHandlerTypesCompat.ts +0 -106
- package/src/handlers/gestures/eventReceiver.ts +0 -155
- package/src/handlers/gestures/flingGesture.ts +0 -27
- package/src/handlers/gestures/forceTouchGesture.ts +0 -74
- package/src/handlers/gestures/gesture.ts +0 -349
- package/src/handlers/gestures/gestureComposition.ts +0 -122
- package/src/handlers/gestures/gestureObjects.ts +0 -84
- package/src/handlers/gestures/gestureStateManager.ts +0 -62
- package/src/handlers/gestures/gestureStateManager.web.ts +0 -24
- package/src/handlers/gestures/hoverGesture.ts +0 -83
- package/src/handlers/gestures/longPressGesture.ts +0 -28
- package/src/handlers/gestures/manualGesture.ts +0 -31
- package/src/handlers/gestures/nativeGesture.ts +0 -27
- package/src/handlers/gestures/panGesture.ts +0 -152
- package/src/handlers/gestures/pinchGesture.ts +0 -51
- package/src/handlers/gestures/reanimatedWrapper.ts +0 -56
- package/src/handlers/gestures/rotationGesture.ts +0 -51
- package/src/handlers/gestures/tapGesture.ts +0 -53
- package/src/handlers/handlersRegistry.ts +0 -60
- package/src/jestUtils/index.ts +0 -1
- package/src/jestUtils/jestUtils.ts +0 -505
- package/src/mocks.ts +0 -67
- package/src/specs/RNGestureHandlerButtonNativeComponent.ts +0 -18
- package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -6
- package/src/typeUtils.ts +0 -1
- package/src/utils.ts +0 -54
- package/src/web/constants.ts +0 -8
- package/src/web/detectors/RotationGestureDetector.ts +0 -168
- package/src/web/detectors/ScaleGestureDetector.ts +0 -172
- package/src/web/handlers/FlingGestureHandler.ts +0 -161
- package/src/web/handlers/GestureHandler.ts +0 -849
- package/src/web/handlers/HoverGestureHandler.ts +0 -43
- package/src/web/handlers/LongPressGestureHandler.ts +0 -125
- package/src/web/handlers/ManualGestureHandler.ts +0 -43
- package/src/web/handlers/NativeViewGestureHandler.ts +0 -167
- package/src/web/handlers/PanGestureHandler.ts +0 -485
- package/src/web/handlers/PinchGestureHandler.ts +0 -158
- package/src/web/handlers/RotationGestureHandler.ts +0 -172
- package/src/web/handlers/TapGestureHandler.ts +0 -273
- package/src/web/interfaces.ts +0 -167
- package/src/web/tools/EventManager.ts +0 -104
- package/src/web/tools/GestureHandlerDelegate.ts +0 -23
- package/src/web/tools/GestureHandlerOrchestrator.ts +0 -389
- package/src/web/tools/GestureHandlerWebDelegate.ts +0 -115
- package/src/web/tools/NodeManager.ts +0 -43
- package/src/web/tools/PointerEventManager.ts +0 -202
- package/src/web/tools/TouchEventManager.ts +0 -167
- package/src/web/utils.ts +0 -8
- package/src/web_hammer/DiscreteGestureHandler.ts +0 -82
- package/src/web_hammer/DraggingGestureHandler.ts +0 -34
- package/src/web_hammer/Errors.ts +0 -7
- package/src/web_hammer/FlingGestureHandler.ts +0 -134
- package/src/web_hammer/GestureHandler.ts +0 -599
- package/src/web_hammer/IndiscreteGestureHandler.ts +0 -33
- package/src/web_hammer/LongPressGestureHandler.ts +0 -56
- package/src/web_hammer/NativeViewGestureHandler.ts +0 -47
- package/src/web_hammer/NodeManager.ts +0 -42
- package/src/web_hammer/PanGestureHandler.ts +0 -226
- package/src/web_hammer/PinchGestureHandler.ts +0 -25
- package/src/web_hammer/PressGestureHandler.ts +0 -167
- package/src/web_hammer/RotationGestureHandler.ts +0 -25
- package/src/web_hammer/TapGestureHandler.ts +0 -172
- package/src/web_hammer/constants.ts +0 -48
- package/src/web_hammer/utils.ts +0 -24
package/lib/commonjs/init.js
CHANGED
@@ -5,27 +5,19 @@ Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
});
|
6
6
|
exports.initialize = initialize;
|
7
7
|
exports.maybeInitializeFabric = maybeInitializeFabric;
|
8
|
-
|
9
|
-
var
|
10
|
-
|
11
|
-
var _RNGestureHandlerModule = _interopRequireDefault(require("./RNGestureHandlerModule"));
|
12
|
-
|
13
|
-
var _utils = require("./utils");
|
14
|
-
|
15
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
16
|
-
|
8
|
+
var _eventReceiver = require("react-native-gesture-handler/src/handlers/gestures/eventReceiver");
|
9
|
+
var _RNGestureHandlerModule = require("./RNGestureHandlerModule");
|
10
|
+
var _utils = require("react-native-gesture-handler/src/utils");
|
17
11
|
let fabricInitialized = false;
|
18
|
-
|
19
12
|
function initialize() {
|
20
13
|
(0, _eventReceiver.startListening)();
|
21
|
-
}
|
22
|
-
// method during render of GestureHandlerRootView
|
23
|
-
|
14
|
+
}
|
24
15
|
|
16
|
+
// since isFabric() may give wrong results before the first render, we call this
|
17
|
+
// method during render of GestureHandlerRootView
|
25
18
|
function maybeInitializeFabric() {
|
26
19
|
if ((0, _utils.isFabric)() && !fabricInitialized) {
|
27
|
-
_RNGestureHandlerModule.
|
28
|
-
|
20
|
+
_RNGestureHandlerModule.RNGestureHandlerModule.install();
|
29
21
|
fabricInitialized = true;
|
30
22
|
}
|
31
23
|
}
|
package/lib/commonjs/init.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"names":["_eventReceiver","require","_RNGestureHandlerModule","_utils","fabricInitialized","initialize","startListening","maybeInitializeFabric","isFabric","RNGestureHandlerModule","install"],"sourceRoot":"..\\..\\src","sources":["init.ts"],"mappings":";;;;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AACA,IAAAC,uBAAA,GAAAD,OAAA;AACA,IAAAE,MAAA,GAAAF,OAAA;AAEA,IAAIG,iBAAiB,GAAG,KAAK;AAEtB,SAASC,UAAUA,CAAA,EAAG;EAC3B,IAAAC,6BAAc,EAAC,CAAC;AAClB;;AAEA;AACA;AACO,SAASC,qBAAqBA,CAAA,EAAG;EACtC,IAAI,IAAAC,eAAQ,EAAC,CAAC,IAAI,CAACJ,iBAAiB,EAAE;IACpCK,8CAAsB,CAACC,OAAO,CAAC,CAAC;IAChCN,iBAAiB,GAAG,IAAI;EAC1B;AACF"}
|
@@ -1,19 +1,3 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
const {
|
4
|
-
RNGestureHandlerModule
|
5
|
-
} = NativeModules;
|
6
|
-
|
7
|
-
if (RNGestureHandlerModule == null) {
|
8
|
-
console.error(tagMessage(`react-native-gesture-handler module was not found. Make sure you're running your app on the native platform and your code is linked properly (cd ios && pod install && cd ..).
|
9
|
-
|
10
|
-
For installation instructions, please refer to https://docs.swmansion.com/react-native-gesture-handler/docs/#installation`.split('\n').map(line => line.trim()).join('\n')));
|
11
|
-
}
|
12
|
-
|
13
|
-
if (RNGestureHandlerModule && RNGestureHandlerModule.flushOperations === undefined) {
|
14
|
-
RNGestureHandlerModule.flushOperations = () => {// NO-OP if not defined
|
15
|
-
};
|
16
|
-
}
|
17
|
-
|
18
|
-
export default RNGestureHandlerModule;
|
1
|
+
import { TurboModuleRegistry } from 'react-native';
|
2
|
+
export const RNGestureHandlerModule = TurboModuleRegistry.get('RNGestureHandlerModule');
|
19
3
|
//# sourceMappingURL=RNGestureHandlerModule.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"names":["TurboModuleRegistry","RNGestureHandlerModule","get"],"sourceRoot":"..\\..\\src","sources":["RNGestureHandlerModule.ts"],"mappings":"AAAA,SAAqBA,mBAAmB,QAAO,cAAc;AAK7D,OAAO,MAAMC,sBAAsB,GAAGD,mBAAmB,CAACE,GAAG,CAAO,wBAAwB,CAAE"}
|
@@ -1,89 +1,77 @@
|
|
1
|
-
function _extends() { _extends = Object.assign
|
2
|
-
|
3
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
4
|
-
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
5
2
|
import * as React from 'react';
|
6
3
|
import { Animated, Platform, processColor, StyleSheet } from 'react-native';
|
7
4
|
import createNativeWrapper from '../handlers/createNativeWrapper';
|
8
5
|
import GestureHandlerButton from './GestureHandlerButton';
|
9
|
-
import { State } from '
|
6
|
+
import { State } from 'react-native-gesture-handler/src/State';
|
10
7
|
export const RawButton = createNativeWrapper(GestureHandlerButton, {
|
11
8
|
shouldCancelWhenOutside: false,
|
12
9
|
shouldActivateOnStart: false
|
13
10
|
});
|
14
11
|
export class BaseButton extends React.Component {
|
12
|
+
static defaultProps = {
|
13
|
+
delayLongPress: 600
|
14
|
+
};
|
15
15
|
constructor(props) {
|
16
16
|
super(props);
|
17
|
-
|
18
|
-
_defineProperty(this, "lastActive", void 0);
|
19
|
-
|
20
|
-
_defineProperty(this, "longPressTimeout", void 0);
|
21
|
-
|
22
|
-
_defineProperty(this, "longPressDetected", void 0);
|
23
|
-
|
24
|
-
_defineProperty(this, "handleEvent", ({
|
25
|
-
nativeEvent
|
26
|
-
}) => {
|
27
|
-
const {
|
28
|
-
state,
|
29
|
-
oldState,
|
30
|
-
pointerInside
|
31
|
-
} = nativeEvent;
|
32
|
-
const active = pointerInside && state === State.ACTIVE;
|
33
|
-
|
34
|
-
if (active !== this.lastActive && this.props.onActiveStateChange) {
|
35
|
-
this.props.onActiveStateChange(active);
|
36
|
-
}
|
37
|
-
|
38
|
-
if (!this.longPressDetected && oldState === State.ACTIVE && state !== State.CANCELLED && this.lastActive && this.props.onPress) {
|
39
|
-
this.props.onPress(active);
|
40
|
-
}
|
41
|
-
|
42
|
-
if (!this.lastActive && // NativeViewGestureHandler sends different events based on platform
|
43
|
-
state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) && pointerInside) {
|
44
|
-
this.longPressDetected = false;
|
45
|
-
|
46
|
-
if (this.props.onLongPress) {
|
47
|
-
this.longPressTimeout = setTimeout(this.onLongPress, this.props.delayLongPress);
|
48
|
-
}
|
49
|
-
} else if ( // cancel longpress timeout if it's set and the finger moved out of the view
|
50
|
-
state === State.ACTIVE && !pointerInside && this.longPressTimeout !== undefined) {
|
51
|
-
clearTimeout(this.longPressTimeout);
|
52
|
-
this.longPressTimeout = undefined;
|
53
|
-
} else if ( // cancel longpress timeout if it's set and the gesture has finished
|
54
|
-
this.longPressTimeout !== undefined && (state === State.END || state === State.CANCELLED || state === State.FAILED)) {
|
55
|
-
clearTimeout(this.longPressTimeout);
|
56
|
-
this.longPressTimeout = undefined;
|
57
|
-
}
|
58
|
-
|
59
|
-
this.lastActive = active;
|
60
|
-
});
|
61
|
-
|
62
|
-
_defineProperty(this, "onLongPress", () => {
|
63
|
-
var _this$props$onLongPre, _this$props;
|
64
|
-
|
65
|
-
this.longPressDetected = true;
|
66
|
-
(_this$props$onLongPre = (_this$props = this.props).onLongPress) === null || _this$props$onLongPre === void 0 ? void 0 : _this$props$onLongPre.call(_this$props);
|
67
|
-
});
|
68
|
-
|
69
|
-
_defineProperty(this, "onHandlerStateChange", e => {
|
70
|
-
var _this$props$onHandler, _this$props2;
|
71
|
-
|
72
|
-
(_this$props$onHandler = (_this$props2 = this.props).onHandlerStateChange) === null || _this$props$onHandler === void 0 ? void 0 : _this$props$onHandler.call(_this$props2, e);
|
73
|
-
this.handleEvent(e);
|
74
|
-
});
|
75
|
-
|
76
|
-
_defineProperty(this, "onGestureEvent", e => {
|
77
|
-
var _this$props$onGesture, _this$props3;
|
78
|
-
|
79
|
-
(_this$props$onGesture = (_this$props3 = this.props).onGestureEvent) === null || _this$props$onGesture === void 0 ? void 0 : _this$props$onGesture.call(_this$props3, e);
|
80
|
-
this.handleEvent(e); // TODO: maybe it is not correct
|
81
|
-
});
|
82
|
-
|
83
17
|
this.lastActive = false;
|
84
18
|
this.longPressDetected = false;
|
85
19
|
}
|
86
|
-
|
20
|
+
handleEvent = ({
|
21
|
+
nativeEvent
|
22
|
+
}) => {
|
23
|
+
const {
|
24
|
+
state,
|
25
|
+
oldState,
|
26
|
+
pointerInside
|
27
|
+
} = nativeEvent;
|
28
|
+
const active = pointerInside && state === State.ACTIVE;
|
29
|
+
if (active !== this.lastActive && this.props.onActiveStateChange) {
|
30
|
+
this.props.onActiveStateChange(active);
|
31
|
+
}
|
32
|
+
if (!this.longPressDetected && oldState === State.ACTIVE && state !== State.CANCELLED && this.lastActive && this.props.onPress) {
|
33
|
+
this.props.onPress(active);
|
34
|
+
}
|
35
|
+
if (!this.lastActive &&
|
36
|
+
// NativeViewGestureHandler sends different events based on platform
|
37
|
+
state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) && pointerInside) {
|
38
|
+
this.longPressDetected = false;
|
39
|
+
if (this.props.onLongPress) {
|
40
|
+
this.longPressTimeout = setTimeout(this.onLongPress, this.props.delayLongPress);
|
41
|
+
}
|
42
|
+
} else if (
|
43
|
+
// cancel longpress timeout if it's set and the finger moved out of the view
|
44
|
+
state === State.ACTIVE && !pointerInside && this.longPressTimeout !== undefined) {
|
45
|
+
clearTimeout(this.longPressTimeout);
|
46
|
+
this.longPressTimeout = undefined;
|
47
|
+
} else if (
|
48
|
+
// cancel longpress timeout if it's set and the gesture has finished
|
49
|
+
this.longPressTimeout !== undefined && (state === State.END || state === State.CANCELLED || state === State.FAILED)) {
|
50
|
+
clearTimeout(this.longPressTimeout);
|
51
|
+
this.longPressTimeout = undefined;
|
52
|
+
}
|
53
|
+
this.lastActive = active;
|
54
|
+
};
|
55
|
+
onLongPress = () => {
|
56
|
+
var _this$props$onLongPre, _this$props;
|
57
|
+
this.longPressDetected = true;
|
58
|
+
(_this$props$onLongPre = (_this$props = this.props).onLongPress) === null || _this$props$onLongPre === void 0 || _this$props$onLongPre.call(_this$props);
|
59
|
+
};
|
60
|
+
|
61
|
+
// Normally, the parent would execute it's handler first, then forward the
|
62
|
+
// event to listeners. However, here our handler is virtually only forwarding
|
63
|
+
// events to listeners, so we reverse the order to keep the proper order of
|
64
|
+
// the callbacks (from "raw" ones to "processed").
|
65
|
+
onHandlerStateChange = e => {
|
66
|
+
var _this$props$onHandler, _this$props2;
|
67
|
+
(_this$props$onHandler = (_this$props2 = this.props).onHandlerStateChange) === null || _this$props$onHandler === void 0 || _this$props$onHandler.call(_this$props2, e);
|
68
|
+
this.handleEvent(e);
|
69
|
+
};
|
70
|
+
onGestureEvent = e => {
|
71
|
+
var _this$props$onGesture, _this$props3;
|
72
|
+
(_this$props$onGesture = (_this$props3 = this.props).onGestureEvent) === null || _this$props$onGesture === void 0 || _this$props$onGesture.call(_this$props3, e);
|
73
|
+
this.handleEvent(e); // TODO: maybe it is not correct
|
74
|
+
};
|
87
75
|
render() {
|
88
76
|
const {
|
89
77
|
rippleColor,
|
@@ -96,13 +84,7 @@ export class BaseButton extends React.Component {
|
|
96
84
|
onHandlerStateChange: this.onHandlerStateChange
|
97
85
|
}));
|
98
86
|
}
|
99
|
-
|
100
87
|
}
|
101
|
-
|
102
|
-
_defineProperty(BaseButton, "defaultProps", {
|
103
|
-
delayLongPress: 600
|
104
|
-
});
|
105
|
-
|
106
88
|
const AnimatedBaseButton = Animated.createAnimatedComponent(BaseButton);
|
107
89
|
const btnStyles = StyleSheet.create({
|
108
90
|
underlay: {
|
@@ -114,31 +96,28 @@ const btnStyles = StyleSheet.create({
|
|
114
96
|
}
|
115
97
|
});
|
116
98
|
export class RectButton extends React.Component {
|
99
|
+
static defaultProps = {
|
100
|
+
activeOpacity: 0.105,
|
101
|
+
underlayColor: 'black'
|
102
|
+
};
|
117
103
|
constructor(props) {
|
118
104
|
super(props);
|
119
|
-
|
120
|
-
_defineProperty(this, "opacity", void 0);
|
121
|
-
|
122
|
-
_defineProperty(this, "onActiveStateChange", active => {
|
123
|
-
var _this$props$onActiveS, _this$props4;
|
124
|
-
|
125
|
-
if (Platform.OS !== 'android') {
|
126
|
-
this.opacity.setValue(active ? this.props.activeOpacity : 0);
|
127
|
-
}
|
128
|
-
|
129
|
-
(_this$props$onActiveS = (_this$props4 = this.props).onActiveStateChange) === null || _this$props$onActiveS === void 0 ? void 0 : _this$props$onActiveS.call(_this$props4, active);
|
130
|
-
});
|
131
|
-
|
132
105
|
this.opacity = new Animated.Value(0);
|
133
106
|
}
|
134
|
-
|
107
|
+
onActiveStateChange = active => {
|
108
|
+
var _this$props$onActiveS, _this$props4;
|
109
|
+
if (Platform.OS !== 'android') {
|
110
|
+
this.opacity.setValue(active ? this.props.activeOpacity : 0);
|
111
|
+
}
|
112
|
+
(_this$props$onActiveS = (_this$props4 = this.props).onActiveStateChange) === null || _this$props$onActiveS === void 0 || _this$props$onActiveS.call(_this$props4, active);
|
113
|
+
};
|
135
114
|
render() {
|
136
115
|
const {
|
137
116
|
children,
|
138
117
|
style,
|
139
118
|
...rest
|
140
119
|
} = this.props;
|
141
|
-
const resolvedStyle = StyleSheet.flatten(style
|
120
|
+
const resolvedStyle = StyleSheet.flatten(style ?? {});
|
142
121
|
return /*#__PURE__*/React.createElement(BaseButton, _extends({}, rest, {
|
143
122
|
style: resolvedStyle,
|
144
123
|
onActiveStateChange: this.onActiveStateChange
|
@@ -154,33 +133,23 @@ export class RectButton extends React.Component {
|
|
154
133
|
}]
|
155
134
|
}), children);
|
156
135
|
}
|
157
|
-
|
158
136
|
}
|
159
|
-
|
160
|
-
_defineProperty(RectButton, "defaultProps", {
|
161
|
-
activeOpacity: 0.105,
|
162
|
-
underlayColor: 'black'
|
163
|
-
});
|
164
|
-
|
165
137
|
export class BorderlessButton extends React.Component {
|
138
|
+
static defaultProps = {
|
139
|
+
activeOpacity: 0.3,
|
140
|
+
borderless: true
|
141
|
+
};
|
166
142
|
constructor(props) {
|
167
143
|
super(props);
|
168
|
-
|
169
|
-
_defineProperty(this, "opacity", void 0);
|
170
|
-
|
171
|
-
_defineProperty(this, "onActiveStateChange", active => {
|
172
|
-
var _this$props$onActiveS2, _this$props5;
|
173
|
-
|
174
|
-
if (Platform.OS !== 'android') {
|
175
|
-
this.opacity.setValue(active ? this.props.activeOpacity : 1);
|
176
|
-
}
|
177
|
-
|
178
|
-
(_this$props$onActiveS2 = (_this$props5 = this.props).onActiveStateChange) === null || _this$props$onActiveS2 === void 0 ? void 0 : _this$props$onActiveS2.call(_this$props5, active);
|
179
|
-
});
|
180
|
-
|
181
144
|
this.opacity = new Animated.Value(1);
|
182
145
|
}
|
183
|
-
|
146
|
+
onActiveStateChange = active => {
|
147
|
+
var _this$props$onActiveS2, _this$props5;
|
148
|
+
if (Platform.OS !== 'android') {
|
149
|
+
this.opacity.setValue(active ? this.props.activeOpacity : 1);
|
150
|
+
}
|
151
|
+
(_this$props$onActiveS2 = (_this$props5 = this.props).onActiveStateChange) === null || _this$props$onActiveS2 === void 0 || _this$props$onActiveS2.call(_this$props5, active);
|
152
|
+
};
|
184
153
|
render() {
|
185
154
|
const {
|
186
155
|
children,
|
@@ -194,13 +163,6 @@ export class BorderlessButton extends React.Component {
|
|
194
163
|
}]
|
195
164
|
}), children);
|
196
165
|
}
|
197
|
-
|
198
166
|
}
|
199
|
-
|
200
|
-
_defineProperty(BorderlessButton, "defaultProps", {
|
201
|
-
activeOpacity: 0.3,
|
202
|
-
borderless: true
|
203
|
-
});
|
204
|
-
|
205
167
|
export { default as PureNativeButton } from './GestureHandlerButton';
|
206
168
|
//# sourceMappingURL=GestureButtons.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["GestureButtons.tsx"],"names":["React","Animated","Platform","processColor","StyleSheet","createNativeWrapper","GestureHandlerButton","State","RawButton","shouldCancelWhenOutside","shouldActivateOnStart","BaseButton","Component","constructor","props","nativeEvent","state","oldState","pointerInside","active","ACTIVE","lastActive","onActiveStateChange","longPressDetected","CANCELLED","onPress","OS","BEGAN","onLongPress","longPressTimeout","setTimeout","delayLongPress","undefined","clearTimeout","END","FAILED","e","onHandlerStateChange","handleEvent","onGestureEvent","render","rippleColor","rest","AnimatedBaseButton","createAnimatedComponent","btnStyles","create","underlay","position","left","right","bottom","top","RectButton","opacity","setValue","activeOpacity","Value","children","style","resolvedStyle","flatten","backgroundColor","underlayColor","borderRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","BorderlessButton","borderless","default","PureNativeButton"],"mappings":";;;;AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SACEC,QADF,EAEEC,QAFF,EAGEC,YAHF,EAIEC,UAJF,QAOO,cAPP;AASA,OAAOC,mBAAP,MAAgC,iCAAhC;AACA,OAAOC,oBAAP,MAAiC,wBAAjC;AACA,SAASC,KAAT,QAAsB,UAAtB;AA2GA,OAAO,MAAMC,SAAS,GAAGH,mBAAmB,CAACC,oBAAD,EAAuB;AACjEG,EAAAA,uBAAuB,EAAE,KADwC;AAEjEC,EAAAA,qBAAqB,EAAE;AAF0C,CAAvB,CAArC;AAKP,OAAO,MAAMC,UAAN,SAAyBX,KAAK,CAACY,SAA/B,CAA0D;AAS/DC,EAAAA,WAAW,CAACC,KAAD,EAAyB;AAClC,UAAMA,KAAN;;AADkC;;AAAA;;AAAA;;AAAA,yCAMd,CAAC;AACrBC,MAAAA;AADqB,KAAD,KAE0C;AAC9D,YAAM;AAAEC,QAAAA,KAAF;AAASC,QAAAA,QAAT;AAAmBC,QAAAA;AAAnB,UAAqCH,WAA3C;AACA,YAAMI,MAAM,GAAGD,aAAa,IAAIF,KAAK,KAAKT,KAAK,CAACa,MAAhD;;AAEA,UAAID,MAAM,KAAK,KAAKE,UAAhB,IAA8B,KAAKP,KAAL,CAAWQ,mBAA7C,EAAkE;AAChE,aAAKR,KAAL,CAAWQ,mBAAX,CAA+BH,MAA/B;AACD;;AAED,UACE,CAAC,KAAKI,iBAAN,IACAN,QAAQ,KAAKV,KAAK,CAACa,MADnB,IAEAJ,KAAK,KAAKT,KAAK,CAACiB,SAFhB,IAGA,KAAKH,UAHL,IAIA,KAAKP,KAAL,CAAWW,OALb,EAME;AACA,aAAKX,KAAL,CAAWW,OAAX,CAAmBN,MAAnB;AACD;;AAED,UACE,CAAC,KAAKE,UAAN,IACA;AACAL,MAAAA,KAAK,MAAMd,QAAQ,CAACwB,EAAT,KAAgB,SAAhB,GAA4BnB,KAAK,CAACa,MAAlC,GAA2Cb,KAAK,CAACoB,KAAvD,CAFL,IAGAT,aAJF,EAKE;AACA,aAAKK,iBAAL,GAAyB,KAAzB;;AACA,YAAI,KAAKT,KAAL,CAAWc,WAAf,EAA4B;AAC1B,eAAKC,gBAAL,GAAwBC,UAAU,CAChC,KAAKF,WAD2B,EAEhC,KAAKd,KAAL,CAAWiB,cAFqB,CAAlC;AAID;AACF,OAbD,MAaO,KACL;AACAf,MAAAA,KAAK,KAAKT,KAAK,CAACa,MAAhB,IACA,CAACF,aADD,IAEA,KAAKW,gBAAL,KAA0BG,SAJrB,EAKL;AACAC,QAAAA,YAAY,CAAC,KAAKJ,gBAAN,CAAZ;AACA,aAAKA,gBAAL,GAAwBG,SAAxB;AACD,OARM,MAQA,KACL;AACA,WAAKH,gBAAL,KAA0BG,SAA1B,KACChB,KAAK,KAAKT,KAAK,CAAC2B,GAAhB,IACClB,KAAK,KAAKT,KAAK,CAACiB,SADjB,IAECR,KAAK,KAAKT,KAAK,CAAC4B,MAHlB,CAFK,EAML;AACAF,QAAAA,YAAY,CAAC,KAAKJ,gBAAN,CAAZ;AACA,aAAKA,gBAAL,GAAwBG,SAAxB;AACD;;AAED,WAAKX,UAAL,GAAkBF,MAAlB;AACD,KA3DmC;;AAAA,yCA6Dd,MAAM;AAAA;;AAC1B,WAAKI,iBAAL,GAAyB,IAAzB;AACA,mDAAKT,KAAL,EAAWc,WAAX;AACD,KAhEmC;;AAAA,kDAuElCQ,CAD6B,IAE1B;AAAA;;AACH,oDAAKtB,KAAL,EAAWuB,oBAAX,mGAAkCD,CAAlC;AACA,WAAKE,WAAL,CAAiBF,CAAjB;AACD,KA3EmC;;AAAA,4CA8ElCA,CADuB,IAEpB;AAAA;;AACH,oDAAKtB,KAAL,EAAWyB,cAAX,mGAA4BH,CAA5B;AACA,WAAKE,WAAL,CACEF,CADF,EAFG,CAIA;AACJ,KApFmC;;AAElC,SAAKf,UAAL,GAAkB,KAAlB;AACA,SAAKE,iBAAL,GAAyB,KAAzB;AACD;;AAkFDiB,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEC,MAAAA,WAAF;AAAe,SAAGC;AAAlB,QAA2B,KAAK5B,KAAtC;AAEA,wBACE,oBAAC,SAAD;AACE,MAAA,WAAW,EAAEX,YAAY,CAACsC,WAAD;AAD3B,OAEMC,IAFN;AAGE,MAAA,cAAc,EAAE,KAAKH,cAHvB;AAIE,MAAA,oBAAoB,EAAE,KAAKF;AAJ7B,OADF;AAQD;;AA1G8D;;gBAApD1B,U,kBACW;AACpBoB,EAAAA,cAAc,EAAE;AADI,C;;AA4GxB,MAAMY,kBAAkB,GAAG1C,QAAQ,CAAC2C,uBAAT,CAAiCjC,UAAjC,CAA3B;AAEA,MAAMkC,SAAS,GAAGzC,UAAU,CAAC0C,MAAX,CAAkB;AAClCC,EAAAA,QAAQ,EAAE;AACRC,IAAAA,QAAQ,EAAE,UADF;AAERC,IAAAA,IAAI,EAAE,CAFE;AAGRC,IAAAA,KAAK,EAAE,CAHC;AAIRC,IAAAA,MAAM,EAAE,CAJA;AAKRC,IAAAA,GAAG,EAAE;AALG;AADwB,CAAlB,CAAlB;AAUA,OAAO,MAAMC,UAAN,SAAyBrD,KAAK,CAACY,SAA/B,CAA0D;AAQ/DC,EAAAA,WAAW,CAACC,KAAD,EAAyB;AAClC,UAAMA,KAAN;;AADkC;;AAAA,iDAKLK,MAAD,IAAqB;AAAA;;AACjD,UAAIjB,QAAQ,CAACwB,EAAT,KAAgB,SAApB,EAA+B;AAC7B,aAAK4B,OAAL,CAAaC,QAAb,CAAsBpC,MAAM,GAAG,KAAKL,KAAL,CAAW0C,aAAd,GAA+B,CAA3D;AACD;;AAED,oDAAK1C,KAAL,EAAWQ,mBAAX,mGAAiCH,MAAjC;AACD,KAXmC;;AAElC,SAAKmC,OAAL,GAAe,IAAIrD,QAAQ,CAACwD,KAAb,CAAmB,CAAnB,CAAf;AACD;;AAUDjB,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEkB,MAAAA,QAAF;AAAYC,MAAAA,KAAZ;AAAmB,SAAGjB;AAAtB,QAA+B,KAAK5B,KAA1C;AAEA,UAAM8C,aAAa,GAAGxD,UAAU,CAACyD,OAAX,CAAmBF,KAAnB,aAAmBA,KAAnB,cAAmBA,KAAnB,GAA4B,EAA5B,CAAtB;AAEA,wBACE,oBAAC,UAAD,eACMjB,IADN;AAEE,MAAA,KAAK,EAAEkB,aAFT;AAGE,MAAA,mBAAmB,EAAE,KAAKtC;AAH5B,qBAIE,oBAAC,QAAD,CAAU,IAAV;AACE,MAAA,KAAK,EAAE,CACLuB,SAAS,CAACE,QADL,EAEL;AACEO,QAAAA,OAAO,EAAE,KAAKA,OADhB;AAEEQ,QAAAA,eAAe,EAAE,KAAKhD,KAAL,CAAWiD,aAF9B;AAGEC,QAAAA,YAAY,EAAEJ,aAAa,CAACI,YAH9B;AAIEC,QAAAA,mBAAmB,EAAEL,aAAa,CAACK,mBAJrC;AAKEC,QAAAA,oBAAoB,EAAEN,aAAa,CAACM,oBALtC;AAMEC,QAAAA,sBAAsB,EAAEP,aAAa,CAACO,sBANxC;AAOEC,QAAAA,uBAAuB,EAAER,aAAa,CAACQ;AAPzC,OAFK;AADT,MAJF,EAkBGV,QAlBH,CADF;AAsBD;;AAhD8D;;gBAApDL,U,kBACW;AACpBG,EAAAA,aAAa,EAAE,KADK;AAEpBO,EAAAA,aAAa,EAAE;AAFK,C;;AAkDxB,OAAO,MAAMM,gBAAN,SAA+BrE,KAAK,CAACY,SAArC,CAAsE;AAQ3EC,EAAAA,WAAW,CAACC,KAAD,EAA+B;AACxC,UAAMA,KAAN;;AADwC;;AAAA,iDAKXK,MAAD,IAAqB;AAAA;;AACjD,UAAIjB,QAAQ,CAACwB,EAAT,KAAgB,SAApB,EAA+B;AAC7B,aAAK4B,OAAL,CAAaC,QAAb,CAAsBpC,MAAM,GAAG,KAAKL,KAAL,CAAW0C,aAAd,GAA+B,CAA3D;AACD;;AAED,qDAAK1C,KAAL,EAAWQ,mBAAX,qGAAiCH,MAAjC;AACD,KAXyC;;AAExC,SAAKmC,OAAL,GAAe,IAAIrD,QAAQ,CAACwD,KAAb,CAAmB,CAAnB,CAAf;AACD;;AAUDjB,EAAAA,MAAM,GAAG;AACP,UAAM;AAAEkB,MAAAA,QAAF;AAAYC,MAAAA,KAAZ;AAAmB,SAAGjB;AAAtB,QAA+B,KAAK5B,KAA1C;AAEA,wBACE,oBAAC,kBAAD,eACM4B,IADN;AAEE,MAAA,mBAAmB,EAAE,KAAKpB,mBAF5B;AAGE,MAAA,KAAK,EAAE,CAACqC,KAAD,EAAQzD,QAAQ,CAACwB,EAAT,KAAgB,KAAhB,IAAyB;AAAE4B,QAAAA,OAAO,EAAE,KAAKA;AAAhB,OAAjC;AAHT,QAIGI,QAJH,CADF;AAQD;;AAhC0E;;gBAAhEW,gB,kBACW;AACpBb,EAAAA,aAAa,EAAE,GADK;AAEpBc,EAAAA,UAAU,EAAE;AAFQ,C;;AAkCxB,SAASC,OAAO,IAAIC,gBAApB,QAA4C,wBAA5C","sourcesContent":["import * as React from 'react';\r\nimport {\r\n Animated,\r\n Platform,\r\n processColor,\r\n StyleSheet,\r\n StyleProp,\r\n ViewStyle,\r\n} from 'react-native';\r\n\r\nimport createNativeWrapper from '../handlers/createNativeWrapper';\r\nimport GestureHandlerButton from './GestureHandlerButton';\r\nimport { State } from '../State';\r\n\r\nimport {\r\n GestureEvent,\r\n HandlerStateChangeEvent,\r\n} from '../handlers/gestureHandlerCommon';\r\nimport {\r\n NativeViewGestureHandlerPayload,\r\n NativeViewGestureHandlerProps,\r\n} from '../handlers/NativeViewGestureHandler';\r\n\r\nexport interface RawButtonProps extends NativeViewGestureHandlerProps {\r\n /**\r\n * Defines if more than one button could be pressed simultaneously. By default\r\n * set true.\r\n */\r\n exclusive?: boolean;\r\n // TODO: we should transform props in `createNativeWrapper`\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines color of native ripple animation used since API level 21.\r\n */\r\n rippleColor?: any; // it was present in BaseButtonProps before but is used here in code\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines radius of native ripple animation used since API level 21.\r\n */\r\n rippleRadius?: number | null;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Set this to true if you want the ripple animation to render outside the view bounds.\r\n */\r\n borderless?: boolean;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Defines whether the ripple animation should be drawn on the foreground of the view.\r\n */\r\n foreground?: boolean;\r\n\r\n /**\r\n * Android only.\r\n *\r\n * Set this to true if you don't want the system to play sound when the button is pressed.\r\n */\r\n touchSoundDisabled?: boolean;\r\n}\r\n\r\nexport interface BaseButtonProps extends RawButtonProps {\r\n /**\r\n * Called when the button gets pressed (analogous to `onPress` in\r\n * `TouchableHighlight` from RN core).\r\n */\r\n onPress?: (pointerInside: boolean) => void;\r\n\r\n /**\r\n * Called when the button gets pressed and is held for `delayLongPress`\r\n * milliseconds.\r\n */\r\n onLongPress?: () => void;\r\n\r\n /**\r\n * Called when button changes from inactive to active and vice versa. It\r\n * passes active state as a boolean variable as a first parameter for that\r\n * method.\r\n */\r\n onActiveStateChange?: (active: boolean) => void;\r\n style?: StyleProp<ViewStyle>;\r\n testID?: string;\r\n\r\n /**\r\n * Delay, in milliseconds, after which the `onLongPress` callback gets called.\r\n * Defaults to 600.\r\n */\r\n delayLongPress?: number;\r\n}\r\n\r\nexport interface RectButtonProps extends BaseButtonProps {\r\n /**\r\n * Background color that will be dimmed when button is in active state.\r\n */\r\n underlayColor?: string;\r\n\r\n /**\r\n * iOS only.\r\n *\r\n * Opacity applied to the underlay when button is in active state.\r\n */\r\n activeOpacity?: number;\r\n}\r\n\r\nexport interface BorderlessButtonProps extends BaseButtonProps {\r\n /**\r\n * iOS only.\r\n *\r\n * Opacity applied to the button when it is in an active state.\r\n */\r\n activeOpacity?: number;\r\n}\r\n\r\nexport const RawButton = createNativeWrapper(GestureHandlerButton, {\r\n shouldCancelWhenOutside: false,\r\n shouldActivateOnStart: false,\r\n});\r\n\r\nexport class BaseButton extends React.Component<BaseButtonProps> {\r\n static defaultProps = {\r\n delayLongPress: 600,\r\n };\r\n\r\n private lastActive: boolean;\r\n private longPressTimeout: ReturnType<typeof setTimeout> | undefined;\r\n private longPressDetected: boolean;\r\n\r\n constructor(props: BaseButtonProps) {\r\n super(props);\r\n this.lastActive = false;\r\n this.longPressDetected = false;\r\n }\r\n\r\n private handleEvent = ({\r\n nativeEvent,\r\n }: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>) => {\r\n const { state, oldState, pointerInside } = nativeEvent;\r\n const active = pointerInside && state === State.ACTIVE;\r\n\r\n if (active !== this.lastActive && this.props.onActiveStateChange) {\r\n this.props.onActiveStateChange(active);\r\n }\r\n\r\n if (\r\n !this.longPressDetected &&\r\n oldState === State.ACTIVE &&\r\n state !== State.CANCELLED &&\r\n this.lastActive &&\r\n this.props.onPress\r\n ) {\r\n this.props.onPress(active);\r\n }\r\n\r\n if (\r\n !this.lastActive &&\r\n // NativeViewGestureHandler sends different events based on platform\r\n state === (Platform.OS !== 'android' ? State.ACTIVE : State.BEGAN) &&\r\n pointerInside\r\n ) {\r\n this.longPressDetected = false;\r\n if (this.props.onLongPress) {\r\n this.longPressTimeout = setTimeout(\r\n this.onLongPress,\r\n this.props.delayLongPress\r\n );\r\n }\r\n } else if (\r\n // cancel longpress timeout if it's set and the finger moved out of the view\r\n state === State.ACTIVE &&\r\n !pointerInside &&\r\n this.longPressTimeout !== undefined\r\n ) {\r\n clearTimeout(this.longPressTimeout);\r\n this.longPressTimeout = undefined;\r\n } else if (\r\n // cancel longpress timeout if it's set and the gesture has finished\r\n this.longPressTimeout !== undefined &&\r\n (state === State.END ||\r\n state === State.CANCELLED ||\r\n state === State.FAILED)\r\n ) {\r\n clearTimeout(this.longPressTimeout);\r\n this.longPressTimeout = undefined;\r\n }\r\n\r\n this.lastActive = active;\r\n };\r\n\r\n private onLongPress = () => {\r\n this.longPressDetected = true;\r\n this.props.onLongPress?.();\r\n };\r\n\r\n // Normally, the parent would execute it's handler first, then forward the\r\n // event to listeners. However, here our handler is virtually only forwarding\r\n // events to listeners, so we reverse the order to keep the proper order of\r\n // the callbacks (from \"raw\" ones to \"processed\").\r\n private onHandlerStateChange = (\r\n e: HandlerStateChangeEvent<NativeViewGestureHandlerPayload>\r\n ) => {\r\n this.props.onHandlerStateChange?.(e);\r\n this.handleEvent(e);\r\n };\r\n\r\n private onGestureEvent = (\r\n e: GestureEvent<NativeViewGestureHandlerPayload>\r\n ) => {\r\n this.props.onGestureEvent?.(e);\r\n this.handleEvent(\r\n e as HandlerStateChangeEvent<NativeViewGestureHandlerPayload>\r\n ); // TODO: maybe it is not correct\r\n };\r\n\r\n render() {\r\n const { rippleColor, ...rest } = this.props;\r\n\r\n return (\r\n <RawButton\r\n rippleColor={processColor(rippleColor)}\r\n {...rest}\r\n onGestureEvent={this.onGestureEvent}\r\n onHandlerStateChange={this.onHandlerStateChange}\r\n />\r\n );\r\n }\r\n}\r\n\r\nconst AnimatedBaseButton = Animated.createAnimatedComponent(BaseButton);\r\n\r\nconst btnStyles = StyleSheet.create({\r\n underlay: {\r\n position: 'absolute',\r\n left: 0,\r\n right: 0,\r\n bottom: 0,\r\n top: 0,\r\n },\r\n});\r\n\r\nexport class RectButton extends React.Component<RectButtonProps> {\r\n static defaultProps = {\r\n activeOpacity: 0.105,\r\n underlayColor: 'black',\r\n };\r\n\r\n private opacity: Animated.Value;\r\n\r\n constructor(props: RectButtonProps) {\r\n super(props);\r\n this.opacity = new Animated.Value(0);\r\n }\r\n\r\n private onActiveStateChange = (active: boolean) => {\r\n if (Platform.OS !== 'android') {\r\n this.opacity.setValue(active ? this.props.activeOpacity! : 0);\r\n }\r\n\r\n this.props.onActiveStateChange?.(active);\r\n };\r\n\r\n render() {\r\n const { children, style, ...rest } = this.props;\r\n\r\n const resolvedStyle = StyleSheet.flatten(style ?? {});\r\n\r\n return (\r\n <BaseButton\r\n {...rest}\r\n style={resolvedStyle}\r\n onActiveStateChange={this.onActiveStateChange}>\r\n <Animated.View\r\n style={[\r\n btnStyles.underlay,\r\n {\r\n opacity: this.opacity,\r\n backgroundColor: this.props.underlayColor,\r\n borderRadius: resolvedStyle.borderRadius,\r\n borderTopLeftRadius: resolvedStyle.borderTopLeftRadius,\r\n borderTopRightRadius: resolvedStyle.borderTopRightRadius,\r\n borderBottomLeftRadius: resolvedStyle.borderBottomLeftRadius,\r\n borderBottomRightRadius: resolvedStyle.borderBottomRightRadius,\r\n },\r\n ]}\r\n />\r\n {children}\r\n </BaseButton>\r\n );\r\n }\r\n}\r\n\r\nexport class BorderlessButton extends React.Component<BorderlessButtonProps> {\r\n static defaultProps = {\r\n activeOpacity: 0.3,\r\n borderless: true,\r\n };\r\n\r\n private opacity: Animated.Value;\r\n\r\n constructor(props: BorderlessButtonProps) {\r\n super(props);\r\n this.opacity = new Animated.Value(1);\r\n }\r\n\r\n private onActiveStateChange = (active: boolean) => {\r\n if (Platform.OS !== 'android') {\r\n this.opacity.setValue(active ? this.props.activeOpacity! : 1);\r\n }\r\n\r\n this.props.onActiveStateChange?.(active);\r\n };\r\n\r\n render() {\r\n const { children, style, ...rest } = this.props;\r\n\r\n return (\r\n <AnimatedBaseButton\r\n {...rest}\r\n onActiveStateChange={this.onActiveStateChange}\r\n style={[style, Platform.OS === 'ios' && { opacity: this.opacity }]}>\r\n {children}\r\n </AnimatedBaseButton>\r\n );\r\n }\r\n}\r\n\r\nexport { default as PureNativeButton } from './GestureHandlerButton';\r\n"]}
|
1
|
+
{"version":3,"names":["React","Animated","Platform","processColor","StyleSheet","createNativeWrapper","GestureHandlerButton","State","RawButton","shouldCancelWhenOutside","shouldActivateOnStart","BaseButton","Component","defaultProps","delayLongPress","constructor","props","lastActive","longPressDetected","handleEvent","nativeEvent","state","oldState","pointerInside","active","ACTIVE","onActiveStateChange","CANCELLED","onPress","OS","BEGAN","onLongPress","longPressTimeout","setTimeout","undefined","clearTimeout","END","FAILED","_this$props$onLongPre","_this$props","call","onHandlerStateChange","e","_this$props$onHandler","_this$props2","onGestureEvent","_this$props$onGesture","_this$props3","render","rippleColor","rest","createElement","_extends","AnimatedBaseButton","createAnimatedComponent","btnStyles","create","underlay","position","left","right","bottom","top","RectButton","activeOpacity","underlayColor","opacity","Value","_this$props$onActiveS","_this$props4","setValue","children","style","resolvedStyle","flatten","View","backgroundColor","borderRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","BorderlessButton","borderless","_this$props$onActiveS2","_this$props5","default","PureNativeButton"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureButtons.tsx"],"mappings":"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"}
|
@@ -1,3 +1,3 @@
|
|
1
|
-
import
|
2
|
-
export default
|
1
|
+
import { RNGestureHandlerButton } from './RNGestureHandlerButton';
|
2
|
+
export default RNGestureHandlerButton;
|
3
3
|
//# sourceMappingURL=GestureHandlerButton.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"names":["RNGestureHandlerButton"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureHandlerButton.tsx"],"mappings":"AAEA,SAASA,sBAAsB,QAAQ,0BAA0B;AAEjE,eAAeA,sBAAsB"}
|
@@ -1,7 +1,15 @@
|
|
1
|
+
import { ReactNativeViewAttributes, registerViewConfig } from "react-native-harmony";
|
1
2
|
import * as React from 'react';
|
2
|
-
import { View } from 'react-native';
|
3
3
|
import { maybeInitializeFabric } from '../init';
|
4
|
-
import GestureHandlerRootViewContext from '
|
4
|
+
import GestureHandlerRootViewContext from 'react-native-gesture-handler/src/GestureHandlerRootViewContext';
|
5
|
+
const GestureHandlerRootViewNativeComponent = registerViewConfig('RNGestureHandlerRootView', () => ({
|
6
|
+
uiViewClassName: 'RNGestureHandlerRootView',
|
7
|
+
bubblingEventTypes: {},
|
8
|
+
directEventTypes: {},
|
9
|
+
validAttributes: {
|
10
|
+
...ReactNativeViewAttributes.UIView
|
11
|
+
}
|
12
|
+
}));
|
5
13
|
export default function GestureHandlerRootView(props) {
|
6
14
|
// try initialize fabric on the first render, at this point we can
|
7
15
|
// reliably check if fabric is enabled (the function contains a flag
|
@@ -9,6 +17,6 @@ export default function GestureHandlerRootView(props) {
|
|
9
17
|
maybeInitializeFabric();
|
10
18
|
return /*#__PURE__*/React.createElement(GestureHandlerRootViewContext.Provider, {
|
11
19
|
value: true
|
12
|
-
}, /*#__PURE__*/React.createElement(
|
20
|
+
}, /*#__PURE__*/React.createElement(GestureHandlerRootViewNativeComponent, props));
|
13
21
|
}
|
14
22
|
//# sourceMappingURL=GestureHandlerRootView.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"names":["ReactNativeViewAttributes","registerViewConfig","React","maybeInitializeFabric","GestureHandlerRootViewContext","GestureHandlerRootViewNativeComponent","uiViewClassName","bubblingEventTypes","directEventTypes","validAttributes","UIView","GestureHandlerRootView","props","createElement","Provider","value"],"sourceRoot":"..\\..\\..\\src","sources":["components/GestureHandlerRootView.tsx"],"mappings":"AAAA,SAAQA,yBAAyB,EAAEC,kBAAkB,QAAO,sBAAsB;AAClF,OAAO,KAAKC,KAAK,MAAM,OAAO;AAG9B,SAASC,qBAAqB,QAAQ,SAAS;AAC/C,OAAOC,6BAA6B,MAAM,gEAAgE;AAG1G,MAAMC,qCAAqC,GAAGJ,kBAAkB,CAAC,0BAA0B,EAAE,OAAO;EAClGK,eAAe,EAAE,0BAA0B;EAC3CC,kBAAkB,EAAE,CAAC,CAAC;EACtBC,gBAAgB,EAAE,CAAC,CAAC;EACpBC,eAAe,EAAE;IACf,GAAGT,yBAAyB,CAACU;EAC/B;AACF,CAAC,CAAC,CAAC;AAKH,eAAe,SAASC,sBAAsBA,CAC5CC,KAAkC,EAClC;EACA;EACA;EACA;EACAT,qBAAqB,CAAC,CAAC;EAEvB,oBACED,KAAA,CAAAW,aAAA,CAACT,6BAA6B,CAACU,QAAQ;IAACC,KAAK;EAAA,gBAC3Cb,KAAA,CAAAW,aAAA,CAACR,qCAAqC,EAAKO,KAAQ,CACb,CAAC;AAE7C"}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { registerViewConfig, ReactNativeViewAttributes } from 'react-native-harmony';
|
2
|
+
export const RNGestureHandlerButton = registerViewConfig('RNGestureHandlerButton', () => ({
|
3
|
+
uiViewClassName: 'RNGestureHandlerButton',
|
4
|
+
bubblingEventTypes: {},
|
5
|
+
directEventTypes: {},
|
6
|
+
validAttributes: {
|
7
|
+
...ReactNativeViewAttributes.UIView,
|
8
|
+
exclusive: true,
|
9
|
+
foreground: true,
|
10
|
+
borderless: true,
|
11
|
+
enabled: true,
|
12
|
+
rippleColor: true,
|
13
|
+
rippleRadius: true,
|
14
|
+
touchSoundDisabled: true
|
15
|
+
}
|
16
|
+
}));
|
17
|
+
//# sourceMappingURL=RNGestureHandlerButton.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["registerViewConfig","ReactNativeViewAttributes","RNGestureHandlerButton","uiViewClassName","bubblingEventTypes","directEventTypes","validAttributes","UIView","exclusive","foreground","borderless","enabled","rippleColor","rippleRadius","touchSoundDisabled"],"sourceRoot":"..\\..\\..\\src","sources":["components/RNGestureHandlerButton.tsx"],"mappings":"AAAA,SACEA,kBAAkB,EAClBC,yBAAyB,QACpB,sBAAsB;AAE7B,OAAO,MAAMC,sBAAsB,GAAGF,kBAAkB,CACtD,wBAAwB,EACxB,OAAO;EACLG,eAAe,EAAE,wBAAwB;EACzCC,kBAAkB,EAAE,CAAC,CAAC;EACtBC,gBAAgB,EAAE,CAAC,CAAC;EACpBC,eAAe,EAAE;IACf,GAAGL,yBAAyB,CAACM,MAAM;IACnCC,SAAS,EAAE,IAAI;IACfC,UAAU,EAAE,IAAI;IAChBC,UAAU,EAAE,IAAI;IAChBC,OAAO,EAAE,IAAI;IACbC,WAAW,EAAE,IAAI;IACjBC,YAAY,EAAE,IAAI;IAClBC,kBAAkB,EAAE;EACtB;AACF,CAAC,CACH,CAAC"}
|