UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

8 lines (7 loc) 748 B
'use strict'; export const ANIMATION_PROPS = ['animationName', 'animationDuration', 'animationTimingFunction', 'animationDelay', 'animationIterationCount', 'animationDirection', 'animationFillMode', 'animationPlayState']; export const TRANSITION_PROPS = ['transitionProperty', 'transitionDuration', 'transitionTimingFunction', 'transitionDelay', 'transitionBehavior', 'transition']; export const VALID_STEPS_MODIFIERS = ['jump-start', 'start', 'jump-end', 'end', 'jump-none', 'jump-both']; export const VALID_PREDEFINED_TIMING_FUNCTIONS = ['linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'step-end']; export const VALID_PARAMETRIZED_TIMING_FUNCTIONS = ['cubic-bezier', 'steps', 'linear']; //# sourceMappingURL=settings.js.map