domino 0.3.2+1 domino: ^0.3.2+1 copied to clipboard
An experimental virtual dom library, which allows mixing DOM elements with components.
Changelog #
0.3.2+1 #
- Fix strong-mode cast issue with
unfold
inClassAdder
.
0.3.2 #
- Fix
StatefulComponent
path handling bug. - Fix strong-mode cast issue.
- Switching to Timer-based view invalidation, because event bubbling would be triggered on a wrong state.
0.3.1 #
- Fix readme's example.
- New implementation for
StatefulComponent
. - Conditional content structure with
addIf
. - Breaking change: matching
clazzIf
withaddIf
signature.
0.3.0 #
Breaking changes: full API rewrite:
- Building
Element
s become simpler. Setter
become first-class build pattern.#symbols
become first-class patterns (replace previouskey
).Event.getNodeBySymbol
may access referencedElement
s within the scope of the currentComponent
.- Removed
StatefulComponent
(still working on a better state handling). - Misc API simplification (e.g.
Event.domElement
=>Event.element
).
Updates:
- Fixed attribute update issues.
0.2.1 #
- Element
Setter
for shortcut certain build patterns. - Enable
String
and embeddedList
s to set forElement.classes
andclazz
setters. View.track
to execute (async) actions that will trigger the invalidation of theView
.View.escape
to escape the tracker zone forEventHandler
s that are registered inside theView
.- Expose
View
inBuildContext
. - Experimental
SubView
. - Experimental
StatefulComponent
(moved toexperimental.dart
).
0.2.0+1 #
- Fix NPE.
0.2.0 #
Breaking changes:
- Removed
Element.text
andElement.children
, usingElement.content
instead. - content items that are not
List
,Component
,String
,Node
orBuildFn
will be converted toString
(and toText
).
Updates:
- Fix:
BuildContext.ancestors
did not includeComponent
s. - 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
key
reuses 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.