Releases: donejs/autorender
1.4.0-beta.0
This is a beta release for the next minor. The only change in this release is that it is compatible with the new Incremental Rendering API.
1.3.2
This is patch release, with some small updates to make done-autorender compatible with steal-tools optimized builds.
1.3.0
This is a minor release that integrations with done-ssr's incremental renderer.
data-attached
When rendering is completed and the application is reattached, done-autorender now adds a data-attached
attribute to the HTML element:
<html data-attached>
...
You might use this to control styling while the application is detached.
incremental rendering
done-ssr 1.1.0 adds incremental rendering, a new way to do server side rendering that is faster. done-autorender now can more quickly reattach when incremental rendering is used.
1.2.0
This is a minor release, adding a new module that allows using done-autorender without Zones. Using:
<script src="./node_modules/steal/steal.js" main="my-app/index.stache!done-autorender/no-zone"></script>
Will run done-autorender without using zones. This makes it so your code comes live instantly, as it is immediately inserted into the DOM, and prevents issues if you might use code that doesn't run well within Zones.