domino 0.2.0
domino: ^0.2.0 copied to clipboard
An experimental virtual dom library, which allows mixing DOM elements with components.
Changelog #
0.2.0 #
Breaking changes:
- Removed
Element.textandElement.children, usingElement.contentinstead. - content items that are not
List,Component,String,NodeorBuildFnwill be converted toString(and toText).
Updates:
- Fix:
BuildContext.ancestorsdid not includeComponents. - Fix: classes were not updated when the new Element had no class.
- Fix: attributes were not updated when the new Element had no attributes.
- Fix: reduce the non-keyed reuse of DOM Elements that have non-matching style properties. (using
keyreuses them)
0.1.1 #
- Fix: root component was not added to ancestor list.
- Enable multiple (and non-component) children as root for a
View. - New node helper (
br).
0.1.0 #
- Initial version.