@indigina/ui-kit 1.0.78 → 1.0.79
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/bundles/indigina-ui-kit.umd.js +4 -3
- package/bundles/indigina-ui-kit.umd.js.map +1 -1
- package/esm2015/lib/components/kit-toastr/kit-toastr.service.js +6 -5
- package/fesm2015/indigina-ui-kit.js +5 -4
- package/fesm2015/indigina-ui-kit.js.map +1 -1
- package/indigina-ui-kit.metadata.json +1 -1
- package/lib/components/kit-toastr/kit-toastr.service.d.ts +3 -2
- package/package.json +1 -1
- package/styles/components/toastr.scss +5 -3
|
@@ -2222,9 +2222,10 @@
|
|
|
2222
2222
|
KitToastrType["WARNING"] = "toast-warning";
|
|
2223
2223
|
})(exports.KitToastrType || (exports.KitToastrType = {}));
|
|
2224
2224
|
var KitToastrService = /** @class */ (function () {
|
|
2225
|
-
function KitToastrService(toastrService,
|
|
2225
|
+
function KitToastrService(toastrService, rendererFactory2) {
|
|
2226
2226
|
this.toastrService = toastrService;
|
|
2227
|
-
this.
|
|
2227
|
+
this.rendererFactory2 = rendererFactory2;
|
|
2228
|
+
this.renderer2 = this.rendererFactory2.createRenderer(null, null);
|
|
2228
2229
|
}
|
|
2229
2230
|
KitToastrService.prototype.show = function (config) {
|
|
2230
2231
|
var _this = this;
|
|
@@ -2273,7 +2274,7 @@
|
|
|
2273
2274
|
];
|
|
2274
2275
|
KitToastrService.ctorParameters = function () { return [
|
|
2275
2276
|
{ type: ngxToastr.ToastrService },
|
|
2276
|
-
{ type: core.
|
|
2277
|
+
{ type: core.RendererFactory2 }
|
|
2277
2278
|
]; };
|
|
2278
2279
|
|
|
2279
2280
|
// KitButton
|