Releases: resonance-cascade/cache-component
Releases · resonance-cascade/cache-component
v5.2.0
v5.1.0
v5.0.1
v5.0.0
v5.0.0-1
- Beta release! Please let me know if there is anything wrong with this!
- Remove
on-load
and use a new dom ID based dom tracking system. Requires ES5 support for getters. - Remove
_load
and_unload
methods. You have to wrap instances ofcache-component
withon-load
on your own now. - Add
_didUpdate
hook so you can call dom methods after the component updates. Handy for updating a scroll position.
v4.0.2
v4.0.1
- Fix instance clobbering bug. This bug showed up when you had two instances of the same component morphing over each other. This would cause the real DOM reference to get lost between the internal _element references of the two instances. The work around was the introduction of ccId which is a unique ID to prevent this.
v4.0.0
- use on-load to invalidate
this._element
. Fixes component rendering when they get completely removed from the DOM. - added
_load
and_unload
methods to allow you to run code when the dom is mounted and unmounted. - handle morphing internally, and ALWAYSE return a proxy node. There is no other way.