1.0.10 • Published 2 years ago

@magicbruno/swalstrap5 v1.0.10

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Sweet Alert for Bootstrap 5

A Swetalert and Bootbox alternative build on Bootstrap 5 Modal and Toast components. Do you need Swalstrap for Bootstrap 4? Go here.

Getting started

Load Swalstrap form CDN:

<script src="https://cdn.jsdelivr.net/npm/@magicbruno/swalstrap5@1.0.8/dist/js/swalstrap5_all.min.js"></script>

swalstrap5_all.js will load automatically Swalstrap stylesheet and will create a default instance of Swalstrap named Swal (an aliased as swal, Sweetalert and sweetalert).

You can use Swalstrap applying fire method to the created instance:

<script>
    Swal.fire('Wanderful!','Swalstrap is working!','success')
</script>

If you prefer you can load Swalstrap stylesheet (or a customized one) separately:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@magicbruno/swalstrap5@1.0.8/dist/css/swalstrap.min.css">

and load swalstrap5.js version:

<script src="https://cdn.jsdelivr.net/npm/@magicbruno/swalstrap5@1.0.8/dist/js/swalstrap5.min.js"></script>

In this case you must create at least an instance of Swalstrap an then use it to open your popups:

<script>
    // Create an instance 
    const mySwal = new Swalstrap();
    // Then use it for all your popups
    mySwal.fire('Wanderful!','Swalstrap is working!','success');
</script>

Downloading Swalstrap

You can install package via npm:

npm install @magicbruno/swalstrap5@1.0.8

clone the git package:

git clone https://github.com/magicbruno/SwalStrap5.git

or download it.

Warning

Swalstrap is inspired to Sweetalert NOT a clone. Features are reproduced not copied. So there are differences. Watch documentation and test examples.

1.0.10

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago