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.5.5
1.4.3
1.4.1
1.4.0
The default toast component has changed and is now an attribute instead of an element. Classes will be applied to this. Fixes #15
before
<div class="overlay-container">
<div id="toast-container" class="toast-top-right">
<toast-component>
<div class="toast toast-success" style="opacity: 1;">
<div class="toast-title" aria-label="title">title</div>
<div class="toast-message" aria-label="Message">
Message
</div>
</div>
</toast-component>
</div>
</div>after
<div class="overlay-container">
<div id="toast-container" class="toast-top-right">
<div toast-component class="toast-success toast">
<div class="toast-title" aria-label="Title">Title</div>
<div class="toast-message" aria-label="Message">
Message
</div>
</div>
</div>
</div>1.3.5
1.3.4
1.3.2
1.3.0
Remove use of { provide } from @angular/core which is gone in rc.6
New method of overriding global defaults inspired by angular2-jwt. If you're sticking with defaults importing ToastrModule into your NgModule is enough.
import { NgModule } from '@angular/core';
import { ToastrModule, provideToastr } from 'toastr-ng2';
@NgModule({
bootstrap: [App],
declarations: [App],
// Import Toastr!
imports: [ ToastrModule ],
providers: [
// Override options here
provideToastr({
timeOut: 500,
})
]
})
class ExampleMainModule {}