@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.
- package/bundles/ts-core-angular.umd.js +3 -3
- package/bundles/ts-core-angular.umd.js.map +1 -1
- package/bundles/ts-core-angular.umd.min.js +1 -1
- package/bundles/ts-core-angular.umd.min.js.map +1 -1
- package/esm2015/login/LoginBaseService.js +1 -1
- package/esm2015/theme/ThemeAssetDirective.js +4 -4
- package/fesm2015/ts-core-angular.js +3 -3
- package/fesm2015/ts-core-angular.js.map +1 -1
- package/login/LoginBaseService.d.ts +1 -1
- package/package.json +1 -1
- package/theme/ThemeAssetDirective.d.ts +1 -1
|
@@ -7385,7 +7385,7 @@
|
|
|
7385
7385
|
return;
|
|
7386
7386
|
}
|
|
7387
7387
|
this.isTriedThemeDefault = true;
|
|
7388
|
-
this.source = this.getSource(this.getDefaultSourceId(
|
|
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 (
|
|
7404
|
-
return
|
|
7403
|
+
ThemeAssetDirective.prototype.getDefaultSourceId = function () {
|
|
7404
|
+
return this.themeAsset.getName(this.name, this.isIgnoreTheme);
|
|
7405
7405
|
};
|
|
7406
7406
|
// --------------------------------------------------------------------------
|
|
7407
7407
|
//
|