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 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_HostGestureDetector","_interopRequireDefault","e","__esModule","default","GestureDetectorType","exports","AnimatedNativeDetector","Animated","createAnimatedComponent","HostGestureDetector","nativeDetectorStyles","StyleSheet","create","detector","display"],"sourceRoot":"../../../../src","sources":["v3/detectors/common.ts"],"mappings":";;;;;;AAEA,IAAAA,YAAA,GAAAC,OAAA;AACA,IAAAC,oBAAA,GAAAC,sBAAA,CAAAF,OAAA;AAAwD,SAAAE,uBAAAC,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,IAI5CG,mBAAmB,GAAAC,OAAA,CAAAD,mBAAA,0BAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAA,OAAnBA,mBAAmB;AAAA,OAuB/B;AAWO,MAAME,sBAAsB,GAAAD,OAAA,CAAAC,sBAAA,GACjCC,qBAAQ,CAACC,uBAAuB,CAACC,4BAAmB,CAAC;AAEhD,MAAMC,oBAAoB,GAAAL,OAAA,CAAAK,oBAAA,GAAGC,uBAAU,CAACC,MAAM,CAAC;EACpDC,QAAQ,EAAE;IACRC,OAAO,EAAE;EACX;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "GestureDetector", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function () {
|
|
9
|
-
return _GestureDetector.GestureDetector;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "GestureDetectorType", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function () {
|
|
15
|
-
return _common.GestureDetectorType;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
Object.defineProperty(exports, "InterceptingGestureDetector", {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function () {
|
|
21
|
-
return _InterceptingGestureDetector.InterceptingGestureDetector;
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
Object.defineProperty(exports, "VirtualGestureDetector", {
|
|
25
|
-
enumerable: true,
|
|
26
|
-
get: function () {
|
|
27
|
-
return _VirtualDetector.VirtualDetector;
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
var _common = require("./common");
|
|
31
|
-
var _GestureDetector = require("./GestureDetector");
|
|
32
|
-
var _VirtualDetector = require("./VirtualDetector/VirtualDetector");
|
|
33
|
-
var _InterceptingGestureDetector = require("./VirtualDetector/InterceptingGestureDetector");
|
|
34
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_common","require","_GestureDetector","_VirtualDetector","_InterceptingGestureDetector"],"sourceRoot":"../../../../src","sources":["v3/detectors/index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,IAAAA,OAAA,GAAAC,OAAA;AACA,IAAAC,gBAAA,GAAAD,OAAA;AACA,IAAAE,gBAAA,GAAAF,OAAA;AACA,IAAAG,4BAAA,GAAAH,OAAA","ignoreList":[]}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.useEnsureGestureHandlerRootView = useEnsureGestureHandlerRootView;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _reactNative = require("react-native");
|
|
9
|
-
var _GestureHandlerRootViewContext = _interopRequireDefault(require("../../GestureHandlerRootViewContext"));
|
|
10
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
11
|
-
function useEnsureGestureHandlerRootView() {
|
|
12
|
-
const rootViewContext = (0, _react.use)(_GestureHandlerRootViewContext.default);
|
|
13
|
-
if (__DEV__ && !rootViewContext && _reactNative.Platform.OS !== 'web') {
|
|
14
|
-
throw new Error('GestureDetector must be used as a descendant of GestureHandlerRootView. Otherwise the gestures will not be recognized. See https://docs.swmansion.com/react-native-gesture-handler/docs/fundamentals/installation for more details.');
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
//# sourceMappingURL=useEnsureGestureHandlerRootView.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_GestureHandlerRootViewContext","_interopRequireDefault","e","__esModule","default","useEnsureGestureHandlerRootView","rootViewContext","use","GestureHandlerRootViewContext","__DEV__","Platform","OS","Error"],"sourceRoot":"../../../../src","sources":["v3/detectors/useEnsureGestureHandlerRootView.ts"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,8BAAA,GAAAC,sBAAA,CAAAH,OAAA;AAAgF,SAAAG,uBAAAC,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAEzE,SAASG,+BAA+BA,CAAA,EAAG;EAChD,MAAMC,eAAe,GAAG,IAAAC,UAAG,EAACC,sCAA6B,CAAC;EAE1D,IAAIC,OAAO,IAAI,CAACH,eAAe,IAAII,qBAAQ,CAACC,EAAE,KAAK,KAAK,EAAE;IACxD,MAAM,IAAIC,KAAK,CACb,qOACF,CAAC;EACH;AACF","ignoreList":[]}
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.EMPTY_SET = void 0;
|
|
7
|
-
exports.configureRelations = configureRelations;
|
|
8
|
-
exports.ensureNativeDetectorComponent = ensureNativeDetectorComponent;
|
|
9
|
-
exports.traverseAndConfigureRelations = void 0;
|
|
10
|
-
var _utils = require("../../utils");
|
|
11
|
-
var _relationUtils = require("../hooks/utils/relationUtils");
|
|
12
|
-
var _NativeProxy = require("../NativeProxy");
|
|
13
|
-
var _types = require("../types");
|
|
14
|
-
// This piece of magic traverses the gesture tree and populates `waitFor` and `simultaneousHandlers`
|
|
15
|
-
// arrays for each gesture. It traverses the tree recursively using DFS.
|
|
16
|
-
// `waitFor` and `simultaneousHandlers` are global data structures that will be populated into each gesture.
|
|
17
|
-
// For `waitFor` we need array as order of the gestures matters.
|
|
18
|
-
// For `simultaneousHandlers` we use Set as the order doesn't matter.
|
|
19
|
-
|
|
20
|
-
// The tree consists of ComposedGestures and NativeGestures. NativeGestures are always leaf nodes.
|
|
21
|
-
const traverseAndConfigureRelations = (node, simultaneousHandlers, waitFor = []) => {
|
|
22
|
-
// If we are in the leaf node, we want to fill gesture relations arrays with current
|
|
23
|
-
// waitFor and simultaneousHandlers. We also want to configure relations on the native side.
|
|
24
|
-
if (!(0, _relationUtils.isComposedGesture)(node)) {
|
|
25
|
-
node.gestureRelations = (0, _relationUtils.prepareRelations)(node.config, node.handlerTag);
|
|
26
|
-
node.gestureRelations.simultaneousHandlers.push(...simultaneousHandlers);
|
|
27
|
-
node.gestureRelations.waitFor.push(...waitFor);
|
|
28
|
-
_NativeProxy.NativeProxy.configureRelations(node.handlerTag, {
|
|
29
|
-
waitFor: node.gestureRelations.waitFor,
|
|
30
|
-
simultaneousHandlers: node.gestureRelations.simultaneousHandlers,
|
|
31
|
-
blocksHandlers: node.gestureRelations.blocksHandlers
|
|
32
|
-
});
|
|
33
|
-
return;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
// If we are in the composed gesture, we want to traverse its children.
|
|
37
|
-
node.gestures.forEach(child => {
|
|
38
|
-
// If child is composed gesture, we have to correctly fill `waitFor` and `simultaneousHandlers`.
|
|
39
|
-
if ((0, _relationUtils.isComposedGesture)(child)) {
|
|
40
|
-
// We have to update `simultaneousHandlers` before traversing the child (going top-down).
|
|
41
|
-
// Simultaneous is an all-to-all relation - it needs to be prepared when entering the node.
|
|
42
|
-
// Exclusive is a one-to-many relation - gesture depends on the preceding ones and not on itself - it should be prepared when leaving the node (bottom-up).
|
|
43
|
-
|
|
44
|
-
// If we go from a non-simultaneous gesture to a simultaneous gesture,
|
|
45
|
-
// we add the tags of the simultaneous gesture to the `simultaneousHandlers`.
|
|
46
|
-
// This way when we traverse the child, we already have the tags of the simultaneous gestures
|
|
47
|
-
if (node.type !== _types.ComposedGestureName.Simultaneous && child.type === _types.ComposedGestureName.Simultaneous) {
|
|
48
|
-
child.handlerTags.forEach(handlerTag => simultaneousHandlers.add(handlerTag));
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
// If we go from a simultaneous gesture to a non-simultaneous gesture,
|
|
52
|
-
// we remove the tags of the child gestures from the `simultaneousHandlers`,
|
|
53
|
-
// as those are not simultaneous with each other.
|
|
54
|
-
if (node.type === _types.ComposedGestureName.Simultaneous && child.type !== _types.ComposedGestureName.Simultaneous) {
|
|
55
|
-
child.handlerTags.forEach(handlerTag => simultaneousHandlers.delete(handlerTag));
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// We will keep the current length of `waitFor` to reset it to previous state
|
|
59
|
-
// after traversing the child.
|
|
60
|
-
const length = waitFor.length;
|
|
61
|
-
|
|
62
|
-
// We traverse the child, passing the current `waitFor` and `simultaneousHandlers`.
|
|
63
|
-
traverseAndConfigureRelations(child, simultaneousHandlers, waitFor);
|
|
64
|
-
|
|
65
|
-
// After traversing the child, we need to update `waitFor` and `simultaneousHandlers`
|
|
66
|
-
|
|
67
|
-
// If we go back from a simultaneous gesture to a non-simultaneous gesture,
|
|
68
|
-
// we want to delete the tags of the simultaneous gesture from the `simultaneousHandlers` -
|
|
69
|
-
// those gestures are not simultaneous with each other anymore.
|
|
70
|
-
if (child.type === _types.ComposedGestureName.Simultaneous && node.type !== _types.ComposedGestureName.Simultaneous) {
|
|
71
|
-
node.handlerTags.forEach(handlerTag => simultaneousHandlers.delete(handlerTag));
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
// If we go back from a non-simultaneous gesture to a simultaneous gesture,
|
|
75
|
-
// we want to add the tags of the simultaneous gesture to the `simultaneousHandlers`,
|
|
76
|
-
// as those gestures are simultaneous with other children of the current node.
|
|
77
|
-
if (child.type !== _types.ComposedGestureName.Simultaneous && node.type === _types.ComposedGestureName.Simultaneous) {
|
|
78
|
-
node.handlerTags.forEach(handlerTag => simultaneousHandlers.add(handlerTag));
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
// If we go back to an exclusive gesture, we want to add the tags of the child gesture to the `waitFor` array.
|
|
82
|
-
// This will allow us to pass exclusive gesture tags to the right subtree of the current node.
|
|
83
|
-
if (node.type === _types.ComposedGestureName.Exclusive) {
|
|
84
|
-
child.handlerTags.forEach(handlerTag => waitFor.push(handlerTag));
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
// If we go back from an exclusive gesture to a non-exclusive gesture, we want to reset the `waitFor` array
|
|
88
|
-
// to the previous state, siblings of the exclusive gesture are not exclusive with it. Since we use `push` method to
|
|
89
|
-
// add tags to the `waitFor` array, we can override `length` property to reset it to the previous state.
|
|
90
|
-
if (child.type === _types.ComposedGestureName.Exclusive && node.type !== _types.ComposedGestureName.Exclusive) {
|
|
91
|
-
waitFor.length = length;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
// This means that child is a leaf node.
|
|
95
|
-
else {
|
|
96
|
-
// We don't want to mark gesture as simultaneous with itself, so we remove its tag from the set.
|
|
97
|
-
const hasRemovedTag = simultaneousHandlers.delete(child.handlerTag);
|
|
98
|
-
traverseAndConfigureRelations(child, simultaneousHandlers, waitFor);
|
|
99
|
-
if (hasRemovedTag) {
|
|
100
|
-
simultaneousHandlers.add(child.handlerTag);
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
// In the leaf node, we only care about filling `waitFor` array.
|
|
104
|
-
if (node.type === _types.ComposedGestureName.Exclusive) {
|
|
105
|
-
waitFor.push(child.handlerTag);
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
});
|
|
109
|
-
};
|
|
110
|
-
exports.traverseAndConfigureRelations = traverseAndConfigureRelations;
|
|
111
|
-
function configureRelations(gesture) {
|
|
112
|
-
if ((0, _relationUtils.isComposedGesture)(gesture)) {
|
|
113
|
-
const simultaneousHandlers = new Set(gesture.externalSimultaneousHandlers);
|
|
114
|
-
|
|
115
|
-
// If root is simultaneous, we want to add its tags to the set
|
|
116
|
-
if (gesture.type === _types.ComposedGestureName.Simultaneous) {
|
|
117
|
-
gesture.handlerTags.forEach(handlerTag => simultaneousHandlers.add(handlerTag));
|
|
118
|
-
}
|
|
119
|
-
traverseAndConfigureRelations(gesture, simultaneousHandlers);
|
|
120
|
-
} else {
|
|
121
|
-
_NativeProxy.NativeProxy.configureRelations(gesture.handlerTag, gesture.gestureRelations);
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
function ensureNativeDetectorComponent(NativeDetectorComponent) {
|
|
125
|
-
if (!NativeDetectorComponent) {
|
|
126
|
-
throw new Error((0, _utils.tagMessage)('Gesture expects to run on the UI thread, but failed to create the Reanimated NativeDetector.'));
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
const EMPTY_SET = exports.EMPTY_SET = new Set();
|
|
130
|
-
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_utils","require","_relationUtils","_NativeProxy","_types","traverseAndConfigureRelations","node","simultaneousHandlers","waitFor","isComposedGesture","gestureRelations","prepareRelations","config","handlerTag","push","NativeProxy","configureRelations","blocksHandlers","gestures","forEach","child","type","ComposedGestureName","Simultaneous","handlerTags","add","delete","length","Exclusive","hasRemovedTag","exports","gesture","Set","externalSimultaneousHandlers","ensureNativeDetectorComponent","NativeDetectorComponent","Error","tagMessage","EMPTY_SET"],"sourceRoot":"../../../../src","sources":["v3/detectors/utils.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.GestureStateManager = void 0;
|
|
7
|
-
var _State = require("../State");
|
|
8
|
-
var _utils = require("../utils");
|
|
9
|
-
const setGestureState = (handlerTag, state) => {
|
|
10
|
-
'worklet';
|
|
11
|
-
|
|
12
|
-
if (globalThis._setGestureStateSync) {
|
|
13
|
-
globalThis._setGestureStateSync(handlerTag, state);
|
|
14
|
-
} else if (globalThis._setGestureStateAsync) {
|
|
15
|
-
globalThis._setGestureStateAsync(handlerTag, state);
|
|
16
|
-
} else {
|
|
17
|
-
throw new Error((0, _utils.tagMessage)('Failed to set gesture state'));
|
|
18
|
-
}
|
|
19
|
-
};
|
|
20
|
-
const GestureStateManager = exports.GestureStateManager = {
|
|
21
|
-
begin(handlerTag) {
|
|
22
|
-
'worklet';
|
|
23
|
-
|
|
24
|
-
setGestureState(handlerTag, _State.State.BEGAN);
|
|
25
|
-
},
|
|
26
|
-
activate(handlerTag) {
|
|
27
|
-
'worklet';
|
|
28
|
-
|
|
29
|
-
setGestureState(handlerTag, _State.State.ACTIVE);
|
|
30
|
-
},
|
|
31
|
-
fail(handlerTag) {
|
|
32
|
-
'worklet';
|
|
33
|
-
|
|
34
|
-
setGestureState(handlerTag, _State.State.FAILED);
|
|
35
|
-
},
|
|
36
|
-
deactivate(handlerTag) {
|
|
37
|
-
'worklet';
|
|
38
|
-
|
|
39
|
-
setGestureState(handlerTag, _State.State.END);
|
|
40
|
-
}
|
|
41
|
-
};
|
|
42
|
-
//# sourceMappingURL=gestureStateManager.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_State","require","_utils","setGestureState","handlerTag","state","globalThis","_setGestureStateSync","_setGestureStateAsync","Error","tagMessage","GestureStateManager","exports","begin","State","BEGAN","activate","ACTIVE","fail","FAILED","deactivate","END"],"sourceRoot":"../../../src","sources":["v3/gestureStateManager.ts"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AASA,MAAME,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,CAAC,IAAAC,iBAAU,EAAC,6BAA6B,CAAC,CAAC;EAC5D;AACF,CAAC;AAEM,MAAMC,mBAA4C,GAAAC,OAAA,CAAAD,mBAAA,GAAG;EAC1DE,KAAKA,CAACT,UAAkB,EAAE;IACxB,SAAS;;IACTD,eAAe,CAACC,UAAU,EAAEU,YAAK,CAACC,KAAK,CAAC;EAC1C,CAAC;EAEDC,QAAQA,CAACZ,UAAkB,EAAE;IAC3B,SAAS;;IACTD,eAAe,CAACC,UAAU,EAAEU,YAAK,CAACG,MAAM,CAAC;EAC3C,CAAC;EAEDC,IAAIA,CAACd,UAAkB,EAAE;IACvB,SAAS;;IACTD,eAAe,CAACC,UAAU,EAAEU,YAAK,CAACK,MAAM,CAAC;EAC3C,CAAC;EAEDC,UAAUA,CAAChB,UAAkB,EAAE;IAC7B,SAAS;;IACTD,eAAe,CAACC,UAAU,EAAEU,YAAK,CAACO,GAAG,CAAC;EACxC;AACF,CAAC","ignoreList":[]}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.GestureStateManager = void 0;
|
|
7
|
-
var _State = require("../State");
|
|
8
|
-
var _utils = require("../utils");
|
|
9
|
-
var _GestureHandlerOrchestrator = _interopRequireDefault(require("../web/tools/GestureHandlerOrchestrator"));
|
|
10
|
-
var _NodeManager = _interopRequireDefault(require("../web/tools/NodeManager"));
|
|
11
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
-
function ensureHandlerAttached(handler) {
|
|
13
|
-
if (!handler.attached) {
|
|
14
|
-
throw new Error((0, _utils.tagMessage)('Manually handled gesture had not been assigned to any detector'));
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
const GestureStateManager = exports.GestureStateManager = {
|
|
18
|
-
begin(handlerTag) {
|
|
19
|
-
'worklet';
|
|
20
|
-
|
|
21
|
-
const handler = _NodeManager.default.getHandler(handlerTag);
|
|
22
|
-
ensureHandlerAttached(handler);
|
|
23
|
-
_GestureHandlerOrchestrator.default.instance.recordHandlerIfNotPresent(handler);
|
|
24
|
-
handler.begin();
|
|
25
|
-
},
|
|
26
|
-
activate(handlerTag) {
|
|
27
|
-
'worklet';
|
|
28
|
-
|
|
29
|
-
const handler = _NodeManager.default.getHandler(handlerTag);
|
|
30
|
-
ensureHandlerAttached(handler);
|
|
31
|
-
// Force going from UNDETERMINED to ACTIVE through BEGAN to preserve
|
|
32
|
-
// the correct state transition flow.
|
|
33
|
-
if (handler.state === _State.State.UNDETERMINED) {
|
|
34
|
-
handler.begin();
|
|
35
|
-
}
|
|
36
|
-
_GestureHandlerOrchestrator.default.instance.recordHandlerIfNotPresent(handler);
|
|
37
|
-
handler.activate(true);
|
|
38
|
-
},
|
|
39
|
-
fail(handlerTag) {
|
|
40
|
-
'worklet';
|
|
41
|
-
|
|
42
|
-
const handler = _NodeManager.default.getHandler(handlerTag);
|
|
43
|
-
ensureHandlerAttached(handler);
|
|
44
|
-
handler.fail();
|
|
45
|
-
},
|
|
46
|
-
deactivate(handlerTag) {
|
|
47
|
-
'worklet';
|
|
48
|
-
|
|
49
|
-
const handler = _NodeManager.default.getHandler(handlerTag);
|
|
50
|
-
ensureHandlerAttached(handler);
|
|
51
|
-
handler.end();
|
|
52
|
-
}
|
|
53
|
-
};
|
|
54
|
-
//# sourceMappingURL=gestureStateManager.web.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_State","require","_utils","_GestureHandlerOrchestrator","_interopRequireDefault","_NodeManager","e","__esModule","default","ensureHandlerAttached","handler","attached","Error","tagMessage","GestureStateManager","exports","begin","handlerTag","NodeManager","getHandler","GestureHandlerOrchestrator","instance","recordHandlerIfNotPresent","activate","state","State","UNDETERMINED","fail","deactivate","end"],"sourceRoot":"../../../src","sources":["v3/gestureStateManager.web.ts"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AAEA,IAAAE,2BAAA,GAAAC,sBAAA,CAAAH,OAAA;AACA,IAAAI,YAAA,GAAAD,sBAAA,CAAAH,OAAA;AAAmD,SAAAG,uBAAAE,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAGnD,SAASG,qBAAqBA,CAACC,OAAwB,EAAE;EACvD,IAAI,CAACA,OAAO,CAACC,QAAQ,EAAE;IACrB,MAAM,IAAIC,KAAK,CACb,IAAAC,iBAAU,EACR,gEACF,CACF,CAAC;EACH;AACF;AAEO,MAAMC,mBAA4C,GAAAC,OAAA,CAAAD,mBAAA,GAAG;EAC1DE,KAAKA,CAACC,UAAkB,EAAQ;IAC9B,SAAS;;IACT,MAAMP,OAAO,GAAGQ,oBAAW,CAACC,UAAU,CAACF,UAAU,CAAC;IAClDR,qBAAqB,CAACC,OAAO,CAAC;IAE9BU,mCAA0B,CAACC,QAAQ,CAACC,yBAAyB,CAACZ,OAAO,CAAC;IACtEA,OAAO,CAACM,KAAK,CAAC,CAAC;EACjB,CAAC;EAEDO,QAAQA,CAACN,UAAkB,EAAQ;IACjC,SAAS;;IACT,MAAMP,OAAO,GAAGQ,oBAAW,CAACC,UAAU,CAACF,UAAU,CAAC;IAClDR,qBAAqB,CAACC,OAAO,CAAC;IAC9B;IACA;IACA,IAAIA,OAAO,CAACc,KAAK,KAAKC,YAAK,CAACC,YAAY,EAAE;MACxChB,OAAO,CAACM,KAAK,CAAC,CAAC;IACjB;IAEAI,mCAA0B,CAACC,QAAQ,CAACC,yBAAyB,CAACZ,OAAO,CAAC;IACtEA,OAAO,CAACa,QAAQ,CAAC,IAAI,CAAC;EACxB,CAAC;EAEDI,IAAIA,CAACV,UAAkB,EAAQ;IAC7B,SAAS;;IACT,MAAMP,OAAO,GAAGQ,oBAAW,CAACC,UAAU,CAACF,UAAU,CAAC;IAClDR,qBAAqB,CAACC,OAAO,CAAC;IAE9BA,OAAO,CAACiB,IAAI,CAAC,CAAC;EAChB,CAAC;EAEDC,UAAUA,CAACX,UAAkB,EAAQ;IACnC,SAAS;;IACT,MAAMP,OAAO,GAAGQ,oBAAW,CAACC,UAAU,CAACF,UAAU,CAAC;IAClDR,qBAAqB,CAACC,OAAO,CAAC;IAE9BA,OAAO,CAACmB,GAAG,CAAC,CAAC;EACf;AACF,CAAC","ignoreList":[]}
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.eventHandler = eventHandler;
|
|
7
|
-
exports.handleTouchEvent = handleTouchEvent;
|
|
8
|
-
exports.handleUpdateEvent = handleUpdateEvent;
|
|
9
|
-
var _utils = require("../utils");
|
|
10
|
-
var _utils2 = require("../../../utils");
|
|
11
|
-
var _gesture = require("../../../handlers/gestures/gesture");
|
|
12
|
-
var _State = require("../../../State");
|
|
13
|
-
var _TouchEventType = require("../../../TouchEventType");
|
|
14
|
-
function handleStateChangeEvent(eventWithData, callbacks, context) {
|
|
15
|
-
'worklet';
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
oldState,
|
|
19
|
-
state
|
|
20
|
-
} = eventWithData;
|
|
21
|
-
const event = (0, _utils.flattenAndFilterEvent)(eventWithData);
|
|
22
|
-
if (oldState === _State.State.UNDETERMINED && state === _State.State.BEGAN) {
|
|
23
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.BEGAN, callbacks, event);
|
|
24
|
-
} else if ((oldState === _State.State.BEGAN || oldState === _State.State.UNDETERMINED) && state === _State.State.ACTIVE) {
|
|
25
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.START, callbacks, event);
|
|
26
|
-
} else if (oldState !== state && state === _State.State.END) {
|
|
27
|
-
if (oldState === _State.State.ACTIVE) {
|
|
28
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.END, callbacks, event, true);
|
|
29
|
-
}
|
|
30
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.FINALIZE, callbacks, event, true);
|
|
31
|
-
if (context) {
|
|
32
|
-
context.lastUpdateEvent = undefined;
|
|
33
|
-
}
|
|
34
|
-
} else if ((state === _State.State.FAILED || state === _State.State.CANCELLED) && state !== oldState) {
|
|
35
|
-
if (oldState === _State.State.ACTIVE) {
|
|
36
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.END, callbacks, event, false);
|
|
37
|
-
}
|
|
38
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.FINALIZE, callbacks, event, false);
|
|
39
|
-
if (context) {
|
|
40
|
-
context.lastUpdateEvent = undefined;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
function handleUpdateEvent(eventWithData, handlers, changeEventCalculator, context) {
|
|
45
|
-
'worklet';
|
|
46
|
-
|
|
47
|
-
const eventWithChanges = changeEventCalculator ? changeEventCalculator(eventWithData, context ? context.lastUpdateEvent : undefined) : eventWithData;
|
|
48
|
-
const event = (0, _utils.flattenAndFilterEvent)(eventWithChanges);
|
|
49
|
-
|
|
50
|
-
// This should never happen, but since we don't want to call hooks conditionally, we have to mark
|
|
51
|
-
// context as possibly undefined to make TypeScript happy.
|
|
52
|
-
if (!context) {
|
|
53
|
-
throw new Error((0, _utils2.tagMessage)('Event handler context is not defined'));
|
|
54
|
-
}
|
|
55
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.UPDATE, handlers, event);
|
|
56
|
-
context.lastUpdateEvent = eventWithData;
|
|
57
|
-
}
|
|
58
|
-
function handleTouchEvent(event, handlers) {
|
|
59
|
-
'worklet';
|
|
60
|
-
|
|
61
|
-
if (event.eventType !== _TouchEventType.TouchEventType.UNDETERMINED) {
|
|
62
|
-
(0, _utils.runCallback)((0, _utils.touchEventTypeToCallbackType)(event.eventType), handlers, event);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
function eventHandler(handlerTag, sourceEvent, handlers, changeEventCalculator, jsContext, dispatchesAnimatedEvents) {
|
|
66
|
-
'worklet';
|
|
67
|
-
|
|
68
|
-
const eventWithData = (0, _utils.maybeExtractNativeEvent)(sourceEvent);
|
|
69
|
-
if (!(0, _utils.isEventForHandlerWithTag)(handlerTag, eventWithData)) {
|
|
70
|
-
return;
|
|
71
|
-
}
|
|
72
|
-
if ('oldState' in eventWithData && eventWithData.oldState !== undefined) {
|
|
73
|
-
handleStateChangeEvent(eventWithData, handlers, jsContext);
|
|
74
|
-
} else if ('allTouches' in eventWithData) {
|
|
75
|
-
handleTouchEvent(eventWithData, handlers);
|
|
76
|
-
} else if (!dispatchesAnimatedEvents) {
|
|
77
|
-
handleUpdateEvent(eventWithData, handlers, changeEventCalculator, jsContext);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
//# sourceMappingURL=eventHandler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_utils","require","_utils2","_gesture","_State","_TouchEventType","handleStateChangeEvent","eventWithData","callbacks","context","oldState","state","event","flattenAndFilterEvent","State","UNDETERMINED","BEGAN","runCallback","CALLBACK_TYPE","ACTIVE","START","END","FINALIZE","lastUpdateEvent","undefined","FAILED","CANCELLED","handleUpdateEvent","handlers","changeEventCalculator","eventWithChanges","Error","tagMessage","UPDATE","handleTouchEvent","eventType","TouchEventType","touchEventTypeToCallbackType","eventHandler","handlerTag","sourceEvent","jsContext","dispatchesAnimatedEvents","maybeExtractNativeEvent","isEventForHandlerWithTag"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/eventHandler.ts"],"mappings":";;;;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAOA,IAAAC,OAAA,GAAAD,OAAA;AASA,IAAAE,QAAA,GAAAF,OAAA;AACA,IAAAG,MAAA,GAAAH,OAAA;AACA,IAAAI,eAAA,GAAAJ,OAAA;AAGA,SAASK,sBAAsBA,CAC7BC,aAAmE,EACnEC,SAAyC,EACzCC,OAAwC,EACxC;EACA,SAAS;;EACT,MAAM;IAAEC,QAAQ;IAAEC;EAAM,CAAC,GAAGJ,aAAa;EACzC,MAAMK,KAAK,GAAG,IAAAC,4BAAqB,EAACN,aAAa,CAAC;EAElD,IAAIG,QAAQ,KAAKI,YAAK,CAACC,YAAY,IAAIJ,KAAK,KAAKG,YAAK,CAACE,KAAK,EAAE;IAC5D,IAAAC,kBAAW,EAACC,sBAAa,CAACF,KAAK,EAAER,SAAS,EAAEI,KAAK,CAAC;EACpD,CAAC,MAAM,IACL,CAACF,QAAQ,KAAKI,YAAK,CAACE,KAAK,IAAIN,QAAQ,KAAKI,YAAK,CAACC,YAAY,KAC5DJ,KAAK,KAAKG,YAAK,CAACK,MAAM,EACtB;IACA,IAAAF,kBAAW,EAACC,sBAAa,CAACE,KAAK,EAAEZ,SAAS,EAAEI,KAAK,CAAC;EACpD,CAAC,MAAM,IAAIF,QAAQ,KAAKC,KAAK,IAAIA,KAAK,KAAKG,YAAK,CAACO,GAAG,EAAE;IACpD,IAAIX,QAAQ,KAAKI,YAAK,CAACK,MAAM,EAAE;MAC7B,IAAAF,kBAAW,EAACC,sBAAa,CAACG,GAAG,EAAEb,SAAS,EAAEI,KAAK,EAAE,IAAI,CAAC;IACxD;IACA,IAAAK,kBAAW,EAACC,sBAAa,CAACI,QAAQ,EAAEd,SAAS,EAAEI,KAAK,EAAE,IAAI,CAAC;IAE3D,IAAIH,OAAO,EAAE;MACXA,OAAO,CAACc,eAAe,GAAGC,SAAS;IACrC;EACF,CAAC,MAAM,IACL,CAACb,KAAK,KAAKG,YAAK,CAACW,MAAM,IAAId,KAAK,KAAKG,YAAK,CAACY,SAAS,KACpDf,KAAK,KAAKD,QAAQ,EAClB;IACA,IAAIA,QAAQ,KAAKI,YAAK,CAACK,MAAM,EAAE;MAC7B,IAAAF,kBAAW,EAACC,sBAAa,CAACG,GAAG,EAAEb,SAAS,EAAEI,KAAK,EAAE,KAAK,CAAC;IACzD;IACA,IAAAK,kBAAW,EAACC,sBAAa,CAACI,QAAQ,EAAEd,SAAS,EAAEI,KAAK,EAAE,KAAK,CAAC;IAE5D,IAAIH,OAAO,EAAE;MACXA,OAAO,CAACc,eAAe,GAAGC,SAAS;IACrC;EACF;AACF;AAEO,SAASG,iBAAiBA,CAC/BpB,aAA8D,EAC9DqB,QAAwC,EACxCC,qBAAqE,EACrEpB,OAAwC,EACxC;EACA,SAAS;;EACT,MAAMqB,gBAAgB,GAAGD,qBAAqB,GAC1CA,qBAAqB,CACnBtB,aAAa,EACbE,OAAO,GAAGA,OAAO,CAACc,eAAe,GAAGC,SACtC,CAAC,GACDjB,aAAa;EAEjB,MAAMK,KAAK,GAAG,IAAAC,4BAAqB,EAACiB,gBAAgB,CAAC;;EAErD;EACA;EACA,IAAI,CAACrB,OAAO,EAAE;IACZ,MAAM,IAAIsB,KAAK,CAAC,IAAAC,kBAAU,EAAC,sCAAsC,CAAC,CAAC;EACrE;EAEA,IAAAf,kBAAW,EAACC,sBAAa,CAACe,MAAM,EAAEL,QAAQ,EAAEhB,KAAK,CAAC;EAElDH,OAAO,CAACc,eAAe,GAAGhB,aAAa;AACzC;AAEO,SAAS2B,gBAAgBA,CAC9BtB,KAAwB,EACxBgB,QAAwC,EACxC;EACA,SAAS;;EAET,IAAIhB,KAAK,CAACuB,SAAS,KAAKC,8BAAc,CAACrB,YAAY,EAAE;IACnD,IAAAE,kBAAW,EAAC,IAAAoB,mCAA4B,EAACzB,KAAK,CAACuB,SAAS,CAAC,EAAEP,QAAQ,EAAEhB,KAAK,CAAC;EAC7E;AACF;AAEO,SAAS0B,YAAYA,CAC1BC,UAAkB,EAClBC,WAA6D,EAC7DZ,QAAwC,EACxCC,qBAAqE,EACrEY,SAA0C,EAC1CC,wBAAiC,EACjC;EACA,SAAS;;EACT,MAAMnC,aAAa,GAAG,IAAAoC,8BAAuB,EAACH,WAAW,CAAC;EAE1D,IAAI,CAAC,IAAAI,+BAAwB,EAACL,UAAU,EAAEhC,aAAa,CAAC,EAAE;IACxD;EACF;EAEA,IAAI,UAAU,IAAIA,aAAa,IAAIA,aAAa,CAACG,QAAQ,KAAKc,SAAS,EAAE;IACvElB,sBAAsB,CAACC,aAAa,EAAEqB,QAAQ,EAAEa,SAAS,CAAC;EAC5D,CAAC,MAAM,IAAI,YAAY,IAAIlC,aAAa,EAAE;IACxC2B,gBAAgB,CAAC3B,aAAa,EAAEqB,QAAQ,CAAC;EAC3C,CAAC,MAAM,IAAI,CAACc,wBAAwB,EAAE;IACpCf,iBAAiB,CACfpB,aAAa,EACbqB,QAAQ,EACRC,qBAAqB,EACrBY,SACF,CAAC;EACH;AACF","ignoreList":[]}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.getStateChangeHandler = getStateChangeHandler;
|
|
7
|
-
var _gesture = require("../../../handlers/gestures/gesture");
|
|
8
|
-
var _State = require("../../../State");
|
|
9
|
-
var _utils = require("../utils");
|
|
10
|
-
function getStateChangeHandler(handlerTag, callbacks, context) {
|
|
11
|
-
return sourceEvent => {
|
|
12
|
-
'worklet';
|
|
13
|
-
|
|
14
|
-
const eventWithData = (0, _utils.maybeExtractNativeEvent)(sourceEvent);
|
|
15
|
-
const event = (0, _utils.flattenAndFilterEvent)(eventWithData);
|
|
16
|
-
if (!(0, _utils.isEventForHandlerWithTag)(handlerTag, eventWithData)) {
|
|
17
|
-
return;
|
|
18
|
-
}
|
|
19
|
-
const {
|
|
20
|
-
state,
|
|
21
|
-
oldState
|
|
22
|
-
} = eventWithData;
|
|
23
|
-
if (oldState === _State.State.UNDETERMINED && state === _State.State.BEGAN) {
|
|
24
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.BEGAN, callbacks, event);
|
|
25
|
-
} else if ((oldState === _State.State.BEGAN || oldState === _State.State.UNDETERMINED) && state === _State.State.ACTIVE) {
|
|
26
|
-
// If the native recognizer skipped the BEGAN state, we still need to call the callback
|
|
27
|
-
if (oldState === _State.State.UNDETERMINED) {
|
|
28
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.BEGAN, callbacks, event);
|
|
29
|
-
}
|
|
30
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.START, callbacks, event);
|
|
31
|
-
} else if (oldState !== state && state === _State.State.END) {
|
|
32
|
-
if (oldState === _State.State.ACTIVE) {
|
|
33
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.END, callbacks, event, true);
|
|
34
|
-
}
|
|
35
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.FINALIZE, callbacks, event, true);
|
|
36
|
-
if (context) {
|
|
37
|
-
context.lastUpdateEvent = undefined;
|
|
38
|
-
}
|
|
39
|
-
} else if ((state === _State.State.FAILED || state === _State.State.CANCELLED) && state !== oldState) {
|
|
40
|
-
if (oldState === _State.State.ACTIVE) {
|
|
41
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.END, callbacks, event, false);
|
|
42
|
-
}
|
|
43
|
-
(0, _utils.runCallback)(_gesture.CALLBACK_TYPE.FINALIZE, callbacks, event, false);
|
|
44
|
-
if (context) {
|
|
45
|
-
context.lastUpdateEvent = undefined;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
//# sourceMappingURL=stateChangeHandler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_gesture","require","_State","_utils","getStateChangeHandler","handlerTag","callbacks","context","sourceEvent","eventWithData","maybeExtractNativeEvent","event","flattenAndFilterEvent","isEventForHandlerWithTag","state","oldState","State","UNDETERMINED","BEGAN","runCallback","CALLBACK_TYPE","ACTIVE","START","END","FINALIZE","lastUpdateEvent","undefined","FAILED","CANCELLED"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/stateChangeHandler.ts"],"mappings":";;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AAMA,IAAAE,MAAA,GAAAF,OAAA;AAOO,SAASG,qBAAqBA,CACnCC,UAAkB,EAClBC,SAAyC,EACzCC,OAAyC,EACzC;EACA,OAAQC,WAA0D,IAAK;IACrE,SAAS;;IAET,MAAMC,aAAa,GAAG,IAAAC,8BAAuB,EAC3CF,WACF,CAAyD;IACzD,MAAMG,KAAK,GAAG,IAAAC,4BAAqB,EAACH,aAAa,CAAC;IAElD,IAAI,CAAC,IAAAI,+BAAwB,EAACR,UAAU,EAAEI,aAAa,CAAC,EAAE;MACxD;IACF;IAEA,MAAM;MAAEK,KAAK;MAAEC;IAAS,CAAC,GAAGN,aAAa;IAEzC,IAAIM,QAAQ,KAAKC,YAAK,CAACC,YAAY,IAAIH,KAAK,KAAKE,YAAK,CAACE,KAAK,EAAE;MAC5D,IAAAC,kBAAW,EAACC,sBAAa,CAACF,KAAK,EAAEZ,SAAS,EAAEK,KAAK,CAAC;IACpD,CAAC,MAAM,IACL,CAACI,QAAQ,KAAKC,YAAK,CAACE,KAAK,IAAIH,QAAQ,KAAKC,YAAK,CAACC,YAAY,KAC5DH,KAAK,KAAKE,YAAK,CAACK,MAAM,EACtB;MACA;MACA,IAAIN,QAAQ,KAAKC,YAAK,CAACC,YAAY,EAAE;QACnC,IAAAE,kBAAW,EAACC,sBAAa,CAACF,KAAK,EAAEZ,SAAS,EAAEK,KAAK,CAAC;MACpD;MAEA,IAAAQ,kBAAW,EAACC,sBAAa,CAACE,KAAK,EAAEhB,SAAS,EAAEK,KAAK,CAAC;IACpD,CAAC,MAAM,IAAII,QAAQ,KAAKD,KAAK,IAAIA,KAAK,KAAKE,YAAK,CAACO,GAAG,EAAE;MACpD,IAAIR,QAAQ,KAAKC,YAAK,CAACK,MAAM,EAAE;QAC7B,IAAAF,kBAAW,EAACC,sBAAa,CAACG,GAAG,EAAEjB,SAAS,EAAEK,KAAK,EAAE,IAAI,CAAC;MACxD;MACA,IAAAQ,kBAAW,EAACC,sBAAa,CAACI,QAAQ,EAAElB,SAAS,EAAEK,KAAK,EAAE,IAAI,CAAC;MAE3D,IAAIJ,OAAO,EAAE;QACXA,OAAO,CAACkB,eAAe,GAAGC,SAAS;MACrC;IACF,CAAC,MAAM,IACL,CAACZ,KAAK,KAAKE,YAAK,CAACW,MAAM,IAAIb,KAAK,KAAKE,YAAK,CAACY,SAAS,KACpDd,KAAK,KAAKC,QAAQ,EAClB;MACA,IAAIA,QAAQ,KAAKC,YAAK,CAACK,MAAM,EAAE;QAC7B,IAAAF,kBAAW,EAACC,sBAAa,CAACG,GAAG,EAAEjB,SAAS,EAAEK,KAAK,EAAE,KAAK,CAAC;MACzD;MACA,IAAAQ,kBAAW,EAACC,sBAAa,CAACI,QAAQ,EAAElB,SAAS,EAAEK,KAAK,EAAE,KAAK,CAAC;MAE5D,IAAIJ,OAAO,EAAE;QACXA,OAAO,CAACkB,eAAe,GAAGC,SAAS;MACrC;IACF;EACF,CAAC;AACH","ignoreList":[]}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.getTouchEventHandler = getTouchEventHandler;
|
|
7
|
-
var _utils = require("../utils");
|
|
8
|
-
var _TouchEventType = require("../../../TouchEventType");
|
|
9
|
-
function getTouchEventHandler(handlerTag, callbacks) {
|
|
10
|
-
return sourceEvent => {
|
|
11
|
-
'worklet';
|
|
12
|
-
|
|
13
|
-
const event = (0, _utils.maybeExtractNativeEvent)(sourceEvent);
|
|
14
|
-
if (!(0, _utils.isEventForHandlerWithTag)(handlerTag, event)) {
|
|
15
|
-
return;
|
|
16
|
-
}
|
|
17
|
-
if (event.eventType !== _TouchEventType.TouchEventType.UNDETERMINED) {
|
|
18
|
-
(0, _utils.runCallback)((0, _utils.touchEventTypeToCallbackType)(event.eventType), callbacks, event);
|
|
19
|
-
}
|
|
20
|
-
};
|
|
21
|
-
}
|
|
22
|
-
//# sourceMappingURL=touchEventHandler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_utils","require","_TouchEventType","getTouchEventHandler","handlerTag","callbacks","sourceEvent","event","maybeExtractNativeEvent","isEventForHandlerWithTag","eventType","TouchEventType","UNDETERMINED","runCallback","touchEventTypeToCallbackType"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/touchEventHandler.ts"],"mappings":";;;;;;AACA,IAAAA,MAAA,GAAAC,OAAA;AAMA,IAAAC,eAAA,GAAAD,OAAA;AAGO,SAASE,oBAAoBA,CAClCC,UAAkB,EAClBC,SAAyC,EACzC;EACA,OAAQC,WAAuB,IAAK;IAClC,SAAS;;IAET,MAAMC,KAAK,GAAG,IAAAC,8BAAuB,EAACF,WAAW,CAAsB;IAEvE,IAAI,CAAC,IAAAG,+BAAwB,EAACL,UAAU,EAAEG,KAAK,CAAC,EAAE;MAChD;IACF;IAEA,IAAIA,KAAK,CAACG,SAAS,KAAKC,8BAAc,CAACC,YAAY,EAAE;MACnD,IAAAC,kBAAW,EACT,IAAAC,mCAA4B,EAACP,KAAK,CAACG,SAAS,CAAC,EAC7CL,SAAS,EACTE,KACF,CAAC;IACH;EACF,CAAC;AACH","ignoreList":[]}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.getUpdateHandler = getUpdateHandler;
|
|
7
|
-
var _gesture = require("../../../handlers/gestures/gesture");
|
|
8
|
-
var _utils = require("../../../utils");
|
|
9
|
-
var _utils2 = require("../utils");
|
|
10
|
-
function getUpdateHandler(handlerTag, callbacks, context, changeEventCalculator) {
|
|
11
|
-
return sourceEvent => {
|
|
12
|
-
'worklet';
|
|
13
|
-
|
|
14
|
-
const eventWithData = (0, _utils2.maybeExtractNativeEvent)(sourceEvent);
|
|
15
|
-
const eventWithChanges = changeEventCalculator ? changeEventCalculator(eventWithData, context ? context.lastUpdateEvent : undefined) : eventWithData;
|
|
16
|
-
const event = (0, _utils2.flattenAndFilterEvent)(eventWithChanges);
|
|
17
|
-
if (!(0, _utils2.isEventForHandlerWithTag)(handlerTag, eventWithData)) {
|
|
18
|
-
return;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
// This should never happen, but since we don't want to call hooks conditionally, we have to mark
|
|
22
|
-
// context as possibly undefined to make TypeScript happy.
|
|
23
|
-
if (!context) {
|
|
24
|
-
throw new Error((0, _utils.tagMessage)('Event handler context is not defined'));
|
|
25
|
-
}
|
|
26
|
-
(0, _utils2.runCallback)(_gesture.CALLBACK_TYPE.UPDATE, callbacks, event);
|
|
27
|
-
context.lastUpdateEvent = eventWithData;
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
//# sourceMappingURL=updateHandler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_gesture","require","_utils","_utils2","getUpdateHandler","handlerTag","callbacks","context","changeEventCalculator","sourceEvent","eventWithData","maybeExtractNativeEvent","eventWithChanges","lastUpdateEvent","undefined","event","flattenAndFilterEvent","isEventForHandlerWithTag","Error","tagMessage","runCallback","CALLBACK_TYPE","UPDATE"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/updateHandler.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AAQA,IAAAE,OAAA,GAAAF,OAAA;AAOO,SAASG,gBAAgBA,CAC9BC,UAAkB,EAClBC,SAAyC,EACzCC,OAAoD,EACpDC,qBAA0D,EAC1D;EACA,OAAQC,WAAqD,IAAK;IAChE,SAAS;;IAET,MAAMC,aAAa,GAAG,IAAAC,+BAAuB,EAC3CF,WACF,CAAoD;IAEpD,MAAMG,gBAAgB,GAAGJ,qBAAqB,GAC1CA,qBAAqB,CACnBE,aAAa,EACbH,OAAO,GAAGA,OAAO,CAACM,eAAe,GAAGC,SACtC,CAAC,GACDJ,aAAa;IAEjB,MAAMK,KAAK,GAAG,IAAAC,6BAAqB,EAACJ,gBAAgB,CAAC;IAErD,IAAI,CAAC,IAAAK,gCAAwB,EAACZ,UAAU,EAAEK,aAAa,CAAC,EAAE;MACxD;IACF;;IAEA;IACA;IACA,IAAI,CAACH,OAAO,EAAE;MACZ,MAAM,IAAIW,KAAK,CAAC,IAAAC,iBAAU,EAAC,sCAAsC,CAAC,CAAC;IACrE;IAEA,IAAAC,mBAAW,EAACC,sBAAa,CAACC,MAAM,EAAEhB,SAAS,EAAES,KAAK,CAAC;IAEnDR,OAAO,CAACM,eAAe,GAAGH,aAAa;EACzC,CAAC;AACH","ignoreList":[]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.useGestureEventHandler = useGestureEventHandler;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _eventHandler = require("./eventHandler");
|
|
9
|
-
function useGestureEventHandler(handlerTag, handlers, config) {
|
|
10
|
-
const jsContext = (0, _react.useMemo)(() => {
|
|
11
|
-
return {
|
|
12
|
-
lastUpdateEvent: undefined
|
|
13
|
-
};
|
|
14
|
-
}, []);
|
|
15
|
-
return (0, _react.useMemo)(() => {
|
|
16
|
-
return event => {
|
|
17
|
-
(0, _eventHandler.eventHandler)(handlerTag, event, handlers, config.changeEventCalculator, jsContext, !!config.dispatchesAnimatedEvents);
|
|
18
|
-
};
|
|
19
|
-
}, [handlerTag, handlers, config.changeEventCalculator, config.dispatchesAnimatedEvents, jsContext]);
|
|
20
|
-
}
|
|
21
|
-
//# sourceMappingURL=useGestureEventHandler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_eventHandler","useGestureEventHandler","handlerTag","handlers","config","jsContext","useMemo","lastUpdateEvent","undefined","event","eventHandler","changeEventCalculator","dispatchesAnimatedEvents"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/useGestureEventHandler.ts"],"mappings":";;;;;;AAMA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,aAAA,GAAAD,OAAA;AAEO,SAASE,sBAAsBA,CACpCC,UAAkB,EAClBC,QAAwC,EACxCC,MAAgD,EAChD;EACA,MAAMC,SAA0C,GAAG,IAAAC,cAAO,EAAC,MAAM;IAC/D,OAAO;MACLC,eAAe,EAAEC;IACnB,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN,OAAO,IAAAF,cAAO,EAAC,MAAM;IACnB,OAAQG,KAAuD,IAAK;MAClE,IAAAC,0BAAY,EACVR,UAAU,EACVO,KAAK,EACLN,QAAQ,EACRC,MAAM,CAACO,qBAAqB,EAC5BN,SAAS,EACT,CAAC,CAACD,MAAM,CAACQ,wBACX,CAAC;IACH,CAAC;EACH,CAAC,EAAE,CACDV,UAAU,EACVC,QAAQ,EACRC,MAAM,CAACO,qBAAqB,EAC5BP,MAAM,CAACQ,wBAAwB,EAC/BP,SAAS,CACV,CAAC;AACJ","ignoreList":[]}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.useReanimatedEventHandler = useReanimatedEventHandler;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _reanimatedWrapper = require("../../../handlers/gestures/reanimatedWrapper");
|
|
9
|
-
var _eventHandler = require("./eventHandler");
|
|
10
|
-
const workletNOOP = () => {
|
|
11
|
-
'worklet';
|
|
12
|
-
|
|
13
|
-
// no-op
|
|
14
|
-
};
|
|
15
|
-
function useReanimatedEventHandler(handlerTag, handlers, reanimatedHandler, changeEventCalculator) {
|
|
16
|
-
const workletizedHandlers = (0, _react.useMemo)(() => {
|
|
17
|
-
// We don't want to call hooks conditionally, `useEvent` will be always called.
|
|
18
|
-
// The only difference is whether we will send events to Reanimated or not.
|
|
19
|
-
// The problem here is that if someone passes `Animated.event` as `onUpdate` prop,
|
|
20
|
-
// it won't be workletized and therefore `useHandler` will throw. In that case we override it to empty `worklet`.
|
|
21
|
-
if (!_reanimatedWrapper.Reanimated?.isWorkletFunction(handlers.onUpdate)) {
|
|
22
|
-
return {
|
|
23
|
-
...handlers,
|
|
24
|
-
onUpdate: workletNOOP
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
return handlers;
|
|
28
|
-
}, [handlers]);
|
|
29
|
-
const callback = event => {
|
|
30
|
-
'worklet';
|
|
31
|
-
|
|
32
|
-
(0, _eventHandler.eventHandler)(handlerTag, event, workletizedHandlers, changeEventCalculator,
|
|
33
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion, @typescript-eslint/no-non-null-asserted-optional-chain
|
|
34
|
-
reanimatedHandler?.context, false);
|
|
35
|
-
};
|
|
36
|
-
const reanimatedEvent = _reanimatedWrapper.Reanimated?.useEvent(callback, ['onGestureHandlerReanimatedEvent', 'onGestureHandlerReanimatedStateChange', 'onGestureHandlerReanimatedTouchEvent'], !!reanimatedHandler?.doDependenciesDiffer);
|
|
37
|
-
return reanimatedEvent;
|
|
38
|
-
}
|
|
39
|
-
//# sourceMappingURL=useReanimatedEventHandler.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reanimatedWrapper","_eventHandler","workletNOOP","useReanimatedEventHandler","handlerTag","handlers","reanimatedHandler","changeEventCalculator","workletizedHandlers","useMemo","Reanimated","isWorkletFunction","onUpdate","callback","event","eventHandler","context","reanimatedEvent","useEvent","doDependenciesDiffer"],"sourceRoot":"../../../../../src","sources":["v3/hooks/callbacks/useReanimatedEventHandler.ts"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,kBAAA,GAAAD,OAAA;AASA,IAAAE,aAAA,GAAAF,OAAA;AAEA,MAAMG,WAAW,GAAGA,CAAA,KAAM;EACxB,SAAS;;EACT;AACF,CAAC;AAEM,SAASC,yBAAyBA,CACvCC,UAAkB,EAClBC,QAAwC,EACxCC,iBAA8D,EAC9DC,qBAAqE,EACrE;EACA,MAAMC,mBAAmB,GAAG,IAAAC,cAAO,EAAC,MAAM;IACxC;IACA;IACA;IACA;IACA,IAAI,CAACC,6BAAU,EAAEC,iBAAiB,CAACN,QAAQ,CAACO,QAAQ,CAAC,EAAE;MACrD,OAAO;QACL,GAAGP,QAAQ;QACXO,QAAQ,EAAEV;MACZ,CAAC;IACH;IAEA,OAAOG,QAAQ;EACjB,CAAC,EAAE,CAACA,QAAQ,CAAC,CAAC;EAEd,MAAMQ,QAAQ,GACZC,KAA+D,IAC5D;IACH,SAAS;;IACT,IAAAC,0BAAY,EACVX,UAAU,EACVU,KAAK,EACLN,mBAAmB,EACnBD,qBAAqB;IACrB;IACAD,iBAAiB,EAAEU,OAAO,EAC1B,KACF,CAAC;EACH,CAAC;EAED,MAAMC,eAAe,GAAGP,6BAAU,EAAEQ,QAAQ,CAC1CL,QAAQ,EACR,CACE,iCAAiC,EACjC,uCAAuC,EACvC,sCAAsC,CACvC,EACD,CAAC,CAACP,iBAAiB,EAAEa,oBACvB,CAAC;EAED,OAAOF,eAAe;AACxB","ignoreList":[]}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "useCompetingGestures", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function () {
|
|
9
|
-
return _useCompetingGestures.useCompetingGestures;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "useExclusiveGestures", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function () {
|
|
15
|
-
return _useExclusiveGestures.useExclusiveGestures;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
Object.defineProperty(exports, "useSimultaneousGestures", {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function () {
|
|
21
|
-
return _useSimultaneousGestures.useSimultaneousGestures;
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
var _useSimultaneousGestures = require("./useSimultaneousGestures");
|
|
25
|
-
var _useExclusiveGestures = require("./useExclusiveGestures");
|
|
26
|
-
var _useCompetingGestures = require("./useCompetingGestures");
|
|
27
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_useSimultaneousGestures","require","_useExclusiveGestures","_useCompetingGestures"],"sourceRoot":"../../../../../src","sources":["v3/hooks/composition/index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,wBAAA,GAAAC,OAAA;AACA,IAAAC,qBAAA,GAAAD,OAAA;AACA,IAAAE,qBAAA,GAAAF,OAAA","ignoreList":[]}
|