@atlaskit/motion
Version:
A set of utilities to apply motion in your application.
20 lines • 1.37 kB
JavaScript
/* eslint-disable @repo/internal/deprecations/deprecation-ticket-required -- VOLTC-139 tracks removal of these deprecated re-export shims. */
export { durations, durationStep } from './utils/durations';
export { exitingDurations } from './utils/exiting-durations';
export { easeIn, easeInOut, easeOut, linear } from './utils/curves';
export { isReducedMotion } from './utils/is-reduced-motion';
export { useIsReducedMotion } from './utils/use-is-reduced-motion';
export { prefersReducedMotion } from './utils/accessibility';
export { reduceMotionAsPerUserPreference } from './utils/reduce-motion-as-per-user-preference';
export { default as FadeIn } from './entering/fade-in';
export { default as AnimateIn } from './entering/animate-in';
export { default as StaggeredEntrance } from './entering/staggered-entrance';
export { ResizingHeight } from './resizing/height';
export { useResizingHeight } from './resizing/use-resizing-height';
export { default as ExitingPersistence } from './entering/exiting-persistence';
export { useExitingPersistence } from './entering/use-exiting-persistence';
export { default as ZoomIn } from './entering/zoom-in';
export { default as SlideIn } from './entering/slide-in';
export { default as ShrinkOut } from './entering/shrink-out';
export { default as Motion } from './entering/motion';
export { Reanimate } from './entering/reanimate';