ngx-toastr 8.9.0 → 8.10.2

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.
Files changed (52) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -1
  3. package/bundles/ngx-toastr.umd.js +108 -79
  4. package/bundles/ngx-toastr.umd.js.map +1 -1
  5. package/bundles/ngx-toastr.umd.min.js +1 -1
  6. package/bundles/ngx-toastr.umd.min.js.map +1 -1
  7. package/esm2015/ngx-toastr.js +1 -1
  8. package/esm2015/overlay/overlay-container.js +5 -4
  9. package/esm2015/overlay/overlay-ref.js +3 -3
  10. package/esm2015/overlay/overlay.js +15 -11
  11. package/esm2015/portal/dom-portal-host.js +7 -5
  12. package/esm2015/portal/portal.js +6 -10
  13. package/esm2015/public_api.js +1 -1
  14. package/esm2015/toastr/default-config.js +2 -2
  15. package/esm2015/toastr/toast-injector.js +4 -4
  16. package/esm2015/toastr/toast-noanimation.component.js +8 -6
  17. package/esm2015/toastr/toast-token.js +8 -9
  18. package/esm2015/toastr/toast.component.js +8 -6
  19. package/esm2015/toastr/toast.directive.js +3 -3
  20. package/esm2015/toastr/toastr-config.js +140 -152
  21. package/esm2015/toastr/toastr.module.js +2 -2
  22. package/esm2015/toastr/toastr.service.js +78 -65
  23. package/esm5/ngx-toastr.js +1 -1
  24. package/esm5/overlay/overlay-container.js +5 -4
  25. package/esm5/overlay/overlay-ref.js +3 -3
  26. package/esm5/overlay/overlay.js +15 -11
  27. package/esm5/portal/dom-portal-host.js +7 -5
  28. package/esm5/portal/portal.js +6 -10
  29. package/esm5/public_api.js +1 -1
  30. package/esm5/toastr/default-config.js +2 -2
  31. package/esm5/toastr/toast-injector.js +5 -4
  32. package/esm5/toastr/toast-noanimation.component.js +8 -6
  33. package/esm5/toastr/toast-token.js +8 -9
  34. package/esm5/toastr/toast.component.js +8 -6
  35. package/esm5/toastr/toast.directive.js +3 -3
  36. package/esm5/toastr/toastr-config.js +140 -152
  37. package/esm5/toastr/toastr.module.js +2 -2
  38. package/esm5/toastr/toastr.service.js +81 -68
  39. package/fesm2015/ngx-toastr.js +84 -56
  40. package/fesm2015/ngx-toastr.js.map +1 -1
  41. package/fesm5/ngx-toastr.js +88 -59
  42. package/fesm5/ngx-toastr.js.map +1 -1
  43. package/ngx-toastr.metadata.json +1 -1
  44. package/overlay/overlay-container.d.ts +1 -1
  45. package/overlay/overlay.d.ts +3 -3
  46. package/package.json +1 -1
  47. package/portal/dom-portal-host.d.ts +1 -1
  48. package/toastr/toast-noanimation.component.d.ts +1 -1
  49. package/toastr/toast.component.d.ts +2 -2
  50. package/toastr/toastr-config.d.ts +3 -3
  51. package/toastr/toastr.service.d.ts +4 -4
  52. package/toastr-bs4-alert.scss +29 -4
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Scott Cooper
3
+ Copyright (c) 2018 Scott Cooper
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -78,7 +78,7 @@ Don't want to use `@angular/animations`? See
78
78
  ]
79
79
  ```
80
80
 
81
- **step 2:** add ToastrModule to app NgModule
81
+ **step 2:** add ToastrModule to app NgModule, make sure you have BrowserAnimationsModule as well
82
82
 
83
83
  ```typescript
84
84
  import { CommonModule } from '@angular/common';