UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

48 lines (47 loc) 3.19 kB
'use strict'; import './publicGlobals'; export { runOnJS, runOnUI, createWorkletRuntime, runOnRuntime, makeMutable, makeShareableCloneRecursive, isReanimated3, isConfigured, enableLayoutAnimations, getViewProp } from './core'; export { useAnimatedProps, useEvent, useHandler, useWorkletCallback, useSharedValue, useReducedMotion, useAnimatedStyle, useAnimatedGestureHandler, useAnimatedReaction, useAnimatedRef, useAnimatedScrollHandler, useDerivedValue, useAnimatedSensor, useFrameCallback, useAnimatedKeyboard, useScrollViewOffset } from './hook'; export { cancelAnimation, defineAnimation, withClamp, withDecay, withDelay, withRepeat, withSequence, withSpring, withTiming } from './animation'; export { Extrapolation, interpolate, clamp } from './interpolation'; export { /** * @deprecated Please use `Extrapolation` instead. */ Extrapolate, ColorSpace, interpolateColor, useInterpolateConfig } from './interpolateColor'; export { Easing } from './Easing'; export { measure, dispatchCommand, scrollTo, setGestureState, setNativeProps, getRelativeCoords } from './platformFunctions'; export { isColor, processColor, convertToRGBA } from './Colors'; export { createAnimatedPropAdapter } from './PropAdapters'; export { BaseAnimationBuilder, ComplexAnimationBuilder, Keyframe, // Flip FlipInXUp, FlipInYLeft, FlipInXDown, FlipInYRight, FlipInEasyX, FlipInEasyY, FlipOutXUp, FlipOutYLeft, FlipOutXDown, FlipOutYRight, FlipOutEasyX, FlipOutEasyY, // Stretch StretchInX, StretchInY, StretchOutX, StretchOutY, // Fade FadeIn, FadeInRight, FadeInLeft, FadeInUp, FadeInDown, FadeOut, FadeOutRight, FadeOutLeft, FadeOutUp, FadeOutDown, // Slide SlideInRight, SlideInLeft, SlideOutRight, SlideOutLeft, SlideInUp, SlideInDown, SlideOutUp, SlideOutDown, // Zoom ZoomIn, ZoomInRotate, ZoomInLeft, ZoomInRight, ZoomInUp, ZoomInDown, ZoomInEasyUp, ZoomInEasyDown, ZoomOut, ZoomOutRotate, ZoomOutLeft, ZoomOutRight, ZoomOutUp, ZoomOutDown, ZoomOutEasyUp, ZoomOutEasyDown, // Bounce BounceIn, BounceInDown, BounceInUp, BounceInLeft, BounceInRight, BounceOut, BounceOutDown, BounceOutUp, BounceOutLeft, BounceOutRight, // Lightspeed LightSpeedInRight, LightSpeedInLeft, LightSpeedOutRight, LightSpeedOutLeft, // Pinwheel PinwheelIn, PinwheelOut, // Rotate RotateInDownLeft, RotateInDownRight, RotateInUpLeft, RotateInUpRight, RotateOutDownLeft, RotateOutDownRight, RotateOutUpLeft, RotateOutUpRight, // Roll RollInLeft, RollInRight, RollOutLeft, RollOutRight, // Transitions Layout, LinearTransition, FadingTransition, SequencedTransition, JumpingTransition, CurvedTransition, EntryExitTransition, combineTransition, // SET SharedTransition, SharedTransitionType } from './layoutReanimation'; export { isSharedValue } from './isSharedValue'; export { SensorType, IOSReferenceFrame, InterfaceOrientation, KeyboardState, ReduceMotion } from './commonTypes'; export { getUseOfValueInStyleWarning } from './pluginUtils'; export { withReanimatedTimer, advanceAnimationByTime, advanceAnimationByFrame, setUpTests, getAnimatedStyle } from './jestUtils'; export { LayoutAnimationConfig } from './component/LayoutAnimationConfig'; export { startMapper, stopMapper } from './mappers'; //# sourceMappingURL=index.js.map