@stemy/ngx-utils 12.2.3 → 12.2.4

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.
@@ -3281,12 +3281,13 @@
3281
3281
 
3282
3282
  var JSON5 = require("json5");
3283
3283
  var ConfigService = /** @class */ (function () {
3284
- function ConfigService(http, universal, rootElement, baseConfig, scriptParams) {
3284
+ function ConfigService(http, universal, injector, rootElement, baseConfig, scriptParams) {
3285
3285
  var _this = this;
3286
3286
  if (baseConfig === void 0) { baseConfig = null; }
3287
3287
  if (scriptParams === void 0) { scriptParams = null; }
3288
3288
  this.http = http;
3289
3289
  this.universal = universal;
3290
+ this.injector = injector;
3290
3291
  this.rootElement = rootElement;
3291
3292
  for (var key in []) {
3292
3293
  Object.defineProperty(Array.prototype, key, {
@@ -3421,6 +3422,7 @@
3421
3422
  ConfigService.ctorParameters = function () { return [
3422
3423
  { type: http.HttpClient },
3423
3424
  { type: UniversalService },
3425
+ { type: core.Injector },
3424
3426
  { type: undefined, decorators: [{ type: core.Inject, args: [ROOT_ELEMENT,] }] },
3425
3427
  { type: IConfiguration, decorators: [{ type: core.Optional }, { type: core.Inject, args: [BASE_CONFIG,] }] },
3426
3428
  { type: undefined, decorators: [{ type: core.Optional }, { type: core.Inject, args: [SCRIPT_PARAMS,] }] }