react-native-gesture-handler 3.0.0-beta.2 → 3.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ReanimatedDrawerLayout/package.json +1 -1
- package/ReanimatedSwipeable/package.json +1 -1
- package/android/src/main/java/com/swmansion/gesturehandler/RNGestureHandlerPackage.kt +0 -5
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandler.kt +43 -17
- package/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt +1 -1
- package/android/src/main/java/com/swmansion/gesturehandler/core/NativeViewGestureHandler.kt +4 -6
- package/android/src/main/java/com/swmansion/gesturehandler/core/RotationGestureHandler.kt +10 -7
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +382 -129
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerDetectorView.kt +17 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.kt +2 -0
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerModule.kt +4 -10
- package/apple/Handlers/RNFlingHandler.m +7 -7
- package/apple/Handlers/RNForceTouchHandler.m +2 -2
- package/apple/Handlers/RNHoverHandler.m +38 -7
- package/apple/Handlers/RNLongPressHandler.m +21 -8
- package/apple/Handlers/RNManualHandler.m +2 -2
- package/apple/Handlers/RNNativeViewHandler.mm +67 -13
- package/apple/Handlers/RNPanHandler.m +4 -4
- package/apple/Handlers/RNPinchHandler.m +11 -4
- package/apple/Handlers/RNRotationHandler.m +11 -4
- package/apple/Handlers/RNTapHandler.m +6 -4
- package/apple/RNGHUIKit.h +2 -0
- package/apple/RNGestureHandler.h +16 -1
- package/apple/RNGestureHandler.mm +78 -4
- package/apple/RNGestureHandlerButton.h +42 -1
- package/apple/RNGestureHandlerButton.mm +619 -49
- package/apple/RNGestureHandlerButtonComponentView.mm +52 -2
- package/apple/RNGestureHandlerDetector.mm +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 -0
- package/apple/RNGestureHandlerRegistry.m +41 -11
- package/apple/RNManualActivationRecognizer.m +1 -1
- package/jest-utils/package.json +1 -1
- package/jestSetup.js +6 -16
- package/lib/module/RNGestureHandlerModule.web.js +2 -1
- package/lib/module/RNGestureHandlerModule.web.js.map +1 -1
- package/lib/module/RNGestureHandlerModule.windows.js +5 -6
- package/lib/module/RNGestureHandlerModule.windows.js.map +1 -1
- package/lib/module/components/GestureButtons.js +30 -13
- package/lib/module/components/GestureButtons.js.map +1 -1
- package/lib/module/components/GestureComponents.js +6 -8
- package/lib/module/components/GestureComponents.js.map +1 -1
- package/lib/module/components/GestureComponents.web.js +3 -4
- package/lib/module/components/GestureComponents.web.js.map +1 -1
- package/lib/module/components/GestureHandlerButton.js +2 -135
- package/lib/module/components/GestureHandlerButton.js.map +1 -1
- package/lib/module/components/GestureHandlerButton.web.js +118 -6
- package/lib/module/components/GestureHandlerButton.web.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.android.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.js +2 -2
- package/lib/module/components/GestureHandlerRootView.js.map +1 -1
- package/lib/module/components/GestureHandlerRootView.web.js +2 -2
- package/lib/module/components/GestureHandlerRootView.web.js.map +1 -1
- package/lib/module/components/Pressable/Pressable.js +16 -10
- package/lib/module/components/Pressable/Pressable.js.map +1 -1
- package/lib/module/components/Pressable/index.js.map +1 -1
- package/lib/module/components/Pressable/stateDefinitions.js +14 -3
- package/lib/module/components/Pressable/stateDefinitions.js.map +1 -1
- package/lib/module/components/Pressable/utils.js +1 -1
- package/lib/module/components/Pressable/utils.js.map +1 -1
- package/lib/module/components/ReanimatedDrawerLayout.js +11 -10
- package/lib/module/components/ReanimatedDrawerLayout.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js +16 -16
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +1 -1
- package/lib/module/components/ReanimatedSwipeable/index.js +1 -1
- package/lib/module/components/ReanimatedSwipeable/index.js.map +1 -1
- package/lib/module/components/Text.js +33 -23
- package/lib/module/components/Text.js.map +1 -1
- package/lib/module/components/touchables/GenericTouchable.js +9 -13
- package/lib/module/components/touchables/GenericTouchable.js.map +1 -1
- package/lib/module/components/touchables/TouchableHighlight.js +1 -1
- package/lib/module/components/touchables/TouchableHighlight.js.map +1 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js +1 -1
- package/lib/module/components/touchables/TouchableNativeFeedback.android.js.map +1 -1
- package/lib/module/components/touchables/TouchableOpacity.js +2 -2
- package/lib/module/components/touchables/TouchableOpacity.js.map +1 -1
- package/lib/module/components/touchables/TouchableWithoutFeedback.js +3 -4
- package/lib/module/components/touchables/TouchableWithoutFeedback.js.map +1 -1
- package/lib/module/components/touchables/index.js +2 -2
- package/lib/module/components/touchables/index.js.map +1 -1
- package/lib/module/findNodeHandle.web.js +4 -2
- package/lib/module/findNodeHandle.web.js.map +1 -1
- package/lib/module/handlers/FlingGestureHandler.js.map +1 -1
- package/lib/module/handlers/ForceTouchGestureHandler.js +1 -1
- package/lib/module/handlers/ForceTouchGestureHandler.js.map +1 -1
- package/lib/module/handlers/LongPressGestureHandler.js.map +1 -1
- package/lib/module/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/handlers/PinchGestureHandler.js.map +1 -1
- package/lib/module/handlers/RotationGestureHandler.js.map +1 -1
- package/lib/module/handlers/TapGestureHandler.js.map +1 -1
- package/lib/module/handlers/createHandler.js +10 -10
- package/lib/module/handlers/createHandler.js.map +1 -1
- package/lib/module/handlers/createNativeWrapper.js +7 -3
- package/lib/module/handlers/createNativeWrapper.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.js +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js +5 -4
- package/lib/module/handlers/gestures/GestureDetector/Wrap.web.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js +5 -5
- package/lib/module/handlers/gestures/GestureDetector/attachHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/dropHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/index.js +6 -6
- package/lib/module/handlers/gestures/GestureDetector/index.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js +3 -3
- package/lib/module/handlers/gestures/GestureDetector/updateHandlers.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js +3 -3
- package/lib/module/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js +4 -3
- package/lib/module/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/useMountReactions.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js +2 -2
- package/lib/module/handlers/gestures/GestureDetector/useViewRefHandler.js.map +1 -1
- package/lib/module/handlers/gestures/GestureDetector/utils.js +7 -7
- package/lib/module/handlers/gestures/GestureDetector/utils.js.map +1 -1
- package/lib/module/handlers/gestures/eventReceiver.js.map +1 -1
- package/lib/module/handlers/gestures/flingGesture.js.map +1 -1
- package/lib/module/handlers/gestures/forceTouchGesture.js.map +1 -1
- package/lib/module/handlers/gestures/gesture.js +1 -1
- package/lib/module/handlers/gestures/gesture.js.map +1 -1
- package/lib/module/handlers/gestures/gestureComposition.js.map +1 -1
- package/lib/module/handlers/gestures/gestureObjects.js +3 -3
- package/lib/module/handlers/gestures/gestureObjects.js.map +1 -1
- package/lib/module/handlers/gestures/hoverGesture.js.map +1 -1
- package/lib/module/handlers/gestures/longPressGesture.js.map +1 -1
- package/lib/module/handlers/gestures/nativeGesture.js.map +1 -1
- package/lib/module/handlers/gestures/panGesture.js.map +1 -1
- package/lib/module/handlers/gestures/pinchGesture.js.map +1 -1
- package/lib/module/handlers/gestures/reanimatedWrapper.js.map +1 -1
- package/lib/module/handlers/gestures/rotationGesture.js.map +1 -1
- package/lib/module/handlers/gestures/tapGesture.js.map +1 -1
- package/lib/module/handlers/handlersRegistry.js.map +1 -1
- package/lib/module/handlers/utils.js +4 -4
- package/lib/module/handlers/utils.js.map +1 -1
- package/lib/module/index.js +15 -16
- package/lib/module/index.js.map +1 -1
- package/lib/module/jestUtils/index.js +1 -1
- package/lib/module/jestUtils/index.js.map +1 -1
- package/lib/module/jestUtils/jestUtils.js +0 -1
- package/lib/module/jestUtils/jestUtils.js.map +1 -1
- package/lib/module/mocks/GestureButtons.js +8 -5
- package/lib/module/mocks/GestureButtons.js.map +1 -1
- package/lib/module/mocks/Touchables.js +4 -0
- package/lib/module/mocks/Touchables.js.map +1 -0
- package/lib/module/mocks/gestureComponents.js +1 -12
- package/lib/module/mocks/gestureComponents.js.map +1 -1
- package/lib/module/specs/NativeRNGestureHandlerModule.js.map +1 -1
- package/lib/module/specs/RNGestureHandlerButtonNativeComponent.ts +49 -6
- package/lib/module/specs/RNGestureHandlerDetectorNativeComponent.ts +23 -11
- package/lib/module/specs/RNGestureHandlerRootViewNativeComponent.ts +2 -2
- package/lib/module/useIsScreenReaderEnabled.js +26 -0
- package/lib/module/useIsScreenReaderEnabled.js.map +1 -0
- package/lib/module/v3/NativeProxy.js.map +1 -1
- package/lib/module/v3/NativeProxy.web.js.map +1 -1
- package/lib/module/v3/components/GestureButtons.js +41 -25
- package/lib/module/v3/components/GestureButtons.js.map +1 -1
- package/lib/module/v3/components/GestureComponents.js +3 -3
- package/lib/module/v3/components/GestureComponents.js.map +1 -1
- package/lib/module/v3/components/GestureComponents.web.js +3 -4
- package/lib/module/v3/components/GestureComponents.web.js.map +1 -1
- package/lib/module/v3/components/Pressable.js +15 -15
- package/lib/module/v3/components/Pressable.js.map +1 -1
- package/lib/module/v3/components/Touchable/Touchable.js +94 -0
- package/lib/module/v3/components/Touchable/Touchable.js.map +1 -0
- package/lib/module/v3/components/Touchable/TouchableProps.js +4 -0
- package/lib/module/v3/components/Touchable/TouchableProps.js.map +1 -0
- package/lib/module/v3/components/index.js +3 -2
- package/lib/module/v3/components/index.js.map +1 -1
- package/lib/module/v3/createNativeWrapper.js +3 -3
- package/lib/module/v3/createNativeWrapper.js.map +1 -1
- package/lib/module/v3/detectors/GestureDetector.js +1 -1
- package/lib/module/v3/detectors/GestureDetector.js.map +1 -1
- package/lib/module/v3/detectors/HostGestureDetector.web.js +12 -10
- package/lib/module/v3/detectors/HostGestureDetector.web.js.map +1 -1
- package/lib/module/v3/detectors/NativeDetector.js +3 -3
- package/lib/module/v3/detectors/NativeDetector.js.map +1 -1
- package/lib/module/v3/detectors/ReanimatedNativeDetector.js +1 -1
- package/lib/module/v3/detectors/ReanimatedNativeDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js +15 -9
- package/lib/module/v3/detectors/VirtualDetector/InterceptingGestureDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js +8 -5
- package/lib/module/v3/detectors/VirtualDetector/VirtualDetector.js.map +1 -1
- package/lib/module/v3/detectors/VirtualDetector/useInterceptingDetectorContext.js.map +1 -1
- package/lib/module/v3/detectors/common.js +0 -3
- package/lib/module/v3/detectors/common.js.map +1 -1
- package/lib/module/v3/detectors/index.js +1 -1
- package/lib/module/v3/detectors/index.js.map +1 -1
- package/lib/module/v3/detectors/useEnsureGestureHandlerRootView.js.map +1 -1
- package/lib/module/v3/detectors/utils.js.map +1 -1
- package/lib/module/v3/gestureStateManager.js +0 -5
- package/lib/module/v3/gestureStateManager.js.map +1 -1
- package/lib/module/v3/gestureStateManager.web.js +0 -14
- package/lib/module/v3/gestureStateManager.web.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/eventHandler.js +23 -19
- package/lib/module/v3/hooks/callbacks/eventHandler.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js +2 -2
- package/lib/module/v3/hooks/callbacks/useGestureEventHandler.js.map +1 -1
- package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js +2 -2
- package/lib/module/v3/hooks/callbacks/useReanimatedEventHandler.js.map +1 -1
- package/lib/module/v3/hooks/composition/index.js +2 -2
- package/lib/module/v3/hooks/composition/index.js.map +1 -1
- package/lib/module/v3/hooks/composition/useCompetingGestures.js.map +1 -1
- package/lib/module/v3/hooks/composition/useComposedGesture.js +1 -1
- package/lib/module/v3/hooks/composition/useComposedGesture.js.map +1 -1
- package/lib/module/v3/hooks/composition/useExclusiveGestures.js.map +1 -1
- package/lib/module/v3/hooks/composition/useSimultaneousGestures.js.map +1 -1
- package/lib/module/v3/hooks/gestures/fling/{FlingProperties.js → FlingTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/fling/FlingTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/fling/useFlingGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js → HoverTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/hover/{HoverProperties.js.map → HoverTypes.js.map} +1 -1
- package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js +8 -1
- package/lib/module/v3/hooks/gestures/hover/useHoverGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/index.js +4 -0
- package/lib/module/v3/hooks/gestures/index.js.map +1 -1
- package/lib/module/v3/hooks/gestures/longPress/{LongPressProperties.js → LongPressTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/longPress/LongPressTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/longPress/useLongPressGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/manual/ManualTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/manual/ManualTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/manual/useManualGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/native/{NativeProperties.js → NativeTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/native/NativeTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/native/useNativeGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/pan/{PanProperties.js → PanTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/pan/PanTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/pan/usePanGesture.js +7 -0
- package/lib/module/v3/hooks/gestures/pan/usePanGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/pinch/PinchTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js +7 -2
- package/lib/module/v3/hooks/gestures/pinch/usePinchGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js +4 -0
- package/lib/module/v3/hooks/gestures/rotation/RotationTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js +7 -1
- package/lib/module/v3/hooks/gestures/rotation/useRotationGesture.js.map +1 -1
- package/lib/module/v3/hooks/gestures/tap/{TapProperties.js → TapTypes.js} +1 -1
- package/lib/module/v3/hooks/gestures/tap/TapTypes.js.map +1 -0
- package/lib/module/v3/hooks/gestures/tap/useTapGesture.js.map +1 -1
- package/lib/module/v3/hooks/useGesture.js +10 -8
- package/lib/module/v3/hooks/useGesture.js.map +1 -1
- package/lib/module/v3/hooks/useGestureCallbacks.js +4 -4
- package/lib/module/v3/hooks/useGestureCallbacks.js.map +1 -1
- package/lib/module/v3/hooks/utils/configUtils.js +2 -2
- package/lib/module/v3/hooks/utils/configUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/eventHandlersUtils.js +3 -7
- package/lib/module/v3/hooks/utils/eventHandlersUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/eventUtils.js +10 -0
- package/lib/module/v3/hooks/utils/eventUtils.js.map +1 -1
- package/lib/module/v3/hooks/utils/index.js +5 -5
- package/lib/module/v3/hooks/utils/index.js.map +1 -1
- package/lib/module/v3/hooks/utils/propsWhiteList.js +9 -7
- package/lib/module/v3/hooks/utils/propsWhiteList.js.map +1 -1
- package/lib/module/v3/hooks/utils/reanimatedUtils.js +1 -1
- package/lib/module/v3/hooks/utils/reanimatedUtils.js.map +1 -1
- package/lib/module/v3/index.js +3 -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/detectors/RotationGestureDetector.js +4 -7
- package/lib/module/web/detectors/RotationGestureDetector.js.map +1 -1
- package/lib/module/web/detectors/ScaleGestureDetector.js +1 -1
- package/lib/module/web/detectors/ScaleGestureDetector.js.map +1 -1
- package/lib/module/web/handlers/FlingGestureHandler.js +3 -3
- package/lib/module/web/handlers/FlingGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/GestureHandler.js +35 -58
- package/lib/module/web/handlers/GestureHandler.js.map +1 -1
- package/lib/module/web/handlers/HoverGestureHandler.js +1 -1
- package/lib/module/web/handlers/HoverGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/LongPressGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/NativeViewGestureHandler.js +1 -1
- package/lib/module/web/handlers/NativeViewGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/PanGestureHandler.js +1 -1
- package/lib/module/web/handlers/PanGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/PinchGestureHandler.js +7 -8
- package/lib/module/web/handlers/PinchGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/RotationGestureHandler.js +26 -32
- package/lib/module/web/handlers/RotationGestureHandler.js.map +1 -1
- package/lib/module/web/handlers/TapGestureHandler.js.map +1 -1
- package/lib/module/web/tools/GestureHandlerOrchestrator.js.map +1 -1
- package/lib/module/web/tools/GestureHandlerWebDelegate.js +62 -17
- package/lib/module/web/tools/GestureHandlerWebDelegate.js.map +1 -1
- package/lib/module/web/tools/InteractionManager.js.map +1 -1
- package/lib/module/web/tools/KeyboardEventManager.js +1 -1
- package/lib/module/web/tools/KeyboardEventManager.js.map +1 -1
- package/lib/module/web/tools/PointerEventManager.js +7 -7
- package/lib/module/web/tools/PointerEventManager.js.map +1 -1
- package/lib/module/web/tools/WheelEventManager.js +2 -2
- package/lib/module/web/tools/WheelEventManager.js.map +1 -1
- package/lib/module/web/utils.js +22 -1
- package/lib/module/web/utils.js.map +1 -1
- package/lib/typescript/RNGestureHandlerModule.web.d.ts +1 -1
- package/lib/typescript/RNGestureHandlerModule.web.d.ts.map +1 -1
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts +8 -8
- package/lib/typescript/RNGestureHandlerModule.windows.d.ts.map +1 -1
- package/lib/typescript/components/GestureButtons.d.ts +16 -5
- package/lib/typescript/components/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/components/GestureButtonsProps.d.ts +21 -21
- package/lib/typescript/components/GestureButtonsProps.d.ts.map +1 -1
- package/lib/typescript/components/GestureComponents.d.ts +44 -14
- package/lib/typescript/components/GestureComponents.d.ts.map +1 -1
- package/lib/typescript/components/GestureComponents.web.d.ts +26 -6
- package/lib/typescript/components/GestureComponents.web.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerButton.d.ts +114 -2
- package/lib/typescript/components/GestureHandlerButton.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerButton.web.d.ts +16 -2
- package/lib/typescript/components/GestureHandlerButton.web.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts +1 -1
- package/lib/typescript/components/GestureHandlerRootView.android.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.d.ts +1 -1
- package/lib/typescript/components/GestureHandlerRootView.d.ts.map +1 -1
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts +2 -2
- package/lib/typescript/components/GestureHandlerRootView.web.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/Pressable.d.ts +6 -3
- package/lib/typescript/components/Pressable/Pressable.d.ts.map +1 -1
- package/lib/typescript/components/Pressable/PressableProps.d.ts +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 +3 -2
- package/lib/typescript/handlers/gestures/flingGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts +4 -3
- package/lib/typescript/handlers/gestures/forceTouchGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gesture.d.ts +3 -3
- package/lib/typescript/handlers/gestures/gesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts +2 -1
- package/lib/typescript/handlers/gestures/gestureComposition.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts +4 -4
- package/lib/typescript/handlers/gestures/gestureObjects.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts +1 -1
- package/lib/typescript/handlers/gestures/gestureStateManager.web.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts +3 -2
- package/lib/typescript/handlers/gestures/hoverGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts +3 -2
- package/lib/typescript/handlers/gestures/longPressGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/manualGesture.d.ts +1 -1
- package/lib/typescript/handlers/gestures/manualGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts +3 -2
- package/lib/typescript/handlers/gestures/nativeGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/panGesture.d.ts +4 -3
- package/lib/typescript/handlers/gestures/panGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts +2 -2
- package/lib/typescript/handlers/gestures/pinchGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts +3 -3
- package/lib/typescript/handlers/gestures/reanimatedWrapper.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts +2 -2
- package/lib/typescript/handlers/gestures/rotationGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/gestures/tapGesture.d.ts +3 -2
- package/lib/typescript/handlers/gestures/tapGesture.d.ts.map +1 -1
- package/lib/typescript/handlers/handlersRegistry.d.ts +6 -6
- package/lib/typescript/handlers/handlersRegistry.d.ts.map +1 -1
- package/lib/typescript/handlers/utils.d.ts +1 -1
- package/lib/typescript/handlers/utils.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +41 -42
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/jestUtils/index.d.ts +1 -1
- package/lib/typescript/jestUtils/jestUtils.d.ts +22 -21
- package/lib/typescript/jestUtils/jestUtils.d.ts.map +1 -1
- package/lib/typescript/mocks/GestureButtons.d.ts +5 -5
- package/lib/typescript/mocks/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/mocks/Touchables.d.ts +2 -0
- package/lib/typescript/mocks/Touchables.d.ts.map +1 -0
- package/lib/typescript/mocks/gestureComponents.d.ts +1 -13
- package/lib/typescript/mocks/gestureComponents.d.ts.map +1 -1
- package/lib/typescript/mountRegistry.d.ts +1 -1
- package/lib/typescript/mountRegistry.d.ts.map +1 -1
- package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts +2 -2
- package/lib/typescript/specs/NativeRNGestureHandlerModule.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts +36 -3
- package/lib/typescript/specs/RNGestureHandlerButtonNativeComponent.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts +8 -8
- package/lib/typescript/specs/RNGestureHandlerDetectorNativeComponent.d.ts.map +1 -1
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts +1 -1
- package/lib/typescript/specs/RNGestureHandlerRootViewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/useIsScreenReaderEnabled.d.ts +2 -0
- package/lib/typescript/useIsScreenReaderEnabled.d.ts.map +1 -0
- package/lib/typescript/useIsomorphicLayoutEffect.d.ts +1 -1
- package/lib/typescript/useIsomorphicLayoutEffect.d.ts.map +1 -1
- package/lib/typescript/v3/NativeProxy.d.ts +3 -3
- package/lib/typescript/v3/NativeProxy.d.ts.map +1 -1
- package/lib/typescript/v3/NativeProxy.web.d.ts +3 -3
- package/lib/typescript/v3/NativeProxy.web.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureButtons.d.ts +20 -11
- package/lib/typescript/v3/components/GestureButtons.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureButtonsProps.d.ts +25 -85
- package/lib/typescript/v3/components/GestureButtonsProps.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureComponents.d.ts +24 -38
- package/lib/typescript/v3/components/GestureComponents.d.ts.map +1 -1
- package/lib/typescript/v3/components/GestureComponents.web.d.ts +22 -34
- package/lib/typescript/v3/components/GestureComponents.web.d.ts.map +1 -1
- package/lib/typescript/v3/components/Pressable.d.ts +1 -1
- package/lib/typescript/v3/components/Pressable.d.ts.map +1 -1
- package/lib/typescript/v3/components/Touchable/Touchable.d.ts +4 -0
- package/lib/typescript/v3/components/Touchable/Touchable.d.ts.map +1 -0
- package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts +31 -0
- package/lib/typescript/v3/components/Touchable/TouchableProps.d.ts.map +1 -0
- package/lib/typescript/v3/components/index.d.ts +5 -3
- package/lib/typescript/v3/components/index.d.ts.map +1 -1
- package/lib/typescript/v3/createNativeWrapper.d.ts +3 -7
- package/lib/typescript/v3/createNativeWrapper.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/GestureDetector.d.ts +3 -3
- package/lib/typescript/v3/detectors/GestureDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts +10 -6
- package/lib/typescript/v3/detectors/HostGestureDetector.web.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/NativeDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/NativeDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/ReanimatedNativeDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/VirtualDetector/InterceptingGestureDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts +2 -2
- package/lib/typescript/v3/detectors/VirtualDetector/VirtualDetector.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts +1 -1
- package/lib/typescript/v3/detectors/VirtualDetector/useInterceptingDetectorContext.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/common.d.ts +14 -15
- package/lib/typescript/v3/detectors/common.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/index.d.ts +1 -1
- package/lib/typescript/v3/detectors/index.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/useEnsureGestureHandlerRootView.d.ts.map +1 -1
- package/lib/typescript/v3/detectors/utils.d.ts +2 -2
- package/lib/typescript/v3/detectors/utils.d.ts.map +1 -1
- package/lib/typescript/v3/gestureStateManager.d.ts +0 -1
- package/lib/typescript/v3/gestureStateManager.d.ts.map +1 -1
- package/lib/typescript/v3/gestureStateManager.web.d.ts +1 -1
- package/lib/typescript/v3/gestureStateManager.web.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts +6 -6
- package/lib/typescript/v3/hooks/callbacks/eventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts +2 -2
- package/lib/typescript/v3/hooks/callbacks/useGestureEventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts +3 -3
- package/lib/typescript/v3/hooks/callbacks/useReanimatedEventHandler.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/index.d.ts +2 -2
- package/lib/typescript/v3/hooks/composition/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useCompetingGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useComposedGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useExclusiveGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts +1 -1
- package/lib/typescript/v3/hooks/composition/useSimultaneousGestures.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts +36 -0
- package/lib/typescript/v3/hooks/gestures/fling/FlingTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts +1 -14
- package/lib/typescript/v3/hooks/gestures/fling/useFlingGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts +38 -0
- package/lib/typescript/v3/hooks/gestures/hover/HoverTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts +1 -19
- package/lib/typescript/v3/hooks/gestures/hover/useHoverGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/index.d.ts +19 -28
- package/lib/typescript/v3/hooks/gestures/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/longPress/{LongPressProperties.d.ts → LongPressTypes.d.ts} +16 -1
- package/lib/typescript/v3/hooks/gestures/longPress/LongPressTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts +1 -14
- package/lib/typescript/v3/hooks/gestures/longPress/useLongPressGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts +10 -0
- package/lib/typescript/v3/hooks/gestures/manual/ManualTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts +1 -9
- package/lib/typescript/v3/hooks/gestures/manual/useManualGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts +26 -0
- package/lib/typescript/v3/hooks/gestures/native/NativeTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts +2 -12
- package/lib/typescript/v3/hooks/gestures/native/useNativeGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/pan/{PanProperties.d.ts → PanTypes.d.ts} +25 -1
- package/lib/typescript/v3/hooks/gestures/pan/PanTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts +1 -21
- package/lib/typescript/v3/hooks/gestures/pan/usePanGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts +17 -0
- package/lib/typescript/v3/hooks/gestures/pinch/PinchTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts +1 -15
- package/lib/typescript/v3/hooks/gestures/pinch/usePinchGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts +17 -0
- package/lib/typescript/v3/hooks/gestures/rotation/RotationTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts +1 -15
- package/lib/typescript/v3/hooks/gestures/rotation/useRotationGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/gestures/tap/{TapProperties.d.ts → TapTypes.d.ts} +14 -1
- package/lib/typescript/v3/hooks/gestures/tap/TapTypes.d.ts.map +1 -0
- package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts +1 -14
- package/lib/typescript/v3/hooks/gestures/tap/useTapGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/useGesture.d.ts +2 -2
- package/lib/typescript/v3/hooks/useGesture.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts +4 -4
- package/lib/typescript/v3/hooks/useGestureCallbacks.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/configUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/configUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/eventHandlersUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/eventUtils.d.ts +8 -6
- package/lib/typescript/v3/hooks/utils/eventUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/index.d.ts +5 -5
- package/lib/typescript/v3/hooks/utils/index.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts +6 -5
- package/lib/typescript/v3/hooks/utils/propsWhiteList.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts +4 -4
- package/lib/typescript/v3/hooks/utils/reanimatedUtils.d.ts.map +1 -1
- package/lib/typescript/v3/hooks/utils/relationUtils.d.ts +2 -2
- package/lib/typescript/v3/hooks/utils/relationUtils.d.ts.map +1 -1
- package/lib/typescript/v3/index.d.ts +6 -7
- package/lib/typescript/v3/index.d.ts.map +1 -1
- package/lib/typescript/v3/types/ConfigTypes.d.ts +35 -34
- package/lib/typescript/v3/types/ConfigTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/DetectorTypes.d.ts +10 -6
- package/lib/typescript/v3/types/DetectorTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/EventTypes.d.ts +11 -8
- package/lib/typescript/v3/types/EventTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/GestureTypes.d.ts +16 -16
- package/lib/typescript/v3/types/GestureTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/NativeWrapperType.d.ts +7 -4
- package/lib/typescript/v3/types/NativeWrapperType.d.ts.map +1 -1
- package/lib/typescript/v3/types/ReanimatedTypes.d.ts +1 -1
- package/lib/typescript/v3/types/ReanimatedTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/UtilityTypes.d.ts +7 -7
- package/lib/typescript/v3/types/UtilityTypes.d.ts.map +1 -1
- package/lib/typescript/v3/types/index.d.ts +6 -6
- package/lib/typescript/v3/types/index.d.ts.map +1 -1
- package/lib/typescript/web/Gestures.d.ts +6 -6
- package/lib/typescript/web/Gestures.d.ts.map +1 -1
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts +2 -2
- package/lib/typescript/web/detectors/RotationGestureDetector.d.ts.map +1 -1
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts +2 -2
- package/lib/typescript/web/detectors/ScaleGestureDetector.d.ts.map +1 -1
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/FlingGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/GestureHandler.d.ts +9 -8
- package/lib/typescript/web/handlers/GestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/HoverGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/IGestureHandler.d.ts +6 -6
- package/lib/typescript/web/handlers/IGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/LongPressGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/ManualGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts +6 -6
- package/lib/typescript/web/handlers/NativeViewGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/PanGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts +4 -4
- package/lib/typescript/web/handlers/PinchGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts +5 -6
- package/lib/typescript/web/handlers/RotationGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts +3 -3
- package/lib/typescript/web/handlers/TapGestureHandler.d.ts.map +1 -1
- package/lib/typescript/web/interfaces.d.ts +32 -32
- package/lib/typescript/web/interfaces.d.ts.map +1 -1
- package/lib/typescript/web/tools/EventManager.d.ts +1 -1
- package/lib/typescript/web/tools/EventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts +4 -0
- package/lib/typescript/web/tools/GestureHandlerDelegate.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerOrchestrator.d.ts.map +1 -1
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts +6 -1
- package/lib/typescript/web/tools/GestureHandlerWebDelegate.d.ts.map +1 -1
- package/lib/typescript/web/tools/InteractionManager.d.ts +2 -2
- package/lib/typescript/web/tools/InteractionManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/KeyboardEventManager.d.ts +2 -1
- package/lib/typescript/web/tools/KeyboardEventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/NodeManager.d.ts +3 -3
- package/lib/typescript/web/tools/NodeManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/PointerEventManager.d.ts +2 -1
- package/lib/typescript/web/tools/PointerEventManager.d.ts.map +1 -1
- package/lib/typescript/web/tools/PointerTracker.d.ts +1 -1
- package/lib/typescript/web/tools/PointerTracker.d.ts.map +1 -1
- package/lib/typescript/web/tools/Vector.d.ts +1 -1
- package/lib/typescript/web/tools/Vector.d.ts.map +1 -1
- package/lib/typescript/web/tools/VelocityTracker.d.ts +1 -1
- package/lib/typescript/web/tools/VelocityTracker.d.ts.map +1 -1
- package/lib/typescript/web/tools/WheelEventManager.d.ts +1 -1
- package/lib/typescript/web/tools/WheelEventManager.d.ts.map +1 -1
- package/lib/typescript/web/utils.d.ts +2 -1
- package/lib/typescript/web/utils.d.ts.map +1 -1
- package/package.json +11 -11
- package/react-native.config.js +0 -1
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h +0 -1
- package/shared/shadowNodes/react/renderer/components/rngesturehandler_codegen/RNGestureHandlerDetectorShadowNode.cpp +61 -30
- package/src/RNGestureHandlerModule.web.ts +2 -2
- package/src/RNGestureHandlerModule.windows.ts +8 -10
- package/src/components/GestureButtons.tsx +47 -36
- package/src/components/GestureButtonsProps.ts +22 -21
- package/src/components/GestureComponents.tsx +28 -35
- package/src/components/GestureComponents.web.tsx +9 -12
- package/src/components/GestureHandlerButton.tsx +150 -144
- package/src/components/GestureHandlerButton.web.tsx +151 -3
- package/src/components/GestureHandlerRootView.android.tsx +2 -1
- package/src/components/GestureHandlerRootView.tsx +5 -4
- package/src/components/GestureHandlerRootView.web.tsx +6 -4
- package/src/components/Pressable/Pressable.tsx +34 -27
- package/src/components/Pressable/PressableProps.tsx +9 -8
- package/src/components/Pressable/StateMachine.tsx +1 -1
- package/src/components/Pressable/index.ts +1 -1
- package/src/components/Pressable/stateDefinitions.ts +28 -5
- package/src/components/Pressable/utils.ts +16 -12
- package/src/components/ReanimatedDrawerLayout.tsx +415 -426
- package/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx +30 -30
- package/src/components/ReanimatedSwipeable/ReanimatedSwipeableProps.ts +10 -13
- package/src/components/ReanimatedSwipeable/index.ts +2 -2
- package/src/components/Text.tsx +51 -52
- package/src/components/touchables/ExtraButtonProps.ts +5 -5
- package/src/components/touchables/GenericTouchable.tsx +17 -20
- package/src/components/touchables/GenericTouchableProps.ts +4 -3
- package/src/components/touchables/TouchableHighlight.tsx +8 -8
- package/src/components/touchables/TouchableNativeFeedback.android.tsx +5 -3
- package/src/components/touchables/TouchableNativeFeedbackProps.tsx +2 -1
- package/src/components/touchables/TouchableOpacity.tsx +5 -9
- package/src/components/touchables/TouchableWithoutFeedback.tsx +17 -24
- package/src/components/touchables/index.ts +3 -3
- package/src/components/utils.ts +1 -1
- package/src/findNodeHandle.web.ts +12 -2
- package/src/handlers/FlingGestureHandler.ts +3 -5
- package/src/handlers/ForceTouchGestureHandler.ts +6 -6
- package/src/handlers/GestureHandlerEventPayload.ts +3 -3
- package/src/handlers/LongPressGestureHandler.ts +3 -5
- package/src/handlers/NativeViewGestureHandler.ts +5 -7
- package/src/handlers/PanGestureHandler.ts +3 -5
- package/src/handlers/PinchGestureHandler.ts +3 -5
- package/src/handlers/RotationGestureHandler.ts +3 -5
- package/src/handlers/TapGestureHandler.ts +3 -5
- package/src/handlers/createHandler.tsx +19 -22
- package/src/handlers/createNativeWrapper.tsx +12 -7
- package/src/handlers/gestureHandlerCommon.ts +31 -29
- package/src/handlers/gestureHandlerTypesCompat.ts +5 -5
- package/src/handlers/gestures/GestureDetector/Wrap.tsx +2 -1
- package/src/handlers/gestures/GestureDetector/Wrap.web.tsx +34 -30
- package/src/handlers/gestures/GestureDetector/attachHandlers.ts +14 -13
- package/src/handlers/gestures/GestureDetector/dropHandlers.ts +3 -3
- package/src/handlers/gestures/GestureDetector/index.tsx +11 -10
- package/src/handlers/gestures/GestureDetector/needsToReattach.ts +2 -2
- package/src/handlers/gestures/GestureDetector/types.ts +2 -2
- package/src/handlers/gestures/GestureDetector/updateHandlers.ts +7 -7
- package/src/handlers/gestures/GestureDetector/useAnimatedGesture.ts +11 -12
- package/src/handlers/gestures/GestureDetector/useDetectorUpdater.ts +9 -8
- package/src/handlers/gestures/GestureDetector/useMountReactions.ts +5 -4
- package/src/handlers/gestures/GestureDetector/useViewRefHandler.ts +5 -4
- package/src/handlers/gestures/GestureDetector/utils.ts +13 -13
- package/src/handlers/gestures/eventReceiver.ts +8 -8
- package/src/handlers/gestures/flingGesture.ts +3 -2
- package/src/handlers/gestures/forceTouchGesture.ts +4 -3
- package/src/handlers/gestures/gesture.ts +9 -9
- package/src/handlers/gestures/gestureComposition.ts +2 -1
- package/src/handlers/gestures/gestureObjects.ts +4 -4
- package/src/handlers/gestures/gestureStateManager.web.ts +1 -1
- package/src/handlers/gestures/hoverGesture.ts +3 -2
- package/src/handlers/gestures/longPressGesture.ts +3 -2
- package/src/handlers/gestures/manualGesture.ts +1 -1
- package/src/handlers/gestures/nativeGesture.ts +3 -2
- package/src/handlers/gestures/panGesture.ts +4 -3
- package/src/handlers/gestures/pinchGesture.ts +2 -2
- package/src/handlers/gestures/reanimatedWrapper.ts +7 -6
- package/src/handlers/gestures/rotationGesture.ts +2 -2
- package/src/handlers/gestures/tapGesture.ts +3 -2
- package/src/handlers/handlersRegistry.ts +13 -6
- package/src/handlers/utils.ts +6 -5
- package/src/index.ts +111 -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 -29
- package/src/v3/components/Touchable/Touchable.tsx +134 -0
- package/src/v3/components/Touchable/TouchableProps.ts +41 -0
- package/src/v3/components/index.ts +12 -13
- package/src/v3/createNativeWrapper.tsx +14 -16
- package/src/v3/detectors/GestureDetector.tsx +17 -9
- package/src/v3/detectors/HostGestureDetector.web.tsx +32 -22
- package/src/v3/detectors/NativeDetector.tsx +12 -10
- package/src/v3/detectors/ReanimatedNativeDetector.tsx +4 -5
- package/src/v3/detectors/VirtualDetector/InterceptingGestureDetector.tsx +66 -34
- package/src/v3/detectors/VirtualDetector/VirtualDetector.tsx +29 -13
- package/src/v3/detectors/VirtualDetector/useInterceptingDetectorContext.ts +2 -1
- package/src/v3/detectors/common.ts +40 -20
- package/src/v3/detectors/index.ts +1 -1
- package/src/v3/detectors/useEnsureGestureHandlerRootView.ts +1 -0
- package/src/v3/detectors/utils.ts +4 -3
- package/src/v3/gestureStateManager.ts +0 -6
- package/src/v3/gestureStateManager.web.ts +2 -17
- package/src/v3/hooks/callbacks/eventHandler.ts +87 -47
- package/src/v3/hooks/callbacks/useGestureEventHandler.ts +21 -9
- package/src/v3/hooks/callbacks/useReanimatedEventHandler.ts +19 -11
- package/src/v3/hooks/composition/index.ts +2 -2
- package/src/v3/hooks/composition/useCompetingGestures.ts +2 -1
- package/src/v3/hooks/composition/useComposedGesture.ts +6 -6
- package/src/v3/hooks/composition/useExclusiveGestures.ts +2 -1
- package/src/v3/hooks/composition/useSimultaneousGestures.ts +2 -1
- package/src/v3/hooks/gestures/fling/FlingTypes.ts +60 -0
- package/src/v3/hooks/gestures/fling/useFlingGesture.ts +7 -34
- package/src/v3/hooks/gestures/hover/HoverTypes.ts +76 -0
- package/src/v3/hooks/gestures/hover/useHoverGesture.ts +24 -55
- package/src/v3/hooks/gestures/index.ts +111 -32
- package/src/v3/hooks/gestures/longPress/{LongPressProperties.ts → LongPressTypes.ts} +39 -0
- package/src/v3/hooks/gestures/longPress/useLongPressGesture.ts +10 -43
- package/src/v3/hooks/gestures/manual/ManualTypes.ts +28 -0
- package/src/v3/hooks/gestures/manual/useManualGesture.ts +7 -28
- package/src/v3/hooks/gestures/native/NativeTypes.ts +50 -0
- package/src/v3/hooks/gestures/native/useNativeGesture.ts +11 -38
- package/src/v3/hooks/gestures/pan/{PanProperties.ts → PanTypes.ts} +55 -0
- package/src/v3/hooks/gestures/pan/usePanGesture.ts +29 -54
- package/src/v3/hooks/gestures/pinch/PinchTypes.ts +40 -0
- package/src/v3/hooks/gestures/pinch/usePinchGesture.ts +21 -40
- package/src/v3/hooks/gestures/rotation/RotationTypes.ts +41 -0
- package/src/v3/hooks/gestures/rotation/useRotationGesture.ts +21 -38
- package/src/v3/hooks/gestures/tap/{TapProperties.ts → TapTypes.ts} +32 -0
- package/src/v3/hooks/gestures/tap/useTapGesture.ts +9 -35
- package/src/v3/hooks/useGesture.ts +26 -14
- package/src/v3/hooks/useGestureCallbacks.ts +14 -9
- package/src/v3/hooks/utils/configUtils.ts +46 -18
- package/src/v3/hooks/utils/eventHandlersUtils.ts +23 -20
- package/src/v3/hooks/utils/eventUtils.ts +63 -21
- package/src/v3/hooks/utils/index.ts +15 -20
- package/src/v3/hooks/utils/propsWhiteList.ts +23 -12
- package/src/v3/hooks/utils/reanimatedUtils.ts +22 -10
- package/src/v3/hooks/utils/relationUtils.ts +3 -3
- package/src/v3/index.ts +51 -46
- package/src/v3/types/ConfigTypes.ts +47 -36
- package/src/v3/types/DetectorTypes.ts +29 -7
- package/src/v3/types/EventTypes.ts +27 -16
- package/src/v3/types/GestureTypes.ts +49 -22
- package/src/v3/types/NativeWrapperType.ts +21 -6
- package/src/v3/types/ReanimatedTypes.ts +1 -1
- package/src/v3/types/UtilityTypes.ts +7 -7
- package/src/v3/types/index.ts +32 -36
- package/src/web/Gestures.ts +6 -6
- package/src/web/detectors/RotationGestureDetector.ts +8 -9
- package/src/web/detectors/ScaleGestureDetector.ts +4 -4
- package/src/web/handlers/FlingGestureHandler.ts +6 -7
- package/src/web/handlers/GestureHandler.ts +66 -119
- package/src/web/handlers/HoverGestureHandler.ts +5 -5
- package/src/web/handlers/IGestureHandler.ts +6 -6
- package/src/web/handlers/LongPressGestureHandler.ts +4 -5
- package/src/web/handlers/ManualGestureHandler.ts +3 -3
- package/src/web/handlers/NativeViewGestureHandler.ts +8 -8
- package/src/web/handlers/PanGestureHandler.ts +7 -7
- package/src/web/handlers/PinchGestureHandler.ts +17 -15
- package/src/web/handlers/RotationGestureHandler.ts +29 -42
- package/src/web/handlers/TapGestureHandler.ts +4 -4
- package/src/web/interfaces.ts +35 -35
- package/src/web/tools/EventManager.ts +1 -1
- package/src/web/tools/GestureHandlerDelegate.ts +4 -0
- package/src/web/tools/GestureHandlerOrchestrator.ts +0 -1
- package/src/web/tools/GestureHandlerWebDelegate.ts +82 -23
- package/src/web/tools/InteractionManager.ts +3 -2
- package/src/web/tools/KeyboardEventManager.ts +3 -2
- package/src/web/tools/NodeManager.ts +2 -2
- package/src/web/tools/PointerEventManager.ts +18 -9
- package/src/web/tools/PointerTracker.ts +1 -1
- package/src/web/tools/Vector.ts +1 -1
- package/src/web/tools/VelocityTracker.ts +1 -1
- package/src/web/tools/WheelEventManager.ts +3 -2
- package/src/web/utils.ts +28 -2
- package/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonWrapperViewManager.kt +0 -30
- package/apple/RNGestureHandlerButtonManager.h +0 -5
- package/apple/RNGestureHandlerButtonManager.mm +0 -60
- package/apple/RNGestureHandlerButtonWrapper.h +0 -19
- package/apple/RNGestureHandlerButtonWrapper.mm +0 -46
- package/lib/commonjs/ActionType.js +0 -22
- package/lib/commonjs/ActionType.js.map +0 -1
- package/lib/commonjs/Directions.js +0 -38
- package/lib/commonjs/Directions.js.map +0 -1
- package/lib/commonjs/GestureHandlerRootViewContext.js +0 -10
- package/lib/commonjs/GestureHandlerRootViewContext.js.map +0 -1
- package/lib/commonjs/PlatformConstants.js +0 -9
- package/lib/commonjs/PlatformConstants.js.map +0 -1
- package/lib/commonjs/PlatformConstants.web.js +0 -12
- package/lib/commonjs/PlatformConstants.web.js.map +0 -1
- package/lib/commonjs/PointerType.js +0 -15
- package/lib/commonjs/PointerType.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.js +0 -12
- package/lib/commonjs/RNGestureHandlerModule.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.web.js +0 -73
- package/lib/commonjs/RNGestureHandlerModule.web.js.map +0 -1
- package/lib/commonjs/RNGestureHandlerModule.windows.js +0 -53
- package/lib/commonjs/RNGestureHandlerModule.windows.js.map +0 -1
- package/lib/commonjs/RNRenderer.js +0 -14
- package/lib/commonjs/RNRenderer.js.map +0 -1
- package/lib/commonjs/RNRenderer.web.js +0 -10
- package/lib/commonjs/RNRenderer.web.js.map +0 -1
- package/lib/commonjs/State.js +0 -19
- package/lib/commonjs/State.js.map +0 -1
- package/lib/commonjs/TouchEventType.js +0 -16
- package/lib/commonjs/TouchEventType.js.map +0 -1
- package/lib/commonjs/components/GestureButtons.js +0 -220
- package/lib/commonjs/components/GestureButtons.js.map +0 -1
- package/lib/commonjs/components/GestureButtonsProps.js +0 -6
- package/lib/commonjs/components/GestureButtonsProps.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.js +0 -127
- package/lib/commonjs/components/GestureComponents.js.map +0 -1
- package/lib/commonjs/components/GestureComponents.web.js +0 -61
- package/lib/commonjs/components/GestureComponents.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerButton.js +0 -144
- package/lib/commonjs/components/GestureHandlerButton.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerButton.web.js +0 -16
- package/lib/commonjs/components/GestureHandlerButton.web.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.android.js +0 -32
- package/lib/commonjs/components/GestureHandlerRootView.android.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.js +0 -30
- package/lib/commonjs/components/GestureHandlerRootView.js.map +0 -1
- package/lib/commonjs/components/GestureHandlerRootView.web.js +0 -30
- package/lib/commonjs/components/GestureHandlerRootView.web.js.map +0 -1
- package/lib/commonjs/components/Pressable/Pressable.js +0 -270
- package/lib/commonjs/components/Pressable/Pressable.js.map +0 -1
- package/lib/commonjs/components/Pressable/PressableProps.js +0 -6
- package/lib/commonjs/components/Pressable/PressableProps.js.map +0 -1
- package/lib/commonjs/components/Pressable/StateMachine.js +0 -44
- package/lib/commonjs/components/Pressable/StateMachine.js.map +0 -1
- package/lib/commonjs/components/Pressable/index.js +0 -14
- package/lib/commonjs/components/Pressable/index.js.map +0 -1
- package/lib/commonjs/components/Pressable/stateDefinitions.js +0 -88
- package/lib/commonjs/components/Pressable/stateDefinitions.js.map +0 -1
- package/lib/commonjs/components/Pressable/utils.js +0 -92
- package/lib/commonjs/components/Pressable/utils.js.map +0 -1
- package/lib/commonjs/components/ReanimatedDrawerLayout.js +0 -377
- package/lib/commonjs/components/ReanimatedDrawerLayout.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js +0 -347
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeable.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js +0 -12
- package/lib/commonjs/components/ReanimatedSwipeable/ReanimatedSwipeableProps.js.map +0 -1
- package/lib/commonjs/components/ReanimatedSwipeable/index.js +0 -21
- package/lib/commonjs/components/ReanimatedSwipeable/index.js.map +0 -1
- package/lib/commonjs/components/Text.js +0 -60
- package/lib/commonjs/components/Text.js.map +0 -1
- package/lib/commonjs/components/touchables/ExtraButtonProps.js +0 -2
- package/lib/commonjs/components/touchables/ExtraButtonProps.js.map +0 -1
- package/lib/commonjs/components/touchables/GenericTouchable.js +0 -245
- package/lib/commonjs/components/touchables/GenericTouchable.js.map +0 -1
- package/lib/commonjs/components/touchables/GenericTouchableProps.js +0 -6
- package/lib/commonjs/components/touchables/GenericTouchableProps.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableHighlight.js +0 -93
- package/lib/commonjs/components/touchables/TouchableHighlight.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js +0 -84
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.android.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js +0 -13
- package/lib/commonjs/components/touchables/TouchableNativeFeedback.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js +0 -6
- package/lib/commonjs/components/touchables/TouchableNativeFeedbackProps.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableOpacity.js +0 -65
- package/lib/commonjs/components/touchables/TouchableOpacity.js.map +0 -1
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js +0 -33
- package/lib/commonjs/components/touchables/TouchableWithoutFeedback.js.map +0 -1
- package/lib/commonjs/components/touchables/index.js +0 -35
- package/lib/commonjs/components/touchables/index.js.map +0 -1
- package/lib/commonjs/components/utils.js +0 -17
- package/lib/commonjs/components/utils.js.map +0 -1
- package/lib/commonjs/findNodeHandle.js +0 -9
- package/lib/commonjs/findNodeHandle.js.map +0 -1
- package/lib/commonjs/findNodeHandle.web.js +0 -39
- package/lib/commonjs/findNodeHandle.web.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.js +0 -51
- package/lib/commonjs/getShadowNodeFromRef.js.map +0 -1
- package/lib/commonjs/getShadowNodeFromRef.web.js +0 -14
- package/lib/commonjs/getShadowNodeFromRef.web.js.map +0 -1
- package/lib/commonjs/ghQueueMicrotask.js +0 -10
- package/lib/commonjs/ghQueueMicrotask.js.map +0 -1
- package/lib/commonjs/global.d.js +0 -6
- package/lib/commonjs/global.d.js.map +0 -1
- package/lib/commonjs/globals.js +0 -6
- package/lib/commonjs/globals.js.map +0 -1
- package/lib/commonjs/handlers/FlingGestureHandler.js +0 -31
- package/lib/commonjs/handlers/FlingGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js +0 -46
- package/lib/commonjs/handlers/ForceTouchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/GestureHandlerEventPayload.js +0 -6
- package/lib/commonjs/handlers/GestureHandlerEventPayload.js.map +0 -1
- package/lib/commonjs/handlers/LongPressGestureHandler.js +0 -33
- package/lib/commonjs/handlers/LongPressGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/NativeViewGestureHandler.js +0 -32
- package/lib/commonjs/handlers/NativeViewGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PanGestureHandler.js +0 -112
- package/lib/commonjs/handlers/PanGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PinchGestureHandler.js +0 -29
- package/lib/commonjs/handlers/PinchGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.js +0 -13
- package/lib/commonjs/handlers/PressabilityDebugView.js.map +0 -1
- package/lib/commonjs/handlers/PressabilityDebugView.web.js +0 -11
- package/lib/commonjs/handlers/PressabilityDebugView.web.js.map +0 -1
- package/lib/commonjs/handlers/RotationGestureHandler.js +0 -29
- package/lib/commonjs/handlers/RotationGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/TapGestureHandler.js +0 -33
- package/lib/commonjs/handlers/TapGestureHandler.js.map +0 -1
- package/lib/commonjs/handlers/createHandler.js +0 -334
- package/lib/commonjs/handlers/createHandler.js.map +0 -1
- package/lib/commonjs/handlers/createNativeWrapper.js +0 -78
- package/lib/commonjs/handlers/createNativeWrapper.js.map +0 -1
- package/lib/commonjs/handlers/customDirectEventTypes.js +0 -13
- package/lib/commonjs/handlers/customDirectEventTypes.js.map +0 -1
- package/lib/commonjs/handlers/customDirectEventTypes.web.js +0 -10
- package/lib/commonjs/handlers/customDirectEventTypes.web.js.map +0 -1
- package/lib/commonjs/handlers/gestureHandlerCommon.js +0 -27
- package/lib/commonjs/handlers/gestureHandlerCommon.js.map +0 -1
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js +0 -6
- package/lib/commonjs/handlers/gestureHandlerTypesCompat.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js +0 -32
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/Wrap.web.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js +0 -68
- package/lib/commonjs/handlers/gestures/GestureDetector/attachHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js +0 -20
- package/lib/commonjs/handlers/gestures/GestureDetector/dropHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/index.js +0 -122
- package/lib/commonjs/handlers/gestures/GestureDetector/index.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js +0 -22
- package/lib/commonjs/handlers/gestures/GestureDetector/needsToReattach.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/types.js +0 -6
- package/lib/commonjs/handlers/gestures/GestureDetector/types.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js +0 -67
- package/lib/commonjs/handlers/gestures/GestureDetector/updateHandlers.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js +0 -143
- package/lib/commonjs/handlers/gestures/GestureDetector/useAnimatedGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js +0 -47
- package/lib/commonjs/handlers/gestures/GestureDetector/useDetectorUpdater.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/useMountReactions.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js +0 -41
- package/lib/commonjs/handlers/gestures/GestureDetector/useViewRefHandler.js.map +0 -1
- package/lib/commonjs/handlers/gestures/GestureDetector/utils.js +0 -145
- package/lib/commonjs/handlers/gestures/GestureDetector/utils.js.map +0 -1
- package/lib/commonjs/handlers/gestures/eventReceiver.js +0 -106
- package/lib/commonjs/handlers/gestures/eventReceiver.js.map +0 -1
- package/lib/commonjs/handlers/gestures/flingGesture.js +0 -37
- package/lib/commonjs/handlers/gestures/flingGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js +0 -80
- package/lib/commonjs/handlers/gestures/forceTouchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gesture.js +0 -344
- package/lib/commonjs/handlers/gestures/gesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureComposition.js +0 -90
- package/lib/commonjs/handlers/gestures/gestureComposition.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureObjects.js +0 -132
- package/lib/commonjs/handlers/gestures/gestureObjects.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.js +0 -50
- package/lib/commonjs/handlers/gestures/gestureStateManager.js.map +0 -1
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js +0 -36
- package/lib/commonjs/handlers/gestures/gestureStateManager.web.js.map +0 -1
- package/lib/commonjs/handlers/gestures/hoverGesture.js +0 -57
- package/lib/commonjs/handlers/gestures/hoverGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/longPressGesture.js +0 -46
- package/lib/commonjs/handlers/gestures/longPressGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/manualGesture.js +0 -25
- package/lib/commonjs/handlers/gestures/manualGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/nativeGesture.js +0 -34
- package/lib/commonjs/handlers/gestures/nativeGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/panGesture.js +0 -197
- package/lib/commonjs/handlers/gestures/panGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/pinchGesture.js +0 -38
- package/lib/commonjs/handlers/gestures/pinchGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js +0 -32
- package/lib/commonjs/handlers/gestures/reanimatedWrapper.js.map +0 -1
- package/lib/commonjs/handlers/gestures/rotationGesture.js +0 -38
- package/lib/commonjs/handlers/gestures/rotationGesture.js.map +0 -1
- package/lib/commonjs/handlers/gestures/tapGesture.js +0 -87
- package/lib/commonjs/handlers/gestures/tapGesture.js.map +0 -1
- package/lib/commonjs/handlers/getNextHandlerTag.js +0 -11
- package/lib/commonjs/handlers/getNextHandlerTag.js.map +0 -1
- package/lib/commonjs/handlers/handlersRegistry.js +0 -74
- package/lib/commonjs/handlers/handlersRegistry.js.map +0 -1
- package/lib/commonjs/handlers/utils.js +0 -79
- package/lib/commonjs/handlers/utils.js.map +0 -1
- package/lib/commonjs/index.js +0 -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.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":"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,7 +1,7 @@
|
|
|
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
6
|
constructor(delegate: GestureHandlerDelegate<unknown, IGestureHandler>);
|
|
7
7
|
protected onPointerDown(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;gBAE5D,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,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { ActionType } from '../../ActionType';
|
|
2
|
+
import type { AdaptedEvent, Config, 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 NativeViewGestureHandler extends GestureHandler {
|
|
7
7
|
private buttonRole;
|
|
8
8
|
private shouldActivateOnStart;
|
|
@@ -22,8 +22,8 @@ export default class NativeViewGestureHandler extends GestureHandler {
|
|
|
22
22
|
protected onPointerUp(event: AdaptedEvent): void;
|
|
23
23
|
protected onPointerRemove(event: AdaptedEvent): void;
|
|
24
24
|
private onUp;
|
|
25
|
-
shouldRecognizeSimultaneously(handler:
|
|
26
|
-
shouldBeCancelledByOther(_handler:
|
|
25
|
+
shouldRecognizeSimultaneously(handler: IGestureHandler): boolean;
|
|
26
|
+
shouldBeCancelledByOther(_handler: IGestureHandler): boolean;
|
|
27
27
|
shouldAttachGestureToChildView(): boolean;
|
|
28
28
|
disallowsInterruption(): boolean;
|
|
29
29
|
isButton(): boolean;
|
|
@@ -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,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAInD,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;AACrD,MAAM,CAAC,OAAO,OAAO,wBAAyB,SAAQ,cAAc;IAClE,OAAO,CAAC,UAAU,CAAW;IAI7B,OAAO,CAAC,qBAAqB,CAAS;IACtC,OAAO,CAAC,oBAAoB,CAAS;IAErC,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,SAAS,CAA2C;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;IAeS,mBAAmB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAczD,OAAO,CAAC,iBAAiB;cAUN,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAMxC,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAM1D,OAAO,CAAC,gBAAgB;cAmBL,aAAa,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAiBxC,cAAc,IAAI,IAAI;cAMtB,WAAW,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAKtC,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAK7D,OAAO,CAAC,IAAI;IAYI,6BAA6B,CAC3C,OAAO,EAAE,eAAe,GACvB,OAAO;IA4BM,wBAAwB,CAAC,QAAQ,EAAE,eAAe,GAAG,OAAO;IAI5D,8BAA8B,IAAI,OAAO;IAIlD,qBAAqB,IAAI,OAAO;IAIhC,QAAQ,IAAI,OAAO;cAIP,oBAAoB,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;CAOnE"}
|
|
@@ -1,8 +1,8 @@
|
|
|
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
7
|
velocityX: number;
|
|
8
8
|
velocityY: number;
|
|
@@ -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;IACpD,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,8 +1,8 @@
|
|
|
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
7
|
private scale;
|
|
8
8
|
private velocity;
|
|
@@ -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,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;cAU1C,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,8 +1,8 @@
|
|
|
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
7
|
private rotation;
|
|
8
8
|
private velocity;
|
|
@@ -18,8 +18,7 @@ export default class RotationGestureHandler extends GestureHandler {
|
|
|
18
18
|
anchorY: number;
|
|
19
19
|
velocity: number;
|
|
20
20
|
};
|
|
21
|
-
|
|
22
|
-
getAnchorY(): number;
|
|
21
|
+
private getAnchor;
|
|
23
22
|
protected onPointerDown(event: AdaptedEvent): void;
|
|
24
23
|
protected onPointerAdd(event: AdaptedEvent): void;
|
|
25
24
|
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,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;cAgBxC,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;cAgB/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;
|
|
@@ -70,7 +70,7 @@ export interface GestureHandlerNativeEvent extends Record<string, NativeEventArg
|
|
|
70
70
|
numberOfPointers: number;
|
|
71
71
|
state: State;
|
|
72
72
|
handlerTag: number;
|
|
73
|
-
oldState?: State;
|
|
73
|
+
oldState?: State | undefined;
|
|
74
74
|
pointerType: PointerType;
|
|
75
75
|
}
|
|
76
76
|
export interface Point {
|
|
@@ -107,9 +107,9 @@ export interface AdaptedEvent {
|
|
|
107
107
|
eventType: EventTypes;
|
|
108
108
|
pointerType: PointerType;
|
|
109
109
|
time: number;
|
|
110
|
-
button?: MouseButton;
|
|
111
|
-
stylusData?: StylusData;
|
|
112
|
-
wheelDeltaY?: number;
|
|
110
|
+
button?: MouseButton | undefined;
|
|
111
|
+
stylusData?: StylusData | undefined;
|
|
112
|
+
wheelDeltaY?: number | undefined;
|
|
113
113
|
}
|
|
114
114
|
export declare enum EventTypes {
|
|
115
115
|
DOWN = 0,
|
|
@@ -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":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,KAAK,EACV,YAAY,EACZ,iBAAiB,EACjB,WAAW,EACX,UAAU,EACV,WAAW,EACX,UAAU,EACX,MAAM,kCAAkC,CAAC;AAC1C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,KAAK,EACV,sCAAsC,EACtC,iCAAiC,EAClC,MAAM,aAAa,CAAC;AAErB,MAAM,WAAW,OAAO;IACtB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC7B;AAED,MAAM,WAAW,OAAO;IACtB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,KAAK,UAAU,GACX,MAAM,GACN,OAAO,GACP,MAAM,GACN,OAAO,GACP,UAAU,GACV,WAAW,GACX,YAAY,GACZ,UAAU,GACV,OAAO,EAAE,GACT,IAAI,GACJ,SAAS,CAAC;AAEd,MAAM,WAAW,MAAO,SAAQ,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;IACxD,OAAO,EAAE,OAAO,CAAC;IACjB,oBAAoB,CAAC,EAAE,OAAO,EAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IACpD,OAAO,CAAC,EAAE,OAAO,EAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IACvC,cAAc,CAAC,EAAE,OAAO,EAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IAC9C,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,uBAAuB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9C,UAAU,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC;IACpC,YAAY,CAAC,EAAE,YAAY,GAAG,SAAS,CAAC;IACxC,WAAW,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IACtC,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACxC,WAAW,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IACtC,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACvC,wBAAwB,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;IAC7C,0BAA0B,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACjD,gBAAgB,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;IACrC,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,SAAS,CAAC,EAAE,UAAU,CAAC;IACvB,8BAA8B,CAAC,EAAE,OAAO,CAAC;CAC1C;AAED,KAAK,eAAe,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,GAAG,SAAS,CAAC;AAC5D,MAAM,WAAW,yBACf,SAAQ,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC;IACvC,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,KAAK,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC;IAC7B,WAAW,EAAE,WAAW,CAAC;CAC1B;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX;AAED,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAGD,KAAK,eAAe,GAChB,iCAAiC,CAAC,OAAO,CAAC,GAC1C,sCAAsC,CAAC,OAAO,CAAC,GAC/C,iBAAiB,GACjB,yBAAyB,CAAC;AAE9B,MAAM,WAAW,WAAW,CAAC,CAAC,SAAS,eAAe,GAAG,eAAe,CACtE,SAAQ,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,MAAM,CAAC;IAClC,WAAW,EAAE,CAAC,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,QAAQ;IACvB,qBAAqB,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IAChD,2BAA2B,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IACtD,0BAA0B,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IACrD,+BAA+B,CAAC,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IAC3D,qCAAqC,CAAC,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IACjE,oCAAoC,CAAC,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;IAChE,6BAA6B,CAAC,EAAE,CAAC,CAAC,EAAE,WAAW,KAAK,IAAI,CAAC;CAC1D;AAED,MAAM,WAAW,YAAY;IAC3B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,UAAU,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IACjC,UAAU,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC;IACpC,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAClC;AAED,oBAAY,UAAU;IACpB,IAAI,IAAA;IACJ,uBAAuB,IAAA;IACvB,EAAE,IAAA;IACF,qBAAqB,IAAA;IACrB,IAAI,IAAA;IACJ,KAAK,IAAA;IACL,KAAK,IAAA;IACL,MAAM,IAAA;CACP;AAED,oBAAY,WAAW;IACrB,YAAY,IAAA;IACZ,KAAK,IAAA;IACL,QAAQ,IAAA;CACT;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC9B,OAAO,EAAE,iBAAiB,CAAC;IAC3B,OAAO,EAAE,WAAW,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,MAAM,GAAG;IACnB,UAAU,EAAE;QAAE,OAAO,EAAE,UAAU,CAAA;KAAE,CAAC;CACrC,CAAC"}
|
|
@@ -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"}
|
|
@@ -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,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;IAYhE,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"}
|
|
@@ -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;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KeyboardEventManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/KeyboardEventManager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"KeyboardEventManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/KeyboardEventManager.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAE1C,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,YAAY,CAAC,WAAW,CAAC;IACzE,OAAO,CAAC,MAAM,CAAC,cAAc,CAAkB;IAC/C,OAAO,CAAC,MAAM,CAAC,eAAe,CAAW;IACzC,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,MAAM,CAAC,yBAAyB,CAAS;IACjD,OAAO,CAAC,MAAM,CAAC,SAAS,CAAwC;IAEhE,OAAO,CAAC,MAAM,CAAC,mBAAmB,CAYhC;IAEF,OAAO,CAAC,eAAe,CAcrB;IAEF,OAAO,CAAC,OAAO,CASb;IAEF,OAAO,CAAC,aAAa;IAuBd,iBAAiB,IAAI,IAAI;IAezB,mBAAmB,IAAI,IAAI;IAelC,SAAS,CAAC,QAAQ,CAChB,KAAK,EAAE,aAAa,EACpB,SAAS,EAAE,UAAU,GACpB,YAAY;CAwBhB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ValueOf } from '../../typeUtils';
|
|
2
|
-
import { Gestures } from '../Gestures';
|
|
1
|
+
import type { ValueOf } from '../../typeUtils';
|
|
2
|
+
import type { Gestures } from '../Gestures';
|
|
3
3
|
import type IGestureHandler from '../handlers/IGestureHandler';
|
|
4
4
|
export default abstract class NodeManager {
|
|
5
5
|
private static gestures;
|
|
@@ -8,7 +8,7 @@ export default abstract class NodeManager {
|
|
|
8
8
|
static dropGestureHandler(handlerTag: number): void;
|
|
9
9
|
static detachGestureHandler(handlerTag: number): void;
|
|
10
10
|
static get nodes(): {
|
|
11
|
-
[x: number]: import("../handlers/
|
|
11
|
+
[x: number]: import("../handlers/FlingGestureHandler").default | import("../handlers/HoverGestureHandler").default | import("../handlers/LongPressGestureHandler").default | import("../handlers/ManualGestureHandler").default | import("../handlers/NativeViewGestureHandler").default | import("../handlers/PanGestureHandler").default | import("../handlers/PinchGestureHandler").default | import("../handlers/RotationGestureHandler").default | import("../handlers/TapGestureHandler").default;
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
14
|
//# sourceMappingURL=NodeManager.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NodeManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/NodeManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"NodeManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/NodeManager.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAC;AAG/D,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,WAAW;IACvC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAGhB;WAEO,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,eAAe;WAQxC,oBAAoB,CAChC,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,YAAY,CAAC,OAAO,CAAC,OAAO,QAAQ,CAAC,CAAC,GAC9C,IAAI;WAWO,kBAAkB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;WAW5C,oBAAoB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAQ5D,WAAkB,KAAK;;MAEtB;CACF"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import type { AdaptedEvent } from '../interfaces';
|
|
2
|
+
import { EventTypes } from '../interfaces';
|
|
1
3
|
import EventManager from './EventManager';
|
|
2
|
-
import { AdaptedEvent, EventTypes } from '../interfaces';
|
|
3
4
|
export default class PointerEventManager extends EventManager<HTMLElement> {
|
|
4
5
|
private trackedPointers;
|
|
5
6
|
private lastPosition;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PointerEventManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/PointerEventManager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PointerEventManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/PointerEventManager.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAS,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAQ3C,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAI1C,MAAM,CAAC,OAAO,OAAO,mBAAoB,SAAQ,YAAY,CAAC,WAAW,CAAC;IACxE,OAAO,CAAC,eAAe,CAAqB;IAC5C,OAAO,CAAC,YAAY,CAAQ;IAC5B,OAAO,CAAC,qBAAqB,CAAU;gBAE3B,IAAI,EAAE,WAAW,EAAE,qBAAqB,EAAE,OAAO;IAW7D,OAAO,CAAC,mBAAmB,CAwBzB;IAEF,OAAO,CAAC,iBAAiB,CA4BvB;IAEF,OAAO,CAAC,mBAAmB,CAyDzB;IAEF,OAAO,CAAC,qBAAqB,CAO3B;IAEF,OAAO,CAAC,oBAAoB,CAI1B;IAEF,OAAO,CAAC,oBAAoB,CAI1B;IAEF,OAAO,CAAC,0BAA0B,CAWhC;IAEK,iBAAiB,IAAI,IAAI;IAkBzB,mBAAmB,IAAI,IAAI;IAalC,SAAS,CAAC,QAAQ,CAAC,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,UAAU,GAAG,YAAY;IAmB5D,YAAY,IAAI,IAAI;CAIrC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PointerTracker.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/PointerTracker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"PointerTracker.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/PointerTracker.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AAGzD,MAAM,WAAW,cAAc;IAC7B,eAAe,EAAE,KAAK,CAAC;IACvB,cAAc,EAAE,KAAK,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAID,MAAM,CAAC,OAAO,OAAO,cAAc;IACjC,OAAO,CAAC,eAAe,CAAyB;IAChD,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAG7B;IAEJ,OAAO,CAAC,cAAc,CAAkD;IAExE,OAAO,CAAC,kBAAkB,CAAS;IAEnC,OAAO,CAAC,sBAAsB,CAAyB;IACvD,OAAO,CAAC,sBAAsB,CAAyB;;IAUhD,YAAY,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAsBvC,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAK1C,KAAK,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAyBvC,OAAO,CAAC,eAAe;IASvB,OAAO,CAAC,mBAAmB;IAOpB,qBAAqB,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM;IAUnD,WAAW,CAAC,SAAS,EAAE,MAAM;;;;IAW7B,qBAAqB,CAAC,SAAS,CAAC,EAAE,MAAM;IAKxC,qBAAqB,CAAC,SAAS,CAAC,EAAE,MAAM;IAUxC,wBAAwB;;;;IAcxB,wBAAwB;;;;IAcxB,oBAAoB,CAAC,cAAc,CAAC,EAAE,MAAM;;;;IAa5C,oBAAoB,CAAC,cAAc,CAAC,EAAE,MAAM;;;;IAa5C,YAAY,IAAI,IAAI;WAUb,mBAAmB,CAC/B,UAAU,EAAE,MAAM,EAAE,EACpB,UAAU,EAAE,MAAM,EAAE,GACnB,OAAO;IAIV,IAAW,oBAAoB,IAAI,MAAM,CAExC;IAED,IAAW,kBAAkB,aAQ5B;IAED,IAAW,eAAe,gCAEzB;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Vector.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/Vector.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAElE,OAAO,cAAc,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"Vector.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/Vector.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAElE,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAC;AAEnD,MAAM,CAAC,OAAO,OAAO,MAAM;IACzB,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;IACnB,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;IACnB,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC;IACvB,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC;IACvB,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC;gBAEhB,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAYhC,MAAM,CAAC,aAAa,CAAC,SAAS,EAAE,UAAU,GAAG,kBAAkB,GAAG,MAAM;IAIxE,MAAM,CAAC,YAAY,CAAC,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM;IAK9D,IAAW,SAAS,WAEnB;IAED,iBAAiB,CAAC,MAAM,EAAE,MAAM;IAIhC,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM;CAG5C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VelocityTracker.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/VelocityTracker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"VelocityTracker.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/VelocityTracker.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAIlD,MAAM,CAAC,OAAO,OAAO,eAAe;IAClC,OAAO,CAAC,oCAAoC,CAAM;IAClD,OAAO,CAAC,WAAW,CAAM;IACzB,OAAO,CAAC,mBAAmB,CAAO;IAClC,OAAO,CAAC,aAAa,CAAK;IAE1B,OAAO,CAAC,OAAO,CAA+B;;IAMvC,GAAG,CAAC,KAAK,EAAE,YAAY,GAAG,IAAI;IAUrC,OAAO,CAAC,mBAAmB;IA4D3B,IAAW,QAAQ,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAMtC;IAEM,KAAK,IAAI,IAAI;CAGrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WheelEventManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/WheelEventManager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"WheelEventManager.d.ts","sourceRoot":"","sources":["../../../../src/web/tools/WheelEventManager.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAElD,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAE1C,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,YAAY,CAAC,WAAW,CAAC;IACtE,OAAO,CAAC,UAAU,CAAkB;IAEpC,OAAO,CAAC,UAAU,CAEhB;IAEF,OAAO,CAAC,aAAa,CAMnB;IAEK,iBAAiB,IAAI,IAAI;IAKzB,mBAAmB,IAAI,IAAI;IAKlC,SAAS,CAAC,QAAQ,CAAC,KAAK,EAAE,UAAU,GAAG,YAAY;IAenC,YAAY,IAAI,IAAI;CAGrC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import type { StylusData } from '../handlers/gestureHandlerCommon';
|
|
1
2
|
import { PointerType } from '../PointerType';
|
|
2
3
|
import type { GestureHandlerRef, Point, SVGRef } from './interfaces';
|
|
3
|
-
|
|
4
|
+
export declare function getEffectiveBoundingRect(view: HTMLElement): DOMRect;
|
|
4
5
|
export declare function isPointerInBounds(view: HTMLElement, { x, y }: Point): boolean;
|
|
5
6
|
export declare const PointerTypeMapping: Map<string, PointerType>;
|
|
6
7
|
export declare const degToRad: (degrees: number) => number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/web/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,EAAE,iBAAiB,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/web/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AACnE,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,EAAE,iBAAiB,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAIrE,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,WAAW,GAAG,OAAO,CAsBnE;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,WAAW,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,KAAK,GAAG,OAAO,CAI7E;AAED,eAAO,MAAM,kBAAkB,0BAK7B,CAAC;AAEH,eAAO,MAAM,QAAQ,GAAI,SAAS,MAAM,WAA8B,CAAC;AAEvE,eAAO,MAAM,eAAe,GAAI,SAAS,MAAM,WACd,CAAC;AAElC,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,WAAW;;;EAkCnD;AAED,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,YAAY,GAClB,UAAU,GAAG,SAAS,CAsDxB;AAqHD,eAAO,MAAM,aAAa,aAqBxB,CAAC;AAWH,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,iBAAiB,WAOjE;AAOD,wBAAgB,WAAW,CAAC,IAAI,EAAE,GAAG,WAWpC"}
|