AnimationChildProps
Represents the props of the child Animation elements.
Definition
Package:@progress/kendo-react-animation
Properties
Inline styles that apply when the Animation has entered.
Specifies the style that applies when the Animation reaches its entering state.
Inline styles that apply when the Animation has exited.
Specifies the style that applies when the Animation reaches its exiting state.
appear?
boolean
Defines whether a transition should happen on the first mount.
false
className?
string
Custom CSS class to apply to the Animation container.
componentChildClassName?
string
Specifies the CSS class names that are set to each of the animated children elements.
Specifies the styles that are set to each of the animated children elements.
enter?
boolean
Specifies whether to animate the entering (showing) element (see example).
true
exit?
boolean
Specifies whether to animate a leaving (disappearing) element (see example).
true
in?
boolean
Controlled by TransitionGroup if present. Otherwise, sets the state of the enter or exit animations.
mountOnEnter?
boolean
Specifies if the Animation uses lazy-mounting on the first in={true}.
false
onEnter?
(event: AnimationEventArguments) => void
Called when you add a component to an existing Animation component and the Animation has not started yet (more information and example).
onEntered?
(event: AnimationEventArguments) => void
Called when you add a component to an existing Animation component and the Animation is now finished (more information and example).
onEntering?
(event: AnimationEventArguments) => void
Called when you add a component to an existing Animation component and the Animation is now happening (more information and example).
onExit?
(event: AnimationEventArguments) => void
An event called after the Animation has reached its exit state (more information and example).
onExited?
(event: AnimationEventArguments) => void
An event called after the Animation has reached its exited state (more information and example).
onExiting?
(event: AnimationEventArguments) => void
An event called after the Animation has reached its exiting state (more information and example).
style?
any
Custom inline styles to apply to the Animation container.
transitionEnterDuration?
number
Specifies the duration of the transition for the entering (animation in) Animation (see example). After the time runs out, the Animation is terminated.
300
transitionExitDuration?
number
Specifies the duration of the transition for the exiting (animation out) Animation (see example). After the time runs out, the Animation is terminated.
300
transitionName
string
Specifies the base class name for the transition. This class generates
the appear, enter, and exit transition classes.
unmountOnExit?
boolean
Specifies if the Animation unmounts after it reaches its exited state.
false
unstyled?
AnimationsClassStructure
Provides unstyled options for the Animation. Accepts an object
that implements the AnimationsClassStructure interface.