- Notifications
You must be signed in to change notification settings - Fork27
Closed
Labels
Description
- views will no longer be auto-keyed by the passed-in model. it's too surprising and i've had to explain it too many times. explicitly keying by the model when needed isnt all that difficult.
domvm.lazyList()
creator &domvm.LAZY_LIST
flag for creating deferred homogenous children that can reuse old vnodes without additional allocation.render()
will be able to returnvm.node
(the old vnode) to prevent/optimize redraw when no changes.xlink:href
support in svgvm.diff()
&vm.hook()
will be removed in favor of what is already possible:direct assignmentvm.hooks = {}
- new:
vm.config({hooks:..., diff...})
- object return
{hooks: ..., diff:..., render: ...}
- externally passing in through opts:
{hooks: ..., diff: ...}
- dist builds may be split into a separate branch, since merging and rebasing are currently a nightmare and always result in conflicts.
v3 should be ready within the next couple weeks.