monkey-front-core 0.0.107 → 0.0.112
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/esm2020/lib/core/services/commons/monkeyecx-commons.service.mjs +5 -1
- package/esm2020/lib/core/services/error/monkeyecx-error-handling.service.mjs +1 -3
- package/fesm2015/monkey-front-core.mjs +4 -2
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -2
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.112.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.107.tgz +0 -0
|
@@ -2010,6 +2010,10 @@ class MonkeyEcxCommonsService {
|
|
|
2010
2010
|
this.__i18n = translateService.instant(keys);
|
|
2011
2011
|
this.__oni18nDataChanged$.next(null);
|
|
2012
2012
|
});
|
|
2013
|
+
translateService.getStreamOnTranslationChange(keys).subscribe(() => {
|
|
2014
|
+
this.__i18n = translateService.instant(keys);
|
|
2015
|
+
this.__oni18nDataChanged$.next(null);
|
|
2016
|
+
});
|
|
2013
2017
|
}
|
|
2014
2018
|
doPagination() {
|
|
2015
2019
|
if (!this.__onLoadingInProgress$.value) {
|
|
@@ -3316,8 +3320,6 @@ class MonkeyEcxErrorHandlingService {
|
|
|
3316
3320
|
const handlingService = injector.get(MonkeyEcxHandlingService);
|
|
3317
3321
|
const httpErrorHandlingService = injector.get(MonkeyEcxHttpErrorHandlingService);
|
|
3318
3322
|
const othersErrorsHandlingService = injector.get(MonkeyEcxOthersErrorsHandlingService);
|
|
3319
|
-
console.log('======error');
|
|
3320
|
-
console.log(error);
|
|
3321
3323
|
if (error instanceof HttpErrorResponse) {
|
|
3322
3324
|
const sCredentials = handlingService?.getMonkeyEcxServiceCredentials() || {};
|
|
3323
3325
|
if (MonkeyEcxUtils.persistNullEmptyUndefined(type) && type === 'refresh_token') {
|