Skip to content

Releases: zerodevx/svelte-toast

v0.6.1

16 Sep 08:44
Compare
Choose a tag to compare
  • Fix onpop() not called when toast popped programmatically (#28)

v0.6.0

14 Sep 20:07
Compare
Choose a tag to compare
  • Add feature onpop() callback support
  • --toastProgressBackground renamed to --toastBarBackground - old key still works though to maintain backward compatibility
  • Replace tooling from standardjs to prettier
  • Remove extraneous pausable check from resume()
  • Expose more CSS vars:
._toastItem {
  padding: var(--toastPadding, 0);
  border: var(--toastBorder, none);
}
._toastBar {
  top: var(--toastBarTop, auto);
  right: var(--toastBarRight, auto);
  bottom: var(--toastBarBottom, 0);
  left: var(--toastBarLeft, 0);
  height: var(--toastBarHeight, 6px);
  width: var(--toastBarWidth, 100%);
}

v0.6.0-rc.1

05 Sep 08:58
Compare
Choose a tag to compare
v0.6.0-rc.1 Pre-release
Pre-release
# This is a release candidate. To take it for a spin, install with `@next` tag: 
$ npm i -D @zerodevx/svelte-toast@next

https://github.com/zerodevx/svelte-toast/tree/v0.6.0-rc.1

v0.5.1

16 Aug 07:38
Compare
Choose a tag to compare
  • Handle some edge cases for pausable toasts

v0.5.0

11 Aug 13:57
Compare
Choose a tag to compare
  • Add feature pause on mouse hover
  • Add support for component-messages (#24)
  • Renamed progress option to next (sorry) - old key still works though to maintain backward compatibility
  • Update dependencies

v0.4.1

29 Jul 09:59
Compare
Choose a tag to compare
  • Fix typescript declarations (fixes #26)
  • Remove exports field from package.json (reverts #12, fixes #25, why?)
  • Update dependencies

v0.4.0

24 Jul 08:54
Compare
Choose a tag to compare
  • Add support for multiple toast containers (#18)
  • Add support for removal of multiple toasts (#20)
  • Accept object as first param for pop() and set()
  • Add types field into package.json (#17)
  • Improve ts definitions for intro property (#19)
  • Enable tailwindcss JIT mode for demo docs
  • Update dependencies
  • And finally (as we add more features) setup some tests to catch regressions

v0.3.0

04 May 10:40
Compare
Choose a tag to compare
  • Expose CSS vars --toastBoxShadow and --toastBorderRadius (#16)
  • Add typescript definitions (#14)
  • Update dependencies
  • BREAKING: UMD named exports hoisted to global scope now, so the CDN loading pattern has changed

v0.2.2

19 Apr 08:49
Compare
Choose a tag to compare
  • Cleanup code remnants
  • Update dependencies

v0.2.1

07 Apr 18:25
Compare
Choose a tag to compare
  • Fix import issue with SvelteKit (#12)
  • Better pointer-events handling