@eui/core 13.0.0-rc.3 → 13.0.0-rc.30
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 +43 -47
- package/docs/injectables/LocaleService.html +20 -0
- package/docs/injectables/UxAppShellService.html +111 -0
- package/docs/interfaces/UIState.html +90 -0
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/variables.html +3 -1
- package/esm2020/lib/eui-core.module.mjs +6 -6
- package/esm2020/lib/interceptors/add-lang-param.interceptor.mjs +4 -5
- 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 -5
- package/esm2020/lib/services/errors/http-error-handler.interceptor.mjs +5 -6
- package/esm2020/lib/services/i18n/i18n.loader.mjs +4 -6
- package/esm2020/lib/services/i18n/i18n.service.mjs +4 -7
- package/esm2020/lib/services/i18n/i18n.service.mock.mjs +4 -4
- package/esm2020/lib/services/locale/locale.service.mjs +9 -8
- package/esm2020/lib/services/log/log.module.mjs +5 -5
- package/esm2020/lib/services/log/log.service.mjs +5 -5
- package/esm2020/lib/services/permission/permission.service.mjs +4 -6
- package/esm2020/lib/services/queue/api-queue.service.mjs +4 -9
- 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 -5
- package/esm2020/lib/services/storage/local-storage.service.mjs +4 -5
- package/esm2020/lib/services/storage/session-storage.service.mjs +4 -5
- package/esm2020/lib/services/store/effects/app.effects.mjs +10 -16
- package/esm2020/lib/services/store/store.service.mjs +5 -7
- package/esm2020/lib/services/store/store.service.mock.mjs +4 -4
- package/esm2020/lib/services/user/user.service.mjs +4 -5
- package/esm2020/lib/services/user/user.service.mock.mjs +4 -4
- package/esm2020/lib/services/ux-app-shell.service.mjs +29 -12
- package/esm2020/lib/services/ux-dynamic-component/ux-dynamic-component.service.mjs +5 -5
- package/esm2020/lib/services/ux-dynamic-menu/ux-dynamic-menu.service.mjs +4 -6
- package/esm2020/lib/services/ux-error-feedback/ux-error-feedback.service.mjs +4 -6
- package/esm2020/lib/services/ux-timezone.service.mjs +4 -4
- package/fesm2015/eui-core.mjs +127 -122
- package/fesm2015/eui-core.mjs.map +1 -1
- package/fesm2020/eui-core.mjs +170 -161
- 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/locale/locale.service.d.ts +1 -0
- package/lib/services/locale/locale.service.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/store/effects/app.effects.d.ts.map +1 -1
- package/lib/services/ux-app-shell.service.d.ts +6 -1
- package/lib/services/ux-app-shell.service.d.ts.map +1 -1
- package/package.json +11 -1
- package/esm2020/lib/services/ux-root-injector.guard.mjs +0 -11
- package/lib/services/ux-root-injector.guard.d.ts +0 -5
- package/lib/services/ux-root-injector.guard.d.ts.map +0 -1
package/fesm2020/eui-core.mjs
CHANGED
|
@@ -9,15 +9,15 @@ import * as extendProxy from 'extend';
|
|
|
9
9
|
import { DateAdapter, MAT_DATE_LOCALE } from '@angular/material/core';
|
|
10
10
|
import { MomentDateAdapter } from '@angular/material-moment-adapter';
|
|
11
11
|
import { LOCATION_INITIALIZED, DOCUMENT, isPlatformBrowser, getLocaleId, registerLocaleData } from '@angular/common';
|
|
12
|
-
import * as i1$1 from '@ngrx/store';
|
|
13
|
-
import { createSelector } from '@ngrx/store';
|
|
14
12
|
import { throwError, forkJoin, of, BehaviorSubject, defer, merge, fromEvent, Observable, Subject, from } from 'rxjs';
|
|
15
13
|
import { debounceTime, distinctUntilChanged, map, catchError, switchMap, tap, filter, take, mapTo, mergeMap, concatMap, takeUntil } from 'rxjs/operators';
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import {
|
|
14
|
+
import * as i1$1 from '@ngrx/store';
|
|
15
|
+
import { createSelector } from '@ngrx/store';
|
|
16
|
+
import { __decorate } from 'tslib';
|
|
19
17
|
import * as i1$3 from '@ngrx/effects';
|
|
20
18
|
import { ofType, Effect } from '@ngrx/effects';
|
|
19
|
+
import * as i2 from '@ngx-translate/core';
|
|
20
|
+
import { TranslateLoader } from '@ngx-translate/core';
|
|
21
21
|
import * as i2$1 from '@angular/router';
|
|
22
22
|
import { NavigationEnd } from '@angular/router';
|
|
23
23
|
import isEqual from 'lodash-es/isEqual';
|
|
@@ -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,
|
|
@@ -251,45 +251,6 @@ function euiLogServiceFactory(injector, rootBaseLoggerName, rootConfig, childBas
|
|
|
251
251
|
return logService;
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
-
class LogServiceMock extends LoggerMock {
|
|
255
|
-
getLogger() {
|
|
256
|
-
return new LoggerMock();
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
const LOG_MODULE_CONFIG_TOKEN = new InjectionToken('LOG_CONFIG');
|
|
261
|
-
/**
|
|
262
|
-
* Log Module
|
|
263
|
-
*/
|
|
264
|
-
class LogModule {
|
|
265
|
-
/** method called in your root module to provide the LogService */
|
|
266
|
-
static forRoot(config = DEFAULT_LOG_CONFIG) {
|
|
267
|
-
return {
|
|
268
|
-
ngModule: LogModule,
|
|
269
|
-
providers: [
|
|
270
|
-
{ provide: LOG_MODULE_CONFIG_TOKEN, useValue: config },
|
|
271
|
-
{ provide: LogService, useFactory: logServiceFactory, deps: [LOG_MODULE_CONFIG_TOKEN, Injector] },
|
|
272
|
-
],
|
|
273
|
-
};
|
|
274
|
-
}
|
|
275
|
-
/** method called in your other (non root, lazy loaded) modules to import a different instance of LogService */
|
|
276
|
-
static forChild(config = DEFAULT_LOG_CONFIG) {
|
|
277
|
-
return {
|
|
278
|
-
ngModule: LogModule,
|
|
279
|
-
providers: [
|
|
280
|
-
{ provide: LOG_MODULE_CONFIG_TOKEN, useValue: config },
|
|
281
|
-
{ provide: LogService, useFactory: logServiceFactory, deps: [LOG_MODULE_CONFIG_TOKEN, Injector] },
|
|
282
|
-
],
|
|
283
|
-
};
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
/** @nocollapse */ /** @nocollapse */ LogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0-rc.0", ngImport: i0, type: LogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
287
|
-
/** @nocollapse */ /** @nocollapse */ LogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0-rc.0", ngImport: i0, type: LogModule });
|
|
288
|
-
/** @nocollapse */ /** @nocollapse */ LogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0-rc.0", ngImport: i0, type: LogModule });
|
|
289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0-rc.0", ngImport: i0, type: LogModule, decorators: [{
|
|
290
|
-
type: NgModule
|
|
291
|
-
}] });
|
|
292
|
-
|
|
293
254
|
var CoreAppActionTypes;
|
|
294
255
|
(function (CoreAppActionTypes) {
|
|
295
256
|
CoreAppActionTypes["INIT_STORE"] = "[App] Init store";
|
|
@@ -364,6 +325,45 @@ class EmptyApiQueueAction {
|
|
|
364
325
|
}
|
|
365
326
|
}
|
|
366
327
|
|
|
328
|
+
class LogServiceMock extends LoggerMock {
|
|
329
|
+
getLogger() {
|
|
330
|
+
return new LoggerMock();
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
const LOG_MODULE_CONFIG_TOKEN = new InjectionToken('LOG_CONFIG');
|
|
335
|
+
/**
|
|
336
|
+
* Log Module
|
|
337
|
+
*/
|
|
338
|
+
class LogModule {
|
|
339
|
+
/** method called in your root module to provide the LogService */
|
|
340
|
+
static forRoot(config = DEFAULT_LOG_CONFIG) {
|
|
341
|
+
return {
|
|
342
|
+
ngModule: LogModule,
|
|
343
|
+
providers: [
|
|
344
|
+
{ provide: LOG_MODULE_CONFIG_TOKEN, useValue: config },
|
|
345
|
+
{ provide: LogService, useFactory: logServiceFactory, deps: [LOG_MODULE_CONFIG_TOKEN, Injector] },
|
|
346
|
+
],
|
|
347
|
+
};
|
|
348
|
+
}
|
|
349
|
+
/** method called in your other (non root, lazy loaded) modules to import a different instance of LogService */
|
|
350
|
+
static forChild(config = DEFAULT_LOG_CONFIG) {
|
|
351
|
+
return {
|
|
352
|
+
ngModule: LogModule,
|
|
353
|
+
providers: [
|
|
354
|
+
{ provide: LOG_MODULE_CONFIG_TOKEN, useValue: config },
|
|
355
|
+
{ provide: LogService, useFactory: logServiceFactory, deps: [LOG_MODULE_CONFIG_TOKEN, Injector] },
|
|
356
|
+
],
|
|
357
|
+
};
|
|
358
|
+
}
|
|
359
|
+
}
|
|
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
|
+
type: NgModule
|
|
365
|
+
}] });
|
|
366
|
+
|
|
367
367
|
var BrowserStorageType;
|
|
368
368
|
(function (BrowserStorageType) {
|
|
369
369
|
BrowserStorageType[BrowserStorageType["local"] = 0] = "local";
|
|
@@ -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
|
|
|
@@ -1051,9 +1051,11 @@ const initialState = {
|
|
|
1051
1051
|
hasHeader: false,
|
|
1052
1052
|
hasHeaderLogo: false,
|
|
1053
1053
|
hasHeaderEnvironment: false,
|
|
1054
|
+
hasToolbar: false,
|
|
1055
|
+
hasToolbarMenu: false,
|
|
1054
1056
|
environmentValue: '',
|
|
1055
1057
|
isSidebarHidden: false,
|
|
1056
|
-
|
|
1058
|
+
hasTopMessage: false,
|
|
1057
1059
|
windowWidth: 0,
|
|
1058
1060
|
windowHeight: 0,
|
|
1059
1061
|
mainContentHeight: 0,
|
|
@@ -1079,7 +1081,7 @@ const initialState = {
|
|
|
1079
1081
|
hasModalActive: false,
|
|
1080
1082
|
isDimmerActive: false,
|
|
1081
1083
|
};
|
|
1082
|
-
//
|
|
1084
|
+
// TODO: this service needs to be transferred in the respective component
|
|
1083
1085
|
class UxAppShellService {
|
|
1084
1086
|
constructor(config, http, platformId, router, storeService, i18nService) {
|
|
1085
1087
|
this.config = config;
|
|
@@ -1096,8 +1098,6 @@ class UxAppShellService {
|
|
|
1096
1098
|
this.activeModals = [];
|
|
1097
1099
|
this.openModalId = new BehaviorSubject('');
|
|
1098
1100
|
this.cssVars = [];
|
|
1099
|
-
// super(UxAppShellService);
|
|
1100
|
-
console.log('UxAppShellService initialized');
|
|
1101
1101
|
let stateWithConfig = initialState;
|
|
1102
1102
|
const languages = config?.i18n?.i18nService?.languages || initialState.languages;
|
|
1103
1103
|
const defaultLanguage = config?.i18n?.i18nService?.defaultLanguage || initialState.activeLanguage;
|
|
@@ -1314,6 +1314,13 @@ class UxAppShellService {
|
|
|
1314
1314
|
});
|
|
1315
1315
|
this.activateHeaderCssVars();
|
|
1316
1316
|
}
|
|
1317
|
+
activateTopMessage() {
|
|
1318
|
+
this.setState({
|
|
1319
|
+
...this.state,
|
|
1320
|
+
hasTopMessage: true,
|
|
1321
|
+
});
|
|
1322
|
+
this.activateTopMessageCssVars();
|
|
1323
|
+
}
|
|
1317
1324
|
activateToolbar() {
|
|
1318
1325
|
this.setState({
|
|
1319
1326
|
...this.state,
|
|
@@ -1321,11 +1328,20 @@ class UxAppShellService {
|
|
|
1321
1328
|
});
|
|
1322
1329
|
this.activateToolbarCssVars();
|
|
1323
1330
|
}
|
|
1331
|
+
activateToolbarMenu() {
|
|
1332
|
+
this.setState({
|
|
1333
|
+
...this.state,
|
|
1334
|
+
hasToolbarMenu: true,
|
|
1335
|
+
});
|
|
1336
|
+
}
|
|
1324
1337
|
fetchCssVars() {
|
|
1325
1338
|
const cssVarNames = [
|
|
1326
1339
|
'--eui-app-header-height-default',
|
|
1327
1340
|
'--eui-app-header-height-active',
|
|
1328
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',
|
|
1329
1345
|
'--eui-app-toolbar-height-default',
|
|
1330
1346
|
'--eui-app-toolbar-height-active',
|
|
1331
1347
|
'--eui-app-sidebar-width-default',
|
|
@@ -1343,6 +1359,7 @@ class UxAppShellService {
|
|
|
1343
1359
|
}
|
|
1344
1360
|
initCssVars() {
|
|
1345
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');
|
|
1346
1363
|
this.setCssVar('--eui-app-toolbar-height-default', '--eui-app-toolbar-height');
|
|
1347
1364
|
this.setCssVar('--eui-app-sidebar-width-default', '--eui-app-sidebar-width');
|
|
1348
1365
|
this.setCssVar('--eui-app-sidebar-width-close-default', '--eui-app-sidebar-width-close');
|
|
@@ -1352,6 +1369,9 @@ class UxAppShellService {
|
|
|
1352
1369
|
activateHeaderCssVars() {
|
|
1353
1370
|
this.setCssVar('--eui-app-header-height-active', '--eui-app-header-height');
|
|
1354
1371
|
}
|
|
1372
|
+
activateTopMessageCssVars() {
|
|
1373
|
+
this.setCssVar('--eui-app-top-message-height-active', '--eui-app-top-message-height');
|
|
1374
|
+
}
|
|
1355
1375
|
activateToolbarCssVars() {
|
|
1356
1376
|
this.setCssVar('--eui-app-toolbar-height-active', '--eui-app-toolbar-height');
|
|
1357
1377
|
}
|
|
@@ -1634,9 +1654,9 @@ class UxAppShellService {
|
|
|
1634
1654
|
});
|
|
1635
1655
|
}
|
|
1636
1656
|
}
|
|
1637
|
-
/** @nocollapse */ /** @nocollapse */ UxAppShellService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
1638
|
-
/** @nocollapse */ /** @nocollapse */ UxAppShellService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
1639
|
-
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: [{
|
|
1640
1660
|
type: Injectable,
|
|
1641
1661
|
args: [{
|
|
1642
1662
|
providedIn: 'root',
|
|
@@ -1686,21 +1706,18 @@ class CoreAppEffects {
|
|
|
1686
1706
|
}));
|
|
1687
1707
|
}
|
|
1688
1708
|
}
|
|
1689
|
-
/** @nocollapse */ /** @nocollapse */ CoreAppEffects.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
1690
|
-
/** @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 });
|
|
1691
1711
|
__decorate([
|
|
1692
|
-
Effect()
|
|
1693
|
-
__metadata("design:type", Observable)
|
|
1712
|
+
Effect()
|
|
1694
1713
|
], CoreAppEffects.prototype, "getAppConnectionInformation", void 0);
|
|
1695
1714
|
__decorate([
|
|
1696
|
-
Effect()
|
|
1697
|
-
__metadata("design:type", Observable)
|
|
1715
|
+
Effect()
|
|
1698
1716
|
], CoreAppEffects.prototype, "activatedRoute", void 0);
|
|
1699
1717
|
__decorate([
|
|
1700
|
-
Effect({ dispatch: false })
|
|
1701
|
-
__metadata("design:type", Object)
|
|
1718
|
+
Effect({ dispatch: false })
|
|
1702
1719
|
], CoreAppEffects.prototype, "updateAppConnection", void 0);
|
|
1703
|
-
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: [{
|
|
1704
1721
|
type: Injectable
|
|
1705
1722
|
}], ctorParameters: function () { return [{ type: i1$3.Actions }, { type: undefined, decorators: [{
|
|
1706
1723
|
type: Inject,
|
|
@@ -1963,9 +1980,9 @@ class StoreServiceMock extends StoreService {
|
|
|
1963
1980
|
return of({});
|
|
1964
1981
|
}
|
|
1965
1982
|
}
|
|
1966
|
-
/** @nocollapse */ /** @nocollapse */ StoreServiceMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
1967
|
-
/** @nocollapse */ /** @nocollapse */ StoreServiceMock.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
1968
|
-
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: [{
|
|
1969
1986
|
type: Injectable
|
|
1970
1987
|
}], ctorParameters: function () { return []; } });
|
|
1971
1988
|
|
|
@@ -2010,12 +2027,12 @@ class CoreModule {
|
|
|
2010
2027
|
};
|
|
2011
2028
|
}
|
|
2012
2029
|
}
|
|
2013
|
-
/** @nocollapse */ /** @nocollapse */ CoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2014
|
-
/** @nocollapse */ /** @nocollapse */ CoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0
|
|
2015
|
-
/** @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: [[
|
|
2016
2033
|
HttpClientModule,
|
|
2017
2034
|
]] });
|
|
2018
|
-
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: [{
|
|
2019
2036
|
type: NgModule,
|
|
2020
2037
|
args: [{
|
|
2021
2038
|
imports: [
|
|
@@ -2137,9 +2154,9 @@ class GlobalErrorHandler extends ErrorHandler {
|
|
|
2137
2154
|
super.handleError(error);
|
|
2138
2155
|
}
|
|
2139
2156
|
}
|
|
2140
|
-
/** @nocollapse */ /** @nocollapse */ GlobalErrorHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2141
|
-
/** @nocollapse */ /** @nocollapse */ GlobalErrorHandler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2142
|
-
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: [{
|
|
2143
2160
|
type: Injectable,
|
|
2144
2161
|
args: [{
|
|
2145
2162
|
providedIn: 'root',
|
|
@@ -2186,9 +2203,9 @@ class HttpErrorHandlerInterceptor {
|
|
|
2186
2203
|
return routes.length > 0 ? routes[0] : null;
|
|
2187
2204
|
}
|
|
2188
2205
|
}
|
|
2189
|
-
/** @nocollapse */ /** @nocollapse */ HttpErrorHandlerInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2190
|
-
/** @nocollapse */ /** @nocollapse */ HttpErrorHandlerInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2191
|
-
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: [{
|
|
2192
2209
|
type: Injectable
|
|
2193
2210
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
2194
2211
|
type: Inject,
|
|
@@ -2281,7 +2298,6 @@ class ApiQueueService {
|
|
|
2281
2298
|
.pipe(take(1), switchMap((queue) => {
|
|
2282
2299
|
if (!queue) {
|
|
2283
2300
|
this.logService.warn(`Queue item with id "${id}" does not exist`);
|
|
2284
|
-
// tslint:disable-next-line:deprecation
|
|
2285
2301
|
return of(null);
|
|
2286
2302
|
}
|
|
2287
2303
|
return this.buildHttpRequest(id, queue);
|
|
@@ -2300,7 +2316,6 @@ class ApiQueueService {
|
|
|
2300
2316
|
if (!continueOnError) {
|
|
2301
2317
|
throw error;
|
|
2302
2318
|
}
|
|
2303
|
-
// tslint:disable-next-line:deprecation
|
|
2304
2319
|
return of(error);
|
|
2305
2320
|
})))), switchMap((obsQueue) => forkJoin(Array.from(obsQueue))));
|
|
2306
2321
|
}
|
|
@@ -2337,9 +2352,9 @@ class ApiQueueService {
|
|
|
2337
2352
|
.pipe(tap(() => this.removeQueueItem(id)));
|
|
2338
2353
|
}
|
|
2339
2354
|
}
|
|
2340
|
-
/** @nocollapse */ /** @nocollapse */ ApiQueueService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2341
|
-
/** @nocollapse */ /** @nocollapse */ ApiQueueService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2342
|
-
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: [{
|
|
2343
2358
|
type: Injectable,
|
|
2344
2359
|
args: [{
|
|
2345
2360
|
providedIn: 'root',
|
|
@@ -2351,22 +2366,18 @@ class ApiQueueServiceMock extends ApiQueueService {
|
|
|
2351
2366
|
super(null, null, null);
|
|
2352
2367
|
}
|
|
2353
2368
|
getQueue() {
|
|
2354
|
-
// tslint:disable-next-line:deprecation
|
|
2355
2369
|
return of([]);
|
|
2356
2370
|
}
|
|
2357
2371
|
getQueueItem(id) {
|
|
2358
|
-
// tslint:disable-next-line:deprecation
|
|
2359
2372
|
return of(null);
|
|
2360
2373
|
}
|
|
2361
2374
|
removeAllQueueItem() { }
|
|
2362
2375
|
processAllQueueItems() {
|
|
2363
|
-
// tslint:disable-next-line:deprecation
|
|
2364
2376
|
return of({});
|
|
2365
2377
|
}
|
|
2366
2378
|
addQueueItem() { }
|
|
2367
2379
|
removeQueueItem() { }
|
|
2368
2380
|
processQueueItem() {
|
|
2369
|
-
// tslint:disable-next-line:deprecation
|
|
2370
2381
|
return of({});
|
|
2371
2382
|
}
|
|
2372
2383
|
}
|
|
@@ -2696,9 +2707,9 @@ class EuiPermissionService extends EuiService {
|
|
|
2696
2707
|
return rights.every((right) => this.userRights.find((uRight) => uRight.id === right.id));
|
|
2697
2708
|
}
|
|
2698
2709
|
}
|
|
2699
|
-
/** @nocollapse */ /** @nocollapse */ EuiPermissionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2700
|
-
/** @nocollapse */ /** @nocollapse */ EuiPermissionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2701
|
-
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: [{
|
|
2702
2713
|
type: Injectable,
|
|
2703
2714
|
args: [{
|
|
2704
2715
|
providedIn: 'root',
|
|
@@ -2759,9 +2770,9 @@ class UxDynamicMenuService {
|
|
|
2759
2770
|
});
|
|
2760
2771
|
}
|
|
2761
2772
|
}
|
|
2762
|
-
/** @nocollapse */ /** @nocollapse */ UxDynamicMenuService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2763
|
-
/** @nocollapse */ /** @nocollapse */ UxDynamicMenuService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2764
|
-
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: [{
|
|
2765
2776
|
type: Injectable,
|
|
2766
2777
|
args: [{
|
|
2767
2778
|
providedIn: 'root',
|
|
@@ -2829,9 +2840,9 @@ class UxErrorFeedbackService {
|
|
|
2829
2840
|
return new UxErrorManager(this, true);
|
|
2830
2841
|
}
|
|
2831
2842
|
}
|
|
2832
|
-
/** @nocollapse */ /** @nocollapse */ UxErrorFeedbackService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2833
|
-
/** @nocollapse */ /** @nocollapse */ UxErrorFeedbackService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2834
|
-
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: [{
|
|
2835
2846
|
type: Injectable,
|
|
2836
2847
|
args: [{
|
|
2837
2848
|
providedIn: 'root'
|
|
@@ -2926,9 +2937,9 @@ class UxDynamicComponentService {
|
|
|
2926
2937
|
return new PortalInjector(this.injector, injectorTokens);
|
|
2927
2938
|
}
|
|
2928
2939
|
}
|
|
2929
|
-
/** @nocollapse */ /** @nocollapse */ UxDynamicComponentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
2930
|
-
/** @nocollapse */ /** @nocollapse */ UxDynamicComponentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
2931
|
-
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: [{
|
|
2932
2943
|
type: Injectable,
|
|
2933
2944
|
args: [{ providedIn: 'root' }]
|
|
2934
2945
|
}], ctorParameters: function () { return [{ type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: i0.ApplicationRef }]; } });
|
|
@@ -3643,9 +3654,9 @@ class UxTimezoneService {
|
|
|
3643
3654
|
});
|
|
3644
3655
|
}
|
|
3645
3656
|
}
|
|
3646
|
-
/** @nocollapse */ /** @nocollapse */ UxTimezoneService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
3647
|
-
/** @nocollapse */ /** @nocollapse */ UxTimezoneService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
3648
|
-
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: [{
|
|
3649
3660
|
type: Injectable
|
|
3650
3661
|
}] });
|
|
3651
3662
|
|
|
@@ -3688,22 +3699,18 @@ class AsyncStorageService extends StorageService {
|
|
|
3688
3699
|
|
|
3689
3700
|
class AsyncStorageServiceMock extends AsyncStorageService {
|
|
3690
3701
|
ready() {
|
|
3691
|
-
// tslint:disable-next-line:deprecation
|
|
3692
3702
|
return of({});
|
|
3693
3703
|
}
|
|
3694
3704
|
name() {
|
|
3695
3705
|
return null;
|
|
3696
3706
|
}
|
|
3697
3707
|
get() {
|
|
3698
|
-
// tslint:disable-next-line:deprecation
|
|
3699
3708
|
return of({});
|
|
3700
3709
|
}
|
|
3701
3710
|
set() {
|
|
3702
|
-
// tslint:disable-next-line:deprecation
|
|
3703
3711
|
return of({});
|
|
3704
3712
|
}
|
|
3705
3713
|
remove() {
|
|
3706
|
-
// tslint:disable-next-line:deprecation
|
|
3707
3714
|
return of({});
|
|
3708
3715
|
}
|
|
3709
3716
|
setAsync() {
|
|
@@ -3775,9 +3782,9 @@ class LocalStorageService extends StorageService {
|
|
|
3775
3782
|
}
|
|
3776
3783
|
}
|
|
3777
3784
|
LocalStorageService.NAME = 'LocalStorageService';
|
|
3778
|
-
/** @nocollapse */ /** @nocollapse */ LocalStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
3779
|
-
/** @nocollapse */ /** @nocollapse */ LocalStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
3780
|
-
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: [{
|
|
3781
3788
|
type: Injectable
|
|
3782
3789
|
}], ctorParameters: function () { return [{ type: LogService, decorators: [{
|
|
3783
3790
|
type: Optional
|
|
@@ -3846,9 +3853,9 @@ class SessionStorageService extends StorageService {
|
|
|
3846
3853
|
}
|
|
3847
3854
|
}
|
|
3848
3855
|
SessionStorageService.NAME = 'SessionStorageService';
|
|
3849
|
-
/** @nocollapse */ /** @nocollapse */ SessionStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
3850
|
-
/** @nocollapse */ /** @nocollapse */ SessionStorageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
3851
|
-
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: [{
|
|
3852
3859
|
type: Injectable
|
|
3853
3860
|
}], ctorParameters: function () { return [{ type: LogService, decorators: [{
|
|
3854
3861
|
type: Optional
|
|
@@ -3935,9 +3942,9 @@ class LocalForageService extends AsyncStorageService {
|
|
|
3935
3942
|
}
|
|
3936
3943
|
}
|
|
3937
3944
|
LocalForageService.NAME = 'LocalForageService';
|
|
3938
|
-
/** @nocollapse */ /** @nocollapse */ LocalForageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
3939
|
-
/** @nocollapse */ /** @nocollapse */ LocalForageService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
3940
|
-
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: [{
|
|
3941
3948
|
type: Injectable
|
|
3942
3949
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
3943
3950
|
type: Inject,
|
|
@@ -4025,8 +4032,11 @@ class LocaleService extends EuiService {
|
|
|
4025
4032
|
addLocale(id) {
|
|
4026
4033
|
return this.loadLocale(id);
|
|
4027
4034
|
}
|
|
4035
|
+
get previousLocale() {
|
|
4036
|
+
return this.prevStateInstance?.id || this.currentLocale;
|
|
4037
|
+
}
|
|
4028
4038
|
get currentLocale() {
|
|
4029
|
-
return this.stateInstance
|
|
4039
|
+
return this.stateInstance?.id;
|
|
4030
4040
|
}
|
|
4031
4041
|
/**
|
|
4032
4042
|
* load and register locale data dynamically
|
|
@@ -4161,9 +4171,9 @@ class LocaleService extends EuiService {
|
|
|
4161
4171
|
return from(this.importLocale(localeId)).pipe(mergeMap(() => from(this.importExtraLocale(localeId)).pipe(map((data, extraData) => Object.assign({}, { data, localeId, extraData }))), 1));
|
|
4162
4172
|
}
|
|
4163
4173
|
}
|
|
4164
|
-
/** @nocollapse */ /** @nocollapse */ LocaleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4165
|
-
/** @nocollapse */ /** @nocollapse */ LocaleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4166
|
-
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: [{
|
|
4167
4177
|
type: Injectable,
|
|
4168
4178
|
args: [{
|
|
4169
4179
|
providedIn: 'root'
|
|
@@ -4218,9 +4228,9 @@ class UserService extends EuiService {
|
|
|
4218
4228
|
this.store.dispatch(new UpdateUserStateAction(userState));
|
|
4219
4229
|
}
|
|
4220
4230
|
}
|
|
4221
|
-
/** @nocollapse */ /** @nocollapse */ UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4222
|
-
/** @nocollapse */ /** @nocollapse */ UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4223
|
-
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: [{
|
|
4224
4234
|
type: Injectable,
|
|
4225
4235
|
args: [{
|
|
4226
4236
|
providedIn: 'root',
|
|
@@ -4251,9 +4261,9 @@ class UserServiceMock extends UserService {
|
|
|
4251
4261
|
return of('anonymous');
|
|
4252
4262
|
}
|
|
4253
4263
|
}
|
|
4254
|
-
/** @nocollapse */ /** @nocollapse */ UserServiceMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4255
|
-
/** @nocollapse */ /** @nocollapse */ UserServiceMock.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4256
|
-
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: [{
|
|
4257
4267
|
type: Injectable
|
|
4258
4268
|
}], ctorParameters: function () { return []; } });
|
|
4259
4269
|
|
|
@@ -4283,9 +4293,9 @@ class AddLangParamInterceptor {
|
|
|
4283
4293
|
}));
|
|
4284
4294
|
}
|
|
4285
4295
|
}
|
|
4286
|
-
/** @nocollapse */ /** @nocollapse */ AddLangParamInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4287
|
-
/** @nocollapse */ /** @nocollapse */ AddLangParamInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4288
|
-
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: [{
|
|
4289
4299
|
type: Injectable
|
|
4290
4300
|
}], ctorParameters: function () { return [{ type: i2.TranslateService }]; } });
|
|
4291
4301
|
|
|
@@ -4302,9 +4312,9 @@ class CachePreventionInterceptor {
|
|
|
4302
4312
|
}));
|
|
4303
4313
|
}
|
|
4304
4314
|
}
|
|
4305
|
-
/** @nocollapse */ /** @nocollapse */ CachePreventionInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4306
|
-
/** @nocollapse */ /** @nocollapse */ CachePreventionInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4307
|
-
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: [{
|
|
4308
4318
|
type: Injectable
|
|
4309
4319
|
}] });
|
|
4310
4320
|
|
|
@@ -4315,9 +4325,9 @@ class CorsSecurityInterceptor {
|
|
|
4315
4325
|
}));
|
|
4316
4326
|
}
|
|
4317
4327
|
}
|
|
4318
|
-
/** @nocollapse */ /** @nocollapse */ CorsSecurityInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4319
|
-
/** @nocollapse */ /** @nocollapse */ CorsSecurityInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4320
|
-
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: [{
|
|
4321
4331
|
type: Injectable
|
|
4322
4332
|
}] });
|
|
4323
4333
|
|
|
@@ -4328,9 +4338,9 @@ class CsrfPreventionInterceptor {
|
|
|
4328
4338
|
}));
|
|
4329
4339
|
}
|
|
4330
4340
|
}
|
|
4331
|
-
/** @nocollapse */ /** @nocollapse */ CsrfPreventionInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4332
|
-
/** @nocollapse */ /** @nocollapse */ CsrfPreventionInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4333
|
-
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: [{
|
|
4334
4344
|
type: Injectable
|
|
4335
4345
|
}] });
|
|
4336
4346
|
|
|
@@ -4381,13 +4391,12 @@ class EuLoginSessionTimeoutHandlingInterceptor {
|
|
|
4381
4391
|
}
|
|
4382
4392
|
}
|
|
4383
4393
|
reauthenticate(request, response) {
|
|
4384
|
-
// tslint:disable-next-line:deprecation
|
|
4385
4394
|
document.location.reload();
|
|
4386
4395
|
}
|
|
4387
4396
|
}
|
|
4388
|
-
/** @nocollapse */ /** @nocollapse */ EuLoginSessionTimeoutHandlingInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4389
|
-
/** @nocollapse */ /** @nocollapse */ EuLoginSessionTimeoutHandlingInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4390
|
-
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: [{
|
|
4391
4400
|
type: Injectable
|
|
4392
4401
|
}] });
|
|
4393
4402
|
|
|
@@ -4408,9 +4417,9 @@ class UxRequestErrorModelInterceptor {
|
|
|
4408
4417
|
}));
|
|
4409
4418
|
}
|
|
4410
4419
|
}
|
|
4411
|
-
/** @nocollapse */ /** @nocollapse */ UxRequestErrorModelInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4412
|
-
/** @nocollapse */ /** @nocollapse */ UxRequestErrorModelInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4413
|
-
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: [{
|
|
4414
4423
|
type: Injectable
|
|
4415
4424
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
4416
4425
|
type: Inject,
|
|
@@ -4552,9 +4561,9 @@ class OpenIdConnectInterceptor {
|
|
|
4552
4561
|
}
|
|
4553
4562
|
}
|
|
4554
4563
|
}
|
|
4555
|
-
/** @nocollapse */ /** @nocollapse */ OpenIdConnectInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4556
|
-
/** @nocollapse */ /** @nocollapse */ OpenIdConnectInterceptor.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4557
|
-
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: [{
|
|
4558
4567
|
type: Injectable
|
|
4559
4568
|
}], ctorParameters: function () { return []; } });
|
|
4560
4569
|
|
|
@@ -4584,9 +4593,9 @@ class OpenIdConnectService {
|
|
|
4584
4593
|
return this.userDetails;
|
|
4585
4594
|
}
|
|
4586
4595
|
}
|
|
4587
|
-
/** @nocollapse */ /** @nocollapse */ OpenIdConnectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0
|
|
4588
|
-
/** @nocollapse */ /** @nocollapse */ OpenIdConnectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0
|
|
4589
|
-
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: [{
|
|
4590
4599
|
type: Injectable,
|
|
4591
4600
|
args: [{
|
|
4592
4601
|
providedIn: 'root'
|