react-native-gesture-handler 3.0.0-beta.2 → 3.0.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ReanimatedDrawerLayout/package.json +1 -1
- package/ReanimatedSwipeable/package.json +1 -1
- package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -5
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +58 -28
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +23 -5
- package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +3 -6
- package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +2 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +67 -12
- package/android/src/main/java/com/swmansion/gesturehandler/core/OnJSResponderCancelListener.kt +6 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +2 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +16 -6
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +23 -7
- package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +0 -1
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +429 -135
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerDetectorView.kt +17 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +3 -1
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +4 -10
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +18 -8
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +15 -4
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +0 -6
- package/apple/Handlers/RNFlingHandler.m +7 -7
- package/apple/Handlers/RNForceTouchHandler.m +3 -3
- package/apple/Handlers/RNHoverHandler.m +44 -13
- package/apple/Handlers/RNLongPressHandler.m +23 -10
- package/apple/Handlers/RNManualHandler.m +7 -2
- package/apple/Handlers/RNNativeViewHandler.mm +151 -36
- package/apple/Handlers/RNPanHandler.m +11 -7
- package/apple/Handlers/RNPinchHandler.m +20 -7
- package/apple/Handlers/RNRotationHandler.m +18 -6
- package/apple/Handlers/RNTapHandler.m +7 -5
- package/apple/RNGHUIKit.h +2 -0
- package/apple/RNGestureHandler.h +34 -1
- package/apple/RNGestureHandler.mm +110 -10
- package/apple/RNGestureHandlerButton.h +50 -1
- package/apple/RNGestureHandlerButton.mm +710 -49
- package/apple/RNGestureHandlerButtonComponentView.mm +134 -3
- package/apple/RNGestureHandlerDetector.mm +17 -0
- package/apple/RNGestureHandlerEvents.h +3 -1
- package/apple/RNGestureHandlerEvents.mm +8 -3
- package/apple/RNGestureHandlerManager.h +2 -0
- package/apple/RNGestureHandlerManager.mm +49 -3
- package/apple/RNGestureHandlerModule.mm +17 -10
- package/apple/RNGestureHandlerRegistry.h +2 -1
- package/apple/RNGestureHandlerRegistry.m +41 -11
- package/apple/RNManualActivationRecognizer.m +1 -1
- package/apple/RNRootViewGestureRecognizer.m +4 -15
- package/jest-utils/package.json +1 -1
- package/jestSetup.js +6 -16
- package/lib/module/RNGestureHandlerModule.web.js +2 -1
- package/lib/module/RNGestureHandlerModule.web.js.map +1 -1
- package/lib/module/RNGestureHandlerModule.windows.js +5 -6
- package/lib/module/RNGestureHandlerModule.windows.js.map +1 -1
- package/lib/module/components/GestureButtons.js +37 -20
- package/lib/module/components/GestureButtons.js.map +1 -1
- package/lib/module/components/GestureComponents.js +6 -8
- package/lib/module/components/GestureComponents.js.map +1 -1
- package/lib/module/components/GestureComponents.web.js +3 -4
- package/lib/module/components/GestureComponents.web.js.map +1 -1
- package/lib/module/components/GestureHandlerButton.js +2 -135
- package/lib/module/components/GestureHandlerButton.js.map +1 -1
- package/lib/module/components/GestureHandlerButton.web.js +160 -6
- package/lib/module/components/GestureHandlerButton.web.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.android.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.js +2 -2
- package/lib/module/components/GestureHandlerRootView.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.web.js +2 -2
- package/lib/module/components/GestureHandlerRootView.web.js.map +1 -1
- package/lib/module/components/Pressable/Pressable.js +17 -11
- package/lib/module/components/Pressable/Pressable.js.map +1 -1
- package/lib/module/components/Pressable/index.js.map +1 -1
- package/lib/module/components/Pressable/stateDefinitions.js +16 -3
- package/lib/module/components/Pressable/stateDefinitions.js.map +1 -1
- package/lib/module/components/Pressable/utils.js +1 -1
- package/lib/module/components/Pressable/utils.js.map +1 -1
- package/lib/module/components/ReanimatedDrawerLayout.js +11 -10
- package/lib/module/components/ReanimatedDrawerLayout.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js +16 -16
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/index.js +1 -1
- package/lib/module/components/ReanimatedSwipeable/index.js.map +1 -1
- package/lib/module/components/Text.js +33 -23
- package/lib/module/components/Text.js.map +1 -1
- package/lib/module/components/touchables/GenericTouchable.js +11 -19
- package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
- package/lib/module/components/touchables/TouchableHighlight.js +1 -1
- package/lib/module/components/touchables/TouchableHighlight.js.map +1 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js +1 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +1 -1
- package/lib/module/components/touchables/TouchableOpacity.js +2 -2
- package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
- package/lib/module/components/touchables/TouchableWithoutFeedback.js +3 -4
- package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
- package/lib/module/components/touchables/index.js +2 -2
- package/lib/module/components/touchables/index.js.map +1 -1
- package/lib/module/findNodeHandle.web.js +4 -2
- package/lib/module/findNodeHandle.web.js.map +1 -1
- package/lib/module/handlers/FlingGestureHandler.js.map +1 -1
- package/lib/module/handlers/ForceTouchGestureHandler.js +1 -1
- package/lib/module/handlers/ForceTouchGestureHandler.js.map +1 -1
- package/lib/module/handlers/LongPressGestureHandler.js.map +1 -1
- package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/handlers/PinchGestureHandler.js.map +1 -1
- package/lib/module/handlers/RotationGestureHandler.js.map +1 -1
- package/lib/module/handlers/TapGestureHandler.js.map +1 -1
- package/lib/module/handlers/createHandler.js +10 -10
- package/lib/module/handlers/createHandler.js.map +1 -1
- package/lib/module/handlers/createNativeWrapper.js +7 -3
- package/lib/module/handlers/createNativeWrapper.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.js +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js +5 -4
- package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js +5 -5
- package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/index.js +6 -6
- package/lib/module/handlers/gestures/GestureDetector/index.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js +3 -3
- package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js +3 -3
- package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js +4 -3
- package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/utils.js +18 -8
- package/lib/module/handlers/gestures/GestureDetector/utils.js.map +1 -1
- package/lib/module/handlers/gestures/eventReceiver.js.map +1 -1
- package/lib/module/handlers/gestures/flingGesture.js +8 -0
- package/lib/module/handlers/gestures/flingGesture.js.map +1 -1
- package/lib/module/handlers/gestures/forceTouchGesture.js +3 -3
- package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -1
- package/lib/module/handlers/gestures/gesture.js +9 -1
- package/lib/module/handlers/gestures/gesture.js.map +1 -1
- package/lib/module/handlers/gestures/gestureComposition.js +28 -0
- package/lib/module/handlers/gestures/gestureComposition.js.map +1 -1
- package/lib/module/handlers/gestures/gestureObjects.js +30 -4
- package/lib/module/handlers/gestures/gestureObjects.js.map +1 -1
- package/lib/module/handlers/gestures/gestureStateManager.js +9 -0
- package/lib/module/handlers/gestures/gestureStateManager.js.map +1 -1
- package/lib/module/handlers/gestures/hoverGesture.js +8 -0
- package/lib/module/handlers/gestures/hoverGesture.js.map +1 -1
- package/lib/module/handlers/gestures/longPressGesture.js +8 -0
- package/lib/module/handlers/gestures/longPressGesture.js.map +1 -1
- package/lib/module/handlers/gestures/manualGesture.js +8 -0
- package/lib/module/handlers/gestures/manualGesture.js.map +1 -1
- package/lib/module/handlers/gestures/nativeGesture.js +8 -0
- package/lib/module/handlers/gestures/nativeGesture.js.map +1 -1
- package/lib/module/handlers/gestures/panGesture.js +13 -0
- package/lib/module/handlers/gestures/panGesture.js.map +1 -1
- package/lib/module/handlers/gestures/pinchGesture.js +13 -0
- package/lib/module/handlers/gestures/pinchGesture.js.map +1 -1
- package/lib/module/handlers/gestures/reanimatedWrapper.js.map +1 -1
- package/lib/module/handlers/gestures/rotationGesture.js +8 -0
- package/lib/module/handlers/gestures/rotationGesture.js.map +1 -1
- package/lib/module/handlers/gestures/tapGesture.js +8 -0
- package/lib/module/handlers/gestures/tapGesture.js.map +1 -1
- package/lib/module/handlers/handlersRegistry.js.map +1 -1
- package/lib/module/handlers/utils.js +4 -4
- package/lib/module/handlers/utils.js.map +1 -1
- package/lib/module/index.js +15 -16
- package/lib/module/index.js.map +1 -1
- package/lib/module/jestUtils/index.js +1 -1
- package/lib/module/jestUtils/index.js.map +1 -1
- package/lib/module/jestUtils/jestUtils.js +0 -1
- package/lib/module/jestUtils/jestUtils.js.map +1 -1
- package/lib/module/mocks/GestureButtons.js +8 -5
- package/lib/module/mocks/GestureButtons.js.map +1 -1
- package/lib/module/mocks/Touchables.js +4 -0
- package/lib/module/mocks/Touchables.js.map +1 -0
- package/lib/module/mocks/gestureComponents.js +1 -12
- package/lib/module/mocks/gestureComponents.js.map +1 -1
- package/lib/module/specs/NativeRNGestureHandlerModule.js.map +1 -1
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
- package/lib/module/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
- package/lib/module/useIsScreenReaderEnabled.js +26 -0
- package/lib/module/useIsScreenReaderEnabled.js.map +1 -0
- package/lib/module/v3/NativeProxy.js.map +1 -1
- package/lib/module/v3/NativeProxy.web.js.map +1 -1
- package/lib/module/v3/components/GestureButtons.js +41 -25
- package/lib/module/v3/components/GestureButtons.js.map +1 -1
- package/lib/module/v3/components/GestureComponents.js +3 -3
- package/lib/module/v3/components/GestureComponents.js.map +1 -1
- package/lib/module/v3/components/GestureComponents.web.js +3 -4
- package/lib/module/v3/components/GestureComponents.web.js.map +1 -1
- package/lib/module/v3/components/Pressable.js +16 -15
- package/lib/module/v3/components/Pressable.js.map +1 -1
- package/lib/module/v3/components/Touchable/Touchable.js +132 -0
- package/lib/module/v3/components/Touchable/Touchable.js.map +1 -0
- package/lib/module/v3/components/Touchable/TouchableProps.js +4 -0
- package/lib/module/v3/components/Touchable/TouchableProps.js.map +1 -0
- package/lib/module/v3/components/index.js +3 -2
- package/lib/module/v3/components/index.js.map +1 -1
- package/lib/module/v3/createNativeWrapper.js +3 -3
- package/lib/module/v3/createNativeWrapper.js.map +1 -1
- package/lib/module/v3/detectors/GestureDetector.js +1 -1
- package/lib/module/v3/detectors/GestureDetector.js.map +1 -1
- package/lib/module/v3/detectors/HostGestureDetector.web.js +14 -10
- package/lib/module/v3/detectors/HostGestureDetector.web.js.map +1 -1
- package/lib/module/v3/detectors/NativeDetector.js +3 -3
- package/lib/module/v3/detectors/NativeDetector.js.map +1 -1
- package/lib/module/v3/detectors/ReanimatedNativeDetector.js +1 -1
- package/lib/module/v3/detectors/ReanimatedNativeDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +15 -9
- package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js +10 -5
- package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +1 -1
- package/lib/module/v3/detectors/common.js +0 -3
- package/lib/module/v3/detectors/common.js.map +1 -1
- package/lib/module/v3/detectors/index.js +1 -1
- package/lib/module/v3/detectors/index.js.map +1 -1
- package/lib/module/v3/detectors/useEnsureGestureHandlerRootView.js.map +1 -1
- package/lib/module/v3/detectors/useNativeGestureRole.js +6 -0
- package/lib/module/v3/detectors/useNativeGestureRole.js.map +1 -0
- package/lib/module/v3/detectors/useNativeGestureRole.web.js +27 -0
- package/lib/module/v3/detectors/useNativeGestureRole.web.js.map +1 -0
- package/lib/module/v3/detectors/utils.js.map +1 -1
- package/lib/module/v3/gestureStateManager.js +0 -5
- package/lib/module/v3/gestureStateManager.js.map +1 -1
- package/lib/module/v3/gestureStateManager.web.js +0 -14
- package/lib/module/v3/gestureStateManager.web.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/eventHandler.js +23 -19
- package/lib/module/v3/hooks/callbacks/eventHandler.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js +2 -2
- package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js +19 -4
- package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js.map +1 -1
- package/lib/module/v3/hooks/composition/index.js +2 -2
- package/lib/module/v3/hooks/composition/index.js.map +1 -1
- package/lib/module/v3/hooks/composition/useCompetingGestures.js.map +1 -1
- package/lib/module/v3/hooks/composition/useComposedGesture.js +1 -1
- package/lib/module/v3/hooks/composition/useComposedGesture.js.map +1 -1
- package/lib/module/v3/hooks/composition/useExclusiveGestures.js.map +1 -1
- package/lib/module/v3/hooks/composition/useSimultaneousGestures.js.map +1 -1
- package/lib/module/v3/hooks/gestures/fling/{FlingProperties.js → FlingTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/fling/FlingTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js → HoverTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js.map → HoverTypes.js.map} +1 -1
- package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js +10 -2
- package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/index.js +4 -0
- package/lib/module/v3/hooks/gestures/index.js.map +1 -1
- package/lib/module/v3/hooks/gestures/longPress/{LongPressProperties.js → LongPressTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/longPress/LongPressTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/manual/ManualTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/manual/ManualTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/manual/useManualGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/manual/useManualGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/native/NativeTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/native/NativeTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/native/useNativeGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/native/useNativeGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/pan/{PanProperties.js → PanTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/pan/PanTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/pan/usePanGesture.js +9 -1
- package/lib/module/v3/hooks/gestures/pan/usePanGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js +9 -3
- package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js +9 -2
- package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/tap/{TapProperties.js → TapTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/tap/TapTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/tap/useTapGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/tap/useTapGesture.js.map +1 -1
- package/lib/module/v3/hooks/useGesture.js +10 -11
- package/lib/module/v3/hooks/useGesture.js.map +1 -1
- package/lib/module/v3/hooks/useGestureCallbacks.js +4 -4
- package/lib/module/v3/hooks/useGestureCallbacks.js.map +1 -1
- package/lib/module/v3/hooks/utils/configUtils.js +9 -5
- package/lib/module/v3/hooks/utils/configUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/eventHandlersUtils.js +3 -7
- package/lib/module/v3/hooks/utils/eventHandlersUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/eventUtils.js +10 -0
- package/lib/module/v3/hooks/utils/eventUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/index.js +6 -6
- package/lib/module/v3/hooks/utils/index.js.map +1 -1
- package/lib/module/v3/hooks/utils/propsWhiteList.js +10 -8
- package/lib/module/v3/hooks/utils/propsWhiteList.js.map +1 -1
- package/lib/module/v3/hooks/utils/reanimatedUtils.js +1 -1
- package/lib/module/v3/hooks/utils/reanimatedUtils.js.map +1 -1
- package/lib/module/v3/index.js +3 -4
- package/lib/module/v3/index.js.map +1 -1
- package/lib/module/v3/types/GestureTypes.js.map +1 -1
- package/lib/module/v3/types/index.js +1 -1
- package/lib/module/v3/types/index.js.map +1 -1
- package/lib/module/web/Gestures.js +6 -6
- package/lib/module/web/Gestures.js.map +1 -1
- package/lib/module/web/constants.js +1 -0
- package/lib/module/web/constants.js.map +1 -1
- package/lib/module/web/detectors/RotationGestureDetector.js +22 -12
- package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -1
- package/lib/module/web/detectors/ScaleGestureDetector.js +10 -2
- package/lib/module/web/detectors/ScaleGestureDetector.js.map +1 -1
- package/lib/module/web/handlers/FlingGestureHandler.js +3 -3
- package/lib/module/web/handlers/FlingGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/GestureHandler.js +60 -63
- package/lib/module/web/handlers/GestureHandler.js.map +1 -1
- package/lib/module/web/handlers/HoverGestureHandler.js +2 -5
- package/lib/module/web/handlers/HoverGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/LongPressGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/ManualGestureHandler.js +1 -0
- package/lib/module/web/handlers/ManualGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/NativeViewGestureHandler.js +66 -18
- package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/PanGestureHandler.js +2 -1
- package/lib/module/web/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/PinchGestureHandler.js +11 -14
- package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/RotationGestureHandler.js +30 -35
- package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/TapGestureHandler.js.map +1 -1
- package/lib/module/web/interfaces.js +6 -0
- package/lib/module/web/interfaces.js.map +1 -1
- package/lib/module/web/tools/GestureHandlerOrchestrator.js +8 -2
- package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +1 -1
- package/lib/module/web/tools/GestureHandlerWebDelegate.js +62 -17
- package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +1 -1
- package/lib/module/web/tools/GestureLifecycleEvents.js +10 -0
- package/lib/module/web/tools/GestureLifecycleEvents.js.map +1 -0
- package/lib/module/web/tools/InteractionManager.js.map +1 -1
- package/lib/module/web/tools/KeyboardEventManager.js +1 -1
- package/lib/module/web/tools/KeyboardEventManager.js.map +1 -1
- package/lib/module/web/tools/PointerEventManager.js +16 -7
- package/lib/module/web/tools/PointerEventManager.js.map +1 -1
- package/lib/module/web/tools/WheelEventManager.js +2 -2
- package/lib/module/web/tools/WheelEventManager.js.map +1 -1
- package/lib/module/web/utils.js +22 -1
- package/lib/module/web/utils.js.map +1 -1
- package/lib/typescript/RNGestureHandlerModule.web.d.ts +1 -1
- package/lib/typescript/RNGestureHandlerModule.web.d.ts.map +1 -1
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts +8 -8
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts.map +1 -1
- package/lib/typescript/components/GestureButtons.d.ts +16 -5
- package/lib/typescript/components/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/components/GestureButtonsProps.d.ts +21 -21
- package/lib/typescript/components/GestureButtonsProps.d.ts.map +1 -1
- package/lib/typescript/components/GestureComponents.d.ts +44 -14
- package/lib/typescript/components/GestureComponents.d.ts.map +1 -1
- package/lib/typescript/components/GestureComponents.web.d.ts +26 -6
- package/lib/typescript/components/GestureComponents.web.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerButton.d.ts +114 -2
- package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerButton.web.d.ts +20 -2
- package/lib/typescript/components/GestureHandlerButton.web.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts +1 -1
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.d.ts +1 -1
- package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts +2 -2
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/Pressable.d.ts +6 -3
- package/lib/typescript/components/Pressable/Pressable.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/PressableProps.d.ts +4 -4
- package/lib/typescript/components/Pressable/PressableProps.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/StateMachine.d.ts +1 -1
- package/lib/typescript/components/Pressable/StateMachine.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/index.d.ts +1 -1
- package/lib/typescript/components/Pressable/index.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/stateDefinitions.d.ts +3 -3
- package/lib/typescript/components/Pressable/stateDefinitions.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/utils.d.ts +8 -7
- package/lib/typescript/components/Pressable/utils.d.ts.map +1 -1
- package/lib/typescript/components/ReanimatedDrawerLayout.d.ts +9 -5
- package/lib/typescript/components/ReanimatedDrawerLayout.d.ts.map +1 -1
- package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts +2 -2
- package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts.map +1 -1
- package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts +9 -11
- package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts.map +1 -1
- package/lib/typescript/components/ReanimatedSwipeable/index.d.ts +1 -1
- package/lib/typescript/components/ReanimatedSwipeable/index.d.ts.map +1 -1
- package/lib/typescript/components/Text.d.ts +15 -3
- package/lib/typescript/components/Text.d.ts.map +1 -1
- package/lib/typescript/components/touchables/ExtraButtonProps.d.ts +5 -5
- package/lib/typescript/components/touchables/ExtraButtonProps.d.ts.map +1 -1
- package/lib/typescript/components/touchables/GenericTouchable.d.ts +2 -2
- package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -1
- package/lib/typescript/components/touchables/GenericTouchableProps.d.ts +2 -2
- package/lib/typescript/components/touchables/GenericTouchableProps.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableHighlight.d.ts +3 -3
- package/lib/typescript/components/touchables/TouchableHighlight.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +2 -2
- package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts +1 -1
- package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts +3 -2
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +4 -3
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -1
- package/lib/typescript/components/touchables/index.d.ts +3 -3
- package/lib/typescript/components/touchables/index.d.ts.map +1 -1
- package/lib/typescript/components/utils.d.ts +1 -1
- package/lib/typescript/components/utils.d.ts.map +1 -1
- package/lib/typescript/findNodeHandle.web.d.ts.map +1 -1
- package/lib/typescript/handlers/FlingGestureHandler.d.ts +1 -1
- package/lib/typescript/handlers/FlingGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +3 -2
- package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts +3 -3
- package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts.map +1 -1
- package/lib/typescript/handlers/LongPressGestureHandler.d.ts +2 -2
- package/lib/typescript/handlers/LongPressGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +3 -3
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/PanGestureHandler.d.ts +1 -1
- package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/PinchGestureHandler.d.ts +2 -2
- package/lib/typescript/handlers/PinchGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/RotationGestureHandler.d.ts +2 -2
- package/lib/typescript/handlers/RotationGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/TapGestureHandler.d.ts +1 -1
- package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/createHandler.d.ts +1 -1
- package/lib/typescript/handlers/createHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/createNativeWrapper.d.ts +10 -2
- package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -1
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts +27 -27
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -1
- package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +3 -3
- package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/Wrap.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts +7 -6
- package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts +5 -5
- package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts +3 -3
- package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts +2 -2
- package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts +2 -2
- package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts +3 -3
- package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts +5 -5
- package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts +2 -2
- package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts +2 -2
- package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/eventReceiver.d.ts +1 -1
- package/lib/typescript/handlers/gestures/eventReceiver.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/flingGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/flingGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +7 -6
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gesture.d.ts +9 -3
- package/lib/typescript/handlers/gestures/gesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts +23 -1
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts +31 -5
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +6 -0
- package/lib/typescript/handlers/gestures/gestureStateManager.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +1 -1
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/manualGesture.d.ts +7 -1
- package/lib/typescript/handlers/gestures/manualGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/panGesture.d.ts +13 -3
- package/lib/typescript/handlers/gestures/panGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts +11 -2
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +3 -3
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts +8 -2
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/tapGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/tapGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/handlersRegistry.d.ts +6 -6
- package/lib/typescript/handlers/handlersRegistry.d.ts.map +1 -1
- package/lib/typescript/handlers/utils.d.ts +1 -1
- package/lib/typescript/handlers/utils.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +41 -42
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/jestUtils/index.d.ts +1 -1
- package/lib/typescript/jestUtils/jestUtils.d.ts +22 -21
- package/lib/typescript/jestUtils/jestUtils.d.ts.map +1 -1
- package/lib/typescript/mocks/GestureButtons.d.ts +5 -5
- package/lib/typescript/mocks/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/mocks/Touchables.d.ts +2 -0
- package/lib/typescript/mocks/Touchables.d.ts.map +1 -0
- package/lib/typescript/mocks/gestureComponents.d.ts +1 -13
- package/lib/typescript/mocks/gestureComponents.d.ts.map +1 -1
- package/lib/typescript/mountRegistry.d.ts +1 -1
- package/lib/typescript/mountRegistry.d.ts.map +1 -1
- package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts +2 -2
- package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +36 -3
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts +8 -8
- package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +1 -1
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/useIsScreenReaderEnabled.d.ts +2 -0
- package/lib/typescript/useIsScreenReaderEnabled.d.ts.map +1 -0
- package/lib/typescript/useIsomorphicLayoutEffect.d.ts +1 -1
- package/lib/typescript/useIsomorphicLayoutEffect.d.ts.map +1 -1
- package/lib/typescript/v3/NativeProxy.d.ts +3 -3
- package/lib/typescript/v3/NativeProxy.d.ts.map +1 -1
- package/lib/typescript/v3/NativeProxy.web.d.ts +3 -3
- package/lib/typescript/v3/NativeProxy.web.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureButtons.d.ts +21 -11
- package/lib/typescript/v3/components/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureButtonsProps.d.ts +25 -85
- package/lib/typescript/v3/components/GestureButtonsProps.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureComponents.d.ts +27 -38
- package/lib/typescript/v3/components/GestureComponents.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureComponents.web.d.ts +26 -34
- package/lib/typescript/v3/components/GestureComponents.web.d.ts.map +1 -1
- package/lib/typescript/v3/components/Pressable.d.ts +1 -1
- package/lib/typescript/v3/components/Pressable.d.ts.map +1 -1
- package/lib/typescript/v3/components/Touchable/Touchable.d.ts +4 -0
- package/lib/typescript/v3/components/Touchable/Touchable.d.ts.map +1 -0
- package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts +40 -0
- package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts.map +1 -0
- package/lib/typescript/v3/components/index.d.ts +5 -3
- package/lib/typescript/v3/components/index.d.ts.map +1 -1
- package/lib/typescript/v3/createNativeWrapper.d.ts +3 -7
- package/lib/typescript/v3/createNativeWrapper.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/GestureDetector.d.ts +3 -3
- package/lib/typescript/v3/detectors/GestureDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts +10 -6
- package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/NativeDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/NativeDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/ReanimatedNativeDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/common.d.ts +14 -15
- package/lib/typescript/v3/detectors/common.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/index.d.ts +1 -1
- package/lib/typescript/v3/detectors/index.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/useEnsureGestureHandlerRootView.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/useNativeGestureRole.d.ts +3 -0
- package/lib/typescript/v3/detectors/useNativeGestureRole.d.ts.map +1 -0
- package/lib/typescript/v3/detectors/useNativeGestureRole.web.d.ts +3 -0
- package/lib/typescript/v3/detectors/useNativeGestureRole.web.d.ts.map +1 -0
- package/lib/typescript/v3/detectors/utils.d.ts +2 -2
- package/lib/typescript/v3/detectors/utils.d.ts.map +1 -1
- package/lib/typescript/v3/gestureStateManager.d.ts +0 -1
- package/lib/typescript/v3/gestureStateManager.d.ts.map +1 -1
- package/lib/typescript/v3/gestureStateManager.web.d.ts +1 -1
- package/lib/typescript/v3/gestureStateManager.web.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts +6 -6
- package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts +2 -2
- package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts +3 -3
- package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/index.d.ts +2 -2
- package/lib/typescript/v3/hooks/composition/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts +36 -0
- package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts +2 -15
- package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts +38 -0
- package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts +2 -20
- package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/index.d.ts +19 -28
- package/lib/typescript/v3/hooks/gestures/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/longPress/{LongPressProperties.d.ts → LongPressTypes.d.ts} +16 -1
- package/lib/typescript/v3/hooks/gestures/longPress/LongPressTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts +2 -15
- package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts +10 -0
- package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts +2 -10
- package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts +33 -0
- package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts +2 -12
- package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/pan/{PanProperties.d.ts → PanTypes.d.ts} +25 -1
- package/lib/typescript/v3/hooks/gestures/pan/PanTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts +2 -22
- package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts +17 -0
- package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts +2 -16
- package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts +17 -0
- package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts +2 -16
- package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/tap/{TapProperties.d.ts → TapTypes.d.ts} +14 -1
- package/lib/typescript/v3/hooks/gestures/tap/TapTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts +2 -15
- package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/useGesture.d.ts +2 -2
- package/lib/typescript/v3/hooks/useGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts +4 -4
- package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/configUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/configUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/eventUtils.d.ts +8 -6
- package/lib/typescript/v3/hooks/utils/eventUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/index.d.ts +6 -6
- package/lib/typescript/v3/hooks/utils/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts +6 -5
- package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/relationUtils.d.ts +2 -2
- package/lib/typescript/v3/hooks/utils/relationUtils.d.ts.map +1 -1
- package/lib/typescript/v3/index.d.ts +6 -7
- package/lib/typescript/v3/index.d.ts.map +1 -1
- package/lib/typescript/v3/types/ConfigTypes.d.ts +36 -34
- package/lib/typescript/v3/types/ConfigTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/DetectorTypes.d.ts +10 -6
- package/lib/typescript/v3/types/DetectorTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/EventTypes.d.ts +11 -8
- package/lib/typescript/v3/types/EventTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/GestureTypes.d.ts +16 -16
- package/lib/typescript/v3/types/GestureTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/NativeWrapperType.d.ts +7 -4
- package/lib/typescript/v3/types/NativeWrapperType.d.ts.map +1 -1
- package/lib/typescript/v3/types/ReanimatedTypes.d.ts +1 -1
- package/lib/typescript/v3/types/ReanimatedTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/UtilityTypes.d.ts +7 -7
- package/lib/typescript/v3/types/UtilityTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/index.d.ts +6 -6
- package/lib/typescript/v3/types/index.d.ts.map +1 -1
- package/lib/typescript/web/Gestures.d.ts +6 -6
- package/lib/typescript/web/Gestures.d.ts.map +1 -1
- package/lib/typescript/web/constants.d.ts +1 -0
- package/lib/typescript/web/constants.d.ts.map +1 -1
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +2 -2
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts.map +1 -1
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +2 -2
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts.map +1 -1
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/GestureHandler.d.ts +16 -9
- package/lib/typescript/web/handlers/GestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/IGestureHandler.d.ts +8 -6
- package/lib/typescript/web/handlers/IGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +4 -3
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +17 -7
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts +5 -4
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +5 -4
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +6 -6
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/interfaces.d.ts +38 -32
- package/lib/typescript/web/interfaces.d.ts.map +1 -1
- package/lib/typescript/web/tools/EventManager.d.ts +1 -1
- package/lib/typescript/web/tools/EventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +4 -0
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +1 -0
- package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +6 -1
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureLifecycleEvents.d.ts +7 -0
- package/lib/typescript/web/tools/GestureLifecycleEvents.d.ts.map +1 -0
- package/lib/typescript/web/tools/InteractionManager.d.ts +2 -2
- package/lib/typescript/web/tools/InteractionManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/KeyboardEventManager.d.ts +2 -1
- package/lib/typescript/web/tools/KeyboardEventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/NodeManager.d.ts +3 -3
- package/lib/typescript/web/tools/NodeManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/PointerEventManager.d.ts +2 -1
- package/lib/typescript/web/tools/PointerEventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/PointerTracker.d.ts +1 -1
- package/lib/typescript/web/tools/PointerTracker.d.ts.map +1 -1
- package/lib/typescript/web/tools/Vector.d.ts +1 -1
- package/lib/typescript/web/tools/Vector.d.ts.map +1 -1
- package/lib/typescript/web/tools/VelocityTracker.d.ts +1 -1
- package/lib/typescript/web/tools/VelocityTracker.d.ts.map +1 -1
- package/lib/typescript/web/tools/WheelEventManager.d.ts +1 -1
- package/lib/typescript/web/tools/WheelEventManager.d.ts.map +1 -1
- package/lib/typescript/web/utils.d.ts +2 -1
- package/lib/typescript/web/utils.d.ts.map +1 -1
- package/package.json +11 -11
- package/react-native.config.js +0 -1
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h +0 -1
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerDetectorShadowNode.cpp +61 -30
- package/src/RNGestureHandlerModule.web.ts +2 -2
- package/src/RNGestureHandlerModule.windows.ts +8 -10
- package/src/components/GestureButtons.tsx +55 -43
- package/src/components/GestureButtonsProps.ts +22 -21
- package/src/components/GestureComponents.tsx +28 -35
- package/src/components/GestureComponents.web.tsx +9 -12
- package/src/components/GestureHandlerButton.tsx +150 -144
- package/src/components/GestureHandlerButton.web.tsx +219 -3
- package/src/components/GestureHandlerRootView.android.tsx +2 -1
- package/src/components/GestureHandlerRootView.tsx +5 -4
- package/src/components/GestureHandlerRootView.web.tsx +6 -4
- package/src/components/Pressable/Pressable.tsx +36 -28
- package/src/components/Pressable/PressableProps.tsx +9 -8
- package/src/components/Pressable/StateMachine.tsx +1 -1
- package/src/components/Pressable/index.ts +1 -1
- package/src/components/Pressable/stateDefinitions.ts +31 -5
- package/src/components/Pressable/utils.ts +16 -12
- package/src/components/ReanimatedDrawerLayout.tsx +415 -426
- package/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx +30 -30
- package/src/components/ReanimatedSwipeable/ReanimatedSwipeableProps.ts +10 -13
- package/src/components/ReanimatedSwipeable/index.ts +2 -2
- package/src/components/Text.tsx +51 -52
- package/src/components/touchables/ExtraButtonProps.ts +5 -5
- package/src/components/touchables/GenericTouchable.tsx +19 -25
- package/src/components/touchables/GenericTouchableProps.ts +4 -3
- package/src/components/touchables/TouchableHighlight.tsx +8 -8
- package/src/components/touchables/TouchableNativeFeedback.android.tsx +5 -3
- package/src/components/touchables/TouchableNativeFeedbackProps.tsx +2 -1
- package/src/components/touchables/TouchableOpacity.tsx +5 -9
- package/src/components/touchables/TouchableWithoutFeedback.tsx +17 -24
- package/src/components/touchables/index.ts +3 -3
- package/src/components/utils.ts +1 -1
- package/src/findNodeHandle.web.ts +12 -2
- package/src/handlers/FlingGestureHandler.ts +3 -5
- package/src/handlers/ForceTouchGestureHandler.ts +6 -6
- package/src/handlers/GestureHandlerEventPayload.ts +3 -3
- package/src/handlers/LongPressGestureHandler.ts +3 -5
- package/src/handlers/NativeViewGestureHandler.ts +5 -7
- package/src/handlers/PanGestureHandler.ts +3 -5
- package/src/handlers/PinchGestureHandler.ts +3 -5
- package/src/handlers/RotationGestureHandler.ts +3 -5
- package/src/handlers/TapGestureHandler.ts +3 -5
- package/src/handlers/createHandler.tsx +19 -22
- package/src/handlers/createNativeWrapper.tsx +12 -7
- package/src/handlers/gestureHandlerCommon.ts +31 -29
- package/src/handlers/gestureHandlerTypesCompat.ts +5 -5
- package/src/handlers/gestures/GestureDetector/Wrap.tsx +2 -1
- package/src/handlers/gestures/GestureDetector/Wrap.web.tsx +34 -30
- package/src/handlers/gestures/GestureDetector/attachHandlers.ts +14 -13
- package/src/handlers/gestures/GestureDetector/dropHandlers.ts +3 -3
- package/src/handlers/gestures/GestureDetector/index.tsx +11 -10
- package/src/handlers/gestures/GestureDetector/needsToReattach.ts +2 -2
- package/src/handlers/gestures/GestureDetector/types.ts +2 -2
- package/src/handlers/gestures/GestureDetector/updateHandlers.ts +7 -7
- package/src/handlers/gestures/GestureDetector/useAnimatedGesture.ts +11 -12
- package/src/handlers/gestures/GestureDetector/useDetectorUpdater.ts +9 -8
- package/src/handlers/gestures/GestureDetector/useMountReactions.ts +5 -4
- package/src/handlers/gestures/GestureDetector/useViewRefHandler.ts +5 -4
- package/src/handlers/gestures/GestureDetector/utils.ts +24 -14
- package/src/handlers/gestures/eventReceiver.ts +8 -8
- package/src/handlers/gestures/flingGesture.ts +9 -2
- package/src/handlers/gestures/forceTouchGesture.ts +7 -6
- package/src/handlers/gestures/gesture.ts +15 -9
- package/src/handlers/gestures/gestureComposition.ts +23 -1
- package/src/handlers/gestures/gestureObjects.ts +31 -5
- package/src/handlers/gestures/gestureStateManager.ts +6 -0
- package/src/handlers/gestures/gestureStateManager.web.ts +1 -1
- package/src/handlers/gestures/hoverGesture.ts +9 -2
- package/src/handlers/gestures/longPressGesture.ts +9 -2
- package/src/handlers/gestures/manualGesture.ts +7 -1
- package/src/handlers/gestures/nativeGesture.ts +9 -2
- package/src/handlers/gestures/panGesture.ts +13 -3
- package/src/handlers/gestures/pinchGesture.ts +11 -2
- package/src/handlers/gestures/reanimatedWrapper.ts +7 -6
- package/src/handlers/gestures/rotationGesture.ts +8 -2
- package/src/handlers/gestures/tapGesture.ts +9 -2
- package/src/handlers/handlersRegistry.ts +13 -6
- package/src/handlers/utils.ts +6 -5
- package/src/index.ts +111 -117
- package/src/jestUtils/index.ts +1 -1
- package/src/jestUtils/jestUtils.ts +45 -50
- package/src/mocks/GestureButtons.tsx +9 -5
- package/src/mocks/Touchables.tsx +6 -0
- package/src/mocks/gestureComponents.tsx +7 -22
- package/src/mountRegistry.ts +1 -1
- package/src/specs/NativeRNGestureHandlerModule.ts +3 -2
- package/src/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
- package/src/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
- package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
- package/src/useIsScreenReaderEnabled.ts +31 -0
- package/src/v3/NativeProxy.ts +13 -5
- package/src/v3/NativeProxy.web.ts +13 -5
- package/src/v3/components/GestureButtons.tsx +52 -28
- package/src/v3/components/GestureButtonsProps.ts +38 -110
- package/src/v3/components/GestureComponents.tsx +29 -34
- package/src/v3/components/GestureComponents.web.tsx +7 -10
- package/src/v3/components/Pressable.tsx +33 -28
- package/src/v3/components/Touchable/Touchable.tsx +167 -0
- package/src/v3/components/Touchable/TouchableProps.ts +55 -0
- package/src/v3/components/index.ts +12 -13
- package/src/v3/createNativeWrapper.tsx +14 -16
- package/src/v3/detectors/GestureDetector.tsx +17 -9
- package/src/v3/detectors/HostGestureDetector.web.tsx +35 -22
- package/src/v3/detectors/NativeDetector.tsx +12 -10
- package/src/v3/detectors/ReanimatedNativeDetector.tsx +4 -5
- package/src/v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx +66 -34
- package/src/v3/detectors/VirtualDetector/VirtualDetector.tsx +32 -13
- package/src/v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts +2 -1
- package/src/v3/detectors/common.ts +40 -20
- package/src/v3/detectors/index.ts +1 -1
- package/src/v3/detectors/useEnsureGestureHandlerRootView.ts +1 -0
- package/src/v3/detectors/useNativeGestureRole.ts +8 -0
- package/src/v3/detectors/useNativeGestureRole.web.ts +42 -0
- package/src/v3/detectors/utils.ts +4 -3
- package/src/v3/gestureStateManager.ts +0 -6
- package/src/v3/gestureStateManager.web.ts +2 -17
- package/src/v3/hooks/callbacks/eventHandler.ts +87 -47
- package/src/v3/hooks/callbacks/useGestureEventHandler.ts +21 -9
- package/src/v3/hooks/callbacks/useReanimatedEventHandler.ts +42 -18
- package/src/v3/hooks/composition/index.ts +2 -2
- package/src/v3/hooks/composition/useCompetingGestures.ts +2 -1
- package/src/v3/hooks/composition/useComposedGesture.ts +6 -6
- package/src/v3/hooks/composition/useExclusiveGestures.ts +2 -1
- package/src/v3/hooks/composition/useSimultaneousGestures.ts +2 -1
- package/src/v3/hooks/gestures/fling/FlingTypes.ts +60 -0
- package/src/v3/hooks/gestures/fling/useFlingGesture.ts +11 -34
- package/src/v3/hooks/gestures/hover/HoverTypes.ts +76 -0
- package/src/v3/hooks/gestures/hover/useHoverGesture.ts +29 -56
- package/src/v3/hooks/gestures/index.ts +111 -32
- package/src/v3/hooks/gestures/longPress/{LongPressProperties.ts → LongPressTypes.ts} +39 -0
- package/src/v3/hooks/gestures/longPress/useLongPressGesture.ts +13 -44
- package/src/v3/hooks/gestures/manual/ManualTypes.ts +28 -0
- package/src/v3/hooks/gestures/manual/useManualGesture.ts +11 -28
- package/src/v3/hooks/gestures/native/NativeTypes.ts +62 -0
- package/src/v3/hooks/gestures/native/useNativeGesture.ts +11 -34
- package/src/v3/hooks/gestures/pan/{PanProperties.ts → PanTypes.ts} +55 -0
- package/src/v3/hooks/gestures/pan/usePanGesture.ts +34 -55
- package/src/v3/hooks/gestures/pinch/PinchTypes.ts +40 -0
- package/src/v3/hooks/gestures/pinch/usePinchGesture.ts +26 -41
- package/src/v3/hooks/gestures/rotation/RotationTypes.ts +41 -0
- package/src/v3/hooks/gestures/rotation/useRotationGesture.ts +24 -39
- package/src/v3/hooks/gestures/tap/{TapProperties.ts → TapTypes.ts} +32 -0
- package/src/v3/hooks/gestures/tap/useTapGesture.ts +14 -36
- package/src/v3/hooks/useGesture.ts +26 -18
- package/src/v3/hooks/useGestureCallbacks.ts +14 -9
- package/src/v3/hooks/utils/configUtils.ts +61 -22
- package/src/v3/hooks/utils/eventHandlersUtils.ts +23 -20
- package/src/v3/hooks/utils/eventUtils.ts +63 -21
- package/src/v3/hooks/utils/index.ts +15 -21
- package/src/v3/hooks/utils/propsWhiteList.ts +24 -12
- package/src/v3/hooks/utils/reanimatedUtils.ts +22 -10
- package/src/v3/hooks/utils/relationUtils.ts +3 -3
- package/src/v3/index.ts +51 -46
- package/src/v3/types/ConfigTypes.ts +48 -36
- package/src/v3/types/DetectorTypes.ts +29 -7
- package/src/v3/types/EventTypes.ts +27 -16
- package/src/v3/types/GestureTypes.ts +49 -22
- package/src/v3/types/NativeWrapperType.ts +21 -6
- package/src/v3/types/ReanimatedTypes.ts +1 -1
- package/src/v3/types/UtilityTypes.ts +7 -7
- package/src/v3/types/index.ts +32 -36
- package/src/web/Gestures.ts +6 -6
- package/src/web/constants.ts +1 -0
- package/src/web/detectors/RotationGestureDetector.ts +27 -14
- package/src/web/detectors/ScaleGestureDetector.ts +13 -7
- package/src/web/handlers/FlingGestureHandler.ts +6 -7
- package/src/web/handlers/GestureHandler.ts +102 -125
- package/src/web/handlers/HoverGestureHandler.ts +7 -10
- package/src/web/handlers/IGestureHandler.ts +8 -6
- package/src/web/handlers/LongPressGestureHandler.ts +4 -5
- package/src/web/handlers/ManualGestureHandler.ts +5 -3
- package/src/web/handlers/NativeViewGestureHandler.ts +128 -25
- package/src/web/handlers/PanGestureHandler.ts +9 -7
- package/src/web/handlers/PinchGestureHandler.ts +22 -22
- package/src/web/handlers/RotationGestureHandler.ts +34 -47
- package/src/web/handlers/TapGestureHandler.ts +4 -4
- package/src/web/interfaces.ts +42 -35
- package/src/web/tools/EventManager.ts +1 -1
- package/src/web/tools/GestureHandlerDelegate.ts +4 -0
- package/src/web/tools/GestureHandlerOrchestrator.ts +11 -4
- package/src/web/tools/GestureHandlerWebDelegate.ts +82 -23
- package/src/web/tools/GestureLifecycleEvents.ts +14 -0
- package/src/web/tools/InteractionManager.ts +3 -2
- package/src/web/tools/KeyboardEventManager.ts +3 -2
- package/src/web/tools/NodeManager.ts +2 -2
- package/src/web/tools/PointerEventManager.ts +30 -9
- package/src/web/tools/PointerTracker.ts +1 -1
- package/src/web/tools/Vector.ts +1 -1
- package/src/web/tools/VelocityTracker.ts +1 -1
- package/src/web/tools/WheelEventManager.ts +3 -2
- package/src/web/utils.ts +28 -2
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonWrapperViewManager.kt +0 -30
- package/apple/RNGestureHandlerButtonManager.h +0 -5
- package/apple/RNGestureHandlerButtonManager.mm +0 -60
- package/apple/RNGestureHandlerButtonWrapper.h +0 -19
- package/apple/RNGestureHandlerButtonWrapper.mm +0 -46
- package/lib/commonjs/ActionType.js +0 -22
- package/lib/commonjs/ActionType.js.map +0 -1
- package/lib/commonjs/Directions.js +0 -38
- package/lib/commonjs/Directions.js.map +0 -1
- package/lib/commonjs/GestureHandlerRootViewContext.js +0 -10
- package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
- package/lib/commonjs/PlatformConstants.js +0 -9
- package/lib/commonjs/PlatformConstants.js.map +0 -1
- package/lib/commonjs/PlatformConstants.web.js +0 -12
- package/lib/commonjs/PlatformConstants.web.js.map +0 -1
- package/lib/commonjs/PointerType.js +0 -15
- package/lib/commonjs/PointerType.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.js +0 -12
- package/lib/commonjs/RNGestureHandlerModule.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.web.js +0 -73
- package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -53
- package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
- package/lib/commonjs/RNRenderer.js +0 -14
- package/lib/commonjs/RNRenderer.js.map +0 -1
- package/lib/commonjs/RNRenderer.web.js +0 -10
- package/lib/commonjs/RNRenderer.web.js.map +0 -1
- package/lib/commonjs/State.js +0 -19
- 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/GestureButtons.js +0 -220
- package/lib/commonjs/components/GestureButtons.js.map +0 -1
- package/lib/commonjs/components/GestureButtonsProps.js +0 -6
- package/lib/commonjs/components/GestureButtonsProps.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.js +0 -127
- package/lib/commonjs/components/GestureComponents.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.web.js +0 -61
- package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerButton.js +0 -144
- package/lib/commonjs/components/GestureHandlerButton.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerButton.web.js +0 -16
- package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -32
- package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.js +0 -30
- package/lib/commonjs/components/GestureHandlerRootView.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -30
- package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
- package/lib/commonjs/components/Pressable/Pressable.js +0 -270
- package/lib/commonjs/components/Pressable/Pressable.js.map +0 -1
- package/lib/commonjs/components/Pressable/PressableProps.js +0 -6
- package/lib/commonjs/components/Pressable/PressableProps.js.map +0 -1
- package/lib/commonjs/components/Pressable/StateMachine.js +0 -44
- package/lib/commonjs/components/Pressable/StateMachine.js.map +0 -1
- package/lib/commonjs/components/Pressable/index.js +0 -14
- package/lib/commonjs/components/Pressable/index.js.map +0 -1
- package/lib/commonjs/components/Pressable/stateDefinitions.js +0 -88
- package/lib/commonjs/components/Pressable/stateDefinitions.js.map +0 -1
- package/lib/commonjs/components/Pressable/utils.js +0 -92
- package/lib/commonjs/components/Pressable/utils.js.map +0 -1
- package/lib/commonjs/components/ReanimatedDrawerLayout.js +0 -377
- package/lib/commonjs/components/ReanimatedDrawerLayout.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js +0 -347
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js +0 -12
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/index.js +0 -21
- package/lib/commonjs/components/ReanimatedSwipeable/index.js.map +0 -1
- package/lib/commonjs/components/Text.js +0 -60
- package/lib/commonjs/components/Text.js.map +0 -1
- package/lib/commonjs/components/touchables/ExtraButtonProps.js +0 -2
- package/lib/commonjs/components/touchables/ExtraButtonProps.js.map +0 -1
- package/lib/commonjs/components/touchables/GenericTouchable.js +0 -245
- package/lib/commonjs/components/touchables/GenericTouchable.js.map +0 -1
- package/lib/commonjs/components/touchables/GenericTouchableProps.js +0 -6
- package/lib/commonjs/components/touchables/GenericTouchableProps.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -93
- package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -84
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -13
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js +0 -6
- package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableOpacity.js +0 -65
- package/lib/commonjs/components/touchables/TouchableOpacity.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +0 -33
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +0 -1
- package/lib/commonjs/components/touchables/index.js +0 -35
- package/lib/commonjs/components/touchables/index.js.map +0 -1
- package/lib/commonjs/components/utils.js +0 -17
- package/lib/commonjs/components/utils.js.map +0 -1
- package/lib/commonjs/findNodeHandle.js +0 -9
- package/lib/commonjs/findNodeHandle.js.map +0 -1
- package/lib/commonjs/findNodeHandle.web.js +0 -39
- package/lib/commonjs/findNodeHandle.web.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.js +0 -51
- package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.web.js +0 -14
- package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
- package/lib/commonjs/ghQueueMicrotask.js +0 -10
- package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
- package/lib/commonjs/global.d.js +0 -6
- package/lib/commonjs/global.d.js.map +0 -1
- package/lib/commonjs/globals.js +0 -6
- package/lib/commonjs/globals.js.map +0 -1
- package/lib/commonjs/handlers/FlingGestureHandler.js +0 -31
- package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -46
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/GestureHandlerEventPayload.js +0 -6
- package/lib/commonjs/handlers/GestureHandlerEventPayload.js.map +0 -1
- package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -33
- package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/NativeViewGestureHandler.js +0 -32
- package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PanGestureHandler.js +0 -112
- package/lib/commonjs/handlers/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PinchGestureHandler.js +0 -29
- package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.js +0 -13
- package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -11
- package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
- package/lib/commonjs/handlers/RotationGestureHandler.js +0 -29
- package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/TapGestureHandler.js +0 -33
- package/lib/commonjs/handlers/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/createHandler.js +0 -334
- package/lib/commonjs/handlers/createHandler.js.map +0 -1
- package/lib/commonjs/handlers/createNativeWrapper.js +0 -78
- package/lib/commonjs/handlers/createNativeWrapper.js.map +0 -1
- package/lib/commonjs/handlers/customDirectEventTypes.js +0 -13
- package/lib/commonjs/handlers/customDirectEventTypes.js.map +0 -1
- package/lib/commonjs/handlers/customDirectEventTypes.web.js +0 -10
- package/lib/commonjs/handlers/customDirectEventTypes.web.js.map +0 -1
- package/lib/commonjs/handlers/gestureHandlerCommon.js +0 -27
- package/lib/commonjs/handlers/gestureHandlerCommon.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/GestureDetector/Wrap.js +0 -32
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js +0 -68
- package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js +0 -20
- package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/index.js +0 -122
- package/lib/commonjs/handlers/gestures/GestureDetector/index.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js +0 -22
- package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/types.js +0 -6
- package/lib/commonjs/handlers/gestures/GestureDetector/types.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js +0 -67
- package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js +0 -143
- package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js +0 -47
- package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/utils.js +0 -145
- package/lib/commonjs/handlers/gestures/GestureDetector/utils.js.map +0 -1
- package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -106
- package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
- package/lib/commonjs/handlers/gestures/flingGesture.js +0 -37
- package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -80
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gesture.js +0 -344
- package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -90
- package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -132
- package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -50
- package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -36
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
- package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -57
- package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -46
- package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/manualGesture.js +0 -25
- 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 -197
- package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -38
- package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -32
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
- package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -38
- package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/tapGesture.js +0 -87
- package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
- package/lib/commonjs/handlers/getNextHandlerTag.js +0 -11
- package/lib/commonjs/handlers/getNextHandlerTag.js.map +0 -1
- package/lib/commonjs/handlers/handlersRegistry.js +0 -74
- package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
- package/lib/commonjs/handlers/utils.js +0 -79
- package/lib/commonjs/handlers/utils.js.map +0 -1
- package/lib/commonjs/index.js +0 -277
- package/lib/commonjs/index.js.map +0 -1
- package/lib/commonjs/init.js +0 -11
- package/lib/commonjs/init.js.map +0 -1
- package/lib/commonjs/jestUtils/index.js +0 -19
- package/lib/commonjs/jestUtils/index.js.map +0 -1
- package/lib/commonjs/jestUtils/jestUtils.js +0 -350
- package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
- package/lib/commonjs/mocks/GestureButtons.js +0 -23
- package/lib/commonjs/mocks/GestureButtons.js.map +0 -1
- package/lib/commonjs/mocks/Pressable.js +0 -13
- package/lib/commonjs/mocks/Pressable.js.map +0 -1
- package/lib/commonjs/mocks/gestureComponents.js +0 -19
- package/lib/commonjs/mocks/gestureComponents.js.map +0 -1
- package/lib/commonjs/mocks/hostDetector.js +0 -10
- package/lib/commonjs/mocks/hostDetector.js.map +0 -1
- package/lib/commonjs/mocks/module.js +0 -30
- package/lib/commonjs/mocks/module.js.map +0 -1
- package/lib/commonjs/mountRegistry.js +0 -37
- package/lib/commonjs/mountRegistry.js.map +0 -1
- package/lib/commonjs/package.json +0 -1
- package/lib/commonjs/specs/NativeRNGestureHandlerModule.js +0 -9
- package/lib/commonjs/specs/NativeRNGestureHandlerModule.js.map +0 -1
- package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.ts +0 -27
- package/lib/commonjs/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
- package/lib/commonjs/specs/RNGestureHandlerDetectorNativeComponent.ts +0 -74
- package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -15
- package/lib/commonjs/typeUtils.js +0 -2
- package/lib/commonjs/typeUtils.js.map +0 -1
- package/lib/commonjs/useIsomorphicLayoutEffect.js +0 -20
- package/lib/commonjs/useIsomorphicLayoutEffect.js.map +0 -1
- package/lib/commonjs/utils.js +0 -83
- package/lib/commonjs/utils.js.map +0 -1
- package/lib/commonjs/v3/NativeProxy.js +0 -48
- package/lib/commonjs/v3/NativeProxy.js.map +0 -1
- package/lib/commonjs/v3/NativeProxy.web.js +0 -29
- package/lib/commonjs/v3/NativeProxy.web.js.map +0 -1
- package/lib/commonjs/v3/components/GestureButtons.js +0 -153
- package/lib/commonjs/v3/components/GestureButtons.js.map +0 -1
- package/lib/commonjs/v3/components/GestureButtonsProps.js +0 -6
- package/lib/commonjs/v3/components/GestureButtonsProps.js.map +0 -1
- package/lib/commonjs/v3/components/GestureComponents.js +0 -124
- package/lib/commonjs/v3/components/GestureComponents.js.map +0 -1
- package/lib/commonjs/v3/components/GestureComponents.web.js +0 -39
- package/lib/commonjs/v3/components/GestureComponents.web.js.map +0 -1
- package/lib/commonjs/v3/components/Pressable.js +0 -283
- package/lib/commonjs/v3/components/Pressable.js.map +0 -1
- package/lib/commonjs/v3/components/index.js +0 -76
- package/lib/commonjs/v3/components/index.js.map +0 -1
- package/lib/commonjs/v3/createNativeWrapper.js +0 -70
- package/lib/commonjs/v3/createNativeWrapper.js.map +0 -1
- package/lib/commonjs/v3/detectors/GestureDetector.js +0 -24
- package/lib/commonjs/v3/detectors/GestureDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/HostGestureDetector.js +0 -11
- package/lib/commonjs/v3/detectors/HostGestureDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/HostGestureDetector.web.js +0 -113
- package/lib/commonjs/v3/detectors/HostGestureDetector.web.js.map +0 -1
- package/lib/commonjs/v3/detectors/NativeDetector.js +0 -76
- package/lib/commonjs/v3/detectors/NativeDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js +0 -74
- package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js +0 -11
- package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js.map +0 -1
- package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +0 -167
- package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js +0 -74
- package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js +0 -19
- package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +0 -1
- package/lib/commonjs/v3/detectors/common.js +0 -22
- package/lib/commonjs/v3/detectors/common.js.map +0 -1
- package/lib/commonjs/v3/detectors/index.js +0 -34
- package/lib/commonjs/v3/detectors/index.js.map +0 -1
- package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js +0 -17
- package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js.map +0 -1
- package/lib/commonjs/v3/detectors/utils.js +0 -130
- package/lib/commonjs/v3/detectors/utils.js.map +0 -1
- package/lib/commonjs/v3/gestureStateManager.js +0 -42
- package/lib/commonjs/v3/gestureStateManager.js.map +0 -1
- package/lib/commonjs/v3/gestureStateManager.web.js +0 -54
- package/lib/commonjs/v3/gestureStateManager.web.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/eventHandler.js +0 -80
- package/lib/commonjs/v3/hooks/callbacks/eventHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js +0 -50
- package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js +0 -22
- package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/updateHandler.js +0 -30
- package/lib/commonjs/v3/hooks/callbacks/updateHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js +0 -21
- package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js +0 -39
- package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/index.js +0 -27
- package/lib/commonjs/v3/hooks/composition/index.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js +0 -12
- package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/useComposedGesture.js +0 -52
- package/lib/commonjs/v3/hooks/composition/useComposedGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js +0 -14
- package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js +0 -13
- package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js +0 -14
- package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js +0 -27
- package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/index.js +0 -69
- package/lib/commonjs/v3/hooks/gestures/index.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js +0 -21
- package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js +0 -2
- package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js +0 -14
- package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js +0 -14
- package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js +0 -79
- package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
- package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js +0 -27
- package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
- package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js +0 -26
- package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js +0 -15
- package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/index.js +0 -28
- package/lib/commonjs/v3/hooks/index.js.map +0 -1
- package/lib/commonjs/v3/hooks/useGesture.js +0 -84
- package/lib/commonjs/v3/hooks/useGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/useGestureCallbacks.js +0 -53
- package/lib/commonjs/v3/hooks/useGestureCallbacks.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/configUtils.js +0 -73
- package/lib/commonjs/v3/hooks/utils/configUtils.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js +0 -96
- package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/eventUtils.js +0 -73
- package/lib/commonjs/v3/hooks/utils/eventUtils.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/index.js +0 -168
- package/lib/commonjs/v3/hooks/utils/index.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/propsWhiteList.js +0 -31
- package/lib/commonjs/v3/hooks/utils/propsWhiteList.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js +0 -85
- package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/relationUtils.js +0 -51
- package/lib/commonjs/v3/hooks/utils/relationUtils.js.map +0 -1
- package/lib/commonjs/v3/index.js +0 -180
- package/lib/commonjs/v3/index.js.map +0 -1
- package/lib/commonjs/v3/types/ConfigTypes.js +0 -6
- package/lib/commonjs/v3/types/ConfigTypes.js.map +0 -1
- package/lib/commonjs/v3/types/DetectorTypes.js +0 -6
- package/lib/commonjs/v3/types/DetectorTypes.js.map +0 -1
- package/lib/commonjs/v3/types/EventTypes.js +0 -6
- package/lib/commonjs/v3/types/EventTypes.js.map +0 -1
- package/lib/commonjs/v3/types/GestureTypes.js +0 -28
- package/lib/commonjs/v3/types/GestureTypes.js.map +0 -1
- package/lib/commonjs/v3/types/NativeWrapperType.js +0 -6
- package/lib/commonjs/v3/types/NativeWrapperType.js.map +0 -1
- package/lib/commonjs/v3/types/ReanimatedTypes.js +0 -2
- package/lib/commonjs/v3/types/ReanimatedTypes.js.map +0 -1
- package/lib/commonjs/v3/types/UtilityTypes.js +0 -6
- package/lib/commonjs/v3/types/UtilityTypes.js.map +0 -1
- package/lib/commonjs/v3/types/index.js +0 -19
- package/lib/commonjs/v3/types/index.js.map +0 -1
- package/lib/commonjs/web/Gestures.js +0 -30
- package/lib/commonjs/web/Gestures.js.map +0 -1
- package/lib/commonjs/web/constants.js +0 -9
- package/lib/commonjs/web/constants.js.map +0 -1
- package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -124
- package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -111
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
- package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -141
- package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/GestureHandler.js +0 -857
- package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -50
- package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/IGestureHandler.js +0 -2
- package/lib/commonjs/web/handlers/IGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -144
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -42
- package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -147
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -386
- package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -126
- package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -133
- package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -213
- package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/web/interfaces.js +0 -25
- package/lib/commonjs/web/interfaces.js.map +0 -1
- package/lib/commonjs/web/tools/CircularBuffer.js +0 -40
- package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
- package/lib/commonjs/web/tools/EventManager.js +0 -102
- package/lib/commonjs/web/tools/EventManager.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -2
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -269
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -219
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
- package/lib/commonjs/web/tools/InteractionManager.js +0 -83
- package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
- package/lib/commonjs/web/tools/KeyboardEventManager.js +0 -108
- package/lib/commonjs/web/tools/KeyboardEventManager.js.map +0 -1
- package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -159
- package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
- package/lib/commonjs/web/tools/NodeManager.js +0 -45
- package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
- package/lib/commonjs/web/tools/PointerEventManager.js +0 -186
- package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
- package/lib/commonjs/web/tools/PointerTracker.js +0 -192
- package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
- package/lib/commonjs/web/tools/Vector.js +0 -37
- package/lib/commonjs/web/tools/Vector.js.map +0 -1
- package/lib/commonjs/web/tools/VelocityTracker.js +0 -85
- package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
- package/lib/commonjs/web/tools/WheelEventManager.js +0 -55
- package/lib/commonjs/web/tools/WheelEventManager.js.map +0 -1
- package/lib/commonjs/web/utils.js +0 -235
- package/lib/commonjs/web/utils.js.map +0 -1
- package/lib/module/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
- package/lib/module/v3/hooks/callbacks/stateChangeHandler.js +0 -46
- package/lib/module/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
- package/lib/module/v3/hooks/callbacks/touchEventHandler.js +0 -18
- package/lib/module/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
- package/lib/module/v3/hooks/callbacks/updateHandler.js +0 -26
- package/lib/module/v3/hooks/callbacks/updateHandler.js.map +0 -1
- package/lib/module/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/manual/ManualProperties.js +0 -2
- package/lib/module/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/native/NativeProperties.js +0 -4
- package/lib/module/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
- package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
- package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
- package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts +0 -6
- package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts +0 -4
- package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts +0 -3
- package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts +0 -4
- package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts +0 -23
- package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts +0 -18
- package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/longPress/LongPressProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts +0 -2
- package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts +0 -16
- package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/pan/PanProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts +0 -2
- package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts +0 -2
- package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/tap/TapProperties.d.ts.map +0 -1
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperComponentDescriptor.h +0 -32
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.cpp +0 -102
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.h +0 -56
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperState.h +0 -32
- package/src/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
- package/src/v3/hooks/callbacks/stateChangeHandler.ts +0 -70
- package/src/v3/hooks/callbacks/touchEventHandler.ts +0 -32
- package/src/v3/hooks/callbacks/updateHandler.ts +0 -53
- package/src/v3/hooks/gestures/fling/FlingProperties.ts +0 -26
- package/src/v3/hooks/gestures/hover/HoverProperties.ts +0 -22
- package/src/v3/hooks/gestures/manual/ManualProperties.ts +0 -1
- package/src/v3/hooks/gestures/native/NativeProperties.ts +0 -19
- package/src/v3/hooks/gestures/pinch/PinchProperties.ts +0 -1
- package/src/v3/hooks/gestures/rotation/RotationProperties.ts +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SingleGestureName","useGesture","
|
|
1
|
+
{"version":3,"names":["SingleGestureName","useGesture","getChangeEventCalculator","useClonedAndRemappedConfig","diffCalculator","current","previous","rotationChange","rotation","fillInDefaultValues","event","transformRotationProps","config","changeEventCalculator","RotationPropsMapping","Map","EMPTY_ROTATION_CONFIG","useRotationGesture","rotationConfig","Rotation"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/rotation/useRotationGesture.ts"],"mappings":";;AACA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SACEC,wBAAwB,EACxBC,0BAA0B,QACrB,aAAa;AAUpB,SAASC,cAAcA,CACrBC,OAAiD,EACjDC,QAAyD,EACzD;EACA,SAAS;;EACT,OAAO;IACLC,cAAc,EAAED,QAAQ,GACpBD,OAAO,CAACG,QAAQ,GAAGF,QAAQ,CAACE,QAAQ,GACpCH,OAAO,CAACG;EACd,CAAC;AACH;AAEA,SAASC,mBAAmBA,CAACC,KAAgD,EAAE;EAC7E,SAAS;;EACTA,KAAK,CAACH,cAAc,GAAG,CAAC;AAC1B;AAEA,SAASI,sBAAsBA,CAC7BC,MAA6D,EAC7D;EACAA,MAAM,CAACC,qBAAqB,GAAGX,wBAAwB,CAACE,cAAc,CAAC;EACvEQ,MAAM,CAACH,mBAAmB,GAAGA,mBAAmB;EAEhD,OAAOG,MAAM;AACf;AAEA,MAAME,oBAAoB,GAAG,IAAIC,GAAG,CAAiB,CAAC;AAEtD,MAAMC,qBAA4C,GAAG,CAAC,CAAC;AAEvD,OAAO,SAASC,kBAAkBA,CAChCL,MAA6B,GAAGI,qBAAqB,EACpC;EACjB,MAAME,cAAc,GAAGf,0BAA0B,CAM/CS,MAAM,EAAEE,oBAAoB,EAAEH,sBAAsB,CAAC;EAEvD,OAAOV,UAAU,CAACD,iBAAiB,CAACmB,QAAQ,EAAED,cAAc,CAAC;AAC/D","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["TapNativeProperties","Set"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/tap/TapTypes.ts"],"mappings":";;AAmEA,OAAO,MAAMA,mBAAmB,GAAG,IAAIC,GAAG,CAA+B,CACvE,aAAa,EACb,cAAc,EACd,WAAW,EACX,WAAW,EACX,eAAe,EACf,YAAY,EACZ,SAAS,CACV,CAAC","ignoreList":[]}
|
|
@@ -4,7 +4,8 @@ import { SingleGestureName } from '../../../types';
|
|
|
4
4
|
import { useGesture } from '../../useGesture';
|
|
5
5
|
import { useClonedAndRemappedConfig } from '../../utils';
|
|
6
6
|
const TapPropsMapping = new Map([['maxDistance', 'maxDist'], ['maxDuration', 'maxDurationMs'], ['maxDelay', 'maxDelayMs']]);
|
|
7
|
-
|
|
7
|
+
const EMPTY_TAP_CONFIG = {};
|
|
8
|
+
export function useTapGesture(config = EMPTY_TAP_CONFIG) {
|
|
8
9
|
const tapConfig = useClonedAndRemappedConfig(config, TapPropsMapping);
|
|
9
10
|
return useGesture(SingleGestureName.Tap, tapConfig);
|
|
10
11
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","TapPropsMapping","Map","useTapGesture","config","tapConfig","Tap"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/tap/useTapGesture.ts"],"mappings":";;AAAA,
|
|
1
|
+
{"version":3,"names":["SingleGestureName","useGesture","useClonedAndRemappedConfig","TapPropsMapping","Map","EMPTY_TAP_CONFIG","useTapGesture","config","tapConfig","Tap"],"sourceRoot":"../../../../../../src","sources":["v3/hooks/gestures/tap/useTapGesture.ts"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,gBAAgB;AAClD,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,0BAA0B,QAAQ,aAAa;AASxD,MAAMC,eAAe,GAAG,IAAIC,GAAG,CAG7B,CACA,CAAC,aAAa,EAAE,SAAS,CAAC,EAC1B,CAAC,aAAa,EAAE,eAAe,CAAC,EAChC,CAAC,UAAU,EAAE,YAAY,CAAC,CAC3B,CAAC;AAEF,MAAMC,gBAAkC,GAAG,CAAC,CAAC;AAE7C,OAAO,SAASC,aAAaA,CAC3BC,MAAwB,GAAGF,gBAAgB,EAC/B;EACZ,MAAMG,SAAS,GAAGN,0BAA0B,CAI1CK,MAAM,EAAEJ,eAAe,CAAC;EAE1B,OAAOF,UAAU,CACfD,iBAAiB,CAACS,GAAG,EACrBD,SACF,CAAC;AACH","ignoreList":[]}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
import { useEffect, useMemo, useRef } from 'react';
|
|
4
4
|
import { getNextHandlerTag } from '../../handlers/getNextHandlerTag';
|
|
5
|
-
import { useGestureCallbacks } from './useGestureCallbacks';
|
|
6
|
-
import { prepareConfig, prepareRelations, bindSharedValues, unbindSharedValues, prepareConfigForNativeSide } from './utils';
|
|
7
|
-
import { tagMessage } from '../../utils';
|
|
8
|
-
import { scheduleFlushOperations } from '../../handlers/utils';
|
|
9
5
|
import { registerGesture, unregisterGesture } from '../../handlers/handlersRegistry';
|
|
6
|
+
import { scheduleFlushOperations } from '../../handlers/utils';
|
|
7
|
+
import { tagMessage } from '../../utils';
|
|
10
8
|
import { NativeProxy } from '../NativeProxy';
|
|
9
|
+
import { useGestureCallbacks } from './useGestureCallbacks';
|
|
10
|
+
import { bindSharedValues, prepareConfigForNativeSide, prepareRelations, unbindSharedValues } from './utils';
|
|
11
11
|
export function useGesture(type, config) {
|
|
12
12
|
const handlerTag = useMemo(() => getNextHandlerTag(), []);
|
|
13
13
|
const disableReanimated = useMemo(() => config.disableReanimated, []);
|
|
@@ -15,9 +15,6 @@ export function useGesture(type, config) {
|
|
|
15
15
|
throw new Error(tagMessage('The "disableReanimated" property must not be changed after the handler is created.'));
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
// This has to be done ASAP as other hooks depend `shouldUseReanimatedDetector`.
|
|
19
|
-
prepareConfig(config);
|
|
20
|
-
|
|
21
18
|
// TODO: Call only necessary hooks depending on which callbacks are defined (?)
|
|
22
19
|
const {
|
|
23
20
|
jsEventHandler,
|
|
@@ -56,10 +53,12 @@ export function useGesture(type, config) {
|
|
|
56
53
|
}), [handlerTag, type, config, jsEventHandler, reanimatedEventHandler, animatedEventHandler, gestureRelations]);
|
|
57
54
|
useEffect(() => {
|
|
58
55
|
return () => {
|
|
59
|
-
currentGestureRef.current
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
56
|
+
if (currentGestureRef.current.handlerTag === handlerTag) {
|
|
57
|
+
currentGestureRef.current = {
|
|
58
|
+
type: '',
|
|
59
|
+
handlerTag: -1
|
|
60
|
+
};
|
|
61
|
+
}
|
|
63
62
|
NativeProxy.dropGestureHandler(handlerTag);
|
|
64
63
|
scheduleFlushOperations();
|
|
65
64
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["useEffect","useMemo","useRef","getNextHandlerTag","
|
|
1
|
+
{"version":3,"names":["useEffect","useMemo","useRef","getNextHandlerTag","registerGesture","unregisterGesture","scheduleFlushOperations","tagMessage","NativeProxy","useGestureCallbacks","bindSharedValues","prepareConfigForNativeSide","prepareRelations","unbindSharedValues","useGesture","type","config","handlerTag","disableReanimated","Error","jsEventHandler","reanimatedEventHandler","animatedEventHandler","shouldUseReanimatedDetector","gestureRelations","simultaneousWith","requireToFail","block","currentGestureRef","current","createGestureHandler","gesture","detectorCallbacks","dropGestureHandler","preparedConfig","setGestureHandlerConfig"],"sourceRoot":"../../../../src","sources":["v3/hooks/useGesture.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
import { Reanimated } from '../../handlers/gestures/reanimatedWrapper';
|
|
4
|
+
import { tagMessage } from '../../utils';
|
|
3
5
|
import { useGestureEventHandler } from './callbacks/useGestureEventHandler';
|
|
4
|
-
import { checkMappingForChangeProperties, isNativeAnimatedEvent, useMemoizedGestureCallbacks } from './utils';
|
|
5
6
|
import { useReanimatedEventHandler } from './callbacks/useReanimatedEventHandler';
|
|
6
|
-
import {
|
|
7
|
-
import { Reanimated } from '../../handlers/gestures/reanimatedWrapper';
|
|
7
|
+
import { checkMappingForChangeProperties, isNativeAnimatedEvent, useMemoizedGestureCallbacks } from './utils';
|
|
8
8
|
function guardJSAnimatedEvent(handler) {
|
|
9
9
|
return (...args) => {
|
|
10
10
|
try {
|
|
@@ -25,7 +25,7 @@ export function useGestureCallbacks(handlerTag, config) {
|
|
|
25
25
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
26
26
|
const reanimatedHandler = Reanimated?.useHandler(callbacks);
|
|
27
27
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
28
|
-
reanimatedEventHandler = useReanimatedEventHandler(handlerTag, callbacks, reanimatedHandler, config.changeEventCalculator);
|
|
28
|
+
reanimatedEventHandler = useReanimatedEventHandler(handlerTag, callbacks, reanimatedHandler, config.changeEventCalculator, config.fillInDefaultValues);
|
|
29
29
|
}
|
|
30
30
|
let animatedEventHandler;
|
|
31
31
|
if (config.dispatchesAnimatedEvents) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["Reanimated","tagMessage","useGestureEventHandler","useReanimatedEventHandler","checkMappingForChangeProperties","isNativeAnimatedEvent","useMemoizedGestureCallbacks","guardJSAnimatedEvent","handler","args","e","Error","message","includes","useGestureCallbacks","handlerTag","config","callbacks","jsEventHandler","reanimatedEventHandler","disableReanimated","reanimatedHandler","useHandler","changeEventCalculator","fillInDefaultValues","animatedEventHandler","dispatchesAnimatedEvents","__DEV__","onUpdate"],"sourceRoot":"../../../../src","sources":["v3/hooks/useGestureCallbacks.ts"],"mappings":";;AAAA,SAASA,UAAU,QAAQ,2CAA2C;AACtE,SAASC,UAAU,QAAQ,aAAa;AAMxC,SAASC,sBAAsB,QAAQ,oCAAoC;AAC3E,SAASC,yBAAyB,QAAQ,uCAAuC;AACjF,SACEC,+BAA+B,EAC/BC,qBAAqB,EACrBC,2BAA2B,QACtB,SAAS;AAEhB,SAASC,oBAAoBA,CAACC,OAAqC,EAAE;EACnE,OAAO,CAAC,GAAGC,IAAe,KAAK;IAC7B,IAAI;MACFD,OAAO,CAAC,GAAGC,IAAI,CAAC;IAClB,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,IACEA,CAAC,YAAYC,KAAK,IAClBD,CAAC,CAACE,OAAO,CAACC,QAAQ,CAAC,qCAAqC,CAAC,EACzD;QACA,MAAM,IAAIF,KAAK,CACbV,UAAU,CACR,yDAAyD,GACvD,iFAAiF,GACjF,gEACJ,CACF,CAAC;MACH;MAEA,MAAMS,CAAC;IACT;EACF,CAAC;AACH;AAEA,OAAO,SAASI,mBAAmBA,CAKjCC,UAAkB,EAClBC,MAAsE,EACtE;EACA,MAAMC,SAAS,GAAGX,2BAA2B,CAACU,MAAM,CAAC;EAErD,MAAME,cAAc,GAAGhB,sBAAsB,CAACa,UAAU,EAAEE,SAAS,EAAED,MAAM,CAAC;EAE5E,IAAIG,sBAAsB;EAE1B,IAAI,CAACH,MAAM,CAACI,iBAAiB,EAAE;IAC7B;IACA,MAAMC,iBAAiB,GAAGrB,UAAU,EAAEsB,UAAU,CAACL,SAAS,CAAC;IAC3D;IACAE,sBAAsB,GAAGhB,yBAAyB,CAChDY,UAAU,EACVE,SAAS,EACTI,iBAAiB,EACjBL,MAAM,CAACO,qBAAqB,EAC5BP,MAAM,CAACQ,mBACT,CAAC;EACH;EAEA,IAAIC,oBAGS;EACb,IAAIT,MAAM,CAACU,wBAAwB,EAAE;IACnC,IAAIC,OAAO,IAAItB,qBAAqB,CAACW,MAAM,CAACY,QAAQ,CAAC,EAAE;MACrDxB,+BAA+B,CAACY,MAAM,CAACY,QAAQ,CAAC;IAClD;IAEA,IAAID,OAAO,IAAI,CAACtB,qBAAqB,CAACW,MAAM,CAACY,QAAQ,CAAC,EAAE;MACtD;MACAH,oBAAoB,GAAGlB,oBAAoB,CAACS,MAAM,CAACY,QAAQ,CAAC;IAC9D,CAAC,MAAM;MACL;MACAH,oBAAoB,GAAGT,MAAM,CAACY,QAAQ;IACxC;EACF;EAEA,OAAO;IACLV,cAAc;IACdC,sBAAsB;IACtBM;EACF,CAAC;AACH","ignoreList":[]}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
import { useMemo } from 'react';
|
|
3
4
|
import { Reanimated } from '../../../handlers/gestures/reanimatedWrapper';
|
|
4
5
|
import { tagMessage } from '../../../utils';
|
|
5
|
-
import { hasWorkletEventHandlers, maybeUnpackValue } from './reanimatedUtils';
|
|
6
6
|
import { isNativeAnimatedEvent, shouldHandleTouchEvents } from './eventUtils';
|
|
7
7
|
import { allowedNativeProps, EMPTY_WHITE_LIST, PropsToFilter, PropsWhiteLists } from './propsWhiteList';
|
|
8
|
-
import {
|
|
9
|
-
export function
|
|
8
|
+
import { hasWorkletEventHandlers, maybeUnpackValue } from './reanimatedUtils';
|
|
9
|
+
export function resolveInternalConfigProps(config) {
|
|
10
10
|
const runOnJS = maybeUnpackValue(config.runOnJS);
|
|
11
11
|
if (__DEV__ && isNativeAnimatedEvent(config.onUpdate) && !config.useAnimated) {
|
|
12
12
|
console.warn(tagMessage('You are using Animated.event in onUpdate without setting useAnimated to true. ' + 'This may lead to unexpected behavior. If you intend to use Animated.event, ' + 'please set useAnimated to true in the gesture config.'));
|
|
@@ -58,10 +58,14 @@ function remapProps(config, propsMapping) {
|
|
|
58
58
|
});
|
|
59
59
|
return config;
|
|
60
60
|
}
|
|
61
|
-
|
|
61
|
+
const DEFAULT_PROPS_MAPPING = new Map();
|
|
62
|
+
const DEFAULT_PROPS_TRANSFORMER = config => config;
|
|
63
|
+
export function useClonedAndRemappedConfig(config, propsMapping = DEFAULT_PROPS_MAPPING, propsTransformer = DEFAULT_PROPS_TRANSFORMER) {
|
|
62
64
|
return useMemo(() => {
|
|
63
65
|
const clonedConfig = cloneConfig(config);
|
|
64
|
-
|
|
66
|
+
const transformedConfig = propsTransformer(remapProps(clonedConfig, propsMapping));
|
|
67
|
+
resolveInternalConfigProps(transformedConfig);
|
|
68
|
+
return transformedConfig;
|
|
65
69
|
}, [config, propsMapping, propsTransformer]);
|
|
66
70
|
}
|
|
67
71
|
//# sourceMappingURL=configUtils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["useMemo","Reanimated","tagMessage","isNativeAnimatedEvent","shouldHandleTouchEvents","allowedNativeProps","EMPTY_WHITE_LIST","PropsToFilter","PropsWhiteLists","hasWorkletEventHandlers","maybeUnpackValue","resolveInternalConfigProps","config","runOnJS","__DEV__","onUpdate","useAnimated","console","warn","dispatchesAnimatedEvents","disableReanimated","Error","shouldUseReanimatedDetector","undefined","needsPointerData","dispatchesReanimatedEvents","prepareConfigForNativeSide","handlerType","filteredConfig","handlerPropsWhiteList","get","key","value","Object","entries","has","assign","isSharedValue","cloneConfig","remapProps","propsMapping","forEach","internalKey","DEFAULT_PROPS_MAPPING","Map","DEFAULT_PROPS_TRANSFORMER","useClonedAndRemappedConfig","propsTransformer","clonedConfig","transformedConfig"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/configUtils.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import { useMemo } from 'react';
|
|
4
|
-
import { TouchEventType } from '../../../TouchEventType';
|
|
5
4
|
import { CALLBACK_TYPE } from '../../../handlers/gestures/gesture';
|
|
5
|
+
import { TouchEventType } from '../../../TouchEventType';
|
|
6
6
|
export function useMemoizedGestureCallbacks(callbacks) {
|
|
7
7
|
return useMemo(() => ({
|
|
8
8
|
...(callbacks.onBegin ? {
|
|
@@ -74,17 +74,13 @@ export function touchEventTypeToCallbackType(eventType) {
|
|
|
74
74
|
}
|
|
75
75
|
return CALLBACK_TYPE.UNDEFINED;
|
|
76
76
|
}
|
|
77
|
-
export function runCallback(type, callbacks, event
|
|
77
|
+
export function runCallback(type, callbacks, event) {
|
|
78
78
|
'worklet';
|
|
79
79
|
|
|
80
80
|
const handler = getHandler(type, callbacks);
|
|
81
81
|
if (!handler) {
|
|
82
82
|
return;
|
|
83
83
|
}
|
|
84
|
-
|
|
85
|
-
handler(event);
|
|
86
|
-
} else {
|
|
87
|
-
handler(event, didSucceed);
|
|
88
|
-
}
|
|
84
|
+
handler(event);
|
|
89
85
|
}
|
|
90
86
|
//# sourceMappingURL=eventHandlersUtils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["useMemo","
|
|
1
|
+
{"version":3,"names":["useMemo","CALLBACK_TYPE","TouchEventType","useMemoizedGestureCallbacks","callbacks","onBegin","onActivate","onDeactivate","onFinalize","onUpdate","onTouchesDown","onTouchesMove","onTouchesUp","onTouchesCancel","getHandler","type","BEGAN","START","UPDATE","END","FINALIZE","TOUCHES_DOWN","TOUCHES_MOVE","TOUCHES_UP","TOUCHES_CANCEL","touchEventTypeToCallbackType","eventType","UNDEFINED","runCallback","event","handler"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/eventHandlersUtils.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -60,4 +60,14 @@ export function getChangeEventCalculator(diffCalculator) {
|
|
|
60
60
|
return current;
|
|
61
61
|
};
|
|
62
62
|
}
|
|
63
|
+
export function isTouchEvent(event) {
|
|
64
|
+
'worklet';
|
|
65
|
+
|
|
66
|
+
return 'allTouches' in event;
|
|
67
|
+
}
|
|
68
|
+
export function isStateChangeEvent(event) {
|
|
69
|
+
'worklet';
|
|
70
|
+
|
|
71
|
+
return 'oldState' in event && event.oldState !== undefined;
|
|
72
|
+
}
|
|
63
73
|
//# sourceMappingURL=eventUtils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["tagMessage","isNativeEvent","event","maybeExtractNativeEvent","nativeEvent","flattenAndFilterEvent","handlerTag","handlerData","isEventForHandlerWithTag","isNativeAnimatedEvent","callback","checkMappingForChangeProperties","animatedEvent","mapping","_argMapping","key","startsWith","Error","shouldHandleTouchEvents","config","onTouchesDown","onTouchesMove","onTouchesUp","onTouchesCancel","getChangeEventCalculator","diffCalculator","current","previous","currentEventData","previousEventData","changePayload"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/eventUtils.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"names":["tagMessage","isNativeEvent","event","maybeExtractNativeEvent","nativeEvent","flattenAndFilterEvent","handlerTag","handlerData","isEventForHandlerWithTag","isNativeAnimatedEvent","callback","checkMappingForChangeProperties","animatedEvent","mapping","_argMapping","key","startsWith","Error","shouldHandleTouchEvents","config","onTouchesDown","onTouchesMove","onTouchesUp","onTouchesCancel","getChangeEventCalculator","diffCalculator","current","previous","currentEventData","previousEventData","changePayload","isTouchEvent","isStateChangeEvent","oldState","undefined"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/eventUtils.ts"],"mappings":";;AAGA,SAASA,UAAU,QAAQ,gBAAgB;AAY3C,SAASC,aAAaA,CACpBC,KAA6E,EAMnC;EAC1C,SAAS;;EAET,OAAO,aAAa,IAAIA,KAAK;AAC/B;AAEA,OAAO,SAASC,uBAAuBA,CAIrCD,KAA6E,EAItB;EACvD,SAAS;;EAET,OAAOD,aAAa,CAACC,KAAK,CAAC,GAAGA,KAAK,CAACE,WAAW,GAAGF,KAAK;AACzD;AAEA,OAAO,SAASG,qBAAqBA,CACnCH,KAEwD,EAC5B;EAC5B,SAAS;;EAET,OAAO;IAAEI,UAAU,EAAEJ,KAAK,CAACI,UAAU;IAAE,GAAGJ,KAAK,CAACK;EAAY,CAAC;AAC/D;AAEA,OAAO,SAASC,wBAAwBA,CAItCF,UAAkB,EAClBJ,KAGqB,EACrB;EACA,SAAS;;EAET,OAAOA,KAAK,CAACI,UAAU,KAAKA,UAAU;AACxC;AAEA,OAAO,SAASG,qBAAqBA,CACnCC,QAGa,EACc;EAC3B,SAAS;;EAET,OAAO,CAAC,CAACA,QAAQ,IAAI,aAAa,IAAIA,QAAQ;AAChD;AAEA,OAAO,SAASC,+BAA+BA,CAACC,aAA4B,EAAE;EAC5E,KAAK,MAAMC,OAAO,IAAID,aAAa,CAACE,WAAW,EAAE;IAC/C,IACE,CAACD,OAAO,IACR,EAAE,aAAa,IAAIA,OAAO,IAAI,aAAa,IAAIA,OAAO,CAACT,WAAW,CAAC,EACnE;MACA;IACF;IAEA,KAAK,MAAMW,GAAG,IAAIF,OAAO,CAACT,WAAW,CAACG,WAAW,EAAE;MACjD,IAAIQ,GAAG,CAACC,UAAU,CAAC,QAAQ,CAAC,EAAE;QAC5B,MAAM,IAAIC,KAAK,CACbjB,UAAU,CAAC,GAAGe,GAAG,8CAA8C,CACjE,CAAC;MACH;IACF;EACF;AACF;AAEA,OAAO,SAASG,uBAAuBA,CAIrCC,MAAsE,EAAE;EACxE,OACE,CAAC,CAACA,MAAM,CAACC,aAAa,IACtB,CAAC,CAACD,MAAM,CAACE,aAAa,IACtB,CAAC,CAACF,MAAM,CAACG,WAAW,IACpB,CAAC,CAACH,MAAM,CAACI,eAAe;AAE5B;AAEA,OAAO,SAASC,wBAAwBA,CACtCC,cAAwD,EACZ;EAC5C,SAAS;;EACT,OAAO,CACLC,OAAgE,EAChEC,QAAkE,KAC/D;IACH,SAAS;;IACT,MAAMC,gBAAgB,GAAGF,OAAO,CAACnB,WAAW;IAC5C,MAAMsB,iBAAiB,GAAGF,QAAQ,GAAGA,QAAQ,CAACpB,WAAW,GAAG,IAAI;IAEhE,MAAMuB,aAAa,GAAGL,cAAc,CAACG,gBAAgB,EAAEC,iBAAiB,CAAC;IAEzEH,OAAO,CAACnB,WAAW,GAAG;MAAE,GAAGqB,gBAAgB;MAAE,GAAGE;IAAc,CAAC;IAE/D,OAAOJ,OAAO;EAChB,CAAC;AACH;AAEA,OAAO,SAASK,YAAYA,CAI1B7B,KAGqB,EACO;EAC5B,SAAS;;EAET,OAAO,YAAY,IAAIA,KAAK;AAC9B;AAEA,OAAO,SAAS8B,kBAAkBA,CAIhC9B,KAGqB,EAC0C;EAC/D,SAAS;;EAET,OAAO,UAAU,IAAIA,KAAK,IAAIA,KAAK,CAAC+B,QAAQ,KAAKC,SAAS;AAC5D","ignoreList":[]}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
3
|
+
export { prepareConfigForNativeSide, useClonedAndRemappedConfig } from './configUtils';
|
|
4
|
+
export { runCallback, touchEventTypeToCallbackType, useMemoizedGestureCallbacks } from './eventHandlersUtils';
|
|
5
|
+
export { checkMappingForChangeProperties, flattenAndFilterEvent, getChangeEventCalculator, isEventForHandlerWithTag, isNativeAnimatedEvent, maybeExtractNativeEvent, shouldHandleTouchEvents } from './eventUtils';
|
|
6
|
+
export { allowedNativeProps, EMPTY_WHITE_LIST, HandlerCallbacks, NativeWrapperProps, PropsToFilter, PropsWhiteLists } from './propsWhiteList';
|
|
7
|
+
export { bindSharedValues, hasWorkletEventHandlers, maybeUnpackValue, unbindSharedValues } from './reanimatedUtils';
|
|
8
|
+
export { containsDuplicates, isComposedGesture, prepareRelations } from './relationUtils';
|
|
9
9
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["prepareConfigForNativeSide","useClonedAndRemappedConfig","runCallback","touchEventTypeToCallbackType","useMemoizedGestureCallbacks","checkMappingForChangeProperties","flattenAndFilterEvent","getChangeEventCalculator","isEventForHandlerWithTag","isNativeAnimatedEvent","maybeExtractNativeEvent","shouldHandleTouchEvents","allowedNativeProps","EMPTY_WHITE_LIST","HandlerCallbacks","NativeWrapperProps","PropsToFilter","PropsWhiteLists","bindSharedValues","hasWorkletEventHandlers","maybeUnpackValue","unbindSharedValues","containsDuplicates","isComposedGesture","prepareRelations"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/index.ts"],"mappings":";;AAAA,SACEA,0BAA0B,EAC1BC,0BAA0B,QACrB,eAAe;AACtB,SACEC,WAAW,EACXC,4BAA4B,EAC5BC,2BAA2B,QACtB,sBAAsB;AAC7B,SACEC,+BAA+B,EAC/BC,qBAAqB,EACrBC,wBAAwB,EACxBC,wBAAwB,EACxBC,qBAAqB,EACrBC,uBAAuB,EACvBC,uBAAuB,QAClB,cAAc;AACrB,SACEC,kBAAkB,EAClBC,gBAAgB,EAChBC,gBAAgB,EAChBC,kBAAkB,EAClBC,aAAa,EACbC,eAAe,QACV,kBAAkB;AACzB,SACEC,gBAAgB,EAChBC,uBAAuB,EACvBC,gBAAgB,EAChBC,kBAAkB,QACb,mBAAmB;AAC1B,SACEC,kBAAkB,EAClBC,iBAAiB,EACjBC,gBAAgB,QACX,iBAAiB","ignoreList":[]}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import { SingleGestureName } from '../../types';
|
|
4
|
-
import { FlingNativeProperties } from '../gestures/fling/
|
|
5
|
-
import { HoverNativeProperties } from '../gestures/hover/
|
|
6
|
-
import { LongPressNativeProperties } from '../gestures/longPress/
|
|
7
|
-
import { NativeHandlerNativeProperties } from '../gestures/native/
|
|
8
|
-
import { PanNativeProperties } from '../gestures/pan/
|
|
9
|
-
import { TapNativeProperties } from '../gestures/tap/
|
|
10
|
-
const CommonConfig = new Set(['enabled', 'shouldCancelWhenOutside', 'hitSlop', 'activeCursor', 'mouseButton', 'testID', 'cancelsTouchesInView', 'manualActivation']);
|
|
4
|
+
import { FlingNativeProperties } from '../gestures/fling/FlingTypes';
|
|
5
|
+
import { HoverNativeProperties } from '../gestures/hover/HoverTypes';
|
|
6
|
+
import { LongPressNativeProperties } from '../gestures/longPress/LongPressTypes';
|
|
7
|
+
import { NativeHandlerNativeProperties } from '../gestures/native/NativeTypes';
|
|
8
|
+
import { PanNativeProperties } from '../gestures/pan/PanTypes';
|
|
9
|
+
import { TapNativeProperties } from '../gestures/tap/TapTypes';
|
|
10
|
+
const CommonConfig = new Set(['enabled', 'shouldCancelWhenOutside', 'hitSlop', 'activeCursor', 'mouseButton', 'testID', 'cancelsTouchesInView', 'cancelsJSResponder', 'manualActivation']);
|
|
11
11
|
const ExternalRelationsConfig = new Set(['simultaneousWith', 'requireToFail', 'block']);
|
|
12
12
|
export const allowedNativeProps = new Set([...CommonConfig,
|
|
13
13
|
// InternalConfigProps
|
|
@@ -20,7 +20,9 @@ if (!__DEV__) {
|
|
|
20
20
|
export const HandlerCallbacks = new Set(['onBegin', 'onActivate', 'onUpdate', 'onDeactivate', 'onFinalize', 'onTouchesDown', 'onTouchesMove', 'onTouchesUp', 'onTouchesCancel']);
|
|
21
21
|
export const PropsToFilter = new Set([...HandlerCallbacks, ...ExternalRelationsConfig,
|
|
22
22
|
// Config props
|
|
23
|
-
'changeEventCalculator', 'disableReanimated', 'shouldUseReanimatedDetector', 'useAnimated', 'runOnJS'
|
|
23
|
+
'fillInDefaultValues', 'changeEventCalculator', 'disableReanimated', 'shouldUseReanimatedDetector', 'useAnimated', 'runOnJS',
|
|
24
|
+
// Pan offset props before remapping:
|
|
25
|
+
'activeOffsetY', 'failOffsetX', 'failOffsetY', 'activeOffsetX']);
|
|
24
26
|
export const PropsWhiteLists = new Map([[SingleGestureName.Pan, PanNativeProperties], [SingleGestureName.Tap, TapNativeProperties], [SingleGestureName.Native, NativeHandlerNativeProperties], [SingleGestureName.Fling, FlingNativeProperties], [SingleGestureName.Hover, HoverNativeProperties], [SingleGestureName.LongPress, LongPressNativeProperties]]);
|
|
25
27
|
export const EMPTY_WHITE_LIST = new Set();
|
|
26
28
|
export const NativeWrapperProps = new Set([...CommonConfig, ...HandlerCallbacks, ...NativeHandlerNativeProperties, ...ExternalRelationsConfig, 'disableReanimated']);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SingleGestureName","FlingNativeProperties","HoverNativeProperties","LongPressNativeProperties","NativeHandlerNativeProperties","PanNativeProperties","TapNativeProperties","CommonConfig","Set","ExternalRelationsConfig","allowedNativeProps","__DEV__","delete","HandlerCallbacks","PropsToFilter","PropsWhiteLists","Map","Pan","Tap","Native","Fling","Hover","LongPress","EMPTY_WHITE_LIST","NativeWrapperProps"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/propsWhiteList.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"names":["SingleGestureName","FlingNativeProperties","HoverNativeProperties","LongPressNativeProperties","NativeHandlerNativeProperties","PanNativeProperties","TapNativeProperties","CommonConfig","Set","ExternalRelationsConfig","allowedNativeProps","__DEV__","delete","HandlerCallbacks","PropsToFilter","PropsWhiteLists","Map","Pan","Tap","Native","Fling","Hover","LongPress","EMPTY_WHITE_LIST","NativeWrapperProps"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/propsWhiteList.ts"],"mappings":";;AAQA,SAASA,iBAAiB,QAAQ,aAAa;AAE/C,SAASC,qBAAqB,QAAQ,8BAA8B;AACpE,SAASC,qBAAqB,QAAQ,8BAA8B;AACpE,SAASC,yBAAyB,QAAQ,sCAAsC;AAChF,SAASC,6BAA6B,QAAQ,gCAAgC;AAC9E,SAASC,mBAAmB,QAAQ,0BAA0B;AAC9D,SAASC,mBAAmB,QAAQ,0BAA0B;AAE9D,MAAMC,YAAY,GAAG,IAAIC,GAAG,CAA4B,CACtD,SAAS,EACT,yBAAyB,EACzB,SAAS,EACT,cAAc,EACd,aAAa,EACb,QAAQ,EACR,sBAAsB,EACtB,oBAAoB,EACpB,kBAAkB,CACnB,CAAC;AAEF,MAAMC,uBAAuB,GAAG,IAAID,GAAG,CAA0B,CAC/D,kBAAkB,EAClB,eAAe,EACf,OAAO,CACR,CAAC;AAEF,OAAO,MAAME,kBAAkB,GAAG,IAAIF,GAAG,CAEvC,CACA,GAAGD,YAAY;AAEf;AACA,YAAY,EACZ,mBAAmB,EACnB,aAAa,EACb,4BAA4B,EAC5B,0BAA0B,EAC1B,kBAAkB,CACnB,CAAC;;AAEF;AACA,IAAI,CAACI,OAAO,EAAE;EACZD,kBAAkB,CAACE,MAAM,CAAC,QAAQ,CAAC;AACrC;AAEA,OAAO,MAAMC,gBAAgB,GAAG,IAAIL,GAAG,CAErC,CACA,SAAS,EACT,YAAY,EACZ,UAAU,EACV,cAAc,EACd,YAAY,EACZ,eAAe,EACf,eAAe,EACf,aAAa,EACb,iBAAiB,CAClB,CAAC;AAEF,OAAO,MAAMM,aAAa,GAAG,IAAIN,GAAG,CAElC,CACA,GAAGK,gBAAgB,EACnB,GAAGJ,uBAAuB;AAE1B;AACA,qBAAqB,EACrB,uBAAuB,EACvB,mBAAmB,EACnB,6BAA6B,EAC7B,aAAa,EACb,SAAS;AAET;AACA,eAAe,EACf,aAAa,EACb,aAAa,EACb,eAAe,CAChB,CAAC;AAEF,OAAO,MAAMM,eAAe,GAAG,IAAIC,GAAG,CAGpC,CACA,CAAChB,iBAAiB,CAACiB,GAAG,EAAEZ,mBAAmB,CAAC,EAC5C,CAACL,iBAAiB,CAACkB,GAAG,EAAEZ,mBAAmB,CAAC,EAC5C,CAACN,iBAAiB,CAACmB,MAAM,EAAEf,6BAA6B,CAAC,EACzD,CAACJ,iBAAiB,CAACoB,KAAK,EAAEnB,qBAAqB,CAAC,EAChD,CAACD,iBAAiB,CAACqB,KAAK,EAAEnB,qBAAqB,CAAC,EAChD,CAACF,iBAAiB,CAACsB,SAAS,EAAEnB,yBAAyB,CAAC,CACzD,CAAC;AAEF,OAAO,MAAMoB,gBAAgB,GAAG,IAAIf,GAAG,CAAS,CAAC;AAEjD,OAAO,MAAMgB,kBAAkB,GAAG,IAAIhB,GAAG,CAEvC,CACA,GAAGD,YAAY,EACf,GAAGM,gBAAgB,EACnB,GAAGT,6BAA6B,EAChC,GAAGK,uBAAuB,EAC1B,mBAAmB,CACpB,CAAC","ignoreList":[]}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import { NativeProxy } from '../../NativeProxy';
|
|
4
3
|
import { Reanimated } from '../../../handlers/gestures/reanimatedWrapper';
|
|
4
|
+
import { NativeProxy } from '../../NativeProxy';
|
|
5
5
|
import { HandlerCallbacks } from './propsWhiteList';
|
|
6
6
|
|
|
7
7
|
// Variant of djb2 hash function.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["Reanimated","NativeProxy","HandlerCallbacks","hash","str","len","length","h","i","charCodeAt","SHARED_VALUE_OFFSET","updateGestureHandlerConfig","bindSharedValues","config","handlerTag","undefined","baseListenerId","attachListener","sharedValue","configKey","keyHash","listenerId","addListener","value","dispatchesReanimatedEvents","shouldUseReanimatedDetector","key","maybeSharedValue","Object","entries","isSharedValue","runOnUI","unbindSharedValues","removeListener","hasWorkletEventHandlers","some","has","maybeUnpackValue","v"],"sourceRoot":"../../../../../src","sources":["v3/hooks/utils/reanimatedUtils.ts"],"mappings":"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","ignoreList":[]}
|
package/lib/module/v3/index.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export { RawButton, BaseButton, RectButton, BorderlessButton, Pressable, ScrollView, Switch, TextInput, FlatList, RefreshControl } from './components';
|
|
3
|
+
export { BaseButton, BorderlessButton, FlatList, Pressable, RawButton, RectButton, RefreshControl, ScrollView, Switch, TextInput, Touchable } from './components';
|
|
4
|
+
export { GestureDetector, GestureDetectorType, InterceptingGestureDetector, VirtualGestureDetector } from './detectors';
|
|
6
5
|
export { GestureStateManager } from './gestureStateManager';
|
|
7
|
-
export {
|
|
6
|
+
export { useCompetingGestures, useExclusiveGestures, useFlingGesture, useHoverGesture, useLongPressGesture, useManualGesture, useNativeGesture, usePanGesture, usePinchGesture, useRotationGesture, useSimultaneousGestures, useTapGesture } from './hooks';
|
|
8
7
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["BaseButton","BorderlessButton","FlatList","Pressable","RawButton","RectButton","RefreshControl","ScrollView","Switch","TextInput","Touchable","GestureDetector","GestureDetectorType","InterceptingGestureDetector","VirtualGestureDetector","GestureStateManager","useCompetingGestures","useExclusiveGestures","useFlingGesture","useHoverGesture","useLongPressGesture","useManualGesture","useNativeGesture","usePanGesture","usePinchGesture","useRotationGesture","useSimultaneousGestures","useTapGesture"],"sourceRoot":"../../../src","sources":["v3/index.ts"],"mappings":";;AAOA,SACEA,UAAU,EACVC,gBAAgB,EAChBC,QAAQ,EACRC,SAAS,EACTC,SAAS,EACTC,UAAU,EACVC,cAAc,EACdC,UAAU,EACVC,MAAM,EACNC,SAAS,EACTC,SAAS,QACJ,cAAc;AAErB,SACEC,eAAe,EACfC,mBAAmB,EACnBC,2BAA2B,EAC3BC,sBAAsB,QACjB,aAAa;AACpB,SAASC,mBAAmB,QAAQ,uBAAuB;AAyC3D,SACEC,oBAAoB,EACpBC,oBAAoB,EACpBC,eAAe,EACfC,eAAe,EACfC,mBAAmB,EACnBC,gBAAgB,EAChBC,gBAAgB,EAChBC,aAAa,EACbC,eAAe,EACfC,kBAAkB,EAClBC,uBAAuB,EACvBC,aAAa,QACR,SAAS","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SingleGestureName","ComposedGestureName"],"sourceRoot":"../../../../src","sources":["v3/types/GestureTypes.ts"],"mappings":";;AAUA;;AAOA;;
|
|
1
|
+
{"version":3,"names":["SingleGestureName","ComposedGestureName"],"sourceRoot":"../../../../src","sources":["v3/types/GestureTypes.ts"],"mappings":";;AAUA;;AAOA;;AAkEA;;AAGA,WAAYA,iBAAiB,0BAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAA,OAAjBA,iBAAiB;AAAA;AAY7B,WAAYC,mBAAmB,0BAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAA,OAAnBA,mBAAmB;AAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["ComposedGestureName","SingleGestureName"],"sourceRoot":"../../../../src","sources":["v3/types/index.ts"],"mappings":";;AAqCA,SAASA,mBAAmB,EAAEC,iBAAiB,QAAQ,gBAAgB","ignoreList":[]}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
// Gesture Handlers
|
|
4
|
-
import
|
|
5
|
-
import
|
|
4
|
+
import FlingGestureHandler from './handlers/FlingGestureHandler';
|
|
5
|
+
import HoverGestureHandler from './handlers/HoverGestureHandler';
|
|
6
6
|
import LongPressGestureHandler from './handlers/LongPressGestureHandler';
|
|
7
|
+
import ManualGestureHandler from './handlers/ManualGestureHandler';
|
|
8
|
+
import NativeViewGestureHandler from './handlers/NativeViewGestureHandler';
|
|
9
|
+
import PanGestureHandler from './handlers/PanGestureHandler';
|
|
7
10
|
import PinchGestureHandler from './handlers/PinchGestureHandler';
|
|
8
11
|
import RotationGestureHandler from './handlers/RotationGestureHandler';
|
|
9
|
-
import
|
|
10
|
-
import NativeViewGestureHandler from './handlers/NativeViewGestureHandler';
|
|
11
|
-
import ManualGestureHandler from './handlers/ManualGestureHandler';
|
|
12
|
-
import HoverGestureHandler from './handlers/HoverGestureHandler';
|
|
12
|
+
import TapGestureHandler from './handlers/TapGestureHandler';
|
|
13
13
|
export const Gestures = {
|
|
14
14
|
NativeViewGestureHandler,
|
|
15
15
|
PanGestureHandler,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["FlingGestureHandler","HoverGestureHandler","LongPressGestureHandler","ManualGestureHandler","NativeViewGestureHandler","PanGestureHandler","PinchGestureHandler","RotationGestureHandler","TapGestureHandler","Gestures"],"sourceRoot":"../../../src","sources":["web/Gestures.ts"],"mappings":";;AAAA;AACA,OAAOA,mBAAmB,MAAM,gCAAgC;AAChE,OAAOC,mBAAmB,MAAM,gCAAgC;AAChE,OAAOC,uBAAuB,MAAM,oCAAoC;AACxE,OAAOC,oBAAoB,MAAM,iCAAiC;AAClE,OAAOC,wBAAwB,MAAM,qCAAqC;AAC1E,OAAOC,iBAAiB,MAAM,8BAA8B;AAC5D,OAAOC,mBAAmB,MAAM,gCAAgC;AAChE,OAAOC,sBAAsB,MAAM,mCAAmC;AACtE,OAAOC,iBAAiB,MAAM,8BAA8B;AAE5D,OAAO,MAAMC,QAAQ,GAAG;EACtBL,wBAAwB;EACxBC,iBAAiB;EACjBG,iBAAiB;EACjBN,uBAAuB;EACvBI,mBAAmB;EACnBC,sBAAsB;EACtBP,mBAAmB;EACnBG,oBAAoB;EACpBF;AACF,CAAC","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["DEFAULT_TOUCH_SLOP","MINIMAL_RECOGNIZABLE_MAGNITUDE"],"sourceRoot":"../../../src","sources":["web/constants.ts"],"mappings":";;AAAA,OAAO,MAAMA,kBAAkB,GAAG,EAAE;AACpC,OAAO,MAAMC,8BAA8B,GAAG,GAAG","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["DEFAULT_TOUCH_SLOP","MINIMAL_RECOGNIZABLE_MAGNITUDE","NATIVE_GESTURE_ROLE_ATTRIBUTE"],"sourceRoot":"../../../src","sources":["web/constants.ts"],"mappings":";;AAAA,OAAO,MAAMA,kBAAkB,GAAG,EAAE;AACpC,OAAO,MAAMC,8BAA8B,GAAG,GAAG;AACjD,OAAO,MAAMC,6BAA6B,GAAG,WAAW","ignoreList":[]}
|
|
@@ -45,20 +45,26 @@ export default class RotationGestureDetector {
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
finish() {
|
|
48
|
-
if (
|
|
49
|
-
|
|
48
|
+
if (this.isInProgress) {
|
|
49
|
+
this.isInProgress = false;
|
|
50
|
+
this.keyPointers = [NaN, NaN];
|
|
50
51
|
}
|
|
51
|
-
this.isInProgress = false;
|
|
52
|
-
this.keyPointers = [NaN, NaN];
|
|
53
52
|
this.onRotationEnd(this);
|
|
54
53
|
}
|
|
55
|
-
setKeyPointers(tracker) {
|
|
54
|
+
setKeyPointers(tracker, excludeId) {
|
|
56
55
|
if (this.keyPointers[0] && this.keyPointers[1]) {
|
|
57
56
|
return;
|
|
58
57
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
58
|
+
let assigned = 0;
|
|
59
|
+
for (const id of tracker.trackedPointers.keys()) {
|
|
60
|
+
if (id === excludeId) {
|
|
61
|
+
continue;
|
|
62
|
+
}
|
|
63
|
+
this.keyPointers[assigned++] = id;
|
|
64
|
+
if (assigned === 2) {
|
|
65
|
+
break;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
62
68
|
}
|
|
63
69
|
onTouchEvent(event, tracker) {
|
|
64
70
|
switch (event.eventType) {
|
|
@@ -88,13 +94,17 @@ export default class RotationGestureDetector {
|
|
|
88
94
|
break;
|
|
89
95
|
}
|
|
90
96
|
if (this.keyPointers.indexOf(event.pointerId) >= 0) {
|
|
91
|
-
|
|
97
|
+
if (tracker.trackedPointersCount <= 2) {
|
|
98
|
+
this.reset();
|
|
99
|
+
} else {
|
|
100
|
+
this.keyPointers = [NaN, NaN];
|
|
101
|
+
this.setKeyPointers(tracker, event.pointerId);
|
|
102
|
+
this.previousAngle = NaN;
|
|
103
|
+
}
|
|
92
104
|
}
|
|
93
105
|
break;
|
|
94
106
|
case EventTypes.UP:
|
|
95
|
-
|
|
96
|
-
this.finish();
|
|
97
|
-
}
|
|
107
|
+
this.finish();
|
|
98
108
|
break;
|
|
99
109
|
}
|
|
100
110
|
return true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["EventTypes","RotationGestureDetector","currentTime","previousTime","previousAngle","_rotation","_anchorX","_anchorY","isInProgress","keyPointers","NaN","constructor","callbacks","onRotationBegin","onRotation","onRotationEnd","updateCurrent","event","tracker","time","firstPointerID","secondPointerID","firstPointerCoords","getLastAbsoluteCoords","secondPointerCoords","vectorX","x","vectorY","y","angle","Math","atan2","Number","isNaN","rotation","PI","finish","setKeyPointers","
|
|
1
|
+
{"version":3,"names":["EventTypes","RotationGestureDetector","currentTime","previousTime","previousAngle","_rotation","_anchorX","_anchorY","isInProgress","keyPointers","NaN","constructor","callbacks","onRotationBegin","onRotation","onRotationEnd","updateCurrent","event","tracker","time","firstPointerID","secondPointerID","firstPointerCoords","getLastAbsoluteCoords","secondPointerCoords","vectorX","x","vectorY","y","angle","Math","atan2","Number","isNaN","rotation","PI","finish","setKeyPointers","excludeId","assigned","id","trackedPointers","keys","onTouchEvent","eventType","DOWN","ADDITIONAL_POINTER_DOWN","MOVE","ADDITIONAL_POINTER_UP","indexOf","pointerId","trackedPointersCount","reset","UP","anchorX","anchorY","timeDelta"],"sourceRoot":"../../../../src","sources":["web/detectors/RotationGestureDetector.ts"],"mappings":"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","ignoreList":[]}
|