Skip to content

Releases: ibm-js/delite

0.1.8-dev

18 Jul 09:39
Compare
Choose a tag to compare
0.1.8-dev Pre-release
Pre-release

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.
  • 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

02 Jul 09:22
Compare
Choose a tag to compare
0.1.7-dev Pre-release
Pre-release

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 to attach-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 via handlebars!path (i.e. as a plugin), rather that the old way of including them in the JS file and then calling handlebars.compile()

See 0.1.6-dev...0.1.7-dev for details.

0.1.6-dev

25 Jun 10:11
Compare
Choose a tag to compare
0.1.6-dev Pre-release
Pre-release
  • 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

03 Jun 08:44
Compare
Choose a tag to compare
0.1.5-dev Pre-release
Pre-release

Contains Store#fetch() extension method (to be overridden by list/Pageable code).

Also, all the dojodoc comments are now converted to JSDoc format.

0.1.4-dev

02 May 01:52
Compare
Choose a tag to compare
0.1.4-dev Pre-release
Pre-release

Fixes startup() and destroy() to process supporting widgets too.
uacss.js and sniff.js modules like in dojo.
Renames has("dojo-bidi") to has("bidi").

0.1.3-dev

28 Apr 20:34
Compare
Choose a tag to compare
0.1.3-dev Pre-release
Pre-release

0.1.2-dev

14 Apr 12:36
Compare
Choose a tag to compare
0.1.2-dev Pre-release
Pre-release
use new requirejs-text since it fixes the dojo AMD loader incompatibi…

0.1.1-dev

24 Mar 13:53
Compare
Choose a tag to compare
0.1.1-dev Pre-release
Pre-release
include boostrap variables (v3.1.1), restructure

bootstrap/common.less to leverage it and update
example

Just an in-development version for bower dependencies

01 Jan 07:08
Compare
Choose a tag to compare
0.1.0-dev

as of today delite does not use dpointer (only deliteful is) so remov…