All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Change categories are:
Added
for new features.Changed
for changes in existing functionality.Deprecated
for once-stable features removed in upcoming releases.Removed
for deprecated features removed in this release.Fixed
for any bug fixes.Security
to invite users to upgrade in case of vulnerabilities.
3.0.2 - 2022-01-19
- The
package.json
Svelte entry pointed at the oldhtml
file still. 🤦♂️ Thanks @bcazur
3.0.0-3.0.1 - 2021-12-16
- UMD build and added to
package.json
so you can use unpkg directly.
- BREAKING: Updated to use Svelte 3. 🎉 In general everything stayed the same except that the exported method
continue
had to be renamed (useanimate
instead), since it's a JS keyword. Note also the normal Svelte 2->3 upgrade stuff:data
becameprops
, and the get/set has changed. To get at the inner properties, I added an exportedgetState
function, you can see it in the demoControls.svelte
file.
2.0.0 - 2018-12-16
- This CHANGELOG!
- BREAKING: Updated to Svelte2, and in the process changed the API to use
component.setWidthRatio(ratio: number)
to manually manage the component width. - Dropped the browserify dependency, using rollup instead.