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
|
@@ -2,10 +2,164 @@
|
|
|
2
2
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { View } from 'react-native';
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
import { NativeGestureRole } from '../web/interfaces';
|
|
6
|
+
import { GestureLifecycleEvent } from '../web/tools/GestureLifecycleEvents';
|
|
7
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
+
export const ButtonComponent = ({
|
|
9
|
+
ref: externalRef,
|
|
10
|
+
enabled = true,
|
|
11
|
+
pressAndHoldAnimationDuration: pressAndHoldAnimationDurationProp = -1,
|
|
12
|
+
tapAnimationDuration: tapAnimationDurationProp = 100,
|
|
13
|
+
activeOpacity = 1,
|
|
14
|
+
activeScale = 1,
|
|
15
|
+
activeUnderlayOpacity = 0,
|
|
16
|
+
defaultOpacity = 1,
|
|
17
|
+
defaultScale = 1,
|
|
18
|
+
defaultUnderlayOpacity = 0,
|
|
19
|
+
underlayColor,
|
|
20
|
+
style,
|
|
21
|
+
children,
|
|
22
|
+
...rest
|
|
23
|
+
}) => {
|
|
24
|
+
const tapAnimationDuration = tapAnimationDurationProp < 0 ? 0 : tapAnimationDurationProp;
|
|
25
|
+
const pressAndHoldAnimationDuration = pressAndHoldAnimationDurationProp < 0 ? tapAnimationDuration : pressAndHoldAnimationDurationProp;
|
|
26
|
+
const [pressed, setPressed] = React.useState(false);
|
|
27
|
+
const [currentDuration, setCurrentDuration] = React.useState(pressAndHoldAnimationDuration);
|
|
28
|
+
const pressInTimestamp = React.useRef(0);
|
|
29
|
+
const pressOutTimer = React.useRef(null);
|
|
30
|
+
const gestureEnabledRef = React.useRef(true);
|
|
31
|
+
const viewRef = React.useRef(null);
|
|
32
|
+
const setRef = React.useCallback(node => {
|
|
33
|
+
viewRef.current = node;
|
|
34
|
+
if (typeof externalRef === 'function') {
|
|
35
|
+
externalRef(node);
|
|
36
|
+
} else if (externalRef != null) {
|
|
37
|
+
externalRef.current = node;
|
|
38
|
+
}
|
|
39
|
+
}, [externalRef]);
|
|
40
|
+
React.useEffect(() => {
|
|
41
|
+
const node = viewRef.current;
|
|
42
|
+
const handleGestureBegan = () => {
|
|
43
|
+
gestureEnabledRef.current = true;
|
|
44
|
+
};
|
|
45
|
+
const handleGestureCanceled = () => {
|
|
46
|
+
gestureEnabledRef.current = false;
|
|
47
|
+
if (pressOutTimer.current != null) {
|
|
48
|
+
clearTimeout(pressOutTimer.current);
|
|
49
|
+
pressOutTimer.current = null;
|
|
50
|
+
}
|
|
51
|
+
pressInTimestamp.current = 0;
|
|
52
|
+
setPressed(false);
|
|
53
|
+
};
|
|
54
|
+
node?.addEventListener(GestureLifecycleEvent.Began, handleGestureBegan);
|
|
55
|
+
node?.addEventListener(GestureLifecycleEvent.Canceled, handleGestureCanceled);
|
|
56
|
+
return () => {
|
|
57
|
+
node?.removeEventListener(GestureLifecycleEvent.Began, handleGestureBegan);
|
|
58
|
+
node?.removeEventListener(GestureLifecycleEvent.Canceled, handleGestureCanceled);
|
|
59
|
+
if (pressOutTimer.current != null) {
|
|
60
|
+
clearTimeout(pressOutTimer.current);
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
}, []);
|
|
64
|
+
const pressIn = React.useCallback(event => {
|
|
65
|
+
if (!enabled || !gestureEnabledRef.current) {
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
event.stopPropagation();
|
|
69
|
+
if (pressOutTimer.current != null) {
|
|
70
|
+
clearTimeout(pressOutTimer.current);
|
|
71
|
+
pressOutTimer.current = null;
|
|
72
|
+
}
|
|
73
|
+
pressInTimestamp.current = performance.now();
|
|
74
|
+
setCurrentDuration(pressAndHoldAnimationDuration);
|
|
75
|
+
setPressed(true);
|
|
76
|
+
}, [enabled, pressAndHoldAnimationDuration]);
|
|
77
|
+
const pressOut = React.useCallback(event => {
|
|
78
|
+
// Only release if a press-in was actually recorded — guards against
|
|
79
|
+
// stray pointer events and lets us complete the release cycle even if
|
|
80
|
+
// `enabled` flipped to false between press-in and press-out.
|
|
81
|
+
if (pressInTimestamp.current === 0 || !gestureEnabledRef.current) {
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
event.stopPropagation();
|
|
85
|
+
if (pressOutTimer.current != null) {
|
|
86
|
+
clearTimeout(pressOutTimer.current);
|
|
87
|
+
pressOutTimer.current = null;
|
|
88
|
+
}
|
|
89
|
+
const elapsed = performance.now() - pressInTimestamp.current;
|
|
90
|
+
pressInTimestamp.current = 0;
|
|
91
|
+
if (elapsed >= pressAndHoldAnimationDuration) {
|
|
92
|
+
setCurrentDuration(pressAndHoldAnimationDuration);
|
|
93
|
+
setPressed(false);
|
|
94
|
+
// elapsed * 2 to ensure there is at least half of the tapAnimationDuration left for the animation to play
|
|
95
|
+
} else if (elapsed * 2 >= tapAnimationDuration) {
|
|
96
|
+
setCurrentDuration(elapsed);
|
|
97
|
+
setPressed(false);
|
|
98
|
+
} else {
|
|
99
|
+
// Let the in-progress CSS press-in transition continue; schedule press-out after remaining time
|
|
100
|
+
const remaining = tapAnimationDuration - elapsed;
|
|
101
|
+
pressOutTimer.current = setTimeout(() => {
|
|
102
|
+
pressOutTimer.current = null;
|
|
103
|
+
setCurrentDuration(tapAnimationDuration);
|
|
104
|
+
setPressed(false);
|
|
105
|
+
}, remaining);
|
|
106
|
+
}
|
|
107
|
+
}, [pressAndHoldAnimationDuration, tapAnimationDuration]);
|
|
108
|
+
const currentUnderlayOpacity = pressed ? activeUnderlayOpacity : defaultUnderlayOpacity;
|
|
109
|
+
const hasUnderlay = underlayColor != null;
|
|
110
|
+
const hasOpacity = activeOpacity !== 1 || defaultOpacity !== 1;
|
|
111
|
+
const currentOpacity = pressed ? activeOpacity : defaultOpacity;
|
|
112
|
+
const hasScale = activeScale !== 1 || defaultScale !== 1;
|
|
113
|
+
const currentScale = pressed ? activeScale : defaultScale;
|
|
114
|
+
const easing = 'cubic-bezier(0.5, 1, 0.89, 1)';
|
|
115
|
+
const transitionProps = [];
|
|
116
|
+
if (hasOpacity) {
|
|
117
|
+
transitionProps.push(`opacity ${currentDuration}ms ${easing}`);
|
|
118
|
+
}
|
|
119
|
+
if (hasScale) {
|
|
120
|
+
transitionProps.push(`transform ${currentDuration}ms ${easing}`);
|
|
121
|
+
}
|
|
122
|
+
const transition = transitionProps.join(', ');
|
|
123
|
+
return /*#__PURE__*/_jsxs(View, {
|
|
124
|
+
ref: setRef,
|
|
125
|
+
accessibilityRole: "button",
|
|
126
|
+
style: [style, {
|
|
127
|
+
...(hasOpacity && {
|
|
128
|
+
opacity: currentOpacity
|
|
129
|
+
}),
|
|
130
|
+
...(hasScale && {
|
|
131
|
+
transform: [{
|
|
132
|
+
scale: currentScale
|
|
133
|
+
}]
|
|
134
|
+
}),
|
|
135
|
+
// @ts-ignore - web-only CSS property
|
|
136
|
+
transition,
|
|
137
|
+
// Clip the underlay to the view bounds (respects borderRadius).
|
|
138
|
+
...(hasUnderlay && {
|
|
139
|
+
overflow: 'hidden'
|
|
140
|
+
})
|
|
141
|
+
}],
|
|
142
|
+
onPointerDown: pressIn,
|
|
143
|
+
onPointerUp: pressOut,
|
|
144
|
+
onPointerCancel: pressOut,
|
|
145
|
+
onPointerLeave: pressOut,
|
|
146
|
+
...rest,
|
|
147
|
+
children: [hasUnderlay && /*#__PURE__*/_jsx(View, {
|
|
148
|
+
style: {
|
|
149
|
+
position: 'absolute',
|
|
150
|
+
top: 0,
|
|
151
|
+
left: 0,
|
|
152
|
+
right: 0,
|
|
153
|
+
bottom: 0,
|
|
154
|
+
backgroundColor: underlayColor,
|
|
155
|
+
opacity: currentUnderlayOpacity,
|
|
156
|
+
// @ts-ignore - web-only CSS properties
|
|
157
|
+
transition: `opacity ${currentDuration}ms ${easing}`,
|
|
158
|
+
pointerEvents: 'none'
|
|
159
|
+
}
|
|
160
|
+
}), children]
|
|
161
|
+
});
|
|
162
|
+
};
|
|
163
|
+
ButtonComponent.displayName = NativeGestureRole.Button;
|
|
164
|
+
export default ButtonComponent;
|
|
11
165
|
//# sourceMappingURL=GestureHandlerButton.web.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","View","jsx","_jsx","
|
|
1
|
+
{"version":3,"names":["React","View","NativeGestureRole","GestureLifecycleEvent","jsx","_jsx","jsxs","_jsxs","ButtonComponent","ref","externalRef","enabled","pressAndHoldAnimationDuration","pressAndHoldAnimationDurationProp","tapAnimationDuration","tapAnimationDurationProp","activeOpacity","activeScale","activeUnderlayOpacity","defaultOpacity","defaultScale","defaultUnderlayOpacity","underlayColor","style","children","rest","pressed","setPressed","useState","currentDuration","setCurrentDuration","pressInTimestamp","useRef","pressOutTimer","gestureEnabledRef","viewRef","setRef","useCallback","node","current","useEffect","handleGestureBegan","handleGestureCanceled","clearTimeout","addEventListener","Began","Canceled","removeEventListener","pressIn","event","stopPropagation","performance","now","pressOut","elapsed","remaining","setTimeout","currentUnderlayOpacity","hasUnderlay","hasOpacity","currentOpacity","hasScale","currentScale","easing","transitionProps","push","transition","join","accessibilityRole","opacity","transform","scale","overflow","onPointerDown","onPointerUp","onPointerCancel","onPointerLeave","position","top","left","right","bottom","backgroundColor","pointerEvents","displayName","Button"],"sourceRoot":"../../../src","sources":["components/GestureHandlerButton.web.tsx"],"mappings":";;AAAA,OAAO,KAAKA,KAAK,MAAM,OAAO;AAE9B,SAASC,IAAI,QAAQ,cAAc;AAEnC,SAASC,iBAAiB,QAAQ,mBAAmB;AACrD,SAASC,qBAAqB,QAAQ,qCAAqC;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAgB5E,OAAO,MAAMC,eAAe,GAAGA,CAAC;EAC9BC,GAAG,EAAEC,WAAW;EAChBC,OAAO,GAAG,IAAI;EACdC,6BAA6B,EAAEC,iCAAiC,GAAG,CAAC,CAAC;EACrEC,oBAAoB,EAAEC,wBAAwB,GAAG,GAAG;EACpDC,aAAa,GAAG,CAAC;EACjBC,WAAW,GAAG,CAAC;EACfC,qBAAqB,GAAG,CAAC;EACzBC,cAAc,GAAG,CAAC;EAClBC,YAAY,GAAG,CAAC;EAChBC,sBAAsB,GAAG,CAAC;EAC1BC,aAAa;EACbC,KAAK;EACLC,QAAQ;EACR,GAAGC;AACQ,CAAC,KAAK;EACjB,MAAMX,oBAAoB,GACxBC,wBAAwB,GAAG,CAAC,GAAG,CAAC,GAAGA,wBAAwB;EAC7D,MAAMH,6BAA6B,GACjCC,iCAAiC,GAAG,CAAC,GACjCC,oBAAoB,GACpBD,iCAAiC;EAEvC,MAAM,CAACa,OAAO,EAAEC,UAAU,CAAC,GAAG3B,KAAK,CAAC4B,QAAQ,CAAC,KAAK,CAAC;EACnD,MAAM,CAACC,eAAe,EAAEC,kBAAkB,CAAC,GAAG9B,KAAK,CAAC4B,QAAQ,CAC1DhB,6BACF,CAAC;EACD,MAAMmB,gBAAgB,GAAG/B,KAAK,CAACgC,MAAM,CAAC,CAAC,CAAC;EACxC,MAAMC,aAAa,GAAGjC,KAAK,CAACgC,MAAM,CAChC,IACF,CAAC;EACD,MAAME,iBAAiB,GAAGlC,KAAK,CAACgC,MAAM,CAAC,IAAI,CAAC;EAC5C,MAAMG,OAAO,GAAGnC,KAAK,CAACgC,MAAM,CAAqB,IAAI,CAAC;EAEtD,MAAMI,MAAM,GAAGpC,KAAK,CAACqC,WAAW,CAC7BC,IAA4C,IAAK;IAChDH,OAAO,CAACI,OAAO,GAAGD,IAAqC;IACvD,IAAI,OAAO5B,WAAW,KAAK,UAAU,EAAE;MACrCA,WAAW,CAAC4B,IAAI,CAAC;IACnB,CAAC,MAAM,IAAI5B,WAAW,IAAI,IAAI,EAAE;MAC9BA,WAAW,CAAC6B,OAAO,GAAGD,IAAI;IAC5B;EACF,CAAC,EACD,CAAC5B,WAAW,CACd,CAAC;EAEDV,KAAK,CAACwC,SAAS,CAAC,MAAM;IACpB,MAAMF,IAAI,GAAGH,OAAO,CAACI,OAAO;IAE5B,MAAME,kBAAkB,GAAGA,CAAA,KAAM;MAC/BP,iBAAiB,CAACK,OAAO,GAAG,IAAI;IAClC,CAAC;IACD,MAAMG,qBAAqB,GAAGA,CAAA,KAAM;MAClCR,iBAAiB,CAACK,OAAO,GAAG,KAAK;MACjC,IAAIN,aAAa,CAACM,OAAO,IAAI,IAAI,EAAE;QACjCI,YAAY,CAACV,aAAa,CAACM,OAAO,CAAC;QACnCN,aAAa,CAACM,OAAO,GAAG,IAAI;MAC9B;MACAR,gBAAgB,CAACQ,OAAO,GAAG,CAAC;MAC5BZ,UAAU,CAAC,KAAK,CAAC;IACnB,CAAC;IAEDW,IAAI,EAAEM,gBAAgB,CAACzC,qBAAqB,CAAC0C,KAAK,EAAEJ,kBAAkB,CAAC;IACvEH,IAAI,EAAEM,gBAAgB,CACpBzC,qBAAqB,CAAC2C,QAAQ,EAC9BJ,qBACF,CAAC;IAED,OAAO,MAAM;MACXJ,IAAI,EAAES,mBAAmB,CACvB5C,qBAAqB,CAAC0C,KAAK,EAC3BJ,kBACF,CAAC;MACDH,IAAI,EAAES,mBAAmB,CACvB5C,qBAAqB,CAAC2C,QAAQ,EAC9BJ,qBACF,CAAC;MACD,IAAIT,aAAa,CAACM,OAAO,IAAI,IAAI,EAAE;QACjCI,YAAY,CAACV,aAAa,CAACM,OAAO,CAAC;MACrC;IACF,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN,MAAMS,OAAO,GAAGhD,KAAK,CAACqC,WAAW,CAC9BY,KAAoC,IAAK;IACxC,IAAI,CAACtC,OAAO,IAAI,CAACuB,iBAAiB,CAACK,OAAO,EAAE;MAC1C;IACF;IAEAU,KAAK,CAACC,eAAe,CAAC,CAAC;IACvB,IAAIjB,aAAa,CAACM,OAAO,IAAI,IAAI,EAAE;MACjCI,YAAY,CAACV,aAAa,CAACM,OAAO,CAAC;MACnCN,aAAa,CAACM,OAAO,GAAG,IAAI;IAC9B;IACAR,gBAAgB,CAACQ,OAAO,GAAGY,WAAW,CAACC,GAAG,CAAC,CAAC;IAC5CtB,kBAAkB,CAAClB,6BAA6B,CAAC;IACjDe,UAAU,CAAC,IAAI,CAAC;EAClB,CAAC,EACD,CAAChB,OAAO,EAAEC,6BAA6B,CACzC,CAAC;EAED,MAAMyC,QAAQ,GAAGrD,KAAK,CAACqC,WAAW,CAC/BY,KAAoC,IAAK;IACxC;IACA;IACA;IACA,IAAIlB,gBAAgB,CAACQ,OAAO,KAAK,CAAC,IAAI,CAACL,iBAAiB,CAACK,OAAO,EAAE;MAChE;IACF;IAEAU,KAAK,CAACC,eAAe,CAAC,CAAC;IACvB,IAAIjB,aAAa,CAACM,OAAO,IAAI,IAAI,EAAE;MACjCI,YAAY,CAACV,aAAa,CAACM,OAAO,CAAC;MACnCN,aAAa,CAACM,OAAO,GAAG,IAAI;IAC9B;IACA,MAAMe,OAAO,GAAGH,WAAW,CAACC,GAAG,CAAC,CAAC,GAAGrB,gBAAgB,CAACQ,OAAO;IAC5DR,gBAAgB,CAACQ,OAAO,GAAG,CAAC;IAE5B,IAAIe,OAAO,IAAI1C,6BAA6B,EAAE;MAC5CkB,kBAAkB,CAAClB,6BAA6B,CAAC;MACjDe,UAAU,CAAC,KAAK,CAAC;MACjB;IACF,CAAC,MAAM,IAAI2B,OAAO,GAAG,CAAC,IAAIxC,oBAAoB,EAAE;MAC9CgB,kBAAkB,CAACwB,OAAO,CAAC;MAC3B3B,UAAU,CAAC,KAAK,CAAC;IACnB,CAAC,MAAM;MACL;MACA,MAAM4B,SAAS,GAAGzC,oBAAoB,GAAGwC,OAAO;MAChDrB,aAAa,CAACM,OAAO,GAAGiB,UAAU,CAAC,MAAM;QACvCvB,aAAa,CAACM,OAAO,GAAG,IAAI;QAC5BT,kBAAkB,CAAChB,oBAAoB,CAAC;QACxCa,UAAU,CAAC,KAAK,CAAC;MACnB,CAAC,EAAE4B,SAAS,CAAC;IACf;EACF,CAAC,EACD,CAAC3C,6BAA6B,EAAEE,oBAAoB,CACtD,CAAC;EAED,MAAM2C,sBAAsB,GAAG/B,OAAO,GAClCR,qBAAqB,GACrBG,sBAAsB;EAC1B,MAAMqC,WAAW,GAAGpC,aAAa,IAAI,IAAI;EACzC,MAAMqC,UAAU,GAAG3C,aAAa,KAAK,CAAC,IAAIG,cAAc,KAAK,CAAC;EAC9D,MAAMyC,cAAc,GAAGlC,OAAO,GAAGV,aAAa,GAAGG,cAAc;EAC/D,MAAM0C,QAAQ,GAAG5C,WAAW,KAAK,CAAC,IAAIG,YAAY,KAAK,CAAC;EACxD,MAAM0C,YAAY,GAAGpC,OAAO,GAAGT,WAAW,GAAGG,YAAY;EAEzD,MAAM2C,MAAM,GAAG,+BAA+B;EAC9C,MAAMC,eAAyB,GAAG,EAAE;EACpC,IAAIL,UAAU,EAAE;IACdK,eAAe,CAACC,IAAI,CAAC,WAAWpC,eAAe,MAAMkC,MAAM,EAAE,CAAC;EAChE;EACA,IAAIF,QAAQ,EAAE;IACZG,eAAe,CAACC,IAAI,CAAC,aAAapC,eAAe,MAAMkC,MAAM,EAAE,CAAC;EAClE;EACA,MAAMG,UAAU,GAAGF,eAAe,CAACG,IAAI,CAAC,IAAI,CAAC;EAE7C,oBACE5D,KAAA,CAACN,IAAI;IACHQ,GAAG,EAAE2B,MAAO;IACZgC,iBAAiB,EAAC,QAAQ;IAC1B7C,KAAK,EAAE,CACLA,KAAK,EACL;MACE,IAAIoC,UAAU,IAAI;QAAEU,OAAO,EAAET;MAAe,CAAC,CAAC;MAC9C,IAAIC,QAAQ,IAAI;QAAES,SAAS,EAAE,CAAC;UAAEC,KAAK,EAAET;QAAa,CAAC;MAAE,CAAC,CAAC;MACzD;MACAI,UAAU;MACV;MACA,IAAIR,WAAW,IAAI;QAAEc,QAAQ,EAAE;MAAS,CAAC;IAC3C,CAAC,CACD;IACFC,aAAa,EAAEzB,OAAQ;IACvB0B,WAAW,EAAErB,QAAS;IACtBsB,eAAe,EAAEtB,QAAS;IAC1BuB,cAAc,EAAEvB,QAAS;IAAA,GACrB5B,IAAI;IAAAD,QAAA,GACPkC,WAAW,iBACVrD,IAAA,CAACJ,IAAI;MACHsB,KAAK,EAAE;QACLsD,QAAQ,EAAE,UAAU;QACpBC,GAAG,EAAE,CAAC;QACNC,IAAI,EAAE,CAAC;QACPC,KAAK,EAAE,CAAC;QACRC,MAAM,EAAE,CAAC;QACTC,eAAe,EAAE5D,aAAuB;QACxC+C,OAAO,EAAEZ,sBAAsB;QAC/B;QACAS,UAAU,EAAE,WAAWrC,eAAe,MAAMkC,MAAM,EAAE;QACpDoB,aAAa,EAAE;MACjB;IAAE,CACH,CACF,EACA3D,QAAQ;EAAA,CACL,CAAC;AAEX,CAAC;AAEDhB,eAAe,CAAC4E,WAAW,GAAGlF,iBAAiB,CAACmF,MAAM;AAEtD,eAAe7E,eAAe","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","StyleSheet","GestureHandlerRootViewContext","GestureHandlerRootViewNativeComponent","jsx","_jsx","GestureHandlerRootView","style","rest","value","children","styles","container","moduleId","globalThis","_RNGH_MODULE_ID","create","flex"],"sourceRoot":"../../../src","sources":["components/GestureHandlerRootView.android.tsx"],"mappings":";;
|
|
1
|
+
{"version":3,"names":["React","StyleSheet","GestureHandlerRootViewContext","GestureHandlerRootViewNativeComponent","jsx","_jsx","GestureHandlerRootView","style","rest","value","children","styles","container","moduleId","globalThis","_RNGH_MODULE_ID","create","flex"],"sourceRoot":"../../../src","sources":["components/GestureHandlerRootView.android.tsx"],"mappings":";;AACA,OAAO,KAAKA,KAAK,MAAM,OAAO;AAC9B,SAASC,UAAU,QAAQ,cAAc;AAEzC,OAAOC,6BAA6B,MAAM,kCAAkC;AAE5E,OAAOC,qCAAqC,MAAM,kDAAkD;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAKrG,eAAe,SAASC,sBAAsBA,CAAC;EAC7CC,KAAK;EACL,GAAGC;AACwB,CAAC,EAAE;EAC9B,oBACEH,IAAA,CAACH,6BAA6B;IAACO,KAAK;IAAAC,QAAA,eAClCL,IAAA,CAACF,qCAAqC;MACpCI,KAAK,EAAEA,KAAK,IAAII,MAAM,CAACC,SAAU;MAAA,GAC7BJ,IAAI;MACRK,QAAQ,EAAEC,UAAU,CAACC,eAAgB,CAAC;IAAA,CACvC;EAAC,CAC2B,CAAC;AAEpC;AAEA,MAAMJ,MAAM,GAAGV,UAAU,CAACe,MAAM,CAAC;EAC/BJ,SAAS,EAAE;IAAEK,IAAI,EAAE;EAAE;AACvB,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import * as React from 'react';
|
|
4
|
-
import {
|
|
4
|
+
import { StyleSheet, View } from 'react-native';
|
|
5
5
|
import GestureHandlerRootViewContext from '../GestureHandlerRootViewContext';
|
|
6
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
7
|
export default function GestureHandlerRootView({
|
|
8
8
|
style,
|
|
9
9
|
...rest
|
|
10
10
|
}) {
|
|
11
|
-
return /*#__PURE__*/_jsx(GestureHandlerRootViewContext
|
|
11
|
+
return /*#__PURE__*/_jsx(GestureHandlerRootViewContext, {
|
|
12
12
|
value: true,
|
|
13
13
|
children: /*#__PURE__*/_jsx(View, {
|
|
14
14
|
style: style ?? styles.container,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","
|
|
1
|
+
{"version":3,"names":["React","StyleSheet","View","GestureHandlerRootViewContext","jsx","_jsx","GestureHandlerRootView","style","rest","value","children","styles","container","create","flex"],"sourceRoot":"../../../src","sources":["components/GestureHandlerRootView.tsx"],"mappings":";;AACA,OAAO,KAAKA,KAAK,MAAM,OAAO;AAC9B,SAASC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAE/C,OAAOC,6BAA6B,MAAM,kCAAkC;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAM7E,eAAe,SAASC,sBAAsBA,CAAC;EAC7CC,KAAK;EACL,GAAGC;AACwB,CAAC,EAAE;EAC9B,oBACEH,IAAA,CAACF,6BAA6B;IAACM,KAAK;IAAAC,QAAA,eAClCL,IAAA,CAACH,IAAI;MAACK,KAAK,EAAEA,KAAK,IAAII,MAAM,CAACC,SAAU;MAAA,GAAKJ;IAAI,CAAG;EAAC,CACvB,CAAC;AAEpC;AAEA,MAAMG,MAAM,GAAGV,UAAU,CAACY,MAAM,CAAC;EAC/BD,SAAS,EAAE;IAAEE,IAAI,EAAE;EAAE;AACvB,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import * as React from 'react';
|
|
4
|
-
import {
|
|
4
|
+
import { StyleSheet, View } from 'react-native';
|
|
5
5
|
import GestureHandlerRootViewContext from '../GestureHandlerRootViewContext';
|
|
6
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
7
|
export default function GestureHandlerRootView({
|
|
8
8
|
style,
|
|
9
9
|
...rest
|
|
10
10
|
}) {
|
|
11
|
-
return /*#__PURE__*/_jsx(GestureHandlerRootViewContext
|
|
11
|
+
return /*#__PURE__*/_jsx(GestureHandlerRootViewContext, {
|
|
12
12
|
value: true,
|
|
13
13
|
children: /*#__PURE__*/_jsx(View, {
|
|
14
14
|
style: style ?? styles.container,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","
|
|
1
|
+
{"version":3,"names":["React","StyleSheet","View","GestureHandlerRootViewContext","jsx","_jsx","GestureHandlerRootView","style","rest","value","children","styles","container","create","flex"],"sourceRoot":"../../../src","sources":["components/GestureHandlerRootView.web.tsx"],"mappings":";;AACA,OAAO,KAAKA,KAAK,MAAM,OAAO;AAE9B,SAASC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAE/C,OAAOC,6BAA6B,MAAM,kCAAkC;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAK7E,eAAe,SAASC,sBAAsBA,CAAC;EAC7CC,KAAK;EACL,GAAGC;AACwB,CAAC,EAAE;EAC9B,oBACEH,IAAA,CAACF,6BAA6B;IAACM,KAAK;IAAAC,QAAA,eAClCL,IAAA,CAACH,IAAI;MAACK,KAAK,EAAEA,KAAK,IAAII,MAAM,CAACC,SAAU;MAAA,GAAKJ;IAAI,CAAG;EAAC,CACvB,CAAC;AAEpC;AAEA,MAAMG,MAAM,GAAGV,UAAU,CAACY,MAAM,CAAC;EAC/BD,SAAS,EAAE;IAAEE,IAAI,EAAE;EAAE;AACvB,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
4
|
-
import { GestureObjects as Gesture } from '../../handlers/gestures/gestureObjects';
|
|
5
|
-
import { GestureDetector } from '../../handlers/gestures/GestureDetector';
|
|
6
4
|
import { Platform } from 'react-native';
|
|
7
|
-
import
|
|
8
|
-
import {
|
|
5
|
+
import { GestureDetector } from '../../handlers/gestures/GestureDetector';
|
|
6
|
+
import { GestureObjects as Gesture } from '../../handlers/gestures/gestureObjects';
|
|
9
7
|
import { PressabilityDebugView } from '../../handlers/PressabilityDebugView';
|
|
8
|
+
import { useIsScreenReaderEnabled } from '../../useIsScreenReaderEnabled';
|
|
10
9
|
import { INT32_MAX, isTestEnv } from '../../utils';
|
|
10
|
+
import { ButtonComponent as NativeButton } from '../GestureHandlerButton';
|
|
11
11
|
import { applyRelationProp } from '../utils';
|
|
12
12
|
import { getStatesConfig, StateMachineEvent } from './stateDefinitions';
|
|
13
13
|
import { PressableStateMachine } from './StateMachine';
|
|
14
|
+
import { addInsets, gestureToPressableEvent, gestureTouchToPressableEvent, isTouchWithinInset, numberAsInset } from './utils';
|
|
14
15
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
15
16
|
const DEFAULT_LONG_PRESS_DURATION = 500;
|
|
16
17
|
const IS_TEST_ENV = isTestEnv();
|
|
17
|
-
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated `LegacyPressable` is deprecated, use `Pressable` instead.
|
|
21
|
+
*/
|
|
22
|
+
const LegacyPressable = props => {
|
|
18
23
|
const {
|
|
19
24
|
testOnly_pressed,
|
|
20
25
|
hitSlop,
|
|
@@ -125,10 +130,11 @@ const Pressable = props => {
|
|
|
125
130
|
handleFinalize();
|
|
126
131
|
}, [handleFinalize, innerHandlePressIn, onPress, onPressOut]);
|
|
127
132
|
const stateMachine = useMemo(() => new PressableStateMachine(), []);
|
|
133
|
+
const isScreenReaderEnabled = useIsScreenReaderEnabled();
|
|
128
134
|
useEffect(() => {
|
|
129
|
-
const configuration = getStatesConfig(handlePressIn, handlePressOut);
|
|
135
|
+
const configuration = getStatesConfig(handlePressIn, handlePressOut, isScreenReaderEnabled);
|
|
130
136
|
stateMachine.setStates(configuration);
|
|
131
|
-
}, [handlePressIn, handlePressOut, stateMachine]);
|
|
137
|
+
}, [handlePressIn, handlePressOut, stateMachine, isScreenReaderEnabled]);
|
|
132
138
|
const hoverInTimeout = useRef(null);
|
|
133
139
|
const hoverOutTimeout = useRef(null);
|
|
134
140
|
const hoverGesture = useMemo(() => Gesture.Hover().manualActivation(true) // Prevents Hover blocking Gesture.Native() on web
|
|
@@ -157,7 +163,7 @@ const Pressable = props => {
|
|
|
157
163
|
const pressableEvent = gestureTouchToPressableEvent(event);
|
|
158
164
|
stateMachine.handleEvent(StateMachineEvent.LONG_PRESS_TOUCHES_DOWN, pressableEvent);
|
|
159
165
|
}).onTouchesUp(() => {
|
|
160
|
-
if (Platform.OS === 'android') {
|
|
166
|
+
if (Platform.OS === 'android' && !isScreenReaderEnabled) {
|
|
161
167
|
// Prevents potential soft-locks
|
|
162
168
|
stateMachine.reset();
|
|
163
169
|
handleFinalize();
|
|
@@ -175,7 +181,7 @@ const Pressable = props => {
|
|
|
175
181
|
}
|
|
176
182
|
handleFinalize();
|
|
177
183
|
}
|
|
178
|
-
}), [stateMachine, handleFinalize, handlePressOut]);
|
|
184
|
+
}), [stateMachine, handleFinalize, handlePressOut, isScreenReaderEnabled]);
|
|
179
185
|
|
|
180
186
|
// RNButton is placed inside ButtonGesture to enable Android's ripple and to capture non-propagating events
|
|
181
187
|
const buttonGesture = useMemo(() => Gesture.Native().onTouchesCancelled(event => {
|
|
@@ -206,7 +212,7 @@ const Pressable = props => {
|
|
|
206
212
|
handleFinalize();
|
|
207
213
|
}
|
|
208
214
|
}
|
|
209
|
-
}), [stateMachine, handlePressOut, handleFinalize]);
|
|
215
|
+
}).shouldActivateOnStart(Platform.OS === 'web'), [stateMachine, handlePressOut, handleFinalize]);
|
|
210
216
|
const isPressableEnabled = disabled !== true;
|
|
211
217
|
const gestures = [buttonGesture, pressAndTouchGesture, hoverGesture];
|
|
212
218
|
for (const gesture of gestures) {
|
|
@@ -260,5 +266,5 @@ const Pressable = props => {
|
|
|
260
266
|
})
|
|
261
267
|
});
|
|
262
268
|
};
|
|
263
|
-
export default
|
|
269
|
+
export default LegacyPressable;
|
|
264
270
|
//# sourceMappingURL=Pressable.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","useCallback","useEffect","useMemo","useRef","useState","GestureObjects","Gesture","GestureDetector","Platform","NativeButton","gestureToPressableEvent","addInsets","numberAsInset","gestureTouchToPressableEvent","isTouchWithinInset","PressabilityDebugView","INT32_MAX","isTestEnv","applyRelationProp","getStatesConfig","StateMachineEvent","PressableStateMachine","jsx","_jsx","jsxs","_jsxs","DEFAULT_LONG_PRESS_DURATION","IS_TEST_ENV","Pressable","props","testOnly_pressed","hitSlop","pressRetentionOffset","delayHoverIn","delayHoverOut","delayLongPress","unstable_pressDelay","onHoverIn","onHoverOut","onPress","onPressIn","onPressOut","onLongPress","onLayout","style","children","android_disableSound","android_ripple","disabled","accessible","simultaneousWithExternalGesture","requireExternalGestureToFail","blocksExternalGesture","remainingProps","relationProps","pressedState","setPressedState","longPressTimeoutRef","pressDelayTimeoutRef","isOnPressAllowed","isCurrentlyPressed","dimensions","width","height","normalizedHitSlop","normalizedPressRetentionOffset","appliedHitSlop","cancelLongPress","current","clearTimeout","cancelDelayedPress","startLongPress","event","setTimeout","innerHandlePressIn","handleFinalize","handlePressIn","nativeEvent","changedTouches","at","handlePressOut","success","stateMachine","configuration","setStates","hoverInTimeout","hoverOutTimeout","hoverGesture","Hover","manualActivation","cancelsTouchesInView","onBegin","onFinalize","pressAndTouchGesture","LongPress","minDuration","OS","maxDistance","onTouchesDown","pressableEvent","handleEvent","LONG_PRESS_TOUCHES_DOWN","onTouchesUp","reset","onTouchesCancelled","_event","FINALIZE","CANCEL","buttonGesture","Native","NATIVE_BEGIN","onStart","NATIVE_START","isPressableEnabled","gestures","gesture","enabled","runOnJS","Object","entries","forEach","relationName","relation","Simultaneous","pointerStyle","cursor","styleProp","pressed","childrenProp","rippleColor","defaultRippleColor","undefined","color","setDimensions","layout","touchSoundDisabled","rippleRadius","radius","testOnly_onPress","testOnly_onPressIn","testOnly_onPressOut","testOnly_onLongPress","__DEV__"],"sourceRoot":"../../../../src","sources":["components/Pressable/Pressable.tsx"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["React","useCallback","useEffect","useMemo","useRef","useState","Platform","GestureDetector","GestureObjects","Gesture","PressabilityDebugView","useIsScreenReaderEnabled","INT32_MAX","isTestEnv","ButtonComponent","NativeButton","applyRelationProp","getStatesConfig","StateMachineEvent","PressableStateMachine","addInsets","gestureToPressableEvent","gestureTouchToPressableEvent","isTouchWithinInset","numberAsInset","jsx","_jsx","jsxs","_jsxs","DEFAULT_LONG_PRESS_DURATION","IS_TEST_ENV","LegacyPressable","props","testOnly_pressed","hitSlop","pressRetentionOffset","delayHoverIn","delayHoverOut","delayLongPress","unstable_pressDelay","onHoverIn","onHoverOut","onPress","onPressIn","onPressOut","onLongPress","onLayout","style","children","android_disableSound","android_ripple","disabled","accessible","simultaneousWithExternalGesture","requireExternalGestureToFail","blocksExternalGesture","remainingProps","relationProps","pressedState","setPressedState","longPressTimeoutRef","pressDelayTimeoutRef","isOnPressAllowed","isCurrentlyPressed","dimensions","width","height","normalizedHitSlop","normalizedPressRetentionOffset","appliedHitSlop","cancelLongPress","current","clearTimeout","cancelDelayedPress","startLongPress","event","setTimeout","innerHandlePressIn","handleFinalize","handlePressIn","nativeEvent","changedTouches","at","handlePressOut","success","stateMachine","isScreenReaderEnabled","configuration","setStates","hoverInTimeout","hoverOutTimeout","hoverGesture","Hover","manualActivation","cancelsTouchesInView","onBegin","onFinalize","pressAndTouchGesture","LongPress","minDuration","OS","maxDistance","onTouchesDown","pressableEvent","handleEvent","LONG_PRESS_TOUCHES_DOWN","onTouchesUp","reset","onTouchesCancelled","_event","FINALIZE","CANCEL","buttonGesture","Native","NATIVE_BEGIN","onStart","NATIVE_START","shouldActivateOnStart","isPressableEnabled","gestures","gesture","enabled","runOnJS","Object","entries","forEach","relationName","relation","Simultaneous","pointerStyle","cursor","styleProp","pressed","childrenProp","rippleColor","defaultRippleColor","undefined","color","setDimensions","layout","touchSoundDisabled","rippleRadius","radius","testOnly_onPress","testOnly_onPressIn","testOnly_onPressOut","testOnly_onLongPress","__DEV__"],"sourceRoot":"../../../../src","sources":["components/Pressable/Pressable.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["default"],"sourceRoot":"../../../../src","sources":["components/Pressable/index.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"names":["default"],"sourceRoot":"../../../../src","sources":["components/Pressable/index.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,aAAa","ignoreList":[]}
|
|
@@ -20,12 +20,25 @@ function getAndroidStatesConfig(handlePressIn, handlePressOut) {
|
|
|
20
20
|
callback: handlePressOut
|
|
21
21
|
}];
|
|
22
22
|
}
|
|
23
|
+
function getAndroidAccessibilityStatesConfig(handlePressIn, handlePressOut) {
|
|
24
|
+
return [{
|
|
25
|
+
eventName: StateMachineEvent.LONG_PRESS_TOUCHES_DOWN,
|
|
26
|
+
callback: handlePressIn
|
|
27
|
+
}, {
|
|
28
|
+
eventName: StateMachineEvent.NATIVE_BEGIN
|
|
29
|
+
}, {
|
|
30
|
+
eventName: StateMachineEvent.FINALIZE,
|
|
31
|
+
callback: handlePressOut
|
|
32
|
+
}];
|
|
33
|
+
}
|
|
23
34
|
function getIosStatesConfig(handlePressIn, handlePressOut) {
|
|
24
35
|
return [{
|
|
25
36
|
eventName: StateMachineEvent.LONG_PRESS_TOUCHES_DOWN
|
|
26
37
|
}, {
|
|
27
|
-
eventName: StateMachineEvent.
|
|
38
|
+
eventName: StateMachineEvent.NATIVE_BEGIN,
|
|
28
39
|
callback: handlePressIn
|
|
40
|
+
}, {
|
|
41
|
+
eventName: StateMachineEvent.NATIVE_START
|
|
29
42
|
}, {
|
|
30
43
|
eventName: StateMachineEvent.FINALIZE,
|
|
31
44
|
callback: handlePressOut
|
|
@@ -66,9 +79,9 @@ function getUniversalStatesConfig(handlePressIn, handlePressOut) {
|
|
|
66
79
|
}
|
|
67
80
|
}];
|
|
68
81
|
}
|
|
69
|
-
export function getStatesConfig(handlePressIn, handlePressOut) {
|
|
82
|
+
export function getStatesConfig(handlePressIn, handlePressOut, screenReaderActive) {
|
|
70
83
|
if (Platform.OS === 'android') {
|
|
71
|
-
return getAndroidStatesConfig(handlePressIn, handlePressOut);
|
|
84
|
+
return screenReaderActive ? getAndroidAccessibilityStatesConfig(handlePressIn, handlePressOut) : getAndroidStatesConfig(handlePressIn, handlePressOut);
|
|
72
85
|
} else if (Platform.OS === 'ios') {
|
|
73
86
|
return getIosStatesConfig(handlePressIn, handlePressOut);
|
|
74
87
|
} else if (Platform.OS === 'web') {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Platform","StateMachineEvent","getAndroidStatesConfig","handlePressIn","handlePressOut","eventName","NATIVE_BEGIN","LONG_PRESS_TOUCHES_DOWN","callback","FINALIZE","getIosStatesConfig","NATIVE_START","getWebStatesConfig","getMacosStatesConfig","getUniversalStatesConfig","event","getStatesConfig","OS"],"sourceRoot":"../../../../src","sources":["components/Pressable/stateDefinitions.ts"],"mappings":";;AAAA,SAASA,QAAQ,QAAQ,cAAc;
|
|
1
|
+
{"version":3,"names":["Platform","StateMachineEvent","getAndroidStatesConfig","handlePressIn","handlePressOut","eventName","NATIVE_BEGIN","LONG_PRESS_TOUCHES_DOWN","callback","FINALIZE","getAndroidAccessibilityStatesConfig","getIosStatesConfig","NATIVE_START","getWebStatesConfig","getMacosStatesConfig","getUniversalStatesConfig","event","getStatesConfig","screenReaderActive","OS"],"sourceRoot":"../../../../src","sources":["components/Pressable/stateDefinitions.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -80,5 +80,5 @@ const gestureTouchToPressableEvent = event => {
|
|
|
80
80
|
}
|
|
81
81
|
};
|
|
82
82
|
};
|
|
83
|
-
export {
|
|
83
|
+
export { addInsets, gestureToPressableEvent, gestureTouchToPressableEvent, isTouchWithinInset, numberAsInset };
|
|
84
84
|
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["numberAsInset","value","left","right","top","bottom","addInsets","a","b","touchDataToPressEvent","data","timestamp","targetId","identifier","id","locationX","x","locationY","y","pageX","absoluteX","pageY","absoluteY","target","touches","changedTouches","gestureToPressEvent","event","handlerTag","isTouchWithinInset","dimensions","inset","touch","width","height","gestureToPressableEvent","Date","now","pressEvent","nativeEvent","force","undefined","gestureTouchToPressableEvent","touchesList","allTouches","map","changedTouchesList","at"],"sourceRoot":"../../../../src","sources":["components/Pressable/utils.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"names":["numberAsInset","value","left","right","top","bottom","addInsets","a","b","touchDataToPressEvent","data","timestamp","targetId","identifier","id","locationX","x","locationY","y","pageX","absoluteX","pageY","absoluteY","target","touches","changedTouches","gestureToPressEvent","event","handlerTag","isTouchWithinInset","dimensions","inset","touch","width","height","gestureToPressableEvent","Date","now","pressEvent","nativeEvent","force","undefined","gestureTouchToPressableEvent","touchesList","allTouches","map","changedTouchesList","at"],"sourceRoot":"../../../../src","sources":["components/Pressable/utils.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
// It's cross-compatible with all platforms despite
|
|
5
5
|
// `DrawerLayoutAndroid` only being available on android
|
|
6
6
|
|
|
7
|
-
import React, {
|
|
8
|
-
import {
|
|
7
|
+
import React, { useCallback, useEffect, useImperativeHandle, useMemo, useState } from 'react';
|
|
8
|
+
import { I18nManager, Keyboard, Platform, StatusBar, StyleSheet } from 'react-native';
|
|
9
9
|
import Animated, { Extrapolation, interpolate, runOnJS, useAnimatedProps, useAnimatedStyle, useDerivedValue, useSharedValue, withSpring } from 'react-native-reanimated';
|
|
10
10
|
import { MouseButton } from '../handlers/gestureHandlerCommon';
|
|
11
|
-
import { usePanGesture, useTapGesture } from '../v3/hooks/gestures';
|
|
12
11
|
import { GestureDetector } from '../v3/detectors';
|
|
12
|
+
import { usePanGesture, useTapGesture } from '../v3/hooks/gestures';
|
|
13
13
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
14
|
const DRAG_TOSS = 0.05;
|
|
15
15
|
export let DrawerPosition = /*#__PURE__*/function (DrawerPosition) {
|
|
@@ -57,7 +57,7 @@ const defaultProps = {
|
|
|
57
57
|
// StatusBar.setHidden and Keyboard.dismiss cannot be directly referenced in worklets.
|
|
58
58
|
const setStatusBarHidden = StatusBar.setHidden;
|
|
59
59
|
const dismissKeyboard = Keyboard.dismiss;
|
|
60
|
-
const DrawerLayout =
|
|
60
|
+
const DrawerLayout = function DrawerLayout(props) {
|
|
61
61
|
const [containerWidth, setContainerWidth] = useState(0);
|
|
62
62
|
const [drawerState, setDrawerState] = useState(DrawerState.IDLE);
|
|
63
63
|
const [drawerOpened, setDrawerOpened] = useState(false);
|
|
@@ -312,7 +312,7 @@ const DrawerLayout = /*#__PURE__*/forwardRef(function DrawerLayout(props, ref) {
|
|
|
312
312
|
}));
|
|
313
313
|
const children = typeof props.children === 'function' ? props.children(openValue) // renderer function
|
|
314
314
|
: props.children;
|
|
315
|
-
useImperativeHandle(ref, () => ({
|
|
315
|
+
useImperativeHandle(props.ref, () => ({
|
|
316
316
|
openDrawer,
|
|
317
317
|
closeDrawer
|
|
318
318
|
}), [openDrawer, closeDrawer]);
|
|
@@ -325,6 +325,7 @@ const DrawerLayout = /*#__PURE__*/forwardRef(function DrawerLayout(props, ref) {
|
|
|
325
325
|
onLayout: handleContainerLayout,
|
|
326
326
|
children: [/*#__PURE__*/_jsx(GestureDetector, {
|
|
327
327
|
gesture: overlayDismissGesture,
|
|
328
|
+
userSelect: userSelect,
|
|
328
329
|
children: /*#__PURE__*/_jsxs(Animated.View, {
|
|
329
330
|
style: [drawerType === DrawerType.FRONT ? styles.containerOnBack : styles.containerInFront, containerStyles, contentContainerStyle],
|
|
330
331
|
animatedProps: containerAnimatedProps,
|
|
@@ -344,20 +345,20 @@ const DrawerLayout = /*#__PURE__*/forwardRef(function DrawerLayout(props, ref) {
|
|
|
344
345
|
})]
|
|
345
346
|
})
|
|
346
347
|
});
|
|
347
|
-
}
|
|
348
|
+
};
|
|
348
349
|
export default DrawerLayout;
|
|
349
350
|
const styles = StyleSheet.create({
|
|
350
351
|
drawerContainer: {
|
|
351
|
-
...StyleSheet.
|
|
352
|
+
...StyleSheet.absoluteFill,
|
|
352
353
|
zIndex: 1001,
|
|
353
354
|
flexDirection: 'row'
|
|
354
355
|
},
|
|
355
356
|
containerInFront: {
|
|
356
|
-
...StyleSheet.
|
|
357
|
+
...StyleSheet.absoluteFill,
|
|
357
358
|
zIndex: 1002
|
|
358
359
|
},
|
|
359
360
|
containerOnBack: {
|
|
360
|
-
...StyleSheet.
|
|
361
|
+
...StyleSheet.absoluteFill
|
|
361
362
|
},
|
|
362
363
|
main: {
|
|
363
364
|
flex: 1,
|
|
@@ -365,7 +366,7 @@ const styles = StyleSheet.create({
|
|
|
365
366
|
overflow: 'hidden'
|
|
366
367
|
},
|
|
367
368
|
overlay: {
|
|
368
|
-
...StyleSheet.
|
|
369
|
+
...StyleSheet.absoluteFill,
|
|
369
370
|
zIndex: 1000
|
|
370
371
|
}
|
|
371
372
|
});
|