Skip to content

v1.3.2

Compare
Choose a tag to compare
@akuzko akuzko released this 21 Mar 23:38
· 16 commits to master since this release

Pure Render Optimization

  • Added caching of input onChange handlers to prevent pure input components re-rendering when rest of properties was not changed.
    Caching works for simple cases, i.e. <TextField {...$('name')} /> as well as for more complicated cases, such as <TextField {...$('name')(this.changeName, i)} />. Thanks to @finom who pointed on this flaw.