@ts-core/angular 11.0.85 → 11.0.86

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.
@@ -7385,7 +7385,7 @@
7385
7385
  return;
7386
7386
  }
7387
7387
  this.isTriedThemeDefault = true;
7388
- this.source = this.getSource(this.getDefaultSourceId(this.theme.theme));
7388
+ this.source = this.getSource(this.getDefaultSourceId());
7389
7389
  this.commitSourceProperties();
7390
7390
  };
7391
7391
  // --------------------------------------------------------------------------
@@ -7400,8 +7400,8 @@
7400
7400
  ThemeAssetDirective.prototype.getSourceId = function (theme) {
7401
7401
  return !_.isNil(theme) ? this.name + _.capitalize(theme.name) : null;
7402
7402
  };
7403
- ThemeAssetDirective.prototype.getDefaultSourceId = function (theme) {
7404
- return "" + this.name + (theme.isDark ? 'Dark' : 'Light');
7403
+ ThemeAssetDirective.prototype.getDefaultSourceId = function () {
7404
+ return this.themeAsset.getName(this.name, this.isIgnoreTheme);
7405
7405
  };
7406
7406
  // --------------------------------------------------------------------------
7407
7407
  //