ngx-sweetalert2

Sweetalert2 for angular 2 cli application.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
ngx-sweetalert2
210.2.76 years ago7 years agoMinified + gzip package size for ngx-sweetalert2 in KB

Readme

ngx-sweetalert2
Sweetalert2 for angular x cli application.
Install
npm i -s ngx-sweetalert2
Usage
Add the following sections to the .angular.cli.json file.
"styles": [
"../node_modules/sweetalert2/dist/sweetalert2.css"
],
"scripts": [
"../node_modules/sweetalert2/dist/sweetalert2.js"
],

Next, inject SweetAlertService into a component or module:
import { SweetAlertService } from 'ngx-sweetalert2';

@Component({
  providers: [SweetAlertService]
})
export class MyComponent {
  constructor(private _swal2: SweetAlertService) {
    this._swal2.success({ title: 'This is a alert' });
  }
}

import { SweetAlertService } from 'ngx-sweetalert2';

@NgModule({
  providers: [SweetAlertService]
})