unis_crm/frontend/node_modules/motion-dom/dist/es/render/Feature.mjs

16 lines
374 B
JavaScript
Raw Normal View History

2026-03-19 06:27:20 +00:00
/**
* Feature base class for extending VisualElement functionality.
* Features are plugins that can be mounted/unmounted to add behavior
* like gestures, animations, or layout tracking.
*/
class Feature {
constructor(node) {
this.isMounted = false;
this.node = node;
}
update() { }
}
export { Feature };
//# sourceMappingURL=Feature.mjs.map