UNPKG

@atlaskit/motion

Version:

A set of utilities to apply motion in your application.

17 lines (16 loc) 1.17 kB
export { durations, exitingDurations, durationStep } from './utils/durations'; export type { Durations } from './utils/durations'; export { easeIn, easeInOut, easeOut, linear } from './utils/curves'; export { isReducedMotion, useIsReducedMotion, reduceMotionAsPerUserPreference, prefersReducedMotion, } from './utils/accessibility'; export { default as FadeIn } from './entering/fade-in'; export type { FadeKeyframesMotionProps } from './entering/fade-in'; export { default as StaggeredEntrance } from './entering/staggered-entrance'; export type { StaggeredEntranceProps } from './entering/staggered-entrance'; export { useResizingHeight, ResizingHeight } from './resizing/height'; export { default as ExitingPersistence, useExitingPersistence, } from './entering/exiting-persistence'; export type { ExitingPersistenceProps } from './entering/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 type { ShrinkOutProps } from './entering/shrink-out'; export type { Transition, Direction } from './entering/types';