This repository was archived by the owner on Mar 16, 2026. It is now read-only.
Releases: scttcper/ngx-toastr
Releases Β· scttcper/ngx-toastr
1.0.0
- Overlays are now synchronous thanks to more progress on material2.
- EventEmitters for onHidden, onShown, onTap. You can subscribe to these from your ToastConfig (the one that is an optional parameter on every toast shown).
let customConfig = new ToastConfig();
customConfig.timeOut = 0;
customConfig.onTap.subscribe(() => console.log('tapped'));
this.toastrService.error('waits for tap to close', '', customConfig);0.5.0
Add config option extendedTimeOut = how long the toast will display after a user hovers.
Silence error from ComponentResolver rc4 -> rc5
Breaking Changes
Now requires angular rc5 to work and @angular/platform-browser if you somehow weren't using that already.