CSS and DOM mutation observers for reactive UI code
idae-dom-events observes CSS and DOM changes for the Idae stack: cssDom tracks style, animation and resize events on selected elements, while htmlDom.track wraps MutationObserver for attribute, child-list and character-data changes.
flowchart TD P["Idae monorepo"] --> S["idae-dom-events"] S --> A["cssDom · animation/style/resize tracking"] S --> B["htmlDom.track · MutationObserver wrapper"] S --> C["callback-based change reporting"]
Library for observing and reacting to DOM changes: cssDom tracks animations, style changes and resize events, htmlDom.track observes attribute, child-list and character-data mutations. Built for dynamic web applications that need fine-grained change detection.