projection.mjs 797 B

1234567891011
  1. export { frame, frameData, recordStats, statsBuffer } from 'motion-dom';
  2. export { calcBoxDelta } from './projection/geometry/delta-calc.mjs';
  3. export { nodeGroup } from './projection/node/group.mjs';
  4. export { HTMLProjectionNode } from './projection/node/HTMLProjectionNode.mjs';
  5. export { correctBorderRadius } from './projection/styles/scale-border-radius.mjs';
  6. export { correctBoxShadow } from './projection/styles/scale-box-shadow.mjs';
  7. export { addScaleCorrector } from './projection/styles/scale-correction.mjs';
  8. export { HTMLVisualElement } from './render/html/HTMLVisualElement.mjs';
  9. export { buildTransform } from './render/html/utils/build-transform.mjs';
  10. export { animateValue as animate } from './animation/animators/MainThreadAnimation.mjs';
  11. export { mix } from './utils/mix/index.mjs';