@progress/kendo-react-animation
Version:
React Animation component assists with animating HTML elements. KendoReact Animation package
18 lines (17 loc) • 1.26 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { Animation, AnimationProps } from './Animation.js';
import { AnimationChild, AnimationChildHandle, AnimationChildProps } from './AnimationChild.js';
import { Fade, FadeProps } from './Fade.js';
import { Expand, ExpandDirection, ExpandProps } from './Expand.js';
import { Push, PushDirection, PushProps } from './Push.js';
import { Slide, SlideDirection, SlideProps } from './Slide.js';
import { Zoom, ZoomDirection, ZoomProps } from './Zoom.js';
import { Reveal, RevealDirection, RevealProps } from './Reveal.js';
import { useAnimation } from './hooks/useAnimation.js';
export { Animation, AnimationProps, AnimationChild, AnimationChildHandle, AnimationChildProps, Fade, FadeProps, Expand, ExpandProps, ExpandDirection, Push, PushProps, PushDirection, Slide, SlideProps, SlideDirection, Zoom, ZoomProps, ZoomDirection, Reveal, RevealProps, RevealDirection, useAnimation };