Mission Control Dashboard - Initial implementation
This commit is contained in:
15
node_modules/motion-dom/dist/es/render/Feature.mjs
generated
vendored
Normal file
15
node_modules/motion-dom/dist/es/render/Feature.mjs
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* 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
|
||||
Reference in New Issue
Block a user