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
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useEffect, useState } from 'react';
|
|
4
|
+
import { AccessibilityInfo } from 'react-native';
|
|
5
|
+
export function useIsScreenReaderEnabled() {
|
|
6
|
+
const [isEnabled, setIsEnabled] = useState(false);
|
|
7
|
+
useEffect(() => {
|
|
8
|
+
const checkStatus = async () => {
|
|
9
|
+
try {
|
|
10
|
+
const res = await AccessibilityInfo.isScreenReaderEnabled();
|
|
11
|
+
setIsEnabled(res);
|
|
12
|
+
} catch (error) {
|
|
13
|
+
console.warn('Could not read accessibility info: defaulting to false');
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
checkStatus();
|
|
17
|
+
const listener = AccessibilityInfo.addEventListener('screenReaderChanged', enabled => {
|
|
18
|
+
setIsEnabled(enabled);
|
|
19
|
+
});
|
|
20
|
+
return () => {
|
|
21
|
+
listener.remove();
|
|
22
|
+
};
|
|
23
|
+
}, []);
|
|
24
|
+
return isEnabled;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=useIsScreenReaderEnabled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["useEffect","useState","AccessibilityInfo","useIsScreenReaderEnabled","isEnabled","setIsEnabled","checkStatus","res","isScreenReaderEnabled","error","console","warn","listener","addEventListener","enabled","remove"],"sourceRoot":"../../src","sources":["useIsScreenReaderEnabled.ts"],"mappings":";;AAAA,SAASA,SAAS,EAAEC,QAAQ,QAAQ,OAAO;AAC3C,SAASC,iBAAiB,QAAQ,cAAc;AAEhD,OAAO,SAASC,wBAAwBA,CAAA,EAAG;EACzC,MAAM,CAACC,SAAS,EAAEC,YAAY,CAAC,GAAGJ,QAAQ,CAAC,KAAK,CAAC;EAEjDD,SAAS,CAAC,MAAM;IACd,MAAMM,WAAW,GAAG,MAAAA,CAAA,KAAY;MAC9B,IAAI;QACF,MAAMC,GAAG,GAAG,MAAML,iBAAiB,CAACM,qBAAqB,CAAC,CAAC;QAC3DH,YAAY,CAACE,GAAG,CAAC;MACnB,CAAC,CAAC,OAAOE,KAAK,EAAE;QACdC,OAAO,CAACC,IAAI,CAAC,wDAAwD,CAAC;MACxE;IACF,CAAC;IAEDL,WAAW,CAAC,CAAC;IAEb,MAAMM,QAAQ,GAAGV,iBAAiB,CAACW,gBAAgB,CACjD,qBAAqB,EACpBC,OAAO,IAAK;MACXT,YAAY,CAACS,OAAO,CAAC;IACvB,CACF,CAAC;IAED,OAAO,MAAM;MACXF,QAAQ,CAACG,MAAM,CAAC,CAAC;IACnB,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EACN,OAAOX,SAAS;AAClB","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["scheduleOperationToBeFlushed","RNGestureHandlerModule","flushOperations","updateGestureHandlerConfig","NativeProxy","createGestureHandler","handlerName","handlerTag","config","setGestureHandlerConfig","newConfig","dropGestureHandler","configureRelations","relations","setReanimatedAvailable","isAvailable"],"sourceRoot":"../../../src","sources":["v3/NativeProxy.ts"],"mappings":";;AAAA,SAASA,4BAA4B,QAAQ,mBAAmB;AAChE,OAAOC,sBAAsB,MAAM,2BAA2B;AAO9D;AACA;AACA,MAAM;EAAEC,eAAe;EAAEC;AAA2B,CAAC,GAAGF,sBAAsB;AAE9E,OAAO,MAAMG,WAAW,GAAG;EACzBC,oBAAoB,EAAEA,CACpBC,WAA8B,EAC9BC,UAAkB,EAClBC,MAAU,KACP;IACHP,sBAAsB,CAACI,oBAAoB,CACzCC,WAAW,EACXC,UAAU,EACVC,MAAM,IAAI,CAAC,CACb,CAAC;EACH,CAAC;EACDC,uBAAuB,EAAEA,
|
|
1
|
+
{"version":3,"names":["scheduleOperationToBeFlushed","RNGestureHandlerModule","flushOperations","updateGestureHandlerConfig","NativeProxy","createGestureHandler","handlerName","handlerTag","config","setGestureHandlerConfig","newConfig","dropGestureHandler","configureRelations","relations","setReanimatedAvailable","isAvailable"],"sourceRoot":"../../../src","sources":["v3/NativeProxy.ts"],"mappings":";;AAAA,SAASA,4BAA4B,QAAQ,mBAAmB;AAChE,OAAOC,sBAAsB,MAAM,2BAA2B;AAO9D;AACA;AACA,MAAM;EAAEC,eAAe;EAAEC;AAA2B,CAAC,GAAGF,sBAAsB;AAE9E,OAAO,MAAMG,WAAW,GAAG;EACzBC,oBAAoB,EAAEA,CACpBC,WAA8B,EAC9BC,UAAkB,EAClBC,MAAU,KACP;IACHP,sBAAsB,CAACI,oBAAoB,CACzCC,WAAW,EACXC,UAAU,EACVC,MAAM,IAAI,CAAC,CACb,CAAC;EACH,CAAC;EACDC,uBAAuB,EAAEA,CAKvBF,UAAkB,EAClBG,SAAyE,KACtE;IACHV,4BAA4B,CAAC,MAAM;MACjCC,sBAAsB,CAACQ,uBAAuB,CAACF,UAAU,EAAEG,SAAS,CAAC;IACvE,CAAC,CAAC;EACJ,CAAC;EACD;EACA;EACA;EACAP,0BAA0B,EAAEA,CAK1BI,UAAkB,EAClBG,SAAyE,KACtE;IACH,SAAS;;IACTP,0BAA0B,CAACI,UAAU,EAAEG,SAAS,CAAC;IACjDR,eAAe,CAAC,CAAC;EACnB,CAAC;EACDS,kBAAkB,EAAGJ,UAAkB,IAAK;IAC1CP,4BAA4B,CAAC,MAAM;MACjCC,sBAAsB,CAACU,kBAAkB,CAACJ,UAAU,CAAC;IACvD,CAAC,CAAC;EACJ,CAAC;EACDK,kBAAkB,EAAEA,CAACL,UAAkB,EAAEM,SAA2B,KAAK;IACvEb,4BAA4B,CAAC,MAAM;MACjCC,sBAAsB,CAACW,kBAAkB,CAACL,UAAU,EAAEM,SAAS,CAAC;IAClE,CAAC,CAAC;EACJ,CAAC;EACDC,sBAAsB,EAAGC,WAAoB,IAAK;IAChDd,sBAAsB,CAACa,sBAAsB,CAACC,WAAW,CAAC;EAC5D;AACF,CAAU","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["RNGestureHandlerModule","NativeProxy","createGestureHandler","handlerName","handlerTag","config","setGestureHandlerConfig","newConfig","updateGestureHandlerConfig","dropGestureHandler","configureRelations","relations","setReanimatedAvailable","isAvailable"],"sourceRoot":"../../../src","sources":["v3/NativeProxy.web.ts"],"mappings":";;AAAA,OAAOA,sBAAsB,MAAM,2BAA2B;AAO9D,OAAO,MAAMC,WAAW,GAAG;EACzBC,oBAAoB,EAAEA,CACpBC,WAA8B,EAC9BC,UAAkB,EAClBC,MAAU,KACP;IACHL,sBAAsB,CAACE,oBAAoB,CACzCC,WAAW,EACXC,UAAU,EACVC,MAAM,IAAI,CAAC,CACb,CAAC;EACH,CAAC;EACDC,uBAAuB,EAAEA,
|
|
1
|
+
{"version":3,"names":["RNGestureHandlerModule","NativeProxy","createGestureHandler","handlerName","handlerTag","config","setGestureHandlerConfig","newConfig","updateGestureHandlerConfig","dropGestureHandler","configureRelations","relations","setReanimatedAvailable","isAvailable"],"sourceRoot":"../../../src","sources":["v3/NativeProxy.web.ts"],"mappings":";;AAAA,OAAOA,sBAAsB,MAAM,2BAA2B;AAO9D,OAAO,MAAMC,WAAW,GAAG;EACzBC,oBAAoB,EAAEA,CACpBC,WAA8B,EAC9BC,UAAkB,EAClBC,MAAU,KACP;IACHL,sBAAsB,CAACE,oBAAoB,CACzCC,WAAW,EACXC,UAAU,EACVC,MAAM,IAAI,CAAC,CACb,CAAC;EACH,CAAC;EACDC,uBAAuB,EAAEA,CAKvBF,UAAkB,EAClBG,SAAyE,KACtE;IACHP,sBAAsB,CAACM,uBAAuB,CAACF,UAAU,EAAEG,SAAS,CAAC;EACvE,CAAC;EACDC,0BAA0B,EAAEA,CAK1BJ,UAAkB,EAClBG,SAAyE,KACtE;IACHP,sBAAsB,CAACQ,0BAA0B,CAACJ,UAAU,EAAEG,SAAS,CAAC;EAC1E,CAAC;EACDE,kBAAkB,EAAGL,UAAkB,IAAK;IAC1CJ,sBAAsB,CAACS,kBAAkB,CAACL,UAAU,CAAC;EACvD,CAAC;EACDM,kBAAkB,EAAEA,CAACN,UAAkB,EAAEO,SAA2B,KAAK;IACvEX,sBAAsB,CAACU,kBAAkB,CAACN,UAAU,EAAEO,SAAS,CAAC;EAClE,CAAC;EACDC,sBAAsB,EAAGC,WAAoB,IAAK;IAChDb,sBAAsB,CAACY,sBAAsB,CAACC,WAAW,CAAC;EAC5D;AACF,CAAU","ignoreList":[]}
|
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import React, { useRef } from 'react';
|
|
4
|
-
import { Platform, StyleSheet
|
|
5
|
-
import createNativeWrapper from '../createNativeWrapper';
|
|
4
|
+
import { Animated, Platform, StyleSheet } from 'react-native';
|
|
6
5
|
import GestureHandlerButton from '../../components/GestureHandlerButton';
|
|
6
|
+
import createNativeWrapper from '../createNativeWrapper';
|
|
7
7
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated `RawButton` is deprecated, use `Clickable` instead
|
|
10
|
+
*/
|
|
8
11
|
export const RawButton = createNativeWrapper(GestureHandlerButton, {
|
|
9
12
|
shouldCancelWhenOutside: false,
|
|
10
13
|
shouldActivateOnStart: false
|
|
11
14
|
});
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* @deprecated `BaseButton` is deprecated, use `Touchable` instead
|
|
18
|
+
*/
|
|
12
19
|
export const BaseButton = props => {
|
|
13
20
|
const longPressDetected = useRef(false);
|
|
14
21
|
const longPressTimeout = useRef(undefined);
|
|
@@ -25,37 +32,36 @@ export const BaseButton = props => {
|
|
|
25
32
|
onLongPress?.();
|
|
26
33
|
};
|
|
27
34
|
const onBegin = e => {
|
|
28
|
-
if (
|
|
29
|
-
|
|
30
|
-
if (onLongPress) {
|
|
31
|
-
longPressTimeout.current = setTimeout(wrappedLongPress, delayLongPress);
|
|
32
|
-
}
|
|
35
|
+
if (!e.pointerInside) {
|
|
36
|
+
return;
|
|
33
37
|
}
|
|
34
|
-
};
|
|
35
|
-
const onActivate = e => {
|
|
36
38
|
onActiveStateChange?.(true);
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
longPressTimeout.current = setTimeout(wrappedLongPress, delayLongPress);
|
|
41
|
-
}
|
|
39
|
+
longPressDetected.current = false;
|
|
40
|
+
if (onLongPress) {
|
|
41
|
+
longPressTimeout.current = setTimeout(wrappedLongPress, delayLongPress);
|
|
42
42
|
}
|
|
43
|
+
props.onBegin?.(e);
|
|
44
|
+
};
|
|
45
|
+
const onActivate = e => {
|
|
43
46
|
if (!e.pointerInside && longPressTimeout.current !== undefined) {
|
|
44
47
|
clearTimeout(longPressTimeout.current);
|
|
45
48
|
longPressTimeout.current = undefined;
|
|
46
49
|
}
|
|
50
|
+
props.onActivate?.(e);
|
|
51
|
+
};
|
|
52
|
+
const onDeactivate = e => {
|
|
53
|
+
props.onDeactivate?.(e);
|
|
47
54
|
};
|
|
48
|
-
const
|
|
55
|
+
const onFinalize = e => {
|
|
49
56
|
onActiveStateChange?.(false);
|
|
50
|
-
if (
|
|
57
|
+
if (!e.canceled && !longPressDetected.current) {
|
|
51
58
|
onPress?.(e.pointerInside);
|
|
52
59
|
}
|
|
53
|
-
};
|
|
54
|
-
const onFinalize = _e => {
|
|
55
60
|
if (longPressTimeout.current !== undefined) {
|
|
56
61
|
clearTimeout(longPressTimeout.current);
|
|
57
62
|
longPressTimeout.current = undefined;
|
|
58
63
|
}
|
|
64
|
+
props.onFinalize?.(e);
|
|
59
65
|
};
|
|
60
66
|
return /*#__PURE__*/_jsx(RawButton, {
|
|
61
67
|
style: [style, Platform.OS === 'ios' && {
|
|
@@ -78,9 +84,18 @@ const btnStyles = StyleSheet.create({
|
|
|
78
84
|
top: 0
|
|
79
85
|
}
|
|
80
86
|
});
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* @deprecated `RectButton` is deprecated, use `Touchable` with `activeUnderlayOpacity={0.7}` instead
|
|
90
|
+
*/
|
|
81
91
|
export const RectButton = props => {
|
|
82
|
-
const
|
|
83
|
-
|
|
92
|
+
const {
|
|
93
|
+
children,
|
|
94
|
+
style,
|
|
95
|
+
activeOpacity = 0.105,
|
|
96
|
+
underlayColor = 'black',
|
|
97
|
+
...rest
|
|
98
|
+
} = props;
|
|
84
99
|
const opacity = useRef(new Animated.Value(0)).current;
|
|
85
100
|
const onActiveStateChange = active => {
|
|
86
101
|
if (Platform.OS !== 'android') {
|
|
@@ -88,11 +103,6 @@ export const RectButton = props => {
|
|
|
88
103
|
}
|
|
89
104
|
props.onActiveStateChange?.(active);
|
|
90
105
|
};
|
|
91
|
-
const {
|
|
92
|
-
children,
|
|
93
|
-
style,
|
|
94
|
-
...rest
|
|
95
|
-
} = props;
|
|
96
106
|
const resolvedStyle = StyleSheet.flatten(style ?? {});
|
|
97
107
|
return /*#__PURE__*/_jsxs(BaseButton, {
|
|
98
108
|
...rest,
|
|
@@ -111,6 +121,10 @@ export const RectButton = props => {
|
|
|
111
121
|
}), children]
|
|
112
122
|
});
|
|
113
123
|
};
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @deprecated `BorderlessButton` is deprecated, use `Touchable` with `activeOpacity={0.3}` instead
|
|
127
|
+
*/
|
|
114
128
|
export const BorderlessButton = props => {
|
|
115
129
|
const activeOpacity = props.activeOpacity ?? 0.3;
|
|
116
130
|
const opacity = useRef(new Animated.Value(1)).current;
|
|
@@ -123,10 +137,12 @@ export const BorderlessButton = props => {
|
|
|
123
137
|
const {
|
|
124
138
|
children,
|
|
125
139
|
style,
|
|
140
|
+
ref,
|
|
126
141
|
...rest
|
|
127
142
|
} = props;
|
|
128
143
|
return /*#__PURE__*/_jsx(AnimatedBaseButton, {
|
|
129
144
|
...rest,
|
|
145
|
+
ref: ref ?? null,
|
|
130
146
|
onActiveStateChange: onActiveStateChange,
|
|
131
147
|
style: [style, Platform.OS === 'ios' && {
|
|
132
148
|
opacity
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","useRef","Platform","StyleSheet","
|
|
1
|
+
{"version":3,"names":["React","useRef","Animated","Platform","StyleSheet","GestureHandlerButton","createNativeWrapper","jsx","_jsx","jsxs","_jsxs","RawButton","shouldCancelWhenOutside","shouldActivateOnStart","BaseButton","props","longPressDetected","longPressTimeout","undefined","delayLongPress","onLongPress","onPress","onActiveStateChange","style","rest","wrappedLongPress","current","onBegin","e","pointerInside","setTimeout","onActivate","clearTimeout","onDeactivate","onFinalize","canceled","OS","cursor","AnimatedBaseButton","createAnimatedComponent","btnStyles","create","underlay","position","left","right","bottom","top","RectButton","children","activeOpacity","underlayColor","opacity","Value","active","setValue","resolvedStyle","flatten","View","backgroundColor","borderRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","BorderlessButton","ref","default","PureNativeButton"],"sourceRoot":"../../../../src","sources":["v3/components/GestureButtons.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import React, { useState } from 'react';
|
|
4
|
-
import {
|
|
4
|
+
import { FlatList as RNFlatList, RefreshControl as RNRefreshControl, ScrollView as RNScrollView, Switch as RNSwitch, TextInput as RNTextInput } from 'react-native';
|
|
5
|
+
import { ghQueueMicrotask } from '../../ghQueueMicrotask';
|
|
5
6
|
import createNativeWrapper from '../createNativeWrapper';
|
|
6
|
-
import { NativeWrapperProps } from '../hooks/utils';
|
|
7
7
|
import { GestureDetectorType } from '../detectors';
|
|
8
|
-
import {
|
|
8
|
+
import { NativeWrapperProps } from '../hooks/utils';
|
|
9
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
10
|
export const RefreshControl = createNativeWrapper(RNRefreshControl, {
|
|
11
11
|
disallowInterruption: true,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","useState","
|
|
1
|
+
{"version":3,"names":["React","useState","FlatList","RNFlatList","RefreshControl","RNRefreshControl","ScrollView","RNScrollView","Switch","RNSwitch","TextInput","RNTextInput","ghQueueMicrotask","createNativeWrapper","GestureDetectorType","NativeWrapperProps","jsx","_jsx","disallowInterruption","shouldCancelWhenOutside","Virtual","GHScrollView","Intercepting","props","refreshControl","onGestureUpdate_CAN_CAUSE_INFINITE_RERENDER","rest","scrollGesture","setScrollGesture","updateGesture","gesture","handlerTag","ref","cloneElement","block","undefined","shouldActivateOnStart","flatListProps","scrollViewProps","propName","value","Object","entries","has","renderScrollComponent","scrollProps"],"sourceRoot":"../../../../src","sources":["v3/components/GestureComponents.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import * as React from 'react';
|
|
4
|
-
import { FlatList as RNFlatList,
|
|
4
|
+
import { FlatList as RNFlatList, ScrollView as RNScrollView, Switch as RNSwitch, TextInput as RNTextInput, View } from 'react-native';
|
|
5
5
|
import createNativeWrapper from '../createNativeWrapper';
|
|
6
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
7
|
export const ScrollView = createNativeWrapper(RNScrollView, {
|
|
@@ -22,11 +22,10 @@ export const DrawerLayoutAndroid = () => {
|
|
|
22
22
|
// NativeViewGestureHandler needs to set a ref on its child, which cannot be done
|
|
23
23
|
// on functional components
|
|
24
24
|
export const RefreshControl = createNativeWrapper(View);
|
|
25
|
-
export const FlatList =
|
|
26
|
-
ref: ref,
|
|
25
|
+
export const FlatList = props => /*#__PURE__*/_jsx(RNFlatList, {
|
|
27
26
|
...props,
|
|
28
27
|
renderScrollComponent: scrollProps => /*#__PURE__*/_jsx(ScrollView, {
|
|
29
28
|
...scrollProps
|
|
30
29
|
})
|
|
31
|
-
})
|
|
30
|
+
});
|
|
32
31
|
//# sourceMappingURL=GestureComponents.web.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","FlatList","RNFlatList","
|
|
1
|
+
{"version":3,"names":["React","FlatList","RNFlatList","ScrollView","RNScrollView","Switch","RNSwitch","TextInput","RNTextInput","View","createNativeWrapper","jsx","_jsx","disallowInterruption","shouldCancelWhenOutside","shouldActivateOnStart","DrawerLayoutAndroid","console","warn","RefreshControl","props","renderScrollComponent","scrollProps"],"sourceRoot":"../../../../src","sources":["v3/components/GestureComponents.web.tsx"],"mappings":";;AAAA,OAAO,KAAKA,KAAK,MAAM,OAAO;AAE9B,SACEC,QAAQ,IAAIC,UAAU,EACtBC,UAAU,IAAIC,YAAY,EAC1BC,MAAM,IAAIC,QAAQ,EAClBC,SAAS,IAAIC,WAAW,EACxBC,IAAI,QACC,cAAc;AAErB,OAAOC,mBAAmB,MAAM,wBAAwB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAEzD,OAAO,MAAMT,UAAU,GAAGO,mBAAmB,CAACN,YAAY,EAAE;EAC1DS,oBAAoB,EAAE;AACxB,CAAC,CAAC;AAEF,OAAO,MAAMR,MAAM,GAAGK,mBAAmB,CAACJ,QAAQ,EAAE;EAClDQ,uBAAuB,EAAE,KAAK;EAC9BC,qBAAqB,EAAE,IAAI;EAC3BF,oBAAoB,EAAE;AACxB,CAAC,CAAC;AAEF,OAAO,MAAMN,SAAS,GAAGG,mBAAmB,CAACF,WAAW,CAAC;AAEzD,OAAO,MAAMQ,mBAAmB,GAAGA,CAAA,KAAM;EACvCC,OAAO,CAACC,IAAI,CAAC,8CAA8C,CAAC;EAC5D,oBAAON,IAAA,CAACH,IAAI,IAAE,CAAC;AACjB,CAAC;;AAED;AACA;AACA;AACA,OAAO,MAAMU,cAAc,GAAGT,mBAAmB,CAACD,IAAI,CAAC;AAEvD,OAAO,MAAMR,QAAQ,GAAYmB,KAA2B,iBAC1DR,IAAA,CAACV,UAAU;EAAA,GACLkB,KAAK;EACTC,qBAAqB,EAAGC,WAAW,iBAAKV,IAAA,CAACT,UAAU;IAAA,GAAKmB;EAAW,CAAG;AAAE,CACzE,CACF","ignoreList":[]}
|
|
@@ -2,14 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
4
4
|
import { Platform } from 'react-native';
|
|
5
|
-
import { addInsets, numberAsInset, gestureTouchToPressableEvent, isTouchWithinInset, gestureToPressableEvent } from '../../components/Pressable/utils';
|
|
6
5
|
import { getStatesConfig, StateMachineEvent } from '../../components/Pressable/stateDefinitions';
|
|
7
6
|
import { PressableStateMachine } from '../../components/Pressable/StateMachine';
|
|
8
|
-
import {
|
|
9
|
-
import { GestureDetector } from '../detectors';
|
|
10
|
-
import { PureNativeButton } from './GestureButtons';
|
|
7
|
+
import { addInsets, gestureToPressableEvent, gestureTouchToPressableEvent, isTouchWithinInset, numberAsInset } from '../../components/Pressable/utils';
|
|
11
8
|
import { PressabilityDebugView } from '../../handlers/PressabilityDebugView';
|
|
9
|
+
import { useIsScreenReaderEnabled } from '../../useIsScreenReaderEnabled';
|
|
12
10
|
import { INT32_MAX, isTestEnv } from '../../utils';
|
|
11
|
+
import { GestureDetector } from '../detectors';
|
|
12
|
+
import { useHoverGesture, useLongPressGesture, useNativeGesture, useSimultaneousGestures } from '../hooks';
|
|
13
|
+
import { PureNativeButton } from './GestureButtons';
|
|
13
14
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
15
|
const DEFAULT_LONG_PRESS_DURATION = 500;
|
|
15
16
|
const IS_TEST_ENV = isTestEnv();
|
|
@@ -119,10 +120,11 @@ const Pressable = props => {
|
|
|
119
120
|
handleFinalize();
|
|
120
121
|
}, [handleFinalize, innerHandlePressIn, onPress, onPressOut]);
|
|
121
122
|
const stateMachine = useMemo(() => new PressableStateMachine(), []);
|
|
123
|
+
const isScreenReaderEnabled = useIsScreenReaderEnabled();
|
|
122
124
|
useEffect(() => {
|
|
123
|
-
const configuration = getStatesConfig(handlePressIn, handlePressOut);
|
|
125
|
+
const configuration = getStatesConfig(handlePressIn, handlePressOut, isScreenReaderEnabled);
|
|
124
126
|
stateMachine.setStates(configuration);
|
|
125
|
-
}, [handlePressIn, handlePressOut, stateMachine]);
|
|
127
|
+
}, [handlePressIn, handlePressOut, stateMachine, isScreenReaderEnabled]);
|
|
126
128
|
const hoverInTimeout = useRef(null);
|
|
127
129
|
const hoverOutTimeout = useRef(null);
|
|
128
130
|
const hoverGesture = useHoverGesture({
|
|
@@ -167,7 +169,7 @@ const Pressable = props => {
|
|
|
167
169
|
stateMachine.handleEvent(StateMachineEvent.LONG_PRESS_TOUCHES_DOWN, pressableEvent);
|
|
168
170
|
},
|
|
169
171
|
onTouchesUp: () => {
|
|
170
|
-
if (Platform.OS === 'android') {
|
|
172
|
+
if (Platform.OS === 'android' && !isScreenReaderEnabled) {
|
|
171
173
|
// Prevents potential soft-locks
|
|
172
174
|
stateMachine.reset();
|
|
173
175
|
handleFinalize();
|
|
@@ -178,11 +180,11 @@ const Pressable = props => {
|
|
|
178
180
|
stateMachine.reset();
|
|
179
181
|
handlePressOut(pressableEvent, false);
|
|
180
182
|
},
|
|
181
|
-
onFinalize:
|
|
183
|
+
onFinalize: event => {
|
|
182
184
|
if (Platform.OS !== 'web') {
|
|
183
185
|
return;
|
|
184
186
|
}
|
|
185
|
-
stateMachine.handleEvent(
|
|
187
|
+
stateMachine.handleEvent(event.canceled ? StateMachineEvent.CANCEL : StateMachineEvent.FINALIZE);
|
|
186
188
|
handleFinalize();
|
|
187
189
|
},
|
|
188
190
|
enabled: disabled !== true,
|
|
@@ -213,23 +215,22 @@ const Pressable = props => {
|
|
|
213
215
|
stateMachine.handleEvent(StateMachineEvent.NATIVE_START);
|
|
214
216
|
}
|
|
215
217
|
},
|
|
216
|
-
onFinalize:
|
|
218
|
+
onFinalize: event => {
|
|
217
219
|
// On Web we use LongPress.onFinalize instead of Native.onFinalize,
|
|
218
220
|
// as Native cancels on mouse move, and LongPress does not.
|
|
219
221
|
if (Platform.OS === 'web') {
|
|
220
222
|
return;
|
|
221
223
|
}
|
|
222
|
-
stateMachine.handleEvent(
|
|
223
|
-
|
|
224
|
-
handleFinalize();
|
|
225
|
-
}
|
|
224
|
+
stateMachine.handleEvent(event.canceled ? StateMachineEvent.CANCEL : StateMachineEvent.FINALIZE);
|
|
225
|
+
handleFinalize();
|
|
226
226
|
},
|
|
227
227
|
enabled: disabled !== true,
|
|
228
228
|
disableReanimated: true,
|
|
229
229
|
simultaneousWith,
|
|
230
230
|
block,
|
|
231
231
|
requireToFail,
|
|
232
|
-
hitSlop: appliedHitSlop
|
|
232
|
+
hitSlop: appliedHitSlop,
|
|
233
|
+
shouldActivateOnStart: Platform.OS === 'web'
|
|
233
234
|
});
|
|
234
235
|
const gesture = useSimultaneousGestures(buttonGesture, pressAndTouchGesture, hoverGesture);
|
|
235
236
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","useCallback","useEffect","useMemo","useRef","useState","Platform","addInsets","numberAsInset","gestureTouchToPressableEvent","isTouchWithinInset","gestureToPressableEvent","getStatesConfig","StateMachineEvent","PressableStateMachine","useHoverGesture","useLongPressGesture","useNativeGesture","useSimultaneousGestures","GestureDetector","PureNativeButton","PressabilityDebugView","INT32_MAX","isTestEnv","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","simultaneousWith","requireToFail","block","remainingProps","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","manualActivation","cancelsTouchesInView","onBegin","onFinalize","enabled","disableReanimated","pressAndTouchGesture","minDuration","OS","maxDistance","onTouchesDown","pressableEvent","handleEvent","LONG_PRESS_TOUCHES_DOWN","onTouchesUp","reset","onTouchesCancel","_event","FINALIZE","CANCEL","buttonGesture","NATIVE_BEGIN","onActivate","NATIVE_START","gesture","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":["v3/components/Pressable.tsx"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["React","useCallback","useEffect","useMemo","useRef","useState","Platform","getStatesConfig","StateMachineEvent","PressableStateMachine","addInsets","gestureToPressableEvent","gestureTouchToPressableEvent","isTouchWithinInset","numberAsInset","PressabilityDebugView","useIsScreenReaderEnabled","INT32_MAX","isTestEnv","GestureDetector","useHoverGesture","useLongPressGesture","useNativeGesture","useSimultaneousGestures","PureNativeButton","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","simultaneousWith","requireToFail","block","remainingProps","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","manualActivation","cancelsTouchesInView","onBegin","onFinalize","enabled","disableReanimated","pressAndTouchGesture","minDuration","OS","maxDistance","onTouchesDown","pressableEvent","handleEvent","LONG_PRESS_TOUCHES_DOWN","onTouchesUp","reset","onTouchesCancel","canceled","CANCEL","FINALIZE","buttonGesture","NATIVE_BEGIN","onActivate","NATIVE_START","shouldActivateOnStart","gesture","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":["v3/components/Pressable.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React, { useCallback, useRef } from 'react';
|
|
4
|
+
import { Platform } from 'react-native';
|
|
5
|
+
import GestureHandlerButton from '../../../components/GestureHandlerButton';
|
|
6
|
+
import { NativeDetector } from '../../detectors/NativeDetector';
|
|
7
|
+
import { useNativeGesture } from '../../hooks';
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
const isAndroid = Platform.OS === 'android';
|
|
10
|
+
const TRANSPARENT_RIPPLE = {
|
|
11
|
+
rippleColor: 'transparent'
|
|
12
|
+
};
|
|
13
|
+
var PointerState = /*#__PURE__*/function (PointerState) {
|
|
14
|
+
PointerState[PointerState["UNKNOWN"] = 0] = "UNKNOWN";
|
|
15
|
+
PointerState[PointerState["INSIDE"] = 1] = "INSIDE";
|
|
16
|
+
PointerState[PointerState["OUTSIDE"] = 2] = "OUTSIDE";
|
|
17
|
+
return PointerState;
|
|
18
|
+
}(PointerState || {});
|
|
19
|
+
export const Touchable = props => {
|
|
20
|
+
const {
|
|
21
|
+
underlayColor = 'black',
|
|
22
|
+
defaultUnderlayOpacity = 0,
|
|
23
|
+
defaultOpacity = 1,
|
|
24
|
+
androidRipple,
|
|
25
|
+
delayLongPress = 600,
|
|
26
|
+
onLongPress,
|
|
27
|
+
onPress,
|
|
28
|
+
onPressIn,
|
|
29
|
+
onPressOut,
|
|
30
|
+
children,
|
|
31
|
+
disabled = false,
|
|
32
|
+
cancelOnLeave = true,
|
|
33
|
+
ref,
|
|
34
|
+
...rest
|
|
35
|
+
} = props;
|
|
36
|
+
const shouldUseNativeRipple = isAndroid && androidRipple !== undefined;
|
|
37
|
+
const pointerState = useRef(PointerState.UNKNOWN);
|
|
38
|
+
const longPressDetected = useRef(false);
|
|
39
|
+
const longPressTimeout = useRef(undefined);
|
|
40
|
+
const wrappedLongPress = useCallback(() => {
|
|
41
|
+
longPressDetected.current = true;
|
|
42
|
+
onLongPress?.();
|
|
43
|
+
}, [onLongPress]);
|
|
44
|
+
const startLongPressTimer = useCallback(() => {
|
|
45
|
+
longPressDetected.current = false;
|
|
46
|
+
if (onLongPress && !longPressTimeout.current) {
|
|
47
|
+
longPressTimeout.current = setTimeout(wrappedLongPress, delayLongPress);
|
|
48
|
+
}
|
|
49
|
+
}, [onLongPress, delayLongPress, wrappedLongPress]);
|
|
50
|
+
const onBegin = useCallback(e => {
|
|
51
|
+
if (!e.pointerInside) {
|
|
52
|
+
pointerState.current = PointerState.OUTSIDE;
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
onPressIn?.(e);
|
|
56
|
+
startLongPressTimer();
|
|
57
|
+
pointerState.current = PointerState.INSIDE;
|
|
58
|
+
}, [startLongPressTimer, onPressIn]);
|
|
59
|
+
const onActivate = useCallback(e => {
|
|
60
|
+
if (!e.pointerInside && longPressTimeout.current !== undefined) {
|
|
61
|
+
clearTimeout(longPressTimeout.current);
|
|
62
|
+
longPressTimeout.current = undefined;
|
|
63
|
+
}
|
|
64
|
+
}, []);
|
|
65
|
+
const onFinalize = useCallback(e => {
|
|
66
|
+
if (pointerState.current === PointerState.INSIDE) {
|
|
67
|
+
onPressOut?.(e);
|
|
68
|
+
}
|
|
69
|
+
if (!e.canceled && !longPressDetected.current && e.pointerInside) {
|
|
70
|
+
onPress?.(e);
|
|
71
|
+
}
|
|
72
|
+
pointerState.current = PointerState.UNKNOWN;
|
|
73
|
+
if (longPressTimeout.current !== undefined) {
|
|
74
|
+
clearTimeout(longPressTimeout.current);
|
|
75
|
+
longPressTimeout.current = undefined;
|
|
76
|
+
}
|
|
77
|
+
}, [onPressOut, onPress]);
|
|
78
|
+
const onUpdate = useCallback(e => {
|
|
79
|
+
if (pointerState.current === PointerState.UNKNOWN) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
if (e.pointerInside) {
|
|
83
|
+
if (pointerState.current === PointerState.OUTSIDE) {
|
|
84
|
+
onPressIn?.(e);
|
|
85
|
+
}
|
|
86
|
+
pointerState.current = PointerState.INSIDE;
|
|
87
|
+
} else {
|
|
88
|
+
if (pointerState.current === PointerState.INSIDE) {
|
|
89
|
+
onPressOut?.(e);
|
|
90
|
+
if (longPressTimeout.current !== undefined) {
|
|
91
|
+
clearTimeout(longPressTimeout.current);
|
|
92
|
+
longPressTimeout.current = undefined;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
pointerState.current = PointerState.OUTSIDE;
|
|
96
|
+
}
|
|
97
|
+
}, [onPressIn, onPressOut]);
|
|
98
|
+
const nativeGesture = useNativeGesture({
|
|
99
|
+
onBegin,
|
|
100
|
+
onActivate,
|
|
101
|
+
onFinalize,
|
|
102
|
+
onUpdate,
|
|
103
|
+
hitSlop: props.hitSlop,
|
|
104
|
+
testID: props.testID,
|
|
105
|
+
enabled: !disabled,
|
|
106
|
+
shouldCancelWhenOutside: cancelOnLeave,
|
|
107
|
+
disableReanimated: true,
|
|
108
|
+
shouldActivateOnStart: false,
|
|
109
|
+
disallowInterruption: true,
|
|
110
|
+
yieldsToContinuousGestures: true
|
|
111
|
+
});
|
|
112
|
+
const rippleProps = shouldUseNativeRipple ? {
|
|
113
|
+
rippleColor: androidRipple?.color,
|
|
114
|
+
rippleRadius: androidRipple?.radius,
|
|
115
|
+
borderless: androidRipple?.borderless,
|
|
116
|
+
foreground: androidRipple?.foreground
|
|
117
|
+
} : TRANSPARENT_RIPPLE;
|
|
118
|
+
return /*#__PURE__*/_jsx(NativeDetector, {
|
|
119
|
+
gesture: nativeGesture,
|
|
120
|
+
children: /*#__PURE__*/_jsx(GestureHandlerButton, {
|
|
121
|
+
...rest,
|
|
122
|
+
...rippleProps,
|
|
123
|
+
ref: ref ?? null,
|
|
124
|
+
enabled: !disabled,
|
|
125
|
+
defaultOpacity: defaultOpacity,
|
|
126
|
+
defaultUnderlayOpacity: defaultUnderlayOpacity,
|
|
127
|
+
underlayColor: underlayColor,
|
|
128
|
+
children: children
|
|
129
|
+
})
|
|
130
|
+
});
|
|
131
|
+
};
|
|
132
|
+
//# sourceMappingURL=Touchable.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","useCallback","useRef","Platform","GestureHandlerButton","NativeDetector","useNativeGesture","jsx","_jsx","isAndroid","OS","TRANSPARENT_RIPPLE","rippleColor","PointerState","Touchable","props","underlayColor","defaultUnderlayOpacity","defaultOpacity","androidRipple","delayLongPress","onLongPress","onPress","onPressIn","onPressOut","children","disabled","cancelOnLeave","ref","rest","shouldUseNativeRipple","undefined","pointerState","UNKNOWN","longPressDetected","longPressTimeout","wrappedLongPress","current","startLongPressTimer","setTimeout","onBegin","e","pointerInside","OUTSIDE","INSIDE","onActivate","clearTimeout","onFinalize","canceled","onUpdate","nativeGesture","hitSlop","testID","enabled","shouldCancelWhenOutside","disableReanimated","shouldActivateOnStart","disallowInterruption","yieldsToContinuousGestures","rippleProps","color","rippleRadius","radius","borderless","foreground","gesture"],"sourceRoot":"../../../../../src","sources":["v3/components/Touchable/Touchable.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["v3/components/Touchable/TouchableProps.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
3
|
+
export { BaseButton, BorderlessButton, PureNativeButton, RawButton, RectButton } from './GestureButtons';
|
|
4
|
+
export { FlatList, RefreshControl, ScrollView, Switch, TextInput } from './GestureComponents';
|
|
5
5
|
export { default as Pressable } from './Pressable';
|
|
6
|
+
export { Touchable } from './Touchable/Touchable';
|
|
6
7
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["BaseButton","BorderlessButton","PureNativeButton","RawButton","RectButton","FlatList","RefreshControl","ScrollView","Switch","TextInput","default","Pressable","Touchable"],"sourceRoot":"../../../../src","sources":["v3/components/index.ts"],"mappings":";;AAAA,SACEA,UAAU,EACVC,gBAAgB,EAChBC,gBAAgB,EAChBC,SAAS,EACTC,UAAU,QACL,kBAAkB;AAOzB,SACEC,QAAQ,EACRC,cAAc,EACdC,UAAU,EACVC,MAAM,EACNC,SAAS,QACJ,qBAAqB;AAC5B,SAASC,OAAO,IAAIC,SAAS,QAAQ,aAAa;AAClD,SAASC,SAAS,QAAQ,uBAAuB","ignoreList":[]}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import React, { useEffect } from 'react';
|
|
4
|
-
import { NativeWrapperProps } from './hooks/utils';
|
|
5
|
-
import { useNativeGesture } from './hooks/gestures';
|
|
6
|
-
import { NativeDetector } from './detectors/NativeDetector';
|
|
7
4
|
import { GestureDetectorType, InterceptingGestureDetector } from './detectors';
|
|
5
|
+
import { NativeDetector } from './detectors/NativeDetector';
|
|
8
6
|
import { VirtualDetector } from './detectors/VirtualDetector/VirtualDetector';
|
|
7
|
+
import { useNativeGesture } from './hooks/gestures';
|
|
8
|
+
import { NativeWrapperProps } from './hooks/utils';
|
|
9
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
10
|
export default function createNativeWrapper(Component, config = {}, detectorType = GestureDetectorType.Native) {
|
|
11
11
|
const ComponentWrapper = props => {
|