@eui/core 13.0.0-rc.23 → 13.0.0-rc.27
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/docs/dependencies.html +26 -26
- package/docs/injectables/UxAppShellService.html +74 -0
- package/docs/interfaces/UIState.html +45 -0
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/variables.html +1 -0
- package/esm2020/lib/eui-core.module.mjs +5 -5
- package/esm2020/lib/interceptors/add-lang-param.interceptor.mjs +4 -4
- package/esm2020/lib/interceptors/cache-prevention.interceptor.mjs +4 -4
- package/esm2020/lib/interceptors/cors-security.interceptor.mjs +4 -4
- package/esm2020/lib/interceptors/csrf-prevention.interceptor.mjs +4 -4
- package/esm2020/lib/interceptors/eu-login-session-timeout-handling.interceptor.mjs +4 -5
- package/esm2020/lib/interceptors/openid/openid-connect.interceptor.mjs +4 -4
- package/esm2020/lib/interceptors/openid/openid-connect.service.mjs +4 -4
- package/esm2020/lib/interceptors/ux-request-error-model.interceptor.mjs +4 -4
- package/esm2020/lib/services/errors/global-error-handler.mjs +4 -4
- package/esm2020/lib/services/errors/http-error-handler.interceptor.mjs +4 -4
- package/esm2020/lib/services/i18n/i18n.loader.mjs +4 -4
- package/esm2020/lib/services/i18n/i18n.service.mjs +4 -4
- package/esm2020/lib/services/i18n/i18n.service.mock.mjs +4 -4
- package/esm2020/lib/services/locale/locale.service.mjs +4 -4
- package/esm2020/lib/services/log/log.module.mjs +5 -5
- package/esm2020/lib/services/log/log.service.mjs +4 -4
- package/esm2020/lib/services/permission/permission.service.mjs +4 -4
- package/esm2020/lib/services/queue/api-queue.service.mjs +4 -6
- package/esm2020/lib/services/queue/api-queue.service.mock.mjs +1 -5
- package/esm2020/lib/services/storage/async-storage.service.mock.mjs +1 -5
- package/esm2020/lib/services/storage/local-forage.service.mjs +4 -4
- package/esm2020/lib/services/storage/local-storage.service.mjs +4 -4
- package/esm2020/lib/services/storage/session-storage.service.mjs +4 -4
- package/esm2020/lib/services/store/effects/app.effects.mjs +4 -4
- package/esm2020/lib/services/store/store.service.mjs +5 -5
- package/esm2020/lib/services/store/store.service.mock.mjs +4 -4
- package/esm2020/lib/services/user/user.service.mjs +4 -4
- package/esm2020/lib/services/user/user.service.mock.mjs +4 -4
- package/esm2020/lib/services/ux-app-shell.service.mjs +20 -7
- package/esm2020/lib/services/ux-dynamic-component/ux-dynamic-component.service.mjs +4 -4
- package/esm2020/lib/services/ux-dynamic-menu/ux-dynamic-menu.service.mjs +4 -4
- package/esm2020/lib/services/ux-error-feedback/ux-error-feedback.service.mjs +4 -4
- package/esm2020/lib/services/ux-timezone.service.mjs +4 -4
- package/fesm2015/eui-core.mjs +112 -113
- package/fesm2015/eui-core.mjs.map +1 -1
- package/fesm2020/eui-core.mjs +115 -113
- package/fesm2020/eui-core.mjs.map +1 -1
- package/lib/interceptors/eu-login-session-timeout-handling.interceptor.d.ts.map +1 -1
- package/lib/services/queue/api-queue.service.d.ts.map +1 -1
- package/lib/services/queue/api-queue.service.mock.d.ts.map +1 -1
- package/lib/services/storage/async-storage.service.mock.d.ts.map +1 -1
- package/lib/services/ux-app-shell.service.d.ts +3 -0
- package/lib/services/ux-app-shell.service.d.ts.map +1 -1
- package/package.json +11 -1
package/fesm2020/eui-core.mjs
CHANGED
|
@@ -185,9 +185,9 @@ class LogService extends Logger {
|
|
|
185
185
|
return logger;
|
|
186
186
|
}
|
|
187
187
|
}
|
|
188
|
-
/** @nocollapse */ /** @nocollapse */ LogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
189
|
-
/** @nocollapse */ /** @nocollapse */ LogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
190
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
188
|
+
/** @nocollapse */ /** @nocollapse */ LogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LogService, deps: [{ token: BASE_LOGGER_NAME_TOKEN }, { token: LOG_LEVEL_TOKEN }, { token: LOG_APPENDERS_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
189
|
+
/** @nocollapse */ /** @nocollapse */ LogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LogService });
|
|
190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LogService, decorators: [{
|
|
191
191
|
type: Injectable
|
|
192
192
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
193
193
|
type: Inject,
|
|
@@ -357,10 +357,10 @@ class LogModule {
|
|
|
357
357
|
};
|
|
358
358
|
}
|
|
359
359
|
}
|
|
360
|
-
/** @nocollapse */ /** @nocollapse */ LogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
361
|
-
/** @nocollapse */ /** @nocollapse */ LogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0
|
|
362
|
-
/** @nocollapse */ /** @nocollapse */ LogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0
|
|
363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
360
|
+
/** @nocollapse */ /** @nocollapse */ LogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
361
|
+
/** @nocollapse */ /** @nocollapse */ LogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LogModule });
|
|
362
|
+
/** @nocollapse */ /** @nocollapse */ LogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LogModule });
|
|
363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LogModule, decorators: [{
|
|
364
364
|
type: NgModule
|
|
365
365
|
}] });
|
|
366
366
|
|
|
@@ -423,7 +423,7 @@ class StoreService {
|
|
|
423
423
|
*/
|
|
424
424
|
select(key) {
|
|
425
425
|
if (!this.store) {
|
|
426
|
-
return throwError(new Error('NGRX Store not configured'));
|
|
426
|
+
return throwError(() => new Error('NGRX Store not configured'));
|
|
427
427
|
}
|
|
428
428
|
return this.store.select(key);
|
|
429
429
|
}
|
|
@@ -452,9 +452,9 @@ class StoreService {
|
|
|
452
452
|
}
|
|
453
453
|
}
|
|
454
454
|
}
|
|
455
|
-
/** @nocollapse */ /** @nocollapse */ StoreService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
456
|
-
/** @nocollapse */ /** @nocollapse */ StoreService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
457
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
455
|
+
/** @nocollapse */ /** @nocollapse */ StoreService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: StoreService, deps: [{ token: i1$1.Store, optional: true }, { token: LogService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
456
|
+
/** @nocollapse */ /** @nocollapse */ StoreService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: StoreService, providedIn: 'root' });
|
|
457
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: StoreService, decorators: [{
|
|
458
458
|
type: Injectable,
|
|
459
459
|
args: [{
|
|
460
460
|
providedIn: 'root',
|
|
@@ -778,9 +778,9 @@ class I18nLoader {
|
|
|
778
778
|
return undefined;
|
|
779
779
|
}
|
|
780
780
|
}
|
|
781
|
-
/** @nocollapse */ /** @nocollapse */ I18nLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
782
|
-
/** @nocollapse */ /** @nocollapse */ I18nLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
781
|
+
/** @nocollapse */ /** @nocollapse */ I18nLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nLoader, deps: [{ token: i1$2.HttpClient }, { token: LogService, optional: true }, { token: CONFIG_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
782
|
+
/** @nocollapse */ /** @nocollapse */ I18nLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nLoader });
|
|
783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nLoader, decorators: [{
|
|
784
784
|
type: Injectable
|
|
785
785
|
}], ctorParameters: function () { return [{ type: i1$2.HttpClient }, { type: LogService, decorators: [{
|
|
786
786
|
type: Optional
|
|
@@ -984,9 +984,9 @@ class I18nService extends EuiLazyService {
|
|
|
984
984
|
this.document.documentElement.lang = lang;
|
|
985
985
|
}
|
|
986
986
|
}
|
|
987
|
-
/** @nocollapse */ /** @nocollapse */ I18nService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
988
|
-
/** @nocollapse */ /** @nocollapse */ I18nService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
989
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
987
|
+
/** @nocollapse */ /** @nocollapse */ I18nService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nService, deps: [{ token: GLOBAL_CONFIG_TOKEN }, { token: i2.TranslateService }, { token: LogService, optional: true }, { token: StoreService }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
988
|
+
/** @nocollapse */ /** @nocollapse */ I18nService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nService, providedIn: 'root' });
|
|
989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nService, decorators: [{
|
|
990
990
|
type: Injectable,
|
|
991
991
|
args: [{
|
|
992
992
|
providedIn: 'root',
|
|
@@ -1029,9 +1029,9 @@ class I18nServiceMock extends I18nService {
|
|
|
1029
1029
|
return of({ success: true });
|
|
1030
1030
|
}
|
|
1031
1031
|
}
|
|
1032
|
-
/** @nocollapse */ /** @nocollapse */ I18nServiceMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
1033
|
-
/** @nocollapse */ /** @nocollapse */ I18nServiceMock.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
1034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
1032
|
+
/** @nocollapse */ /** @nocollapse */ I18nServiceMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nServiceMock, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1033
|
+
/** @nocollapse */ /** @nocollapse */ I18nServiceMock.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nServiceMock });
|
|
1034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: I18nServiceMock, decorators: [{
|
|
1035
1035
|
type: Injectable
|
|
1036
1036
|
}], ctorParameters: function () { return []; } });
|
|
1037
1037
|
|
|
@@ -1055,6 +1055,7 @@ const initialState = {
|
|
|
1055
1055
|
hasToolbarMenu: false,
|
|
1056
1056
|
environmentValue: '',
|
|
1057
1057
|
isSidebarHidden: false,
|
|
1058
|
+
hasTopMessage: false,
|
|
1058
1059
|
windowWidth: 0,
|
|
1059
1060
|
windowHeight: 0,
|
|
1060
1061
|
mainContentHeight: 0,
|
|
@@ -1080,7 +1081,7 @@ const initialState = {
|
|
|
1080
1081
|
hasModalActive: false,
|
|
1081
1082
|
isDimmerActive: false,
|
|
1082
1083
|
};
|
|
1083
|
-
//
|
|
1084
|
+
// TODO: this service needs to be transferred in the respective component
|
|
1084
1085
|
class UxAppShellService {
|
|
1085
1086
|
constructor(config, http, platformId, router, storeService, i18nService) {
|
|
1086
1087
|
this.config = config;
|
|
@@ -1097,8 +1098,6 @@ class UxAppShellService {
|
|
|
1097
1098
|
this.activeModals = [];
|
|
1098
1099
|
this.openModalId = new BehaviorSubject('');
|
|
1099
1100
|
this.cssVars = [];
|
|
1100
|
-
// super(UxAppShellService);
|
|
1101
|
-
console.log('UxAppShellService initialized');
|
|
1102
1101
|
let stateWithConfig = initialState;
|
|
1103
1102
|
const languages = config?.i18n?.i18nService?.languages || initialState.languages;
|
|
1104
1103
|
const defaultLanguage = config?.i18n?.i18nService?.defaultLanguage || initialState.activeLanguage;
|
|
@@ -1315,6 +1314,13 @@ class UxAppShellService {
|
|
|
1315
1314
|
});
|
|
1316
1315
|
this.activateHeaderCssVars();
|
|
1317
1316
|
}
|
|
1317
|
+
activateTopMessage() {
|
|
1318
|
+
this.setState({
|
|
1319
|
+
...this.state,
|
|
1320
|
+
hasTopMessage: true,
|
|
1321
|
+
});
|
|
1322
|
+
this.activateTopMessageCssVars();
|
|
1323
|
+
}
|
|
1318
1324
|
activateToolbar() {
|
|
1319
1325
|
this.setState({
|
|
1320
1326
|
...this.state,
|
|
@@ -1333,6 +1339,9 @@ class UxAppShellService {
|
|
|
1333
1339
|
'--eui-app-header-height-default',
|
|
1334
1340
|
'--eui-app-header-height-active',
|
|
1335
1341
|
'--eui-app-header-height-shrink',
|
|
1342
|
+
'--eui-app-top-message-height-default',
|
|
1343
|
+
'--eui-app-top-message-height-active',
|
|
1344
|
+
'--eui-app-top-message-height-shrink',
|
|
1336
1345
|
'--eui-app-toolbar-height-default',
|
|
1337
1346
|
'--eui-app-toolbar-height-active',
|
|
1338
1347
|
'--eui-app-sidebar-width-default',
|
|
@@ -1350,6 +1359,7 @@ class UxAppShellService {
|
|
|
1350
1359
|
}
|
|
1351
1360
|
initCssVars() {
|
|
1352
1361
|
this.setCssVar('--eui-app-header-height-default', '--eui-app-header-height');
|
|
1362
|
+
this.setCssVar('--eui-app-top-message-height-default', '--eui-app-top-message-height');
|
|
1353
1363
|
this.setCssVar('--eui-app-toolbar-height-default', '--eui-app-toolbar-height');
|
|
1354
1364
|
this.setCssVar('--eui-app-sidebar-width-default', '--eui-app-sidebar-width');
|
|
1355
1365
|
this.setCssVar('--eui-app-sidebar-width-close-default', '--eui-app-sidebar-width-close');
|
|
@@ -1359,6 +1369,9 @@ class UxAppShellService {
|
|
|
1359
1369
|
activateHeaderCssVars() {
|
|
1360
1370
|
this.setCssVar('--eui-app-header-height-active', '--eui-app-header-height');
|
|
1361
1371
|
}
|
|
1372
|
+
activateTopMessageCssVars() {
|
|
1373
|
+
this.setCssVar('--eui-app-top-message-height-active', '--eui-app-top-message-height');
|
|
1374
|
+
}
|
|
1362
1375
|
activateToolbarCssVars() {
|
|
1363
1376
|
this.setCssVar('--eui-app-toolbar-height-active', '--eui-app-toolbar-height');
|
|
1364
1377
|
}
|
|
@@ -1641,9 +1654,9 @@ class UxAppShellService {
|
|
|
1641
1654
|
});
|
|
1642
1655
|
}
|
|
1643
1656
|
}
|
|
1644
|
-
/** @nocollapse */ /** @nocollapse */ UxAppShellService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
1645
|
-
/** @nocollapse */ /** @nocollapse */ UxAppShellService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
1646
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
1657
|
+
/** @nocollapse */ /** @nocollapse */ UxAppShellService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxAppShellService, deps: [{ token: GLOBAL_CONFIG_TOKEN, optional: true }, { token: i1$2.HttpClient }, { token: PLATFORM_ID }, { token: i2$1.Router }, { token: StoreService }, { token: I18nService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1658
|
+
/** @nocollapse */ /** @nocollapse */ UxAppShellService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxAppShellService, providedIn: 'root' });
|
|
1659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxAppShellService, decorators: [{
|
|
1647
1660
|
type: Injectable,
|
|
1648
1661
|
args: [{
|
|
1649
1662
|
providedIn: 'root',
|
|
@@ -1693,8 +1706,8 @@ class CoreAppEffects {
|
|
|
1693
1706
|
}));
|
|
1694
1707
|
}
|
|
1695
1708
|
}
|
|
1696
|
-
/** @nocollapse */ /** @nocollapse */ CoreAppEffects.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
1697
|
-
/** @nocollapse */ /** @nocollapse */ CoreAppEffects.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
1709
|
+
/** @nocollapse */ /** @nocollapse */ CoreAppEffects.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CoreAppEffects, deps: [{ token: i1$3.Actions }, { token: SHOW_CONNECTION_STATUS_TOKEN }, { token: i2.TranslateService }, { token: UxAppShellService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1710
|
+
/** @nocollapse */ /** @nocollapse */ CoreAppEffects.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CoreAppEffects });
|
|
1698
1711
|
__decorate([
|
|
1699
1712
|
Effect()
|
|
1700
1713
|
], CoreAppEffects.prototype, "getAppConnectionInformation", void 0);
|
|
@@ -1704,7 +1717,7 @@ __decorate([
|
|
|
1704
1717
|
__decorate([
|
|
1705
1718
|
Effect({ dispatch: false })
|
|
1706
1719
|
], CoreAppEffects.prototype, "updateAppConnection", void 0);
|
|
1707
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
1720
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CoreAppEffects, decorators: [{
|
|
1708
1721
|
type: Injectable
|
|
1709
1722
|
}], ctorParameters: function () { return [{ type: i1$3.Actions }, { type: undefined, decorators: [{
|
|
1710
1723
|
type: Inject,
|
|
@@ -1967,9 +1980,9 @@ class StoreServiceMock extends StoreService {
|
|
|
1967
1980
|
return of({});
|
|
1968
1981
|
}
|
|
1969
1982
|
}
|
|
1970
|
-
/** @nocollapse */ /** @nocollapse */ StoreServiceMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
1971
|
-
/** @nocollapse */ /** @nocollapse */ StoreServiceMock.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
1972
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
1983
|
+
/** @nocollapse */ /** @nocollapse */ StoreServiceMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: StoreServiceMock, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1984
|
+
/** @nocollapse */ /** @nocollapse */ StoreServiceMock.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: StoreServiceMock });
|
|
1985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: StoreServiceMock, decorators: [{
|
|
1973
1986
|
type: Injectable
|
|
1974
1987
|
}], ctorParameters: function () { return []; } });
|
|
1975
1988
|
|
|
@@ -2014,12 +2027,12 @@ class CoreModule {
|
|
|
2014
2027
|
};
|
|
2015
2028
|
}
|
|
2016
2029
|
}
|
|
2017
|
-
/** @nocollapse */ /** @nocollapse */ CoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2018
|
-
/** @nocollapse */ /** @nocollapse */ CoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0
|
|
2019
|
-
/** @nocollapse */ /** @nocollapse */ CoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0
|
|
2030
|
+
/** @nocollapse */ /** @nocollapse */ CoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CoreModule, deps: [{ token: CORE_ROOT_GUARD, optional: true }, { token: CoreModule, optional: true, skipSelf: true }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2031
|
+
/** @nocollapse */ /** @nocollapse */ CoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CoreModule, imports: [HttpClientModule] });
|
|
2032
|
+
/** @nocollapse */ /** @nocollapse */ CoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CoreModule, imports: [[
|
|
2020
2033
|
HttpClientModule,
|
|
2021
2034
|
]] });
|
|
2022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
2035
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CoreModule, decorators: [{
|
|
2023
2036
|
type: NgModule,
|
|
2024
2037
|
args: [{
|
|
2025
2038
|
imports: [
|
|
@@ -2141,9 +2154,9 @@ class GlobalErrorHandler extends ErrorHandler {
|
|
|
2141
2154
|
super.handleError(error);
|
|
2142
2155
|
}
|
|
2143
2156
|
}
|
|
2144
|
-
/** @nocollapse */ /** @nocollapse */ GlobalErrorHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2145
|
-
/** @nocollapse */ /** @nocollapse */ GlobalErrorHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
2157
|
+
/** @nocollapse */ /** @nocollapse */ GlobalErrorHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: GlobalErrorHandler, deps: [{ token: LogService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2158
|
+
/** @nocollapse */ /** @nocollapse */ GlobalErrorHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: GlobalErrorHandler, providedIn: 'root' });
|
|
2159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: GlobalErrorHandler, decorators: [{
|
|
2147
2160
|
type: Injectable,
|
|
2148
2161
|
args: [{
|
|
2149
2162
|
providedIn: 'root',
|
|
@@ -2190,9 +2203,9 @@ class HttpErrorHandlerInterceptor {
|
|
|
2190
2203
|
return routes.length > 0 ? routes[0] : null;
|
|
2191
2204
|
}
|
|
2192
2205
|
}
|
|
2193
|
-
/** @nocollapse */ /** @nocollapse */ HttpErrorHandlerInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2194
|
-
/** @nocollapse */ /** @nocollapse */ HttpErrorHandlerInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
2206
|
+
/** @nocollapse */ /** @nocollapse */ HttpErrorHandlerInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: HttpErrorHandlerInterceptor, deps: [{ token: HTTP_ERROR_HANDLER_CONFIG_TOKEN }, { token: i0.Injector }, { token: i2$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2207
|
+
/** @nocollapse */ /** @nocollapse */ HttpErrorHandlerInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: HttpErrorHandlerInterceptor });
|
|
2208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: HttpErrorHandlerInterceptor, decorators: [{
|
|
2196
2209
|
type: Injectable
|
|
2197
2210
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
2198
2211
|
type: Inject,
|
|
@@ -2285,7 +2298,6 @@ class ApiQueueService {
|
|
|
2285
2298
|
.pipe(take(1), switchMap((queue) => {
|
|
2286
2299
|
if (!queue) {
|
|
2287
2300
|
this.logService.warn(`Queue item with id "${id}" does not exist`);
|
|
2288
|
-
// tslint:disable-next-line:deprecation
|
|
2289
2301
|
return of(null);
|
|
2290
2302
|
}
|
|
2291
2303
|
return this.buildHttpRequest(id, queue);
|
|
@@ -2304,7 +2316,6 @@ class ApiQueueService {
|
|
|
2304
2316
|
if (!continueOnError) {
|
|
2305
2317
|
throw error;
|
|
2306
2318
|
}
|
|
2307
|
-
// tslint:disable-next-line:deprecation
|
|
2308
2319
|
return of(error);
|
|
2309
2320
|
})))), switchMap((obsQueue) => forkJoin(Array.from(obsQueue))));
|
|
2310
2321
|
}
|
|
@@ -2341,9 +2352,9 @@ class ApiQueueService {
|
|
|
2341
2352
|
.pipe(tap(() => this.removeQueueItem(id)));
|
|
2342
2353
|
}
|
|
2343
2354
|
}
|
|
2344
|
-
/** @nocollapse */ /** @nocollapse */ ApiQueueService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2345
|
-
/** @nocollapse */ /** @nocollapse */ ApiQueueService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
2355
|
+
/** @nocollapse */ /** @nocollapse */ ApiQueueService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ApiQueueService, deps: [{ token: StoreService }, { token: i1$2.HttpClient }, { token: LogService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2356
|
+
/** @nocollapse */ /** @nocollapse */ ApiQueueService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ApiQueueService, providedIn: 'root' });
|
|
2357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: ApiQueueService, decorators: [{
|
|
2347
2358
|
type: Injectable,
|
|
2348
2359
|
args: [{
|
|
2349
2360
|
providedIn: 'root',
|
|
@@ -2355,22 +2366,18 @@ class ApiQueueServiceMock extends ApiQueueService {
|
|
|
2355
2366
|
super(null, null, null);
|
|
2356
2367
|
}
|
|
2357
2368
|
getQueue() {
|
|
2358
|
-
// tslint:disable-next-line:deprecation
|
|
2359
2369
|
return of([]);
|
|
2360
2370
|
}
|
|
2361
2371
|
getQueueItem(id) {
|
|
2362
|
-
// tslint:disable-next-line:deprecation
|
|
2363
2372
|
return of(null);
|
|
2364
2373
|
}
|
|
2365
2374
|
removeAllQueueItem() { }
|
|
2366
2375
|
processAllQueueItems() {
|
|
2367
|
-
// tslint:disable-next-line:deprecation
|
|
2368
2376
|
return of({});
|
|
2369
2377
|
}
|
|
2370
2378
|
addQueueItem() { }
|
|
2371
2379
|
removeQueueItem() { }
|
|
2372
2380
|
processQueueItem() {
|
|
2373
|
-
// tslint:disable-next-line:deprecation
|
|
2374
2381
|
return of({});
|
|
2375
2382
|
}
|
|
2376
2383
|
}
|
|
@@ -2700,9 +2707,9 @@ class EuiPermissionService extends EuiService {
|
|
|
2700
2707
|
return rights.every((right) => this.userRights.find((uRight) => uRight.id === right.id));
|
|
2701
2708
|
}
|
|
2702
2709
|
}
|
|
2703
|
-
/** @nocollapse */ /** @nocollapse */ EuiPermissionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2704
|
-
/** @nocollapse */ /** @nocollapse */ EuiPermissionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2705
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
2710
|
+
/** @nocollapse */ /** @nocollapse */ EuiPermissionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EuiPermissionService, deps: [{ token: LogService, optional: true }, { token: StoreService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2711
|
+
/** @nocollapse */ /** @nocollapse */ EuiPermissionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EuiPermissionService, providedIn: 'root' });
|
|
2712
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EuiPermissionService, decorators: [{
|
|
2706
2713
|
type: Injectable,
|
|
2707
2714
|
args: [{
|
|
2708
2715
|
providedIn: 'root',
|
|
@@ -2763,9 +2770,9 @@ class UxDynamicMenuService {
|
|
|
2763
2770
|
});
|
|
2764
2771
|
}
|
|
2765
2772
|
}
|
|
2766
|
-
/** @nocollapse */ /** @nocollapse */ UxDynamicMenuService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2767
|
-
/** @nocollapse */ /** @nocollapse */ UxDynamicMenuService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2768
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
2773
|
+
/** @nocollapse */ /** @nocollapse */ UxDynamicMenuService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxDynamicMenuService, deps: [{ token: EuiPermissionService }, { token: StoreService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2774
|
+
/** @nocollapse */ /** @nocollapse */ UxDynamicMenuService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxDynamicMenuService, providedIn: 'root' });
|
|
2775
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxDynamicMenuService, decorators: [{
|
|
2769
2776
|
type: Injectable,
|
|
2770
2777
|
args: [{
|
|
2771
2778
|
providedIn: 'root',
|
|
@@ -2833,9 +2840,9 @@ class UxErrorFeedbackService {
|
|
|
2833
2840
|
return new UxErrorManager(this, true);
|
|
2834
2841
|
}
|
|
2835
2842
|
}
|
|
2836
|
-
/** @nocollapse */ /** @nocollapse */ UxErrorFeedbackService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2837
|
-
/** @nocollapse */ /** @nocollapse */ UxErrorFeedbackService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2838
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
2843
|
+
/** @nocollapse */ /** @nocollapse */ UxErrorFeedbackService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxErrorFeedbackService, deps: [{ token: UxAppShellService }, { token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2844
|
+
/** @nocollapse */ /** @nocollapse */ UxErrorFeedbackService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxErrorFeedbackService, providedIn: 'root' });
|
|
2845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxErrorFeedbackService, decorators: [{
|
|
2839
2846
|
type: Injectable,
|
|
2840
2847
|
args: [{
|
|
2841
2848
|
providedIn: 'root'
|
|
@@ -2930,9 +2937,9 @@ class UxDynamicComponentService {
|
|
|
2930
2937
|
return new PortalInjector(this.injector, injectorTokens);
|
|
2931
2938
|
}
|
|
2932
2939
|
}
|
|
2933
|
-
/** @nocollapse */ /** @nocollapse */ UxDynamicComponentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2934
|
-
/** @nocollapse */ /** @nocollapse */ UxDynamicComponentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
2940
|
+
/** @nocollapse */ /** @nocollapse */ UxDynamicComponentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxDynamicComponentService, deps: [{ token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.ApplicationRef }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2941
|
+
/** @nocollapse */ /** @nocollapse */ UxDynamicComponentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxDynamicComponentService, providedIn: 'root' });
|
|
2942
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxDynamicComponentService, decorators: [{
|
|
2936
2943
|
type: Injectable,
|
|
2937
2944
|
args: [{ providedIn: 'root' }]
|
|
2938
2945
|
}], ctorParameters: function () { return [{ type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: i0.ApplicationRef }]; } });
|
|
@@ -3647,9 +3654,9 @@ class UxTimezoneService {
|
|
|
3647
3654
|
});
|
|
3648
3655
|
}
|
|
3649
3656
|
}
|
|
3650
|
-
/** @nocollapse */ /** @nocollapse */ UxTimezoneService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
3651
|
-
/** @nocollapse */ /** @nocollapse */ UxTimezoneService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
3652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
3657
|
+
/** @nocollapse */ /** @nocollapse */ UxTimezoneService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxTimezoneService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3658
|
+
/** @nocollapse */ /** @nocollapse */ UxTimezoneService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxTimezoneService });
|
|
3659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxTimezoneService, decorators: [{
|
|
3653
3660
|
type: Injectable
|
|
3654
3661
|
}] });
|
|
3655
3662
|
|
|
@@ -3692,22 +3699,18 @@ class AsyncStorageService extends StorageService {
|
|
|
3692
3699
|
|
|
3693
3700
|
class AsyncStorageServiceMock extends AsyncStorageService {
|
|
3694
3701
|
ready() {
|
|
3695
|
-
// tslint:disable-next-line:deprecation
|
|
3696
3702
|
return of({});
|
|
3697
3703
|
}
|
|
3698
3704
|
name() {
|
|
3699
3705
|
return null;
|
|
3700
3706
|
}
|
|
3701
3707
|
get() {
|
|
3702
|
-
// tslint:disable-next-line:deprecation
|
|
3703
3708
|
return of({});
|
|
3704
3709
|
}
|
|
3705
3710
|
set() {
|
|
3706
|
-
// tslint:disable-next-line:deprecation
|
|
3707
3711
|
return of({});
|
|
3708
3712
|
}
|
|
3709
3713
|
remove() {
|
|
3710
|
-
// tslint:disable-next-line:deprecation
|
|
3711
3714
|
return of({});
|
|
3712
3715
|
}
|
|
3713
3716
|
setAsync() {
|
|
@@ -3779,9 +3782,9 @@ class LocalStorageService extends StorageService {
|
|
|
3779
3782
|
}
|
|
3780
3783
|
}
|
|
3781
3784
|
LocalStorageService.NAME = 'LocalStorageService';
|
|
3782
|
-
/** @nocollapse */ /** @nocollapse */ LocalStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
3783
|
-
/** @nocollapse */ /** @nocollapse */ LocalStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
3784
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
3785
|
+
/** @nocollapse */ /** @nocollapse */ LocalStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocalStorageService, deps: [{ token: LogService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3786
|
+
/** @nocollapse */ /** @nocollapse */ LocalStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocalStorageService });
|
|
3787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocalStorageService, decorators: [{
|
|
3785
3788
|
type: Injectable
|
|
3786
3789
|
}], ctorParameters: function () { return [{ type: LogService, decorators: [{
|
|
3787
3790
|
type: Optional
|
|
@@ -3850,9 +3853,9 @@ class SessionStorageService extends StorageService {
|
|
|
3850
3853
|
}
|
|
3851
3854
|
}
|
|
3852
3855
|
SessionStorageService.NAME = 'SessionStorageService';
|
|
3853
|
-
/** @nocollapse */ /** @nocollapse */ SessionStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
3854
|
-
/** @nocollapse */ /** @nocollapse */ SessionStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
3855
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
3856
|
+
/** @nocollapse */ /** @nocollapse */ SessionStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: SessionStorageService, deps: [{ token: LogService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3857
|
+
/** @nocollapse */ /** @nocollapse */ SessionStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: SessionStorageService });
|
|
3858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: SessionStorageService, decorators: [{
|
|
3856
3859
|
type: Injectable
|
|
3857
3860
|
}], ctorParameters: function () { return [{ type: LogService, decorators: [{
|
|
3858
3861
|
type: Optional
|
|
@@ -3939,9 +3942,9 @@ class LocalForageService extends AsyncStorageService {
|
|
|
3939
3942
|
}
|
|
3940
3943
|
}
|
|
3941
3944
|
LocalForageService.NAME = 'LocalForageService';
|
|
3942
|
-
/** @nocollapse */ /** @nocollapse */ LocalForageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
3943
|
-
/** @nocollapse */ /** @nocollapse */ LocalForageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
3944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
3945
|
+
/** @nocollapse */ /** @nocollapse */ LocalForageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocalForageService, deps: [{ token: LOCAL_FORAGE_SERVICE_CONFIG_TOKEN, optional: true }, { token: LogService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3946
|
+
/** @nocollapse */ /** @nocollapse */ LocalForageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocalForageService });
|
|
3947
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocalForageService, decorators: [{
|
|
3945
3948
|
type: Injectable
|
|
3946
3949
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
3947
3950
|
type: Inject,
|
|
@@ -4168,9 +4171,9 @@ class LocaleService extends EuiService {
|
|
|
4168
4171
|
return from(this.importLocale(localeId)).pipe(mergeMap(() => from(this.importExtraLocale(localeId)).pipe(map((data, extraData) => Object.assign({}, { data, localeId, extraData }))), 1));
|
|
4169
4172
|
}
|
|
4170
4173
|
}
|
|
4171
|
-
/** @nocollapse */ /** @nocollapse */ LocaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4172
|
-
/** @nocollapse */ /** @nocollapse */ LocaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4174
|
+
/** @nocollapse */ /** @nocollapse */ LocaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocaleService, deps: [{ token: StoreService }, { token: GLOBAL_CONFIG_TOKEN }, { token: LOCALE_ID }, { token: LOCALE_ID_MAPPER, optional: true }, { token: I18nService, optional: true }, { token: LogService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4175
|
+
/** @nocollapse */ /** @nocollapse */ LocaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocaleService, providedIn: 'root' });
|
|
4176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: LocaleService, decorators: [{
|
|
4174
4177
|
type: Injectable,
|
|
4175
4178
|
args: [{
|
|
4176
4179
|
providedIn: 'root'
|
|
@@ -4225,9 +4228,9 @@ class UserService extends EuiService {
|
|
|
4225
4228
|
this.store.dispatch(new UpdateUserStateAction(userState));
|
|
4226
4229
|
}
|
|
4227
4230
|
}
|
|
4228
|
-
/** @nocollapse */ /** @nocollapse */ UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4229
|
-
/** @nocollapse */ /** @nocollapse */ UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4231
|
+
/** @nocollapse */ /** @nocollapse */ UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UserService, deps: [{ token: StoreService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4232
|
+
/** @nocollapse */ /** @nocollapse */ UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UserService, providedIn: 'root' });
|
|
4233
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UserService, decorators: [{
|
|
4231
4234
|
type: Injectable,
|
|
4232
4235
|
args: [{
|
|
4233
4236
|
providedIn: 'root',
|
|
@@ -4258,9 +4261,9 @@ class UserServiceMock extends UserService {
|
|
|
4258
4261
|
return of('anonymous');
|
|
4259
4262
|
}
|
|
4260
4263
|
}
|
|
4261
|
-
/** @nocollapse */ /** @nocollapse */ UserServiceMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4262
|
-
/** @nocollapse */ /** @nocollapse */ UserServiceMock.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4264
|
+
/** @nocollapse */ /** @nocollapse */ UserServiceMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UserServiceMock, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4265
|
+
/** @nocollapse */ /** @nocollapse */ UserServiceMock.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UserServiceMock });
|
|
4266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UserServiceMock, decorators: [{
|
|
4264
4267
|
type: Injectable
|
|
4265
4268
|
}], ctorParameters: function () { return []; } });
|
|
4266
4269
|
|
|
@@ -4290,9 +4293,9 @@ class AddLangParamInterceptor {
|
|
|
4290
4293
|
}));
|
|
4291
4294
|
}
|
|
4292
4295
|
}
|
|
4293
|
-
/** @nocollapse */ /** @nocollapse */ AddLangParamInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4294
|
-
/** @nocollapse */ /** @nocollapse */ AddLangParamInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4296
|
+
/** @nocollapse */ /** @nocollapse */ AddLangParamInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: AddLangParamInterceptor, deps: [{ token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4297
|
+
/** @nocollapse */ /** @nocollapse */ AddLangParamInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: AddLangParamInterceptor });
|
|
4298
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: AddLangParamInterceptor, decorators: [{
|
|
4296
4299
|
type: Injectable
|
|
4297
4300
|
}], ctorParameters: function () { return [{ type: i2.TranslateService }]; } });
|
|
4298
4301
|
|
|
@@ -4309,9 +4312,9 @@ class CachePreventionInterceptor {
|
|
|
4309
4312
|
}));
|
|
4310
4313
|
}
|
|
4311
4314
|
}
|
|
4312
|
-
/** @nocollapse */ /** @nocollapse */ CachePreventionInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4313
|
-
/** @nocollapse */ /** @nocollapse */ CachePreventionInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4314
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4315
|
+
/** @nocollapse */ /** @nocollapse */ CachePreventionInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CachePreventionInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4316
|
+
/** @nocollapse */ /** @nocollapse */ CachePreventionInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CachePreventionInterceptor });
|
|
4317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CachePreventionInterceptor, decorators: [{
|
|
4315
4318
|
type: Injectable
|
|
4316
4319
|
}] });
|
|
4317
4320
|
|
|
@@ -4322,9 +4325,9 @@ class CorsSecurityInterceptor {
|
|
|
4322
4325
|
}));
|
|
4323
4326
|
}
|
|
4324
4327
|
}
|
|
4325
|
-
/** @nocollapse */ /** @nocollapse */ CorsSecurityInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4326
|
-
/** @nocollapse */ /** @nocollapse */ CorsSecurityInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4328
|
+
/** @nocollapse */ /** @nocollapse */ CorsSecurityInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CorsSecurityInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4329
|
+
/** @nocollapse */ /** @nocollapse */ CorsSecurityInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CorsSecurityInterceptor });
|
|
4330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CorsSecurityInterceptor, decorators: [{
|
|
4328
4331
|
type: Injectable
|
|
4329
4332
|
}] });
|
|
4330
4333
|
|
|
@@ -4335,9 +4338,9 @@ class CsrfPreventionInterceptor {
|
|
|
4335
4338
|
}));
|
|
4336
4339
|
}
|
|
4337
4340
|
}
|
|
4338
|
-
/** @nocollapse */ /** @nocollapse */ CsrfPreventionInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4339
|
-
/** @nocollapse */ /** @nocollapse */ CsrfPreventionInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4340
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4341
|
+
/** @nocollapse */ /** @nocollapse */ CsrfPreventionInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CsrfPreventionInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4342
|
+
/** @nocollapse */ /** @nocollapse */ CsrfPreventionInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CsrfPreventionInterceptor });
|
|
4343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: CsrfPreventionInterceptor, decorators: [{
|
|
4341
4344
|
type: Injectable
|
|
4342
4345
|
}] });
|
|
4343
4346
|
|
|
@@ -4388,13 +4391,12 @@ class EuLoginSessionTimeoutHandlingInterceptor {
|
|
|
4388
4391
|
}
|
|
4389
4392
|
}
|
|
4390
4393
|
reauthenticate(request, response) {
|
|
4391
|
-
// tslint:disable-next-line:deprecation
|
|
4392
4394
|
document.location.reload();
|
|
4393
4395
|
}
|
|
4394
4396
|
}
|
|
4395
|
-
/** @nocollapse */ /** @nocollapse */ EuLoginSessionTimeoutHandlingInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4396
|
-
/** @nocollapse */ /** @nocollapse */ EuLoginSessionTimeoutHandlingInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4397
|
+
/** @nocollapse */ /** @nocollapse */ EuLoginSessionTimeoutHandlingInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EuLoginSessionTimeoutHandlingInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4398
|
+
/** @nocollapse */ /** @nocollapse */ EuLoginSessionTimeoutHandlingInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EuLoginSessionTimeoutHandlingInterceptor });
|
|
4399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EuLoginSessionTimeoutHandlingInterceptor, decorators: [{
|
|
4398
4400
|
type: Injectable
|
|
4399
4401
|
}] });
|
|
4400
4402
|
|
|
@@ -4415,9 +4417,9 @@ class UxRequestErrorModelInterceptor {
|
|
|
4415
4417
|
}));
|
|
4416
4418
|
}
|
|
4417
4419
|
}
|
|
4418
|
-
/** @nocollapse */ /** @nocollapse */ UxRequestErrorModelInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4419
|
-
/** @nocollapse */ /** @nocollapse */ UxRequestErrorModelInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4420
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4420
|
+
/** @nocollapse */ /** @nocollapse */ UxRequestErrorModelInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxRequestErrorModelInterceptor, deps: [{ token: UX_ERROR_MAPPING_HANDLER_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4421
|
+
/** @nocollapse */ /** @nocollapse */ UxRequestErrorModelInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxRequestErrorModelInterceptor });
|
|
4422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: UxRequestErrorModelInterceptor, decorators: [{
|
|
4421
4423
|
type: Injectable
|
|
4422
4424
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
4423
4425
|
type: Inject,
|
|
@@ -4559,9 +4561,9 @@ class OpenIdConnectInterceptor {
|
|
|
4559
4561
|
}
|
|
4560
4562
|
}
|
|
4561
4563
|
}
|
|
4562
|
-
/** @nocollapse */ /** @nocollapse */ OpenIdConnectInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4563
|
-
/** @nocollapse */ /** @nocollapse */ OpenIdConnectInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4564
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4564
|
+
/** @nocollapse */ /** @nocollapse */ OpenIdConnectInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: OpenIdConnectInterceptor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4565
|
+
/** @nocollapse */ /** @nocollapse */ OpenIdConnectInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: OpenIdConnectInterceptor });
|
|
4566
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: OpenIdConnectInterceptor, decorators: [{
|
|
4565
4567
|
type: Injectable
|
|
4566
4568
|
}], ctorParameters: function () { return []; } });
|
|
4567
4569
|
|
|
@@ -4591,9 +4593,9 @@ class OpenIdConnectService {
|
|
|
4591
4593
|
return this.userDetails;
|
|
4592
4594
|
}
|
|
4593
4595
|
}
|
|
4594
|
-
/** @nocollapse */ /** @nocollapse */ OpenIdConnectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4595
|
-
/** @nocollapse */ /** @nocollapse */ OpenIdConnectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0
|
|
4596
|
+
/** @nocollapse */ /** @nocollapse */ OpenIdConnectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: OpenIdConnectService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4597
|
+
/** @nocollapse */ /** @nocollapse */ OpenIdConnectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: OpenIdConnectService, providedIn: 'root' });
|
|
4598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: OpenIdConnectService, decorators: [{
|
|
4597
4599
|
type: Injectable,
|
|
4598
4600
|
args: [{
|
|
4599
4601
|
providedIn: 'root'
|