Ng2 Sweetalert2 Save Abandoned

A sweetalert2 service for angular2.

Project README

DEPRECATED

This library should not be used. Either import swal directly or use this fork instead.

ng2-sweetalert2

A service wrapping sweetalert2 for angular 2.

Install

npm i -s ng2-sweetalert2

Usage

First, make sure you have a CSS loader set up for webpack, like so:

{
  test: /\.css/,
  loader: 'style!css'
},

Next, inject SweetAlertService into a component:

import { SweetAlertService } from 'ng2-sweetalert2';

@Component({
  providers: [SweetAlertService]
})
export class MyComponent {

  static get parameters() {
    return [[SweetAlertService]];
  }

  constructor(swal) {
    this.swalService = swal;
  }

API

See limonte/sweetalert2 for examples.

Function Arguments Description
swal any Create a generic swal with any arguments.
prompt object Create a swal that prompts user with a basic text entry field.
confirm object Create a swal that confirms a user action.
alert object Create a swal that alerts a user of something that happened.
question object Wrapper for alert that sets type to question.
success object Wrapper for alert that sets type to success.
error object Wrapper for alert that sets type to error.
warn object Wrapper for alert that sets type to warn.
info object Wrapper for alert that sets type to info.
Open Source Agenda is not affiliated with "Ng2 Sweetalert2" Project. README Source: seiyria/ng2-sweetalert2
Stars
49
Open Issues
0
Last Commit
6 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating