jeffersonsouza / ngx-notification-bar

Notification bar for Angular

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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/release'
import { AppComponent } from './app.component';

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

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

About

Notification bar for Angular

License:MIT License


Languages

Language:TypeScript 78.5%Language:JavaScript 15.5%Language:HTML 6.0%