Releases: knownasilya/ember-toastr
Releases · knownasilya/ember-toastr
Engines
Actually Fix
v1.6.2
- Actually fix the node dependency resolution
Fix add npm package
v1.6.1
-
It seems i have introduced a bug here by passing an object, whenever you would run ember install ember-toastr it would try to npm install [object Object]
-
up with patch version number
NPM
Remove toasts and toasts property
v1.5.0
Enhancements
- Allow removing individual toasts
let item = this.toast.info('hello');
this.toast.remove(item);
- Allow clearing individual toasts
let item = this.toast.info('hello');
this.toast.clear(item);
- Save toasts to the
toasts
property and auto remove when hidden
Thanks to @baseballlover723 for PR #11
Nested fix
v1.4.1
- Fix nested support, see #10
clear and remove methods
- Add
clear
andremove
methods to service [#8]
Docs
Fixes
- Update readme to reflect transition to service