features-animation.mjs 364 B

1234567891011121314
  1. import { animations } from '../../motion/features/animations.mjs';
  2. import { gestureAnimations } from '../../motion/features/gestures.mjs';
  3. import { createDomVisualElement } from './create-visual-element.mjs';
  4. /**
  5. * @public
  6. */
  7. const domAnimation = {
  8. renderer: createDomVisualElement,
  9. ...animations,
  10. ...gestureAnimations,
  11. };
  12. export { domAnimation };