@ts-core/angular 11.0.83 → 11.0.84
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 +2 -2
- 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/language/LanguageModule.js +3 -2
- package/esm2015/theme/ThemeModule.js +2 -2
- package/fesm2015/ts-core-angular.js +2 -2
- package/fesm2015/ts-core-angular.js.map +1 -1
- package/package.json +1 -1
- package/ts-core-angular.metadata.json +1 -1
|
@@ -4722,7 +4722,7 @@
|
|
|
4722
4722
|
},] }
|
|
4723
4723
|
];
|
|
4724
4724
|
function languageServiceFactory(cookie, options) {
|
|
4725
|
-
if (options &&
|
|
4725
|
+
if (!_.isNil(options) && _.isNil(options.service)) {
|
|
4726
4726
|
options.service = cookie;
|
|
4727
4727
|
}
|
|
4728
4728
|
return new language.LanguageService(options);
|
|
@@ -7946,7 +7946,7 @@
|
|
|
7946
7946
|
},] }
|
|
7947
7947
|
];
|
|
7948
7948
|
function themeServiceFactory(cookie, options) {
|
|
7949
|
-
if (!_.isNil(options) &&
|
|
7949
|
+
if (!_.isNil(options) && _.isNil(options.service)) {
|
|
7950
7950
|
options.service = cookie;
|
|
7951
7951
|
}
|
|
7952
7952
|
return new theme.ThemeService(options);
|