2.1.3 • Published 3 years ago
@pascaliske/ngx-notifications v2.1.3
@pascaliske/ngx-notifications
Installation
To install the module use the following command:
$ ng add @pascaliske/ngx-notifications
Usage
Import the module into your
AppModule
:import { NgModule } from '@angular/core' import { BrowserModule } from '@angular/platform-browser' import { NotificationsModule } from '@pascaliske/ngx-notifications' import { AppComponent } from './app.component' @NgModule({ bootstrap: [AppComponent], declarations: [AppComponent], imports: [BrowserModule, NotificationsModule.forRoot()], providers: [], }) export class AppModule {}
Add the following line to your app's template:
<cmp-notifications></cmp-notifications>
Access the
NotificationsService
in your components:import { Component, OnInit } from '@angular/core' import { NotificationsService } from '@pascaliske/ngx-notifications' @Component({ selector: 'cmp-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], }) export class AppComponent implements OnInit { public constructor(private notificationService: NotificationsService) {} public ngOnInit(): void { this.notificationService.info('Hello World!') } }
Style the notifications with your own styles:
.cmp-notifications { // the notifications list } .cmp-notification { // a single notification &--info { // info styles } &--success { // success styles } &--warning { // warning styles } &--error { // error styles } }
License
MIT © Pascal Iske
2.1.2
3 years ago
2.1.3
3 years ago
2.1.0
3 years ago
2.0.1
4 years ago
1.5.2
5 years ago
1.4.2
5 years ago
1.4.1
5 years ago
1.4.0
6 years ago
1.3.2
6 years ago
1.3.1
6 years ago
1.3.0
6 years ago
1.2.0
6 years ago
1.1.0
7 years ago
1.0.11
7 years ago
1.0.10
7 years ago
1.0.8
7 years ago
1.0.9
7 years ago
1.0.7
7 years ago
1.0.5
7 years ago
1.0.4
7 years ago
1.0.3
7 years ago
1.0.1
7 years ago