react-native-gesture-handler 3.0.0-beta.2 → 3.0.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ReanimatedDrawerLayout/package.json +1 -1
- package/ReanimatedSwipeable/package.json +1 -1
- package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -5
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +58 -28
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +23 -5
- package/android/src/main/java/com/swmansion/gesturehandler/core/HoverGestureHandler.kt +3 -6
- package/android/src/main/java/com/swmansion/gesturehandler/core/ManualGestureHandler.kt +2 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +67 -12
- package/android/src/main/java/com/swmansion/gesturehandler/core/OnJSResponderCancelListener.kt +6 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/PanGestureHandler.kt +2 -0
- package/android/src/main/java/com/swmansion/gesturehandler/core/PinchGestureHandler.kt +16 -6
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +23 -7
- package/android/src/main/java/com/swmansion/gesturehandler/core/ViewConfigurationHelper.kt +0 -1
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +429 -135
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerDetectorView.kt +17 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +3 -1
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +4 -10
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.kt +18 -8
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.kt +15 -4
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.kt +0 -6
- package/apple/Handlers/RNFlingHandler.m +7 -7
- package/apple/Handlers/RNForceTouchHandler.m +3 -3
- package/apple/Handlers/RNHoverHandler.m +44 -13
- package/apple/Handlers/RNLongPressHandler.m +23 -10
- package/apple/Handlers/RNManualHandler.m +7 -2
- package/apple/Handlers/RNNativeViewHandler.mm +151 -36
- package/apple/Handlers/RNPanHandler.m +11 -7
- package/apple/Handlers/RNPinchHandler.m +20 -7
- package/apple/Handlers/RNRotationHandler.m +18 -6
- package/apple/Handlers/RNTapHandler.m +7 -5
- package/apple/RNGHUIKit.h +2 -0
- package/apple/RNGestureHandler.h +34 -1
- package/apple/RNGestureHandler.mm +110 -10
- package/apple/RNGestureHandlerButton.h +50 -1
- package/apple/RNGestureHandlerButton.mm +710 -49
- package/apple/RNGestureHandlerButtonComponentView.mm +134 -3
- package/apple/RNGestureHandlerDetector.mm +17 -0
- package/apple/RNGestureHandlerEvents.h +3 -1
- package/apple/RNGestureHandlerEvents.mm +8 -3
- package/apple/RNGestureHandlerManager.h +2 -0
- package/apple/RNGestureHandlerManager.mm +49 -3
- package/apple/RNGestureHandlerModule.mm +17 -10
- package/apple/RNGestureHandlerRegistry.h +2 -1
- package/apple/RNGestureHandlerRegistry.m +41 -11
- package/apple/RNManualActivationRecognizer.m +1 -1
- package/apple/RNRootViewGestureRecognizer.m +4 -15
- package/jest-utils/package.json +1 -1
- package/jestSetup.js +6 -16
- package/lib/module/RNGestureHandlerModule.web.js +2 -1
- package/lib/module/RNGestureHandlerModule.web.js.map +1 -1
- package/lib/module/RNGestureHandlerModule.windows.js +5 -6
- package/lib/module/RNGestureHandlerModule.windows.js.map +1 -1
- package/lib/module/components/GestureButtons.js +37 -20
- package/lib/module/components/GestureButtons.js.map +1 -1
- package/lib/module/components/GestureComponents.js +6 -8
- package/lib/module/components/GestureComponents.js.map +1 -1
- package/lib/module/components/GestureComponents.web.js +3 -4
- package/lib/module/components/GestureComponents.web.js.map +1 -1
- package/lib/module/components/GestureHandlerButton.js +2 -135
- package/lib/module/components/GestureHandlerButton.js.map +1 -1
- package/lib/module/components/GestureHandlerButton.web.js +160 -6
- package/lib/module/components/GestureHandlerButton.web.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.android.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.js +2 -2
- package/lib/module/components/GestureHandlerRootView.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.web.js +2 -2
- package/lib/module/components/GestureHandlerRootView.web.js.map +1 -1
- package/lib/module/components/Pressable/Pressable.js +17 -11
- package/lib/module/components/Pressable/Pressable.js.map +1 -1
- package/lib/module/components/Pressable/index.js.map +1 -1
- package/lib/module/components/Pressable/stateDefinitions.js +16 -3
- package/lib/module/components/Pressable/stateDefinitions.js.map +1 -1
- package/lib/module/components/Pressable/utils.js +1 -1
- package/lib/module/components/Pressable/utils.js.map +1 -1
- package/lib/module/components/ReanimatedDrawerLayout.js +11 -10
- package/lib/module/components/ReanimatedDrawerLayout.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js +16 -16
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/index.js +1 -1
- package/lib/module/components/ReanimatedSwipeable/index.js.map +1 -1
- package/lib/module/components/Text.js +33 -23
- package/lib/module/components/Text.js.map +1 -1
- package/lib/module/components/touchables/GenericTouchable.js +11 -19
- package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
- package/lib/module/components/touchables/TouchableHighlight.js +1 -1
- package/lib/module/components/touchables/TouchableHighlight.js.map +1 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js +1 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +1 -1
- package/lib/module/components/touchables/TouchableOpacity.js +2 -2
- package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
- package/lib/module/components/touchables/TouchableWithoutFeedback.js +3 -4
- package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
- package/lib/module/components/touchables/index.js +2 -2
- package/lib/module/components/touchables/index.js.map +1 -1
- package/lib/module/findNodeHandle.web.js +4 -2
- package/lib/module/findNodeHandle.web.js.map +1 -1
- package/lib/module/handlers/FlingGestureHandler.js.map +1 -1
- package/lib/module/handlers/ForceTouchGestureHandler.js +1 -1
- package/lib/module/handlers/ForceTouchGestureHandler.js.map +1 -1
- package/lib/module/handlers/LongPressGestureHandler.js.map +1 -1
- package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/handlers/PinchGestureHandler.js.map +1 -1
- package/lib/module/handlers/RotationGestureHandler.js.map +1 -1
- package/lib/module/handlers/TapGestureHandler.js.map +1 -1
- package/lib/module/handlers/createHandler.js +10 -10
- package/lib/module/handlers/createHandler.js.map +1 -1
- package/lib/module/handlers/createNativeWrapper.js +7 -3
- package/lib/module/handlers/createNativeWrapper.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.js +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js +5 -4
- package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js +5 -5
- package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/index.js +6 -6
- package/lib/module/handlers/gestures/GestureDetector/index.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js +3 -3
- package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js +3 -3
- package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js +4 -3
- package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/utils.js +18 -8
- package/lib/module/handlers/gestures/GestureDetector/utils.js.map +1 -1
- package/lib/module/handlers/gestures/eventReceiver.js.map +1 -1
- package/lib/module/handlers/gestures/flingGesture.js +8 -0
- package/lib/module/handlers/gestures/flingGesture.js.map +1 -1
- package/lib/module/handlers/gestures/forceTouchGesture.js +3 -3
- package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -1
- package/lib/module/handlers/gestures/gesture.js +9 -1
- package/lib/module/handlers/gestures/gesture.js.map +1 -1
- package/lib/module/handlers/gestures/gestureComposition.js +28 -0
- package/lib/module/handlers/gestures/gestureComposition.js.map +1 -1
- package/lib/module/handlers/gestures/gestureObjects.js +30 -4
- package/lib/module/handlers/gestures/gestureObjects.js.map +1 -1
- package/lib/module/handlers/gestures/gestureStateManager.js +9 -0
- package/lib/module/handlers/gestures/gestureStateManager.js.map +1 -1
- package/lib/module/handlers/gestures/hoverGesture.js +8 -0
- package/lib/module/handlers/gestures/hoverGesture.js.map +1 -1
- package/lib/module/handlers/gestures/longPressGesture.js +8 -0
- package/lib/module/handlers/gestures/longPressGesture.js.map +1 -1
- package/lib/module/handlers/gestures/manualGesture.js +8 -0
- package/lib/module/handlers/gestures/manualGesture.js.map +1 -1
- package/lib/module/handlers/gestures/nativeGesture.js +8 -0
- package/lib/module/handlers/gestures/nativeGesture.js.map +1 -1
- package/lib/module/handlers/gestures/panGesture.js +13 -0
- package/lib/module/handlers/gestures/panGesture.js.map +1 -1
- package/lib/module/handlers/gestures/pinchGesture.js +13 -0
- package/lib/module/handlers/gestures/pinchGesture.js.map +1 -1
- package/lib/module/handlers/gestures/reanimatedWrapper.js.map +1 -1
- package/lib/module/handlers/gestures/rotationGesture.js +8 -0
- package/lib/module/handlers/gestures/rotationGesture.js.map +1 -1
- package/lib/module/handlers/gestures/tapGesture.js +8 -0
- package/lib/module/handlers/gestures/tapGesture.js.map +1 -1
- package/lib/module/handlers/handlersRegistry.js.map +1 -1
- package/lib/module/handlers/utils.js +4 -4
- package/lib/module/handlers/utils.js.map +1 -1
- package/lib/module/index.js +15 -16
- package/lib/module/index.js.map +1 -1
- package/lib/module/jestUtils/index.js +1 -1
- package/lib/module/jestUtils/index.js.map +1 -1
- package/lib/module/jestUtils/jestUtils.js +0 -1
- package/lib/module/jestUtils/jestUtils.js.map +1 -1
- package/lib/module/mocks/GestureButtons.js +8 -5
- package/lib/module/mocks/GestureButtons.js.map +1 -1
- package/lib/module/mocks/Touchables.js +4 -0
- package/lib/module/mocks/Touchables.js.map +1 -0
- package/lib/module/mocks/gestureComponents.js +1 -12
- package/lib/module/mocks/gestureComponents.js.map +1 -1
- package/lib/module/specs/NativeRNGestureHandlerModule.js.map +1 -1
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
- package/lib/module/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
- package/lib/module/useIsScreenReaderEnabled.js +26 -0
- package/lib/module/useIsScreenReaderEnabled.js.map +1 -0
- package/lib/module/v3/NativeProxy.js.map +1 -1
- package/lib/module/v3/NativeProxy.web.js.map +1 -1
- package/lib/module/v3/components/GestureButtons.js +41 -25
- package/lib/module/v3/components/GestureButtons.js.map +1 -1
- package/lib/module/v3/components/GestureComponents.js +3 -3
- package/lib/module/v3/components/GestureComponents.js.map +1 -1
- package/lib/module/v3/components/GestureComponents.web.js +3 -4
- package/lib/module/v3/components/GestureComponents.web.js.map +1 -1
- package/lib/module/v3/components/Pressable.js +16 -15
- package/lib/module/v3/components/Pressable.js.map +1 -1
- package/lib/module/v3/components/Touchable/Touchable.js +132 -0
- package/lib/module/v3/components/Touchable/Touchable.js.map +1 -0
- package/lib/module/v3/components/Touchable/TouchableProps.js +4 -0
- package/lib/module/v3/components/Touchable/TouchableProps.js.map +1 -0
- package/lib/module/v3/components/index.js +3 -2
- package/lib/module/v3/components/index.js.map +1 -1
- package/lib/module/v3/createNativeWrapper.js +3 -3
- package/lib/module/v3/createNativeWrapper.js.map +1 -1
- package/lib/module/v3/detectors/GestureDetector.js +1 -1
- package/lib/module/v3/detectors/GestureDetector.js.map +1 -1
- package/lib/module/v3/detectors/HostGestureDetector.web.js +14 -10
- package/lib/module/v3/detectors/HostGestureDetector.web.js.map +1 -1
- package/lib/module/v3/detectors/NativeDetector.js +3 -3
- package/lib/module/v3/detectors/NativeDetector.js.map +1 -1
- package/lib/module/v3/detectors/ReanimatedNativeDetector.js +1 -1
- package/lib/module/v3/detectors/ReanimatedNativeDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +15 -9
- package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js +10 -5
- package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +1 -1
- package/lib/module/v3/detectors/common.js +0 -3
- package/lib/module/v3/detectors/common.js.map +1 -1
- package/lib/module/v3/detectors/index.js +1 -1
- package/lib/module/v3/detectors/index.js.map +1 -1
- package/lib/module/v3/detectors/useEnsureGestureHandlerRootView.js.map +1 -1
- package/lib/module/v3/detectors/useNativeGestureRole.js +6 -0
- package/lib/module/v3/detectors/useNativeGestureRole.js.map +1 -0
- package/lib/module/v3/detectors/useNativeGestureRole.web.js +27 -0
- package/lib/module/v3/detectors/useNativeGestureRole.web.js.map +1 -0
- package/lib/module/v3/detectors/utils.js.map +1 -1
- package/lib/module/v3/gestureStateManager.js +0 -5
- package/lib/module/v3/gestureStateManager.js.map +1 -1
- package/lib/module/v3/gestureStateManager.web.js +0 -14
- package/lib/module/v3/gestureStateManager.web.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/eventHandler.js +23 -19
- package/lib/module/v3/hooks/callbacks/eventHandler.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js +2 -2
- package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js +19 -4
- package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js.map +1 -1
- package/lib/module/v3/hooks/composition/index.js +2 -2
- package/lib/module/v3/hooks/composition/index.js.map +1 -1
- package/lib/module/v3/hooks/composition/useCompetingGestures.js.map +1 -1
- package/lib/module/v3/hooks/composition/useComposedGesture.js +1 -1
- package/lib/module/v3/hooks/composition/useComposedGesture.js.map +1 -1
- package/lib/module/v3/hooks/composition/useExclusiveGestures.js.map +1 -1
- package/lib/module/v3/hooks/composition/useSimultaneousGestures.js.map +1 -1
- package/lib/module/v3/hooks/gestures/fling/{FlingProperties.js → FlingTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/fling/FlingTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js → HoverTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js.map → HoverTypes.js.map} +1 -1
- package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js +10 -2
- package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/index.js +4 -0
- package/lib/module/v3/hooks/gestures/index.js.map +1 -1
- package/lib/module/v3/hooks/gestures/longPress/{LongPressProperties.js → LongPressTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/longPress/LongPressTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/manual/ManualTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/manual/ManualTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/manual/useManualGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/manual/useManualGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/native/NativeTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/native/NativeTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/native/useNativeGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/native/useNativeGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/pan/{PanProperties.js → PanTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/pan/PanTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/pan/usePanGesture.js +9 -1
- package/lib/module/v3/hooks/gestures/pan/usePanGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js +9 -3
- package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js +9 -2
- package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/tap/{TapProperties.js → TapTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/tap/TapTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/tap/useTapGesture.js +2 -1
- package/lib/module/v3/hooks/gestures/tap/useTapGesture.js.map +1 -1
- package/lib/module/v3/hooks/useGesture.js +10 -11
- package/lib/module/v3/hooks/useGesture.js.map +1 -1
- package/lib/module/v3/hooks/useGestureCallbacks.js +4 -4
- package/lib/module/v3/hooks/useGestureCallbacks.js.map +1 -1
- package/lib/module/v3/hooks/utils/configUtils.js +9 -5
- package/lib/module/v3/hooks/utils/configUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/eventHandlersUtils.js +3 -7
- package/lib/module/v3/hooks/utils/eventHandlersUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/eventUtils.js +10 -0
- package/lib/module/v3/hooks/utils/eventUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/index.js +6 -6
- package/lib/module/v3/hooks/utils/index.js.map +1 -1
- package/lib/module/v3/hooks/utils/propsWhiteList.js +10 -8
- package/lib/module/v3/hooks/utils/propsWhiteList.js.map +1 -1
- package/lib/module/v3/hooks/utils/reanimatedUtils.js +1 -1
- package/lib/module/v3/hooks/utils/reanimatedUtils.js.map +1 -1
- package/lib/module/v3/index.js +3 -4
- package/lib/module/v3/index.js.map +1 -1
- package/lib/module/v3/types/GestureTypes.js.map +1 -1
- package/lib/module/v3/types/index.js +1 -1
- package/lib/module/v3/types/index.js.map +1 -1
- package/lib/module/web/Gestures.js +6 -6
- package/lib/module/web/Gestures.js.map +1 -1
- package/lib/module/web/constants.js +1 -0
- package/lib/module/web/constants.js.map +1 -1
- package/lib/module/web/detectors/RotationGestureDetector.js +22 -12
- package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -1
- package/lib/module/web/detectors/ScaleGestureDetector.js +10 -2
- package/lib/module/web/detectors/ScaleGestureDetector.js.map +1 -1
- package/lib/module/web/handlers/FlingGestureHandler.js +3 -3
- package/lib/module/web/handlers/FlingGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/GestureHandler.js +60 -63
- package/lib/module/web/handlers/GestureHandler.js.map +1 -1
- package/lib/module/web/handlers/HoverGestureHandler.js +2 -5
- package/lib/module/web/handlers/HoverGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/LongPressGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/ManualGestureHandler.js +1 -0
- package/lib/module/web/handlers/ManualGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/NativeViewGestureHandler.js +66 -18
- package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/PanGestureHandler.js +2 -1
- package/lib/module/web/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/PinchGestureHandler.js +11 -14
- package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/RotationGestureHandler.js +30 -35
- package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/TapGestureHandler.js.map +1 -1
- package/lib/module/web/interfaces.js +6 -0
- package/lib/module/web/interfaces.js.map +1 -1
- package/lib/module/web/tools/GestureHandlerOrchestrator.js +8 -2
- package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +1 -1
- package/lib/module/web/tools/GestureHandlerWebDelegate.js +62 -17
- package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +1 -1
- package/lib/module/web/tools/GestureLifecycleEvents.js +10 -0
- package/lib/module/web/tools/GestureLifecycleEvents.js.map +1 -0
- package/lib/module/web/tools/InteractionManager.js.map +1 -1
- package/lib/module/web/tools/KeyboardEventManager.js +1 -1
- package/lib/module/web/tools/KeyboardEventManager.js.map +1 -1
- package/lib/module/web/tools/PointerEventManager.js +16 -7
- package/lib/module/web/tools/PointerEventManager.js.map +1 -1
- package/lib/module/web/tools/WheelEventManager.js +2 -2
- package/lib/module/web/tools/WheelEventManager.js.map +1 -1
- package/lib/module/web/utils.js +22 -1
- package/lib/module/web/utils.js.map +1 -1
- package/lib/typescript/RNGestureHandlerModule.web.d.ts +1 -1
- package/lib/typescript/RNGestureHandlerModule.web.d.ts.map +1 -1
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts +8 -8
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts.map +1 -1
- package/lib/typescript/components/GestureButtons.d.ts +16 -5
- package/lib/typescript/components/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/components/GestureButtonsProps.d.ts +21 -21
- package/lib/typescript/components/GestureButtonsProps.d.ts.map +1 -1
- package/lib/typescript/components/GestureComponents.d.ts +44 -14
- package/lib/typescript/components/GestureComponents.d.ts.map +1 -1
- package/lib/typescript/components/GestureComponents.web.d.ts +26 -6
- package/lib/typescript/components/GestureComponents.web.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerButton.d.ts +114 -2
- package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerButton.web.d.ts +20 -2
- package/lib/typescript/components/GestureHandlerButton.web.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts +1 -1
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.d.ts +1 -1
- package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts +2 -2
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/Pressable.d.ts +6 -3
- package/lib/typescript/components/Pressable/Pressable.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/PressableProps.d.ts +4 -4
- package/lib/typescript/components/Pressable/PressableProps.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/StateMachine.d.ts +1 -1
- package/lib/typescript/components/Pressable/StateMachine.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/index.d.ts +1 -1
- package/lib/typescript/components/Pressable/index.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/stateDefinitions.d.ts +3 -3
- package/lib/typescript/components/Pressable/stateDefinitions.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/utils.d.ts +8 -7
- package/lib/typescript/components/Pressable/utils.d.ts.map +1 -1
- package/lib/typescript/components/ReanimatedDrawerLayout.d.ts +9 -5
- package/lib/typescript/components/ReanimatedDrawerLayout.d.ts.map +1 -1
- package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts +2 -2
- package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeable.d.ts.map +1 -1
- package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts +9 -11
- package/lib/typescript/components/ReanimatedSwipeable/ReanimatedSwipeableProps.d.ts.map +1 -1
- package/lib/typescript/components/ReanimatedSwipeable/index.d.ts +1 -1
- package/lib/typescript/components/ReanimatedSwipeable/index.d.ts.map +1 -1
- package/lib/typescript/components/Text.d.ts +15 -3
- package/lib/typescript/components/Text.d.ts.map +1 -1
- package/lib/typescript/components/touchables/ExtraButtonProps.d.ts +5 -5
- package/lib/typescript/components/touchables/ExtraButtonProps.d.ts.map +1 -1
- package/lib/typescript/components/touchables/GenericTouchable.d.ts +2 -2
- package/lib/typescript/components/touchables/GenericTouchable.d.ts.map +1 -1
- package/lib/typescript/components/touchables/GenericTouchableProps.d.ts +2 -2
- package/lib/typescript/components/touchables/GenericTouchableProps.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableHighlight.d.ts +3 -3
- package/lib/typescript/components/touchables/TouchableHighlight.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts +2 -2
- package/lib/typescript/components/touchables/TouchableNativeFeedback.android.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts +1 -1
- package/lib/typescript/components/touchables/TouchableNativeFeedbackProps.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts +3 -2
- package/lib/typescript/components/touchables/TouchableOpacity.d.ts.map +1 -1
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts +4 -3
- package/lib/typescript/components/touchables/TouchableWithoutFeedback.d.ts.map +1 -1
- package/lib/typescript/components/touchables/index.d.ts +3 -3
- package/lib/typescript/components/touchables/index.d.ts.map +1 -1
- package/lib/typescript/components/utils.d.ts +1 -1
- package/lib/typescript/components/utils.d.ts.map +1 -1
- package/lib/typescript/findNodeHandle.web.d.ts.map +1 -1
- package/lib/typescript/handlers/FlingGestureHandler.d.ts +1 -1
- package/lib/typescript/handlers/FlingGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts +3 -2
- package/lib/typescript/handlers/ForceTouchGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts +3 -3
- package/lib/typescript/handlers/GestureHandlerEventPayload.d.ts.map +1 -1
- package/lib/typescript/handlers/LongPressGestureHandler.d.ts +2 -2
- package/lib/typescript/handlers/LongPressGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts +3 -3
- package/lib/typescript/handlers/NativeViewGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/PanGestureHandler.d.ts +1 -1
- package/lib/typescript/handlers/PanGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/PinchGestureHandler.d.ts +2 -2
- package/lib/typescript/handlers/PinchGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/RotationGestureHandler.d.ts +2 -2
- package/lib/typescript/handlers/RotationGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/TapGestureHandler.d.ts +1 -1
- package/lib/typescript/handlers/TapGestureHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/createHandler.d.ts +1 -1
- package/lib/typescript/handlers/createHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/createNativeWrapper.d.ts +10 -2
- package/lib/typescript/handlers/createNativeWrapper.d.ts.map +1 -1
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts +27 -27
- package/lib/typescript/handlers/gestureHandlerCommon.d.ts.map +1 -1
- package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts +3 -3
- package/lib/typescript/handlers/gestureHandlerTypesCompat.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/Wrap.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts +7 -6
- package/lib/typescript/handlers/gestures/GestureDetector/Wrap.web.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts +5 -5
- package/lib/typescript/handlers/gestures/GestureDetector/attachHandlers.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/dropHandlers.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts +3 -3
- package/lib/typescript/handlers/gestures/GestureDetector/index.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts +2 -2
- package/lib/typescript/handlers/gestures/GestureDetector/needsToReattach.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts +2 -2
- package/lib/typescript/handlers/gestures/GestureDetector/types.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts +3 -3
- package/lib/typescript/handlers/gestures/GestureDetector/updateHandlers.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useAnimatedGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts +5 -5
- package/lib/typescript/handlers/gestures/GestureDetector/useDetectorUpdater.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useMountReactions.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts +2 -2
- package/lib/typescript/handlers/gestures/GestureDetector/useViewRefHandler.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts +2 -2
- package/lib/typescript/handlers/gestures/GestureDetector/utils.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/eventReceiver.d.ts +1 -1
- package/lib/typescript/handlers/gestures/eventReceiver.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/flingGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/flingGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +7 -6
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gesture.d.ts +9 -3
- package/lib/typescript/handlers/gestures/gesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts +23 -1
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts +31 -5
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureStateManager.d.ts +6 -0
- package/lib/typescript/handlers/gestures/gestureStateManager.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +1 -1
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/manualGesture.d.ts +7 -1
- package/lib/typescript/handlers/gestures/manualGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/panGesture.d.ts +13 -3
- package/lib/typescript/handlers/gestures/panGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts +11 -2
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +3 -3
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts +8 -2
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/tapGesture.d.ts +9 -2
- package/lib/typescript/handlers/gestures/tapGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/handlersRegistry.d.ts +6 -6
- package/lib/typescript/handlers/handlersRegistry.d.ts.map +1 -1
- package/lib/typescript/handlers/utils.d.ts +1 -1
- package/lib/typescript/handlers/utils.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +41 -42
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/jestUtils/index.d.ts +1 -1
- package/lib/typescript/jestUtils/jestUtils.d.ts +22 -21
- package/lib/typescript/jestUtils/jestUtils.d.ts.map +1 -1
- package/lib/typescript/mocks/GestureButtons.d.ts +5 -5
- package/lib/typescript/mocks/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/mocks/Touchables.d.ts +2 -0
- package/lib/typescript/mocks/Touchables.d.ts.map +1 -0
- package/lib/typescript/mocks/gestureComponents.d.ts +1 -13
- package/lib/typescript/mocks/gestureComponents.d.ts.map +1 -1
- package/lib/typescript/mountRegistry.d.ts +1 -1
- package/lib/typescript/mountRegistry.d.ts.map +1 -1
- package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts +2 -2
- package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +36 -3
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts +8 -8
- package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +1 -1
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/useIsScreenReaderEnabled.d.ts +2 -0
- package/lib/typescript/useIsScreenReaderEnabled.d.ts.map +1 -0
- package/lib/typescript/useIsomorphicLayoutEffect.d.ts +1 -1
- package/lib/typescript/useIsomorphicLayoutEffect.d.ts.map +1 -1
- package/lib/typescript/v3/NativeProxy.d.ts +3 -3
- package/lib/typescript/v3/NativeProxy.d.ts.map +1 -1
- package/lib/typescript/v3/NativeProxy.web.d.ts +3 -3
- package/lib/typescript/v3/NativeProxy.web.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureButtons.d.ts +21 -11
- package/lib/typescript/v3/components/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureButtonsProps.d.ts +25 -85
- package/lib/typescript/v3/components/GestureButtonsProps.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureComponents.d.ts +27 -38
- package/lib/typescript/v3/components/GestureComponents.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureComponents.web.d.ts +26 -34
- package/lib/typescript/v3/components/GestureComponents.web.d.ts.map +1 -1
- package/lib/typescript/v3/components/Pressable.d.ts +1 -1
- package/lib/typescript/v3/components/Pressable.d.ts.map +1 -1
- package/lib/typescript/v3/components/Touchable/Touchable.d.ts +4 -0
- package/lib/typescript/v3/components/Touchable/Touchable.d.ts.map +1 -0
- package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts +40 -0
- package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts.map +1 -0
- package/lib/typescript/v3/components/index.d.ts +5 -3
- package/lib/typescript/v3/components/index.d.ts.map +1 -1
- package/lib/typescript/v3/createNativeWrapper.d.ts +3 -7
- package/lib/typescript/v3/createNativeWrapper.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/GestureDetector.d.ts +3 -3
- package/lib/typescript/v3/detectors/GestureDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts +10 -6
- package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/NativeDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/NativeDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/ReanimatedNativeDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/common.d.ts +14 -15
- package/lib/typescript/v3/detectors/common.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/index.d.ts +1 -1
- package/lib/typescript/v3/detectors/index.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/useEnsureGestureHandlerRootView.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/useNativeGestureRole.d.ts +3 -0
- package/lib/typescript/v3/detectors/useNativeGestureRole.d.ts.map +1 -0
- package/lib/typescript/v3/detectors/useNativeGestureRole.web.d.ts +3 -0
- package/lib/typescript/v3/detectors/useNativeGestureRole.web.d.ts.map +1 -0
- package/lib/typescript/v3/detectors/utils.d.ts +2 -2
- package/lib/typescript/v3/detectors/utils.d.ts.map +1 -1
- package/lib/typescript/v3/gestureStateManager.d.ts +0 -1
- package/lib/typescript/v3/gestureStateManager.d.ts.map +1 -1
- package/lib/typescript/v3/gestureStateManager.web.d.ts +1 -1
- package/lib/typescript/v3/gestureStateManager.web.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts +6 -6
- package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts +2 -2
- package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts +3 -3
- package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/index.d.ts +2 -2
- package/lib/typescript/v3/hooks/composition/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts +36 -0
- package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts +2 -15
- package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts +38 -0
- package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts +2 -20
- package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/index.d.ts +19 -28
- package/lib/typescript/v3/hooks/gestures/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/longPress/{LongPressProperties.d.ts → LongPressTypes.d.ts} +16 -1
- package/lib/typescript/v3/hooks/gestures/longPress/LongPressTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts +2 -15
- package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts +10 -0
- package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts +2 -10
- package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts +33 -0
- package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts +2 -12
- package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/pan/{PanProperties.d.ts → PanTypes.d.ts} +25 -1
- package/lib/typescript/v3/hooks/gestures/pan/PanTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts +2 -22
- package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts +17 -0
- package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts +2 -16
- package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts +17 -0
- package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts +2 -16
- package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/tap/{TapProperties.d.ts → TapTypes.d.ts} +14 -1
- package/lib/typescript/v3/hooks/gestures/tap/TapTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts +2 -15
- package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/useGesture.d.ts +2 -2
- package/lib/typescript/v3/hooks/useGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts +4 -4
- package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/configUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/configUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/eventUtils.d.ts +8 -6
- package/lib/typescript/v3/hooks/utils/eventUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/index.d.ts +6 -6
- package/lib/typescript/v3/hooks/utils/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts +6 -5
- package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/relationUtils.d.ts +2 -2
- package/lib/typescript/v3/hooks/utils/relationUtils.d.ts.map +1 -1
- package/lib/typescript/v3/index.d.ts +6 -7
- package/lib/typescript/v3/index.d.ts.map +1 -1
- package/lib/typescript/v3/types/ConfigTypes.d.ts +36 -34
- package/lib/typescript/v3/types/ConfigTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/DetectorTypes.d.ts +10 -6
- package/lib/typescript/v3/types/DetectorTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/EventTypes.d.ts +11 -8
- package/lib/typescript/v3/types/EventTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/GestureTypes.d.ts +16 -16
- package/lib/typescript/v3/types/GestureTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/NativeWrapperType.d.ts +7 -4
- package/lib/typescript/v3/types/NativeWrapperType.d.ts.map +1 -1
- package/lib/typescript/v3/types/ReanimatedTypes.d.ts +1 -1
- package/lib/typescript/v3/types/ReanimatedTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/UtilityTypes.d.ts +7 -7
- package/lib/typescript/v3/types/UtilityTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/index.d.ts +6 -6
- package/lib/typescript/v3/types/index.d.ts.map +1 -1
- package/lib/typescript/web/Gestures.d.ts +6 -6
- package/lib/typescript/web/Gestures.d.ts.map +1 -1
- package/lib/typescript/web/constants.d.ts +1 -0
- package/lib/typescript/web/constants.d.ts.map +1 -1
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +2 -2
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts.map +1 -1
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +2 -2
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts.map +1 -1
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/GestureHandler.d.ts +16 -9
- package/lib/typescript/web/handlers/GestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/IGestureHandler.d.ts +8 -6
- package/lib/typescript/web/handlers/IGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +4 -3
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +17 -7
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts +5 -4
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +5 -4
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +6 -6
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/interfaces.d.ts +38 -32
- package/lib/typescript/web/interfaces.d.ts.map +1 -1
- package/lib/typescript/web/tools/EventManager.d.ts +1 -1
- package/lib/typescript/web/tools/EventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +4 -0
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts +1 -0
- package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +6 -1
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureLifecycleEvents.d.ts +7 -0
- package/lib/typescript/web/tools/GestureLifecycleEvents.d.ts.map +1 -0
- package/lib/typescript/web/tools/InteractionManager.d.ts +2 -2
- package/lib/typescript/web/tools/InteractionManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/KeyboardEventManager.d.ts +2 -1
- package/lib/typescript/web/tools/KeyboardEventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/NodeManager.d.ts +3 -3
- package/lib/typescript/web/tools/NodeManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/PointerEventManager.d.ts +2 -1
- package/lib/typescript/web/tools/PointerEventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/PointerTracker.d.ts +1 -1
- package/lib/typescript/web/tools/PointerTracker.d.ts.map +1 -1
- package/lib/typescript/web/tools/Vector.d.ts +1 -1
- package/lib/typescript/web/tools/Vector.d.ts.map +1 -1
- package/lib/typescript/web/tools/VelocityTracker.d.ts +1 -1
- package/lib/typescript/web/tools/VelocityTracker.d.ts.map +1 -1
- package/lib/typescript/web/tools/WheelEventManager.d.ts +1 -1
- package/lib/typescript/web/tools/WheelEventManager.d.ts.map +1 -1
- package/lib/typescript/web/utils.d.ts +2 -1
- package/lib/typescript/web/utils.d.ts.map +1 -1
- package/package.json +11 -11
- package/react-native.config.js +0 -1
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h +0 -1
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerDetectorShadowNode.cpp +61 -30
- package/src/RNGestureHandlerModule.web.ts +2 -2
- package/src/RNGestureHandlerModule.windows.ts +8 -10
- package/src/components/GestureButtons.tsx +55 -43
- package/src/components/GestureButtonsProps.ts +22 -21
- package/src/components/GestureComponents.tsx +28 -35
- package/src/components/GestureComponents.web.tsx +9 -12
- package/src/components/GestureHandlerButton.tsx +150 -144
- package/src/components/GestureHandlerButton.web.tsx +219 -3
- package/src/components/GestureHandlerRootView.android.tsx +2 -1
- package/src/components/GestureHandlerRootView.tsx +5 -4
- package/src/components/GestureHandlerRootView.web.tsx +6 -4
- package/src/components/Pressable/Pressable.tsx +36 -28
- package/src/components/Pressable/PressableProps.tsx +9 -8
- package/src/components/Pressable/StateMachine.tsx +1 -1
- package/src/components/Pressable/index.ts +1 -1
- package/src/components/Pressable/stateDefinitions.ts +31 -5
- package/src/components/Pressable/utils.ts +16 -12
- package/src/components/ReanimatedDrawerLayout.tsx +415 -426
- package/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx +30 -30
- package/src/components/ReanimatedSwipeable/ReanimatedSwipeableProps.ts +10 -13
- package/src/components/ReanimatedSwipeable/index.ts +2 -2
- package/src/components/Text.tsx +51 -52
- package/src/components/touchables/ExtraButtonProps.ts +5 -5
- package/src/components/touchables/GenericTouchable.tsx +19 -25
- package/src/components/touchables/GenericTouchableProps.ts +4 -3
- package/src/components/touchables/TouchableHighlight.tsx +8 -8
- package/src/components/touchables/TouchableNativeFeedback.android.tsx +5 -3
- package/src/components/touchables/TouchableNativeFeedbackProps.tsx +2 -1
- package/src/components/touchables/TouchableOpacity.tsx +5 -9
- package/src/components/touchables/TouchableWithoutFeedback.tsx +17 -24
- package/src/components/touchables/index.ts +3 -3
- package/src/components/utils.ts +1 -1
- package/src/findNodeHandle.web.ts +12 -2
- package/src/handlers/FlingGestureHandler.ts +3 -5
- package/src/handlers/ForceTouchGestureHandler.ts +6 -6
- package/src/handlers/GestureHandlerEventPayload.ts +3 -3
- package/src/handlers/LongPressGestureHandler.ts +3 -5
- package/src/handlers/NativeViewGestureHandler.ts +5 -7
- package/src/handlers/PanGestureHandler.ts +3 -5
- package/src/handlers/PinchGestureHandler.ts +3 -5
- package/src/handlers/RotationGestureHandler.ts +3 -5
- package/src/handlers/TapGestureHandler.ts +3 -5
- package/src/handlers/createHandler.tsx +19 -22
- package/src/handlers/createNativeWrapper.tsx +12 -7
- package/src/handlers/gestureHandlerCommon.ts +31 -29
- package/src/handlers/gestureHandlerTypesCompat.ts +5 -5
- package/src/handlers/gestures/GestureDetector/Wrap.tsx +2 -1
- package/src/handlers/gestures/GestureDetector/Wrap.web.tsx +34 -30
- package/src/handlers/gestures/GestureDetector/attachHandlers.ts +14 -13
- package/src/handlers/gestures/GestureDetector/dropHandlers.ts +3 -3
- package/src/handlers/gestures/GestureDetector/index.tsx +11 -10
- package/src/handlers/gestures/GestureDetector/needsToReattach.ts +2 -2
- package/src/handlers/gestures/GestureDetector/types.ts +2 -2
- package/src/handlers/gestures/GestureDetector/updateHandlers.ts +7 -7
- package/src/handlers/gestures/GestureDetector/useAnimatedGesture.ts +11 -12
- package/src/handlers/gestures/GestureDetector/useDetectorUpdater.ts +9 -8
- package/src/handlers/gestures/GestureDetector/useMountReactions.ts +5 -4
- package/src/handlers/gestures/GestureDetector/useViewRefHandler.ts +5 -4
- package/src/handlers/gestures/GestureDetector/utils.ts +24 -14
- package/src/handlers/gestures/eventReceiver.ts +8 -8
- package/src/handlers/gestures/flingGesture.ts +9 -2
- package/src/handlers/gestures/forceTouchGesture.ts +7 -6
- package/src/handlers/gestures/gesture.ts +15 -9
- package/src/handlers/gestures/gestureComposition.ts +23 -1
- package/src/handlers/gestures/gestureObjects.ts +31 -5
- package/src/handlers/gestures/gestureStateManager.ts +6 -0
- package/src/handlers/gestures/gestureStateManager.web.ts +1 -1
- package/src/handlers/gestures/hoverGesture.ts +9 -2
- package/src/handlers/gestures/longPressGesture.ts +9 -2
- package/src/handlers/gestures/manualGesture.ts +7 -1
- package/src/handlers/gestures/nativeGesture.ts +9 -2
- package/src/handlers/gestures/panGesture.ts +13 -3
- package/src/handlers/gestures/pinchGesture.ts +11 -2
- package/src/handlers/gestures/reanimatedWrapper.ts +7 -6
- package/src/handlers/gestures/rotationGesture.ts +8 -2
- package/src/handlers/gestures/tapGesture.ts +9 -2
- package/src/handlers/handlersRegistry.ts +13 -6
- package/src/handlers/utils.ts +6 -5
- package/src/index.ts +111 -117
- package/src/jestUtils/index.ts +1 -1
- package/src/jestUtils/jestUtils.ts +45 -50
- package/src/mocks/GestureButtons.tsx +9 -5
- package/src/mocks/Touchables.tsx +6 -0
- package/src/mocks/gestureComponents.tsx +7 -22
- package/src/mountRegistry.ts +1 -1
- package/src/specs/NativeRNGestureHandlerModule.ts +3 -2
- package/src/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
- package/src/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
- package/src/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
- package/src/useIsScreenReaderEnabled.ts +31 -0
- package/src/v3/NativeProxy.ts +13 -5
- package/src/v3/NativeProxy.web.ts +13 -5
- package/src/v3/components/GestureButtons.tsx +52 -28
- package/src/v3/components/GestureButtonsProps.ts +38 -110
- package/src/v3/components/GestureComponents.tsx +29 -34
- package/src/v3/components/GestureComponents.web.tsx +7 -10
- package/src/v3/components/Pressable.tsx +33 -28
- package/src/v3/components/Touchable/Touchable.tsx +167 -0
- package/src/v3/components/Touchable/TouchableProps.ts +55 -0
- package/src/v3/components/index.ts +12 -13
- package/src/v3/createNativeWrapper.tsx +14 -16
- package/src/v3/detectors/GestureDetector.tsx +17 -9
- package/src/v3/detectors/HostGestureDetector.web.tsx +35 -22
- package/src/v3/detectors/NativeDetector.tsx +12 -10
- package/src/v3/detectors/ReanimatedNativeDetector.tsx +4 -5
- package/src/v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx +66 -34
- package/src/v3/detectors/VirtualDetector/VirtualDetector.tsx +32 -13
- package/src/v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts +2 -1
- package/src/v3/detectors/common.ts +40 -20
- package/src/v3/detectors/index.ts +1 -1
- package/src/v3/detectors/useEnsureGestureHandlerRootView.ts +1 -0
- package/src/v3/detectors/useNativeGestureRole.ts +8 -0
- package/src/v3/detectors/useNativeGestureRole.web.ts +42 -0
- package/src/v3/detectors/utils.ts +4 -3
- package/src/v3/gestureStateManager.ts +0 -6
- package/src/v3/gestureStateManager.web.ts +2 -17
- package/src/v3/hooks/callbacks/eventHandler.ts +87 -47
- package/src/v3/hooks/callbacks/useGestureEventHandler.ts +21 -9
- package/src/v3/hooks/callbacks/useReanimatedEventHandler.ts +42 -18
- package/src/v3/hooks/composition/index.ts +2 -2
- package/src/v3/hooks/composition/useCompetingGestures.ts +2 -1
- package/src/v3/hooks/composition/useComposedGesture.ts +6 -6
- package/src/v3/hooks/composition/useExclusiveGestures.ts +2 -1
- package/src/v3/hooks/composition/useSimultaneousGestures.ts +2 -1
- package/src/v3/hooks/gestures/fling/FlingTypes.ts +60 -0
- package/src/v3/hooks/gestures/fling/useFlingGesture.ts +11 -34
- package/src/v3/hooks/gestures/hover/HoverTypes.ts +76 -0
- package/src/v3/hooks/gestures/hover/useHoverGesture.ts +29 -56
- package/src/v3/hooks/gestures/index.ts +111 -32
- package/src/v3/hooks/gestures/longPress/{LongPressProperties.ts → LongPressTypes.ts} +39 -0
- package/src/v3/hooks/gestures/longPress/useLongPressGesture.ts +13 -44
- package/src/v3/hooks/gestures/manual/ManualTypes.ts +28 -0
- package/src/v3/hooks/gestures/manual/useManualGesture.ts +11 -28
- package/src/v3/hooks/gestures/native/NativeTypes.ts +62 -0
- package/src/v3/hooks/gestures/native/useNativeGesture.ts +11 -34
- package/src/v3/hooks/gestures/pan/{PanProperties.ts → PanTypes.ts} +55 -0
- package/src/v3/hooks/gestures/pan/usePanGesture.ts +34 -55
- package/src/v3/hooks/gestures/pinch/PinchTypes.ts +40 -0
- package/src/v3/hooks/gestures/pinch/usePinchGesture.ts +26 -41
- package/src/v3/hooks/gestures/rotation/RotationTypes.ts +41 -0
- package/src/v3/hooks/gestures/rotation/useRotationGesture.ts +24 -39
- package/src/v3/hooks/gestures/tap/{TapProperties.ts → TapTypes.ts} +32 -0
- package/src/v3/hooks/gestures/tap/useTapGesture.ts +14 -36
- package/src/v3/hooks/useGesture.ts +26 -18
- package/src/v3/hooks/useGestureCallbacks.ts +14 -9
- package/src/v3/hooks/utils/configUtils.ts +61 -22
- package/src/v3/hooks/utils/eventHandlersUtils.ts +23 -20
- package/src/v3/hooks/utils/eventUtils.ts +63 -21
- package/src/v3/hooks/utils/index.ts +15 -21
- package/src/v3/hooks/utils/propsWhiteList.ts +24 -12
- package/src/v3/hooks/utils/reanimatedUtils.ts +22 -10
- package/src/v3/hooks/utils/relationUtils.ts +3 -3
- package/src/v3/index.ts +51 -46
- package/src/v3/types/ConfigTypes.ts +48 -36
- package/src/v3/types/DetectorTypes.ts +29 -7
- package/src/v3/types/EventTypes.ts +27 -16
- package/src/v3/types/GestureTypes.ts +49 -22
- package/src/v3/types/NativeWrapperType.ts +21 -6
- package/src/v3/types/ReanimatedTypes.ts +1 -1
- package/src/v3/types/UtilityTypes.ts +7 -7
- package/src/v3/types/index.ts +32 -36
- package/src/web/Gestures.ts +6 -6
- package/src/web/constants.ts +1 -0
- package/src/web/detectors/RotationGestureDetector.ts +27 -14
- package/src/web/detectors/ScaleGestureDetector.ts +13 -7
- package/src/web/handlers/FlingGestureHandler.ts +6 -7
- package/src/web/handlers/GestureHandler.ts +102 -125
- package/src/web/handlers/HoverGestureHandler.ts +7 -10
- package/src/web/handlers/IGestureHandler.ts +8 -6
- package/src/web/handlers/LongPressGestureHandler.ts +4 -5
- package/src/web/handlers/ManualGestureHandler.ts +5 -3
- package/src/web/handlers/NativeViewGestureHandler.ts +128 -25
- package/src/web/handlers/PanGestureHandler.ts +9 -7
- package/src/web/handlers/PinchGestureHandler.ts +22 -22
- package/src/web/handlers/RotationGestureHandler.ts +34 -47
- package/src/web/handlers/TapGestureHandler.ts +4 -4
- package/src/web/interfaces.ts +42 -35
- package/src/web/tools/EventManager.ts +1 -1
- package/src/web/tools/GestureHandlerDelegate.ts +4 -0
- package/src/web/tools/GestureHandlerOrchestrator.ts +11 -4
- package/src/web/tools/GestureHandlerWebDelegate.ts +82 -23
- package/src/web/tools/GestureLifecycleEvents.ts +14 -0
- package/src/web/tools/InteractionManager.ts +3 -2
- package/src/web/tools/KeyboardEventManager.ts +3 -2
- package/src/web/tools/NodeManager.ts +2 -2
- package/src/web/tools/PointerEventManager.ts +30 -9
- package/src/web/tools/PointerTracker.ts +1 -1
- package/src/web/tools/Vector.ts +1 -1
- package/src/web/tools/VelocityTracker.ts +1 -1
- package/src/web/tools/WheelEventManager.ts +3 -2
- package/src/web/utils.ts +28 -2
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonWrapperViewManager.kt +0 -30
- package/apple/RNGestureHandlerButtonManager.h +0 -5
- package/apple/RNGestureHandlerButtonManager.mm +0 -60
- package/apple/RNGestureHandlerButtonWrapper.h +0 -19
- package/apple/RNGestureHandlerButtonWrapper.mm +0 -46
- package/lib/commonjs/ActionType.js +0 -22
- package/lib/commonjs/ActionType.js.map +0 -1
- package/lib/commonjs/Directions.js +0 -38
- package/lib/commonjs/Directions.js.map +0 -1
- package/lib/commonjs/GestureHandlerRootViewContext.js +0 -10
- package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
- package/lib/commonjs/PlatformConstants.js +0 -9
- package/lib/commonjs/PlatformConstants.js.map +0 -1
- package/lib/commonjs/PlatformConstants.web.js +0 -12
- package/lib/commonjs/PlatformConstants.web.js.map +0 -1
- package/lib/commonjs/PointerType.js +0 -15
- package/lib/commonjs/PointerType.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.js +0 -12
- package/lib/commonjs/RNGestureHandlerModule.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.web.js +0 -73
- package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -53
- package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
- package/lib/commonjs/RNRenderer.js +0 -14
- package/lib/commonjs/RNRenderer.js.map +0 -1
- package/lib/commonjs/RNRenderer.web.js +0 -10
- package/lib/commonjs/RNRenderer.web.js.map +0 -1
- package/lib/commonjs/State.js +0 -19
- package/lib/commonjs/State.js.map +0 -1
- package/lib/commonjs/TouchEventType.js +0 -16
- package/lib/commonjs/TouchEventType.js.map +0 -1
- package/lib/commonjs/components/GestureButtons.js +0 -220
- package/lib/commonjs/components/GestureButtons.js.map +0 -1
- package/lib/commonjs/components/GestureButtonsProps.js +0 -6
- package/lib/commonjs/components/GestureButtonsProps.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.js +0 -127
- package/lib/commonjs/components/GestureComponents.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.web.js +0 -61
- package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerButton.js +0 -144
- package/lib/commonjs/components/GestureHandlerButton.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerButton.web.js +0 -16
- package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -32
- package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.js +0 -30
- package/lib/commonjs/components/GestureHandlerRootView.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -30
- package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
- package/lib/commonjs/components/Pressable/Pressable.js +0 -270
- package/lib/commonjs/components/Pressable/Pressable.js.map +0 -1
- package/lib/commonjs/components/Pressable/PressableProps.js +0 -6
- package/lib/commonjs/components/Pressable/PressableProps.js.map +0 -1
- package/lib/commonjs/components/Pressable/StateMachine.js +0 -44
- package/lib/commonjs/components/Pressable/StateMachine.js.map +0 -1
- package/lib/commonjs/components/Pressable/index.js +0 -14
- package/lib/commonjs/components/Pressable/index.js.map +0 -1
- package/lib/commonjs/components/Pressable/stateDefinitions.js +0 -88
- package/lib/commonjs/components/Pressable/stateDefinitions.js.map +0 -1
- package/lib/commonjs/components/Pressable/utils.js +0 -92
- package/lib/commonjs/components/Pressable/utils.js.map +0 -1
- package/lib/commonjs/components/ReanimatedDrawerLayout.js +0 -377
- package/lib/commonjs/components/ReanimatedDrawerLayout.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js +0 -347
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js +0 -12
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/index.js +0 -21
- package/lib/commonjs/components/ReanimatedSwipeable/index.js.map +0 -1
- package/lib/commonjs/components/Text.js +0 -60
- package/lib/commonjs/components/Text.js.map +0 -1
- package/lib/commonjs/components/touchables/ExtraButtonProps.js +0 -2
- package/lib/commonjs/components/touchables/ExtraButtonProps.js.map +0 -1
- package/lib/commonjs/components/touchables/GenericTouchable.js +0 -245
- package/lib/commonjs/components/touchables/GenericTouchable.js.map +0 -1
- package/lib/commonjs/components/touchables/GenericTouchableProps.js +0 -6
- package/lib/commonjs/components/touchables/GenericTouchableProps.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -93
- package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -84
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -13
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js +0 -6
- package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableOpacity.js +0 -65
- package/lib/commonjs/components/touchables/TouchableOpacity.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +0 -33
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +0 -1
- package/lib/commonjs/components/touchables/index.js +0 -35
- package/lib/commonjs/components/touchables/index.js.map +0 -1
- package/lib/commonjs/components/utils.js +0 -17
- package/lib/commonjs/components/utils.js.map +0 -1
- package/lib/commonjs/findNodeHandle.js +0 -9
- package/lib/commonjs/findNodeHandle.js.map +0 -1
- package/lib/commonjs/findNodeHandle.web.js +0 -39
- package/lib/commonjs/findNodeHandle.web.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.js +0 -51
- package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.web.js +0 -14
- package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
- package/lib/commonjs/ghQueueMicrotask.js +0 -10
- package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
- package/lib/commonjs/global.d.js +0 -6
- package/lib/commonjs/global.d.js.map +0 -1
- package/lib/commonjs/globals.js +0 -6
- package/lib/commonjs/globals.js.map +0 -1
- package/lib/commonjs/handlers/FlingGestureHandler.js +0 -31
- package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -46
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/GestureHandlerEventPayload.js +0 -6
- package/lib/commonjs/handlers/GestureHandlerEventPayload.js.map +0 -1
- package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -33
- package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/NativeViewGestureHandler.js +0 -32
- package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PanGestureHandler.js +0 -112
- package/lib/commonjs/handlers/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PinchGestureHandler.js +0 -29
- package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.js +0 -13
- package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -11
- package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
- package/lib/commonjs/handlers/RotationGestureHandler.js +0 -29
- package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/TapGestureHandler.js +0 -33
- package/lib/commonjs/handlers/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/createHandler.js +0 -334
- package/lib/commonjs/handlers/createHandler.js.map +0 -1
- package/lib/commonjs/handlers/createNativeWrapper.js +0 -78
- package/lib/commonjs/handlers/createNativeWrapper.js.map +0 -1
- package/lib/commonjs/handlers/customDirectEventTypes.js +0 -13
- package/lib/commonjs/handlers/customDirectEventTypes.js.map +0 -1
- package/lib/commonjs/handlers/customDirectEventTypes.web.js +0 -10
- package/lib/commonjs/handlers/customDirectEventTypes.web.js.map +0 -1
- package/lib/commonjs/handlers/gestureHandlerCommon.js +0 -27
- package/lib/commonjs/handlers/gestureHandlerCommon.js.map +0 -1
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js +0 -32
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js +0 -68
- package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js +0 -20
- package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/index.js +0 -122
- package/lib/commonjs/handlers/gestures/GestureDetector/index.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js +0 -22
- package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/types.js +0 -6
- package/lib/commonjs/handlers/gestures/GestureDetector/types.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js +0 -67
- package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js +0 -143
- package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js +0 -47
- package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/utils.js +0 -145
- package/lib/commonjs/handlers/gestures/GestureDetector/utils.js.map +0 -1
- package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -106
- package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
- package/lib/commonjs/handlers/gestures/flingGesture.js +0 -37
- package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -80
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gesture.js +0 -344
- package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -90
- package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -132
- package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -50
- package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -36
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
- package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -57
- package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -46
- package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/manualGesture.js +0 -25
- package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
- package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/panGesture.js +0 -197
- package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -38
- package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -32
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
- package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -38
- package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/tapGesture.js +0 -87
- package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
- package/lib/commonjs/handlers/getNextHandlerTag.js +0 -11
- package/lib/commonjs/handlers/getNextHandlerTag.js.map +0 -1
- package/lib/commonjs/handlers/handlersRegistry.js +0 -74
- package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
- package/lib/commonjs/handlers/utils.js +0 -79
- package/lib/commonjs/handlers/utils.js.map +0 -1
- package/lib/commonjs/index.js +0 -277
- package/lib/commonjs/index.js.map +0 -1
- package/lib/commonjs/init.js +0 -11
- package/lib/commonjs/init.js.map +0 -1
- package/lib/commonjs/jestUtils/index.js +0 -19
- package/lib/commonjs/jestUtils/index.js.map +0 -1
- package/lib/commonjs/jestUtils/jestUtils.js +0 -350
- package/lib/commonjs/jestUtils/jestUtils.js.map +0 -1
- package/lib/commonjs/mocks/GestureButtons.js +0 -23
- package/lib/commonjs/mocks/GestureButtons.js.map +0 -1
- package/lib/commonjs/mocks/Pressable.js +0 -13
- package/lib/commonjs/mocks/Pressable.js.map +0 -1
- package/lib/commonjs/mocks/gestureComponents.js +0 -19
- package/lib/commonjs/mocks/gestureComponents.js.map +0 -1
- package/lib/commonjs/mocks/hostDetector.js +0 -10
- package/lib/commonjs/mocks/hostDetector.js.map +0 -1
- package/lib/commonjs/mocks/module.js +0 -30
- package/lib/commonjs/mocks/module.js.map +0 -1
- package/lib/commonjs/mountRegistry.js +0 -37
- package/lib/commonjs/mountRegistry.js.map +0 -1
- package/lib/commonjs/package.json +0 -1
- package/lib/commonjs/specs/NativeRNGestureHandlerModule.js +0 -9
- package/lib/commonjs/specs/NativeRNGestureHandlerModule.js.map +0 -1
- package/lib/commonjs/specs/RNGestureHandlerButtonNativeComponent.ts +0 -27
- package/lib/commonjs/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
- package/lib/commonjs/specs/RNGestureHandlerDetectorNativeComponent.ts +0 -74
- package/lib/commonjs/specs/RNGestureHandlerRootViewNativeComponent.ts +0 -15
- package/lib/commonjs/typeUtils.js +0 -2
- package/lib/commonjs/typeUtils.js.map +0 -1
- package/lib/commonjs/useIsomorphicLayoutEffect.js +0 -20
- package/lib/commonjs/useIsomorphicLayoutEffect.js.map +0 -1
- package/lib/commonjs/utils.js +0 -83
- package/lib/commonjs/utils.js.map +0 -1
- package/lib/commonjs/v3/NativeProxy.js +0 -48
- package/lib/commonjs/v3/NativeProxy.js.map +0 -1
- package/lib/commonjs/v3/NativeProxy.web.js +0 -29
- package/lib/commonjs/v3/NativeProxy.web.js.map +0 -1
- package/lib/commonjs/v3/components/GestureButtons.js +0 -153
- package/lib/commonjs/v3/components/GestureButtons.js.map +0 -1
- package/lib/commonjs/v3/components/GestureButtonsProps.js +0 -6
- package/lib/commonjs/v3/components/GestureButtonsProps.js.map +0 -1
- package/lib/commonjs/v3/components/GestureComponents.js +0 -124
- package/lib/commonjs/v3/components/GestureComponents.js.map +0 -1
- package/lib/commonjs/v3/components/GestureComponents.web.js +0 -39
- package/lib/commonjs/v3/components/GestureComponents.web.js.map +0 -1
- package/lib/commonjs/v3/components/Pressable.js +0 -283
- package/lib/commonjs/v3/components/Pressable.js.map +0 -1
- package/lib/commonjs/v3/components/index.js +0 -76
- package/lib/commonjs/v3/components/index.js.map +0 -1
- package/lib/commonjs/v3/createNativeWrapper.js +0 -70
- package/lib/commonjs/v3/createNativeWrapper.js.map +0 -1
- package/lib/commonjs/v3/detectors/GestureDetector.js +0 -24
- package/lib/commonjs/v3/detectors/GestureDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/HostGestureDetector.js +0 -11
- package/lib/commonjs/v3/detectors/HostGestureDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/HostGestureDetector.web.js +0 -113
- package/lib/commonjs/v3/detectors/HostGestureDetector.web.js.map +0 -1
- package/lib/commonjs/v3/detectors/NativeDetector.js +0 -76
- package/lib/commonjs/v3/detectors/NativeDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js +0 -74
- package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js +0 -11
- package/lib/commonjs/v3/detectors/ReanimatedNativeDetector.web.js.map +0 -1
- package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +0 -167
- package/lib/commonjs/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js +0 -74
- package/lib/commonjs/v3/detectors/VirtualDetector/VirtualDetector.js.map +0 -1
- package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js +0 -19
- package/lib/commonjs/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +0 -1
- package/lib/commonjs/v3/detectors/common.js +0 -22
- package/lib/commonjs/v3/detectors/common.js.map +0 -1
- package/lib/commonjs/v3/detectors/index.js +0 -34
- package/lib/commonjs/v3/detectors/index.js.map +0 -1
- package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js +0 -17
- package/lib/commonjs/v3/detectors/useEnsureGestureHandlerRootView.js.map +0 -1
- package/lib/commonjs/v3/detectors/utils.js +0 -130
- package/lib/commonjs/v3/detectors/utils.js.map +0 -1
- package/lib/commonjs/v3/gestureStateManager.js +0 -42
- package/lib/commonjs/v3/gestureStateManager.js.map +0 -1
- package/lib/commonjs/v3/gestureStateManager.web.js +0 -54
- package/lib/commonjs/v3/gestureStateManager.web.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/eventHandler.js +0 -80
- package/lib/commonjs/v3/hooks/callbacks/eventHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js +0 -50
- package/lib/commonjs/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js +0 -22
- package/lib/commonjs/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/updateHandler.js +0 -30
- package/lib/commonjs/v3/hooks/callbacks/updateHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js +0 -21
- package/lib/commonjs/v3/hooks/callbacks/useGestureEventHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js +0 -39
- package/lib/commonjs/v3/hooks/callbacks/useReanimatedEventHandler.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/index.js +0 -27
- package/lib/commonjs/v3/hooks/composition/index.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js +0 -12
- package/lib/commonjs/v3/hooks/composition/useCompetingGestures.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/useComposedGesture.js +0 -52
- package/lib/commonjs/v3/hooks/composition/useComposedGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js +0 -14
- package/lib/commonjs/v3/hooks/composition/useExclusiveGestures.js.map +0 -1
- package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js +0 -13
- package/lib/commonjs/v3/hooks/composition/useSimultaneousGestures.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js +0 -14
- package/lib/commonjs/v3/hooks/gestures/fling/useFlingGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/hover/HoverProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js +0 -27
- package/lib/commonjs/v3/hooks/gestures/hover/useHoverGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/index.js +0 -69
- package/lib/commonjs/v3/hooks/gestures/index.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js +0 -21
- package/lib/commonjs/v3/hooks/gestures/longPress/useLongPressGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js +0 -2
- package/lib/commonjs/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js +0 -14
- package/lib/commonjs/v3/hooks/gestures/manual/useManualGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js +0 -14
- package/lib/commonjs/v3/hooks/gestures/native/useNativeGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js +0 -79
- package/lib/commonjs/v3/hooks/gestures/pan/usePanGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
- package/lib/commonjs/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js +0 -27
- package/lib/commonjs/v3/hooks/gestures/pinch/usePinchGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
- package/lib/commonjs/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js +0 -26
- package/lib/commonjs/v3/hooks/gestures/rotation/useRotationGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js +0 -8
- package/lib/commonjs/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
- package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js +0 -15
- package/lib/commonjs/v3/hooks/gestures/tap/useTapGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/index.js +0 -28
- package/lib/commonjs/v3/hooks/index.js.map +0 -1
- package/lib/commonjs/v3/hooks/useGesture.js +0 -84
- package/lib/commonjs/v3/hooks/useGesture.js.map +0 -1
- package/lib/commonjs/v3/hooks/useGestureCallbacks.js +0 -53
- package/lib/commonjs/v3/hooks/useGestureCallbacks.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/configUtils.js +0 -73
- package/lib/commonjs/v3/hooks/utils/configUtils.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js +0 -96
- package/lib/commonjs/v3/hooks/utils/eventHandlersUtils.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/eventUtils.js +0 -73
- package/lib/commonjs/v3/hooks/utils/eventUtils.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/index.js +0 -168
- package/lib/commonjs/v3/hooks/utils/index.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/propsWhiteList.js +0 -31
- package/lib/commonjs/v3/hooks/utils/propsWhiteList.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js +0 -85
- package/lib/commonjs/v3/hooks/utils/reanimatedUtils.js.map +0 -1
- package/lib/commonjs/v3/hooks/utils/relationUtils.js +0 -51
- package/lib/commonjs/v3/hooks/utils/relationUtils.js.map +0 -1
- package/lib/commonjs/v3/index.js +0 -180
- package/lib/commonjs/v3/index.js.map +0 -1
- package/lib/commonjs/v3/types/ConfigTypes.js +0 -6
- package/lib/commonjs/v3/types/ConfigTypes.js.map +0 -1
- package/lib/commonjs/v3/types/DetectorTypes.js +0 -6
- package/lib/commonjs/v3/types/DetectorTypes.js.map +0 -1
- package/lib/commonjs/v3/types/EventTypes.js +0 -6
- package/lib/commonjs/v3/types/EventTypes.js.map +0 -1
- package/lib/commonjs/v3/types/GestureTypes.js +0 -28
- package/lib/commonjs/v3/types/GestureTypes.js.map +0 -1
- package/lib/commonjs/v3/types/NativeWrapperType.js +0 -6
- package/lib/commonjs/v3/types/NativeWrapperType.js.map +0 -1
- package/lib/commonjs/v3/types/ReanimatedTypes.js +0 -2
- package/lib/commonjs/v3/types/ReanimatedTypes.js.map +0 -1
- package/lib/commonjs/v3/types/UtilityTypes.js +0 -6
- package/lib/commonjs/v3/types/UtilityTypes.js.map +0 -1
- package/lib/commonjs/v3/types/index.js +0 -19
- package/lib/commonjs/v3/types/index.js.map +0 -1
- package/lib/commonjs/web/Gestures.js +0 -30
- package/lib/commonjs/web/Gestures.js.map +0 -1
- package/lib/commonjs/web/constants.js +0 -9
- package/lib/commonjs/web/constants.js.map +0 -1
- package/lib/commonjs/web/detectors/RotationGestureDetector.js +0 -124
- package/lib/commonjs/web/detectors/RotationGestureDetector.js.map +0 -1
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js +0 -111
- package/lib/commonjs/web/detectors/ScaleGestureDetector.js.map +0 -1
- package/lib/commonjs/web/handlers/FlingGestureHandler.js +0 -141
- package/lib/commonjs/web/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/GestureHandler.js +0 -857
- package/lib/commonjs/web/handlers/GestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/HoverGestureHandler.js +0 -50
- package/lib/commonjs/web/handlers/HoverGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/IGestureHandler.js +0 -2
- package/lib/commonjs/web/handlers/IGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js +0 -144
- package/lib/commonjs/web/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/ManualGestureHandler.js +0 -42
- package/lib/commonjs/web/handlers/ManualGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js +0 -147
- package/lib/commonjs/web/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/PanGestureHandler.js +0 -386
- package/lib/commonjs/web/handlers/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/PinchGestureHandler.js +0 -126
- package/lib/commonjs/web/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/RotationGestureHandler.js +0 -133
- package/lib/commonjs/web/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/web/handlers/TapGestureHandler.js +0 -213
- package/lib/commonjs/web/handlers/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/web/interfaces.js +0 -25
- package/lib/commonjs/web/interfaces.js.map +0 -1
- package/lib/commonjs/web/tools/CircularBuffer.js +0 -40
- package/lib/commonjs/web/tools/CircularBuffer.js.map +0 -1
- package/lib/commonjs/web/tools/EventManager.js +0 -102
- package/lib/commonjs/web/tools/EventManager.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js +0 -2
- package/lib/commonjs/web/tools/GestureHandlerDelegate.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js +0 -269
- package/lib/commonjs/web/tools/GestureHandlerOrchestrator.js.map +0 -1
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js +0 -219
- package/lib/commonjs/web/tools/GestureHandlerWebDelegate.js.map +0 -1
- package/lib/commonjs/web/tools/InteractionManager.js +0 -83
- package/lib/commonjs/web/tools/InteractionManager.js.map +0 -1
- package/lib/commonjs/web/tools/KeyboardEventManager.js +0 -108
- package/lib/commonjs/web/tools/KeyboardEventManager.js.map +0 -1
- package/lib/commonjs/web/tools/LeastSquareSolver.js +0 -159
- package/lib/commonjs/web/tools/LeastSquareSolver.js.map +0 -1
- package/lib/commonjs/web/tools/NodeManager.js +0 -45
- package/lib/commonjs/web/tools/NodeManager.js.map +0 -1
- package/lib/commonjs/web/tools/PointerEventManager.js +0 -186
- package/lib/commonjs/web/tools/PointerEventManager.js.map +0 -1
- package/lib/commonjs/web/tools/PointerTracker.js +0 -192
- package/lib/commonjs/web/tools/PointerTracker.js.map +0 -1
- package/lib/commonjs/web/tools/Vector.js +0 -37
- package/lib/commonjs/web/tools/Vector.js.map +0 -1
- package/lib/commonjs/web/tools/VelocityTracker.js +0 -85
- package/lib/commonjs/web/tools/VelocityTracker.js.map +0 -1
- package/lib/commonjs/web/tools/WheelEventManager.js +0 -55
- package/lib/commonjs/web/tools/WheelEventManager.js.map +0 -1
- package/lib/commonjs/web/utils.js +0 -235
- package/lib/commonjs/web/utils.js.map +0 -1
- package/lib/module/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
- package/lib/module/v3/hooks/callbacks/stateChangeHandler.js +0 -46
- package/lib/module/v3/hooks/callbacks/stateChangeHandler.js.map +0 -1
- package/lib/module/v3/hooks/callbacks/touchEventHandler.js +0 -18
- package/lib/module/v3/hooks/callbacks/touchEventHandler.js.map +0 -1
- package/lib/module/v3/hooks/callbacks/updateHandler.js +0 -26
- package/lib/module/v3/hooks/callbacks/updateHandler.js.map +0 -1
- package/lib/module/v3/hooks/gestures/fling/FlingProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/longPress/LongPressProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/manual/ManualProperties.js +0 -2
- package/lib/module/v3/hooks/gestures/manual/ManualProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/native/NativeProperties.js +0 -4
- package/lib/module/v3/hooks/gestures/native/NativeProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/pan/PanProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js +0 -2
- package/lib/module/v3/hooks/gestures/pinch/PinchProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js +0 -2
- package/lib/module/v3/hooks/gestures/rotation/RotationProperties.js.map +0 -1
- package/lib/module/v3/hooks/gestures/tap/TapProperties.js.map +0 -1
- package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts +0 -6
- package/lib/typescript/specs/RNGestureHandlerButtonWrapperNativeComponent.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts +0 -4
- package/lib/typescript/v3/hooks/callbacks/stateChangeHandler.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts +0 -3
- package/lib/typescript/v3/hooks/callbacks/touchEventHandler.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts +0 -4
- package/lib/typescript/v3/hooks/callbacks/updateHandler.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts +0 -23
- package/lib/typescript/v3/hooks/gestures/fling/FlingProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts +0 -18
- package/lib/typescript/v3/hooks/gestures/hover/HoverProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/longPress/LongPressProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts +0 -2
- package/lib/typescript/v3/hooks/gestures/manual/ManualProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts +0 -16
- package/lib/typescript/v3/hooks/gestures/native/NativeProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/pan/PanProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts +0 -2
- package/lib/typescript/v3/hooks/gestures/pinch/PinchProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts +0 -2
- package/lib/typescript/v3/hooks/gestures/rotation/RotationProperties.d.ts.map +0 -1
- package/lib/typescript/v3/hooks/gestures/tap/TapProperties.d.ts.map +0 -1
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperComponentDescriptor.h +0 -32
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.cpp +0 -102
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperShadowNode.h +0 -56
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerButtonWrapperState.h +0 -32
- package/src/specs/RNGestureHandlerButtonWrapperNativeComponent.ts +0 -11
- package/src/v3/hooks/callbacks/stateChangeHandler.ts +0 -70
- package/src/v3/hooks/callbacks/touchEventHandler.ts +0 -32
- package/src/v3/hooks/callbacks/updateHandler.ts +0 -53
- package/src/v3/hooks/gestures/fling/FlingProperties.ts +0 -26
- package/src/v3/hooks/gestures/hover/HoverProperties.ts +0 -22
- package/src/v3/hooks/gestures/manual/ManualProperties.ts +0 -1
- package/src/v3/hooks/gestures/native/NativeProperties.ts +0 -19
- package/src/v3/hooks/gestures/pinch/PinchProperties.ts +0 -1
- package/src/v3/hooks/gestures/rotation/RotationProperties.ts +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/GestureHandler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"GestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/GestureHandler.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { AdaptedEvent } from '../interfaces';
|
|
1
|
+
import type { AdaptedEvent } from '../interfaces';
|
|
2
|
+
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
2
3
|
import GestureHandler from './GestureHandler';
|
|
3
|
-
import
|
|
4
|
-
import IGestureHandler from './IGestureHandler';
|
|
4
|
+
import type IGestureHandler from './IGestureHandler';
|
|
5
5
|
export default class HoverGestureHandler extends GestureHandler {
|
|
6
|
+
readonly isContinuous = true;
|
|
6
7
|
private stylusData;
|
|
7
8
|
constructor(delegate: GestureHandlerDelegate<unknown, IGestureHandler>);
|
|
8
9
|
protected transformNativeEvent(): Record<string, unknown>;
|
|
9
10
|
protected onPointerMoveOver(event: AdaptedEvent): void;
|
|
10
11
|
protected onPointerMoveOut(event: AdaptedEvent): void;
|
|
11
12
|
protected onPointerMove(event: AdaptedEvent): void;
|
|
12
|
-
protected onPointerCancel(event: AdaptedEvent): void;
|
|
13
13
|
}
|
|
14
14
|
//# sourceMappingURL=HoverGestureHandler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HoverGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/HoverGestureHandler.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"HoverGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/HoverGestureHandler.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAE9E,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAErD,MAAM,CAAC,OAAO,OAAO,mBAAoB,SAAQ,cAAc;IAC7D,SAAyB,YAAY,QAAQ;IAE7C,OAAO,CAAC,UAAU,CAAyB;gBAGzC,QAAQ,EAAE,sBAAsB,CAAC,OAAO,EAAE,eAAe,CAAC;cAMzC,oBAAoB,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;cAO/C,iBAAiB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAa5C,gBAAgB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAS3C,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;CAM5D"}
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
import type { PointerType } from '../../PointerType';
|
|
2
1
|
import type { ActiveCursor, MouseButton, TouchAction, UserSelect } from '../../handlers/gestureHandlerCommon';
|
|
2
|
+
import type { PointerType } from '../../PointerType';
|
|
3
3
|
import type { State } from '../../State';
|
|
4
|
+
import type { SingleGestureName } from '../../v3/types';
|
|
4
5
|
import type { Config } from '../interfaces';
|
|
5
6
|
import type EventManager from '../tools/EventManager';
|
|
6
7
|
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
7
8
|
import type PointerTracker from '../tools/PointerTracker';
|
|
8
|
-
import { SingleGestureName } from '../../v3/types';
|
|
9
9
|
export default interface IGestureHandler {
|
|
10
10
|
attached: boolean;
|
|
11
11
|
active: boolean;
|
|
12
12
|
activationIndex: number;
|
|
13
13
|
awaiting: boolean;
|
|
14
14
|
handlerTag: number;
|
|
15
|
-
readonly testID?: string;
|
|
15
|
+
readonly testID?: string | undefined;
|
|
16
16
|
readonly delegate: GestureHandlerDelegate<unknown, this>;
|
|
17
17
|
readonly tracker: PointerTracker;
|
|
18
18
|
readonly name: SingleGestureName;
|
|
19
|
+
readonly isContinuous: boolean;
|
|
19
20
|
state: State;
|
|
20
21
|
shouldCancelWhenOutside: boolean;
|
|
21
22
|
shouldResetProgress: boolean;
|
|
22
23
|
readonly enabled: boolean | null;
|
|
23
24
|
readonly pointerType: PointerType;
|
|
24
25
|
enableContextMenu: boolean;
|
|
25
|
-
readonly activeCursor?: ActiveCursor;
|
|
26
|
-
readonly touchAction?: TouchAction;
|
|
27
|
-
readonly userSelect?: UserSelect;
|
|
26
|
+
readonly activeCursor?: ActiveCursor | undefined;
|
|
27
|
+
readonly touchAction?: TouchAction | undefined;
|
|
28
|
+
readonly userSelect?: UserSelect | undefined;
|
|
28
29
|
attachEventManager: (manager: EventManager<unknown>) => void;
|
|
29
30
|
isButtonInConfig: (mouseButton: MouseButton | undefined) => boolean | number | undefined;
|
|
30
31
|
getTrackedPointersID: () => number[];
|
|
@@ -39,6 +40,7 @@ export default interface IGestureHandler {
|
|
|
39
40
|
shouldRequireToWaitForFailure: (handler: IGestureHandler) => boolean;
|
|
40
41
|
shouldRecognizeSimultaneously: (handler: IGestureHandler) => boolean;
|
|
41
42
|
shouldBeCancelledByOther: (handler: IGestureHandler) => boolean;
|
|
43
|
+
shouldBeginWithRecordedHandlers: (recorded: IGestureHandler[]) => boolean;
|
|
42
44
|
shouldAttachGestureToChildView: () => boolean;
|
|
43
45
|
sendEvent: (newState: State, oldState: State) => void;
|
|
44
46
|
setGestureConfig: (config: Config) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/IGestureHandler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"IGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/IGestureHandler.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ActionType } from '../../ActionType';
|
|
1
|
+
import type { ActionType } from '../../ActionType';
|
|
2
2
|
import { State } from '../../State';
|
|
3
|
-
import { AdaptedEvent, Config, PropsRef } from '../interfaces';
|
|
4
|
-
import { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
3
|
+
import type { AdaptedEvent, Config, PropsRef } from '../interfaces';
|
|
4
|
+
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
5
5
|
import GestureHandler from './GestureHandler';
|
|
6
|
-
import IGestureHandler from './IGestureHandler';
|
|
6
|
+
import type IGestureHandler from './IGestureHandler';
|
|
7
7
|
export default class LongPressGestureHandler extends GestureHandler {
|
|
8
8
|
private minDurationMs;
|
|
9
9
|
private defaultMaxDistSq;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LongPressGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/LongPressGestureHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"LongPressGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/LongPressGestureHandler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAMrD,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,cAAc;IACjE,OAAO,CAAC,aAAa,CAA2B;IAChD,OAAO,CAAC,gBAAgB,CAAwC;IAEhE,OAAO,CAAC,SAAS,CAAyB;IAC1C,OAAO,CAAC,gBAAgB,CAAK;IAC7B,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,MAAM,CAAK;IAEnB,OAAO,CAAC,SAAS,CAAK;IACtB,OAAO,CAAC,YAAY,CAAK;IAEzB,OAAO,CAAC,iBAAiB,CAAqB;gBAG5C,QAAQ,EAAE,sBAAsB,CAAC,OAAO,EAAE,eAAe,CAAC;IAO5C,IAAI,CAClB,GAAG,EAAE,MAAM,EACX,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC,QAAQ,CAAC,EACnC,UAAU,EAAE,UAAU;cASL,oBAAoB;;;IAOvB,mBAAmB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;cAgBtC,WAAW,IAAI,IAAI;cAMnB,aAAa,CAAC,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,GAAG,IAAI;cAIvD,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAcxC,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAiBvC,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAMxC,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAM/C,WAAW,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAWtC,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAY7D,OAAO,CAAC,QAAQ;IAWhB,OAAO,CAAC,WAAW;IAcnB,OAAO,CAAC,iBAAiB;CAiB1B"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { AdaptedEvent } from '../interfaces';
|
|
2
|
-
import { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
1
|
+
import type { AdaptedEvent } from '../interfaces';
|
|
2
|
+
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
3
3
|
import GestureHandler from './GestureHandler';
|
|
4
|
-
import IGestureHandler from './IGestureHandler';
|
|
4
|
+
import type IGestureHandler from './IGestureHandler';
|
|
5
5
|
export default class ManualGestureHandler extends GestureHandler {
|
|
6
|
+
readonly isContinuous = true;
|
|
6
7
|
constructor(delegate: GestureHandlerDelegate<unknown, IGestureHandler>);
|
|
7
8
|
protected onPointerDown(event: AdaptedEvent): void;
|
|
8
9
|
protected onPointerAdd(event: AdaptedEvent): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ManualGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/ManualGestureHandler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"ManualGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/ManualGestureHandler.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAErD,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,cAAc;IAC9D,SAAyB,YAAY,QAAQ;gBAG3C,QAAQ,EAAE,sBAAsB,CAAC,OAAO,EAAE,eAAe,CAAC;cAMzC,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAMxC,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAKvC,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAKxC,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAK/C,WAAW,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAKtC,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;CAI9D"}
|
|
@@ -1,15 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type ActionType } from '../../ActionType';
|
|
2
|
+
import type { NativeHandlerData } from '../../v3/hooks/gestures/native/NativeTypes';
|
|
3
|
+
import type { HandlerData } from '../../v3/types';
|
|
4
|
+
import type { AdaptedEvent, Config, PropsRef } from '../interfaces';
|
|
5
|
+
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
2
6
|
import GestureHandler from './GestureHandler';
|
|
3
|
-
import
|
|
4
|
-
import { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
5
|
-
import IGestureHandler from './IGestureHandler';
|
|
7
|
+
import type IGestureHandler from './IGestureHandler';
|
|
6
8
|
export default class NativeViewGestureHandler extends GestureHandler {
|
|
7
|
-
|
|
9
|
+
readonly isContinuous = true;
|
|
10
|
+
private role;
|
|
8
11
|
private shouldActivateOnStart;
|
|
9
12
|
private disallowInterruption;
|
|
13
|
+
private yieldsToContinuousGestures;
|
|
10
14
|
private startX;
|
|
11
15
|
private startY;
|
|
12
16
|
private minDistSq;
|
|
17
|
+
private lastActiveHandlerData;
|
|
13
18
|
constructor(delegate: GestureHandlerDelegate<unknown, IGestureHandler>);
|
|
14
19
|
init(ref: number, propsRef: React.RefObject<PropsRef>, actionType: ActionType): void;
|
|
15
20
|
updateGestureConfig(config: Config): void;
|
|
@@ -22,11 +27,16 @@ export default class NativeViewGestureHandler extends GestureHandler {
|
|
|
22
27
|
protected onPointerUp(event: AdaptedEvent): void;
|
|
23
28
|
protected onPointerRemove(event: AdaptedEvent): void;
|
|
24
29
|
private onUp;
|
|
25
|
-
shouldRecognizeSimultaneously(handler:
|
|
26
|
-
|
|
30
|
+
shouldRecognizeSimultaneously(handler: IGestureHandler): boolean;
|
|
31
|
+
detach(): void;
|
|
32
|
+
shouldBeCancelledByOther(handler: IGestureHandler): boolean;
|
|
27
33
|
shouldAttachGestureToChildView(): boolean;
|
|
28
34
|
disallowsInterruption(): boolean;
|
|
29
35
|
isButton(): boolean;
|
|
36
|
+
shouldBeginWithRecordedHandlers(recorded: IGestureHandler[]): boolean;
|
|
37
|
+
protected onCancel(): void;
|
|
30
38
|
protected transformNativeEvent(): Record<string, unknown>;
|
|
39
|
+
protected shouldSuppressActiveUpdate(handlerData: HandlerData<NativeHandlerData>): boolean;
|
|
40
|
+
reset(): void;
|
|
31
41
|
}
|
|
32
42
|
//# sourceMappingURL=NativeViewGestureHandler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NativeViewGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/NativeViewGestureHandler.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NativeViewGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/NativeViewGestureHandler.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,UAAU,EAA+B,MAAM,kBAAkB,CAAC;AAGhF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAMlD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEpE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAK9E,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAErD,MAAM,CAAC,OAAO,OAAO,wBAAyB,SAAQ,cAAc;IAClE,SAAyB,YAAY,QAAQ;IAC7C,OAAO,CAAC,IAAI,CAAkC;IAG9C,OAAO,CAAC,qBAAqB,CAAS;IACtC,OAAO,CAAC,oBAAoB,CAAS;IACrC,OAAO,CAAC,0BAA0B,CAAS;IAE3C,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,SAAS,CAA2C;IAE5D,OAAO,CAAC,qBAAqB,CAA+C;gBAG1E,QAAQ,EAAE,sBAAsB,CAAC,OAAO,EAAE,eAAe,CAAC;IAM5C,IAAI,CAClB,GAAG,EAAE,MAAM,EACX,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC,QAAQ,CAAC,EACnC,UAAU,EAAE,UAAU,GACrB,IAAI;IA2BS,mBAAmB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAiBzD,OAAO,CAAC,iBAAiB;cAUN,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAMxC,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAM1D,OAAO,CAAC,gBAAgB;cA4BL,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAoBxC,cAAc,IAAI,IAAI;cAMtB,WAAW,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAKtC,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAK7D,OAAO,CAAC,IAAI;IAmBI,6BAA6B,CAC3C,OAAO,EAAE,eAAe,GACvB,OAAO;IA+BM,MAAM,IAAI,IAAI;IAKd,wBAAwB,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO;IAO3D,8BAA8B,IAAI,OAAO;IAIlD,qBAAqB,IAAI,OAAO;IAIhC,QAAQ,IAAI,OAAO;IAIV,+BAA+B,CAC7C,QAAQ,EAAE,eAAe,EAAE,GAC1B,OAAO;cAeS,QAAQ,IAAI,IAAI;cAQhB,oBAAoB,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;cAQ/C,0BAA0B,CAC3C,WAAW,EAAE,WAAW,CAAC,iBAAiB,CAAC,GAC1C,OAAO;IAWM,KAAK,IAAI,IAAI;CAI9B"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { StylusData } from '../../handlers/gestureHandlerCommon';
|
|
2
|
+
import type { AdaptedEvent, Config } from '../interfaces';
|
|
3
|
+
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
3
4
|
import GestureHandler from './GestureHandler';
|
|
4
|
-
import
|
|
5
|
-
import IGestureHandler from './IGestureHandler';
|
|
5
|
+
import type IGestureHandler from './IGestureHandler';
|
|
6
6
|
export default class PanGestureHandler extends GestureHandler {
|
|
7
|
+
readonly isContinuous = true;
|
|
7
8
|
velocityX: number;
|
|
8
9
|
velocityY: number;
|
|
9
10
|
private minDist?;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/PanGestureHandler.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PanGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/PanGestureHandler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AAItE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAE1D,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAMrD,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,cAAc;IAC3D,SAAyB,YAAY,QAAQ;IAEtC,SAAS,SAAK;IACd,SAAS,SAAK;IAErB,OAAO,CAAC,OAAO,CAAC,CAAiC;IACjD,OAAO,CAAC,SAAS,CAAuB;IAExC,OAAO,CAAC,kBAAkB,CAA4B;IACtD,OAAO,CAAC,gBAAgB,CAA2B;IACnD,OAAO,CAAC,gBAAgB,CAA2B;IACnD,OAAO,CAAC,cAAc,CAA2B;IAEjD,OAAO,CAAC,kBAAkB,CAA2B;IACrD,OAAO,CAAC,gBAAgB,CAA2B;IACnD,OAAO,CAAC,gBAAgB,CAA2B;IACnD,OAAO,CAAC,cAAc,CAA2B;IAEjD,OAAO,CAAC,YAAY,CAA2B;IAC/C,OAAO,CAAC,YAAY,CAA2B;IAC/C,OAAO,CAAC,aAAa,CAA2B;IAEhD,OAAO,CAAC,WAAW,CAAwB;IAC3C,OAAO,CAAC,WAAW,CAAwB;IAE3C,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,OAAO,CAAK;IACpB,OAAO,CAAC,OAAO,CAAK;IACpB,OAAO,CAAC,KAAK,CAAK;IAClB,OAAO,CAAC,KAAK,CAAK;IAElB,OAAO,CAAC,UAAU,CAAyB;IAE3C,OAAO,CAAC,sBAAsB,CAAK;IACnC,OAAO,CAAC,iBAAiB,CAAK;IAE9B,OAAO,CAAC,8BAA8B,CAAS;IAC/C,OAAO,CAAC,eAAe,CAAK;IAC5B,OAAO,CAAC,WAAW,CAA4B;IAE/C,OAAO,CAAC,2BAA2B,CAAS;gBAG1C,QAAQ,EAAE,sBAAsB,CAAC,OAAO,EAAE,eAAe,CAAC;IAM5C,mBAAmB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;cAoFtC,WAAW,IAAI,IAAI;cA4BnB,oBAAoB;;;;;;;IAcvC,OAAO,CAAC,eAAe;IAGvB,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,sBAAsB;IAI9B,OAAO,CAAC,gBAAgB;IAOxB,OAAO,CAAC,cAAc;cAQH,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAmBxC,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAwBvC,WAAW,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAwBtC,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAsB1C,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAYxC,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAkBlE,OAAO,CAAC,gBAAgB;cAcL,OAAO,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAsCrD,OAAO,CAAC,cAAc;IAqEtB,OAAO,CAAC,UAAU;IAqClB,OAAO,CAAC,QAAQ;IAuBhB,OAAO,CAAC,UAAU;IAUF,QAAQ,CAAC,KAAK,UAAQ,GAAG,IAAI;cAQ1B,QAAQ,IAAI,IAAI;cAIhB,OAAO,IAAI,IAAI;cAIf,aAAa,IAAI,IAAI;CAQzC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { ActionType } from '../../ActionType';
|
|
2
|
+
import type { AdaptedEvent, PropsRef } from '../interfaces';
|
|
3
|
+
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
2
4
|
import GestureHandler from './GestureHandler';
|
|
3
|
-
import
|
|
4
|
-
import { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
5
|
-
import IGestureHandler from './IGestureHandler';
|
|
5
|
+
import type IGestureHandler from './IGestureHandler';
|
|
6
6
|
export default class PinchGestureHandler extends GestureHandler {
|
|
7
|
+
readonly isContinuous = true;
|
|
7
8
|
private scale;
|
|
8
9
|
private velocity;
|
|
9
10
|
private startingSpan;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PinchGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/PinchGestureHandler.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PinchGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/PinchGestureHandler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAMnD,OAAO,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAC5D,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAErD,MAAM,CAAC,OAAO,OAAO,mBAAoB,SAAQ,cAAc;IAC7D,SAAyB,YAAY,QAAQ;IAE7C,OAAO,CAAC,KAAK,CAAK;IAClB,OAAO,CAAC,QAAQ,CAAK;IAErB,OAAO,CAAC,YAAY,CAAK;IACzB,OAAO,CAAC,QAAQ,CAAsB;IAEtC,OAAO,CAAC,qBAAqB,CA4B3B;IAEF,OAAO,CAAC,oBAAoB,CAE1B;gBAGA,QAAQ,EAAE,sBAAsB,CAAC,OAAO,EAAE,eAAe,CAAC;IAM5C,IAAI,CAClB,GAAG,EAAE,MAAM,EACX,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC,QAAQ,CAAC,EACnC,UAAU,EAAE,UAAU;cAOL,oBAAoB;;;;;;cAcpB,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAKxC,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAOvC,WAAW,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cActC,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAM1C,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cASxC,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAUlE,OAAO,CAAC,QAAQ;IASA,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,GAAG,IAAI;cAQ5B,OAAO,IAAI,IAAI;cAIf,aAAa,IAAI,IAAI;CAOzC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { ActionType } from '../../ActionType';
|
|
2
|
+
import type { AdaptedEvent, PropsRef } from '../interfaces';
|
|
3
|
+
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
2
4
|
import GestureHandler from './GestureHandler';
|
|
3
|
-
import
|
|
4
|
-
import { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
5
|
-
import IGestureHandler from './IGestureHandler';
|
|
5
|
+
import type IGestureHandler from './IGestureHandler';
|
|
6
6
|
export default class RotationGestureHandler extends GestureHandler {
|
|
7
|
+
readonly isContinuous = true;
|
|
7
8
|
private rotation;
|
|
8
9
|
private velocity;
|
|
9
10
|
private cachedAnchorX;
|
|
@@ -18,8 +19,7 @@ export default class RotationGestureHandler extends GestureHandler {
|
|
|
18
19
|
anchorY: number;
|
|
19
20
|
velocity: number;
|
|
20
21
|
};
|
|
21
|
-
|
|
22
|
-
getAnchorY(): number;
|
|
22
|
+
private getAnchor;
|
|
23
23
|
protected onPointerDown(event: AdaptedEvent): void;
|
|
24
24
|
protected onPointerAdd(event: AdaptedEvent): void;
|
|
25
25
|
protected onPointerMove(event: AdaptedEvent): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RotationGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/RotationGestureHandler.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RotationGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/RotationGestureHandler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAKnD,OAAO,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAC5D,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAIrD,MAAM,CAAC,OAAO,OAAO,sBAAuB,SAAQ,cAAc;IAChE,SAAyB,YAAY,QAAQ;IAE7C,OAAO,CAAC,QAAQ,CAAK;IACrB,OAAO,CAAC,QAAQ,CAAK;IAErB,OAAO,CAAC,aAAa,CAAK;IAC1B,OAAO,CAAC,aAAa,CAAK;IAE1B,OAAO,CAAC,uBAAuB,CA4B7B;IAEF,OAAO,CAAC,uBAAuB,CAC6B;gBAG1D,QAAQ,EAAE,sBAAsB,CAAC,OAAO,EAAE,eAAe,CAAC;IAM5C,IAAI,CAClB,GAAG,EAAE,MAAM,EACX,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC,QAAQ,CAAC,EACnC,UAAU,EAAE,UAAU,GACrB,IAAI;cAMY,oBAAoB;;;;;;IAWvC,OAAO,CAAC,SAAS;cAWE,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAKxC,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAQvC,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAexC,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAe/C,WAAW,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAMtC,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAM7D,SAAS,CAAC,QAAQ,IAAI,IAAI;cAQP,OAAO,IAAI,IAAI;CASnC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AdaptedEvent, Config } from '../interfaces';
|
|
2
|
-
import { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
1
|
+
import type { AdaptedEvent, Config } from '../interfaces';
|
|
2
|
+
import type { GestureHandlerDelegate } from '../tools/GestureHandlerDelegate';
|
|
3
3
|
import GestureHandler from './GestureHandler';
|
|
4
|
-
import IGestureHandler from './IGestureHandler';
|
|
4
|
+
import type IGestureHandler from './IGestureHandler';
|
|
5
5
|
export default class TapGestureHandler extends GestureHandler {
|
|
6
6
|
private maxDeltaX;
|
|
7
7
|
private maxDeltaY;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TapGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/TapGestureHandler.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"TapGestureHandler.d.ts","sourceRoot":"","sources":["../../../../src/web/handlers/TapGestureHandler.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAE1D,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAOrD,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,cAAc;IAC3D,OAAO,CAAC,SAAS,CAA2B;IAC5C,OAAO,CAAC,SAAS,CAA2B;IAC5C,OAAO,CAAC,SAAS,CAA2B;IAC5C,OAAO,CAAC,aAAa,CAA2B;IAChD,OAAO,CAAC,UAAU,CAAwB;IAE1C,OAAO,CAAC,YAAY,CAA0B;IAC9C,OAAO,CAAC,mBAAmB,CAAkC;IAC7D,OAAO,CAAC,0BAA0B,CAAK;IAEvC,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,OAAO,CAAK;IACpB,OAAO,CAAC,OAAO,CAAK;IACpB,OAAO,CAAC,KAAK,CAAK;IAClB,OAAO,CAAC,KAAK,CAAK;IAElB,OAAO,CAAC,WAAW,CAAqB;IACxC,OAAO,CAAC,YAAY,CAAqB;IAEzC,OAAO,CAAC,SAAS,CAAK;gBAGpB,QAAQ,EAAE,sBAAsB,CAAC,OAAO,EAAE,eAAe,CAAC;IAM5C,mBAAmB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;cAgCtC,WAAW,IAAI,IAAI;IAYtC,OAAO,CAAC,aAAa;IAKrB,OAAO,CAAC,QAAQ;IAMhB,OAAO,CAAC,MAAM;IAad,OAAO,CAAC,gBAAgB;cAQL,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAmBxC,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAgBvC,WAAW,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAUtC,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAe1C,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAUxC,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAUlE,OAAO,CAAC,WAAW;IA8BnB,OAAO,CAAC,kBAAkB;IAW1B,OAAO,CAAC,UAAU;IAyBF,QAAQ,IAAI,IAAI;cAMb,QAAQ,IAAI,IAAI;cAKhB,aAAa,IAAI,IAAI;CAKzC"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { PointerType } from '../PointerType';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import type { Directions } from '../Directions';
|
|
2
|
+
import type { ActiveCursor, GestureTouchEvent, MouseButton, StylusData, TouchAction, UserSelect } from '../handlers/gestureHandlerCommon';
|
|
3
|
+
import type { PointerType } from '../PointerType';
|
|
4
|
+
import type { State } from '../State';
|
|
5
|
+
import type { GestureStateChangeEventWithHandlerData, GestureUpdateEventWithHandlerData } from '../v3/types';
|
|
6
6
|
export interface HitSlop {
|
|
7
|
-
left?: number;
|
|
8
|
-
right?: number;
|
|
9
|
-
top?: number;
|
|
10
|
-
bottom?: number;
|
|
11
|
-
horizontal?: number;
|
|
12
|
-
vertical?: number;
|
|
13
|
-
width?: number;
|
|
14
|
-
height?: number;
|
|
7
|
+
left?: number | undefined;
|
|
8
|
+
right?: number | undefined;
|
|
9
|
+
top?: number | undefined;
|
|
10
|
+
bottom?: number | undefined;
|
|
11
|
+
horizontal?: number | undefined;
|
|
12
|
+
vertical?: number | undefined;
|
|
13
|
+
width?: number | undefined;
|
|
14
|
+
height?: number | undefined;
|
|
15
15
|
}
|
|
16
16
|
export interface Handler {
|
|
17
17
|
handlerTag: number;
|
|
@@ -19,21 +19,21 @@ export interface Handler {
|
|
|
19
19
|
type ConfigArgs = number | boolean | string | HitSlop | UserSelect | TouchAction | ActiveCursor | Directions | Handler[] | null | undefined;
|
|
20
20
|
export interface Config extends Record<string, ConfigArgs> {
|
|
21
21
|
enabled: boolean;
|
|
22
|
-
simultaneousHandlers?: Handler[] | null;
|
|
23
|
-
waitFor?: Handler[] | null;
|
|
24
|
-
blocksHandlers?: Handler[] | null;
|
|
25
|
-
hitSlop?: HitSlop;
|
|
26
|
-
shouldCancelWhenOutside?: boolean;
|
|
27
|
-
userSelect?: UserSelect;
|
|
28
|
-
activeCursor?: ActiveCursor;
|
|
29
|
-
mouseButton?: MouseButton;
|
|
30
|
-
enableContextMenu?: boolean;
|
|
31
|
-
touchAction?: TouchAction;
|
|
32
|
-
manualActivation?: boolean;
|
|
33
|
-
dispatchesAnimatedEvents?: false;
|
|
34
|
-
dispatchesReanimatedEvents?: boolean;
|
|
35
|
-
needsPointerData?: false;
|
|
36
|
-
testID?: string;
|
|
22
|
+
simultaneousHandlers?: Handler[] | null | undefined;
|
|
23
|
+
waitFor?: Handler[] | null | undefined;
|
|
24
|
+
blocksHandlers?: Handler[] | null | undefined;
|
|
25
|
+
hitSlop?: HitSlop | undefined;
|
|
26
|
+
shouldCancelWhenOutside?: boolean | undefined;
|
|
27
|
+
userSelect?: UserSelect | undefined;
|
|
28
|
+
activeCursor?: ActiveCursor | undefined;
|
|
29
|
+
mouseButton?: MouseButton | undefined;
|
|
30
|
+
enableContextMenu?: boolean | undefined;
|
|
31
|
+
touchAction?: TouchAction | undefined;
|
|
32
|
+
manualActivation?: boolean | undefined;
|
|
33
|
+
dispatchesAnimatedEvents?: false | undefined;
|
|
34
|
+
dispatchesReanimatedEvents?: boolean | undefined;
|
|
35
|
+
needsPointerData?: false | undefined;
|
|
36
|
+
testID?: string | undefined;
|
|
37
37
|
activateAfterLongPress?: number;
|
|
38
38
|
failOffsetXStart?: number;
|
|
39
39
|
failOffsetYStart?: number;
|
|
@@ -62,6 +62,7 @@ export interface Config extends Record<string, ConfigArgs> {
|
|
|
62
62
|
maxDeltaY?: number;
|
|
63
63
|
shouldActivateOnStart?: boolean;
|
|
64
64
|
disallowInterruption?: boolean;
|
|
65
|
+
yieldsToContinuousGestures?: boolean;
|
|
65
66
|
direction?: Directions;
|
|
66
67
|
enableTrackpadTwoFingerGesture?: boolean;
|
|
67
68
|
}
|
|
@@ -70,7 +71,7 @@ export interface GestureHandlerNativeEvent extends Record<string, NativeEventArg
|
|
|
70
71
|
numberOfPointers: number;
|
|
71
72
|
state: State;
|
|
72
73
|
handlerTag: number;
|
|
73
|
-
oldState?: State;
|
|
74
|
+
oldState?: State | undefined;
|
|
74
75
|
pointerType: PointerType;
|
|
75
76
|
}
|
|
76
77
|
export interface Point {
|
|
@@ -107,9 +108,9 @@ export interface AdaptedEvent {
|
|
|
107
108
|
eventType: EventTypes;
|
|
108
109
|
pointerType: PointerType;
|
|
109
110
|
time: number;
|
|
110
|
-
button?: MouseButton;
|
|
111
|
-
stylusData?: StylusData;
|
|
112
|
-
wheelDeltaY?: number;
|
|
111
|
+
button?: MouseButton | undefined;
|
|
112
|
+
stylusData?: StylusData | undefined;
|
|
113
|
+
wheelDeltaY?: number | undefined;
|
|
113
114
|
}
|
|
114
115
|
export declare enum EventTypes {
|
|
115
116
|
DOWN = 0,
|
|
@@ -135,5 +136,10 @@ export type SVGRef = {
|
|
|
135
136
|
current: SVGElement;
|
|
136
137
|
};
|
|
137
138
|
};
|
|
139
|
+
export declare enum NativeGestureRole {
|
|
140
|
+
Button = "GestureHandlerButton",
|
|
141
|
+
Switch = "Switch",
|
|
142
|
+
ScrollView = "ScrollView"
|
|
143
|
+
}
|
|
138
144
|
export {};
|
|
139
145
|
//# sourceMappingURL=interfaces.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../../src/web/interfaces.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../../src/web/interfaces.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EventManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/EventManager.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"EventManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/EventManager.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE9D,KAAK,oBAAoB,GAAG,CAAC,KAAK,EAAE,YAAY,KAAK,IAAI,CAAC;AAE1D,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,YAAY,CAAC,CAAC;IAC1C,SAAS,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC;IAC3B,SAAS,CAAC,gBAAgB,EAAE,MAAM,EAAE,CAAM;IAC1C,SAAS,CAAC,qBAAqB,EAAE,MAAM,CAAC;gBAE5B,IAAI,EAAE,CAAC;aAKH,iBAAiB,IAAI,IAAI;aACzB,mBAAmB,IAAI,IAAI;IAE3C,SAAS,CAAC,QAAQ,CAAC,QAAQ,CACzB,KAAK,EAAE,KAAK,EACZ,SAAS,EAAE,UAAU,GACpB,YAAY;IAEf,SAAS,CAAC,aAAa,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IACnD,SAAS,CAAC,YAAY,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IAClD,SAAS,CAAC,WAAW,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IACjD,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IACrD,SAAS,CAAC,aAAa,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IACnD,SAAS,CAAC,cAAc,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IACpD,SAAS,CAAC,cAAc,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IACpD,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IAMrD,SAAS,CAAC,oBAAoB,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IAC1D,SAAS,CAAC,iBAAiB,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IACvD,SAAS,CAAC,gBAAgB,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IACtD,SAAS,CAAC,OAAO,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IAEtC,gBAAgB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGtD,eAAe,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGrD,cAAc,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGpD,kBAAkB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGxD,gBAAgB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGtD,iBAAiB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGvD,iBAAiB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGvD,kBAAkB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGxD,uBAAuB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAG7D,oBAAoB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAG1D,mBAAmB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAGzD,UAAU,CAAC,QAAQ,EAAE,oBAAoB,GAAG,IAAI;IAIvD,SAAS,CAAC,cAAc,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAQjD,SAAS,CAAC,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAU7C,UAAU,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI;IAShC,YAAY,IAAI,IAAI;CAW5B"}
|
|
@@ -14,6 +14,10 @@ export interface GestureHandlerDelegate<TComponent, THandler> {
|
|
|
14
14
|
y: number;
|
|
15
15
|
}): boolean;
|
|
16
16
|
measureView(): MeasureResult;
|
|
17
|
+
absoluteToLocal(absoluteX: number, absoluteY: number): {
|
|
18
|
+
x: number;
|
|
19
|
+
y: number;
|
|
20
|
+
};
|
|
17
21
|
reset(): void;
|
|
18
22
|
onBegin(): void;
|
|
19
23
|
onActivate(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GestureHandlerDelegate.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/GestureHandlerDelegate.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,sBAAsB,CAAC,UAAU,EAAE,QAAQ;IAC1D,IAAI,EAAE,UAAU,GAAG,IAAI,CAAC;IAExB,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,GAAG,IAAI,CAAC;IAC/C,MAAM,IAAI,IAAI,CAAC;IACf,SAAS,IAAI,IAAI,CAAC;IAClB,iBAAiB,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC;IAC/D,WAAW,IAAI,aAAa,CAAC;IAC7B,KAAK,IAAI,IAAI,CAAC;IAEd,OAAO,IAAI,IAAI,CAAC;IAChB,UAAU,IAAI,IAAI,CAAC;IACnB,KAAK,IAAI,IAAI,CAAC;IACd,QAAQ,IAAI,IAAI,CAAC;IACjB,MAAM,IAAI,IAAI,CAAC;IACf,eAAe,IAAI,IAAI,CAAC;IAExB,OAAO,IAAI,IAAI,CAAC;CACjB"}
|
|
1
|
+
{"version":3,"file":"GestureHandlerDelegate.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/GestureHandlerDelegate.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,sBAAsB,CAAC,UAAU,EAAE,QAAQ;IAC1D,IAAI,EAAE,UAAU,GAAG,IAAI,CAAC;IAExB,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,GAAG,IAAI,CAAC;IAC/C,MAAM,IAAI,IAAI,CAAC;IACf,SAAS,IAAI,IAAI,CAAC;IAClB,iBAAiB,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC;IAC/D,WAAW,IAAI,aAAa,CAAC;IAC7B,eAAe,CACb,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,MAAM,GAChB;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC5B,KAAK,IAAI,IAAI,CAAC;IAEd,OAAO,IAAI,IAAI,CAAC;IAChB,UAAU,IAAI,IAAI,CAAC;IACnB,KAAK,IAAI,IAAI,CAAC;IACd,QAAQ,IAAI,IAAI,CAAC;IACjB,MAAM,IAAI,IAAI,CAAC;IACf,eAAe,IAAI,IAAI,CAAC;IAExB,OAAO,IAAI,IAAI,CAAC;CACjB"}
|
|
@@ -10,6 +10,7 @@ export default class GestureHandlerOrchestrator {
|
|
|
10
10
|
private constructor();
|
|
11
11
|
private scheduleFinishedHandlersCleanup;
|
|
12
12
|
private cleanHandler;
|
|
13
|
+
isHandlerRecorded(handler: IGestureHandler): boolean;
|
|
13
14
|
removeHandlerFromOrchestrator(handler: IGestureHandler): void;
|
|
14
15
|
private cleanupFinishedHandlers;
|
|
15
16
|
private hasOtherHandlerToWaitFor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GestureHandlerOrchestrator.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/GestureHandlerOrchestrator.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"GestureHandlerOrchestrator.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/GestureHandlerOrchestrator.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAC;AAG/D,MAAM,CAAC,OAAO,OAAO,0BAA0B;IAC7C,OAAO,CAAC,MAAM,CAAC,SAAS,CAA6B;IAErD,OAAO,CAAC,eAAe,CAAyB;IAChD,OAAO,CAAC,gBAAgB,CAAyB;IACjD,OAAO,CAAC,oBAAoB,CAA0B;IAEtD,OAAO,CAAC,uBAAuB,CAAK;IACpC,OAAO,CAAC,eAAe,CAAK;IAI5B,OAAO;IAEP,OAAO,CAAC,+BAA+B;IAQvC,OAAO,CAAC,YAAY;IAOb,iBAAiB,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO;IAIpD,6BAA6B,CAAC,OAAO,EAAE,eAAe,GAAG,IAAI;IAcpE,OAAO,CAAC,uBAAuB;IAiB/B,OAAO,CAAC,wBAAwB;IAWhC,OAAO,CAAC,kCAAkC;IAa1C,OAAO,CAAC,WAAW;IAgCnB,OAAO,CAAC,cAAc;IAQtB,OAAO,CAAC,uBAAuB;IAoBxB,oBAAoB,CACzB,OAAO,EAAE,eAAe,EACxB,QAAQ,EAAE,KAAK,EACf,QAAQ,EAAE,KAAK,EACf,cAAc,CAAC,EAAE,OAAO,GACvB,IAAI;IA8DP,OAAO,CAAC,UAAU;IAuClB,OAAO,CAAC,kBAAkB;IAYnB,yBAAyB,CAAC,OAAO,EAAE,eAAe,GAAG,IAAI;IAgBhE,OAAO,CAAC,yBAAyB;IAWjC,OAAO,CAAC,oBAAoB;IAW5B,OAAO,CAAC,0BAA0B;IAyBlC,OAAO,CAAC,YAAY;IAuBpB,OAAO,CAAC,UAAU;IAYX,yBAAyB,CAAC,cAAc,EAAE,eAAe,GAAG,IAAI;IAwBvE,WAAkB,QAAQ,IAAI,0BAA0B,CAMvD;CACF"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type IGestureHandler from '../handlers/IGestureHandler';
|
|
2
|
-
import { GestureHandlerDelegate, MeasureResult } from './GestureHandlerDelegate';
|
|
2
|
+
import type { GestureHandlerDelegate, MeasureResult } from './GestureHandlerDelegate';
|
|
3
3
|
export declare class GestureHandlerWebDelegate implements GestureHandlerDelegate<HTMLElement, IGestureHandler> {
|
|
4
4
|
private isInitialized;
|
|
5
5
|
private _view;
|
|
@@ -17,6 +17,10 @@ export declare class GestureHandlerWebDelegate implements GestureHandlerDelegate
|
|
|
17
17
|
y: number;
|
|
18
18
|
}): boolean;
|
|
19
19
|
measureView(): MeasureResult;
|
|
20
|
+
absoluteToLocal(absoluteX: number, absoluteY: number): {
|
|
21
|
+
x: number;
|
|
22
|
+
y: number;
|
|
23
|
+
};
|
|
20
24
|
reset(): void;
|
|
21
25
|
tryResetCursor(): void;
|
|
22
26
|
private shouldDisableContextMenu;
|
|
@@ -34,6 +38,7 @@ export declare class GestureHandlerWebDelegate implements GestureHandlerDelegate
|
|
|
34
38
|
onCancel(): void;
|
|
35
39
|
onFail(): void;
|
|
36
40
|
destroy(): void;
|
|
41
|
+
private setViewStyle;
|
|
37
42
|
private ensureView;
|
|
38
43
|
get view(): HTMLElement | null;
|
|
39
44
|
set view(value: HTMLElement);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GestureHandlerWebDelegate.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/GestureHandlerWebDelegate.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"GestureHandlerWebDelegate.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/GestureHandlerWebDelegate.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAC;AAG/D,OAAO,KAAK,EACV,sBAAsB,EACtB,aAAa,EACd,MAAM,0BAA0B,CAAC;AAUlC,qBAAa,yBACX,YAAW,sBAAsB,CAAC,WAAW,EAAE,eAAe,CAAC;IAE/D,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,KAAK,CAA4B;IAEzC,OAAO,CAAC,cAAc,CAAmB;IACzC,OAAO,CAAC,aAAa,CAA+B;IACpD,OAAO,CAAC,iBAAiB,CAGvB;IAEF,OAAO,CAAC,4BAA4B,CAAS;IAC7C,OAAO,CAAC,qBAAqB,CAAS;IAEtC,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,eAAe,GAAG,IAAI;IAgCrD,MAAM,IAAI,IAAI;IAmBd,wBAAwB,IAAI,IAAI;IAShC,SAAS,IAAI,IAAI;IAMjB,iBAAiB,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO;IAO9D,WAAW,IAAI,aAAa;IAe5B,eAAe,CACb,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,MAAM,GAChB;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE;IAqC3B,KAAK,IAAI,IAAI;IAMb,cAAc;IAad,OAAO,CAAC,wBAAwB;IAQhC,OAAO,CAAC,uBAAuB;IAkB/B,OAAO,CAAC,0BAA0B;IAoBlC,OAAO,CAAC,kBAAkB;IAI1B,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,aAAa;IAarB,OAAO,CAAC,cAAc;IAatB,OAAO,CAAC,cAAc;IAatB,eAAe,IAAI,IAAI;IAYvB,OAAO,IAAI,IAAI;IAIf,UAAU,IAAI,IAAI;IAUlB,KAAK,IAAI,IAAI;IAIb,QAAQ,IAAI,IAAI;IAIhB,MAAM,IAAI,IAAI;IAIP,OAAO,IAAI,IAAI;IAUtB,OAAO,CAAC,YAAY;IAuBpB,OAAO,CAAC,UAAU;IAMlB,IAAW,IAAI,IAAI,WAAW,GAAG,IAAI,CAEpC;IAED,IAAW,IAAI,CAAC,KAAK,EAAE,WAAW,EAEjC;IAED,IAAI,WAAW,IAAI,OAAO,CAEzB;CACF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const GestureLifecycleEvent: {
|
|
2
|
+
readonly Began: "gh:gestureBegan";
|
|
3
|
+
readonly Canceled: "gh:gestureCanceled";
|
|
4
|
+
};
|
|
5
|
+
export type GestureLifecycleEventName = (typeof GestureLifecycleEvent)[keyof typeof GestureLifecycleEvent];
|
|
6
|
+
export declare function dispatchGestureLifecycleEvent(view: HTMLElement | null | undefined, name: GestureLifecycleEventName): void;
|
|
7
|
+
//# sourceMappingURL=GestureLifecycleEvents.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GestureLifecycleEvents.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/GestureLifecycleEvents.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB;;;CAGxB,CAAC;AAEX,MAAM,MAAM,yBAAyB,GACnC,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,OAAO,qBAAqB,CAAC,CAAC;AAErE,wBAAgB,6BAA6B,CAC3C,IAAI,EAAE,WAAW,GAAG,IAAI,GAAG,SAAS,EACpC,IAAI,EAAE,yBAAyB,GAC9B,IAAI,CAEN"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { GestureRelations } from '../../v3/types';
|
|
1
|
+
import type { GestureRelations } from '../../v3/types';
|
|
2
2
|
import type IGestureHandler from '../handlers/IGestureHandler';
|
|
3
|
-
import { Config } from '../interfaces';
|
|
3
|
+
import type { Config } from '../interfaces';
|
|
4
4
|
export default class InteractionManager {
|
|
5
5
|
private static _instance;
|
|
6
6
|
private readonly waitForRelations;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InteractionManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/InteractionManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"InteractionManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/InteractionManager.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAEvD,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAC;AAC/D,OAAO,KAAK,EAAE,MAAM,EAAW,MAAM,eAAe,CAAC;AAErD,MAAM,CAAC,OAAO,OAAO,kBAAkB;IACrC,OAAO,CAAC,MAAM,CAAC,SAAS,CAAqB;IAC7C,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAoC;IACrE,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAoC;IAC1E,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAAoC;IAI5E,OAAO;IAEA,qBAAqB,CAC1B,OAAO,EAAE,eAAe,EACxB,MAAM,EAAE,gBAAgB,GAAG,MAAM;IA4C5B,2BAA2B,CAChC,OAAO,EAAE,eAAe,EACxB,YAAY,EAAE,eAAe,GAC5B,OAAO;IAYH,6BAA6B,CAClC,OAAO,EAAE,eAAe,EACxB,YAAY,EAAE,eAAe,GAC5B,OAAO;IAWH,oCAAoC,CACzC,OAAO,EAAE,eAAe,EACxB,YAAY,EAAE,eAAe,GAC5B,OAAO;IAYH,0BAA0B,CAC/B,QAAQ,EAAE,eAAe,EACzB,YAAY,EAAE,eAAe,GAC5B,OAAO;IASH,8BAA8B,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAMxD,KAAK;IAMZ,WAAkB,QAAQ,IAAI,kBAAkB,CAM/C;CACF"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { AdaptedEvent
|
|
1
|
+
import type { AdaptedEvent } from '../interfaces';
|
|
2
|
+
import { EventTypes } from '../interfaces';
|
|
2
3
|
import EventManager from './EventManager';
|
|
3
4
|
export default class KeyboardEventManager extends EventManager<HTMLElement> {
|
|
4
5
|
private static activationKeys;
|