Skip to content

Releases: VoliJS/NestedLink

Documentation hotfix

08 Jun 20:51
Compare
Choose a tag to compare
v1.3.7

docs hotfix

IE11 hotfix

08 Jun 20:44
Compare
Choose a tag to compare
  • fixed exception when working with IE11 #8
  • Issues #3, #6`

Hotfix for npm installation problem

26 May 17:50
Compare
Choose a tag to compare
v1.3.5

updated package version

Added NumberInput tag

23 May 23:23
Compare
Choose a tag to compare
v1.3.3

fixed docs and tags.jsx

API extensions

11 May 07:29
Compare
Choose a tag to compare
  • API for links cache, dramatically simplifying forms data binding:
    • All links created with Link.state are cached, and are recreated only when value is different.
    • const links = Link.all( this, 'attr1', 'attr2', ... ) makes sure that links for specified state members
      are cached, and returns the reference to the cache. Thus, links.attr1 is the direct reference to the link.
    • Links cache is directly accessible in render() with this.links.
  • Link methods for purely functional updates of the enclosed object:
    • Links to arrays: unshift(...), push(...), splice(...) proxy call to native Array methods.
    • Links to arrays and objects: remove( key ) removes element with specified key.
    • Links to array and object members: remove() removes element from parent object or array.
  • Methods for links to objects and arrays:
    • link.pick( key1, key2, ... ) creates an object with links to listed object members, in the same way as Link.all.
    • link.clone() creates shallow copy of the enclosed object.
  • Added "Users List" application example.

Code comments, optimizations, and minor fixes

11 Mar 22:58
Compare
Choose a tag to compare

Linked tags and purely functional updates

10 Mar 23:07
Compare
Choose a tag to compare

All what you need to prepare for React 15.x

1.0.1

22 Feb 18:56
Compare
Choose a tag to compare
v1.0.1

added react-component keyword