ngx-toastr 8.2.1 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -8
- package/bundles/ngx-toastr.umd.js +43 -548
- package/bundles/ngx-toastr.umd.js.map +17 -6
- package/bundles/ngx-toastr.umd.min.js +1 -1
- package/bundles/ngx-toastr.umd.min.js.map +100 -52
- package/esm2015/ngx-toastr.js +18 -2
- package/esm2015/ngx-toastr.js.map +4 -4
- package/esm5/ngx-toastr.js +47 -561
- package/esm5/ngx-toastr.js.map +8 -5
- package/ngx-toastr.metadata.json +1 -1
- package/package.json +3 -1
- package/toastr/toast-noanimation.component.d.ts +1 -0
- package/toastr/toastr-config.d.ts +2 -3
- package/toastr/toastr.service.d.ts +9 -9
package/README.md
CHANGED
@@ -7,18 +7,16 @@
|
|
7
7
|
<img src="https://badge.fury.io/js/ngx-toastr.svg" alt="npm">
|
8
8
|
</a>
|
9
9
|
<a href="https://travis-ci.org/scttcper/ngx-toastr">
|
10
|
-
<img src="https://travis-ci.org/scttcper/ngx-toastr.svg?branch=master" alt="travis"
|
10
|
+
<img src="https://travis-ci.org/scttcper/ngx-toastr.svg?branch=master" alt="travis">
|
11
|
+
</a>
|
11
12
|
<a href="https://codecov.io/github/scttcper/ngx-toastr">
|
12
13
|
<img src="https://img.shields.io/codecov/c/github/scttcper/ngx-toastr.svg" alt="codecov">
|
13
14
|
</a>
|
14
|
-
<a href="https://greenkeeper.io/">
|
15
|
-
<img src="https://badges.greenkeeper.io/scttcper/ngx-toastr.svg" alt="greenkeeper">
|
16
|
-
</a>
|
17
15
|
<br>
|
18
|
-
|
16
|
+
<br>
|
19
17
|
</div>
|
20
|
-
|
21
|
-
|
18
|
+
|
19
|
+
DEMO: https://scttcper.github.io/ngx-toastr/
|
22
20
|
|
23
21
|
## Features
|
24
22
|
|
@@ -57,7 +55,7 @@ Don't want to use `@angular/animations`? See
|
|
57
55
|
* If you are using sass you can import the css.
|
58
56
|
|
59
57
|
```scss
|
60
|
-
@import "~ngx-toastr/toastr";
|
58
|
+
@import "~ngx-toastr/toastr.css";
|
61
59
|
// or import a bootstrap 4 alert styled design (SASS ONLY)
|
62
60
|
// should be after your bootstrap imports, it uses bs4 variables
|
63
61
|
@import "~ngx-toastr/toastr-bs4-alert"
|