Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x 30x | /** * Internal */ export type { ResolvedValues, ScrapeMotionValuesFromProps, } from "./render/types" export type { AnimationLifecycles } from "./render/utils/lifecycles" export type { CreateVisualElement } from "./render/types" export { AnimationType } from "./render/utils/types" export { animations } from "./motion/features/animations" export { useVisualElementContext } from "./context/MotionContext" export { checkTargetForNewValues } from "./render/utils/setters" export { createBox } from "./projection/geometry/models" export { calcLength } from "./projection/geometry/delta-calc" export { filterProps } from "./render/dom/utils/filter-props" export { makeUseVisualState } from "./motion/utils/use-visual-state" export { isDragActive } from "./gestures/drag/utils/lock" export { addPointerEvent } from "./events/use-pointer-event" export { wrapHandler } from "./events/event-info" export { isMotionValue } from "./value/utils/is-motion-value" export { isBrowser } from "./utils/is-browser" export { useUnmountEffect } from "./utils/use-unmount-effect" |