v1.3.2
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.