I was in the process of making a personal MDV replacement, and was wondering if there was any effort to standardize the events necessary to have an MDV API. I only have one event I can think of as necessary to cooperate between MDV APIs:
# context bound - When MDV is given a model to apply to a DOM Node.
- Should be fired whenever a component/target for the MDV needs to be rendered.
- Should not bubble, not cancelable, detail is the model at the current DOM Node.
I think with Object.observe, we can avoid needing to propagate attribute changes.
Any thoughts on this?