motion-v
Version:
<h1 align="center"> <img width="35" height="35" alt="Motion logo" src="https://github.com/user-attachments/assets/00d6d1c3-72c4-4c2f-a664-69da13182ffc" /><br />Motion for Vue</h1>
26 lines (25 loc) • 839 B
JavaScript
import { AnimationFeature } from "./animation/animation.mjs";
import { createVisualElement } from "../state/create-visual-element.mjs";
import { PressGesture } from "./gestures/press/index.mjs";
import { HoverGesture } from "./gestures/hover/index.mjs";
import { InViewGesture } from "./gestures/in-view/index.mjs";
import { FocusGesture } from "./gestures/focus/index.mjs";
import { ProjectionFeature } from "./layout/projection.mjs";
import { PanGesture } from "./gestures/pan/index.mjs";
import { DragGesture } from "./gestures/drag/index.mjs";
import { LayoutFeature } from "./layout/layout.mjs";
const domMax = {
renderer: createVisualElement,
features: [
AnimationFeature,
PressGesture,
HoverGesture,
InViewGesture,
FocusGesture,
ProjectionFeature,
PanGesture,
DragGesture,
LayoutFeature
]
};
export { domMax };