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 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","useEffect","useMemo","useRef","
|
|
1
|
+
{"version":3,"names":["React","useEffect","useMemo","useRef","View","ActionType","RNGestureHandlerModule","tagMessage","jsx","_jsx","EMPTY_HANDLERS","Set","HostGestureDetector","props","handlerTags","children","handlerTagsSet","viewRef","propsRef","attachedHandlers","attachedNativeHandlers","attachedVirtualHandlers","Map","detachHandlers","currentHandlerTags","attachedHandlerTags","oldHandlerTags","difference","forEach","tag","detachGestureHandler","delete","attachHandlers","actionType","newHandlerTags","getGestureHandlerNode","shouldAttachGestureToChildView","NATIVE_DETECTOR","current","childElementCount","Error","attachGestureHandler","firstChild","add","updateGestureHandlerConfig","userSelect","touchAction","enableContextMenu","shouldUpdateDOMProps","childHandlerTags","virtualChildrenToDetach","keys","virtualChildren","child","viewTag","get","has","set","VIRTUAL_DETECTOR","style","display","ref"],"sourceRoot":"../../../../src","sources":["v3/detectors/HostGestureDetector.web.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import React, { useMemo } from 'react';
|
|
4
|
-
import
|
|
5
|
-
import { configureRelations, ensureNativeDetectorComponent } from './utils';
|
|
4
|
+
import { Platform } from 'react-native';
|
|
6
5
|
import { isComposedGesture } from '../hooks/utils/relationUtils';
|
|
7
6
|
import { AnimatedNativeDetector, nativeDetectorStyles } from './common';
|
|
7
|
+
import HostGestureDetector from './HostGestureDetector';
|
|
8
8
|
import { ReanimatedNativeDetector } from './ReanimatedNativeDetector';
|
|
9
|
-
import {
|
|
9
|
+
import { configureRelations, ensureNativeDetectorComponent } from './utils';
|
|
10
10
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
11
11
|
export function NativeDetector({
|
|
12
12
|
gesture,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","useMemo","
|
|
1
|
+
{"version":3,"names":["React","useMemo","Platform","isComposedGesture","AnimatedNativeDetector","nativeDetectorStyles","HostGestureDetector","ReanimatedNativeDetector","configureRelations","ensureNativeDetectorComponent","jsx","_jsx","NativeDetector","gesture","children","touchAction","userSelect","enableContextMenu","NativeDetectorComponent","config","dispatchesAnimatedEvents","shouldUseReanimatedDetector","handlerTags","handlerTag","reanimatedHandlers","OS","onGestureHandlerReanimatedEvent","detectorCallbacks","reanimatedEventHandler","onGestureHandlerReanimatedStateChange","onGestureHandlerReanimatedTouchEvent","pointerEvents","onGestureHandlerStateChange","jsEventHandler","onGestureHandlerEvent","onGestureHandlerTouchEvent","onGestureHandlerAnimatedEvent","animatedEventHandler","moduleId","globalThis","_RNGH_MODULE_ID","style","detector"],"sourceRoot":"../../../../src","sources":["v3/detectors/NativeDetector.tsx"],"mappings":";;AAAA,OAAOA,KAAK,IAAIC,OAAO,QAAQ,OAAO;AACtC,SAASC,QAAQ,QAAQ,cAAc;AAEvC,SAASC,iBAAiB,QAAQ,8BAA8B;AAEhE,SAASC,sBAAsB,EAAEC,oBAAoB,QAAQ,UAAU;AACvE,OAAOC,mBAAmB,MAAM,uBAAuB;AACvD,SAASC,wBAAwB,QAAQ,4BAA4B;AACrE,SAASC,kBAAkB,EAAEC,6BAA6B,QAAQ,SAAS;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE5E,OAAO,SAASC,cAAcA,CAI5B;EACAC,OAAO;EACPC,QAAQ;EACRC,WAAW;EACXC,UAAU;EACVC;AACgE,CAAC,EAAE;EACnE,MAAMC,uBAAuB,GAAGL,OAAO,CAACM,MAAM,CAACC,wBAAwB,GACnEhB,sBAAsB,GACtBS,OAAO,CAACM,MAAM,CAACE,2BAA2B,GACxCd,wBAAwB,GACxBD,mBAAmB;EAEzBG,6BAA6B,CAACS,uBAAuB,CAAC;EACtDV,kBAAkB,CAACK,OAAO,CAAC;EAE3B,MAAMS,WAAW,GAAGrB,OAAO,CAAC,MAAM;IAChC,OAAOE,iBAAiB,CAACU,OAAO,CAAC,GAC7BA,OAAO,CAACS,WAAW,GACnB,CAACT,OAAO,CAACU,UAAU,CAAC;EAC1B,CAAC,EAAE,CAACV,OAAO,CAAC,CAAC;;EAEb;EACA;EACA;EACA;EACA;EACA;EACA,MAAMW,kBAAkB,GACtBtB,QAAQ,CAACuB,EAAE,KAAK,KAAK,GACjB;IACEC,+BAA+B,EAC7Bb,OAAO,CAACc,iBAAiB,CAACC,sBAAsB;IAClDC,qCAAqC,EACnChB,OAAO,CAACc,iBAAiB,CAACC,sBAAsB;IAClDE,oCAAoC,EAClCjB,OAAO,CAACc,iBAAiB,CAACC;EAC9B,CAAC,GACD;IACEF,+BAA+B,EAC7Bb,OAAO,CAACc,iBAAiB,CAACC;EAC9B,CAAC;EAEP,oBACEjB,IAAA,CAACO,uBAAuB;IACtBH,WAAW,EAAEA,WAAY;IACzBC,UAAU,EAAEA,UAAW;IACvBC,iBAAiB,EAAEA,iBAAkB;IACrCc,aAAa,EAAE;IACf;IAAA;IACAC,2BAA2B,EAAEnB,OAAO,CAACc,iBAAiB,CAACM;IACvD;IAAA;IACAC,qBAAqB,EAAErB,OAAO,CAACc,iBAAiB,CAACM;IACjD;IAAA;IACAE,0BAA0B,EAAEtB,OAAO,CAACc,iBAAiB,CAACM;IACtD;IAAA;IACAJ,qCAAqC,EACnCL,kBAAkB,CAACK;IAErB;IAAA;IACAH,+BAA+B,EAC7BF,kBAAkB,CAACE;IAErB;IAAA;IACAI,oCAAoC,EAClCN,kBAAkB,CAACM;IAErB;IAAA;IACAM,6BAA6B,EAC3BvB,OAAO,CAACc,iBAAiB,CAACU,oBAC3B;IACDC,QAAQ,EAAEC,UAAU,CAACC,eAAgB;IACrClB,WAAW,EAAEA,WAAY;IACzBmB,KAAK,EAAEpC,oBAAoB,CAACqC,QAAS;IAAA5B,QAAA,EACpCA;EAAQ,CACc,CAAC;AAE9B","ignoreList":[]}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import { useEffect, useMemo, useRef } from 'react';
|
|
4
|
+
import { findNodeHandle } from 'react-native';
|
|
4
5
|
import { Reanimated } from '../../handlers/gestures/reanimatedWrapper';
|
|
5
6
|
import HostGestureDetector from './HostGestureDetector';
|
|
6
|
-
import { findNodeHandle } from 'react-native';
|
|
7
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
8
|
let NativeEventsManagerImpl = Reanimated?.NativeEventsManager;
|
|
9
9
|
if (!NativeEventsManagerImpl) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["useEffect","useMemo","useRef","
|
|
1
|
+
{"version":3,"names":["useEffect","useMemo","useRef","findNodeHandle","Reanimated","HostGestureDetector","jsx","_jsx","NativeEventsManagerImpl","NativeEventsManager","require","LeanReanimatedNativeDetector","props","prevProps","eventManager","viewRef","onGestureHandlerReanimatedStateChange","onGestureHandlerReanimatedEvent","onGestureHandlerReanimatedTouchEvent","restProps","reaProps","nativeTag","current","__nativeTag","_componentRef","_componentViewTag","getComponentViewTag","attachEvents","detachEvents","updateEvents","ref","ReanimatedNativeDetector","default","createAnimatedComponent"],"sourceRoot":"../../../../src","sources":["v3/detectors/ReanimatedNativeDetector.tsx"],"mappings":";;AAAA,SAASA,SAAS,EAAEC,OAAO,EAAEC,MAAM,QAAQ,OAAO;AAClD,SAASC,cAAc,QAAQ,cAAc;AAG7C,SAASC,UAAU,QAAQ,2CAA2C;AACtE,OAAOC,mBAAmB,MAEnB,uBAAuB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE/B,IAAIC,uBAAuB,GAAGJ,UAAU,EAAEK,mBAAmB;AAE7D,IAAI,CAACD,uBAAuB,EAAE;EAC5B;EACA;EACA;EACA;EACA,IAAI;IACF;IACAA,uBAAuB;IACrB;IACAE,OAAO,CAAC,yEAAyE,CAAC,CAACD,mBAAmB;EAC1G,CAAC,CAAC,MAAM;IACN;EAAA;AAEJ;AASA,SAASE,4BAA4BA,CACnCC,KAAmD,EACnD;EACA,MAAMC,SAAS,GAAGX,MAAM,CAAe,IAAI,CAAC;EAC5C,MAAMY,YAAY,GAAGZ,MAAM,CAA2C,IAAI,CAAC;EAC3E,MAAMa,OAAO,GAAGb,MAAM,CAAM,IAAI,CAAC;EAEjC,MAAM;IACJc,qCAAqC;IACrCC,+BAA+B;IAC/BC,oCAAoC;IACpC,GAAGC;EACL,CAAC,GAAGP,KAAK;EAET,MAAMQ,QAAsB,GAAGnB,OAAO,CACpC,OAAO;IACLe,qCAAqC;IACrC;IACAC,+BAA+B;IAC/B;IACAC;EACF,CAAC,CAAC,EACF,CACED,+BAA+B,EAC/BD,qCAAqC,EACrCE,oCAAoC,CAExC,CAAC;EAEDlB,SAAS,CAAC,MAAM;IACd,MAAMqB,SAAS,GAAGlB,cAAc,CAACY,OAAO,CAACO,OAAO,CAAC,IAAI,CAAC,CAAC;IACvD;IACAP,OAAO,CAACQ,WAAW,GAAGF,SAAS;IAC/B;IACA;IACAP,YAAY,CAACQ,OAAO,GAAG,IAAId,uBAAuB,CAAC;MACjDI,KAAK,EAAEQ,QAAQ;MACfI,aAAa,EAAET,OAAO;MACtBU,iBAAiB,EAAEJ,SAAS;MAC5BK,mBAAmB,EAAEA,CAAA,KAAML;IAC7B,CAAC,CAAC;IACFP,YAAY,CAACQ,OAAO,CAACK,YAAY,CAAC,CAAC;IAEnC,OAAO,MAAM;MACXb,YAAY,CAACQ,OAAO,EAAEM,YAAY,CAAC,CAAC;IACtC,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN5B,SAAS,CAAC,MAAM;IACd,IAAIa,SAAS,CAACS,OAAO,EAAE;MACrBR,YAAY,CAACQ,OAAO,EAAEO,YAAY,CAAChB,SAAS,CAACS,OAAO,CAAC;IACvD;IACAT,SAAS,CAACS,OAAO,GAAGF,QAAQ;EAC9B,CAAC,EAAE,CAACA,QAAQ,CAAC,CAAC;EAEd,oBAAOb,IAAA,CAACF,mBAAmB;IAACyB,GAAG,EAAEf,OAAQ;IAAA,GAAKI;EAAS,CAAG,CAAC;AAC7D;AAEA,OAAO,MAAMY,wBAAwB,GAAGvB,uBAAuB,GAC3DG,4BAA4B,GAC5BP,UAAU,EAAE4B,OAAO,CAACC,uBAAuB,CAAC5B,mBAAmB,CAAC","ignoreList":[]}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
|
4
|
-
import
|
|
5
|
-
import { InterceptingDetectorContext, InterceptingDetectorMode } from './useInterceptingDetectorContext';
|
|
4
|
+
import { Platform } from 'react-native';
|
|
6
5
|
import { Reanimated } from '../../../handlers/gestures/reanimatedWrapper';
|
|
7
|
-
import {
|
|
6
|
+
import { tagMessage } from '../../../utils';
|
|
8
7
|
import { isComposedGesture } from '../../hooks/utils/relationUtils';
|
|
9
8
|
import { AnimatedNativeDetector, nativeDetectorStyles } from '../common';
|
|
10
|
-
import
|
|
11
|
-
import { useEnsureGestureHandlerRootView } from '../useEnsureGestureHandlerRootView';
|
|
9
|
+
import HostGestureDetector from '../HostGestureDetector';
|
|
12
10
|
import { ReanimatedNativeDetector } from '../ReanimatedNativeDetector';
|
|
13
|
-
import {
|
|
11
|
+
import { useEnsureGestureHandlerRootView } from '../useEnsureGestureHandlerRootView';
|
|
12
|
+
import { configureRelations, ensureNativeDetectorComponent } from '../utils';
|
|
13
|
+
import { InterceptingDetectorContext, InterceptingDetectorMode } from './useInterceptingDetectorContext';
|
|
14
14
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
15
15
|
export function InterceptingGestureDetector({
|
|
16
16
|
gesture,
|
|
@@ -21,10 +21,16 @@ export function InterceptingGestureDetector({
|
|
|
21
21
|
}) {
|
|
22
22
|
useEnsureGestureHandlerRootView();
|
|
23
23
|
const [virtualChildren, setVirtualChildren] = useState(() => new Set());
|
|
24
|
-
const
|
|
24
|
+
const strippedVirtualChildren = useMemo(() => Platform.OS === 'web' ? Array.from(virtualChildren).map(child => ({
|
|
25
25
|
viewTag: child.viewTag,
|
|
26
26
|
handlerTags: child.handlerTags,
|
|
27
|
-
viewRef: child.viewRef
|
|
27
|
+
viewRef: child.viewRef,
|
|
28
|
+
userSelect: child.userSelect,
|
|
29
|
+
touchAction: child.touchAction,
|
|
30
|
+
enableContextMenu: child.enableContextMenu
|
|
31
|
+
})) : Array.from(virtualChildren).map(child => ({
|
|
32
|
+
viewTag: child.viewTag,
|
|
33
|
+
handlerTags: child.handlerTags
|
|
28
34
|
})), [virtualChildren]);
|
|
29
35
|
const [mode, setMode] = useState(gesture?.config.shouldUseReanimatedDetector ? InterceptingDetectorMode.REANIMATED : gesture?.config.dispatchesAnimatedEvents ? InterceptingDetectorMode.ANIMATED : InterceptingDetectorMode.DEFAULT);
|
|
30
36
|
const shouldUseReanimatedDetector = mode === InterceptingDetectorMode.REANIMATED;
|
|
@@ -152,7 +158,7 @@ export function InterceptingGestureDetector({
|
|
|
152
158
|
onGestureHandlerReanimatedTouchEvent: shouldUseReanimatedDetector ? reanimatedHandlers.onGestureHandlerReanimatedTouchEvent : undefined,
|
|
153
159
|
handlerTags: handlerTags,
|
|
154
160
|
style: nativeDetectorStyles.detector,
|
|
155
|
-
virtualChildren:
|
|
161
|
+
virtualChildren: strippedVirtualChildren,
|
|
156
162
|
moduleId: globalThis._RNGH_MODULE_ID,
|
|
157
163
|
children: children
|
|
158
164
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","useCallback","useEffect","useMemo","useState","
|
|
1
|
+
{"version":3,"names":["React","useCallback","useEffect","useMemo","useState","Platform","Reanimated","tagMessage","isComposedGesture","AnimatedNativeDetector","nativeDetectorStyles","HostGestureDetector","ReanimatedNativeDetector","useEnsureGestureHandlerRootView","configureRelations","ensureNativeDetectorComponent","InterceptingDetectorContext","InterceptingDetectorMode","jsx","_jsx","InterceptingGestureDetector","gesture","children","touchAction","userSelect","enableContextMenu","virtualChildren","setVirtualChildren","Set","strippedVirtualChildren","OS","Array","from","map","child","viewTag","handlerTags","viewRef","mode","setMode","config","shouldUseReanimatedDetector","REANIMATED","dispatchesAnimatedEvents","ANIMATED","DEFAULT","NativeDetectorComponent","register","prev","newSet","add","unregister","delete","contextValue","newMode","Error","createGestureEventHandler","key","e","detectorCallbacks","forEach","method","methods","getHandlers","handlers","push","handler","reanimatedEvents","reanimatedEventHandler","useComposedEventHandler","handlerTag","reanimatedHandlers","onGestureHandlerReanimatedEvent","onGestureHandlerReanimatedStateChange","onGestureHandlerReanimatedTouchEvent","jsEventHandler","value","pointerEvents","onGestureHandlerStateChange","onGestureHandlerEvent","onGestureHandlerTouchEvent","onGestureHandlerAnimatedEvent","animatedEventHandler","undefined","style","detector","moduleId","globalThis","_RNGH_MODULE_ID"],"sourceRoot":"../../../../../src","sources":["v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
import { useCallback, useEffect, useRef, useState } from 'react';
|
|
4
|
-
import { Wrap } from '../../../handlers/gestures/GestureDetector/Wrap';
|
|
5
4
|
import { findNodeHandle, Platform } from 'react-native';
|
|
6
|
-
import {
|
|
5
|
+
import { Wrap } from '../../../handlers/gestures/GestureDetector/Wrap';
|
|
6
|
+
import { tagMessage } from '../../../utils';
|
|
7
7
|
import { isComposedGesture } from '../../hooks/utils/relationUtils';
|
|
8
8
|
import { configureRelations } from '../utils';
|
|
9
|
-
import {
|
|
9
|
+
import { InterceptingDetectorMode, useInterceptingDetectorContext } from './useInterceptingDetectorContext';
|
|
10
10
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
11
11
|
function useRequiredInterceptingDetectorContext() {
|
|
12
12
|
const context = useInterceptingDetectorContext();
|
|
@@ -54,13 +54,16 @@ export function VirtualDetector(props) {
|
|
|
54
54
|
handlerTags,
|
|
55
55
|
methods: props.gesture.detectorCallbacks,
|
|
56
56
|
// used by HostGestureDetector on web
|
|
57
|
-
viewRef: Platform.OS === 'web' ? viewRef : undefined
|
|
57
|
+
viewRef: Platform.OS === 'web' ? viewRef : undefined,
|
|
58
|
+
userSelect: props.userSelect,
|
|
59
|
+
touchAction: props.touchAction,
|
|
60
|
+
enableContextMenu: props.enableContextMenu
|
|
58
61
|
};
|
|
59
62
|
register(virtualChild);
|
|
60
63
|
return () => {
|
|
61
64
|
unregister(virtualChild);
|
|
62
65
|
};
|
|
63
|
-
}, [viewTag, props.gesture, register, unregister, setMode]);
|
|
66
|
+
}, [viewTag, props.gesture, props.userSelect, props.touchAction, props.enableContextMenu, register, unregister, setMode]);
|
|
64
67
|
configureRelations(props.gesture);
|
|
65
68
|
return /*#__PURE__*/_jsx(Wrap, {
|
|
66
69
|
ref: handleRef,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["useCallback","useEffect","useRef","useState","
|
|
1
|
+
{"version":3,"names":["useCallback","useEffect","useRef","useState","findNodeHandle","Platform","Wrap","tagMessage","isComposedGesture","configureRelations","InterceptingDetectorMode","useInterceptingDetectorContext","jsx","_jsx","useRequiredInterceptingDetectorContext","context","Error","VirtualDetector","props","register","unregister","setMode","viewRef","viewTag","setViewTag","handleRef","node","current","tag","OS","children","handlerTags","gesture","handlerTag","config","dispatchesAnimatedEvents","shouldUseReanimatedDetector","REANIMATED","virtualChild","methods","detectorCallbacks","undefined","userSelect","touchAction","enableContextMenu","ref"],"sourceRoot":"../../../../../src","sources":["v3/detectors/VirtualDetector/VirtualDetector.tsx"],"mappings":";;AAAA,SAASA,WAAW,EAAEC,SAAS,EAAEC,MAAM,EAAEC,QAAQ,QAAQ,OAAO;AAChE,SAASC,cAAc,EAAEC,QAAQ,QAAQ,cAAc;AAEvD,SAASC,IAAI,QAAQ,iDAAiD;AACtE,SAASC,UAAU,QAAQ,gBAAgB;AAC3C,SAASC,iBAAiB,QAAQ,iCAAiC;AAGnE,SAASC,kBAAkB,QAAQ,UAAU;AAC7C,SACEC,wBAAwB,EACxBC,8BAA8B,QACzB,kCAAkC;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAE1C,SAASC,sCAAsCA,CAAA,EAAG;EAChD,MAAMC,OAAO,GAAGJ,8BAA8B,CAAC,CAAC;EAChD,IAAI,CAACI,OAAO,EAAE;IACZ,MAAM,IAAIC,KAAK,CACbT,UAAU,CACR,+EACF,CACF,CAAC;EACH;EACA,OAAOQ,OAAO;AAChB;AAEA,OAAO,SAASE,eAAeA,CAI7BC,KAAwE,EAAE;EAC1E;EACA;EACA,aAAa;;EAEb,MAAM;IAAEC,QAAQ;IAAEC,UAAU;IAAEC;EAAQ,CAAC,GACrCP,sCAAsC,CAAC,CAAC;EAE1C,MAAMQ,OAAO,GAAGpB,MAAM,CAAC,IAAI,CAAC;EAC5B,MAAM,CAACqB,OAAO,EAAEC,UAAU,CAAC,GAAGrB,QAAQ,CAAS,CAAC,CAAC,CAAC;EAElD,MAAMsB,SAAS,GAAGzB,WAAW,CAC1B0B,IAAS,IAAK;IACbJ,OAAO,CAACK,OAAO,GAAGD,IAAI;IACtB,IAAIA,IAAI,EAAE;MACR,MAAME,GAAW,GAAGvB,QAAQ,CAACwB,EAAE,KAAK,KAAK,GAAGH,IAAI,GAAGtB,cAAc,CAACsB,IAAI,CAAC;MACvEF,UAAU,CAACI,GAAG,IAAI,CAAC,CAAC,CAAC;IACvB,CAAC,MAAM;MACLJ,UAAU,CAAC,CAAC,CAAC,CAAC;IAChB;EACF,CAAC;EACD;EACA;EACA,CAACN,KAAK,CAACY,QAAQ,CACjB,CAAC;EAED7B,SAAS,CAAC,MAAM;IACd,IAAIsB,OAAO,KAAK,CAAC,CAAC,EAAE;MAClB;IACF;IAEA,MAAMQ,WAAW,GAAGvB,iBAAiB,CAACU,KAAK,CAACc,OAAO,CAAC,GAChDd,KAAK,CAACc,OAAO,CAACD,WAAW,GACzB,CAACb,KAAK,CAACc,OAAO,CAACC,UAAU,CAAC;IAE9B,IAAIf,KAAK,CAACc,OAAO,CAACE,MAAM,CAACC,wBAAwB,EAAE;MACjD,MAAM,IAAInB,KAAK,CACbT,UAAU,CACR,wLACF,CACF,CAAC;IACH,CAAC,MAAM,IAAIW,KAAK,CAACc,OAAO,CAACE,MAAM,CAACE,2BAA2B,EAAE;MAC3Df,OAAO,CAACX,wBAAwB,CAAC2B,UAAU,CAAC;IAC9C;IAEA,MAAMC,YAA0B,GAAG;MACjCf,OAAO;MACPQ,WAAW;MACXQ,OAAO,EAAErB,KAAK,CAACc,OAAO,CAACQ,iBAGtB;MACD;MACAlB,OAAO,EAAEjB,QAAQ,CAACwB,EAAE,KAAK,KAAK,GAAGP,OAAO,GAAGmB,SAAS;MACpDC,UAAU,EAAExB,KAAK,CAACwB,UAAU;MAC5BC,WAAW,EAAEzB,KAAK,CAACyB,WAAW;MAC9BC,iBAAiB,EAAE1B,KAAK,CAAC0B;IAC3B,CAAC;IACDzB,QAAQ,CAACmB,YAAY,CAAC;IACtB,OAAO,MAAM;MACXlB,UAAU,CAACkB,YAAY,CAAC;IAC1B,CAAC;EACH,CAAC,EAAE,CACDf,OAAO,EACPL,KAAK,CAACc,OAAO,EACbd,KAAK,CAACwB,UAAU,EAChBxB,KAAK,CAACyB,WAAW,EACjBzB,KAAK,CAAC0B,iBAAiB,EACvBzB,QAAQ,EACRC,UAAU,EACVC,OAAO,CACR,CAAC;EAEFZ,kBAAkB,CAACS,KAAK,CAACc,OAAO,CAAC;EAEjC,oBAAOnB,IAAA,CAACP,IAAI;IAACuC,GAAG,EAAEpB,SAAU;IAAAK,QAAA,EAAEZ,KAAK,CAACY;EAAQ,CAAO,CAAC;AACtD","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["createContext","use","InterceptingDetectorMode","InterceptingDetectorContext","useInterceptingDetectorContext"],"sourceRoot":"../../../../../src","sources":["v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts"],"mappings":";;AAAA,SAASA,aAAa,EAAEC,GAAG,QAAQ,OAAO;
|
|
1
|
+
{"version":3,"names":["createContext","use","InterceptingDetectorMode","InterceptingDetectorContext","useInterceptingDetectorContext"],"sourceRoot":"../../../../../src","sources":["v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts"],"mappings":";;AAAA,SAASA,aAAa,EAAEC,GAAG,QAAQ,OAAO;AAI1C,WAAYC,wBAAwB,0BAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAA,OAAxBA,wBAAwB;AAAA;AAapC,OAAO,MAAMC,2BAA2B,gBACtCH,aAAa,CAA0C,IAAI,CAAC;AAE9D,OAAO,SAASI,8BAA8BA,CAAA,EAAG;EAC/C,OAAOH,GAAG,CAACE,2BAA2B,CAAC;AACzC","ignoreList":[]}
|
|
@@ -8,9 +8,6 @@ export let GestureDetectorType = /*#__PURE__*/function (GestureDetectorType) {
|
|
|
8
8
|
GestureDetectorType[GestureDetectorType["Intercepting"] = 2] = "Intercepting";
|
|
9
9
|
return GestureDetectorType;
|
|
10
10
|
}({});
|
|
11
|
-
|
|
12
|
-
// TODO: Handle CommonGestureDetectorProps inside VirtualGestureDetector
|
|
13
|
-
|
|
14
11
|
export const AnimatedNativeDetector = Animated.createAnimatedComponent(HostGestureDetector);
|
|
15
12
|
export const nativeDetectorStyles = StyleSheet.create({
|
|
16
13
|
detector: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Animated","StyleSheet","HostGestureDetector","GestureDetectorType","AnimatedNativeDetector","createAnimatedComponent","nativeDetectorStyles","create","detector","display"],"sourceRoot":"../../../../src","sources":["v3/detectors/common.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"names":["Animated","StyleSheet","HostGestureDetector","GestureDetectorType","AnimatedNativeDetector","createAnimatedComponent","nativeDetectorStyles","create","detector","display"],"sourceRoot":"../../../../src","sources":["v3/detectors/common.ts"],"mappings":";;AACA,SAASA,QAAQ,EAAEC,UAAU,QAAQ,cAAc;AAQnD,OAAOC,mBAAmB,MAAM,uBAAuB;AAEvD,WAAYC,mBAAmB,0BAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAA,OAAnBA,mBAAmB;AAAA;AAkD/B,OAAO,MAAMC,sBAAsB,GACjCJ,QAAQ,CAACK,uBAAuB,CAACH,mBAAmB,CAAC;AAEvD,OAAO,MAAMI,oBAAoB,GAAGL,UAAU,CAACM,MAAM,CAAC;EACpDC,QAAQ,EAAE;IACRC,OAAO,EAAE;EACX;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
export { GestureDetectorType } from './common';
|
|
4
4
|
export { GestureDetector } from './GestureDetector';
|
|
5
|
-
export { VirtualDetector as VirtualGestureDetector } from './VirtualDetector/VirtualDetector';
|
|
6
5
|
export { InterceptingGestureDetector } from './VirtualDetector/InterceptingGestureDetector';
|
|
6
|
+
export { VirtualDetector as VirtualGestureDetector } from './VirtualDetector/VirtualDetector';
|
|
7
7
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["GestureDetectorType","GestureDetector","
|
|
1
|
+
{"version":3,"names":["GestureDetectorType","GestureDetector","InterceptingGestureDetector","VirtualDetector","VirtualGestureDetector"],"sourceRoot":"../../../../src","sources":["v3/detectors/index.ts"],"mappings":";;AACA,SAASA,mBAAmB,QAAQ,UAAU;AAC9C,SAASC,eAAe,QAAQ,mBAAmB;AACnD,SAASC,2BAA2B,QAAQ,+CAA+C;AAC3F,SAASC,eAAe,IAAIC,sBAAsB,QAAQ,mCAAmC","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["use","Platform","GestureHandlerRootViewContext","useEnsureGestureHandlerRootView","rootViewContext","__DEV__","OS","Error"],"sourceRoot":"../../../../src","sources":["v3/detectors/useEnsureGestureHandlerRootView.ts"],"mappings":";;AAAA,SAASA,GAAG,QAAQ,OAAO;AAC3B,SAASC,QAAQ,QAAQ,cAAc;
|
|
1
|
+
{"version":3,"names":["use","Platform","GestureHandlerRootViewContext","useEnsureGestureHandlerRootView","rootViewContext","__DEV__","OS","Error"],"sourceRoot":"../../../../src","sources":["v3/detectors/useEnsureGestureHandlerRootView.ts"],"mappings":";;AAAA,SAASA,GAAG,QAAQ,OAAO;AAC3B,SAASC,QAAQ,QAAQ,cAAc;AAEvC,OAAOC,6BAA6B,MAAM,qCAAqC;AAE/E,OAAO,SAASC,+BAA+BA,CAAA,EAAG;EAChD,MAAMC,eAAe,GAAGJ,GAAG,CAACE,6BAA6B,CAAC;EAE1D,IAAIG,OAAO,IAAI,CAACD,eAAe,IAAIH,QAAQ,CAACK,EAAE,KAAK,KAAK,EAAE;IACxD,MAAM,IAAIC,KAAK,CACb,qOACF,CAAC;EACH;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["tagMessage","isComposedGesture","prepareRelations","NativeProxy","ComposedGestureName","traverseAndConfigureRelations","node","simultaneousHandlers","waitFor","gestureRelations","config","handlerTag","push","configureRelations","blocksHandlers","gestures","forEach","child","type","Simultaneous","handlerTags","add","delete","length","Exclusive","hasRemovedTag","gesture","Set","externalSimultaneousHandlers","ensureNativeDetectorComponent","NativeDetectorComponent","Error","EMPTY_SET"],"sourceRoot":"../../../../src","sources":["v3/detectors/utils.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;;AAEA,SAASA,UAAU,QAAQ,aAAa;AACxC,SACEC,iBAAiB,EACjBC,gBAAgB,QACX,8BAA8B;AACrC,SAASC,WAAW,QAAQ,gBAAgB;
|
|
1
|
+
{"version":3,"names":["tagMessage","isComposedGesture","prepareRelations","NativeProxy","ComposedGestureName","traverseAndConfigureRelations","node","simultaneousHandlers","waitFor","gestureRelations","config","handlerTag","push","configureRelations","blocksHandlers","gestures","forEach","child","type","Simultaneous","handlerTags","add","delete","length","Exclusive","hasRemovedTag","gesture","Set","externalSimultaneousHandlers","ensureNativeDetectorComponent","NativeDetectorComponent","Error","EMPTY_SET"],"sourceRoot":"../../../../src","sources":["v3/detectors/utils.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["State","tagMessage","setGestureState","handlerTag","state","globalThis","_setGestureStateSync","_setGestureStateAsync","Error","GestureStateManager","
|
|
1
|
+
{"version":3,"names":["State","tagMessage","setGestureState","handlerTag","state","globalThis","_setGestureStateSync","_setGestureStateAsync","Error","GestureStateManager","activate","ACTIVE","fail","FAILED","deactivate","END"],"sourceRoot":"../../../src","sources":["v3/gestureStateManager.ts"],"mappings":";;AAAA,SAASA,KAAK,QAAQ,UAAU;AAChC,SAASC,UAAU,QAAQ,UAAU;AAQrC,MAAMC,eAAe,GAAGA,CAACC,UAAkB,EAAEC,KAAY,KAAK;EAC5D,SAAS;;EAET,IAAIC,UAAU,CAACC,oBAAoB,EAAE;IACnCD,UAAU,CAACC,oBAAoB,CAACH,UAAU,EAAEC,KAAK,CAAC;EACpD,CAAC,MAAM,IAAIC,UAAU,CAACE,qBAAqB,EAAE;IAC3CF,UAAU,CAACE,qBAAqB,CAACJ,UAAU,EAAEC,KAAK,CAAC;EACrD,CAAC,MAAM;IACL,MAAM,IAAII,KAAK,CAACP,UAAU,CAAC,6BAA6B,CAAC,CAAC;EAC5D;AACF,CAAC;AAED,OAAO,MAAMQ,mBAA4C,GAAG;EAC1DC,QAAQA,CAACP,UAAkB,EAAE;IAC3B,SAAS;;IACTD,eAAe,CAACC,UAAU,EAAEH,KAAK,CAACW,MAAM,CAAC;EAC3C,CAAC;EAEDC,IAAIA,CAACT,UAAkB,EAAE;IACvB,SAAS;;IACTD,eAAe,CAACC,UAAU,EAAEH,KAAK,CAACa,MAAM,CAAC;EAC3C,CAAC;EAEDC,UAAUA,CAACX,UAAkB,EAAE;IAC7B,SAAS;;IACTD,eAAe,CAACC,UAAU,EAAEH,KAAK,CAACe,GAAG,CAAC;EACxC;AACF,CAAC","ignoreList":[]}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import { State } from '../State';
|
|
4
3
|
import { tagMessage } from '../utils';
|
|
5
4
|
import GestureHandlerOrchestrator from '../web/tools/GestureHandlerOrchestrator';
|
|
6
5
|
import NodeManager from '../web/tools/NodeManager';
|
|
@@ -10,24 +9,11 @@ function ensureHandlerAttached(handler) {
|
|
|
10
9
|
}
|
|
11
10
|
}
|
|
12
11
|
export const GestureStateManager = {
|
|
13
|
-
begin(handlerTag) {
|
|
14
|
-
'worklet';
|
|
15
|
-
|
|
16
|
-
const handler = NodeManager.getHandler(handlerTag);
|
|
17
|
-
ensureHandlerAttached(handler);
|
|
18
|
-
GestureHandlerOrchestrator.instance.recordHandlerIfNotPresent(handler);
|
|
19
|
-
handler.begin();
|
|
20
|
-
},
|
|
21
12
|
activate(handlerTag) {
|
|
22
13
|
'worklet';
|
|
23
14
|
|
|
24
15
|
const handler = NodeManager.getHandler(handlerTag);
|
|
25
16
|
ensureHandlerAttached(handler);
|
|
26
|
-
// Force going from UNDETERMINED to ACTIVE through BEGAN to preserve
|
|
27
|
-
// the correct state transition flow.
|
|
28
|
-
if (handler.state === State.UNDETERMINED) {
|
|
29
|
-
handler.begin();
|
|
30
|
-
}
|
|
31
17
|
GestureHandlerOrchestrator.instance.recordHandlerIfNotPresent(handler);
|
|
32
18
|
handler.activate(true);
|
|
33
19
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["tagMessage","GestureHandlerOrchestrator","NodeManager","ensureHandlerAttached","handler","attached","Error","GestureStateManager","activate","handlerTag","getHandler","instance","recordHandlerIfNotPresent","fail","deactivate","end"],"sourceRoot":"../../../src","sources":["v3/gestureStateManager.web.ts"],"mappings":";;AAAA,SAASA,UAAU,QAAQ,UAAU;AAErC,OAAOC,0BAA0B,MAAM,yCAAyC;AAChF,OAAOC,WAAW,MAAM,0BAA0B;AAGlD,SAASC,qBAAqBA,CAACC,OAAwB,EAAE;EACvD,IAAI,CAACA,OAAO,CAACC,QAAQ,EAAE;IACrB,MAAM,IAAIC,KAAK,CACbN,UAAU,CACR,gEACF,CACF,CAAC;EACH;AACF;AAEA,OAAO,MAAMO,mBAA4C,GAAG;EAC1DC,QAAQA,CAACC,UAAkB,EAAQ;IACjC,SAAS;;IACT,MAAML,OAAO,GAAGF,WAAW,CAACQ,UAAU,CAACD,UAAU,CAAC;IAClDN,qBAAqB,CAACC,OAAO,CAAC;IAE9BH,0BAA0B,CAACU,QAAQ,CAACC,yBAAyB,CAACR,OAAO,CAAC;IACtEA,OAAO,CAACI,QAAQ,CAAC,IAAI,CAAC;EACxB,CAAC;EAEDK,IAAIA,CAACJ,UAAkB,EAAQ;IAC7B,SAAS;;IACT,MAAML,OAAO,GAAGF,WAAW,CAACQ,UAAU,CAACD,UAAU,CAAC;IAClDN,qBAAqB,CAACC,OAAO,CAAC;IAE9BA,OAAO,CAACS,IAAI,CAAC,CAAC;EAChB,CAAC;EAEDC,UAAUA,CAACL,UAAkB,EAAQ;IACnC,SAAS;;IACT,MAAML,OAAO,GAAGF,WAAW,CAACQ,UAAU,CAACD,UAAU,CAAC;IAClDN,qBAAqB,CAACC,OAAO,CAAC;IAE9BA,OAAO,CAACW,GAAG,CAAC,CAAC;EACf;AACF,CAAC","ignoreList":[]}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import { flattenAndFilterEvent, isEventForHandlerWithTag, maybeExtractNativeEvent, runCallback, touchEventTypeToCallbackType } from '../utils';
|
|
4
|
-
import { tagMessage } from '../../../utils';
|
|
5
3
|
import { CALLBACK_TYPE } from '../../../handlers/gestures/gesture';
|
|
6
4
|
import { State } from '../../../State';
|
|
7
5
|
import { TouchEventType } from '../../../TouchEventType';
|
|
8
|
-
|
|
6
|
+
import { tagMessage } from '../../../utils';
|
|
7
|
+
import { flattenAndFilterEvent, isEventForHandlerWithTag, maybeExtractNativeEvent, runCallback, touchEventTypeToCallbackType } from '../utils';
|
|
8
|
+
import { isStateChangeEvent, isTouchEvent } from '../utils/eventUtils';
|
|
9
|
+
function handleStateChangeEvent(eventWithData, callbacks, context, fillInDefaultValues) {
|
|
9
10
|
'worklet';
|
|
10
11
|
|
|
11
12
|
const {
|
|
@@ -16,20 +17,19 @@ function handleStateChangeEvent(eventWithData, callbacks, context) {
|
|
|
16
17
|
if (oldState === State.UNDETERMINED && state === State.BEGAN) {
|
|
17
18
|
runCallback(CALLBACK_TYPE.BEGAN, callbacks, event);
|
|
18
19
|
} else if ((oldState === State.BEGAN || oldState === State.UNDETERMINED) && state === State.ACTIVE) {
|
|
20
|
+
fillInDefaultValues?.(event);
|
|
19
21
|
runCallback(CALLBACK_TYPE.START, callbacks, event);
|
|
20
|
-
} else if (oldState !== state && state === State.END) {
|
|
22
|
+
} else if (oldState !== state && (state === State.END || state === State.FAILED || state === State.CANCELLED)) {
|
|
23
|
+
const canceled = state === State.FAILED || state === State.CANCELLED;
|
|
24
|
+
const endEvent = {
|
|
25
|
+
...event,
|
|
26
|
+
canceled
|
|
27
|
+
};
|
|
21
28
|
if (oldState === State.ACTIVE) {
|
|
22
|
-
|
|
29
|
+
fillInDefaultValues?.(endEvent);
|
|
30
|
+
runCallback(CALLBACK_TYPE.END, callbacks, endEvent);
|
|
23
31
|
}
|
|
24
|
-
runCallback(CALLBACK_TYPE.FINALIZE, callbacks,
|
|
25
|
-
if (context) {
|
|
26
|
-
context.lastUpdateEvent = undefined;
|
|
27
|
-
}
|
|
28
|
-
} else if ((state === State.FAILED || state === State.CANCELLED) && state !== oldState) {
|
|
29
|
-
if (oldState === State.ACTIVE) {
|
|
30
|
-
runCallback(CALLBACK_TYPE.END, callbacks, event, false);
|
|
31
|
-
}
|
|
32
|
-
runCallback(CALLBACK_TYPE.FINALIZE, callbacks, event, false);
|
|
32
|
+
runCallback(CALLBACK_TYPE.FINALIZE, callbacks, endEvent);
|
|
33
33
|
if (context) {
|
|
34
34
|
context.lastUpdateEvent = undefined;
|
|
35
35
|
}
|
|
@@ -56,18 +56,22 @@ export function handleTouchEvent(event, handlers) {
|
|
|
56
56
|
runCallback(touchEventTypeToCallbackType(event.eventType), handlers, event);
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
export function eventHandler(handlerTag, sourceEvent, handlers, changeEventCalculator, jsContext, dispatchesAnimatedEvents) {
|
|
59
|
+
export function eventHandler(handlerTag, sourceEvent, handlers, changeEventCalculator, jsContext, dispatchesAnimatedEvents, fillInDefaultValues) {
|
|
60
60
|
'worklet';
|
|
61
61
|
|
|
62
62
|
const eventWithData = maybeExtractNativeEvent(sourceEvent);
|
|
63
63
|
if (!isEventForHandlerWithTag(handlerTag, eventWithData)) {
|
|
64
64
|
return;
|
|
65
65
|
}
|
|
66
|
-
if (
|
|
67
|
-
handleStateChangeEvent(eventWithData, handlers, jsContext);
|
|
68
|
-
|
|
66
|
+
if (isStateChangeEvent(eventWithData)) {
|
|
67
|
+
handleStateChangeEvent(eventWithData, handlers, jsContext, fillInDefaultValues);
|
|
68
|
+
return;
|
|
69
|
+
}
|
|
70
|
+
if (isTouchEvent(eventWithData)) {
|
|
69
71
|
handleTouchEvent(eventWithData, handlers);
|
|
70
|
-
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
if (!dispatchesAnimatedEvents) {
|
|
71
75
|
handleUpdateEvent(eventWithData, handlers, changeEventCalculator, jsContext);
|
|
72
76
|
}
|
|
73
77
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["CALLBACK_TYPE","State","TouchEventType","tagMessage","flattenAndFilterEvent","isEventForHandlerWithTag","maybeExtractNativeEvent","runCallback","touchEventTypeToCallbackType","isStateChangeEvent","isTouchEvent","handleStateChangeEvent","eventWithData","callbacks","context","fillInDefaultValues","oldState","state","event","UNDETERMINED","BEGAN","ACTIVE","START","END","FAILED","CANCELLED","canceled","endEvent","FINALIZE","lastUpdateEvent","undefined","handleUpdateEvent","handlers","changeEventCalculator","eventWithChanges","Error","UPDATE","handleTouchEvent","eventType","eventHandler","handlerTag","sourceEvent","jsContext","dispatchesAnimatedEvents"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/eventHandler.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -10,8 +10,8 @@ export function useGestureEventHandler(handlerTag, handlers, config) {
|
|
|
10
10
|
}, []);
|
|
11
11
|
return useMemo(() => {
|
|
12
12
|
return event => {
|
|
13
|
-
eventHandler(handlerTag, event, handlers, config.changeEventCalculator, jsContext, !!config.dispatchesAnimatedEvents);
|
|
13
|
+
eventHandler(handlerTag, event, handlers, config.changeEventCalculator, jsContext, !!config.dispatchesAnimatedEvents, config.fillInDefaultValues);
|
|
14
14
|
};
|
|
15
|
-
}, [handlerTag, handlers, config.changeEventCalculator, config.dispatchesAnimatedEvents, jsContext]);
|
|
15
|
+
}, [handlerTag, handlers, config.changeEventCalculator, config.dispatchesAnimatedEvents, config.fillInDefaultValues, jsContext]);
|
|
16
16
|
}
|
|
17
17
|
//# sourceMappingURL=useGestureEventHandler.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["useMemo","eventHandler","useGestureEventHandler","handlerTag","handlers","config","jsContext","lastUpdateEvent","undefined","event","changeEventCalculator","dispatchesAnimatedEvents"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/useGestureEventHandler.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"names":["useMemo","eventHandler","useGestureEventHandler","handlerTag","handlers","config","jsContext","lastUpdateEvent","undefined","event","changeEventCalculator","dispatchesAnimatedEvents","fillInDefaultValues"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/useGestureEventHandler.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,OAAO;AAQ/B,SAASC,YAAY,QAAQ,gBAAgB;AAE7C,OAAO,SAASC,sBAAsBA,CAKpCC,UAAkB,EAClBC,QAA8D,EAC9DC,MAAsE,EACtE;EACA,MAAMC,SAAkD,GAAGN,OAAO,CAAC,MAAM;IACvE,OAAO;MACLO,eAAe,EAAEC;IACnB,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN,OAAOR,OAAO,CAAC,MAAM;IACnB,OACES,KAGC,IACE;MACHR,YAAY,CACVE,UAAU,EACVM,KAAK,EACLL,QAAQ,EACRC,MAAM,CAACK,qBAAqB,EAC5BJ,SAAS,EACT,CAAC,CAACD,MAAM,CAACM,wBAAwB,EACjCN,MAAM,CAACO,mBACT,CAAC;IACH,CAAC;EACH,CAAC,EAAE,CACDT,UAAU,EACVC,QAAQ,EACRC,MAAM,CAACK,qBAAqB,EAC5BL,MAAM,CAACM,wBAAwB,EAC/BN,MAAM,CAACO,mBAAmB,EAC1BN,SAAS,CACV,CAAC;AACJ","ignoreList":[]}
|
|
@@ -8,7 +8,7 @@ const workletNOOP = () => {
|
|
|
8
8
|
|
|
9
9
|
// no-op
|
|
10
10
|
};
|
|
11
|
-
export function useReanimatedEventHandler(handlerTag, handlers, reanimatedHandler, changeEventCalculator) {
|
|
11
|
+
export function useReanimatedEventHandler(handlerTag, handlers, reanimatedHandler, changeEventCalculator, fillInDefaultValues) {
|
|
12
12
|
const workletizedHandlers = useMemo(() => {
|
|
13
13
|
// We don't want to call hooks conditionally, `useEvent` will be always called.
|
|
14
14
|
// The only difference is whether we will send events to Reanimated or not.
|
|
@@ -27,7 +27,7 @@ export function useReanimatedEventHandler(handlerTag, handlers, reanimatedHandle
|
|
|
27
27
|
|
|
28
28
|
eventHandler(handlerTag, event, workletizedHandlers, changeEventCalculator,
|
|
29
29
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion, @typescript-eslint/no-non-null-asserted-optional-chain
|
|
30
|
-
reanimatedHandler?.context, false);
|
|
30
|
+
reanimatedHandler?.context, false, fillInDefaultValues);
|
|
31
31
|
};
|
|
32
32
|
const reanimatedEvent = Reanimated?.useEvent(callback, ['onGestureHandlerReanimatedEvent', 'onGestureHandlerReanimatedStateChange', 'onGestureHandlerReanimatedTouchEvent'], !!reanimatedHandler?.doDependenciesDiffer);
|
|
33
33
|
return reanimatedEvent;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["useMemo","Reanimated","eventHandler","workletNOOP","useReanimatedEventHandler","handlerTag","handlers","reanimatedHandler","changeEventCalculator","workletizedHandlers","isWorkletFunction","onUpdate","callback","event","context","reanimatedEvent","useEvent","doDependenciesDiffer"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/useReanimatedEventHandler.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,OAAO;
|
|
1
|
+
{"version":3,"names":["useMemo","Reanimated","eventHandler","workletNOOP","useReanimatedEventHandler","handlerTag","handlers","reanimatedHandler","changeEventCalculator","fillInDefaultValues","workletizedHandlers","isWorkletFunction","onUpdate","callback","event","context","reanimatedEvent","useEvent","doDependenciesDiffer"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/useReanimatedEventHandler.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,OAAO;AAG/B,SAASC,UAAU,QAAQ,8CAA8C;AAOzE,SAASC,YAAY,QAAQ,gBAAgB;AAE7C,MAAMC,WAAW,GAAGA,CAAA,KAAM;EACxB,SAAS;;EACT;AACF,CAAC;AAED,OAAO,SAASC,yBAAyBA,CAIvCC,UAAkB,EAClBC,QAA8D,EAC9DC,iBAAsE,EACtEC,qBAA6E,EAC7EC,mBAAyE,EACzE;EACA,MAAMC,mBAAmB,GAAGV,OAAO,CAAC,MAAM;IACxC;IACA;IACA;IACA;IACA,IAAI,CAACC,UAAU,EAAEU,iBAAiB,CAACL,QAAQ,CAACM,QAAQ,CAAC,EAAE;MACrD,OAAO;QACL,GAAGN,QAAQ;QACXM,QAAQ,EAAET;MACZ,CAAC;IACH;IAEA,OAAOG,QAAQ;EACjB,CAAC,EAAE,CAACA,QAAQ,CAAC,CAAC;EAEd,MAAMO,QAAQ,GACZC,KAGC,IACE;IACH,SAAS;;IACTZ,YAAY,CACVG,UAAU,EACVS,KAAK,EACLJ,mBAAmB,EACnBF,qBAAqB;IACrB;IACAD,iBAAiB,EAAEQ,OAAO,EAC1B,KAAK,EACLN,mBACF,CAAC;EACH,CAAC;EAED,MAAMO,eAAe,GAAGf,UAAU,EAAEgB,QAAQ,CAC1CJ,QAAQ,EACR,CACE,iCAAiC,EACjC,uCAAuC,EACvC,sCAAsC,CACvC,EACD,CAAC,CAACN,iBAAiB,EAAEW,oBACvB,CAAC;EAED,OAAOF,eAAe;AACxB","ignoreList":[]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
export { useSimultaneousGestures } from './useSimultaneousGestures';
|
|
4
|
-
export { useExclusiveGestures } from './useExclusiveGestures';
|
|
5
3
|
export { useCompetingGestures } from './useCompetingGestures';
|
|
4
|
+
export { useExclusiveGestures } from './useExclusiveGestures';
|
|
5
|
+
export { useSimultaneousGestures } from './useSimultaneousGestures';
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["useCompetingGestures","useExclusiveGestures","useSimultaneousGestures"],"sourceRoot":"../../../../../src","sources":["v3/hooks/composition/index.ts"],"mappings":";;AAAA,SAASA,oBAAoB,QAAQ,wBAAwB;AAC7D,SAASC,oBAAoB,QAAQ,wBAAwB;AAC7D,SAASC,uBAAuB,QAAQ,2BAA2B","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["ComposedGestureName","useComposedGesture","useCompetingGestures","gestures","Race"],"sourceRoot":"../../../../../src","sources":["v3/hooks/composition/useCompetingGestures.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"names":["ComposedGestureName","useComposedGesture","useCompetingGestures","gestures","Race"],"sourceRoot":"../../../../../src","sources":["v3/hooks/composition/useCompetingGestures.ts"],"mappings":";;AACA,SAASA,mBAAmB,QAAQ,aAAa;AACjD,SAASC,kBAAkB,QAAQ,sBAAsB;AAEzD,OAAO,SAASC,oBAAoBA,CAAC,GAAGC,QAAsB,EAAE;EAC9D,OAAOF,kBAAkB,CAACD,mBAAmB,CAACI,IAAI,EAAE,GAAGD,QAAQ,CAAC;AAClE","ignoreList":[]}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import { tagMessage } from '../../../utils';
|
|
4
3
|
import { Reanimated } from '../../../handlers/gestures/reanimatedWrapper';
|
|
4
|
+
import { tagMessage } from '../../../utils';
|
|
5
5
|
import { containsDuplicates, isComposedGesture } from '../utils';
|
|
6
6
|
|
|
7
7
|
// TODO: Simplify repeated relations (Simultaneous with Simultaneous, Exclusive with Exclusive, etc.)
|