@atlaskit/motion
Version:
A set of utilities to apply motion in your application.
11 lines • 348 B
JavaScript
/**
* Supported reanimate values.
* 'enter' will re-enter the animation.
* 'exit-then-enter' will exit the animation and then enter it again.
*/
export var Reanimate = /*#__PURE__*/function (Reanimate) {
Reanimate["enter"] = "enter";
Reanimate["exit_then_enter"] = "exit_then_enter";
Reanimate["exit"] = "exit";
return Reanimate;
}({});