react-native-gesture-handler 3.0.0-beta.1 → 3.0.0-beta.3
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 +43 -17
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +8 -4
- package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +4 -6
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +10 -7
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +382 -129
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerDetectorView.kt +60 -6
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerDetectorViewManager.kt +1 -1
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +2 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +4 -10
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.kt +2 -1
- package/apple/Handlers/RNFlingHandler.m +7 -7
- package/apple/Handlers/RNForceTouchHandler.m +2 -2
- package/apple/Handlers/RNHoverHandler.m +38 -7
- package/apple/Handlers/RNLongPressHandler.m +21 -8
- package/apple/Handlers/RNManualHandler.m +2 -2
- package/apple/Handlers/RNNativeViewHandler.mm +67 -13
- package/apple/Handlers/RNPanHandler.m +4 -4
- package/apple/Handlers/RNPinchHandler.m +11 -4
- package/apple/Handlers/RNRotationHandler.m +11 -4
- package/apple/Handlers/RNTapHandler.m +6 -4
- package/apple/RNGHUIKit.h +2 -0
- package/apple/RNGestureHandler.h +16 -1
- package/apple/RNGestureHandler.mm +78 -4
- package/apple/RNGestureHandlerButton.h +42 -1
- package/apple/RNGestureHandlerButton.mm +619 -49
- package/apple/RNGestureHandlerButtonComponentView.mm +52 -2
- package/apple/RNGestureHandlerDetector.mm +29 -11
- 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 +3 -0
- package/apple/RNGestureHandlerRegistry.m +43 -11
- package/apple/RNManualActivationRecognizer.m +1 -1
- 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 +30 -13
- 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 +118 -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 +16 -10
- 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 +14 -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 +9 -13
- 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 +7 -7
- 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.map +1 -1
- package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -1
- package/lib/module/handlers/gestures/gesture.js +1 -1
- package/lib/module/handlers/gestures/gesture.js.map +1 -1
- package/lib/module/handlers/gestures/gestureComposition.js.map +1 -1
- package/lib/module/handlers/gestures/gestureObjects.js +3 -3
- package/lib/module/handlers/gestures/gestureObjects.js.map +1 -1
- package/lib/module/handlers/gestures/hoverGesture.js.map +1 -1
- package/lib/module/handlers/gestures/longPressGesture.js.map +1 -1
- package/lib/module/handlers/gestures/nativeGesture.js.map +1 -1
- package/lib/module/handlers/gestures/panGesture.js.map +1 -1
- 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.map +1 -1
- 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 +15 -15
- package/lib/module/v3/components/Pressable.js.map +1 -1
- package/lib/module/v3/components/Touchable/Touchable.js +94 -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 +12 -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 +8 -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/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 +2 -2
- 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.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 +8 -1
- 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.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.map +1 -1
- package/lib/module/v3/hooks/gestures/native/{NativeProperties.js → NativeTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/native/NativeTypes.js.map +1 -0
- 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 +7 -0
- 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 +7 -2
- 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 +7 -1
- 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.map +1 -1
- package/lib/module/v3/hooks/useGesture.js +10 -4
- 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 +2 -2
- 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 +5 -5
- package/lib/module/v3/hooks/utils/index.js.map +1 -1
- package/lib/module/v3/hooks/utils/propsWhiteList.js +9 -7
- 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 -3
- 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/detectors/RotationGestureDetector.js +4 -7
- package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -1
- package/lib/module/web/detectors/ScaleGestureDetector.js +1 -1
- 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 +35 -58
- package/lib/module/web/handlers/GestureHandler.js.map +1 -1
- package/lib/module/web/handlers/HoverGestureHandler.js +1 -1
- 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/NativeViewGestureHandler.js +1 -1
- package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/PanGestureHandler.js +1 -1
- package/lib/module/web/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/PinchGestureHandler.js +7 -8
- package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/RotationGestureHandler.js +26 -32
- package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/TapGestureHandler.js.map +1 -1
- 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/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 +7 -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 +16 -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 +8 -8
- 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 +3 -2
- package/lib/typescript/handlers/gestures/flingGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +4 -3
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gesture.d.ts +3 -3
- package/lib/typescript/handlers/gestures/gesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts +2 -1
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts +4 -4
- package/lib/typescript/handlers/gestures/gestureObjects.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 +3 -2
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts +3 -2
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/manualGesture.d.ts +1 -1
- package/lib/typescript/handlers/gestures/manualGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts +3 -2
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/panGesture.d.ts +4 -3
- package/lib/typescript/handlers/gestures/panGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts +2 -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 +2 -2
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/tapGesture.d.ts +3 -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 +20 -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 +24 -38
- package/lib/typescript/v3/components/GestureComponents.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureComponents.web.d.ts +22 -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 +31 -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/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 +1 -14
- 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 +1 -19
- 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 +1 -14
- 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 +1 -9
- package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts +26 -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 +1 -21
- 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 +1 -15
- 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 +1 -15
- 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 +1 -14
- 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 +5 -5
- 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 -6
- package/lib/typescript/v3/index.d.ts.map +1 -1
- package/lib/typescript/v3/types/ConfigTypes.d.ts +35 -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/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 +9 -8
- package/lib/typescript/web/handlers/GestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/IGestureHandler.d.ts +6 -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 +3 -3
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +6 -6
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +5 -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 +32 -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.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/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 +88 -30
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerDetectorShadowNode.h +8 -0
- package/src/RNGestureHandlerModule.web.ts +2 -2
- package/src/RNGestureHandlerModule.windows.ts +8 -10
- package/src/components/GestureButtons.tsx +47 -36
- 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 +151 -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 +34 -27
- package/src/components/Pressable/PressableProps.tsx +13 -12
- package/src/components/Pressable/StateMachine.tsx +1 -1
- package/src/components/Pressable/index.ts +1 -1
- package/src/components/Pressable/stateDefinitions.ts +28 -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 +17 -20
- 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 +13 -13
- package/src/handlers/gestures/eventReceiver.ts +8 -8
- package/src/handlers/gestures/flingGesture.ts +3 -2
- package/src/handlers/gestures/forceTouchGesture.ts +4 -3
- package/src/handlers/gestures/gesture.ts +9 -9
- package/src/handlers/gestures/gestureComposition.ts +2 -1
- package/src/handlers/gestures/gestureObjects.ts +4 -4
- package/src/handlers/gestures/gestureStateManager.web.ts +1 -1
- package/src/handlers/gestures/hoverGesture.ts +3 -2
- package/src/handlers/gestures/longPressGesture.ts +3 -2
- package/src/handlers/gestures/manualGesture.ts +1 -1
- package/src/handlers/gestures/nativeGesture.ts +3 -2
- package/src/handlers/gestures/panGesture.ts +4 -3
- package/src/handlers/gestures/pinchGesture.ts +2 -2
- package/src/handlers/gestures/reanimatedWrapper.ts +7 -6
- package/src/handlers/gestures/rotationGesture.ts +2 -2
- package/src/handlers/gestures/tapGesture.ts +3 -2
- package/src/handlers/handlersRegistry.ts +13 -6
- package/src/handlers/utils.ts +6 -5
- package/src/index.ts +111 -118
- 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 -29
- package/src/v3/components/Touchable/Touchable.tsx +134 -0
- package/src/v3/components/Touchable/TouchableProps.ts +41 -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 +32 -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 +29 -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/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 +19 -11
- 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 +7 -34
- package/src/v3/hooks/gestures/hover/HoverTypes.ts +76 -0
- package/src/v3/hooks/gestures/hover/useHoverGesture.ts +24 -55
- 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 +10 -43
- package/src/v3/hooks/gestures/manual/ManualTypes.ts +28 -0
- package/src/v3/hooks/gestures/manual/useManualGesture.ts +7 -28
- package/src/v3/hooks/gestures/native/NativeTypes.ts +50 -0
- package/src/v3/hooks/gestures/native/useNativeGesture.ts +11 -38
- package/src/v3/hooks/gestures/pan/{PanProperties.ts → PanTypes.ts} +55 -0
- package/src/v3/hooks/gestures/pan/usePanGesture.ts +29 -54
- package/src/v3/hooks/gestures/pinch/PinchTypes.ts +40 -0
- package/src/v3/hooks/gestures/pinch/usePinchGesture.ts +21 -40
- package/src/v3/hooks/gestures/rotation/RotationTypes.ts +41 -0
- package/src/v3/hooks/gestures/rotation/useRotationGesture.ts +21 -38
- package/src/v3/hooks/gestures/tap/{TapProperties.ts → TapTypes.ts} +32 -0
- package/src/v3/hooks/gestures/tap/useTapGesture.ts +9 -35
- package/src/v3/hooks/useGesture.ts +26 -13
- package/src/v3/hooks/useGestureCallbacks.ts +14 -9
- package/src/v3/hooks/utils/configUtils.ts +46 -18
- 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 -20
- package/src/v3/hooks/utils/propsWhiteList.ts +23 -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 -45
- package/src/v3/types/ConfigTypes.ts +47 -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/detectors/RotationGestureDetector.ts +8 -9
- package/src/web/detectors/ScaleGestureDetector.ts +4 -4
- package/src/web/handlers/FlingGestureHandler.ts +6 -7
- package/src/web/handlers/GestureHandler.ts +66 -119
- package/src/web/handlers/HoverGestureHandler.ts +5 -5
- package/src/web/handlers/IGestureHandler.ts +6 -6
- package/src/web/handlers/LongPressGestureHandler.ts +4 -5
- package/src/web/handlers/ManualGestureHandler.ts +3 -3
- package/src/web/handlers/NativeViewGestureHandler.ts +8 -8
- package/src/web/handlers/PanGestureHandler.ts +7 -7
- package/src/web/handlers/PinchGestureHandler.ts +17 -15
- package/src/web/handlers/RotationGestureHandler.ts +29 -42
- package/src/web/handlers/TapGestureHandler.ts +4 -4
- package/src/web/interfaces.ts +35 -35
- package/src/web/tools/EventManager.ts +1 -1
- package/src/web/tools/GestureHandlerDelegate.ts +4 -0
- package/src/web/tools/GestureHandlerOrchestrator.ts +0 -1
- package/src/web/tools/GestureHandlerWebDelegate.ts +82 -23
- 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 +18 -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 -284
- 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 -80
- 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 -178
- 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.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 -98
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.h +0 -56
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperState.h +0 -32
- package/src/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
- package/src/v3/hooks/callbacks/stateChangeHandler.ts +0 -70
- package/src/v3/hooks/callbacks/touchEventHandler.ts +0 -32
- package/src/v3/hooks/callbacks/updateHandler.ts +0 -53
- package/src/v3/hooks/gestures/fling/FlingProperties.ts +0 -26
- package/src/v3/hooks/gestures/hover/HoverProperties.ts +0 -22
- package/src/v3/hooks/gestures/manual/ManualProperties.ts +0 -1
- package/src/v3/hooks/gestures/native/NativeProperties.ts +0 -19
- package/src/v3/hooks/gestures/pinch/PinchProperties.ts +0 -1
- package/src/v3/hooks/gestures/rotation/RotationProperties.ts +0 -1
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var _RNGestureHandlerModule = _interopRequireDefault(require("../../RNGestureHandlerModule.web"));
|
|
9
|
-
var _ActionType = require("../../ActionType");
|
|
10
|
-
var _reactNative = require("react-native");
|
|
11
|
-
var _utils = require("../../utils");
|
|
12
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
14
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
15
|
-
const EMPTY_HANDLERS = new Set();
|
|
16
|
-
const HostGestureDetector = props => {
|
|
17
|
-
const {
|
|
18
|
-
handlerTags,
|
|
19
|
-
children
|
|
20
|
-
} = props;
|
|
21
|
-
const handlerTagsSet = (0, _react.useMemo)(() => new Set(handlerTags), [...handlerTags]);
|
|
22
|
-
const viewRef = (0, _react.useRef)(null);
|
|
23
|
-
const propsRef = (0, _react.useRef)(props);
|
|
24
|
-
const attachedHandlers = (0, _react.useRef)(new Set());
|
|
25
|
-
const attachedNativeHandlers = (0, _react.useRef)(new Set());
|
|
26
|
-
const attachedVirtualHandlers = (0, _react.useRef)(new Map());
|
|
27
|
-
const detachHandlers = (currentHandlerTags, attachedHandlerTags) => {
|
|
28
|
-
const oldHandlerTags = attachedHandlerTags.difference(currentHandlerTags);
|
|
29
|
-
oldHandlerTags.forEach(tag => {
|
|
30
|
-
_RNGestureHandlerModule.default.detachGestureHandler(tag);
|
|
31
|
-
attachedHandlerTags.delete(tag);
|
|
32
|
-
});
|
|
33
|
-
};
|
|
34
|
-
const attachHandlers = (viewRef, propsRef, currentHandlerTags, attachedHandlerTags, actionType) => {
|
|
35
|
-
const newHandlerTags = currentHandlerTags.difference(attachedHandlerTags);
|
|
36
|
-
newHandlerTags.forEach(tag => {
|
|
37
|
-
if (_RNGestureHandlerModule.default.getGestureHandlerNode(tag).shouldAttachGestureToChildView() && actionType === _ActionType.ActionType.NATIVE_DETECTOR) {
|
|
38
|
-
_RNGestureHandlerModule.default.attachGestureHandler(tag, viewRef.current.firstChild, actionType, propsRef);
|
|
39
|
-
attachedNativeHandlers.current.add(tag);
|
|
40
|
-
} else {
|
|
41
|
-
_RNGestureHandlerModule.default.attachGestureHandler(tag, viewRef.current, actionType, propsRef);
|
|
42
|
-
}
|
|
43
|
-
attachedHandlerTags.add(tag);
|
|
44
|
-
_RNGestureHandlerModule.default.updateGestureHandlerConfig(tag, {
|
|
45
|
-
userSelect: props.userSelect,
|
|
46
|
-
touchAction: props.touchAction,
|
|
47
|
-
enableContextMenu: props.enableContextMenu
|
|
48
|
-
});
|
|
49
|
-
});
|
|
50
|
-
};
|
|
51
|
-
(0, _react.useEffect)(() => {
|
|
52
|
-
const shouldUpdateDOMProps = propsRef.current.userSelect !== props.userSelect || propsRef.current.touchAction !== props.touchAction || propsRef.current.enableContextMenu !== props.enableContextMenu;
|
|
53
|
-
propsRef.current = props;
|
|
54
|
-
if (shouldUpdateDOMProps) {
|
|
55
|
-
for (const tag of attachedHandlers.current) {
|
|
56
|
-
_RNGestureHandlerModule.default.updateGestureHandlerConfig(tag, {
|
|
57
|
-
userSelect: props.userSelect,
|
|
58
|
-
touchAction: props.touchAction,
|
|
59
|
-
enableContextMenu: props.enableContextMenu
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}, [props]);
|
|
64
|
-
(0, _react.useEffect)(() => {
|
|
65
|
-
if (_react.default.Children.count(children) !== 1) {
|
|
66
|
-
throw new Error((0, _utils.tagMessage)('Detector expected to have exactly one child element'));
|
|
67
|
-
}
|
|
68
|
-
}, [children]);
|
|
69
|
-
(0, _react.useEffect)(() => {
|
|
70
|
-
if (_react.default.Children.count(children) !== 1) {
|
|
71
|
-
throw new Error((0, _utils.tagMessage)('Detector expected to have exactly one child element'));
|
|
72
|
-
}
|
|
73
|
-
detachHandlers(handlerTagsSet, attachedHandlers.current);
|
|
74
|
-
attachHandlers(viewRef, propsRef, handlerTagsSet, attachedHandlers.current, _ActionType.ActionType.NATIVE_DETECTOR);
|
|
75
|
-
return () => {
|
|
76
|
-
detachHandlers(EMPTY_HANDLERS, attachedHandlers.current);
|
|
77
|
-
attachedVirtualHandlers?.current.forEach(childHandlerTags => {
|
|
78
|
-
detachHandlers(EMPTY_HANDLERS, childHandlerTags);
|
|
79
|
-
});
|
|
80
|
-
};
|
|
81
|
-
}, [handlerTagsSet, viewRef]);
|
|
82
|
-
(0, _react.useEffect)(() => {
|
|
83
|
-
const virtualChildrenToDetach = new Set(attachedVirtualHandlers.current.keys());
|
|
84
|
-
props.virtualChildren?.forEach(child => {
|
|
85
|
-
virtualChildrenToDetach.delete(child.viewTag);
|
|
86
|
-
});
|
|
87
|
-
virtualChildrenToDetach.forEach(tag => {
|
|
88
|
-
detachHandlers(EMPTY_HANDLERS, attachedVirtualHandlers.current.get(tag));
|
|
89
|
-
});
|
|
90
|
-
props.virtualChildren?.forEach(child => {
|
|
91
|
-
if (child.viewRef.current == null) {
|
|
92
|
-
// We must check whether viewRef is not null as otherwise we get an error when intercepting gesture detector
|
|
93
|
-
// switches its component based on whether animated/reanimated events should run.
|
|
94
|
-
return;
|
|
95
|
-
}
|
|
96
|
-
if (!attachedVirtualHandlers.current.has(child.viewTag)) {
|
|
97
|
-
attachedVirtualHandlers.current.set(child.viewTag, new Set());
|
|
98
|
-
}
|
|
99
|
-
const currentHandlerTags = new Set(child.handlerTags);
|
|
100
|
-
detachHandlers(currentHandlerTags, attachedVirtualHandlers.current.get(child.viewTag));
|
|
101
|
-
attachHandlers(child.viewRef, propsRef, currentHandlerTags, attachedVirtualHandlers.current.get(child.viewTag), _ActionType.ActionType.VIRTUAL_DETECTOR);
|
|
102
|
-
});
|
|
103
|
-
}, [props.virtualChildren]);
|
|
104
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
105
|
-
style: {
|
|
106
|
-
display: 'contents'
|
|
107
|
-
},
|
|
108
|
-
ref: viewRef,
|
|
109
|
-
children: children
|
|
110
|
-
});
|
|
111
|
-
};
|
|
112
|
-
var _default = exports.default = HostGestureDetector;
|
|
113
|
-
//# sourceMappingURL=HostGestureDetector.web.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_RNGestureHandlerModule","_interopRequireDefault","_ActionType","_reactNative","_utils","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","EMPTY_HANDLERS","Set","HostGestureDetector","props","handlerTags","children","handlerTagsSet","useMemo","viewRef","useRef","propsRef","attachedHandlers","attachedNativeHandlers","attachedVirtualHandlers","Map","detachHandlers","currentHandlerTags","attachedHandlerTags","oldHandlerTags","difference","forEach","tag","RNGestureHandlerModule","detachGestureHandler","delete","attachHandlers","actionType","newHandlerTags","getGestureHandlerNode","shouldAttachGestureToChildView","ActionType","NATIVE_DETECTOR","attachGestureHandler","current","firstChild","add","updateGestureHandlerConfig","userSelect","touchAction","enableContextMenu","useEffect","shouldUpdateDOMProps","React","Children","count","Error","tagMessage","childHandlerTags","virtualChildrenToDetach","keys","virtualChildren","child","viewTag","VIRTUAL_DETECTOR","jsx","View","style","display","ref","_default","exports"],"sourceRoot":"../../../../src","sources":["v3/detectors/HostGestureDetector.web.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,uBAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,WAAA,GAAAH,OAAA;AAEA,IAAAI,YAAA,GAAAJ,OAAA;AACA,IAAAK,MAAA,GAAAL,OAAA;AAAyC,IAAAM,WAAA,GAAAN,OAAA;AAAA,SAAAE,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAR,wBAAAQ,CAAA,EAAAG,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAZ,uBAAA,YAAAA,CAAAQ,CAAA,EAAAG,CAAA,SAAAA,CAAA,IAAAH,CAAA,IAAAA,CAAA,CAAAC,UAAA,SAAAD,CAAA,MAAAO,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAR,OAAA,EAAAF,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAS,CAAA,MAAAF,CAAA,GAAAJ,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAE,CAAA,CAAAI,GAAA,CAAAX,CAAA,UAAAO,CAAA,CAAAK,GAAA,CAAAZ,CAAA,GAAAO,CAAA,CAAAM,GAAA,CAAAb,CAAA,EAAAS,CAAA,gBAAAN,CAAA,IAAAH,CAAA,gBAAAG,CAAA,OAAAW,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAG,CAAA,OAAAK,CAAA,IAAAD,CAAA,GAAAS,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAG,CAAA,OAAAK,CAAA,CAAAI,GAAA,IAAAJ,CAAA,CAAAK,GAAA,IAAAN,CAAA,CAAAE,CAAA,EAAAN,CAAA,EAAAK,CAAA,IAAAC,CAAA,CAAAN,CAAA,IAAAH,CAAA,CAAAG,CAAA,WAAAM,CAAA,KAAAT,CAAA,EAAAG,CAAA;AAmBzC,MAAMgB,cAAc,GAAG,IAAIC,GAAG,CAAS,CAAC;AAExC,MAAMC,mBAAmB,GAAIC,KAAkC,IAAK;EAClE,MAAM;IAAEC,WAAW;IAAEC;EAAS,CAAC,GAAGF,KAAK;EAEvC,MAAMG,cAAc,GAAG,IAAAC,cAAO,EAAC,MAAM,IAAIN,GAAG,CAACG,WAAW,CAAC,EAAE,CAAC,GAAGA,WAAW,CAAC,CAAC;EAE5E,MAAMI,OAAO,GAAG,IAAAC,aAAM,EAAU,IAAI,CAAC;EACrC,MAAMC,QAAQ,GAAG,IAAAD,aAAM,EAA8BN,KAAK,CAAC;EAC3D,MAAMQ,gBAAgB,GAAG,IAAAF,aAAM,EAAc,IAAIR,GAAG,CAAS,CAAC,CAAC;EAC/D,MAAMW,sBAAsB,GAAG,IAAAH,aAAM,EAAc,IAAIR,GAAG,CAAS,CAAC,CAAC;EACrE,MAAMY,uBAAuB,GAAG,IAAAJ,aAAM,EAA2B,IAAIK,GAAG,CAAC,CAAC,CAAC;EAE3E,MAAMC,cAAc,GAAGA,CACrBC,kBAA+B,EAC/BC,mBAAgC,KAC7B;IACH,MAAMC,cAAc,GAAGD,mBAAmB,CAACE,UAAU,CAACH,kBAAkB,CAAC;IACzEE,cAAc,CAACE,OAAO,CAAEC,GAAG,IAAK;MAC9BC,+BAAsB,CAACC,oBAAoB,CAACF,GAAG,CAAC;MAChDJ,mBAAmB,CAACO,MAAM,CAACH,GAAG,CAAC;IACjC,CAAC,CAAC;EACJ,CAAC;EAED,MAAMI,cAAc,GAAGA,CACrBjB,OAAkC,EAClCE,QAAgD,EAChDM,kBAA+B,EAC/BC,mBAAgC,EAChCS,UAAsB,KACnB;IACH,MAAMC,cAAc,GAAGX,kBAAkB,CAACG,UAAU,CAACF,mBAAmB,CAAC;IAEzEU,cAAc,CAACP,OAAO,CAAEC,GAAG,IAAK;MAC9B,IACEC,+BAAsB,CAACM,qBAAqB,CAC1CP,GACF,CAAC,CAACQ,8BAA8B,CAAC,CAAC,IAClCH,UAAU,KAAKI,sBAAU,CAACC,eAAe,EACzC;QACAT,+BAAsB,CAACU,oBAAoB,CACzCX,GAAG,EACHb,OAAO,CAACyB,OAAO,CAAEC,UAAU,EAC3BR,UAAU,EACVhB,QACF,CAAC;QACDE,sBAAsB,CAACqB,OAAO,CAACE,GAAG,CAACd,GAAG,CAAC;MACzC,CAAC,MAAM;QACLC,+BAAsB,CAACU,oBAAoB,CACzCX,GAAG,EACHb,OAAO,CAACyB,OAAO,EACfP,UAAU,EACVhB,QACF,CAAC;MACH;MACAO,mBAAmB,CAACkB,GAAG,CAACd,GAAG,CAAC;MAE5BC,+BAAsB,CAACc,0BAA0B,CAACf,GAAG,EAAE;QACrDgB,UAAU,EAAElC,KAAK,CAACkC,UAAU;QAC5BC,WAAW,EAAEnC,KAAK,CAACmC,WAAW;QAC9BC,iBAAiB,EAAEpC,KAAK,CAACoC;MAC3B,CAAC,CAAC;IACJ,CAAC,CAAC;EACJ,CAAC;EAED,IAAAC,gBAAS,EAAC,MAAM;IACd,MAAMC,oBAAoB,GACxB/B,QAAQ,CAACuB,OAAO,CAACI,UAAU,KAAKlC,KAAK,CAACkC,UAAU,IAChD3B,QAAQ,CAACuB,OAAO,CAACK,WAAW,KAAKnC,KAAK,CAACmC,WAAW,IAClD5B,QAAQ,CAACuB,OAAO,CAACM,iBAAiB,KAAKpC,KAAK,CAACoC,iBAAiB;IAEhE7B,QAAQ,CAACuB,OAAO,GAAG9B,KAAK;IAExB,IAAIsC,oBAAoB,EAAE;MACxB,KAAK,MAAMpB,GAAG,IAAIV,gBAAgB,CAACsB,OAAO,EAAE;QAC1CX,+BAAsB,CAACc,0BAA0B,CAACf,GAAG,EAAE;UACrDgB,UAAU,EAAElC,KAAK,CAACkC,UAAU;UAC5BC,WAAW,EAAEnC,KAAK,CAACmC,WAAW;UAC9BC,iBAAiB,EAAEpC,KAAK,CAACoC;QAC3B,CAAC,CAAC;MACJ;IACF;EACF,CAAC,EAAE,CAACpC,KAAK,CAAC,CAAC;EAEX,IAAAqC,gBAAS,EAAC,MAAM;IACd,IAAIE,cAAK,CAACC,QAAQ,CAACC,KAAK,CAACvC,QAAQ,CAAC,KAAK,CAAC,EAAE;MACxC,MAAM,IAAIwC,KAAK,CACb,IAAAC,iBAAU,EAAC,qDAAqD,CAClE,CAAC;IACH;EACF,CAAC,EAAE,CAACzC,QAAQ,CAAC,CAAC;EAEd,IAAAmC,gBAAS,EAAC,MAAM;IACd,IAAIE,cAAK,CAACC,QAAQ,CAACC,KAAK,CAACvC,QAAQ,CAAC,KAAK,CAAC,EAAE;MACxC,MAAM,IAAIwC,KAAK,CACb,IAAAC,iBAAU,EAAC,qDAAqD,CAClE,CAAC;IACH;IAEA/B,cAAc,CAACT,cAAc,EAAEK,gBAAgB,CAACsB,OAAO,CAAC;IAExDR,cAAc,CACZjB,OAAO,EACPE,QAAQ,EACRJ,cAAc,EACdK,gBAAgB,CAACsB,OAAO,EACxBH,sBAAU,CAACC,eACb,CAAC;IACD,OAAO,MAAM;MACXhB,cAAc,CAACf,cAAc,EAAEW,gBAAgB,CAACsB,OAAO,CAAC;MACxDpB,uBAAuB,EAAEoB,OAAO,CAACb,OAAO,CAAE2B,gBAAgB,IAAK;QAC7DhC,cAAc,CAACf,cAAc,EAAE+C,gBAAgB,CAAC;MAClD,CAAC,CAAC;IACJ,CAAC;EACH,CAAC,EAAE,CAACzC,cAAc,EAAEE,OAAO,CAAC,CAAC;EAE7B,IAAAgC,gBAAS,EAAC,MAAM;IACd,MAAMQ,uBAAoC,GAAG,IAAI/C,GAAG,CAClDY,uBAAuB,CAACoB,OAAO,CAACgB,IAAI,CAAC,CACvC,CAAC;IAED9C,KAAK,CAAC+C,eAAe,EAAE9B,OAAO,CAAE+B,KAAK,IAAK;MACxCH,uBAAuB,CAACxB,MAAM,CAAC2B,KAAK,CAACC,OAAO,CAAC;IAC/C,CAAC,CAAC;IAEFJ,uBAAuB,CAAC5B,OAAO,CAAEC,GAAG,IAAK;MACvCN,cAAc,CAACf,cAAc,EAAEa,uBAAuB,CAACoB,OAAO,CAACxC,GAAG,CAAC4B,GAAG,CAAE,CAAC;IAC3E,CAAC,CAAC;IAEFlB,KAAK,CAAC+C,eAAe,EAAE9B,OAAO,CAAE+B,KAAK,IAAK;MACxC,IAAIA,KAAK,CAAC3C,OAAO,CAACyB,OAAO,IAAI,IAAI,EAAE;QACjC;QACA;QACA;MACF;MACA,IAAI,CAACpB,uBAAuB,CAACoB,OAAO,CAACzC,GAAG,CAAC2D,KAAK,CAACC,OAAO,CAAC,EAAE;QACvDvC,uBAAuB,CAACoB,OAAO,CAACvC,GAAG,CAACyD,KAAK,CAACC,OAAO,EAAE,IAAInD,GAAG,CAAC,CAAC,CAAC;MAC/D;MAEA,MAAMe,kBAAkB,GAAG,IAAIf,GAAG,CAACkD,KAAK,CAAC/C,WAAW,CAAC;MACrDW,cAAc,CACZC,kBAAkB,EAClBH,uBAAuB,CAACoB,OAAO,CAACxC,GAAG,CAAC0D,KAAK,CAACC,OAAO,CACnD,CAAC;MAED3B,cAAc,CACZ0B,KAAK,CAAC3C,OAAO,EACbE,QAAQ,EACRM,kBAAkB,EAClBH,uBAAuB,CAACoB,OAAO,CAACxC,GAAG,CAAC0D,KAAK,CAACC,OAAO,CAAC,EAClDtB,sBAAU,CAACuB,gBACb,CAAC;IACH,CAAC,CAAC;EACJ,CAAC,EAAE,CAAClD,KAAK,CAAC+C,eAAe,CAAC,CAAC;EAE3B,oBACE,IAAAtE,WAAA,CAAA0E,GAAA,EAAC5E,YAAA,CAAA6E,IAAI;IAACC,KAAK,EAAE;MAAEC,OAAO,EAAE;IAAW,CAAE;IAACC,GAAG,EAAElD,OAAqB;IAAAH,QAAA,EAC7DA;EAAQ,CACL,CAAC;AAEX,CAAC;AAAC,IAAAsD,QAAA,GAAAC,OAAA,CAAA7E,OAAA,GAEamB,mBAAmB","ignoreList":[]}
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.NativeDetector = NativeDetector;
|
|
7
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var _HostGestureDetector = _interopRequireDefault(require("./HostGestureDetector"));
|
|
9
|
-
var _utils = require("./utils");
|
|
10
|
-
var _relationUtils = require("../hooks/utils/relationUtils");
|
|
11
|
-
var _common = require("./common");
|
|
12
|
-
var _ReanimatedNativeDetector = require("./ReanimatedNativeDetector");
|
|
13
|
-
var _reactNative = require("react-native");
|
|
14
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
15
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
17
|
-
function NativeDetector({
|
|
18
|
-
gesture,
|
|
19
|
-
children,
|
|
20
|
-
touchAction,
|
|
21
|
-
userSelect,
|
|
22
|
-
enableContextMenu
|
|
23
|
-
}) {
|
|
24
|
-
const NativeDetectorComponent = gesture.config.dispatchesAnimatedEvents ? _common.AnimatedNativeDetector : gesture.config.shouldUseReanimatedDetector ? _ReanimatedNativeDetector.ReanimatedNativeDetector : _HostGestureDetector.default;
|
|
25
|
-
(0, _utils.ensureNativeDetectorComponent)(NativeDetectorComponent);
|
|
26
|
-
(0, _utils.configureRelations)(gesture);
|
|
27
|
-
const handlerTags = (0, _react.useMemo)(() => {
|
|
28
|
-
return (0, _relationUtils.isComposedGesture)(gesture) ? gesture.handlerTags : [gesture.handlerTag];
|
|
29
|
-
}, [gesture]);
|
|
30
|
-
|
|
31
|
-
// On web, we're triggering Reanimated callbacks ourselves, based on the type.
|
|
32
|
-
// To handle this properly, we need to provide all three callbacks, so we set
|
|
33
|
-
// all three to the Reanimated event handler.
|
|
34
|
-
// On native, Reanimated handles routing internally based on the event names
|
|
35
|
-
// passed to the useEvent hook. We only need to pass it once, so that Reanimated
|
|
36
|
-
// can setup its internal listeners.
|
|
37
|
-
const reanimatedHandlers = _reactNative.Platform.OS === 'web' ? {
|
|
38
|
-
onGestureHandlerReanimatedEvent: gesture.detectorCallbacks.reanimatedEventHandler,
|
|
39
|
-
onGestureHandlerReanimatedStateChange: gesture.detectorCallbacks.reanimatedEventHandler,
|
|
40
|
-
onGestureHandlerReanimatedTouchEvent: gesture.detectorCallbacks.reanimatedEventHandler
|
|
41
|
-
} : {
|
|
42
|
-
onGestureHandlerReanimatedEvent: gesture.detectorCallbacks.reanimatedEventHandler
|
|
43
|
-
};
|
|
44
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(NativeDetectorComponent, {
|
|
45
|
-
touchAction: touchAction,
|
|
46
|
-
userSelect: userSelect,
|
|
47
|
-
enableContextMenu: enableContextMenu,
|
|
48
|
-
pointerEvents: 'box-none'
|
|
49
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
50
|
-
,
|
|
51
|
-
onGestureHandlerStateChange: gesture.detectorCallbacks.jsEventHandler
|
|
52
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
53
|
-
,
|
|
54
|
-
onGestureHandlerEvent: gesture.detectorCallbacks.jsEventHandler
|
|
55
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
56
|
-
,
|
|
57
|
-
onGestureHandlerTouchEvent: gesture.detectorCallbacks.jsEventHandler
|
|
58
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
59
|
-
,
|
|
60
|
-
onGestureHandlerReanimatedStateChange: reanimatedHandlers.onGestureHandlerReanimatedStateChange
|
|
61
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
62
|
-
,
|
|
63
|
-
onGestureHandlerReanimatedEvent: reanimatedHandlers.onGestureHandlerReanimatedEvent
|
|
64
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
65
|
-
,
|
|
66
|
-
onGestureHandlerReanimatedTouchEvent: reanimatedHandlers.onGestureHandlerReanimatedTouchEvent
|
|
67
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
68
|
-
,
|
|
69
|
-
onGestureHandlerAnimatedEvent: gesture.detectorCallbacks.animatedEventHandler,
|
|
70
|
-
moduleId: globalThis._RNGH_MODULE_ID,
|
|
71
|
-
handlerTags: handlerTags,
|
|
72
|
-
style: _common.nativeDetectorStyles.detector,
|
|
73
|
-
children: children
|
|
74
|
-
});
|
|
75
|
-
}
|
|
76
|
-
//# sourceMappingURL=NativeDetector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_HostGestureDetector","_interopRequireDefault","_utils","_relationUtils","_common","_ReanimatedNativeDetector","_reactNative","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","NativeDetector","gesture","children","touchAction","userSelect","enableContextMenu","NativeDetectorComponent","config","dispatchesAnimatedEvents","AnimatedNativeDetector","shouldUseReanimatedDetector","ReanimatedNativeDetector","HostGestureDetector","ensureNativeDetectorComponent","configureRelations","handlerTags","useMemo","isComposedGesture","handlerTag","reanimatedHandlers","Platform","OS","onGestureHandlerReanimatedEvent","detectorCallbacks","reanimatedEventHandler","onGestureHandlerReanimatedStateChange","onGestureHandlerReanimatedTouchEvent","jsx","pointerEvents","onGestureHandlerStateChange","jsEventHandler","onGestureHandlerEvent","onGestureHandlerTouchEvent","onGestureHandlerAnimatedEvent","animatedEventHandler","moduleId","globalThis","_RNGH_MODULE_ID","style","nativeDetectorStyles","detector"],"sourceRoot":"../../../../src","sources":["v3/detectors/NativeDetector.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.ReanimatedNativeDetector = void 0;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _reanimatedWrapper = require("../../handlers/gestures/reanimatedWrapper");
|
|
9
|
-
var _HostGestureDetector = _interopRequireDefault(require("./HostGestureDetector"));
|
|
10
|
-
var _reactNative = require("react-native");
|
|
11
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
-
let NativeEventsManagerImpl = _reanimatedWrapper.Reanimated?.NativeEventsManager;
|
|
14
|
-
if (!NativeEventsManagerImpl) {
|
|
15
|
-
// When Reanimated.NativeEventsManager is undefined, it may be that an older
|
|
16
|
-
// Reanimated version is used which doesn't export NativeEventsManager, or
|
|
17
|
-
// Reanimated is not installed at all. For the older versions, try to import
|
|
18
|
-
// NativeEventsManager by a subpath. Otherwise, it will stay undefined.
|
|
19
|
-
try {
|
|
20
|
-
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
21
|
-
NativeEventsManagerImpl =
|
|
22
|
-
// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-unsafe-member-access
|
|
23
|
-
require('react-native-reanimated/src/createAnimatedComponent/NativeEventsManager').NativeEventsManager;
|
|
24
|
-
} catch {
|
|
25
|
-
// fail silently
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
function LeanReanimatedNativeDetector(props) {
|
|
29
|
-
const prevProps = (0, _react.useRef)(null);
|
|
30
|
-
const eventManager = (0, _react.useRef)(null);
|
|
31
|
-
const viewRef = (0, _react.useRef)(null);
|
|
32
|
-
const {
|
|
33
|
-
onGestureHandlerReanimatedStateChange,
|
|
34
|
-
onGestureHandlerReanimatedEvent,
|
|
35
|
-
onGestureHandlerReanimatedTouchEvent,
|
|
36
|
-
...restProps
|
|
37
|
-
} = props;
|
|
38
|
-
const reaProps = (0, _react.useMemo)(() => ({
|
|
39
|
-
onGestureHandlerReanimatedStateChange,
|
|
40
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
41
|
-
onGestureHandlerReanimatedEvent,
|
|
42
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
43
|
-
onGestureHandlerReanimatedTouchEvent
|
|
44
|
-
}), [onGestureHandlerReanimatedEvent, onGestureHandlerReanimatedStateChange, onGestureHandlerReanimatedTouchEvent]);
|
|
45
|
-
(0, _react.useEffect)(() => {
|
|
46
|
-
const nativeTag = (0, _reactNative.findNodeHandle)(viewRef.current) ?? -1;
|
|
47
|
-
// @ts-expect-error Reanimated expects __nativeTag to be present on the ref
|
|
48
|
-
viewRef.__nativeTag = nativeTag;
|
|
49
|
-
// @ts-expect-error NativeEventsManager should be defined here, if it isn't, we should
|
|
50
|
-
// go the fallback way and use Reanimated's createAnimatedComponent
|
|
51
|
-
eventManager.current = new NativeEventsManagerImpl({
|
|
52
|
-
props: reaProps,
|
|
53
|
-
_componentRef: viewRef,
|
|
54
|
-
_componentViewTag: nativeTag,
|
|
55
|
-
getComponentViewTag: () => nativeTag
|
|
56
|
-
});
|
|
57
|
-
eventManager.current.attachEvents();
|
|
58
|
-
return () => {
|
|
59
|
-
eventManager.current?.detachEvents();
|
|
60
|
-
};
|
|
61
|
-
}, []);
|
|
62
|
-
(0, _react.useEffect)(() => {
|
|
63
|
-
if (prevProps.current) {
|
|
64
|
-
eventManager.current?.updateEvents(prevProps.current);
|
|
65
|
-
}
|
|
66
|
-
prevProps.current = reaProps;
|
|
67
|
-
}, [reaProps]);
|
|
68
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_HostGestureDetector.default, {
|
|
69
|
-
ref: viewRef,
|
|
70
|
-
...restProps
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
const ReanimatedNativeDetector = exports.ReanimatedNativeDetector = NativeEventsManagerImpl ? LeanReanimatedNativeDetector : _reanimatedWrapper.Reanimated?.default.createAnimatedComponent(_HostGestureDetector.default);
|
|
74
|
-
//# sourceMappingURL=ReanimatedNativeDetector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reanimatedWrapper","_HostGestureDetector","_interopRequireDefault","_reactNative","_jsxRuntime","e","__esModule","default","NativeEventsManagerImpl","Reanimated","NativeEventsManager","LeanReanimatedNativeDetector","props","prevProps","useRef","eventManager","viewRef","onGestureHandlerReanimatedStateChange","onGestureHandlerReanimatedEvent","onGestureHandlerReanimatedTouchEvent","restProps","reaProps","useMemo","useEffect","nativeTag","findNodeHandle","current","__nativeTag","_componentRef","_componentViewTag","getComponentViewTag","attachEvents","detachEvents","updateEvents","jsx","ref","ReanimatedNativeDetector","exports","createAnimatedComponent","HostGestureDetector"],"sourceRoot":"../../../../src","sources":["v3/detectors/ReanimatedNativeDetector.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,kBAAA,GAAAD,OAAA;AAIA,IAAAE,oBAAA,GAAAC,sBAAA,CAAAH,OAAA;AAGA,IAAAI,YAAA,GAAAJ,OAAA;AAA8C,IAAAK,WAAA,GAAAL,OAAA;AAAA,SAAAG,uBAAAG,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAE9C,IAAIG,uBAAuB,GAAGC,6BAAU,EAAEC,mBAAmB;AAE7D,IAAI,CAACF,uBAAuB,EAAE;EAC5B;EACA;EACA;EACA;EACA,IAAI;IACF;IACAA,uBAAuB;IACrB;IACAT,OAAO,CAAC,yEAAyE,CAAC,CAACW,mBAAmB;EAC1G,CAAC,CAAC,MAAM;IACN;EAAA;AAEJ;AASA,SAASC,4BAA4BA,CACnCC,KAAmD,EACnD;EACA,MAAMC,SAAS,GAAG,IAAAC,aAAM,EAAe,IAAI,CAAC;EAC5C,MAAMC,YAAY,GAAG,IAAAD,aAAM,EAA2C,IAAI,CAAC;EAC3E,MAAME,OAAO,GAAG,IAAAF,aAAM,EAAM,IAAI,CAAC;EAEjC,MAAM;IACJG,qCAAqC;IACrCC,+BAA+B;IAC/BC,oCAAoC;IACpC,GAAGC;EACL,CAAC,GAAGR,KAAK;EAET,MAAMS,QAAsB,GAAG,IAAAC,cAAO,EACpC,OAAO;IACLL,qCAAqC;IACrC;IACAC,+BAA+B;IAC/B;IACAC;EACF,CAAC,CAAC,EACF,CACED,+BAA+B,EAC/BD,qCAAqC,EACrCE,oCAAoC,CAExC,CAAC;EAED,IAAAI,gBAAS,EAAC,MAAM;IACd,MAAMC,SAAS,GAAG,IAAAC,2BAAc,EAACT,OAAO,CAACU,OAAO,CAAC,IAAI,CAAC,CAAC;IACvD;IACAV,OAAO,CAACW,WAAW,GAAGH,SAAS;IAC/B;IACA;IACAT,YAAY,CAACW,OAAO,GAAG,IAAIlB,uBAAuB,CAAC;MACjDI,KAAK,EAAES,QAAQ;MACfO,aAAa,EAAEZ,OAAO;MACtBa,iBAAiB,EAAEL,SAAS;MAC5BM,mBAAmB,EAAEA,CAAA,KAAMN;IAC7B,CAAC,CAAC;IACFT,YAAY,CAACW,OAAO,CAACK,YAAY,CAAC,CAAC;IAEnC,OAAO,MAAM;MACXhB,YAAY,CAACW,OAAO,EAAEM,YAAY,CAAC,CAAC;IACtC,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN,IAAAT,gBAAS,EAAC,MAAM;IACd,IAAIV,SAAS,CAACa,OAAO,EAAE;MACrBX,YAAY,CAACW,OAAO,EAAEO,YAAY,CAACpB,SAAS,CAACa,OAAO,CAAC;IACvD;IACAb,SAAS,CAACa,OAAO,GAAGL,QAAQ;EAC9B,CAAC,EAAE,CAACA,QAAQ,CAAC,CAAC;EAEd,oBAAO,IAAAjB,WAAA,CAAA8B,GAAA,EAACjC,oBAAA,CAAAM,OAAmB;IAAC4B,GAAG,EAAEnB,OAAQ;IAAA,GAAKI;EAAS,CAAG,CAAC;AAC7D;AAEO,MAAMgB,wBAAwB,GAAAC,OAAA,CAAAD,wBAAA,GAAG5B,uBAAuB,GAC3DG,4BAA4B,GAC5BF,6BAAU,EAAEF,OAAO,CAAC+B,uBAAuB,CAACC,4BAAmB,CAAC","ignoreList":[]}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.ReanimatedNativeDetector = void 0;
|
|
7
|
-
var _reanimatedWrapper = require("../../handlers/gestures/reanimatedWrapper");
|
|
8
|
-
var _HostGestureDetector = _interopRequireDefault(require("./HostGestureDetector"));
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
const ReanimatedNativeDetector = exports.ReanimatedNativeDetector = _reanimatedWrapper.Reanimated?.default.createAnimatedComponent(_HostGestureDetector.default);
|
|
11
|
-
//# sourceMappingURL=ReanimatedNativeDetector.web.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reanimatedWrapper","require","_HostGestureDetector","_interopRequireDefault","e","__esModule","default","ReanimatedNativeDetector","exports","Reanimated","createAnimatedComponent","HostGestureDetector"],"sourceRoot":"../../../../src","sources":["v3/detectors/ReanimatedNativeDetector.web.tsx"],"mappings":";;;;;;AAAA,IAAAA,kBAAA,GAAAC,OAAA;AACA,IAAAC,oBAAA,GAAAC,sBAAA,CAAAF,OAAA;AAAwD,SAAAE,uBAAAC,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAEjD,MAAMG,wBAAwB,GAAAC,OAAA,CAAAD,wBAAA,GACnCE,6BAAU,EAAEH,OAAO,CAACI,uBAAuB,CAACC,4BAAmB,CAAC","ignoreList":[]}
|
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.InterceptingGestureDetector = InterceptingGestureDetector;
|
|
7
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var _HostGestureDetector = _interopRequireDefault(require("../HostGestureDetector"));
|
|
9
|
-
var _useInterceptingDetectorContext = require("./useInterceptingDetectorContext");
|
|
10
|
-
var _reanimatedWrapper = require("../../../handlers/gestures/reanimatedWrapper");
|
|
11
|
-
var _utils = require("../utils");
|
|
12
|
-
var _relationUtils = require("../../hooks/utils/relationUtils");
|
|
13
|
-
var _common = require("../common");
|
|
14
|
-
var _utils2 = require("../../../utils");
|
|
15
|
-
var _useEnsureGestureHandlerRootView = require("../useEnsureGestureHandlerRootView");
|
|
16
|
-
var _ReanimatedNativeDetector = require("../ReanimatedNativeDetector");
|
|
17
|
-
var _reactNative = require("react-native");
|
|
18
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
19
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
20
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
21
|
-
function InterceptingGestureDetector({
|
|
22
|
-
gesture,
|
|
23
|
-
children,
|
|
24
|
-
touchAction,
|
|
25
|
-
userSelect,
|
|
26
|
-
enableContextMenu
|
|
27
|
-
}) {
|
|
28
|
-
(0, _useEnsureGestureHandlerRootView.useEnsureGestureHandlerRootView)();
|
|
29
|
-
const [virtualChildren, setVirtualChildren] = (0, _react.useState)(() => new Set());
|
|
30
|
-
const virtualChildrenForNativeComponent = (0, _react.useMemo)(() => Array.from(virtualChildren).map(child => ({
|
|
31
|
-
viewTag: child.viewTag,
|
|
32
|
-
handlerTags: child.handlerTags,
|
|
33
|
-
viewRef: child.viewRef
|
|
34
|
-
})), [virtualChildren]);
|
|
35
|
-
const [mode, setMode] = (0, _react.useState)(gesture?.config.shouldUseReanimatedDetector ? _useInterceptingDetectorContext.InterceptingDetectorMode.REANIMATED : gesture?.config.dispatchesAnimatedEvents ? _useInterceptingDetectorContext.InterceptingDetectorMode.ANIMATED : _useInterceptingDetectorContext.InterceptingDetectorMode.DEFAULT);
|
|
36
|
-
const shouldUseReanimatedDetector = mode === _useInterceptingDetectorContext.InterceptingDetectorMode.REANIMATED;
|
|
37
|
-
const dispatchesAnimatedEvents = mode === _useInterceptingDetectorContext.InterceptingDetectorMode.ANIMATED;
|
|
38
|
-
const NativeDetectorComponent = dispatchesAnimatedEvents ? _common.AnimatedNativeDetector : shouldUseReanimatedDetector ? _ReanimatedNativeDetector.ReanimatedNativeDetector : _HostGestureDetector.default;
|
|
39
|
-
const register = (0, _react.useCallback)(child => {
|
|
40
|
-
setVirtualChildren(prev => {
|
|
41
|
-
const newSet = new Set(prev);
|
|
42
|
-
newSet.add(child);
|
|
43
|
-
return newSet;
|
|
44
|
-
});
|
|
45
|
-
}, []);
|
|
46
|
-
const unregister = (0, _react.useCallback)(child => {
|
|
47
|
-
setVirtualChildren(prev => {
|
|
48
|
-
const newSet = new Set(prev);
|
|
49
|
-
newSet.delete(child);
|
|
50
|
-
return newSet;
|
|
51
|
-
});
|
|
52
|
-
}, []);
|
|
53
|
-
const contextValue = (0, _react.useMemo)(() => ({
|
|
54
|
-
mode,
|
|
55
|
-
setMode: newMode => {
|
|
56
|
-
if (newMode === _useInterceptingDetectorContext.InterceptingDetectorMode.REANIMATED && mode === _useInterceptingDetectorContext.InterceptingDetectorMode.ANIMATED || newMode === _useInterceptingDetectorContext.InterceptingDetectorMode.ANIMATED && mode === _useInterceptingDetectorContext.InterceptingDetectorMode.REANIMATED) {
|
|
57
|
-
throw new Error((0, _utils2.tagMessage)('InterceptingGestureDetector can only handle either Reanimated or Animated events.'));
|
|
58
|
-
}
|
|
59
|
-
setMode(newMode);
|
|
60
|
-
},
|
|
61
|
-
register,
|
|
62
|
-
unregister
|
|
63
|
-
}), [mode, register, unregister]);
|
|
64
|
-
(0, _react.useEffect)(() => {
|
|
65
|
-
if (gesture?.config?.dispatchesAnimatedEvents) {
|
|
66
|
-
contextValue.setMode(_useInterceptingDetectorContext.InterceptingDetectorMode.ANIMATED);
|
|
67
|
-
} else if (gesture?.config?.shouldUseReanimatedDetector) {
|
|
68
|
-
contextValue.setMode(_useInterceptingDetectorContext.InterceptingDetectorMode.REANIMATED);
|
|
69
|
-
}
|
|
70
|
-
}, [contextValue, gesture?.config?.dispatchesAnimatedEvents, gesture?.config?.shouldUseReanimatedDetector]);
|
|
71
|
-
|
|
72
|
-
// It might happen only with ReanimatedNativeDetector
|
|
73
|
-
if (!NativeDetectorComponent) {
|
|
74
|
-
throw new Error((0, _utils2.tagMessage)('Gesture expects to run on the UI thread, but failed to create the Reanimated NativeDetector.'));
|
|
75
|
-
}
|
|
76
|
-
const createGestureEventHandler = (0, _react.useCallback)(key => {
|
|
77
|
-
return e => {
|
|
78
|
-
if (typeof gesture?.detectorCallbacks[key] === 'function') {
|
|
79
|
-
// @ts-expect-error passing event to a union of functions where only one is typed as such
|
|
80
|
-
gesture.detectorCallbacks[key](e);
|
|
81
|
-
}
|
|
82
|
-
virtualChildren.forEach(child => {
|
|
83
|
-
const method = child.methods[key];
|
|
84
|
-
if (typeof method === 'function') {
|
|
85
|
-
// @ts-expect-error passing event to a union of functions where only one is typed as such
|
|
86
|
-
method(e);
|
|
87
|
-
}
|
|
88
|
-
});
|
|
89
|
-
};
|
|
90
|
-
}, [gesture, virtualChildren]);
|
|
91
|
-
const getHandlers = (0, _react.useCallback)(key => {
|
|
92
|
-
const handlers = [];
|
|
93
|
-
if (gesture?.detectorCallbacks[key]) {
|
|
94
|
-
handlers.push(gesture.detectorCallbacks[key]);
|
|
95
|
-
}
|
|
96
|
-
virtualChildren.forEach(child => {
|
|
97
|
-
const handler = child.methods[key];
|
|
98
|
-
if (handler) {
|
|
99
|
-
handlers.push(handler);
|
|
100
|
-
}
|
|
101
|
-
});
|
|
102
|
-
return handlers;
|
|
103
|
-
}, [virtualChildren, gesture?.detectorCallbacks]);
|
|
104
|
-
const reanimatedEvents = (0, _react.useMemo)(() => getHandlers('reanimatedEventHandler'), [getHandlers]);
|
|
105
|
-
const reanimatedEventHandler = _reanimatedWrapper.Reanimated?.useComposedEventHandler(reanimatedEvents);
|
|
106
|
-
(0, _utils.ensureNativeDetectorComponent)(NativeDetectorComponent);
|
|
107
|
-
if (gesture) {
|
|
108
|
-
(0, _utils.configureRelations)(gesture);
|
|
109
|
-
}
|
|
110
|
-
const handlerTags = (0, _react.useMemo)(() => {
|
|
111
|
-
if (gesture) {
|
|
112
|
-
return (0, _relationUtils.isComposedGesture)(gesture) ? gesture.handlerTags : [gesture.handlerTag];
|
|
113
|
-
}
|
|
114
|
-
return [];
|
|
115
|
-
}, [gesture]);
|
|
116
|
-
|
|
117
|
-
// On web, we're triggering Reanimated callbacks ourselves, based on the type.
|
|
118
|
-
// To handle this properly, we need to provide all three callbacks, so we set
|
|
119
|
-
// all three to the Reanimated event handler.
|
|
120
|
-
// On native, Reanimated handles routing internally based on the event names
|
|
121
|
-
// passed to the useEvent hook. We only need to pass it once, so that Reanimated
|
|
122
|
-
// can setup its internal listeners.
|
|
123
|
-
const reanimatedHandlers = _reactNative.Platform.OS === 'web' ? {
|
|
124
|
-
onGestureHandlerReanimatedEvent: reanimatedEventHandler,
|
|
125
|
-
onGestureHandlerReanimatedStateChange: reanimatedEventHandler,
|
|
126
|
-
onGestureHandlerReanimatedTouchEvent: reanimatedEventHandler
|
|
127
|
-
} : {
|
|
128
|
-
onGestureHandlerReanimatedEvent: reanimatedEventHandler
|
|
129
|
-
};
|
|
130
|
-
const jsEventHandler = (0, _react.useMemo)(() => createGestureEventHandler('jsEventHandler'), [createGestureEventHandler]);
|
|
131
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_useInterceptingDetectorContext.InterceptingDetectorContext, {
|
|
132
|
-
value: contextValue,
|
|
133
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(NativeDetectorComponent, {
|
|
134
|
-
touchAction: touchAction,
|
|
135
|
-
userSelect: userSelect,
|
|
136
|
-
enableContextMenu: enableContextMenu,
|
|
137
|
-
pointerEvents: 'box-none'
|
|
138
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
139
|
-
,
|
|
140
|
-
onGestureHandlerStateChange: jsEventHandler
|
|
141
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
142
|
-
,
|
|
143
|
-
onGestureHandlerEvent: jsEventHandler
|
|
144
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
145
|
-
,
|
|
146
|
-
onGestureHandlerTouchEvent: jsEventHandler
|
|
147
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
148
|
-
,
|
|
149
|
-
onGestureHandlerAnimatedEvent: gesture?.detectorCallbacks.animatedEventHandler
|
|
150
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
151
|
-
,
|
|
152
|
-
onGestureHandlerReanimatedStateChange: shouldUseReanimatedDetector ? reanimatedHandlers.onGestureHandlerReanimatedStateChange : undefined
|
|
153
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
154
|
-
,
|
|
155
|
-
onGestureHandlerReanimatedEvent: shouldUseReanimatedDetector ? reanimatedHandlers.onGestureHandlerReanimatedEvent : undefined
|
|
156
|
-
// @ts-ignore This is a type mismatch between RNGH types and RN Codegen types
|
|
157
|
-
,
|
|
158
|
-
onGestureHandlerReanimatedTouchEvent: shouldUseReanimatedDetector ? reanimatedHandlers.onGestureHandlerReanimatedTouchEvent : undefined,
|
|
159
|
-
handlerTags: handlerTags,
|
|
160
|
-
style: _common.nativeDetectorStyles.detector,
|
|
161
|
-
virtualChildren: virtualChildrenForNativeComponent,
|
|
162
|
-
moduleId: globalThis._RNGH_MODULE_ID,
|
|
163
|
-
children: children
|
|
164
|
-
})
|
|
165
|
-
});
|
|
166
|
-
}
|
|
167
|
-
//# sourceMappingURL=InterceptingGestureDetector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_HostGestureDetector","_interopRequireDefault","_useInterceptingDetectorContext","_reanimatedWrapper","_utils","_relationUtils","_common","_utils2","_useEnsureGestureHandlerRootView","_ReanimatedNativeDetector","_reactNative","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","InterceptingGestureDetector","gesture","children","touchAction","userSelect","enableContextMenu","useEnsureGestureHandlerRootView","virtualChildren","setVirtualChildren","useState","Set","virtualChildrenForNativeComponent","useMemo","Array","from","map","child","viewTag","handlerTags","viewRef","mode","setMode","config","shouldUseReanimatedDetector","InterceptingDetectorMode","REANIMATED","dispatchesAnimatedEvents","ANIMATED","DEFAULT","NativeDetectorComponent","AnimatedNativeDetector","ReanimatedNativeDetector","HostGestureDetector","register","useCallback","prev","newSet","add","unregister","delete","contextValue","newMode","Error","tagMessage","useEffect","createGestureEventHandler","key","detectorCallbacks","forEach","method","methods","getHandlers","handlers","push","handler","reanimatedEvents","reanimatedEventHandler","Reanimated","useComposedEventHandler","ensureNativeDetectorComponent","configureRelations","isComposedGesture","handlerTag","reanimatedHandlers","Platform","OS","onGestureHandlerReanimatedEvent","onGestureHandlerReanimatedStateChange","onGestureHandlerReanimatedTouchEvent","jsEventHandler","jsx","InterceptingDetectorContext","value","pointerEvents","onGestureHandlerStateChange","onGestureHandlerEvent","onGestureHandlerTouchEvent","onGestureHandlerAnimatedEvent","animatedEventHandler","undefined","style","nativeDetectorStyles","detector","moduleId","globalThis","_RNGH_MODULE_ID"],"sourceRoot":"../../../../../src","sources":["v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.VirtualDetector = VirtualDetector;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _Wrap = require("../../../handlers/gestures/GestureDetector/Wrap");
|
|
9
|
-
var _reactNative = require("react-native");
|
|
10
|
-
var _useInterceptingDetectorContext = require("./useInterceptingDetectorContext");
|
|
11
|
-
var _relationUtils = require("../../hooks/utils/relationUtils");
|
|
12
|
-
var _utils = require("../utils");
|
|
13
|
-
var _utils2 = require("../../../utils");
|
|
14
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
15
|
-
function useRequiredInterceptingDetectorContext() {
|
|
16
|
-
const context = (0, _useInterceptingDetectorContext.useInterceptingDetectorContext)();
|
|
17
|
-
if (!context) {
|
|
18
|
-
throw new Error((0, _utils2.tagMessage)('VirtualGestureDetector must be a descendant of an InterceptingGestureDetector'));
|
|
19
|
-
}
|
|
20
|
-
return context;
|
|
21
|
-
}
|
|
22
|
-
function VirtualDetector(props) {
|
|
23
|
-
// Don't memoize virtual detectors to be able to listen to changes in children
|
|
24
|
-
// TODO: replace with MutationObserver when it rolls out in React Native
|
|
25
|
-
'use no memo';
|
|
26
|
-
|
|
27
|
-
const {
|
|
28
|
-
register,
|
|
29
|
-
unregister,
|
|
30
|
-
setMode
|
|
31
|
-
} = useRequiredInterceptingDetectorContext();
|
|
32
|
-
const viewRef = (0, _react.useRef)(null);
|
|
33
|
-
const [viewTag, setViewTag] = (0, _react.useState)(-1);
|
|
34
|
-
const handleRef = (0, _react.useCallback)(node => {
|
|
35
|
-
viewRef.current = node;
|
|
36
|
-
if (node) {
|
|
37
|
-
const tag = _reactNative.Platform.OS === 'web' ? node : (0, _reactNative.findNodeHandle)(node);
|
|
38
|
-
setViewTag(tag ?? -1);
|
|
39
|
-
} else {
|
|
40
|
-
setViewTag(-1);
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
// Invalid dependency array to change the function when children change
|
|
44
|
-
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
45
|
-
[props.children]);
|
|
46
|
-
(0, _react.useEffect)(() => {
|
|
47
|
-
if (viewTag === -1) {
|
|
48
|
-
return;
|
|
49
|
-
}
|
|
50
|
-
const handlerTags = (0, _relationUtils.isComposedGesture)(props.gesture) ? props.gesture.handlerTags : [props.gesture.handlerTag];
|
|
51
|
-
if (props.gesture.config.dispatchesAnimatedEvents) {
|
|
52
|
-
throw new Error((0, _utils2.tagMessage)('VirtualGestureDetector cannot handle Animated events with native driver when used inside InterceptingGestureDetector. Use Reanimated or Animated events without native driver instead.'));
|
|
53
|
-
} else if (props.gesture.config.shouldUseReanimatedDetector) {
|
|
54
|
-
setMode(_useInterceptingDetectorContext.InterceptingDetectorMode.REANIMATED);
|
|
55
|
-
}
|
|
56
|
-
const virtualChild = {
|
|
57
|
-
viewTag,
|
|
58
|
-
handlerTags,
|
|
59
|
-
methods: props.gesture.detectorCallbacks,
|
|
60
|
-
// used by HostGestureDetector on web
|
|
61
|
-
viewRef: _reactNative.Platform.OS === 'web' ? viewRef : undefined
|
|
62
|
-
};
|
|
63
|
-
register(virtualChild);
|
|
64
|
-
return () => {
|
|
65
|
-
unregister(virtualChild);
|
|
66
|
-
};
|
|
67
|
-
}, [viewTag, props.gesture, register, unregister, setMode]);
|
|
68
|
-
(0, _utils.configureRelations)(props.gesture);
|
|
69
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Wrap.Wrap, {
|
|
70
|
-
ref: handleRef,
|
|
71
|
-
children: props.children
|
|
72
|
-
});
|
|
73
|
-
}
|
|
74
|
-
//# sourceMappingURL=VirtualDetector.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_Wrap","_reactNative","_useInterceptingDetectorContext","_relationUtils","_utils","_utils2","_jsxRuntime","useRequiredInterceptingDetectorContext","context","useInterceptingDetectorContext","Error","tagMessage","VirtualDetector","props","register","unregister","setMode","viewRef","useRef","viewTag","setViewTag","useState","handleRef","useCallback","node","current","tag","Platform","OS","findNodeHandle","children","useEffect","handlerTags","isComposedGesture","gesture","handlerTag","config","dispatchesAnimatedEvents","shouldUseReanimatedDetector","InterceptingDetectorMode","REANIMATED","virtualChild","methods","detectorCallbacks","undefined","configureRelations","jsx","Wrap","ref"],"sourceRoot":"../../../../../src","sources":["v3/detectors/VirtualDetector/VirtualDetector.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.InterceptingDetectorMode = exports.InterceptingDetectorContext = void 0;
|
|
7
|
-
exports.useInterceptingDetectorContext = useInterceptingDetectorContext;
|
|
8
|
-
var _react = require("react");
|
|
9
|
-
let InterceptingDetectorMode = exports.InterceptingDetectorMode = /*#__PURE__*/function (InterceptingDetectorMode) {
|
|
10
|
-
InterceptingDetectorMode[InterceptingDetectorMode["DEFAULT"] = 0] = "DEFAULT";
|
|
11
|
-
InterceptingDetectorMode[InterceptingDetectorMode["ANIMATED"] = 1] = "ANIMATED";
|
|
12
|
-
InterceptingDetectorMode[InterceptingDetectorMode["REANIMATED"] = 2] = "REANIMATED";
|
|
13
|
-
return InterceptingDetectorMode;
|
|
14
|
-
}({});
|
|
15
|
-
const InterceptingDetectorContext = exports.InterceptingDetectorContext = /*#__PURE__*/(0, _react.createContext)(null);
|
|
16
|
-
function useInterceptingDetectorContext() {
|
|
17
|
-
return (0, _react.use)(InterceptingDetectorContext);
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=useInterceptingDetectorContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","InterceptingDetectorMode","exports","InterceptingDetectorContext","createContext","useInterceptingDetectorContext","use"],"sourceRoot":"../../../../../src","sources":["v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts"],"mappings":";;;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAA2C,IAG/BC,wBAAwB,GAAAC,OAAA,CAAAD,wBAAA,0BAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAA,OAAxBA,wBAAwB;AAAA;AAa7B,MAAME,2BAA2B,GAAAD,OAAA,CAAAC,2BAAA,gBACtC,IAAAC,oBAAa,EAA0C,IAAI,CAAC;AAEvD,SAASC,8BAA8BA,CAAA,EAAG;EAC/C,OAAO,IAAAC,UAAG,EAACH,2BAA2B,CAAC;AACzC","ignoreList":[]}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.nativeDetectorStyles = exports.GestureDetectorType = exports.AnimatedNativeDetector = void 0;
|
|
7
|
-
var _reactNative = require("react-native");
|
|
8
|
-
var _HostGestureDetector = _interopRequireDefault(require("./HostGestureDetector"));
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
let GestureDetectorType = exports.GestureDetectorType = /*#__PURE__*/function (GestureDetectorType) {
|
|
11
|
-
GestureDetectorType[GestureDetectorType["Native"] = 0] = "Native";
|
|
12
|
-
GestureDetectorType[GestureDetectorType["Virtual"] = 1] = "Virtual";
|
|
13
|
-
GestureDetectorType[GestureDetectorType["Intercepting"] = 2] = "Intercepting";
|
|
14
|
-
return GestureDetectorType;
|
|
15
|
-
}({}); // TODO: Handle CommonGestureDetectorProps inside VirtualGestureDetector
|
|
16
|
-
const AnimatedNativeDetector = exports.AnimatedNativeDetector = _reactNative.Animated.createAnimatedComponent(_HostGestureDetector.default);
|
|
17
|
-
const nativeDetectorStyles = exports.nativeDetectorStyles = _reactNative.StyleSheet.create({
|
|
18
|
-
detector: {
|
|
19
|
-
display: 'contents'
|
|
20
|
-
}
|
|
21
|
-
});
|
|
22
|
-
//# sourceMappingURL=common.js.map
|