Releases: ElliotNB/nimbly
Releases · ElliotNB/nimbly
0.0.3
Changelog:
- Added a warning if a fetch method never resolves or rejects.
- Added support for a
_destroy()
lifecycle hook. - Bug fix to reset pending refresh status (this._refreshList) after the
initial render. - Add support for removing a child component, but without destroying the
component. - When a component is destroyed, null out the component properties when
isReady is true to ensure pending callbacks don't access those
properties after destruction and trigger errors. - Update isReady to take into account that a component may have already
been destroyed.
0.0.2
Changelog:
- Templates now support child components as custom tags.
- Support for repeatable sections with
<ul>
<ol>
<table>
and<select>
tags. - Added post-render hook for special rendering requirements.
- Warn when a uiBinding doesn't find a match for a CSS selector.
- Throw an error when a uiBinding or dataBinding method doesn't exist.
- Documentation updates to README.
- Throw an error if templates are not wrapped by a single element.
- Throw an error if this.data mutated during render.