ngx-notification-bar
TypeScript icon, indicating that this package has built-in type declarations

1.14.0 • Public • Published

Description

Angular notification bar component for Angular 2+ projects.

This is a modified version from angular2-notification-bar project to work with all Angular 2+ versions.

The reason is why i created this project is the old project is not working with Angular 4.1.x+ and there is alot of modifications on this project to work with webpack 2.

Installation

npm install ngx-notification-bar --save

Usage

import { NotificationBarModule } from 'ngx-notification-bar'
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

@NgModule({
    imports: [
      BrowserAnimationsModule, // optional for animations
      BrowserModule,
      NotificationBarModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule {
}
<notification-bar></notification-bar>
import { NotificationBarService } from 'ngx-notification-bar';

constructor(private notificationBarService:NotificationBarService){}

this.notificationBarService.create({ message: 'USER_SAVED', type: NotificationType.Success});

Options

message: string;
type?: NotificationType;
autoHide?: boolean;
hideDelay?: number;
isHtml?: boolean;
allowClose?: boolean;
hideOnHover?: boolean

License

MIT

Package Sidebar

Install

npm i ngx-notification-bar

Weekly Downloads

15

Version

1.14.0

License

MIT

Unpacked Size

85.6 kB

Total Files

21

Last publish

Collaborators

  • wasimnabil