Releases: ibm-js/delite
Releases · ibm-js/delite
0.1.8-dev
Release mainly for the updates to Stateful and Invalidating:
- Template are updated asynchronously, and likewise for updates to CSS classes from delite/CssState. So, tests need to be updated to add setTimeout(..., 10) calls. Alternately, you can call .deliver() to force a synchronous update.
- The hash passed to refreshRendering() and computeProperties() (previously called refreshProperties()) now contains the properties' previous values, rather than having values of true, so you need to say if("foo" in props) rather than if(props.foo)
- There's no longer any concept of a special mode where refreshRendering() gets a null argument and draws everything.
- To get a new tabIndex setting inside refreshRendering(), you need to call this._get("tabIndex") rather than saying this.tabIndex. There may be other similar problems related to tabIndex.
- Call this.notifyCurrentValue("property name") if you need refreshRendering() to process the initial value of a property even if the user hasn't changed the value.
- computeProperties() called repeatedly until no more properties are changed. then refreshRendering()
- There's no more concept of specifying which properties to watch. Changes on all properties are reported.
Also includes:
- Widget#template property. Set template instead of buildRendering.
- New dependency on decor.
- KeyNav enhancements.
- Subclasses should stop defining or _getNext(), _getFirst(), and _getLast(), and should stop referencing
_getFirst() and _getLast().
In particular, their implementations of _getNext() may not work anymore; there are new requirements
that it take a dir parameter, and also that that instance._getNext(instance, 1) gets the first child,
and instance._getNext(instance, -1) returns the last. - Be sure to define childSelector. It was always required, but now may be even "more necessary"
than before. - Removed Widget#isFocusable() and KeyNav#_get*FocusableChild() methods.
- Subclasses should stop defining or _getNext(), _getFirst(), and _getLast(), and should stop referencing
- delite/keys (essentially a copy of dojo/keys)
- Moved sniff and Destroyable to decor
- FormValueWidget has separate input and change events, client code should call handleOnInput() and handleOnChange()
See 0.1.7-dev...0.1.8-dev for details.
0.1.7-dev
This has some backwards incompatible changes:
- Store#preProcessStore() and #postProcessStore() have been replaced by processQueryResult(), and the parameter of the fetch() method is now the tracked collection (see 70d83ad)
- Removed synthetic events like a11yclick.press.
- Event handlers declared via on-foo=... syntax, see 0e4cea0
data-attach-point
renamed toattach-point
New features include:
- event binding in templates via
on-foo={{myCallback}}
requires=
attribute to be used in templates. Templates should be changed to list their own AMD dependencies, and loaded viahandlebars!path
(i.e. as a plugin), rather that the old way of including them in the JS file and then callinghandlebars.compile()
See 0.1.6-dev...0.1.7-dev for details.
0.1.6-dev
- Templates:
- Support for nested properties
- Support for hiding/showing nodes via
d-hidden={{flag}}
etc. - Convert all falsy attributes to empty string
- On the flip side, broken support for
{{#if}}
was removed
- Destroyable can now
.own
Promises - Container: removed getPreviousSibling(), getNextSibling() methods
- delite/focus: remove prevNode and curNode, and changed API to watch stack from watch() to on()
- delite/uacss: removed CSS flags for box model and rtl mode
- moving away from dependence on dojo core
- forward port of many changes from dijit
See 0.1.5-dev...0.1.6-dev for details.
0.1.5-dev
0.1.4-dev
0.1.3-dev
0.1.2-dev
0.1.1-dev
Just an in-development version for bower dependencies
0.1.0-dev as of today delite does not use dpointer (only deliteful is) so remov…