@eui/core 16.2.4 → 16.2.5-snapshot-1697815040873
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/classes/ApiQueueServiceMock.html +1 -5
- package/docs/classes/I18nResourceImpl.html +2 -0
- package/docs/classes/LogServiceMock.html +1 -1
- package/docs/classes/RouterMock.html +1 -14
- package/docs/classes/StorageServiceMock.html +0 -9
- package/docs/classes/StoreMock.html +4 -17
- package/docs/classes/UxRootInjectorGuard.html +2 -2
- package/docs/dependencies.html +2 -2
- package/docs/injectables/ApiQueueService.html +2 -10
- package/docs/injectables/CoreAppEffects.html +10 -10
- package/docs/injectables/I18nService.html +1 -1
- package/docs/injectables/I18nServiceMock.html +1 -1
- package/docs/injectables/LogService.html +1 -2
- package/docs/injectables/StoreService.html +8 -8
- package/docs/injectables/StoreServiceMock.html +5 -5
- package/docs/injectables/UserService.html +2 -2
- package/docs/injectables/UserServiceMock.html +217 -136
- package/docs/injectables/UxAppShellService.html +1 -1
- package/docs/injectables/UxDynamicComponentService.html +1 -1
- package/docs/injectables/UxDynamicMenuService.html +2 -2
- package/docs/interceptors/AddLangParamInterceptor.html +11 -3
- package/docs/interceptors/CachePreventionInterceptor.html +11 -3
- package/docs/interceptors/CorsSecurityInterceptor.html +11 -3
- package/docs/interceptors/CsrfPreventionInterceptor.html +11 -3
- package/docs/interceptors/EuLoginSessionTimeoutHandlingInterceptor.html +11 -3
- package/docs/interfaces/UIState.html +6 -6
- package/docs/js/menu-wc.js +6 -6
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/functions.html +42 -0
- package/docs/miscellaneous/variables.html +49 -49
- package/docs/modules/I18nModule.html +1 -1
- package/esm2022/lib/eui-core.module.mjs +3 -3
- package/esm2022/lib/helpers/date-helpers.mjs +1 -1
- package/esm2022/lib/helpers/dom-helpers.mjs +10 -8
- package/esm2022/lib/helpers/event-helpers.mjs +1 -1
- package/esm2022/lib/helpers/form-helpers.mjs +1 -1
- package/esm2022/lib/helpers/format-helpers.mjs +6 -5
- package/esm2022/lib/helpers/http-helpers.mjs +3 -5
- package/esm2022/lib/interceptors/add-lang-param.interceptor.mjs +1 -1
- package/esm2022/lib/interceptors/cache-prevention.interceptor.mjs +1 -1
- package/esm2022/lib/interceptors/cors-security.interceptor.mjs +1 -1
- package/esm2022/lib/interceptors/csrf-prevention.interceptor.mjs +1 -1
- package/esm2022/lib/interceptors/eu-login-session-timeout-handling.interceptor.mjs +10 -3
- package/esm2022/lib/interceptors/openid/openid-connect.interceptor.mjs +34 -5
- package/esm2022/lib/interceptors/openid/openid-connect.service.mjs +3 -1
- package/esm2022/lib/interceptors/ux-request-error-model.interceptor.mjs +7 -2
- package/esm2022/lib/services/app/eui-init-app.mjs +2 -2
- package/esm2022/lib/services/app/eui-pre-init-app.mjs +1 -1
- package/esm2022/lib/services/app/factories/log.mjs +1 -1
- package/esm2022/lib/services/config/tokens.mjs +3 -1
- package/esm2022/lib/services/errors/eui.error.mjs +5 -1
- package/esm2022/lib/services/errors/global-error-handler.mjs +4 -2
- package/esm2022/lib/services/errors/http-error-handler-callback-functions.mjs +2 -2
- package/esm2022/lib/services/errors/http-error-handler.interceptor.mjs +21 -14
- package/esm2022/lib/services/i18n/i18n.loader.mjs +13 -2
- package/esm2022/lib/services/i18n/i18n.resource.mjs +8 -3
- package/esm2022/lib/services/i18n/i18n.service.mjs +14 -7
- package/esm2022/lib/services/i18n/index.mjs +2 -2
- package/esm2022/lib/services/locale/locale.service.mjs +4 -2
- package/esm2022/lib/services/log/log.service.mjs +1 -1
- package/esm2022/lib/services/log/log.service.mock.mjs +1 -1
- package/esm2022/lib/services/permission/permission.service.mjs +2 -2
- package/esm2022/lib/services/queue/api-queue.service.mjs +17 -5
- package/esm2022/lib/services/queue/api-queue.service.mock.mjs +5 -1
- package/esm2022/lib/services/storage/async-storage.service.mjs +1 -1
- package/esm2022/lib/services/storage/async-storage.service.mock.mjs +9 -1
- package/esm2022/lib/services/storage/local-forage.service.mjs +40 -15
- package/esm2022/lib/services/storage/local-storage.service.mjs +5 -1
- package/esm2022/lib/services/storage/session-storage.service.mjs +5 -1
- package/esm2022/lib/services/storage/storage.service.mjs +1 -1
- package/esm2022/lib/services/storage/storage.service.mock.mjs +1 -1
- package/esm2022/lib/services/store/actions/app.actions.mjs +3 -1
- package/esm2022/lib/services/store/actions/notifications.actions.mjs +3 -1
- package/esm2022/lib/services/store/actions/user.actions.mjs +3 -1
- package/esm2022/lib/services/store/effects/app.effects.mjs +3 -3
- package/esm2022/lib/services/store/reducers/app.reducers.mjs +2 -3
- package/esm2022/lib/services/store/reducers/core.reducers.mjs +3 -1
- package/esm2022/lib/services/store/reducers/i18n.reducers.mjs +2 -2
- package/esm2022/lib/services/store/reducers/locale.reducers.mjs +1 -1
- package/esm2022/lib/services/store/reducers/meta.reducers.mjs +4 -2
- package/esm2022/lib/services/store/reducers/notifications.reducers.mjs +2 -2
- package/esm2022/lib/services/store/reducers/user.reducers.mjs +2 -2
- package/esm2022/lib/services/store/store.service.mjs +11 -3
- package/esm2022/lib/services/store/store.service.mock.mjs +1 -1
- package/esm2022/lib/services/user/user.service.mjs +10 -4
- package/esm2022/lib/services/user/user.service.mock.mjs +8 -14
- package/esm2022/lib/services/ux-app-shell.service.mjs +18 -10
- package/esm2022/lib/services/ux-dynamic-component/ux-dynamic-component.service.mjs +6 -1
- package/esm2022/lib/services/ux-dynamic-menu/ux-dynamic-menu.service.mjs +5 -2
- package/esm2022/lib/services/ux-error-feedback/ux-error-feedback.service.mjs +1 -1
- package/esm2022/lib/services/ux-error-feedback/ux-error-handler.operator.mjs +1 -1
- package/fesm2022/eui-core.mjs +601 -458
- package/fesm2022/eui-core.mjs.map +1 -1
- package/lib/eui-core.module.d.ts +1 -1
- package/lib/eui-core.module.d.ts.map +1 -1
- package/lib/helpers/date-helpers.d.ts.map +1 -1
- package/lib/helpers/dom-helpers.d.ts +9 -7
- package/lib/helpers/dom-helpers.d.ts.map +1 -1
- package/lib/helpers/event-helpers.d.ts.map +1 -1
- package/lib/helpers/form-helpers.d.ts.map +1 -1
- package/lib/helpers/format-helpers.d.ts.map +1 -1
- package/lib/helpers/http-helpers.d.ts +2 -1
- package/lib/helpers/http-helpers.d.ts.map +1 -1
- package/lib/interceptors/add-lang-param.interceptor.d.ts +1 -1
- package/lib/interceptors/add-lang-param.interceptor.d.ts.map +1 -1
- package/lib/interceptors/cache-prevention.interceptor.d.ts +1 -1
- package/lib/interceptors/cache-prevention.interceptor.d.ts.map +1 -1
- package/lib/interceptors/cors-security.interceptor.d.ts +1 -1
- package/lib/interceptors/cors-security.interceptor.d.ts.map +1 -1
- package/lib/interceptors/csrf-prevention.interceptor.d.ts +1 -1
- package/lib/interceptors/csrf-prevention.interceptor.d.ts.map +1 -1
- package/lib/interceptors/eu-login-session-timeout-handling.interceptor.d.ts +1 -1
- package/lib/interceptors/eu-login-session-timeout-handling.interceptor.d.ts.map +1 -1
- package/lib/interceptors/openid/openid-connect.interceptor.d.ts.map +1 -1
- package/lib/interceptors/openid/openid-connect.service.d.ts.map +1 -1
- package/lib/interceptors/ux-request-error-model.interceptor.d.ts +1 -1
- package/lib/interceptors/ux-request-error-model.interceptor.d.ts.map +1 -1
- package/lib/services/app/eui-init-app.d.ts +1 -1
- package/lib/services/app/eui-init-app.d.ts.map +1 -1
- package/lib/services/config/tokens.d.ts +2 -2
- package/lib/services/config/tokens.d.ts.map +1 -1
- package/lib/services/errors/eui.error.d.ts.map +1 -1
- package/lib/services/errors/global-error-handler.d.ts +1 -1
- package/lib/services/errors/global-error-handler.d.ts.map +1 -1
- package/lib/services/errors/http-error-handler-callback-functions.d.ts.map +1 -1
- package/lib/services/errors/http-error-handler.interceptor.d.ts.map +1 -1
- package/lib/services/i18n/i18n.loader.d.ts.map +1 -1
- package/lib/services/i18n/i18n.resource.d.ts +1 -1
- package/lib/services/i18n/i18n.resource.d.ts.map +1 -1
- package/lib/services/i18n/i18n.service.d.ts +4 -3
- package/lib/services/i18n/i18n.service.d.ts.map +1 -1
- package/lib/services/i18n/index.d.ts +0 -1
- package/lib/services/i18n/index.d.ts.map +1 -1
- package/lib/services/locale/locale.service.d.ts.map +1 -1
- package/lib/services/log/log.service.d.ts.map +1 -1
- package/lib/services/log/log.service.mock.d.ts.map +1 -1
- package/lib/services/permission/permission.service.d.ts.map +1 -1
- package/lib/services/queue/api-queue.service.d.ts +2 -2
- 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.d.ts.map +1 -1
- package/lib/services/storage/async-storage.service.mock.d.ts.map +1 -1
- package/lib/services/storage/local-forage.service.d.ts +1 -1
- package/lib/services/storage/local-forage.service.d.ts.map +1 -1
- package/lib/services/storage/local-storage.service.d.ts.map +1 -1
- package/lib/services/storage/session-storage.service.d.ts.map +1 -1
- package/lib/services/storage/storage.service.d.ts.map +1 -1
- package/lib/services/storage/storage.service.mock.d.ts +1 -1
- package/lib/services/storage/storage.service.mock.d.ts.map +1 -1
- package/lib/services/store/actions/app.actions.d.ts.map +1 -1
- package/lib/services/store/actions/notifications.actions.d.ts.map +1 -1
- package/lib/services/store/actions/user.actions.d.ts.map +1 -1
- package/lib/services/store/reducers/app.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/core.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/meta.reducers.d.ts +2 -2
- package/lib/services/store/reducers/meta.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/user.reducers.d.ts.map +1 -1
- package/lib/services/store/store.service.d.ts +8 -8
- package/lib/services/store/store.service.d.ts.map +1 -1
- package/lib/services/store/store.service.mock.d.ts +2 -1
- package/lib/services/store/store.service.mock.d.ts.map +1 -1
- package/lib/services/user/user.service.d.ts +3 -3
- package/lib/services/user/user.service.d.ts.map +1 -1
- package/lib/services/user/user.service.mock.d.ts +10 -12
- package/lib/services/user/user.service.mock.d.ts.map +1 -1
- package/lib/services/ux-app-shell.service.d.ts +5 -5
- package/lib/services/ux-app-shell.service.d.ts.map +1 -1
- package/lib/services/ux-dynamic-component/ux-dynamic-component.service.d.ts +3 -7
- package/lib/services/ux-dynamic-component/ux-dynamic-component.service.d.ts.map +1 -1
- package/lib/services/ux-dynamic-menu/ux-dynamic-menu.service.d.ts +6 -6
- package/lib/services/ux-dynamic-menu/ux-dynamic-menu.service.d.ts.map +1 -1
- package/lib/services/ux-error-feedback/ux-error-feedback.service.d.ts.map +1 -1
- package/package.json +2 -2
- package/esm2022/lib/services/i18n/i18n.service.mock.mjs +0 -38
- package/lib/services/i18n/i18n.service.mock.d.ts +0 -20
- package/lib/services/i18n/i18n.service.mock.d.ts.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
var COMPODOC_SEARCH_INDEX = {
|
|
2
|
-
"index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/classes/ActivatedRouteAction.html",[0,0.857,1,2.981]],["body/classes/ActivatedRouteAction.html",[1,3.883,2,1.154,3,0.139,4,0.122,5,2.533,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,15,6.35,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,22,5.335,23,0.01,24,0.01]],["title/classes/AddApiQueueItemAction.html",[0,0.857,25,3.236]],["body/classes/AddApiQueueItemAction.html",[2,1.135,3,0.137,4,0.12,5,2.491,6,1.913,7,1.786,8,0.189,9,1.252,10,1.844,11,2.725,12,0.346,13,0.602,14,1.982,16,0.379,17,0.011,18,0.3,19,0.3,20,1.172,21,1.029,23,0.01,24,0.01,25,4.145,26,5.701,27,5.246]],["title/classes/AddAppLoadedConfigModulesAction.html",[0,0.857,28,3.236]],["body/classes/AddAppLoadedConfigModulesAction.html",[2,1.135,3,0.137,4,0.12,5,2.491,6,1.913,7,1.786,8,0.189,9,1.252,10,1.844,11,2.725,12,0.346,13,0.602,14,1.982,16,0.379,17,0.011,18,0.3,19,0.3,20,1.172,21,1.029,23,0.01,24,0.01,26,5.701,28,4.145,29,5.246]],["title/interceptors/AddLangParamInterceptor.html",[30,2.223,31,3.577]],["body/interceptors/AddLangParamInterceptor.html",[3,0.126,4,0.111,8,0.174,12,0.269,13,0.556,16,0.453,17,0.011,18,0.358,19,0.358,23,0.009,24,0.009,30,2.63,31,4.232,32,2.763,33,4.844,34,3.526,35,4.844,36,1.83,37,4.844,38,3.526,39,3.828,40,3.828,41,3.526,42,4.844,43,4.844,44,2.763,45,3.526,46,4.844,47,0.97,48,3.403,49,4.844,50,5.059,51,3.526,52,3.576,53,3.248,54,3.576,55,3.526,56,0.724,57,1.354]],["title/injectables/ApiQueueService.html",[58,1.348,59,3.236]],["body/injectables/ApiQueueService.html",[3,0.062,4,0.054,7,0.804,8,0.085,12,0.291,13,0.271,16,0.46,17,0.011,18,0.364,19,0.364,20,0.833,21,0.732,23,0.005,24,0.005,36,2.297,38,1.719,44,2.638,45,3.825,47,0.578,53,1.223,56,0.987,57,1.9,59,1.866,60,0.752,61,2.063,62,2.362,63,3.259,64,4.04,65,3.259,66,3.259,67,3.259,68,3.259,69,4.04,70,3.259,71,1.719,72,2.025,73,3.259,74,2.302,75,2.852,76,2.362,77,1.295,78,6.48,79,5.255,80,1.866,81,6.202,82,2.362,83,2.948,84,3.731,85,4.432,86,3.731,87,5.313,88,1.293,89,3.731,90,2.376,91,2.362,92,1.282,93,3.137,94,5.564,95,2.063,96,2.362,97,2.395,98,4.04,99,2.362,100,2.716,101,1.347,102,2.362,103,2.362,104,2.362,105,2.362,106,2.362,107,2.063,108,4.152,109,2.716,110,3.259,111,2.063,112,2.063,113,2.063,114,2.063,115,2.063,116,1.504,117,2.063,118,2.063,119,2.063,120,1.42,121,2.362,122,2.244,123,2.063,124,2.362,125,1.719]],["title/classes/ApiQueueServiceMock.html",[0,0.857,126,3.577]],["body/classes/ApiQueueServiceMock.html",[2,0.808,3,0.098,4,0.086,8,0.135,12,0.225,13,0.603,16,0.38,17,0.012,18,0.3,19,0.3,20,0.835,21,0.733,23,0.008,24,0.008,36,1.412,44,3.001,45,3.83,47,0.814,53,1.936,56,1.132,57,1.947,59,2.953,61,3.265,63,5.318,64,5.318,65,4.596,66,5.318,67,4.596,68,5.318,69,5.318,70,5.318,77,1.032,81,4.811,85,2.38,88,1.702,94,4.596,95,3.265,97,2.398,98,3.265,100,2.721,107,3.265,108,5.221,109,3.83,110,4.596,111,3.265,112,3.265,113,3.265,114,3.265,115,3.265,116,2.38,117,3.265,118,3.265,119,3.265,120,2.248,126,3.265,127,3.738,128,1.317]],["title/classes/AsyncStorageService.html",[0,0.857,129,2.981]],["body/classes/AsyncStorageService.html",[0,0.511,2,0.528,3,0.064,4,0.056,8,0.088,12,0.307,16,0.517,17,0.012,18,0.409,19,0.381,21,1.405,23,0.006,24,0.006,36,2.33,47,0.593,56,1.05,57,1.964,77,1.508,88,1.321,90,1.554,92,2.565,116,3.407,120,1.468,122,1.468,128,0.86,129,1.776,130,2.132,131,1.928,132,2.132,133,4.674,134,4.107,135,1.264,136,2.132,137,1.928,138,2.132,139,1.554,140,6.527,141,3.439,142,2.565,143,3.025,144,3.679,145,4.228,146,2.597,147,4.725,148,3.824,149,3.942,150,4.228,151,4.228,152,3.879,153,2.132,154,2.132,155,1.655,156,2.132,157,3.025,158,2.243,159,2.597,160,3.344,161,1.928,162,2.132,163,2.132]],["title/classes/AsyncStorageServiceMock.html",[0,0.857,164,3.577]],["body/classes/AsyncStorageServiceMock.html",[2,1.053,3,0.127,4,0.111,8,0.175,17,0.012,18,0.398,23,0.009,24,0.009,47,0.974,56,1.187,57,2.059,77,0.955,88,1.758,128,1.715,129,3.544,130,4.253,141,5.072,142,3.782,143,5.506,144,3.974,145,5.506,164,4.253,165,4.869]],["title/interceptors/CachePreventionInterceptor.html",[30,2.223,166,3.577]],["body/interceptors/CachePreventionInterceptor.html",[3,0.144,4,0.126,8,0.199,12,0.237,16,0.399,17,0.011,18,0.315,19,0.315,23,0.01,24,0.01,32,3.149,47,1.054,48,3.696,51,4.018,52,3.884,53,3.527,54,3.884,55,4.018,56,0.825,57,1.543,166,4.822,167,5.521,168,4.822]],["title/injectables/CoreAppEffects.html",[58,1.348,169,3.577]],["body/injectables/CoreAppEffects.html",[1,2.113,3,0.076,4,0.066,8,0.105,9,0.831,12,0.226,13,0.333,15,3.822,16,0.21,17,0.012,18,0.25,19,0.166,20,1.176,21,1.033,23,0.006,24,0.006,50,4.268,57,1.223,60,0.925,97,2.867,169,2.536,170,2.903,171,4.376,172,4.376,173,2.903,174,5.267,175,4.376,176,3.822,177,3.822,178,3.822,179,5.267,180,4.376,181,2.903,182,4.376,183,4.376,184,2.903,185,4.376,186,2.267,187,2.294,188,2.903,189,2.903,190,1.969,191,2.903,192,2.968,193,2.903,194,2.903,195,2.903,196,2.903,197,2.903,198,2.903,199,2.903,200,2.903,201,2.113,202,2.903,203,2.903,204,2.294,205,2.903,206,2.903,207,2.536,208,2.903,209,2.294,210,2.903,211,2.903,212,4.376,213,4.376,214,5.267,215,2.903,216,6.612,217,2.903,218,3.822,219,2.294,220,2.536,221,2.903,222,2.536,223,2.536,224,2.903,225,2.903,226,4.376,227,4.376,228,2.903,229,4.376,230,2.294,231,4.376,232,3.822,233,4.376,234,2.903,235,1.323]],["title/modules/CoreModule.html",[186,2.121,236,3.236]],["body/modules/CoreModule.html",[3,0.136,4,0.119,12,0.224,16,0.377,17,0.011,18,0.298,19,0.298,23,0.01,24,0.01,47,0.808,56,0.982,77,1.29,236,4.122,237,2.976,238,4.557,239,4.557,240,4.186,241,4.557,242,5.217,243,3.798,244,5.194,245,5.686,246,4.557,247,4.122,248,3.257,249,4.122,250,5.217,251,5.217,252,5.217,253,5.217]],["title/interceptors/CorsSecurityInterceptor.html",[30,2.223,254,3.577]],["body/interceptors/CorsSecurityInterceptor.html",[3,0.144,4,0.126,8,0.199,12,0.237,16,0.399,17,0.011,18,0.315,19,0.315,23,0.01,24,0.01,32,3.149,44,3.149,47,1.054,48,3.696,52,3.884,53,3.527,54,3.884,56,0.825,57,1.543,254,4.822,255,5.521,256,5.521,257,4.018]],["title/interceptors/CsrfPreventionInterceptor.html",[30,2.223,258,3.577]],["body/interceptors/CsrfPreventionInterceptor.html",[3,0.144,4,0.126,8,0.199,12,0.237,16,0.399,17,0.011,18,0.315,19,0.315,23,0.01,24,0.01,32,3.149,44,3.149,47,1.054,48,3.696,52,3.884,53,3.527,54,3.884,56,0.825,57,1.543,168,4.822,257,4.018,258,4.822,259,5.521]],["title/classes/EmptyApiQueueAction.html",[0,0.857,260,3.577]],["body/classes/EmptyApiQueueAction.html",[2,1.173,3,0.142,4,0.124,5,2.576,6,1.979,7,1.847,8,0.195,9,1.279,10,1.883,11,2.767,12,0.328,13,0.622,14,2.049,16,0.392,17,0.012,18,0.31,19,0.31,20,1.212,21,1.064,23,0.01,24,0.01,260,4.74,261,5.426]],["title/classes/ErrorSubClass.html",[0,0.857,262,3.236]],["body/classes/ErrorSubClass.html",[2,1.017,3,0.123,4,0.108,8,0.169,9,1.167,10,2.234,12,0.323,13,0.539,16,0.34,17,0.012,18,0.391,19,0.391,23,0.009,24,0.009,77,1.568,230,4.857,262,3.714,263,4.106,264,4.986,265,5.37,266,4.106,267,5.37,268,5.37,269,3.001]],["title/interceptors/EuLoginSessionTimeoutHandlingInterceptor.html",[30,2.223,270,3.577]],["body/interceptors/EuLoginSessionTimeoutHandlingInterceptor.html",[3,0.142,4,0.124,8,0.195,12,0.232,16,0.392,17,0.011,18,0.31,19,0.31,23,0.01,24,0.01,32,3.095,44,3.095,47,1.043,48,3.657,52,3.842,53,3.49,54,3.842,56,0.811,57,1.517,257,3.95,270,4.74,271,5.426,272,5.426,273,3.95,274,4.74,275,5.426]],["title/classes/EuiCoreRootGuardClass.html",[0,0.857,276,3.577]],["body/classes/EuiCoreRootGuardClass.html",[2,1.342,3,0.162,4,0.142,13,0.838,17,0.011,23,0.011,24,0.011,238,5.421,239,5.421,276,5.421]],["title/classes/EuiError.html",[0,0.857,277,3.577]],["body/classes/EuiError.html",[2,1.012,3,0.122,4,0.107,8,0.168,9,1.163,10,2.232,12,0.323,13,0.536,16,0.338,17,0.012,18,0.39,19,0.39,23,0.009,24,0.009,77,1.566,128,1.648,230,4.842,262,3.696,263,4.086,264,4.974,265,5.352,266,4.086,267,5.352,268,5.352,269,2.684,277,4.086]],["title/injectables/EuiPermissionService.html",[58,1.348,278,3.236]],["body/injectables/EuiPermissionService.html",[3,0.077,4,0.067,8,0.106,12,0.296,13,0.338,16,0.498,17,0.011,18,0.38,19,0.38,23,0.006,24,0.006,36,1.672,47,0.685,56,0.994,57,1.237,60,0.939,72,2.403,74,1.939,75,2.403,77,1.473,85,1.878,88,0.824,97,2.423,101,1.682,125,3.222,128,1.039,135,1.527,209,3.498,219,4.669,246,2.575,247,2.33,278,2.33,279,2.948,280,2.33,281,4.427,282,4.427,283,4.427,284,3.197,285,2.194,286,2.662,287,2.33,288,1.682,289,2.948,290,2.948,291,6.558,292,6.199,293,2.948,294,2.948,295,2.948,296,2.948,297,4.427,298,2.575,299,3.498,300,2.948,301,2.575,302,2.575,303,2.948,304,5.316,305,2.948,306,2.948,307,2.948,308,2.575,309,2.948,310,2.575,311,2.948,312,5.004,313,2.948,314,2.948,315,4.427,316,2.948,317,2,318,4.427,319,2.524,320,2.948,321,5.161,322,2.948,323,2.948,324,2.33]],["title/injectables/GlobalErrorHandler.html",[58,1.348,325,3.577]],["body/injectables/GlobalErrorHandler.html",[3,0.138,4,0.121,8,0.191,12,0.285,13,0.608,16,0.48,17,0.011,18,0.379,19,0.379,23,0.01,24,0.01,47,1.028,56,0.793,60,1.689,74,3.177,88,1.483,128,1.869,235,3.027,325,4.634,326,5.305,327,5.305,328,5.305,329,6.642,330,5.305,331,5.305]],["title/interceptors/HttpErrorHandlerInterceptor.html",[30,2.223,332,3.577]],["body/interceptors/HttpErrorHandlerInterceptor.html",[3,0.13,4,0.114,8,0.179,12,0.273,13,0.57,16,0.46,17,0.011,18,0.364,19,0.364,23,0.009,24,0.009,32,2.835,47,0.987,48,3.46,51,3.619,52,3.636,53,3.302,54,3.636,55,3.619,56,0.743,57,1.39,235,2.266,248,2.463,332,4.342,333,4.342,334,4.971,335,4.342,336,5.568,337,5.865,338,7.422]],["title/injectables/I18nLoader.html",[58,1.348,339,3.577]],["body/injectables/I18nLoader.html",[3,0.089,4,0.078,8,0.123,10,2.142,12,0.289,13,0.393,16,0.487,17,0.012,18,0.385,19,0.385,23,0.007,24,0.007,34,4.224,36,1.868,39,3.908,45,2.495,47,0.766,56,1.049,57,1.883,60,1.091,73,4.32,74,2.783,77,1.246,80,2.708,88,0.958,93,3.354,122,2.061,248,1.698,339,2.994,340,2.495,341,3.908,342,5.803,343,4.32,344,4.946,345,4.946,346,3.427,347,5.55,348,2.994,349,3.908,350,6.132,351,3.908,352,2.994,353,4.569,354,2.708,355,3.427,356,3.427,357,2.708,358,2.708,359,3.427,360,3.427,361,3.427,362,3.427,363,2.495,364,2.708,365,3.427,366,2.708,367,3.427]],["title/modules/I18nModule.html",[186,2.121,368,3.236]],["body/modules/I18nModule.html",[3,0.149,4,0.131,17,0.011,23,0.01,24,0.01,36,2.161,47,0.885,56,0.855,186,3.605,237,3.263,240,3.643,244,4.52,245,5.498,368,5.498,369,5.72,370,4.52,371,4.997,372,4.997,373,4.164,374,4.164]],["title/classes/I18nResourceImpl.html",[0,0.857,353,2.777]],["body/classes/I18nResourceImpl.html",[2,0.772,3,0.093,4,0.082,8,0.129,10,1.989,12,0.277,13,0.584,16,0.468,17,0.011,18,0.37,19,0.391,23,0.007,24,0.007,34,4.321,36,2.445,39,4.023,40,2.82,47,0.788,56,0.887,77,1.517,88,0.998,92,3.514,97,1.627,100,2.598,150,2.82,158,1.695,353,4.026,354,2.82,358,5.408,363,4.982,375,3.569,376,5.092,377,5.092,378,5.092,379,3.569,380,5.936,381,5.092,382,3.569,383,5.092,384,3.569,385,5.185,386,3.569,387,5.092,388,3.569,389,3.118,390,3.118,391,3.569,392,5.092,393,3.118,394,3.569,395,3.569,396,3.118,397,3.569,398,4.448]],["title/injectables/I18nService.html",[58,1.348,399,2.981]],["body/injectables/I18nService.html",[3,0.062,4,0.055,8,0.086,10,1.479,12,0.315,13,0.274,16,0.531,17,0.012,18,0.42,19,0.399,23,0.006,24,0.006,36,1.423,41,1.741,47,0.583,50,3.851,56,1.02,57,1.907,60,0.762,72,2.045,74,2.318,75,2.045,77,1.301,83,1.889,88,1.053,101,1.364,109,1.741,116,1.523,125,1.741,128,0.842,148,1.239,152,3.462,158,1.789,186,2.741,204,1.889,232,2.089,243,4.19,248,2.31,269,2.804,284,3.677,285,1.867,286,2.266,299,1.889,317,2.555,319,2.214,341,2.977,348,2.089,349,4.549,350,2.089,351,1.889,399,1.741,400,2.089,401,2.391,402,3.291,403,3.291,404,4.073,405,2.391,406,3.394,407,5.291,408,2.089,409,2.089,410,2.391,411,2.391,412,2.743,413,1.741,414,1.741,415,1.889,416,1.889,417,1.889,418,2.391,419,3.768,420,2.089,421,2.391,422,4.073,423,2.089,424,1.741,425,2.089,426,2.089,427,3.684,428,1.889,429,1.741,430,2.089,431,2.089,432,2.089,433,3.291,434,2.089,435,2.089,436,3.291,437,2.089,438,1.622,439,1.889,440,2.391,441,2.977]],["title/injectables/I18nServiceMock.html",[58,1.348,442,3.577]],["body/injectables/I18nServiceMock.html",[3,0.087,4,0.076,8,0.12,10,1.358,12,0.269,13,0.557,16,0.454,17,0.012,18,0.41,19,0.359,23,0.007,24,0.007,36,1.263,47,0.752,56,1.073,57,2.007,60,1.065,77,0.953,83,2.641,88,0.934,101,1.907,116,2.129,125,2.433,128,1.178,158,1.587,186,3.253,204,2.641,243,2.433,248,1.656,269,2.128,284,3.441,285,2.407,286,2.921,299,2.641,319,2.306,341,4.521,349,3.838,399,2.433,402,4.243,403,4.998,404,4.998,406,2.433,412,2.433,420,2.92,423,2.92,424,2.433,425,2.92,426,2.92,427,4.521,428,2.641,429,2.433,430,2.92,431,2.92,432,2.92,433,4.243,434,2.92,435,2.92,436,4.243,437,2.92,438,2.267,439,2.641,441,5.499,442,2.92,443,3.343,444,4.243,445,4.243,446,4.858,447,3.343,448,3.343,449,3.343,450,3.343]],["title/classes/InitStoreAction.html",[0,0.857,451,3.236]],["body/classes/InitStoreAction.html",[2,1.135,3,0.137,4,0.12,5,2.491,6,1.913,7,1.786,8,0.189,9,1.252,10,1.844,11,2.725,12,0.346,13,0.602,14,1.982,16,0.379,17,0.011,18,0.3,19,0.3,20,1.172,21,1.029,23,0.01,24,0.01,26,5.701,451,4.145,452,5.246]],["title/interfaces/LoadedResources.html",[453,2.608,454,3.577]],["body/interfaces/LoadedResources.html",[3,0.141,4,0.123,8,0.194,9,1.274,12,0.313,17,0.011,19,0.383,23,0.01,24,0.01,92,3.644,93,4.552,97,3.059,340,3.927,358,5.774,454,4.713,455,3.244,456,5.319,457,7.308]],["title/interfaces/LoadedResourcesError.html",[453,2.608,458,3.577]],["body/interfaces/LoadedResourcesError.html",[3,0.148,4,0.13,8,0.205,9,1.316,12,0.297,17,0.011,23,0.01,24,0.01,77,1.36,235,3.409,340,4.139,353,4.702,363,5.445,455,3.419,458,4.967]],["title/injectables/LocalForageService.html",[58,1.348,459,3.577]],["body/injectables/LocalForageService.html",[3,0.075,4,0.065,8,0.103,9,0.821,12,0.292,13,0.328,16,0.475,17,0.012,18,0.431,19,0.375,20,0.639,21,1.379,23,0.006,24,0.006,36,2.483,47,0.67,56,1.02,57,1.965,60,0.911,74,1.895,77,1.482,88,1.209,90,1.821,92,2.833,116,3.705,120,1.72,122,1.72,128,1.007,129,2.081,133,3.779,134,2.755,135,2.241,141,3.798,142,2.833,143,3.418,144,3.564,145,3.418,146,1.939,148,3.8,149,4.238,150,4.597,151,4.597,153,2.498,154,2.498,155,1.939,156,2.498,157,3.418,158,2.054,159,1.939,160,2.498,240,2.755,248,1.417,288,2.467,335,2.498,459,3.779,460,2.498,461,2.86,462,5.459,463,2.86,464,2.86,465,2.86,466,2.86]],["title/injectables/LocalStorageService.html",[58,1.348,467,3.577]],["body/injectables/LocalStorageService.html",[3,0.096,4,0.084,8,0.132,9,0.985,12,0.296,13,0.42,16,0.473,17,0.012,18,0.444,19,0.374,20,0.819,21,1.356,23,0.008,24,0.008,36,2.474,47,0.803,56,0.979,60,1.167,74,2.273,77,1.479,88,1.451,90,2.334,92,3.27,101,2.091,120,2.204,122,2.204,128,1.291,131,2.896,134,4.172,135,2.688,139,2.334,142,2.817,144,3.436,146,2.486,148,3.719,149,4.086,155,2.486,159,2.486,190,2.486,235,1.671,240,3.305,287,2.896,288,2.091,460,3.202,467,4.533,468,3.666,469,4.76]],["title/injectables/LocaleService.html",[58,1.348,470,3.236]],["body/injectables/LocaleService.html",[3,0.08,4,0.07,8,0.11,12,0.32,13,0.351,16,0.539,17,0.012,18,0.399,19,0.399,23,0.007,24,0.007,47,0.705,56,1.044,57,1.799,60,0.975,71,2.229,72,2.472,74,1.995,75,1.662,77,1.323,85,1.95,88,1.52,128,1.079,148,1.586,152,1.842,158,1.454,190,3.089,269,2.638,280,2.42,284,4.056,285,2.257,286,2.739,288,2.598,317,3.089,319,2.859,324,2.42,364,2.42,370,3.599,399,3.315,406,3.315,408,3.978,413,2.229,414,2.229,415,2.42,416,2.42,417,2.42,444,3.978,470,2.42,471,2.675,472,3.978,473,4.75,474,4.555,475,4.555,476,3.978,477,5.26,478,2.675,479,2.675,480,4.758,481,2.675,482,2.675,483,2.675,484,3.063,485,3.063]],["title/injectables/LocaleServiceMock.html",[58,1.348,486,3.577]],["body/injectables/LocaleServiceMock.html",[3,0.113,4,0.099,8,0.155,12,0.301,13,0.495,16,0.507,17,0.012,18,0.401,19,0.401,23,0.008,24,0.008,47,0.899,56,1.095,57,1.835,60,1.374,77,1.378,85,2.748,88,1.624,128,1.52,269,1.891,284,3.949,285,2.878,286,3.493,319,2.758,470,3.41,472,5.074,473,5.735,476,3.77,478,3.77,479,3.77,480,5.55,481,3.77,486,3.77,487,4.316,488,4.316]],["title/modules/LogModule.html",[186,2.121,489,3.236]],["body/modules/LogModule.html",[3,0.121,4,0.106,12,0.261,16,0.44,17,0.011,18,0.348,19,0.348,20,1.36,21,1.194,23,0.009,24,0.009,36,1.749,47,0.717,56,0.91,74,2.667,186,3.154,237,3.473,240,3.877,241,4.046,244,4.811,245,3.66,248,3.017,288,2.642,366,3.66,371,5.318,372,5.318,373,4.432,374,3.371,412,3.371,438,3.141,489,3.66,490,4.632,491,4.632,492,6.31,493,4.632,494,4.046,495,4.632,496,5.318,497,4.632]],["title/injectables/LogService.html",[58,1.348,74,1.794]],["body/injectables/LogService.html",[3,0.11,4,0.097,8,0.152,12,0.245,13,0.484,16,0.413,17,0.011,18,0.415,19,0.371,20,1.278,21,0.828,23,0.008,24,0.008,36,2.161,40,3.334,47,0.886,56,0.63,60,1.344,74,1.849,77,1.365,97,2.608,100,3.072,128,1.487,135,2.186,144,3.263,288,2.407,310,3.686,354,4.521,357,3.334,498,4.22,499,4.22,500,3.686,501,4.22,502,4.22,503,4.22,504,4.22,505,3.686,506,7.804,507,4.997,508,4.22,509,5.721,510,5.721,511,4.997,512,4.997,513,4.22,514,5.721,515,4.22,516,3.686,517,4.22,518,4.22]],["title/classes/LogServiceMock.html",[0,0.857,519,3.577]],["body/classes/LogServiceMock.html",[2,1.284,3,0.155,4,0.136,8,0.214,17,0.011,23,0.01,24,0.01,47,1.101,56,0.887,128,2.091,507,6.656,519,5.184,520,5.935,521,5.935]],["title/interfaces/ModuleLoadEvent.html",[453,2.608,522,3.577]],["body/interfaces/ModuleLoadEvent.html",[3,0.142,4,0.125,8,0.196,9,1.283,12,0.315,17,0.012,18,0.419,19,0.386,23,0.01,24,0.01,77,1.326,97,3.081,141,5.347,235,3.348,400,4.767,455,3.282,522,4.767]],["title/interceptors/OpenIdConnectInterceptor.html",[30,2.223,523,3.577]],["body/interceptors/OpenIdConnectInterceptor.html",[3,0.126,4,0.11,8,0.174,9,1.186,12,0.268,13,0.717,16,0.348,17,0.011,18,0.275,19,0.275,20,1.396,21,1.226,23,0.009,24,0.009,32,2.749,44,2.749,47,0.967,48,3.392,52,3.564,53,3.237,54,3.564,56,0.72,57,1.347,218,4.21,257,3.508,269,2.111,523,4.21,524,3.508,525,4.82,526,6.249,527,6.249,528,5.479,529,6.249,530,4.548,531,4.21]],["title/injectables/OpenIdConnectService.html",[58,1.348,532,3.236]],["body/injectables/OpenIdConnectService.html",[3,0.153,4,0.134,8,0.211,13,0.81,17,0.011,23,0.01,24,0.01,47,1.093,56,0.876,57,1.638,60,1.867,524,4.267,532,4.631,533,5.12,534,6.621]],["title/classes/OpenIdConnectServiceMock.html",[0,0.857,535,3.577]],["body/classes/OpenIdConnectServiceMock.html",[2,1.268,3,0.153,4,0.134,8,0.211,17,0.011,23,0.01,24,0.01,47,1.093,56,0.876,57,1.638,128,2.065,524,4.267,532,4.631,534,6.621,535,5.12,536,5.862]],["title/interfaces/OpenIdConnectUserDetails.html",[453,2.608,537,3.577]],["body/interfaces/OpenIdConnectUserDetails.html",[3,0.119,4,0.104,8,0.164,9,1.145,12,0.329,17,0.012,19,0.47,23,0.009,24,0.009,77,1.615,455,2.745,524,3.323,533,3.987,537,3.987,538,6.753,539,6.753,540,6.753,541,6.753,542,6.753,543,6.753]],["title/classes/RemoveApiQueueItemAction.html",[0,0.857,544,3.236]],["body/classes/RemoveApiQueueItemAction.html",[2,1.154,3,0.139,4,0.122,5,2.533,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,77,1.426,544,4.215,545,5.335]],["title/interfaces/ResourceError.html",[453,2.608,546,3.577]],["body/interfaces/ResourceError.html",[3,0.139,4,0.122,8,0.192,9,1.265,12,0.311,17,0.011,19,0.435,23,0.01,24,0.01,77,1.308,97,3.038,235,3.313,340,3.883,353,4.52,363,5.292,455,3.208,546,4.66,547,7.27]],["title/classes/RouterMock.html",[0,0.857,548,3.577]],["body/classes/RouterMock.html",[2,0.874,3,0.105,4,0.092,8,0.145,9,1.054,10,2.069,12,0.272,13,0.637,16,0.401,17,0.012,18,0.317,19,0.317,20,1.418,21,1.245,23,0.008,24,0.008,47,0.86,56,1.021,77,1.452,88,1.552,192,3.767,373,2.941,548,3.529,549,4.04,550,5.554,551,5.554,552,5.554,553,6.347,554,5.554,555,5.554,556,6.347,557,4.04,558,4.04,559,4.04,560,4.04,561,5.554,562,4.04,563,4.851,564,4.04]],["title/injectables/SessionStorageService.html",[58,1.348,565,3.577]],["body/injectables/SessionStorageService.html",[3,0.096,4,0.084,8,0.132,9,0.985,12,0.296,13,0.42,16,0.473,17,0.012,18,0.444,19,0.374,20,0.819,21,1.356,23,0.008,24,0.008,36,2.474,47,0.803,56,0.979,60,1.167,74,2.273,77,1.479,88,1.451,90,2.334,92,3.27,101,2.091,120,2.204,122,2.204,128,1.291,131,2.896,134,4.172,135,2.688,139,2.334,142,2.817,144,3.436,146,2.486,148,3.719,149,4.086,155,2.486,159,2.486,190,2.486,235,1.671,240,3.305,273,4.385,287,2.896,288,2.091,565,4.533,566,3.666,567,3.666]],["title/classes/StorageService.html",[0,0.857,139,2.608]],["body/classes/StorageService.html",[0,0.69,2,0.713,3,0.086,4,0.075,8,0.119,12,0.306,16,0.517,17,0.012,18,0.419,19,0.379,21,1.359,23,0.007,24,0.007,36,2.357,47,0.744,56,1.035,77,1.51,88,1.587,90,2.099,92,3.081,101,1.88,120,1.982,122,1.982,132,2.879,134,4.41,135,1.708,136,2.879,137,2.605,138,2.879,139,2.099,140,6.798,142,2.61,144,3.784,146,3.261,148,3.797,149,3.849,152,3.989,155,2.236,158,1.565,159,3.261,161,2.605,162,2.879,163,2.879,190,2.236,235,1.502,568,3.297]],["title/classes/StorageServiceMock.html",[0,0.857,569,3.577]],["body/classes/StorageServiceMock.html",[2,1.173,3,0.142,4,0.124,8,0.195,17,0.012,18,0.418,23,0.01,24,0.01,47,1.043,56,1.145,77,1.064,88,1.883,128,1.912,139,3.455,142,3.977,144,4.179,569,4.74,570,5.426]],["title/classes/StoreMock.html",[0,0.857,571,3.577]],["body/classes/StoreMock.html",[2,1.075,3,0.13,4,0.114,8,0.179,9,1.21,12,0.213,13,0.731,16,0.359,17,0.012,18,0.284,19,0.284,20,1.11,21,0.975,23,0.009,24,0.009,47,0.987,56,1.109,88,1.39,319,3.027,571,4.342,572,4.971,573,7.037,574,5.56,575,7.037,576,5.037,577,4.971,578,4.971,579,4.342]],["title/injectables/StoreService.html",[58,1.348,72,2.223]],["body/injectables/StoreService.html",[3,0.094,4,0.082,7,1.22,8,0.129,12,0.305,13,0.411,16,0.515,17,0.012,18,0.407,19,0.407,23,0.007,24,0.007,47,0.79,48,2.771,56,1.065,57,1.001,60,1.141,71,2.608,72,1.945,74,2.84,75,3.72,77,1.272,88,1.663,148,1.856,158,2.424,269,2.237,285,2.53,319,1.701,574,4.034,576,4.034,580,3.129,581,4.46,582,4.46,583,5.196,584,3.583,585,4.46,586,3.583,587,3.583,588,5.106,589,4.46,590,3.583,591,5.106,592,5.106,593,3.129,594,4.46,595,3.716,596,4.034,597,3.583,598,5.106,599,4.46,600,2.608,601,3.583,602,3.583]],["title/injectables/StoreServiceMock.html",[58,1.348,603,3.577]],["body/injectables/StoreServiceMock.html",[3,0.122,4,0.107,8,0.168,12,0.2,13,0.703,16,0.338,17,0.012,18,0.267,19,0.267,23,0.009,24,0.009,47,0.949,56,1.154,60,1.49,72,2.539,88,2.027,128,1.648,285,3.386,319,2.221,574,5.4,576,5.4,581,5.969,582,5.352,583,5.969,593,4.086,594,5.352,595,4.46,596,4.842,603,4.086,604,4.677]],["title/interfaces/TimeZone.html",[453,2.608,605,2.981]],["body/interfaces/TimeZone.html",[3,0.148,4,0.129,8,0.204,9,1.311,12,0.296,17,0.011,18,0.426,23,0.01,24,0.01,77,1.525,455,3.399,605,4.114,606,3.224,607,4.937,608,7.461]],["title/directives/TranslateMockDirective.html",[609,3.577,610,3.236]],["body/directives/TranslateMockDirective.html",[3,0.144,4,0.126,6,2.013,8,0.199,12,0.292,13,0.633,16,0.399,17,0.011,18,0.315,19,0.315,23,0.01,24,0.01,429,4.018,579,4.822,610,4.362,611,5.521,612,4.018,613,5.521,614,4.822,615,6.809,616,6.809,617,5.521,618,5.948,619,5.521]],["title/modules/TranslateMockModule.html",[186,2.121,620,3.236]],["body/modules/TranslateMockModule.html",[3,0.159,4,0.139,17,0.011,23,0.011,24,0.011,237,3.472,610,5.708,612,4.431,620,4.81,621,6.087,622,5.708,623,6.087]],["title/pipes/TranslateMockPipe.html",[424,2.981,622,3.236]],["body/pipes/TranslateMockPipe.html",[3,0.148,4,0.13,12,0.244,16,0.411,17,0.011,18,0.396,19,0.325,23,0.01,24,0.01,47,0.88,56,0.85,77,1.467,429,4.139,612,4.139,614,4.967,622,4.493,624,5.686,625,5.686,626,5.686,627,4.967]],["title/classes/TranslateServiceMock.html",[0,0.857,628,3.577]],["body/classes/TranslateServiceMock.html",[2,0.613,3,0.074,4,0.065,8,0.102,9,0.816,12,0.333,16,0.45,17,0.012,18,0.355,19,0.355,20,1.603,21,1.408,23,0.006,24,0.006,34,3.128,47,0.665,56,1.048,57,1.831,77,1.548,88,1.451,148,1.468,192,3.928,249,3.395,343,4.533,445,3.753,530,4.769,612,2.063,628,2.475,629,4.297,630,4.297,631,4.297,632,4.297,633,4.297,634,4.297,635,4.297,636,4.297,637,4.297,638,4.297,639,5.19,640,5.19,641,4.297,642,4.297,643,2.834,644,2.834,645,2.834,646,2.834,647,2.834,648,2.834,649,2.834,650,2.834,651,2.834,652,2.834,653,2.475,654,2.834,655,2.834,656,2.834]],["title/classes/UpdateAppConnectionAction.html",[0,0.857,201,2.981]],["body/classes/UpdateAppConnectionAction.html",[2,1.154,3,0.139,4,0.122,5,2.533,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,97,3.313,201,3.883,657,5.335]],["title/classes/UpdateAppStatusAction.html",[0,0.857,658,3.236]],["body/classes/UpdateAppStatusAction.html",[2,1.154,3,0.139,4,0.122,5,2.533,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,77,1.426,658,4.215,659,5.335]],["title/classes/UpdateAppVersionAction.html",[0,0.857,660,3.236]],["body/classes/UpdateAppVersionAction.html",[2,1.154,3,0.139,4,0.122,5,2.533,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,77,1.426,660,4.215,661,5.335]],["title/classes/UpdateCurrentModuleAction.html",[0,0.857,662,3.236]],["body/classes/UpdateCurrentModuleAction.html",[2,1.154,3,0.139,4,0.122,5,2.533,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,77,1.426,662,4.215,663,5.335]],["title/classes/UpdateI18nStateAction.html",[0,0.857,664,3.236]],["body/classes/UpdateI18nStateAction.html",[2,1.154,3,0.139,4,0.122,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,441,5.744,664,4.215,665,4.215,666,5.335]],["title/classes/UpdateLocaleStateAction.html",[0,0.857,667,3.236]],["body/classes/UpdateLocaleStateAction.html",[2,1.154,3,0.139,4,0.122,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,480,5.744,667,4.215,668,4.215,669,5.335]],["title/classes/UpdateNotificationsListAction.html",[0,0.857,670,3.236]],["body/classes/UpdateNotificationsListAction.html",[2,1.173,3,0.142,4,0.124,6,1.979,7,1.847,8,0.195,9,1.279,10,1.883,11,2.767,12,0.328,13,0.622,14,2.049,16,0.392,17,0.012,18,0.31,19,0.31,20,1.212,21,1.064,23,0.01,24,0.01,670,4.287,671,4.287,672,5.426]],["title/classes/UpdateUserDashboardAction.html",[0,0.857,673,3.236]],["body/classes/UpdateUserDashboardAction.html",[2,1.173,3,0.142,4,0.124,6,1.979,7,1.847,8,0.195,9,1.279,10,1.883,11,2.767,12,0.328,13,0.622,14,2.049,16,0.392,17,0.012,18,0.31,19,0.31,20,1.212,21,1.064,23,0.01,24,0.01,673,4.287,674,3.263,675,5.426]],["title/classes/UpdateUserDetailsAction.html",[0,0.857,676,3.236]],["body/classes/UpdateUserDetailsAction.html",[2,1.154,3,0.139,4,0.122,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,674,3.208,676,4.215,677,7.27,678,5.335]],["title/classes/UpdateUserPreferencesAction.html",[0,0.857,679,3.236]],["body/classes/UpdateUserPreferencesAction.html",[2,1.154,3,0.139,4,0.122,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,674,3.208,679,4.215,680,6.35,681,5.335]],["title/classes/UpdateUserRightsAction.html",[0,0.857,682,3.236]],["body/classes/UpdateUserRightsAction.html",[2,1.154,3,0.139,4,0.122,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,321,6.35,674,3.208,682,4.215,683,5.335]],["title/classes/UpdateUserStateAction.html",[0,0.857,684,3.577]],["body/classes/UpdateUserStateAction.html",[2,1.154,3,0.139,4,0.122,6,1.945,7,1.816,8,0.192,9,1.265,10,1.863,11,2.746,12,0.326,13,0.612,14,2.015,16,0.385,17,0.011,18,0.305,19,0.305,20,1.191,21,1.047,23,0.01,24,0.01,674,3.208,684,4.66,685,5.744,686,5.335]],["title/injectables/UserService.html",[58,1.348,687,3.236]],["body/injectables/UserService.html",[3,0.083,4,0.073,8,0.115,12,0.335,13,0.367,16,0.564,17,0.012,18,0.415,19,0.415,23,0.007,24,0.007,47,0.728,56,1.058,57,1.719,60,1.018,71,2.327,72,2.552,75,1.735,77,0.922,88,1.559,128,1.126,148,1.656,152,4.259,158,2.232,269,2.693,280,2.526,284,4.12,285,2.329,286,4.12,317,4.443,319,2.232,413,2.327,414,2.327,415,2.526,416,2.526,417,2.526,595,4.475,685,4.406,687,2.526,688,3.197,689,2.792,690,4.106,691,3.197,692,3.197,693,3.197]],["title/injectables/UserServiceMock.html",[58,1.348,694,3.577]],["body/injectables/UserServiceMock.html",[3,0.102,4,0.089,8,0.141,12,0.289,13,0.622,16,0.487,17,0.012,18,0.356,19,0.356,23,0.008,24,0.008,47,0.84,56,1.177,57,1.517,60,1.244,88,1.743,128,1.376,152,4.257,158,1.855,269,1.712,284,3.264,285,2.689,286,3.264,317,2.65,319,1.855,413,2.844,414,2.844,680,5.447,685,4.288,687,3.087,689,3.413,690,3.413,694,3.413,695,3.907,696,6.235,697,6.235,698,6.235,699,6.235,700,6.235,701,6.235]],["title/injectables/UxDynamicComponentService.html",[58,1.348,702,3.577]],["body/injectables/UxDynamicComponentService.html",[3,0.099,4,0.087,8,0.137,10,1.86,12,0.285,13,0.436,16,0.481,17,0.011,18,0.351,19,0.351,23,0.008,24,0.008,36,2.01,41,3.873,47,0.824,56,0.795,60,1.209,80,3.001,88,1.062,142,2.888,152,2.284,248,3.043,269,2.331,337,5.258,393,4.647,482,3.317,606,2.166,618,4.647,702,3.317,703,3.873,704,3.798,705,3.798,706,3.798,707,6.141,708,5.321,709,5.321,710,3.798,711,5.321,712,5.321,713,6.655,714,6.141,715,5.321,716,5.321,717,3.798,718,3.317,719,3.798,720,3.798,721,3.798,722,5.321,723,6.141,724,3.798,725,3.798,726,3.798,727,3.798,728,3.798,729,3.798,730,3.798]],["title/injectables/UxDynamicMenuService.html",[58,1.348,731,3.577]],["body/injectables/UxDynamicMenuService.html",[3,0.123,4,0.108,8,0.169,9,1.167,12,0.293,13,0.539,16,0.444,17,0.012,18,0.351,19,0.351,20,1.05,21,0.922,23,0.009,24,0.009,47,0.952,56,0.919,60,1.497,72,3.337,75,3.337,93,5.114,278,4.857,606,2.681,703,4.475,731,4.106,732,4.701,733,4.701,734,6.148,735,6.148,736,6.851,737,4.701,738,4.701,739,4.701,740,4.701]],["title/injectables/UxErrorFeedbackService.html",[58,1.348,741,3.236]],["body/injectables/UxErrorFeedbackService.html",[3,0.095,4,0.083,8,0.131,9,0.98,12,0.28,13,0.417,16,0.472,17,0.012,18,0.373,19,0.373,20,0.812,21,0.714,23,0.008,24,0.008,47,0.799,50,4.752,56,1.03,60,1.158,77,1.476,85,2.316,88,1.677,97,2.352,177,3.177,178,4.508,192,2.467,235,2.352,269,3.02,456,4.752,530,2.648,606,2.075,741,2.874,742,2.874,743,3.177,744,4.508,745,5.999,746,5.999,747,4.508,748,4.508,749,3.638,750,3.638,751,5.703,752,3.757,753,3.177,754,5.703,755,3.638,756,4.508,757,3.177,758,5.161,759,4.508,760,3.638,761,3.638,762,3.638]],["title/classes/UxErrorManager.html",[0,0.857,752,2.981]],["body/classes/UxErrorManager.html",[2,0.852,3,0.103,4,0.09,8,0.142,9,1.036,12,0.29,13,0.452,16,0.488,17,0.012,18,0.386,19,0.386,20,0.88,21,0.773,23,0.008,24,0.008,47,0.845,56,1.01,57,1.101,77,1.326,88,1.751,97,3.081,235,2.488,269,2.962,456,4.559,606,2.247,741,4.948,742,3.113,743,3.441,744,4.768,747,4.768,748,4.768,751,5.47,752,2.868,753,3.441,754,5.906,756,4.768,757,3.441,759,4.768,763,5.458,764,5.458,765,3.94,766,5.458,767,3.94,768,3.94]],["title/interceptors/UxRequestErrorModelInterceptor.html",[30,2.223,769,3.577]],["body/interceptors/UxRequestErrorModelInterceptor.html",[3,0.135,4,0.118,8,0.186,12,0.28,13,0.592,16,0.472,17,0.011,18,0.373,19,0.373,23,0.01,24,0.01,32,2.943,44,2.943,47,1.011,48,3.543,51,3.756,52,3.723,53,3.382,54,3.723,55,3.756,56,0.771,57,1.442,235,2.352,769,4.508,770,5.161,771,5.161,772,5.161,773,7.161]],["title/classes/UxRootInjectorGuard.html",[0,0.857,774,3.577]],["body/classes/UxRootInjectorGuard.html",[2,1.268,3,0.153,4,0.134,12,0.337,13,0.672,16,0.423,17,0.011,18,0.335,19,0.335,23,0.01,24,0.01,373,4.267,606,3.343,774,5.12,775,5.862,776,5.862]],["title/injectables/UxTimezoneService.html",[58,1.348,777,3.577]],["body/injectables/UxTimezoneService.html",[3,0.12,4,0.105,8,0.166,12,0.26,16,0.438,17,0.012,18,0.387,19,0.347,23,0.009,24,0.009,47,0.939,56,1.077,60,1.468,77,1.509,264,3.355,357,3.642,605,4.417,606,2.629,607,4.026,777,4.026,778,6.785,779,6.069,780,6.785,781,6.069,782,3.642,783,6.785,784,4.609,785,4.026,786,4.609,787,4.609,788,4.609,789,4.609,790,5.301,791,4.609]],["title/dependencies.html",[792,2.98,793,4.306]],["body/dependencies.html",[17,0.012,23,0.004,24,0.004,75,2.064,135,0.919,248,0.879,351,2.337,428,3.896,462,1.55,494,1.55,505,1.55,589,1.55,605,1.292,703,1.292,793,1.55,794,1.774,795,6.659,796,1.774,797,2.958,798,1.774,799,1.774,800,2.958,801,2.958,802,1.774,803,2.958,804,1.774,805,1.774,806,1.774,807,1.774,808,5.918,809,1.774,810,2.958,811,1.774,812,1.774,813,1.774,814,1.774,815,1.774,816,3.803,817,2.958,818,2.958,819,1.774,820,2.958,821,1.774,822,1.774,823,4.931,824,3.803,825,5.649,826,1.774,827,1.774,828,1.774,829,1.774,830,5.649,831,1.774,832,1.774,833,1.774,834,1.774,835,1.774,836,3.803,837,1.774,838,2.958,839,1.774,840,1.774,841,1.774,842,2.958,843,1.774,844,1.774,845,1.774,846,1.774,847,1.774,848,1.774,849,1.774,850,1.774,851,1.774,852,1.774,853,1.774,854,1.774,855,1.774,856,4.931,857,1.774,858,1.774,859,6.146,860,1.774,861,1.774,862,1.774,863,1.774,864,3.803,865,1.774,866,1.774,867,1.774,868,3.803,869,3.803,870,1.774,871,1.774,872,1.774,873,1.774,874,1.774,875,1.774,876,1.774,877,1.774,878,1.774,879,1.774,880,1.774,881,1.774,882,1.774,883,1.774,884,1.774,885,1.774,886,1.774,887,1.774,888,5.918,889,1.774,890,1.774,891,2.958,892,1.774,893,1.774,894,2.958,895,1.774,896,1.774,897,1.774,898,1.774,899,1.774,900,1.774,901,1.774,902,1.774,903,1.774,904,1.774,905,1.55,906,1.774,907,1.774,908,1.774,909,1.774,910,1.774,911,2.958,912,1.774,913,1.774,914,1.774,915,1.774,916,1.774,917,1.774,918,1.774,919,1.774,920,1.774,921,1.774,922,2.958,923,1.774,924,1.774,925,1.774,926,1.774,927,1.774,928,1.774,929,1.774,930,1.774,931,1.774,932,1.774,933,1.774,934,1.774,935,1.774,936,1.774,937,1.774,938,2.958,939,1.774,940,1.774,941,1.774,942,1.774,943,1.774,944,1.774,945,1.774,946,1.774,947,1.55,948,1.774,949,1.774,950,1.55,951,1.55,952,1.774,953,1.774,954,1.774,955,1.774,956,1.774,957,1.774,958,1.774,959,1.774,960,1.774,961,1.774,962,1.774,963,1.774,964,1.774,965,1.774,966,1.774,967,4.438,968,1.774,969,1.774,970,1.774,971,1.774,972,1.774,973,2.958,974,2.958,975,2.958,976,1.774,977,1.774,978,1.774]],["title/miscellaneous/enumerations.html",[979,2.052,980,4.306]],["body/miscellaneous/enumerations.html",[5,1.533,8,0.116,17,0.012,21,1.588,23,0.007,24,0.007,38,2.35,41,2.35,75,1.753,78,4.137,81,4.432,142,1.753,186,1.673,219,5.433,222,2.821,223,2.821,237,1.842,248,1.6,273,2.35,285,1.6,312,2.552,319,2.663,324,6.185,370,3.742,412,2.35,469,2.552,483,4.137,580,2.821,599,4.137,600,2.35,665,2.552,668,2.552,671,2.552,674,1.942,782,2.552,979,1.942,980,2.821,981,3.229,982,4.736,983,2.821,984,4.736,985,2.821,986,4.736,987,2.821,988,4.736,989,2.821,990,4.736,991,2.821,992,3.229,993,7.662,994,3.229,995,3.229,996,3.229,997,3.229,998,3.229,999,3.229,1000,3.229,1001,3.229,1002,3.229,1003,5.609,1004,3.229,1005,3.229,1006,2.821,1007,3.229,1008,3.229,1009,3.229,1010,3.229,1011,3.229,1012,3.229,1013,3.229,1014,3.229,1015,3.229,1016,3.229,1017,3.229,1018,3.229]],["title/miscellaneous/functions.html",[979,2.052,1019,4.306]],["body/miscellaneous/functions.html",[4,0.032,7,0.816,8,0.05,12,0.305,16,0.519,17,0.012,18,0.407,19,0.407,20,0.708,21,0.622,23,0.004,24,0.004,36,1.426,38,1.009,56,1.02,74,1.388,77,1.131,92,0.752,93,2.149,97,1.721,134,1.527,135,1.242,157,2.504,158,2.026,161,1.894,176,1.21,187,1.095,209,1.894,220,1.21,235,2.79,243,2.306,248,2.114,269,1.05,273,1.009,274,2.768,285,1.57,288,2.664,319,1.138,333,1.21,336,1.21,337,5.463,347,5.885,352,4.08,364,2.983,366,1.894,374,1.745,385,2.768,398,2.094,406,2.748,409,3.298,422,1.21,438,0.94,469,1.894,492,5.201,496,2.094,511,2.094,512,1.21,528,1.894,563,1.21,585,3.726,595,3.4,596,2.983,606,0.79,703,1.745,742,1.095,752,1.745,782,1.095,947,1.21,979,0.833,1006,1.21,1019,1.21,1020,2.397,1021,3.776,1022,4.266,1023,4.266,1024,2.397,1025,2.397,1026,3.776,1027,2.397,1028,4.266,1029,3.776,1030,3.169,1031,3.169,1032,2.397,1033,5.299,1034,2.397,1035,2.397,1036,2.397,1037,2.397,1038,2.397,1039,2.397,1040,2.397,1041,2.397,1042,3.169,1043,2.397,1044,2.397,1045,2.397,1046,2.397,1047,2.397,1048,2.397,1049,2.397,1050,2.397,1051,2.397,1052,2.397,1053,1.386,1054,2.397,1055,1.386,1056,5.299,1057,1.386,1058,1.386,1059,1.386,1060,1.386,1061,1.386,1062,2.397,1063,2.397,1064,2.397,1065,2.397,1066,3.169,1067,1.386,1068,1.386,1069,1.386,1070,1.386,1071,2.397,1072,1.386,1073,3.169,1074,1.386,1075,1.386,1076,3.776,1077,1.386,1078,1.386,1079,1.386,1080,1.386,1081,1.386,1082,2.397,1083,2.397,1084,1.386,1085,2.397,1086,3.169,1087,2.397,1088,2.397,1089,1.386,1090,3.169,1091,1.386,1092,1.386,1093,1.386,1094,1.386,1095,2.397,1096,2.397,1097,1.386,1098,1.386,1099,1.386,1100,1.386,1101,1.386,1102,1.386,1103,1.386,1104,1.386,1105,1.386,1106,2.397,1107,1.386,1108,1.386,1109,1.386,1110,2.397,1111,1.386,1112,1.386,1113,1.386,1114,1.386]],["title/index.html",[8,0.147,1115,3.577]],["body/index.html",[2,1.3,17,0.01,23,0.01,24,0.01,60,1.914,237,3.428,424,4.375,455,3.614,531,6.262,609,5.25,1115,5.25,1116,6.01,1117,6.01,1118,6.01,1119,6.01]],["title/license.html",[500,2.98,1120,3.412,1121,2.696]],["body/license.html",[10,1.11,12,0.031,17,0.002,21,0.144,23,0.002,24,0.002,87,0.639,101,1.075,108,1.068,109,1.708,123,1.181,135,0.379,137,0.578,151,0.578,187,1.068,192,0.917,207,0.639,247,0.578,249,2.934,264,3.482,291,2.404,292,0.639,298,1.181,301,0.639,302,1.181,308,0.639,312,4.138,374,1.372,389,1.181,390,0.639,396,1.181,427,0.578,438,1.278,439,2.175,456,0.533,516,0.639,528,0.578,530,1.372,600,1.708,627,0.639,653,0.639,718,0.639,785,0.639,790,1.646,950,0.639,951,3.468,979,0.44,1121,2.934,1122,4.784,1123,2.347,1124,7.548,1125,3.428,1126,0.639,1127,2.404,1128,0.732,1129,1.352,1130,0.732,1131,0.732,1132,7.616,1133,3.713,1134,1.352,1135,5.897,1136,4.607,1137,0.732,1138,0.732,1139,2.752,1140,4.414,1141,0.732,1142,4.414,1143,0.732,1144,5.487,1145,6.145,1146,3.428,1147,2.752,1148,0.732,1149,2.752,1150,0.732,1151,0.732,1152,0.732,1153,0.732,1154,0.732,1155,0.732,1156,1.352,1157,5.366,1158,0.732,1159,2.347,1160,2.347,1161,4.414,1162,3.713,1163,5.6,1164,2.752,1165,1.352,1166,3.428,1167,0.732,1168,1.352,1169,0.732,1170,1.885,1171,0.732,1172,0.732,1173,3.97,1174,3.428,1175,1.352,1176,3.11,1177,0.732,1178,0.732,1179,1.885,1180,1.352,1181,0.732,1182,0.732,1183,0.732,1184,1.352,1185,0.732,1186,0.732,1187,0.732,1188,0.732,1189,1.352,1190,0.732,1191,2.752,1192,2.752,1193,2.752,1194,2.752,1195,2.347,1196,0.732,1197,0.732,1198,0.732,1199,1.352,1200,0.732,1201,1.885,1202,3.11,1203,3.428,1204,1.352,1205,0.732,1206,0.732,1207,0.732,1208,0.732,1209,1.885,1210,1.352,1211,0.732,1212,0.732,1213,1.352,1214,3.97,1215,0.732,1216,1.352,1217,0.732,1218,0.732,1219,1.352,1220,3.11,1221,0.732,1222,1.352,1223,0.732,1224,0.732,1225,1.352,1226,1.352,1227,2.347,1228,0.732,1229,0.732,1230,0.732,1231,0.732,1232,0.732,1233,2.752,1234,1.885,1235,1.885,1236,0.732,1237,0.732,1238,0.732,1239,1.885,1240,0.732,1241,0.732,1242,0.732,1243,1.885,1244,0.732,1245,1.352,1246,0.732,1247,0.732,1248,0.732,1249,0.732,1250,1.352,1251,0.732,1252,1.885,1253,0.732,1254,1.885,1255,1.352,1256,0.732,1257,0.732,1258,0.732,1259,0.732,1260,0.732,1261,0.732,1262,2.347,1263,1.352,1264,0.732,1265,0.732,1266,1.352,1267,0.732,1268,0.732,1269,1.352,1270,3.11,1271,0.732,1272,2.347,1273,1.352,1274,1.181,1275,1.352,1276,1.352,1277,1.352,1278,1.352,1279,1.352,1280,1.352,1281,0.732,1282,0.732,1283,0.732,1284,0.732,1285,0.732,1286,1.885,1287,0.732,1288,0.732,1289,0.732,1290,3.713,1291,3.11,1292,0.732,1293,0.732,1294,0.732,1295,2.347,1296,0.732,1297,0.732,1298,0.732,1299,1.352,1300,2.347,1301,0.732,1302,2.347,1303,1.352,1304,0.732,1305,2.347,1306,0.732,1307,0.732,1308,0.732,1309,0.732,1310,0.732,1311,0.732,1312,0.732,1313,1.885,1314,1.352,1315,0.732,1316,0.732,1317,0.732,1318,1.352,1319,0.732,1320,2.347,1321,1.885,1322,0.732,1323,0.732,1324,0.732,1325,0.732,1326,3.11,1327,0.732,1328,0.732,1329,1.885,1330,1.352,1331,0.732,1332,0.732,1333,0.732,1334,0.732,1335,1.885,1336,0.732,1337,0.732,1338,0.732,1339,1.352,1340,0.732,1341,1.352,1342,1.352,1343,0.732,1344,0.732,1345,0.732,1346,0.732,1347,0.732,1348,0.732,1349,1.352,1350,1.885,1351,1.352,1352,2.347,1353,1.352,1354,1.352,1355,2.347,1356,0.732,1357,1.352,1358,0.732,1359,1.352,1360,0.732,1361,2.347,1362,0.732,1363,0.732,1364,0.732,1365,0.732,1366,0.732,1367,0.732,1368,1.352,1369,0.732,1370,0.732,1371,0.732,1372,0.732,1373,0.732,1374,2.752,1375,1.352,1376,0.732,1377,0.732,1378,0.732,1379,0.732,1380,0.732,1381,0.732,1382,0.732,1383,0.732,1384,0.732,1385,0.732,1386,0.732,1387,0.732,1388,0.732,1389,2.752,1390,0.732,1391,0.732,1392,0.732,1393,1.885,1394,0.732,1395,0.732,1396,1.352,1397,1.352,1398,0.732,1399,0.732,1400,0.732,1401,1.885,1402,0.732,1403,1.352,1404,0.732,1405,0.732,1406,0.732,1407,0.732,1408,0.732,1409,1.352,1410,0.732,1411,0.732,1412,0.732,1413,0.732,1414,0.732,1415,1.352,1416,0.732,1417,0.732,1418,0.732,1419,1.352,1420,0.732,1421,0.732,1422,1.885,1423,0.732,1424,0.732,1425,0.732,1426,1.352,1427,0.732,1428,0.732,1429,1.352,1430,0.732,1431,0.732,1432,0.732,1433,0.732,1434,0.732,1435,0.732,1436,0.732,1437,0.732,1438,0.732,1439,1.352,1440,0.732,1441,1.352,1442,1.352,1443,0.732,1444,0.732,1445,0.732,1446,0.732,1447,0.732,1448,0.732,1449,0.732,1450,0.732,1451,0.732,1452,0.732,1453,0.732,1454,0.732,1455,0.732,1456,1.352,1457,0.732,1458,0.732,1459,1.352,1460,0.732,1461,0.732,1462,0.732,1463,0.732,1464,0.732,1465,0.732,1466,0.732,1467,0.732,1468,0.732,1469,0.732,1470,0.732,1471,1.352,1472,1.352,1473,0.732,1474,0.732,1475,0.732,1476,0.732,1477,0.732,1478,0.732,1479,0.732,1480,0.732,1481,0.732,1482,0.732,1483,2.347,1484,1.885,1485,0.732,1486,0.732,1487,0.732,1488,0.732,1489,0.732,1490,0.732,1491,0.732,1492,0.732,1493,0.732,1494,0.732,1495,3.11,1496,0.732,1497,1.885,1498,2.347,1499,0.732,1500,0.732,1501,0.732,1502,0.732,1503,0.732,1504,0.732,1505,0.732,1506,0.732,1507,1.885,1508,1.885,1509,1.352,1510,1.352,1511,1.352,1512,0.732,1513,0.732,1514,0.732,1515,0.732,1516,0.732,1517,0.732,1518,0.732,1519,0.732,1520,1.352,1521,0.732,1522,0.732,1523,0.732,1524,1.352,1525,1.352,1526,1.352,1527,0.732,1528,0.732,1529,0.732,1530,0.732,1531,0.732,1532,1.352,1533,0.732,1534,0.732,1535,0.732,1536,0.732,1537,0.732,1538,0.732,1539,0.732,1540,1.352,1541,0.732,1542,0.732,1543,0.732]],["title/modules.html",[237,3.197]],["body/modules.html",[17,0.011,23,0.011,24,0.011,236,4.872,237,3.517,368,4.872,489,4.872,620,4.872,1544,8.001]],["title/properties.html",[9,0.936,792,2.98]],["body/properties.html",[9,1.156,17,0.012,23,0.011,24,0.011,600,4.431,905,5.317,1121,4.81,1126,5.317,1127,5.317,1274,5.317,1545,6.087]],["title/miscellaneous/typealiases.html",[979,2.052,1546,4.93]],["body/miscellaneous/typealiases.html",[1,3.438,5,2.243,8,0.17,12,0.202,17,0.012,23,0.009,24,0.009,25,3.733,28,3.733,158,2.243,201,3.438,451,3.733,471,4.126,477,5.387,544,3.733,658,3.733,660,3.733,662,3.733,664,3.733,665,3.733,667,3.733,668,3.733,670,3.733,671,3.733,673,3.733,674,2.841,676,3.733,679,3.733,682,3.733,979,2.841,983,4.126,985,4.126,987,4.126,989,4.126,991,4.126,1547,4.724,1548,6.168,1549,6.168,1550,6.168,1551,6.168,1552,6.168,1553,4.724]]],"invertedIndex":[["",{"_index":17,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"properties.html":{},"miscellaneous/typealiases.html":{}}}],["0",{"_index":218,"title":{},"body":{"injectables/CoreAppEffects.html":{},"interceptors/OpenIdConnectInterceptor.html":{}}}],["0.1.5",{"_index":875,"title":{},"body":{"dependencies.html":{}}}],["0.11.0",{"_index":821,"title":{},"body":{"dependencies.html":{}}}],["0.13.1",{"_index":849,"title":{},"body":{"dependencies.html":{}}}],["0.2.4",{"_index":896,"title":{},"body":{"dependencies.html":{}}}],["0.4.0",{"_index":873,"title":{},"body":{"dependencies.html":{}}}],["0.5.43",{"_index":855,"title":{},"body":{"dependencies.html":{}}}],["0.9.2",{"_index":877,"title":{},"body":{"dependencies.html":{}}}],["1",{"_index":531,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{},"index.html":{}}}],["1.0",{"_index":1540,"title":{},"body":{"license.html":{}}}],["1.0.31",{"_index":952,"title":{},"body":{"dependencies.html":{}}}],["1.1",{"_index":1126,"title":{},"body":{"license.html":{},"properties.html":{}}}],["1.1.20150312",{"_index":925,"title":{},"body":{"dependencies.html":{}}}],["1.1.21",{"_index":933,"title":{},"body":{"dependencies.html":{}}}],["1.10.0",{"_index":956,"title":{},"body":{"dependencies.html":{}}}],["1.11.5",{"_index":944,"title":{},"body":{"dependencies.html":{}}}],["1.2.10",{"_index":917,"title":{},"body":{"dependencies.html":{}}}],["1.2.3",{"_index":833,"title":{},"body":{"dependencies.html":{}}}],["1.2.5",{"_index":919,"title":{},"body":{"dependencies.html":{}}}],["1.29.0",{"_index":941,"title":{},"body":{"dependencies.html":{}}}],["1.4.8",{"_index":908,"title":{},"body":{"dependencies.html":{}}}],["1.5.1",{"_index":923,"title":{},"body":{"dependencies.html":{}}}],["1.6.0",{"_index":842,"title":{},"body":{"dependencies.html":{}}}],["1.8.2",{"_index":962,"title":{},"body":{"dependencies.html":{}}}],["1.9.0",{"_index":966,"title":{},"body":{"dependencies.html":{}}}],["10.8.6",{"_index":946,"title":{},"body":{"dependencies.html":{}}}],["10.9.1",{"_index":882,"title":{},"body":{"dependencies.html":{}}}],["14",{"_index":205,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["14.2.4",{"_index":910,"title":{},"body":{"dependencies.html":{}}}],["15",{"_index":1177,"title":{},"body":{"license.html":{}}}],["15.0.0",{"_index":900,"title":{},"body":{"dependencies.html":{}}}],["15.0.1",{"_index":969,"title":{},"body":{"dependencies.html":{}}}],["16.0.0",{"_index":905,"title":{},"body":{"dependencies.html":{},"properties.html":{}}}],["16.2.0",{"_index":823,"title":{},"body":{"dependencies.html":{}}}],["16.2.10",{"_index":795,"title":{},"body":{"dependencies.html":{}}}],["16.2.3",{"_index":814,"title":{},"body":{"dependencies.html":{}}}],["16.2.4",{"_index":973,"title":{},"body":{"dependencies.html":{}}}],["16.2.6",{"_index":810,"title":{},"body":{"dependencies.html":{}}}],["16.2.9",{"_index":816,"title":{},"body":{"dependencies.html":{}}}],["16.3.0",{"_index":888,"title":{},"body":{"dependencies.html":{}}}],["1697740876553",{"_index":975,"title":{},"body":{"dependencies.html":{}}}],["18.16.3",{"_index":854,"title":{},"body":{"dependencies.html":{}}}],["2",{"_index":302,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["2.0",{"_index":1543,"title":{},"body":{"license.html":{}}}],["2.0.0",{"_index":869,"title":{},"body":{"dependencies.html":{}}}],["2.0.10",{"_index":884,"title":{},"body":{"dependencies.html":{}}}],["2.0.11",{"_index":914,"title":{},"body":{"dependencies.html":{}}}],["2.0.8",{"_index":958,"title":{},"body":{"dependencies.html":{}}}],["2.1",{"_index":1537,"title":{},"body":{"license.html":{}}}],["2.1.3",{"_index":936,"title":{},"body":{"dependencies.html":{}}}],["2.2.0",{"_index":865,"title":{},"body":{"dependencies.html":{}}}],["2.27.5",{"_index":839,"title":{},"body":{"dependencies.html":{}}}],["2.3.0",{"_index":847,"title":{},"body":{"dependencies.html":{}}}],["2.3.2",{"_index":949,"title":{},"body":{"dependencies.html":{}}}],["2.5.1",{"_index":928,"title":{},"body":{"dependencies.html":{}}}],["2.8.8",{"_index":968,"title":{},"body":{"dependencies.html":{}}}],["2007",{"_index":1130,"title":{},"body":{"license.html":{}}}],["23",{"_index":1117,"title":{},"body":{"index.html":{}}}],["238",{"_index":1516,"title":{},"body":{"license.html":{}}}],["3.0",{"_index":1538,"title":{},"body":{"license.html":{}}}],["3.0.0",{"_index":931,"title":{},"body":{"dependencies.html":{}}}],["3.0.3",{"_index":871,"title":{},"body":{"dependencies.html":{}}}],["3.2.0",{"_index":863,"title":{},"body":{"dependencies.html":{}}}],["3.41.0",{"_index":964,"title":{},"body":{"dependencies.html":{}}}],["34",{"_index":1118,"title":{},"body":{"index.html":{}}}],["4",{"_index":1116,"title":{},"body":{"index.html":{}}}],["4.1.8",{"_index":898,"title":{},"body":{"dependencies.html":{}}}],["4.14.194",{"_index":886,"title":{},"body":{"dependencies.html":{}}}],["4.17.21",{"_index":955,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":971,"title":{},"body":{"dependencies.html":{}}}],["4.3.0",{"_index":938,"title":{},"body":{"dependencies.html":{}}}],["4.3.5",{"_index":852,"title":{},"body":{"dependencies.html":{}}}],["4.6.0",{"_index":858,"title":{},"body":{"dependencies.html":{}}}],["4.7.7",{"_index":960,"title":{},"body":{"dependencies.html":{}}}],["4.9.5",{"_index":850,"title":{},"body":{"dependencies.html":{}}}],["43.1.1",{"_index":835,"title":{},"body":{"dependencies.html":{}}}],["5",{"_index":1531,"title":{},"body":{"license.html":{}}}],["5.1.0",{"_index":866,"title":{},"body":{"dependencies.html":{}}}],["5.59.7",{"_index":838,"title":{},"body":{"dependencies.html":{}}}],["6",{"_index":1387,"title":{},"body":{"license.html":{}}}],["6.0.0",{"_index":978,"title":{},"body":{"dependencies.html":{}}}],["6.4.2",{"_index":860,"title":{},"body":{"dependencies.html":{}}}],["7",{"_index":1119,"title":{},"body":{"index.html":{}}}],["7.0.0",{"_index":879,"title":{},"body":{"dependencies.html":{}}}],["7.8.1",{"_index":845,"title":{},"body":{"dependencies.html":{}}}],["8.0.0",{"_index":902,"title":{},"body":{"dependencies.html":{}}}],["8.41.0",{"_index":843,"title":{},"body":{"dependencies.html":{}}}],["8.8.0",{"_index":970,"title":{},"body":{"dependencies.html":{}}}],["9",{"_index":1480,"title":{},"body":{"license.html":{}}}],["_element",{"_index":619,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["above",{"_index":1262,"title":{},"body":{"license.html":{}}}],["absence",{"_index":1381,"title":{},"body":{"license.html":{}}}],["abstract",{"_index":140,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["accept",{"_index":1357,"title":{},"body":{"license.html":{}}}],["acceptance",{"_index":1422,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":1439,"title":{},"body":{"license.html":{}}}],["accepting",{"_index":1425,"title":{},"body":{"license.html":{}}}],["accepts",{"_index":290,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["access",{"_index":1215,"title":{},"body":{"license.html":{}}}],["accessible",{"_index":1277,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":444,"title":{},"body":{"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{}}}],["accordance",{"_index":1449,"title":{},"body":{"license.html":{}}}],["according",{"_index":1530,"title":{},"body":{"license.html":{}}}],["accumulate",{"_index":759,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["accuracy",{"_index":1382,"title":{},"body":{"license.html":{}}}],["act",{"_index":1204,"title":{},"body":{"license.html":{}}}],["action",{"_index":7,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"injectables/ApiQueueService.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"injectables/StoreService.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"miscellaneous/functions.html":{}}}],["action.payload",{"_index":183,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["actionkey",{"_index":594,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["actionreducer",{"_index":596,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"miscellaneous/functions.html":{}}}],["actions",{"_index":174,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["activated",{"_index":1000,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["activated_route",{"_index":999,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["activatedroute",{"_index":15,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"injectables/CoreAppEffects.html":{}}}],["activatedrouteaction",{"_index":1,"title":{"classes/ActivatedRouteAction.html":{}},"body":{"classes/ActivatedRouteAction.html":{},"injectables/CoreAppEffects.html":{},"miscellaneous/typealiases.html":{}}}],["acts",{"_index":504,"title":{},"body":{"injectables/LogService.html":{}}}],["adapter",{"_index":819,"title":{},"body":{"dependencies.html":{}}}],["add",{"_index":41,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/I18nService.html":{},"injectables/UxDynamicComponentService.html":{},"miscellaneous/enumerations.html":{}}}],["add(component",{"_index":710,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["add_api_queue_item",{"_index":1002,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["add_app_loaded_config_modules",{"_index":996,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["addapiqueueitemaction",{"_index":25,"title":{"classes/AddApiQueueItemAction.html":{}},"body":{"classes/AddApiQueueItemAction.html":{},"miscellaneous/typealiases.html":{}}}],["addapploadedconfigmodulesaction",{"_index":28,"title":{"classes/AddAppLoadedConfigModulesAction.html":{}},"body":{"classes/AddAppLoadedConfigModulesAction.html":{},"miscellaneous/typealiases.html":{}}}],["addautosavehandler",{"_index":581,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["addautosavehandler(stateslice",{"_index":584,"title":{},"body":{"injectables/StoreService.html":{}}}],["added",{"_index":1102,"title":{},"body":{"miscellaneous/functions.html":{}}}],["adding",{"_index":37,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["addition",{"_index":1268,"title":{},"body":{"license.html":{}}}],["additional",{"_index":1320,"title":{},"body":{"license.html":{}}}],["addlangparaminterceptor",{"_index":31,"title":{"interceptors/AddLangParamInterceptor.html":{}},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["addlangs",{"_index":638,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["addlangs(langs",{"_index":650,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["addlocale",{"_index":472,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["addlocale(id",{"_index":478,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["addqueueitem",{"_index":63,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["addqueueitem(id",{"_index":76,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["addresources",{"_index":341,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["addresources(config",{"_index":348,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{}}}],["adds",{"_index":80,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/I18nLoader.html":{},"injectables/UxDynamicComponentService.html":{}}}],["advantage",{"_index":1505,"title":{},"body":{"license.html":{}}}],["advised",{"_index":1411,"title":{},"body":{"license.html":{}}}],["affect",{"_index":1487,"title":{},"body":{"license.html":{}}}],["affirming",{"_index":1446,"title":{},"body":{"license.html":{}}}],["afterviewchecked",{"_index":613,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["against",{"_index":1437,"title":{},"body":{"license.html":{}}}],["agree",{"_index":1429,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":1419,"title":{},"body":{"license.html":{}}}],["agreements",{"_index":1416,"title":{},"body":{"license.html":{}}}],["alerthttperrorcallbackfn",{"_index":1020,"title":{},"body":{"miscellaneous/functions.html":{}}}],["alerthttperrorcallbackfn(error",{"_index":1055,"title":{},"body":{"miscellaneous/functions.html":{}}}],["aliases",{"_index":1547,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["allowed",{"_index":1258,"title":{},"body":{"license.html":{}}}],["allows",{"_index":591,"title":{},"body":{"injectables/StoreService.html":{}}}],["along",{"_index":1271,"title":{},"body":{"license.html":{}}}],["alter",{"_index":1322,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":1157,"title":{},"body":{"license.html":{}}}],["angular",{"_index":808,"title":{},"body":{"dependencies.html":{}}}],["angular/animations",{"_index":794,"title":{},"body":{"dependencies.html":{}}}],["angular/cdk",{"_index":815,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":811,"title":{},"body":{"dependencies.html":{}}}],["angular/common",{"_index":796,"title":{},"body":{"dependencies.html":{}}}],["angular/compiler",{"_index":797,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":798,"title":{},"body":{"dependencies.html":{}}}],["angular/elements",{"_index":804,"title":{},"body":{"dependencies.html":{}}}],["angular/forms",{"_index":799,"title":{},"body":{"dependencies.html":{}}}],["angular/language",{"_index":805,"title":{},"body":{"dependencies.html":{}}}],["angular/material",{"_index":817,"title":{},"body":{"dependencies.html":{}}}],["angular/platform",{"_index":800,"title":{},"body":{"dependencies.html":{}}}],["angular/router",{"_index":802,"title":{},"body":{"dependencies.html":{}}}],["angular/service",{"_index":806,"title":{},"body":{"dependencies.html":{}}}],["animations",{"_index":820,"title":{},"body":{"dependencies.html":{}}}],["another",{"_index":427,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"license.html":{}}}],["any,lang",{"_index":382,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["any,undefined",{"_index":692,"title":{},"body":{"injectables/UserService.html":{}}}],["apexcharts",{"_index":963,"title":{},"body":{"dependencies.html":{}}}],["api",{"_index":1003,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["apiqueueitem",{"_index":79,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["apiqueueservice",{"_index":59,"title":{"injectables/ApiQueueService.html":{}},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["apiqueueservicemock",{"_index":126,"title":{"classes/ApiQueueServiceMock.html":{}},"body":{"classes/ApiQueueServiceMock.html":{}}}],["app",{"_index":993,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["app.ts",{"_index":1042,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appconfig",{"_index":1076,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appenders",{"_index":511,"title":{},"body":{"injectables/LogService.html":{},"miscellaneous/functions.html":{}}}],["appendix",{"_index":1330,"title":{},"body":{"license.html":{}}}],["applicable",{"_index":1174,"title":{},"body":{"license.html":{}}}],["application",{"_index":1103,"title":{},"body":{"miscellaneous/functions.html":{}}}],["applicationref",{"_index":709,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["applies",{"_index":1131,"title":{},"body":{"license.html":{}}}],["apply",{"_index":1255,"title":{},"body":{"license.html":{}}}],["appmodule",{"_index":1098,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appref",{"_index":708,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["approved",{"_index":1502,"title":{},"body":{"license.html":{}}}],["args",{"_index":268,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["arises",{"_index":1528,"title":{},"body":{"license.html":{}}}],["arising",{"_index":1401,"title":{},"body":{"license.html":{}}}],["array",{"_index":93,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/I18nLoader.html":{},"interfaces/LoadedResources.html":{},"injectables/UxDynamicMenuService.html":{},"miscellaneous/functions.html":{}}}],["arrow",{"_index":832,"title":{},"body":{"dependencies.html":{}}}],["article",{"_index":1176,"title":{},"body":{"license.html":{}}}],["ascending",{"_index":119,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["asserted",{"_index":1436,"title":{},"body":{"license.html":{}}}],["asservice",{"_index":177,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/UxErrorFeedbackService.html":{}}}],["associated",{"_index":149,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["async",{"_index":147,"title":{},"body":{"classes/AsyncStorageService.html":{}}}],["asynchronous",{"_index":133,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["asynchronously",{"_index":1092,"title":{},"body":{"miscellaneous/functions.html":{}}}],["asyncstorageservice",{"_index":129,"title":{"classes/AsyncStorageService.html":{}},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{}}}],["asyncstorageservicemock",{"_index":164,"title":{"classes/AsyncStorageServiceMock.html":{}},"body":{"classes/AsyncStorageServiceMock.html":{}}}],["attached",{"_index":1273,"title":{},"body":{"license.html":{}}}],["attribution",{"_index":1294,"title":{},"body":{"license.html":{}}}],["authorised",{"_index":1137,"title":{},"body":{"license.html":{}}}],["authority",{"_index":1354,"title":{},"body":{"license.html":{}}}],["authorship",{"_index":1348,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":1473,"title":{},"body":{"license.html":{}}}],["available",{"_index":1159,"title":{},"body":{"license.html":{}}}],["back",{"_index":434,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["base",{"_index":505,"title":{},"body":{"injectables/LogService.html":{},"dependencies.html":{}}}],["based",{"_index":109,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/I18nService.html":{},"license.html":{}}}],["baseglobalconfig",{"_index":408,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{}}}],["basis",{"_index":1373,"title":{},"body":{"license.html":{}}}],["becoming",{"_index":1317,"title":{},"body":{"license.html":{}}}],["before",{"_index":1097,"title":{},"body":{"miscellaneous/functions.html":{}}}],["begin",{"_index":115,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["behalf",{"_index":1426,"title":{},"body":{"license.html":{}}}],["behaviorsubject",{"_index":644,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["behaviorsubject(true",{"_index":645,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["belgian",{"_index":1527,"title":{},"body":{"license.html":{}}}],["below",{"_index":1134,"title":{},"body":{"license.html":{}}}],["benefits",{"_index":1284,"title":{},"body":{"license.html":{}}}],["better",{"_index":915,"title":{},"body":{"dependencies.html":{}}}],["between",{"_index":1483,"title":{},"body":{"license.html":{}}}],["beware",{"_index":111,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["boolean",{"_index":97,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResources.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/ResourceError.html":{},"classes/UpdateAppConnectionAction.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["bootstrapped",{"_index":1099,"title":{},"body":{"miscellaneous/functions.html":{}}}],["both",{"_index":1325,"title":{},"body":{"license.html":{}}}],["bottom",{"_index":1443,"title":{},"body":{"license.html":{}}}],["breach",{"_index":1474,"title":{},"body":{"license.html":{}}}],["brings",{"_index":1356,"title":{},"body":{"license.html":{}}}],["browse",{"_index":1544,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":801,"title":{},"body":{"dependencies.html":{}}}],["browserstoragetype",{"_index":599,"title":{},"body":{"injectables/StoreService.html":{},"miscellaneous/enumerations.html":{}}}],["bugs",{"_index":1369,"title":{},"body":{"license.html":{}}}],["business",{"_index":1523,"title":{},"body":{"license.html":{}}}],["c",{"_index":1128,"title":{},"body":{"license.html":{}}}],["cachepreventioninterceptor",{"_index":166,"title":{"interceptors/CachePreventionInterceptor.html":{}},"body":{"interceptors/CachePreventionInterceptor.html":{}}}],["callback",{"_index":1022,"title":{},"body":{"miscellaneous/functions.html":{}}}],["called",{"_index":372,"title":{},"body":{"modules/I18nModule.html":{},"modules/LogModule.html":{}}}],["carry",{"_index":1307,"title":{},"body":{"license.html":{}}}],["case",{"_index":101,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"license.html":{}}}],["cases",{"_index":1390,"title":{},"body":{"license.html":{}}}],["cause",{"_index":1306,"title":{},"body":{"license.html":{}}}],["caused",{"_index":1395,"title":{},"body":{"license.html":{}}}],["cecill",{"_index":1542,"title":{},"body":{"license.html":{}}}],["chain",{"_index":1347,"title":{},"body":{"license.html":{}}}],["channel",{"_index":1464,"title":{},"body":{"license.html":{}}}],["charge",{"_index":1420,"title":{},"body":{"license.html":{}}}],["check",{"_index":209,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"miscellaneous/functions.html":{}}}],["checkattributepermission",{"_index":281,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkattributepermission(rightsandpermission",{"_index":289,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkpermission",{"_index":282,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkpermission(rightid",{"_index":314,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkright",{"_index":283,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkright(rightid",{"_index":316,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["childbaseloggername",{"_index":1064,"title":{},"body":{"miscellaneous/functions.html":{}}}],["childconfig",{"_index":1065,"title":{},"body":{"miscellaneous/functions.html":{}}}],["choice",{"_index":1506,"title":{},"body":{"license.html":{}}}],["choose",{"_index":1417,"title":{},"body":{"license.html":{}}}],["chrome",{"_index":861,"title":{},"body":{"dependencies.html":{}}}],["circumstance",{"_index":1231,"title":{},"body":{"license.html":{}}}],["claims",{"_index":1435,"title":{},"body":{"license.html":{}}}],["class",{"_index":0,"title":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"classes/I18nResourceImpl.html":{},"classes/InitStoreAction.html":{},"classes/LogServiceMock.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"classes/UxErrorManager.html":{},"classes/UxRootInjectorGuard.html":{}},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["classes",{"_index":2,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"classes/I18nResourceImpl.html":{},"classes/InitStoreAction.html":{},"classes/LogServiceMock.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"classes/UxErrorManager.html":{},"classes/UxRootInjectorGuard.html":{},"index.html":{}}}],["classify",{"_index":1171,"title":{},"body":{"license.html":{}}}],["classlist.js",{"_index":924,"title":{},"body":{"dependencies.html":{}}}],["clause",{"_index":1313,"title":{},"body":{"license.html":{}}}],["clear",{"_index":1451,"title":{},"body":{"license.html":{}}}],["clearerror",{"_index":744,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["clearerror(groupid",{"_index":768,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["clearerror(id",{"_index":750,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["cleave.js",{"_index":906,"title":{},"body":{"dependencies.html":{}}}],["cli",{"_index":803,"title":{},"body":{"dependencies.html":{}}}],["clicking",{"_index":1441,"title":{},"body":{"license.html":{}}}],["client",{"_index":943,"title":{},"body":{"dependencies.html":{}}}],["code",{"_index":264,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"injectables/UxTimezoneService.html":{},"license.html":{}}}],["codes",{"_index":784,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["comes",{"_index":294,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["commercial",{"_index":1408,"title":{},"body":{"license.html":{}}}],["commission",{"_index":1495,"title":{},"body":{"license.html":{}}}],["common",{"_index":1539,"title":{},"body":{"license.html":{}}}],["communicate",{"_index":1234,"title":{},"body":{"license.html":{}}}],["communicated",{"_index":1158,"title":{},"body":{"license.html":{}}}],["communicates",{"_index":1195,"title":{},"body":{"license.html":{}}}],["communicating",{"_index":1210,"title":{},"body":{"license.html":{}}}],["communication",{"_index":1203,"title":{},"body":{"license.html":{}}}],["communities",{"_index":1513,"title":{},"body":{"license.html":{}}}],["community",{"_index":1129,"title":{},"body":{"license.html":{}}}],["compare",{"_index":394,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["compatibility",{"_index":1324,"title":{},"body":{"license.html":{}}}],["compatible",{"_index":1326,"title":{},"body":{"license.html":{}}}],["competent",{"_index":1519,"title":{},"body":{"license.html":{}}}],["compiled",{"_index":1186,"title":{},"body":{"license.html":{}}}],["compiletranslations",{"_index":376,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["compiletranslations(translations",{"_index":384,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["compiletranslationsfn",{"_index":381,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["complete",{"_index":1482,"title":{},"body":{"license.html":{}}}],["completes",{"_index":114,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["compliance",{"_index":1478,"title":{},"body":{"license.html":{}}}],["compodoc/compodoc",{"_index":932,"title":{},"body":{"dependencies.html":{}}}],["compodoc/ngd",{"_index":934,"title":{},"body":{"dependencies.html":{}}}],["component",{"_index":713,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["component.service.ts",{"_index":705,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["component/ux",{"_index":704,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["componentfactoryresolver",{"_index":707,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["componentportal",{"_index":724,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["componentref",{"_index":726,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["components",{"_index":762,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["componenttype",{"_index":711,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["computer",{"_index":1189,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":1376,"title":{},"body":{"license.html":{}}}],["conclude",{"_index":1418,"title":{},"body":{"license.html":{}}}],["concluded",{"_index":1468,"title":{},"body":{"license.html":{}}}],["concrete",{"_index":136,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["condition",{"_index":1388,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":1321,"title":{},"body":{"license.html":{}}}],["conducts",{"_index":1521,"title":{},"body":{"license.html":{}}}],["config",{"_index":248,"title":{},"body":{"modules/CoreModule.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"modules/LogModule.html":{},"injectables/UxDynamicComponentService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["configuration",{"_index":352,"title":{},"body":{"injectables/I18nLoader.html":{},"miscellaneous/functions.html":{}}}],["configurations",{"_index":1101,"title":{},"body":{"miscellaneous/functions.html":{}}}],["conflict",{"_index":1332,"title":{},"body":{"license.html":{}}}],["connect.interceptor.ts",{"_index":525,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["connect.service.mock.ts",{"_index":536,"title":{},"body":{"classes/OpenIdConnectServiceMock.html":{}}}],["connect.service.ts",{"_index":533,"title":{},"body":{"injectables/OpenIdConnectService.html":{},"interfaces/OpenIdConnectUserDetails.html":{}}}],["connected",{"_index":224,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["connection",{"_index":222,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/enumerations.html":{}}}],["connectionstatus",{"_index":176,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/functions.html":{}}}],["consent",{"_index":1447,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":1424,"title":{},"body":{"license.html":{}}}],["consolehttperrorcallbackfn",{"_index":1024,"title":{},"body":{"miscellaneous/functions.html":{}}}],["consolehttperrorcallbackfn(error",{"_index":1057,"title":{},"body":{"miscellaneous/functions.html":{}}}],["const",{"_index":188,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["constructor",{"_index":13,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/CoreAppEffects.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"directives/TranslateMockDirective.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{}}}],["constructor(_element",{"_index":617,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["constructor(actions",{"_index":173,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["constructor(asservice",{"_index":749,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["constructor(baseglobalconfig",{"_index":405,"title":{},"body":{"injectables/I18nService.html":{}}}],["constructor(code",{"_index":266,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["constructor(componentfactoryresolver",{"_index":706,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["constructor(config",{"_index":335,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/LocalForageService.html":{}}}],["constructor(errormappinghandler",{"_index":772,"title":{},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["constructor(http",{"_index":346,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["constructor(locale_id",{"_index":488,"title":{},"body":{"injectables/LocaleServiceMock.html":{}}}],["constructor(log",{"_index":287,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{}}}],["constructor(logservice",{"_index":330,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["constructor(name",{"_index":508,"title":{},"body":{"injectables/LogService.html":{}}}],["constructor(payload",{"_index":14,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{}}}],["constructor(prefix",{"_index":379,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["constructor(store",{"_index":71,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/LocaleService.html":{},"injectables/StoreService.html":{},"injectables/UserService.html":{}}}],["constructor(translateservice",{"_index":49,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["constructor(type",{"_index":776,"title":{},"body":{"classes/UxRootInjectorGuard.html":{}}}],["constructor(uxerrorfeedbackservice",{"_index":765,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["constructor(uxpermission",{"_index":737,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["construed",{"_index":1491,"title":{},"body":{"license.html":{}}}],["contain",{"_index":301,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["contains",{"_index":105,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["content",{"_index":653,"title":{},"body":{"classes/TranslateServiceMock.html":{},"license.html":{}}}],["continue",{"_index":103,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["continueonerror",{"_index":99,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["continues",{"_index":1279,"title":{},"body":{"license.html":{}}}],["continuously",{"_index":1363,"title":{},"body":{"license.html":{}}}],["contributes",{"_index":1198,"title":{},"body":{"license.html":{}}}],["contributions",{"_index":1360,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":1355,"title":{},"body":{"license.html":{}}}],["contributor(s",{"_index":1196,"title":{},"body":{"license.html":{}}}],["contributors",{"_index":1359,"title":{},"body":{"license.html":{}}}],["convenient",{"_index":1181,"title":{},"body":{"license.html":{}}}],["convert",{"_index":789,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["converts",{"_index":91,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["copies",{"_index":1214,"title":{},"body":{"license.html":{}}}],["copy",{"_index":1270,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":1312,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":1142,"title":{},"body":{"license.html":{}}}],["core",{"_index":857,"title":{},"body":{"dependencies.html":{}}}],["core.module.ts",{"_index":239,"title":{},"body":{"modules/CoreModule.html":{},"classes/EuiCoreRootGuardClass.html":{}}}],["coreappactions",{"_index":1548,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["coreappactiontypes",{"_index":982,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["coreappactiontypes.activated_route",{"_index":22,"title":{},"body":{"classes/ActivatedRouteAction.html":{}}}],["coreappactiontypes.add_api_queue_item",{"_index":27,"title":{},"body":{"classes/AddApiQueueItemAction.html":{}}}],["coreappactiontypes.add_app_loaded_config_modules",{"_index":29,"title":{},"body":{"classes/AddAppLoadedConfigModulesAction.html":{}}}],["coreappactiontypes.empty_api_queue",{"_index":261,"title":{},"body":{"classes/EmptyApiQueueAction.html":{}}}],["coreappactiontypes.init_store",{"_index":452,"title":{},"body":{"classes/InitStoreAction.html":{}}}],["coreappactiontypes.remove_api_queue_item",{"_index":545,"title":{},"body":{"classes/RemoveApiQueueItemAction.html":{}}}],["coreappactiontypes.update_app_connection",{"_index":657,"title":{},"body":{"classes/UpdateAppConnectionAction.html":{}}}],["coreappactiontypes.update_app_status",{"_index":659,"title":{},"body":{"classes/UpdateAppStatusAction.html":{}}}],["coreappactiontypes.update_app_version",{"_index":661,"title":{},"body":{"classes/UpdateAppVersionAction.html":{}}}],["coreappactiontypes.update_current_module",{"_index":663,"title":{},"body":{"classes/UpdateCurrentModuleAction.html":{}}}],["coreappeffects",{"_index":169,"title":{"injectables/CoreAppEffects.html":{}},"body":{"injectables/CoreAppEffects.html":{}}}],["corei18nactions",{"_index":1549,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["corei18nactiontypes",{"_index":984,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["corei18nactiontypes.update_i18n_state",{"_index":666,"title":{},"body":{"classes/UpdateI18nStateAction.html":{}}}],["corelocaleactions",{"_index":1550,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["corelocaleactiontypes",{"_index":986,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["corelocaleactiontypes.update_locale_state",{"_index":669,"title":{},"body":{"classes/UpdateLocaleStateAction.html":{}}}],["coremodule",{"_index":236,"title":{"modules/CoreModule.html":{}},"body":{"modules/CoreModule.html":{},"modules.html":{}}}],["corenotificationsactions",{"_index":1551,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["corenotificationsactiontypes",{"_index":988,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["corenotificationsactiontypes.update_notifications_list",{"_index":672,"title":{},"body":{"classes/UpdateNotificationsListAction.html":{}}}],["coreuseractions",{"_index":1552,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["coreuseractiontypes",{"_index":990,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["coreuseractiontypes.update_user_dashboard",{"_index":675,"title":{},"body":{"classes/UpdateUserDashboardAction.html":{}}}],["coreuseractiontypes.update_user_details",{"_index":678,"title":{},"body":{"classes/UpdateUserDetailsAction.html":{}}}],["coreuseractiontypes.update_user_preferences",{"_index":681,"title":{},"body":{"classes/UpdateUserPreferencesAction.html":{}}}],["coreuseractiontypes.update_user_rights",{"_index":683,"title":{},"body":{"classes/UpdateUserRightsAction.html":{}}}],["coreuseractiontypes.update_user_state",{"_index":686,"title":{},"body":{"classes/UpdateUserStateAction.html":{}}}],["corssecurityinterceptor",{"_index":254,"title":{"interceptors/CorsSecurityInterceptor.html":{}},"body":{"interceptors/CorsSecurityInterceptor.html":{}}}],["countries",{"_index":785,"title":{},"body":{"injectables/UxTimezoneService.html":{},"license.html":{}}}],["country",{"_index":790,"title":{},"body":{"injectables/UxTimezoneService.html":{},"license.html":{}}}],["court",{"_index":1511,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":864,"title":{},"body":{"dependencies.html":{}}}],["covered",{"_index":1141,"title":{},"body":{"license.html":{}}}],["created",{"_index":516,"title":{},"body":{"injectables/LogService.html":{},"license.html":{}}}],["createeffect",{"_index":179,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["createglobalerrormanager",{"_index":745,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["createlocalerrormanager",{"_index":746,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["createurltree",{"_index":553,"title":{},"body":{"classes/RouterMock.html":{}}}],["creating",{"_index":501,"title":{},"body":{"injectables/LogService.html":{}}}],["creation",{"_index":1199,"title":{},"body":{"license.html":{}}}],["csrfpreventioninterceptor",{"_index":258,"title":{"interceptors/CsrfPreventionInterceptor.html":{}},"body":{"interceptors/CsrfPreventionInterceptor.html":{}}}],["current",{"_index":38,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["currentlang",{"_index":629,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["currentlanguage",{"_index":446,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["currentlocale",{"_index":475,"title":{},"body":{"injectables/LocaleService.html":{}}}],["currently",{"_index":1100,"title":{},"body":{"miscellaneous/functions.html":{}}}],["customary",{"_index":1343,"title":{},"body":{"license.html":{}}}],["damage",{"_index":1409,"title":{},"body":{"license.html":{}}}],["damages",{"_index":1393,"title":{},"body":{"license.html":{}}}],["danger",{"_index":234,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["dashboard",{"_index":1018,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["data",{"_index":718,"title":{},"body":{"injectables/UxDynamicComponentService.html":{},"license.html":{}}}],["date",{"_index":1311,"title":{},"body":{"license.html":{}}}],["debouncetime",{"_index":573,"title":{},"body":{"classes/StoreMock.html":{}}}],["declarations",{"_index":621,"title":{},"body":{"modules/TranslateMockModule.html":{}}}],["default",{"_index":20,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/CoreAppEffects.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StoreMock.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["default_language",{"_index":646,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["default_log_config",{"_index":496,"title":{},"body":{"modules/LogModule.html":{},"miscellaneous/functions.html":{}}}],["defaultmaximumrequestretries",{"_index":526,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["defects",{"_index":1368,"title":{},"body":{"license.html":{}}}],["defend",{"_index":1431,"title":{},"body":{"license.html":{}}}],["define",{"_index":1167,"title":{},"body":{"license.html":{}}}],["defined",{"_index":187,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["definition",{"_index":362,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["definitions",{"_index":1154,"title":{},"body":{"license.html":{}}}],["departmentnumber",{"_index":538,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["dependence",{"_index":1169,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":793,"title":{"dependencies.html":{}},"body":{"dependencies.html":{}}}],["deprive",{"_index":1283,"title":{},"body":{"license.html":{}}}],["derivative",{"_index":1161,"title":{},"body":{"license.html":{}}}],["desc",{"_index":608,"title":{},"body":{"interfaces/TimeZone.html":{}}}],["describing",{"_index":1344,"title":{},"body":{"license.html":{}}}],["description",{"_index":36,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"injectables/UxDynamicComponentService.html":{},"miscellaneous/functions.html":{}}}],["detached",{"_index":730,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["detaches",{"_index":728,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["detail",{"_index":231,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["details",{"_index":1013,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["detector",{"_index":930,"title":{},"body":{"dependencies.html":{}}}],["determine",{"_index":162,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["determined",{"_index":1172,"title":{},"body":{"license.html":{}}}],["dev.4",{"_index":912,"title":{},"body":{"dependencies.html":{}}}],["development",{"_index":1371,"title":{},"body":{"license.html":{}}}],["device",{"_index":929,"title":{},"body":{"dependencies.html":{}}}],["devkit/build",{"_index":809,"title":{},"body":{"dependencies.html":{}}}],["devtools",{"_index":892,"title":{},"body":{"dependencies.html":{}}}],["different",{"_index":495,"title":{},"body":{"modules/LogModule.html":{}}}],["direct",{"_index":1398,"title":{},"body":{"license.html":{}}}],["directive",{"_index":609,"title":{"directives/TranslateMockDirective.html":{}},"body":{"index.html":{}}}],["directives",{"_index":611,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["directly",{"_index":1394,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":1302,"title":{},"body":{"license.html":{}}}],["dispatch",{"_index":574,"title":{},"body":{"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["dispatch(action",{"_index":587,"title":{},"body":{"injectables/StoreService.html":{}}}],["dispatchaction",{"_index":582,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["dispatchaction(state",{"_index":593,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["dispatching",{"_index":82,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["display",{"_index":1236,"title":{},"body":{"license.html":{}}}],["displaying",{"_index":1445,"title":{},"body":{"license.html":{}}}],["disposal",{"_index":1218,"title":{},"body":{"license.html":{}}}],["distinctuntilchanged",{"_index":575,"title":{},"body":{"classes/StoreMock.html":{}}}],["distribute",{"_index":1239,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":1156,"title":{},"body":{"license.html":{}}}],["distributes",{"_index":1194,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":1209,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":1202,"title":{},"body":{"license.html":{}}}],["document",{"_index":407,"title":{},"body":{"injectables/I18nService.html":{}}}],["domain",{"_index":539,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["domainusername",{"_index":540,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["domportaloutlet",{"_index":723,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["done",{"_index":1314,"title":{},"body":{"license.html":{}}}],["dot",{"_index":296,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["down",{"_index":1515,"title":{},"body":{"license.html":{}}}],["download",{"_index":1461,"title":{},"body":{"license.html":{}}}],["drop",{"_index":206,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["duration",{"_index":1229,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":703,"title":{},"body":{"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{}}}],["dynamic_component_config",{"_index":720,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["dynamically",{"_index":482,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/UxDynamicComponentService.html":{}}}],["e.g",{"_index":299,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["each",{"_index":1272,"title":{},"body":{"license.html":{}}}],["easily",{"_index":1275,"title":{},"body":{"license.html":{}}}],["eclipse",{"_index":1541,"title":{},"body":{"license.html":{}}}],["economic",{"_index":1260,"title":{},"body":{"license.html":{}}}],["effective",{"_index":1259,"title":{},"body":{"license.html":{}}}],["el",{"_index":712,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["electronic",{"_index":1458,"title":{},"body":{"license.html":{}}}],["element",{"_index":717,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["elementref",{"_index":618,"title":{},"body":{"directives/TranslateMockDirective.html":{},"injectables/UxDynamicComponentService.html":{}}}],["elements",{"_index":841,"title":{},"body":{"dependencies.html":{}}}],["email",{"_index":541,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["emission",{"_index":116,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{}}}],["emit",{"_index":431,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["empty",{"_index":1006,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["empty_api_queue",{"_index":1005,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["emptyapiqueueaction",{"_index":260,"title":{"classes/EmptyApiQueueAction.html":{}},"body":{"classes/EmptyApiQueueAction.html":{}}}],["enabled",{"_index":211,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["enforceability",{"_index":1489,"title":{},"body":{"license.html":{}}}],["enforceable",{"_index":1494,"title":{},"body":{"license.html":{}}}],["english",{"_index":791,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["enumerations",{"_index":980,"title":{"miscellaneous/enumerations.html":{}},"body":{"miscellaneous/enumerations.html":{}}}],["envapphandler",{"_index":1082,"title":{},"body":{"miscellaneous/functions.html":{}}}],["envappjsonconfig",{"_index":1085,"title":{},"body":{"miscellaneous/functions.html":{}}}],["envconfig",{"_index":1105,"title":{},"body":{"miscellaneous/functions.html":{}}}],["environment",{"_index":1106,"title":{},"body":{"miscellaneous/functions.html":{}}}],["equal",{"_index":391,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["equals",{"_index":377,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["equals(obj",{"_index":388,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["err",{"_index":756,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["error",{"_index":235,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalStorageService.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/ResourceError.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"miscellaneous/functions.html":{}}}],["errorhandler",{"_index":328,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["errormanager",{"_index":1113,"title":{},"body":{"miscellaneous/functions.html":{}}}],["errormappinghandler",{"_index":773,"title":{},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["errors",{"_index":456,"title":{},"body":{"interfaces/LoadedResources.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"license.html":{}}}],["errorsubclass",{"_index":262,"title":{"classes/ErrorSubClass.html":{}},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["es",{"_index":954,"title":{},"body":{"dependencies.html":{}}}],["eslint",{"_index":830,"title":{},"body":{"dependencies.html":{}}}],["eslint/builder",{"_index":822,"title":{},"body":{"dependencies.html":{}}}],["eslint/eslint",{"_index":824,"title":{},"body":{"dependencies.html":{}}}],["eslint/parser",{"_index":837,"title":{},"body":{"dependencies.html":{}}}],["eslint/schematics",{"_index":827,"title":{},"body":{"dependencies.html":{}}}],["eslint/template",{"_index":828,"title":{},"body":{"dependencies.html":{}}}],["essential",{"_index":1216,"title":{},"body":{"license.html":{}}}],["establishing",{"_index":1518,"title":{},"body":{"license.html":{}}}],["eui",{"_index":204,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["eui/ecl",{"_index":976,"title":{},"body":{"dependencies.html":{}}}],["eui/styles",{"_index":972,"title":{},"body":{"dependencies.html":{}}}],["eui/tools",{"_index":977,"title":{},"body":{"dependencies.html":{}}}],["eui_config_token",{"_index":250,"title":{},"body":{"modules/CoreModule.html":{}}}],["euiappconfig",{"_index":347,"title":{},"body":{"injectables/I18nLoader.html":{},"miscellaneous/functions.html":{}}}],["euiapphandlersconfig",{"_index":1083,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euiappjsonconfig",{"_index":1086,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euiconfig",{"_index":1090,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euicorerootguardclass",{"_index":276,"title":{"classes/EuiCoreRootGuardClass.html":{}},"body":{"classes/EuiCoreRootGuardClass.html":{}}}],["euienvconfig",{"_index":1095,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euierror",{"_index":277,"title":{"classes/EuiError.html":{}},"body":{"classes/EuiError.html":{}}}],["euilazyservice",{"_index":401,"title":{},"body":{"injectables/I18nService.html":{}}}],["euilogservicefactory",{"_index":1025,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euilogservicefactory(injector",{"_index":1061,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euipermissionservice",{"_index":278,"title":{"injectables/EuiPermissionService.html":{}},"body":{"injectables/EuiPermissionService.html":{},"injectables/UxDynamicMenuService.html":{}}}],["euiservice",{"_index":280,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{}}}],["euiservicestatus",{"_index":410,"title":{},"body":{"injectables/I18nService.html":{}}}],["euloginsessiontimeouthandlinginterceptor",{"_index":270,"title":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}}}],["eupl",{"_index":1127,"title":{},"body":{"license.html":{},"properties.html":{}}}],["european",{"_index":1122,"title":{},"body":{"license.html":{}}}],["even",{"_index":1410,"title":{},"body":{"license.html":{}}}],["event",{"_index":950,"title":{},"body":{"dependencies.html":{},"license.html":{}}}],["events",{"_index":550,"title":{},"body":{"classes/RouterMock.html":{}}}],["example",{"_index":1459,"title":{},"body":{"license.html":{}}}],["except",{"_index":1341,"title":{},"body":{"license.html":{}}}],["exception",{"_index":1285,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":1227,"title":{},"body":{"license.html":{}}}],["executable",{"_index":1160,"title":{},"body":{"license.html":{}}}],["execution",{"_index":113,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["exercise",{"_index":1257,"title":{},"body":{"license.html":{}}}],["exercised",{"_index":1244,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":1455,"title":{},"body":{"license.html":{}}}],["exhaustion",{"_index":1288,"title":{},"body":{"license.html":{}}}],["exist",{"_index":515,"title":{},"body":{"injectables/LogService.html":{}}}],["exports",{"_index":623,"title":{},"body":{"modules/TranslateMockModule.html":{}}}],["expressed",{"_index":1151,"title":{},"body":{"license.html":{}}}],["expressly",{"_index":1316,"title":{},"body":{"license.html":{}}}],["extend",{"_index":138,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["extends",{"_index":128,"title":{},"body":{"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"classes/OpenIdConnectServiceMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageServiceMock.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["extent",{"_index":1139,"title":{},"body":{"license.html":{}}}],["extract",{"_index":185,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["fact",{"_index":1438,"title":{},"body":{"license.html":{}}}],["failed",{"_index":355,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["fails",{"_index":102,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["failure",{"_index":1406,"title":{},"body":{"license.html":{}}}],["false",{"_index":354,"title":{},"body":{"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/LogService.html":{}}}],["far",{"_index":1252,"title":{},"body":{"license.html":{}}}],["feature",{"_index":210,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["fee",{"_index":1421,"title":{},"body":{"license.html":{}}}],["feedback.service.ts",{"_index":743,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["feedback/ux",{"_index":742,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["fetch",{"_index":436,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["field",{"_index":305,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["fields",{"_index":303,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["file",{"_index":4,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["filteruxlinkswithrights",{"_index":735,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["filteruxlinkswithrights(links",{"_index":739,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["finished",{"_index":1366,"title":{},"body":{"license.html":{}}}],["first",{"_index":293,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["firstname",{"_index":542,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["fitness",{"_index":1378,"title":{},"body":{"license.html":{}}}],["followed",{"_index":295,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["following",{"_index":1146,"title":{},"body":{"license.html":{}}}],["follows",{"_index":118,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["forage.service.ts",{"_index":461,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["forchild",{"_index":241,"title":{},"body":{"modules/CoreModule.html":{},"modules/LogModule.html":{}}}],["forchild(config",{"_index":491,"title":{},"body":{"modules/LogModule.html":{}}}],["forchild(modulename",{"_index":242,"title":{},"body":{"modules/CoreModule.html":{}}}],["form",{"_index":1180,"title":{},"body":{"license.html":{}}}],["formats",{"_index":1247,"title":{},"body":{"license.html":{}}}],["forroot",{"_index":245,"title":{},"body":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"modules/LogModule.html":{}}}],["forroot(config",{"_index":497,"title":{},"body":{"modules/LogModule.html":{}}}],["free",{"_index":1226,"title":{},"body":{"license.html":{}}}],["freely",{"_index":1276,"title":{},"body":{"license.html":{}}}],["freeze",{"_index":895,"title":{},"body":{"dependencies.html":{}}}],["fromevent(window",{"_index":196,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["full",{"_index":1477,"title":{},"body":{"license.html":{}}}],["fully",{"_index":411,"title":{},"body":{"injectables/I18nService.html":{}}}],["function",{"_index":158,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocaleService.html":{},"classes/StorageService.html":{},"injectables/StoreService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["functionalities",{"_index":1217,"title":{},"body":{"license.html":{}}}],["functions",{"_index":1019,"title":{"miscellaneous/functions.html":{}},"body":{"miscellaneous/functions.html":{}}}],["functions.ts",{"_index":1023,"title":{},"body":{"miscellaneous/functions.html":{}}}],["general",{"_index":1533,"title":{},"body":{"license.html":{}}}],["generally",{"_index":1185,"title":{},"body":{"license.html":{}}}],["generic",{"_index":132,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["get(content",{"_index":652,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["get(key",{"_index":146,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["getappconnectioninformation",{"_index":171,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["getbrowserlang",{"_index":639,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["getcorechildproviders",{"_index":1027,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getcorechildproviders(modulename",{"_index":1072,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getcoreproviders",{"_index":1030,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getcountries",{"_index":778,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["getcurrentlanguage",{"_index":450,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["getcurrentlocale",{"_index":485,"title":{},"body":{"injectables/LocaleService.html":{}}}],["getdependencyproviders",{"_index":1031,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getfailedresources",{"_index":342,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["getglobalconfig",{"_index":1032,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getglobalconfig(appconfig",{"_index":1075,"title":{},"body":{"miscellaneous/functions.html":{}}}],["gethttperrorhandlingconfig",{"_index":1034,"title":{},"body":{"miscellaneous/functions.html":{}}}],["gethttperrorhandlingconfig(appconfig",{"_index":1077,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getlangs",{"_index":640,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["getlogappendersconfig",{"_index":1035,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getlogappendersconfig(config",{"_index":1067,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getlogger",{"_index":507,"title":{},"body":{"injectables/LogService.html":{},"classes/LogServiceMock.html":{}}}],["getlogger(loggername",{"_index":513,"title":{},"body":{"injectables/LogService.html":{}}}],["getmenulinks",{"_index":736,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["getmoduleconfig",{"_index":1036,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getmoduleconfig(appconfig",{"_index":1078,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getonlangchange",{"_index":449,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["getpath",{"_index":378,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["getpath(lang",{"_index":397,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["getpreviouslocale",{"_index":484,"title":{},"body":{"injectables/LocaleService.html":{}}}],["getqueue",{"_index":64,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["getqueueitem",{"_index":65,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["getqueueitem(id",{"_index":95,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["getrootlogconfig",{"_index":1037,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getrootlogconfig(appconfig",{"_index":1079,"title":{},"body":{"miscellaneous/functions.html":{}}}],["gets",{"_index":357,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/LogService.html":{},"injectables/UxTimezoneService.html":{}}}],["getshowconnectionstatus",{"_index":1038,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getshowconnectionstatus(globalconfig",{"_index":1080,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getstate",{"_index":284,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["getstate(key",{"_index":415,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{}}}],["getstate(keyormapfn",{"_index":416,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{}}}],["getstate(mapfn",{"_index":413,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["gettimezone",{"_index":779,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["gettimezone(tz",{"_index":786,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["gettimezones",{"_index":780,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["getting",{"_index":500,"title":{"license.html":{}},"body":{"injectables/LogService.html":{}}}],["gettranslation",{"_index":343,"title":{},"body":{"injectables/I18nLoader.html":{},"classes/TranslateServiceMock.html":{}}}],["gettranslation(lang",{"_index":356,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["getuserdetails",{"_index":534,"title":{},"body":{"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{}}}],["getuserid",{"_index":696,"title":{},"body":{"injectables/UserServiceMock.html":{}}}],["given",{"_index":125,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["giving",{"_index":1206,"title":{},"body":{"license.html":{}}}],["globalconfig",{"_index":406,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"miscellaneous/functions.html":{}}}],["globalerrorhandler",{"_index":325,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"injectables/GlobalErrorHandler.html":{}}}],["globalstate",{"_index":577,"title":{},"body":{"classes/StoreMock.html":{}}}],["gnu",{"_index":1532,"title":{},"body":{"license.html":{}}}],["going",{"_index":433,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["goodwill",{"_index":1404,"title":{},"body":{"license.html":{}}}],["governed",{"_index":1524,"title":{},"body":{"license.html":{}}}],["gpl",{"_index":1534,"title":{},"body":{"license.html":{}}}],["grant",{"_index":1291,"title":{},"body":{"license.html":{}}}],["granted",{"_index":1220,"title":{},"body":{"license.html":{}}}],["grants",{"_index":1222,"title":{},"body":{"license.html":{}}}],["groupid",{"_index":751,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["growl",{"_index":755,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["growlerror",{"_index":747,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["growlerror(err",{"_index":753,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["growlhttperrorcallbackfn",{"_index":1039,"title":{},"body":{"miscellaneous/functions.html":{}}}],["growlhttperrorcallbackfn(error",{"_index":1058,"title":{},"body":{"miscellaneous/functions.html":{}}}],["hammerjs",{"_index":957,"title":{},"body":{"dependencies.html":{}}}],["handleautosave",{"_index":583,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["handlebars",{"_index":959,"title":{},"body":{"dependencies.html":{}}}],["handleerror",{"_index":329,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":331,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler",{"_index":585,"title":{},"body":{"injectables/StoreService.html":{},"miscellaneous/functions.html":{}}}],["handler.interceptor.ts",{"_index":334,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{}}}],["handler.operator.ts",{"_index":1054,"title":{},"body":{"miscellaneous/functions.html":{}}}],["handler.ts",{"_index":327,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handling.interceptor.ts",{"_index":275,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}}}],["harmless",{"_index":1433,"title":{},"body":{"license.html":{}}}],["haserror",{"_index":457,"title":{},"body":{"interfaces/LoadedResources.html":{}}}],["he/she",{"_index":1305,"title":{},"body":{"license.html":{}}}],["header",{"_index":42,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["headers",{"_index":46,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["held",{"_index":1265,"title":{},"body":{"license.html":{}}}],["helper",{"_index":157,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"miscellaneous/functions.html":{}}}],["here",{"_index":1261,"title":{},"body":{"license.html":{}}}],["hereby",{"_index":1221,"title":{},"body":{"license.html":{}}}],["hereunder",{"_index":1350,"title":{},"body":{"license.html":{}}}],["him/her",{"_index":1352,"title":{},"body":{"license.html":{}}}],["his/her",{"_index":1333,"title":{},"body":{"license.html":{}}}],["hold",{"_index":1432,"title":{},"body":{"license.html":{}}}],["holder",{"_index":1143,"title":{},"body":{"license.html":{}}}],["host",{"_index":715,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["html",{"_index":867,"title":{},"body":{"dependencies.html":{}}}],["http",{"_index":45,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/I18nLoader.html":{}}}],["http://localhost:4200/login",{"_index":561,"title":{},"body":{"classes/RouterMock.html":{}}}],["httpclient",{"_index":73,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/I18nLoader.html":{}}}],["httperrorhandlerconfig",{"_index":336,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{},"miscellaneous/functions.html":{}}}],["httperrorhandlerinterceptor",{"_index":332,"title":{"interceptors/HttpErrorHandlerInterceptor.html":{}},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{}}}],["httperroroperator",{"_index":764,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["httperrorresponse",{"_index":1056,"title":{},"body":{"miscellaneous/functions.html":{}}}],["httphandler",{"_index":54,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["httprequest",{"_index":52,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["https://citnet.tech.ec.europa.eu/citnet/stash/projects/csdr/repos/root",{"_index":1545,"title":{},"body":{"properties.html":{}}}],["https://localforage.github.io/localforage",{"_index":466,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["human",{"_index":1178,"title":{},"body":{"license.html":{}}}],["i18n",{"_index":370,"title":{},"body":{"modules/I18nModule.html":{},"injectables/LocaleService.html":{},"miscellaneous/enumerations.html":{}}}],["i18n.onready('my_module').pipe(switchmap(()=>translate.get('eui.key",{"_index":430,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["i18nloader",{"_index":339,"title":{"injectables/I18nLoader.html":{}},"body":{"injectables/I18nLoader.html":{}}}],["i18nloaderconfig",{"_index":349,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["i18nmodule",{"_index":368,"title":{"modules/I18nModule.html":{}},"body":{"modules/I18nModule.html":{},"modules.html":{}}}],["i18nresourceimpl",{"_index":353,"title":{"classes/I18nResourceImpl.html":{}},"body":{"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ResourceError.html":{}}}],["i18nservice",{"_index":399,"title":{"injectables/I18nService.html":{}},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{}}}],["i18nservicemock",{"_index":442,"title":{"injectables/I18nServiceMock.html":{}},"body":{"injectables/I18nServiceMock.html":{}}}],["i18nstate",{"_index":441,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/UpdateI18nStateAction.html":{}}}],["icon",{"_index":1442,"title":{},"body":{"license.html":{}}}],["id",{"_index":85,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/EuiPermissionService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/UxErrorFeedbackService.html":{}}}],["identical",{"_index":1503,"title":{},"body":{"license.html":{}}}],["immediately",{"_index":1148,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":163,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["implements",{"_index":6,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"directives/TranslateMockDirective.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{}}}],["import",{"_index":494,"title":{},"body":{"modules/LogModule.html":{},"dependencies.html":{}}}],["impose",{"_index":1319,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":1293,"title":{},"body":{"license.html":{}}}],["improved",{"_index":1364,"title":{},"body":{"license.html":{}}}],["include",{"_index":1304,"title":{},"body":{"license.html":{}}}],["including",{"_index":1235,"title":{},"body":{"license.html":{}}}],["incurred",{"_index":1434,"title":{},"body":{"license.html":{}}}],["indemnify",{"_index":1430,"title":{},"body":{"license.html":{}}}],["indemnity",{"_index":1423,"title":{},"body":{"license.html":{}}}],["index",{"_index":8,"title":{"index.html":{}},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["indicate",{"_index":1336,"title":{},"body":{"license.html":{}}}],["indicates",{"_index":389,"title":{},"body":{"classes/I18nResourceImpl.html":{},"license.html":{}}}],["indirect",{"_index":1399,"title":{},"body":{"license.html":{}}}],["infinite",{"_index":903,"title":{},"body":{"dependencies.html":{}}}],["info",{"_index":3,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{}}}],["information",{"_index":1456,"title":{},"body":{"license.html":{}}}],["informed",{"_index":221,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["infringement",{"_index":1383,"title":{},"body":{"license.html":{}}}],["inherent",{"_index":1370,"title":{},"body":{"license.html":{}}}],["init",{"_index":285,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["init(i18nstate",{"_index":447,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["init(langstate",{"_index":418,"title":{},"body":{"injectables/I18nService.html":{}}}],["init(rights",{"_index":320,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["init(state",{"_index":479,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["init(userstate",{"_index":689,"title":{},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["init(version",{"_index":597,"title":{},"body":{"injectables/StoreService.html":{}}}],["init_store",{"_index":992,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["initialize",{"_index":322,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["initstoreaction",{"_index":451,"title":{"classes/InitStoreAction.html":{}},"body":{"classes/InitStoreAction.html":{},"miscellaneous/typealiases.html":{}}}],["injectable",{"_index":58,"title":{"injectables/ApiQueueService.html":{},"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"injectables/OpenIdConnectService.html":{},"injectables/SessionStorageService.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"injectables/UxTimezoneService.html":{}},"body":{}}],["injectables",{"_index":60,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"injectables/OpenIdConnectService.html":{},"injectables/SessionStorageService.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"injectables/UxTimezoneService.html":{},"index.html":{}}}],["injected",{"_index":716,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["injector",{"_index":337,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/UxDynamicComponentService.html":{},"miscellaneous/functions.html":{}}}],["injector.guard.ts",{"_index":775,"title":{},"body":{"classes/UxRootInjectorGuard.html":{}}}],["inputs",{"_index":615,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["inside",{"_index":87,"title":{},"body":{"injectables/ApiQueueService.html":{},"license.html":{}}}],["instance",{"_index":366,"title":{},"body":{"injectables/I18nLoader.html":{},"modules/LogModule.html":{},"miscellaneous/functions.html":{}}}],["instanceid",{"_index":758,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["instant",{"_index":641,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["instant(key",{"_index":654,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["intact",{"_index":1297,"title":{},"body":{"license.html":{}}}],["intellectual",{"_index":1384,"title":{},"body":{"license.html":{}}}],["intended",{"_index":1282,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":48,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/StoreService.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["intercept(req",{"_index":51,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["intercept(request",{"_index":257,"title":{},"body":{"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{}}}],["interceptor",{"_index":30,"title":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["interceptors",{"_index":32,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["interface",{"_index":453,"title":{"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"interfaces/ResourceError.html":{},"interfaces/TimeZone.html":{}},"body":{}}],["interfaces",{"_index":455,"title":{},"body":{"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"interfaces/ResourceError.html":{},"interfaces/TimeZone.html":{},"index.html":{}}}],["interpretation",{"_index":1510,"title":{},"body":{"license.html":{}}}],["interpreted",{"_index":1188,"title":{},"body":{"license.html":{}}}],["intl",{"_index":918,"title":{},"body":{"dependencies.html":{}}}],["invalid",{"_index":1485,"title":{},"body":{"license.html":{}}}],["invented",{"_index":1251,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":1452,"title":{},"body":{"license.html":{}}}],["irrevocably",{"_index":1454,"title":{},"body":{"license.html":{}}}],["isdeepmerge",{"_index":1088,"title":{},"body":{"miscellaneous/functions.html":{}}}],["iserror",{"_index":547,"title":{},"body":{"interfaces/ResourceError.html":{}}}],["isfeatureenabled",{"_index":212,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["isglobal",{"_index":766,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["isloaded",{"_index":630,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["isloadedsubject",{"_index":631,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["islogconfigdefined",{"_index":1040,"title":{},"body":{"miscellaneous/functions.html":{}}}],["islogconfigdefined(config",{"_index":1068,"title":{},"body":{"miscellaneous/functions.html":{}}}],["iso",{"_index":783,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["iso2country",{"_index":781,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["iso2country(iso",{"_index":788,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["istanbul",{"_index":870,"title":{},"body":{"dependencies.html":{}}}],["item",{"_index":78,"title":{},"body":{"injectables/ApiQueueService.html":{},"miscellaneous/enumerations.html":{}}}],["items",{"_index":94,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["itself",{"_index":503,"title":{},"body":{"injectables/LogService.html":{}}}],["jasmine",{"_index":856,"title":{},"body":{"dependencies.html":{}}}],["javascript",{"_index":464,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["js",{"_index":948,"title":{},"body":{"dependencies.html":{}}}],["jsdoc",{"_index":834,"title":{},"body":{"dependencies.html":{}}}],["jsrsasign",{"_index":945,"title":{},"body":{"dependencies.html":{}}}],["jurisdiction",{"_index":1507,"title":{},"body":{"license.html":{}}}],["justice",{"_index":1512,"title":{},"body":{"license.html":{}}}],["k",{"_index":317,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["karma",{"_index":859,"title":{},"body":{"dependencies.html":{}}}],["keep",{"_index":1296,"title":{},"body":{"license.html":{}}}],["key",{"_index":148,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/I18nService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"injectables/StoreService.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{}}}],["keyormapfn",{"_index":417,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{}}}],["kind",{"_index":1375,"title":{},"body":{"license.html":{}}}],["known",{"_index":1249,"title":{},"body":{"license.html":{}}}],["laid",{"_index":1514,"title":{},"body":{"license.html":{}}}],["lang",{"_index":34,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"classes/TranslateServiceMock.html":{}}}],["lang_param_key",{"_index":43,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["langs",{"_index":651,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["langstate",{"_index":419,"title":{},"body":{"injectables/I18nService.html":{}}}],["language",{"_index":39,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{}}}],["languages",{"_index":632,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["last",{"_index":304,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["lastname",{"_index":543,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["later",{"_index":1250,"title":{},"body":{"license.html":{}}}],["launcher",{"_index":862,"title":{},"body":{"dependencies.html":{}}}],["law",{"_index":1173,"title":{},"body":{"license.html":{}}}],["laws",{"_index":1415,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":493,"title":{},"body":{"modules/LogModule.html":{}}}],["lazyload",{"_index":402,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["lazyload(config",{"_index":420,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["lazyloadinit",{"_index":403,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["lazyloadinit(moduleconfig",{"_index":421,"title":{},"body":{"injectables/I18nService.html":{}}}],["legal",{"_index":1192,"title":{},"body":{"license.html":{}}}],["lend",{"_index":1240,"title":{},"body":{"license.html":{}}}],["lending",{"_index":1207,"title":{},"body":{"license.html":{}}}],["level",{"_index":509,"title":{},"body":{"injectables/LogService.html":{}}}],["liability",{"_index":1389,"title":{},"body":{"license.html":{}}}],["liable",{"_index":1397,"title":{},"body":{"license.html":{}}}],["library",{"_index":465,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["licence",{"_index":1124,"title":{},"body":{"license.html":{}}}],["licences",{"_index":1329,"title":{},"body":{"license.html":{}}}],["license",{"_index":1121,"title":{"license.html":{}},"body":{"license.html":{},"properties.html":{}}}],["licensed",{"_index":1149,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":1163,"title":{},"body":{"license.html":{}}}],["licensee's",{"_index":1331,"title":{},"body":{"license.html":{}}}],["licensor",{"_index":1145,"title":{},"body":{"license.html":{}}}],["life",{"_index":233,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["lifespan",{"_index":216,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["limitation",{"_index":1286,"title":{},"body":{"license.html":{}}}],["limitations",{"_index":1280,"title":{},"body":{"license.html":{}}}],["line",{"_index":1213,"title":{},"body":{"license.html":{}}}],["linguistic",{"_index":1497,"title":{},"body":{"license.html":{}}}],["links",{"_index":740,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["list",{"_index":782,"title":{},"body":{"injectables/UxTimezoneService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["listed",{"_index":1263,"title":{},"body":{"license.html":{}}}],["literal",{"_index":26,"title":{},"body":{"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/InitStoreAction.html":{}}}],["litigation",{"_index":1508,"title":{},"body":{"license.html":{}}}],["load",{"_index":364,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/LocaleService.html":{},"miscellaneous/functions.html":{}}}],["loaded",{"_index":412,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"modules/LogModule.html":{},"miscellaneous/enumerations.html":{}}}],["loadedresources",{"_index":454,"title":{"interfaces/LoadedResources.html":{}},"body":{"interfaces/LoadedResources.html":{}}}],["loadedresourceserror",{"_index":458,"title":{"interfaces/LoadedResourcesError.html":{}},"body":{"interfaces/LoadedResourcesError.html":{}}}],["loader",{"_index":351,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"dependencies.html":{}}}],["loadeuidynamicenvironmentconfig",{"_index":1041,"title":{},"body":{"miscellaneous/functions.html":{}}}],["loadeuidynamicenvironmentconfig(url",{"_index":1091,"title":{},"body":{"miscellaneous/functions.html":{}}}],["loadresources",{"_index":344,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["loadresources(resources",{"_index":360,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["loads",{"_index":361,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["loaduserdetails",{"_index":697,"title":{},"body":{"injectables/UserServiceMock.html":{}}}],["loaduserpreferences",{"_index":698,"title":{},"body":{"injectables/UserServiceMock.html":{}}}],["local",{"_index":469,"title":{},"body":{"injectables/LocalStorageService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["locale",{"_index":483,"title":{},"body":{"injectables/LocaleService.html":{},"miscellaneous/enumerations.html":{}}}],["locale_id",{"_index":476,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["localemapper",{"_index":477,"title":{},"body":{"injectables/LocaleService.html":{},"miscellaneous/typealiases.html":{}}}],["localeservice",{"_index":470,"title":{"injectables/LocaleService.html":{}},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["localeservicemock",{"_index":486,"title":{"injectables/LocaleServiceMock.html":{}},"body":{"injectables/LocaleServiceMock.html":{}}}],["localestate",{"_index":480,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"classes/UpdateLocaleStateAction.html":{}}}],["localforage",{"_index":462,"title":{},"body":{"injectables/LocalForageService.html":{},"dependencies.html":{}}}],["localforageservice",{"_index":459,"title":{"injectables/LocalForageService.html":{}},"body":{"injectables/LocalForageService.html":{}}}],["localstorage",{"_index":468,"title":{},"body":{"injectables/LocalStorageService.html":{}}}],["localstorageservice",{"_index":467,"title":{"injectables/LocalStorageService.html":{}},"body":{"injectables/LocalStorageService.html":{}}}],["localstoragesync",{"_index":1043,"title":{},"body":{"miscellaneous/functions.html":{}}}],["localstoragesync(reducer",{"_index":1109,"title":{},"body":{"miscellaneous/functions.html":{}}}],["location",{"_index":1463,"title":{},"body":{"license.html":{}}}],["lodash",{"_index":953,"title":{},"body":{"dependencies.html":{}}}],["log",{"_index":288,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"miscellaneous/functions.html":{}}}],["logappender",{"_index":512,"title":{},"body":{"injectables/LogService.html":{},"miscellaneous/functions.html":{}}}],["logconfig",{"_index":492,"title":{},"body":{"modules/LogModule.html":{},"miscellaneous/functions.html":{}}}],["logger",{"_index":506,"title":{},"body":{"injectables/LogService.html":{}}}],["loggermock",{"_index":521,"title":{},"body":{"classes/LogServiceMock.html":{}}}],["loggername",{"_index":517,"title":{},"body":{"injectables/LogService.html":{}}}],["loggers",{"_index":502,"title":{},"body":{"injectables/LogService.html":{}}}],["loghttperrorcallbackfn",{"_index":1045,"title":{},"body":{"miscellaneous/functions.html":{}}}],["loghttperrorcallbackfn(error",{"_index":1059,"title":{},"body":{"miscellaneous/functions.html":{}}}],["login",{"_index":272,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}}}],["loglevel",{"_index":510,"title":{},"body":{"injectables/LogService.html":{}}}],["logmodule",{"_index":489,"title":{"modules/LogModule.html":{}},"body":{"modules/LogModule.html":{},"modules.html":{}}}],["logservice",{"_index":74,"title":{"injectables/LogService.html":{}},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"injectables/StoreService.html":{},"miscellaneous/functions.html":{}}}],["logservicefactory",{"_index":1046,"title":{},"body":{"miscellaneous/functions.html":{}}}],["logservicefactory(config",{"_index":1070,"title":{},"body":{"miscellaneous/functions.html":{}}}],["logservicemock",{"_index":519,"title":{"classes/LogServiceMock.html":{}},"body":{"classes/LogServiceMock.html":{}}}],["long",{"_index":1278,"title":{},"body":{"license.html":{}}}],["loss",{"_index":1403,"title":{},"body":{"license.html":{}}}],["machine",{"_index":1269,"title":{},"body":{"license.html":{}}}],["main.ts",{"_index":1104,"title":{},"body":{"miscellaneous/functions.html":{}}}],["make",{"_index":1233,"title":{},"body":{"license.html":{}}}],["makes",{"_index":1200,"title":{},"body":{"license.html":{}}}],["making",{"_index":1212,"title":{},"body":{"license.html":{}}}],["malfunction",{"_index":1407,"title":{},"body":{"license.html":{}}}],["map((action",{"_index":182,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["map((connected",{"_index":198,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["mapfn",{"_index":414,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["marbles",{"_index":876,"title":{},"body":{"dependencies.html":{}}}],["marked",{"_index":939,"title":{},"body":{"dependencies.html":{}}}],["marks",{"_index":1340,"title":{},"body":{"license.html":{}}}],["mask",{"_index":909,"title":{},"body":{"dependencies.html":{}}}],["matches",{"_index":84,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["matching",{"_index":24,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"properties.html":{},"miscellaneous/typealiases.html":{}}}],["material",{"_index":1400,"title":{},"body":{"license.html":{}}}],["matter",{"_index":112,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["mean",{"_index":1152,"title":{},"body":{"license.html":{}}}],["meaning",{"_index":1155,"title":{},"body":{"license.html":{}}}],["means",{"_index":1457,"title":{},"body":{"license.html":{}}}],["meant",{"_index":1187,"title":{},"body":{"license.html":{}}}],["media",{"_index":1245,"title":{},"body":{"license.html":{}}}],["mentioned",{"_index":1175,"title":{},"body":{"license.html":{}}}],["menu.service.ts",{"_index":733,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["menu/ux",{"_index":732,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["menulinks",{"_index":734,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["merchantability",{"_index":1377,"title":{},"body":{"license.html":{}}}],["merge",{"_index":1087,"title":{},"body":{"miscellaneous/functions.html":{}}}],["merge(fromevent(window",{"_index":194,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["mergeapphandlerconfigtoappconfig",{"_index":1047,"title":{},"body":{"miscellaneous/functions.html":{}}}],["mergeapphandlerconfigtoappconfig(euiappconfig",{"_index":1081,"title":{},"body":{"miscellaneous/functions.html":{}}}],["mergeappjsonconfigtoappconfig",{"_index":1048,"title":{},"body":{"miscellaneous/functions.html":{}}}],["mergeappjsonconfigtoappconfig(euiappconfig",{"_index":1084,"title":{},"body":{"miscellaneous/functions.html":{}}}],["mergemap((route",{"_index":184,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["mergeuserpreferences",{"_index":699,"title":{},"body":{"injectables/UserServiceMock.html":{}}}],["message",{"_index":230,"title":{},"body":{"injectables/CoreAppEffects.html":{},"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["meta",{"_index":1110,"title":{},"body":{"miscellaneous/functions.html":{}}}],["metadata",{"_index":614,"title":{},"body":{"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{}}}],["method",{"_index":371,"title":{},"body":{"modules/I18nModule.html":{},"modules/LogModule.html":{}}}],["methods",{"_index":47,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"injectables/UxTimezoneService.html":{}}}],["miscellaneous",{"_index":979,"title":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/typealiases.html":{}}}],["misconduct",{"_index":1392,"title":{},"body":{"license.html":{}}}],["mock",{"_index":927,"title":{},"body":{"dependencies.html":{}}}],["model.interceptor.ts",{"_index":771,"title":{},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["modification",{"_index":1168,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":1165,"title":{},"body":{"license.html":{}}}],["modified",{"_index":1310,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":1197,"title":{},"body":{"license.html":{}}}],["modify",{"_index":1184,"title":{},"body":{"license.html":{}}}],["module",{"_index":186,"title":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"modules/LogModule.html":{},"modules/TranslateMockModule.html":{}},"body":{"injectables/CoreAppEffects.html":{},"modules/I18nModule.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"modules/LogModule.html":{},"miscellaneous/enumerations.html":{}}}],["moduleconfig",{"_index":422,"title":{},"body":{"injectables/I18nService.html":{},"miscellaneous/functions.html":{}}}],["moduleloadevent",{"_index":522,"title":{"interfaces/ModuleLoadEvent.html":{}},"body":{"interfaces/ModuleLoadEvent.html":{}}}],["modulename",{"_index":243,"title":{},"body":{"modules/CoreModule.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"miscellaneous/functions.html":{}}}],["modules",{"_index":237,"title":{"modules.html":{}},"body":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"modules/LogModule.html":{},"modules/TranslateMockModule.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"modules.html":{}}}],["modulewithproviders",{"_index":244,"title":{},"body":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"modules/LogModule.html":{}}}],["moment",{"_index":818,"title":{},"body":{"dependencies.html":{}}}],["moral",{"_index":1254,"title":{},"body":{"license.html":{}}}],["more",{"_index":246,"title":{},"body":{"modules/CoreModule.html":{},"injectables/EuiPermissionService.html":{}}}],["msg",{"_index":267,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["multiple",{"_index":311,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["name",{"_index":18,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["names",{"_index":1339,"title":{},"body":{"license.html":{}}}],["natural",{"_index":1191,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":554,"title":{},"body":{"classes/RouterMock.html":{}}}],["navigate(url",{"_index":562,"title":{},"body":{"classes/RouterMock.html":{}}}],["navigatebyurl",{"_index":555,"title":{},"body":{"classes/RouterMock.html":{}}}],["navigatebyurl(url",{"_index":564,"title":{},"body":{"classes/RouterMock.html":{}}}],["navigationend(0",{"_index":560,"title":{},"body":{"classes/RouterMock.html":{}}}],["ne",{"_index":551,"title":{},"body":{"classes/RouterMock.html":{}}}],["necessary",{"_index":1266,"title":{},"body":{"license.html":{}}}],["needs",{"_index":220,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/functions.html":{}}}],["new",{"_index":192,"title":{},"body":{"injectables/CoreAppEffects.html":{},"classes/RouterMock.html":{},"classes/TranslateServiceMock.html":{},"injectables/UxErrorFeedbackService.html":{},"license.html":{}}}],["next",{"_index":53,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["ng",{"_index":812,"title":{},"body":{"dependencies.html":{}}}],["ngondestroy",{"_index":473,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["ngrx",{"_index":589,"title":{},"body":{"injectables/StoreService.html":{},"dependencies.html":{}}}],["ngrx/component",{"_index":894,"title":{},"body":{"dependencies.html":{}}}],["ngrx/effects",{"_index":887,"title":{},"body":{"dependencies.html":{}}}],["ngrx/entity",{"_index":893,"title":{},"body":{"dependencies.html":{}}}],["ngrx/router",{"_index":889,"title":{},"body":{"dependencies.html":{}}}],["ngrx/schematics",{"_index":890,"title":{},"body":{"dependencies.html":{}}}],["ngrx/store",{"_index":891,"title":{},"body":{"dependencies.html":{}}}],["ngx",{"_index":428,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"dependencies.html":{}}}],["node",{"_index":881,"title":{},"body":{"dependencies.html":{}}}],["non",{"_index":438,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"modules/LogModule.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["nothing",{"_index":1281,"title":{},"body":{"license.html":{}}}],["notice",{"_index":1147,"title":{},"body":{"license.html":{}}}],["notices",{"_index":1300,"title":{},"body":{"license.html":{}}}],["notif",{"_index":1010,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["now",{"_index":1248,"title":{},"body":{"license.html":{}}}],["null",{"_index":1066,"title":{},"body":{"miscellaneous/functions.html":{}}}],["number",{"_index":528,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["numerous",{"_index":1365,"title":{},"body":{"license.html":{}}}],["obj",{"_index":392,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["object",{"_index":92,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/AsyncStorageService.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResources.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"miscellaneous/functions.html":{}}}],["obligations",{"_index":1290,"title":{},"body":{"license.html":{}}}],["observable",{"_index":57,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/EuiPermissionService.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"injectables/StoreService.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["observable((observer",{"_index":557,"title":{},"body":{"classes/RouterMock.html":{}}}],["observepreferencesupdate",{"_index":700,"title":{},"body":{"injectables/UserServiceMock.html":{}}}],["observer",{"_index":921,"title":{},"body":{"dependencies.html":{}}}],["observer.complete",{"_index":559,"title":{},"body":{"classes/RouterMock.html":{}}}],["observer.next(this.ne",{"_index":558,"title":{},"body":{"classes/RouterMock.html":{}}}],["offer",{"_index":1318,"title":{},"body":{"license.html":{}}}],["offering",{"_index":1460,"title":{},"body":{"license.html":{}}}],["office",{"_index":1526,"title":{},"body":{"license.html":{}}}],["offline').pipe(mapto(false))).pipe",{"_index":197,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["oftype(coreappactiontypes.activated_route",{"_index":181,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["oftype(coreappactiontypes.update_app_connection",{"_index":200,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["oidc",{"_index":942,"title":{},"body":{"dependencies.html":{}}}],["once",{"_index":432,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["ondefaultlangchange",{"_index":633,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["ondefaultlangchangesubject",{"_index":634,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["one",{"_index":150,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/I18nResourceImpl.html":{},"injectables/LocalForageService.html":{}}}],["onlangchange",{"_index":445,"title":{},"body":{"injectables/I18nServiceMock.html":{},"classes/TranslateServiceMock.html":{}}}],["onlangchangesubject",{"_index":635,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["online').pipe(mapto(true",{"_index":195,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["onready",{"_index":404,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["onready(modulename",{"_index":423,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["ontranslationchange",{"_index":636,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["ontranslationchangesubject",{"_index":637,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["open",{"_index":1535,"title":{},"body":{"license.html":{}}}],["openidconnectinterceptor",{"_index":523,"title":{"interceptors/OpenIdConnectInterceptor.html":{}},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["openidconnectservice",{"_index":532,"title":{"injectables/OpenIdConnectService.html":{}},"body":{"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{}}}],["openidconnectservicemock",{"_index":535,"title":{"classes/OpenIdConnectServiceMock.html":{}},"body":{"classes/OpenIdConnectServiceMock.html":{}}}],["openidconnectuserdetails",{"_index":537,"title":{"interfaces/OpenIdConnectUserDetails.html":{}},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["operatorfunction",{"_index":1114,"title":{},"body":{"miscellaneous/functions.html":{}}}],["optional",{"_index":19,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["order",{"_index":108,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"license.html":{}}}],["origin",{"_index":1345,"title":{},"body":{"license.html":{}}}],["original",{"_index":1144,"title":{},"body":{"license.html":{}}}],["osl",{"_index":1536,"title":{},"body":{"license.html":{}}}],["others",{"_index":306,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["otherwise",{"_index":396,"title":{},"body":{"classes/I18nResourceImpl.html":{},"license.html":{}}}],["out",{"_index":1402,"title":{},"body":{"license.html":{}}}],["overview",{"_index":1115,"title":{"index.html":{}},"body":{"index.html":{}}}],["overwrite",{"_index":86,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["owned",{"_index":1351,"title":{},"body":{"license.html":{}}}],["owners",{"_index":1287,"title":{},"body":{"license.html":{}}}],["package",{"_index":792,"title":{"dependencies.html":{},"properties.html":{}},"body":{}}],["packages/.../app.actions.ts",{"_index":983,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../eui",{"_index":1028,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../http",{"_index":1021,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../i18n.actions.ts",{"_index":985,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../locale.actions.ts",{"_index":987,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../locale.service.ts",{"_index":1553,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["packages/.../log.ts",{"_index":1026,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../meta.reducers.ts",{"_index":1044,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../notifications.actions.ts",{"_index":989,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../store.service.ts",{"_index":981,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["packages/.../tokens.ts",{"_index":1033,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../user.actions.ts",{"_index":991,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../ux",{"_index":1053,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/eui",{"_index":238,"title":{},"body":{"modules/CoreModule.html":{},"classes/EuiCoreRootGuardClass.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/add",{"_index":33,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/cache",{"_index":167,"title":{},"body":{"interceptors/CachePreventionInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/cors",{"_index":255,"title":{},"body":{"interceptors/CorsSecurityInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/csrf",{"_index":259,"title":{},"body":{"interceptors/CsrfPreventionInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/eu",{"_index":271,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/openid/openid",{"_index":524,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/ux",{"_index":770,"title":{},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/mocks/router.mock.ts",{"_index":549,"title":{},"body":{"classes/RouterMock.html":{}}}],["packages/eui/packages/core/src/lib/mocks/store.mock.ts",{"_index":572,"title":{},"body":{"classes/StoreMock.html":{}}}],["packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts",{"_index":612,"title":{},"body":{"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/app/eui",{"_index":1071,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/app/factories/log.ts",{"_index":1060,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/config/tokens.ts",{"_index":1074,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/errors/eui.error.ts",{"_index":263,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["packages/eui/packages/core/src/lib/services/errors/global",{"_index":326,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["packages/eui/packages/core/src/lib/services/errors/http",{"_index":333,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{},"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts",{"_index":340,"title":{},"body":{"injectables/I18nLoader.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ResourceError.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.module.ts",{"_index":369,"title":{},"body":{"modules/I18nModule.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.resource.ts",{"_index":375,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.service.mock.ts",{"_index":443,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.service.ts",{"_index":400,"title":{},"body":{"injectables/I18nService.html":{},"interfaces/ModuleLoadEvent.html":{}}}],["packages/eui/packages/core/src/lib/services/locale/locale.service.mock.ts",{"_index":487,"title":{},"body":{"injectables/LocaleServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/locale/locale.service.ts",{"_index":471,"title":{},"body":{"injectables/LocaleService.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/log/log.module.ts",{"_index":490,"title":{},"body":{"modules/LogModule.html":{}}}],["packages/eui/packages/core/src/lib/services/log/log.service.mock.ts",{"_index":520,"title":{},"body":{"classes/LogServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/log/log.service.ts",{"_index":498,"title":{},"body":{"injectables/LogService.html":{}}}],["packages/eui/packages/core/src/lib/services/permission/permission.service.ts",{"_index":279,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["packages/eui/packages/core/src/lib/services/queue/api",{"_index":61,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/async",{"_index":130,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/local",{"_index":460,"title":{},"body":{"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/session",{"_index":566,"title":{},"body":{"injectables/SessionStorageService.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/storage.service.mock.ts",{"_index":570,"title":{},"body":{"classes/StorageServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/storage.service.ts",{"_index":568,"title":{},"body":{"classes/StorageService.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts",{"_index":5,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/i18n.actions.ts",{"_index":665,"title":{},"body":{"classes/UpdateI18nStateAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/locale.actions.ts",{"_index":668,"title":{},"body":{"classes/UpdateLocaleStateAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/notifications.actions.ts",{"_index":671,"title":{},"body":{"classes/UpdateNotificationsListAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts",{"_index":674,"title":{},"body":{"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/effects/app.effects.ts",{"_index":170,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts",{"_index":1108,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/store/store.service.mock.ts",{"_index":604,"title":{},"body":{"injectables/StoreServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/store/store.service.ts",{"_index":580,"title":{},"body":{"injectables/StoreService.html":{},"miscellaneous/enumerations.html":{}}}],["packages/eui/packages/core/src/lib/services/user/user.service.mock.ts",{"_index":695,"title":{},"body":{"injectables/UserServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/user/user.service.ts",{"_index":688,"title":{},"body":{"injectables/UserService.html":{}}}],["packages/eui/packages/core/src/lib/services/ux",{"_index":606,"title":{},"body":{"interfaces/TimeZone.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["packagr",{"_index":813,"title":{},"body":{"dependencies.html":{}}}],["param.interceptor.ts",{"_index":35,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["parameter",{"_index":40,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"classes/I18nResourceImpl.html":{},"injectables/LogService.html":{}}}],["parameters",{"_index":16,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["parser",{"_index":829,"title":{},"body":{"dependencies.html":{}}}],["part",{"_index":308,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["particular",{"_index":1379,"title":{},"body":{"license.html":{}}}],["parties",{"_index":1484,"title":{},"body":{"license.html":{}}}],["pass",{"_index":251,"title":{},"body":{"modules/CoreModule.html":{}}}],["passed",{"_index":719,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["patent",{"_index":1298,"title":{},"body":{"license.html":{}}}],["patents",{"_index":1264,"title":{},"body":{"license.html":{}}}],["path",{"_index":398,"title":{},"body":{"classes/I18nResourceImpl.html":{},"miscellaneous/functions.html":{}}}],["payload",{"_index":11,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{}}}],["people",{"_index":1182,"title":{},"body":{"license.html":{}}}],["perform",{"_index":1237,"title":{},"body":{"license.html":{}}}],["permission",{"_index":292,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["permits",{"_index":1253,"title":{},"body":{"license.html":{}}}],["persist",{"_index":514,"title":{},"body":{"injectables/LogService.html":{}}}],["person",{"_index":1193,"title":{},"body":{"license.html":{}}}],["persons",{"_index":1396,"title":{},"body":{"license.html":{}}}],["pikaday",{"_index":961,"title":{},"body":{"dependencies.html":{}}}],["pipe",{"_index":424,"title":{"pipes/TranslateMockPipe.html":{}},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"index.html":{}}}],["pipes",{"_index":624,"title":{},"body":{"pipes/TranslateMockPipe.html":{}}}],["placed",{"_index":123,"title":{},"body":{"injectables/ApiQueueService.html":{},"license.html":{}}}],["plugin",{"_index":825,"title":{},"body":{"dependencies.html":{}}}],["polyfill",{"_index":922,"title":{},"body":{"dependencies.html":{}}}],["portal",{"_index":714,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["portalcomponentinstance",{"_index":725,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["portalhost",{"_index":722,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["portalhostref",{"_index":729,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["possibility",{"_index":1412,"title":{},"body":{"license.html":{}}}],["possible",{"_index":1093,"title":{},"body":{"miscellaneous/functions.html":{}}}],["power",{"_index":1353,"title":{},"body":{"license.html":{}}}],["pre",{"_index":385,"title":{},"body":{"classes/I18nResourceImpl.html":{},"miscellaneous/functions.html":{}}}],["prefer",{"_index":831,"title":{},"body":{"dependencies.html":{}}}],["preferences",{"_index":1015,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["prefix",{"_index":383,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["preinitapp",{"_index":1049,"title":{},"body":{"miscellaneous/functions.html":{}}}],["preinitapp(envconfig",{"_index":1094,"title":{},"body":{"miscellaneous/functions.html":{}}}],["prejudice",{"_index":1479,"title":{},"body":{"license.html":{}}}],["prepareeuiappconfigtoken",{"_index":1050,"title":{},"body":{"miscellaneous/functions.html":{}}}],["prepareeuiappconfigtoken(euiconfig",{"_index":1089,"title":{},"body":{"miscellaneous/functions.html":{}}}],["present",{"_index":592,"title":{},"body":{"injectables/StoreService.html":{}}}],["prettier",{"_index":967,"title":{},"body":{"dependencies.html":{}}}],["prevail",{"_index":1334,"title":{},"body":{"license.html":{}}}],["prevention.interceptor.ts",{"_index":168,"title":{},"body":{"interceptors/CachePreventionInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{}}}],["previouslocale",{"_index":474,"title":{},"body":{"injectables/LocaleService.html":{}}}],["primary",{"_index":1522,"title":{},"body":{"license.html":{}}}],["prismjs",{"_index":940,"title":{},"body":{"dependencies.html":{}}}],["process",{"_index":98,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processallqueueitems",{"_index":66,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processallqueueitems(continueonerror",{"_index":96,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["processallqueueitemssequential",{"_index":67,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processallqueueitemssequential(ascending",{"_index":107,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processed",{"_index":387,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["processor",{"_index":386,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["processqueueitem",{"_index":68,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processqueueitem(id",{"_index":121,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["product",{"_index":1414,"title":{},"body":{"license.html":{}}}],["program",{"_index":1190,"title":{},"body":{"license.html":{}}}],["progress",{"_index":1362,"title":{},"body":{"license.html":{}}}],["prohibited",{"_index":1138,"title":{},"body":{"license.html":{}}}],["prominent",{"_index":1308,"title":{},"body":{"license.html":{}}}],["promise",{"_index":409,"title":{},"body":{"injectables/I18nService.html":{},"miscellaneous/functions.html":{}}}],["properties",{"_index":9,"title":{"properties.html":{}},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"injectables/CoreAppEffects.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StoreMock.html":{},"interfaces/TimeZone.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"properties.html":{}}}],["property",{"_index":1385,"title":{},"body":{"license.html":{}}}],["protection",{"_index":1337,"title":{},"body":{"license.html":{}}}],["provide",{"_index":374,"title":{},"body":{"modules/I18nModule.html":{},"modules/LogModule.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["provided",{"_index":439,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"license.html":{}}}],["provider",{"_index":1073,"title":{},"body":{"miscellaneous/functions.html":{}}}],["providers",{"_index":253,"title":{},"body":{"modules/CoreModule.html":{}}}],["provides",{"_index":1267,"title":{},"body":{"license.html":{}}}],["providing",{"_index":247,"title":{},"body":{"modules/CoreModule.html":{},"injectables/EuiPermissionService.html":{},"license.html":{}}}],["provision",{"_index":1335,"title":{},"body":{"license.html":{}}}],["provisions",{"_index":1440,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":588,"title":{},"body":{"injectables/StoreService.html":{}}}],["public",{"_index":10,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UxDynamicComponentService.html":{},"license.html":{}}}],["publicly",{"_index":1238,"title":{},"body":{"license.html":{}}}],["publish",{"_index":1496,"title":{},"body":{"license.html":{}}}],["published",{"_index":1500,"title":{},"body":{"license.html":{}}}],["publisherror",{"_index":748,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["publisherror(err",{"_index":757,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["publishes",{"_index":760,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["purpose",{"_index":1380,"title":{},"body":{"license.html":{}}}],["queue",{"_index":81,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"miscellaneous/enumerations.html":{}}}],["queue.service.mock.ts",{"_index":127,"title":{},"body":{"classes/ApiQueueServiceMock.html":{}}}],["queue.service.ts",{"_index":62,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["quill",{"_index":911,"title":{},"body":{"dependencies.html":{}}}],["readable",{"_index":1179,"title":{},"body":{"license.html":{}}}],["readiness",{"_index":154,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["readonly",{"_index":763,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["ready",{"_index":141,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{},"interfaces/ModuleLoadEvent.html":{}}}],["reason",{"_index":1372,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":1342,"title":{},"body":{"license.html":{}}}],["received",{"_index":1475,"title":{},"body":{"license.html":{}}}],["reducer",{"_index":595,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"miscellaneous/functions.html":{}}}],["reducing",{"_index":1499,"title":{},"body":{"license.html":{}}}],["refactor",{"_index":208,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["refer",{"_index":1301,"title":{},"body":{"license.html":{}}}],["reference",{"_index":393,"title":{},"body":{"classes/I18nResourceImpl.html":{},"injectables/UxDynamicComponentService.html":{}}}],["refers",{"_index":1328,"title":{},"body":{"license.html":{}}}],["reflects",{"_index":153,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["reformed",{"_index":1492,"title":{},"body":{"license.html":{}}}],["regarding",{"_index":1467,"title":{},"body":{"license.html":{}}}],["registered",{"_index":1525,"title":{},"body":{"license.html":{}}}],["remain",{"_index":1476,"title":{},"body":{"license.html":{}}}],["remap",{"_index":874,"title":{},"body":{"dependencies.html":{}}}],["remote",{"_index":1462,"title":{},"body":{"license.html":{}}}],["remove",{"_index":142,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"miscellaneous/enumerations.html":{}}}],["remove(key",{"_index":155,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["remove(portalhostref",{"_index":727,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["remove_api_queue_item",{"_index":1004,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["removeallqueueitem",{"_index":69,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["removeapiqueueitemaction",{"_index":544,"title":{"classes/RemoveApiQueueItemAction.html":{}},"body":{"classes/RemoveApiQueueItemAction.html":{},"miscellaneous/typealiases.html":{}}}],["removeasync",{"_index":143,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{}}}],["removeasync(key",{"_index":156,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["removedresources",{"_index":367,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["removequeueitem",{"_index":70,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["removequeueitem(id",{"_index":124,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["removeresources",{"_index":345,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["removeresources(removedresources",{"_index":365,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["removes",{"_index":122,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/AsyncStorageService.html":{},"injectables/I18nLoader.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["rent",{"_index":1241,"title":{},"body":{"license.html":{}}}],["renting",{"_index":1208,"title":{},"body":{"license.html":{}}}],["reporter",{"_index":868,"title":{},"body":{"dependencies.html":{}}}],["repository",{"_index":1274,"title":{},"body":{"license.html":{},"properties.html":{}}}],["represents",{"_index":1481,"title":{},"body":{"license.html":{}}}],["reproduce",{"_index":1232,"title":{},"body":{"license.html":{}}}],["reproduced",{"_index":1470,"title":{},"body":{"license.html":{}}}],["reproducing",{"_index":1346,"title":{},"body":{"license.html":{}}}],["req",{"_index":55,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["request",{"_index":44,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["requested",{"_index":1466,"title":{},"body":{"license.html":{}}}],["required",{"_index":1170,"title":{},"body":{"license.html":{}}}],["reselect",{"_index":897,"title":{},"body":{"dependencies.html":{}}}],["residence",{"_index":1529,"title":{},"body":{"license.html":{}}}],["resides",{"_index":1520,"title":{},"body":{"license.html":{}}}],["resize",{"_index":920,"title":{},"body":{"dependencies.html":{}}}],["resource",{"_index":363,"title":{},"body":{"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ResourceError.html":{}}}],["resourceerror",{"_index":546,"title":{"interfaces/ResourceError.html":{}},"body":{"interfaces/ResourceError.html":{}}}],["resources",{"_index":350,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{}}}],["response",{"_index":117,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["responses",{"_index":106,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["responsibility",{"_index":1428,"title":{},"body":{"license.html":{}}}],["responsible",{"_index":499,"title":{},"body":{"injectables/LogService.html":{}}}],["rest",{"_index":104,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["restrict",{"_index":1323,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":1292,"title":{},"body":{"license.html":{}}}],["result",{"_index":435,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["resulting",{"_index":1509,"title":{},"body":{"license.html":{}}}],["results",{"_index":23,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"properties.html":{},"miscellaneous/typealiases.html":{}}}],["retrieve",{"_index":90,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["retrycallback",{"_index":529,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["retrycount",{"_index":527,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["return",{"_index":191,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["returns",{"_index":56,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["reuse",{"_index":518,"title":{},"body":{"injectables/LogService.html":{}}}],["right",{"_index":291,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["right.permission",{"_index":300,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["right1.right2.permission",{"_index":307,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["rightid",{"_index":315,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["rights",{"_index":312,"title":{},"body":{"injectables/EuiPermissionService.html":{},"miscellaneous/enumerations.html":{},"license.html":{}}}],["rightsandpermission",{"_index":313,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["root",{"_index":373,"title":{},"body":{"modules/I18nModule.html":{},"modules/LogModule.html":{},"classes/RouterMock.html":{},"classes/UxRootInjectorGuard.html":{}}}],["rootbaseloggername",{"_index":1062,"title":{},"body":{"miscellaneous/functions.html":{}}}],["rootconfig",{"_index":1063,"title":{},"body":{"miscellaneous/functions.html":{}}}],["route",{"_index":1001,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["route.snapshot.data['module",{"_index":189,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["router",{"_index":338,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{}}}],["routermock",{"_index":548,"title":{"classes/RouterMock.html":{}},"body":{"classes/RouterMock.html":{}}}],["routerstate",{"_index":552,"title":{},"body":{"classes/RouterMock.html":{}}}],["royalty",{"_index":1225,"title":{},"body":{"license.html":{}}}],["rules",{"_index":1450,"title":{},"body":{"license.html":{}}}],["rxjs",{"_index":844,"title":{},"body":{"dependencies.html":{}}}],["sake",{"_index":1327,"title":{},"body":{"license.html":{}}}],["same",{"_index":395,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["saveuserpreferences",{"_index":701,"title":{},"body":{"injectables/UserServiceMock.html":{}}}],["scope",{"_index":1219,"title":{},"body":{"license.html":{}}}],["scroll",{"_index":904,"title":{},"body":{"dependencies.html":{}}}],["security.interceptor.ts",{"_index":256,"title":{},"body":{"interceptors/CorsSecurityInterceptor.html":{}}}],["select",{"_index":576,"title":{},"body":{"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["select(key",{"_index":601,"title":{},"body":{"injectables/StoreService.html":{}}}],["select(selector",{"_index":578,"title":{},"body":{"classes/StoreMock.html":{}}}],["selector",{"_index":579,"title":{},"body":{"classes/StoreMock.html":{},"directives/TranslateMockDirective.html":{}}}],["selling",{"_index":1205,"title":{},"body":{"license.html":{}}}],["separated",{"_index":297,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["serializeurl",{"_index":556,"title":{},"body":{"classes/RouterMock.html":{}}}],["serve",{"_index":425,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["server",{"_index":359,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["service",{"_index":135,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/EuiPermissionService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["services",{"_index":137,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{},"license.html":{}}}],["session",{"_index":273,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/SessionStorageService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["sessionstorage",{"_index":567,"title":{},"body":{"injectables/SessionStorageService.html":{}}}],["sessionstorageservice",{"_index":565,"title":{"injectables/SessionStorageService.html":{}},"body":{"injectables/SessionStorageService.html":{}}}],["sessionstoragesync",{"_index":1051,"title":{},"body":{"miscellaneous/functions.html":{}}}],["sessionstoragesync(reducer",{"_index":1111,"title":{},"body":{"miscellaneous/functions.html":{}}}],["set",{"_index":144,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{}}}],["set(key",{"_index":159,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["setasync",{"_index":145,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{}}}],["setasync(key",{"_index":160,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["setdefaultlang",{"_index":642,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["setdefaultlang(lang",{"_index":655,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["sets",{"_index":120,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["severity",{"_index":227,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["shall",{"_index":1295,"title":{},"body":{"license.html":{}}}],["showconnectionstatus",{"_index":175,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["similar",{"_index":1448,"title":{},"body":{"license.html":{}}}],["similarly",{"_index":1453,"title":{},"body":{"license.html":{}}}],["slice",{"_index":693,"title":{},"body":{"injectables/UserService.html":{}}}],["snapshot",{"_index":974,"title":{},"body":{"dependencies.html":{}}}],["software",{"_index":1133,"title":{},"body":{"license.html":{}}}],["sole",{"_index":1427,"title":{},"body":{"license.html":{}}}],["source",{"_index":951,"title":{},"body":{"dependencies.html":{},"license.html":{}}}],["sourcemap",{"_index":872,"title":{},"body":{"dependencies.html":{}}}],["spec",{"_index":878,"title":{},"body":{"dependencies.html":{}}}],["stack",{"_index":265,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["stackblitz/sdk",{"_index":965,"title":{},"body":{"dependencies.html":{}}}],["started",{"_index":1120,"title":{"license.html":{}},"body":{}}],["startup.ts",{"_index":1029,"title":{},"body":{"miscellaneous/functions.html":{}}}],["state",{"_index":319,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["stated",{"_index":1386,"title":{},"body":{"license.html":{}}}],["stateslice",{"_index":586,"title":{},"body":{"injectables/StoreService.html":{}}}],["static",{"_index":240,"title":{},"body":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"modules/LogModule.html":{},"injectables/SessionStorageService.html":{}}}],["stating",{"_index":1309,"title":{},"body":{"license.html":{}}}],["status",{"_index":223,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/enumerations.html":{}}}],["statutory",{"_index":1413,"title":{},"body":{"license.html":{}}}],["stoppage",{"_index":1405,"title":{},"body":{"license.html":{}}}],["storage",{"_index":134,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"miscellaneous/functions.html":{}}}],["storage.service.mock.ts",{"_index":165,"title":{},"body":{"classes/AsyncStorageServiceMock.html":{}}}],["storage.service.ts",{"_index":131,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{}}}],["storageservice",{"_index":139,"title":{"classes/StorageService.html":{}},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{}}}],["storageservicemock",{"_index":569,"title":{"classes/StorageServiceMock.html":{}},"body":{"classes/StorageServiceMock.html":{}}}],["storagetype",{"_index":598,"title":{},"body":{"injectables/StoreService.html":{}}}],["store",{"_index":75,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/StoreService.html":{},"injectables/UserService.html":{},"injectables/UxDynamicMenuService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{}}}],["store.dispatch",{"_index":590,"title":{},"body":{"injectables/StoreService.html":{}}}],["store.select",{"_index":602,"title":{},"body":{"injectables/StoreService.html":{}}}],["stored",{"_index":1469,"title":{},"body":{"license.html":{}}}],["storemock",{"_index":571,"title":{"classes/StoreMock.html":{}},"body":{"classes/StoreMock.html":{}}}],["storeservice",{"_index":72,"title":{"injectables/StoreService.html":{}},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UxDynamicMenuService.html":{}}}],["storeservicemock",{"_index":603,"title":{"injectables/StoreServiceMock.html":{}},"body":{"injectables/StoreServiceMock.html":{}}}],["string",{"_index":77,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"modules/CoreModule.html":{},"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"injectables/StoreService.html":{},"interfaces/TimeZone.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"injectables/UserService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["study",{"_index":1183,"title":{},"body":{"license.html":{}}}],["sub",{"_index":1242,"title":{},"body":{"license.html":{}}}],["subject",{"_index":530,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{},"classes/TranslateServiceMock.html":{},"injectables/UxErrorFeedbackService.html":{},"license.html":{}}}],["sublicensable",{"_index":1228,"title":{},"body":{"license.html":{}}}],["subscribes",{"_index":89,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["subsequent",{"_index":1358,"title":{},"body":{"license.html":{}}}],["success",{"_index":228,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["such",{"_index":1140,"title":{},"body":{"license.html":{}}}],["suffix",{"_index":380,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["summary",{"_index":229,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["support",{"_index":207,"title":{},"body":{"injectables/CoreAppEffects.html":{},"license.html":{}}}],["supports",{"_index":1246,"title":{},"body":{"license.html":{}}}],["t",{"_index":152,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"classes/StorageService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{}}}],["table",{"_index":916,"title":{},"body":{"dependencies.html":{}}}],["take",{"_index":1504,"title":{},"body":{"license.html":{}}}],["tap((connected",{"_index":202,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["targeted",{"_index":761,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["template",{"_index":826,"title":{},"body":{"dependencies.html":{}}}],["terminate",{"_index":1472,"title":{},"body":{"license.html":{}}}],["termination",{"_index":1471,"title":{},"body":{"license.html":{}}}],["terms",{"_index":1136,"title":{},"body":{"license.html":{}}}],["text",{"_index":627,"title":{},"body":{"pipes/TranslateMockPipe.html":{},"license.html":{}}}],["therefore",{"_index":1367,"title":{},"body":{"license.html":{}}}],["thereof",{"_index":1166,"title":{},"body":{"license.html":{}}}],["thereto",{"_index":1289,"title":{},"body":{"license.html":{}}}],["this.actions.pipe",{"_index":180,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.asservice.growl",{"_index":226,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.isloadedsubject.asobservable",{"_index":643,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["this.ondefaultlangchangesubject.asobservable",{"_index":647,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["this.onlangchangesubject.asobservable",{"_index":648,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["this.ontranslationchangesubject.asobservable",{"_index":649,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["this.showconnectionstatus",{"_index":214,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.showconnectionstatus?.enabled",{"_index":215,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.showconnectionstatus?.messagebox?.lifespan",{"_index":217,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.translateservice.get('eui.connected').subscribe((translation",{"_index":225,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["those",{"_index":1243,"title":{},"body":{"license.html":{}}}],["through",{"_index":437,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["time",{"_index":151,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"license.html":{}}}],["timeout",{"_index":274,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"miscellaneous/functions.html":{}}}],["timestamp",{"_index":110,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["timezone",{"_index":605,"title":{"interfaces/TimeZone.html":{}},"body":{"interfaces/TimeZone.html":{},"injectables/UxTimezoneService.html":{},"dependencies.html":{}}}],["timezone.service.ts",{"_index":607,"title":{},"body":{"interfaces/TimeZone.html":{},"injectables/UxTimezoneService.html":{}}}],["todo",{"_index":203,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["token",{"_index":721,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["trade",{"_index":1338,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":1299,"title":{},"body":{"license.html":{}}}],["transform",{"_index":625,"title":{},"body":{"pipes/TranslateMockPipe.html":{}}}],["transform(text",{"_index":626,"title":{},"body":{"pipes/TranslateMockPipe.html":{}}}],["transformer",{"_index":935,"title":{},"body":{"dependencies.html":{}}}],["translate",{"_index":429,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{}}}],["translate/core",{"_index":899,"title":{},"body":{"dependencies.html":{}}}],["translate/http",{"_index":901,"title":{},"body":{"dependencies.html":{}}}],["translatemockdirective",{"_index":610,"title":{"directives/TranslateMockDirective.html":{}},"body":{"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{}}}],["translatemockmodule",{"_index":620,"title":{"modules/TranslateMockModule.html":{}},"body":{"modules/TranslateMockModule.html":{},"modules.html":{}}}],["translatemockpipe",{"_index":622,"title":{"pipes/TranslateMockPipe.html":{}},"body":{"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{}}}],["translateparams",{"_index":616,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["translateservice",{"_index":50,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/CoreAppEffects.html":{},"injectables/I18nService.html":{},"injectables/UxErrorFeedbackService.html":{}}}],["translateservicemock",{"_index":628,"title":{"classes/TranslateServiceMock.html":{}},"body":{"classes/TranslateServiceMock.html":{}}}],["translation",{"_index":232,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/I18nService.html":{}}}],["translations",{"_index":358,"title":{},"body":{"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResources.html":{}}}],["transmitting",{"_index":1211,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":1517,"title":{},"body":{"license.html":{}}}],["true",{"_index":100,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/I18nResourceImpl.html":{},"injectables/LogService.html":{}}}],["true/false",{"_index":1069,"title":{},"body":{"miscellaneous/functions.html":{}}}],["ts",{"_index":880,"title":{},"body":{"dependencies.html":{}}}],["tslib",{"_index":846,"title":{},"body":{"dependencies.html":{}}}],["type",{"_index":12,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/typealiases.html":{}}}],["typealiases",{"_index":1546,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeof",{"_index":213,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["types/cleave.js",{"_index":907,"title":{},"body":{"dependencies.html":{}}}],["types/jasmine",{"_index":851,"title":{},"body":{"dependencies.html":{}}}],["types/jasminewd2",{"_index":883,"title":{},"body":{"dependencies.html":{}}}],["types/lodash",{"_index":885,"title":{},"body":{"dependencies.html":{}}}],["types/marked",{"_index":937,"title":{},"body":{"dependencies.html":{}}}],["types/node",{"_index":853,"title":{},"body":{"dependencies.html":{}}}],["types/quill",{"_index":913,"title":{},"body":{"dependencies.html":{}}}],["typescript",{"_index":836,"title":{},"body":{"dependencies.html":{}}}],["tz",{"_index":787,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["undefined",{"_index":190,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["under",{"_index":1135,"title":{},"body":{"license.html":{}}}],["unenforceable",{"_index":1486,"title":{},"body":{"license.html":{}}}],["union",{"_index":1123,"title":{},"body":{"license.html":{}}}],["unique",{"_index":1501,"title":{},"body":{"license.html":{}}}],["unless",{"_index":1315,"title":{},"body":{"license.html":{}}}],["update",{"_index":324,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LocaleService.html":{},"miscellaneous/enumerations.html":{}}}],["update_app_connection",{"_index":995,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_app_status",{"_index":997,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_app_version",{"_index":994,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_current_module",{"_index":998,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_i18n_state",{"_index":1007,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_locale_state",{"_index":1008,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_notifications_list",{"_index":1009,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_dashboard",{"_index":1017,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_details",{"_index":1012,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_preferences",{"_index":1014,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_rights",{"_index":1016,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_state",{"_index":1011,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["updateappconnection",{"_index":172,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["updateappconnectionaction",{"_index":201,"title":{"classes/UpdateAppConnectionAction.html":{}},"body":{"injectables/CoreAppEffects.html":{},"classes/UpdateAppConnectionAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateappconnectionaction(connected",{"_index":199,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["updateappstatusaction",{"_index":658,"title":{"classes/UpdateAppStatusAction.html":{}},"body":{"classes/UpdateAppStatusAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateappversionaction",{"_index":660,"title":{"classes/UpdateAppVersionAction.html":{}},"body":{"classes/UpdateAppVersionAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatecurrentmoduleaction",{"_index":662,"title":{"classes/UpdateCurrentModuleAction.html":{}},"body":{"classes/UpdateCurrentModuleAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatecurrentmoduleaction(module",{"_index":193,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["updated",{"_index":1107,"title":{},"body":{"miscellaneous/functions.html":{}}}],["updatei18nstateaction",{"_index":664,"title":{"classes/UpdateI18nStateAction.html":{}},"body":{"classes/UpdateI18nStateAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatelocalestateaction",{"_index":667,"title":{"classes/UpdateLocaleStateAction.html":{}},"body":{"classes/UpdateLocaleStateAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatenotificationslistaction",{"_index":670,"title":{"classes/UpdateNotificationsListAction.html":{}},"body":{"classes/UpdateNotificationsListAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatestate",{"_index":286,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["updatestate(i18nstate",{"_index":448,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["updatestate(langstate",{"_index":440,"title":{},"body":{"injectables/I18nService.html":{}}}],["updatestate(rights",{"_index":323,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["updatestate(slice",{"_index":691,"title":{},"body":{"injectables/UserService.html":{}}}],["updatestate(state",{"_index":481,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["updatestate(userstate",{"_index":690,"title":{},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["updateuserdashboardaction",{"_index":673,"title":{"classes/UpdateUserDashboardAction.html":{}},"body":{"classes/UpdateUserDashboardAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateuserdetailsaction",{"_index":676,"title":{"classes/UpdateUserDetailsAction.html":{}},"body":{"classes/UpdateUserDetailsAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateuserpreferencesaction",{"_index":679,"title":{"classes/UpdateUserPreferencesAction.html":{}},"body":{"classes/UpdateUserPreferencesAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateuserrightsaction",{"_index":682,"title":{"classes/UpdateUserRightsAction.html":{}},"body":{"classes/UpdateUserRightsAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateuserstateaction",{"_index":684,"title":{"classes/UpdateUserStateAction.html":{}},"body":{"classes/UpdateUserStateAction.html":{}}}],["upon",{"_index":1164,"title":{},"body":{"license.html":{}}}],["url",{"_index":563,"title":{},"body":{"classes/RouterMock.html":{},"miscellaneous/functions.html":{}}}],["usage",{"_index":1201,"title":{},"body":{"license.html":{}}}],["use",{"_index":249,"title":{},"body":{"modules/CoreModule.html":{},"classes/TranslateServiceMock.html":{},"license.html":{}}}],["use(lang",{"_index":656,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["used",{"_index":1096,"title":{},"body":{"miscellaneous/functions.html":{}}}],["useful",{"_index":309,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["user",{"_index":219,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"miscellaneous/enumerations.html":{}}}],["user's",{"_index":318,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["userdetails",{"_index":677,"title":{},"body":{"classes/UpdateUserDetailsAction.html":{}}}],["userpreferences",{"_index":680,"title":{},"body":{"classes/UpdateUserPreferencesAction.html":{},"injectables/UserServiceMock.html":{}}}],["userservice",{"_index":687,"title":{"injectables/UserService.html":{}},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["userservicemock",{"_index":694,"title":{"injectables/UserServiceMock.html":{}},"body":{"injectables/UserServiceMock.html":{}}}],["userstate",{"_index":685,"title":{},"body":{"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["using",{"_index":463,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["utility",{"_index":161,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{},"miscellaneous/functions.html":{}}}],["uxappshellservice",{"_index":178,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/UxErrorFeedbackService.html":{}}}],["uxdynamiccomponentservice",{"_index":702,"title":{"injectables/UxDynamicComponentService.html":{}},"body":{"injectables/UxDynamicComponentService.html":{}}}],["uxdynamicmenuservice",{"_index":731,"title":{"injectables/UxDynamicMenuService.html":{}},"body":{"injectables/UxDynamicMenuService.html":{}}}],["uxerrorfeedbackservice",{"_index":741,"title":{"injectables/UxErrorFeedbackService.html":{}},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["uxerrormanager",{"_index":752,"title":{"classes/UxErrorManager.html":{}},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["uxhttperrorresponse",{"_index":754,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["uxpermission",{"_index":738,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["uxrequesterrormodelinterceptor",{"_index":769,"title":{"interceptors/UxRequestErrorModelInterceptor.html":{}},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["uxrootinjectorguard",{"_index":774,"title":{"classes/UxRootInjectorGuard.html":{}},"body":{"classes/UxRootInjectorGuard.html":{}}}],["uxtimezoneservice",{"_index":777,"title":{"injectables/UxTimezoneService.html":{}},"body":{"injectables/UxTimezoneService.html":{}}}],["uxuserright",{"_index":321,"title":{},"body":{"injectables/EuiPermissionService.html":{},"classes/UpdateUserRightsAction.html":{}}}],["v",{"_index":1125,"title":{},"body":{"license.html":{}}}],["v.1.1",{"_index":1150,"title":{},"body":{"license.html":{}}}],["valid",{"_index":1493,"title":{},"body":{"license.html":{}}}],["validity",{"_index":1488,"title":{},"body":{"license.html":{}}}],["value",{"_index":21,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"injectables/CoreAppEffects.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StoreMock.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["version",{"_index":600,"title":{},"body":{"injectables/StoreService.html":{},"miscellaneous/enumerations.html":{},"license.html":{},"properties.html":{}}}],["versions",{"_index":1498,"title":{},"body":{"license.html":{}}}],["vested",{"_index":1230,"title":{},"body":{"license.html":{}}}],["via",{"_index":252,"title":{},"body":{"modules/CoreModule.html":{}}}],["void",{"_index":88,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["waives",{"_index":1256,"title":{},"body":{"license.html":{}}}],["want",{"_index":310,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LogService.html":{}}}],["warning",{"_index":83,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["warranties",{"_index":1303,"title":{},"body":{"license.html":{}}}],["warrants",{"_index":1349,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":1361,"title":{},"body":{"license.html":{}}}],["way",{"_index":298,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["web",{"_index":947,"title":{},"body":{"dependencies.html":{},"miscellaneous/functions.html":{}}}],["webcomponents/custom",{"_index":840,"title":{},"body":{"dependencies.html":{}}}],["website",{"_index":1465,"title":{},"body":{"license.html":{}}}],["whether",{"_index":390,"title":{},"body":{"classes/I18nResourceImpl.html":{},"license.html":{}}}],["whole",{"_index":1490,"title":{},"body":{"license.html":{}}}],["wide",{"_index":1224,"title":{},"body":{"license.html":{}}}],["wilful",{"_index":1391,"title":{},"body":{"license.html":{}}}],["willingness",{"_index":1153,"title":{},"body":{"license.html":{}}}],["window",{"_index":1444,"title":{},"body":{"license.html":{}}}],["without",{"_index":1374,"title":{},"body":{"license.html":{}}}],["withuxerrormanager",{"_index":1052,"title":{},"body":{"miscellaneous/functions.html":{}}}],["withuxerrormanager(errormanager",{"_index":1112,"title":{},"body":{"miscellaneous/functions.html":{}}}],["withuxerrormanager(this",{"_index":767,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["work",{"_index":1132,"title":{},"body":{"license.html":{}}}],["worker",{"_index":807,"title":{},"body":{"dependencies.html":{}}}],["works",{"_index":1162,"title":{},"body":{"license.html":{}}}],["world",{"_index":1223,"title":{},"body":{"license.html":{}}}],["wrapper",{"_index":426,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["xhr",{"_index":926,"title":{},"body":{"dependencies.html":{}}}],["yes",{"_index":269,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/StoreService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["zone.js",{"_index":848,"title":{},"body":{"dependencies.html":{}}}]],"pipeline":["stemmer"]},
|
|
3
|
-
"store": {"classes/ActivatedRouteAction.html":{"url":"classes/ActivatedRouteAction.html","title":"class - ActivatedRouteAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ActivatedRouteAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: ActivatedRoute)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : ActivatedRoute\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.ACTIVATED_ROUTE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AddApiQueueItemAction.html":{"url":"classes/AddApiQueueItemAction.html","title":"class - AddApiQueueItemAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AddApiQueueItemAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: literal type)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n literal type\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : literal type\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.ADD_API_QUEUE_ITEM\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AddAppLoadedConfigModulesAction.html":{"url":"classes/AddAppLoadedConfigModulesAction.html","title":"class - AddAppLoadedConfigModulesAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AddAppLoadedConfigModulesAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: literal type)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n literal type\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : literal type\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.ADD_APP_LOADED_CONFIG_MODULES\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/AddLangParamInterceptor.html":{"url":"interceptors/AddLangParamInterceptor.html","title":"interceptor - AddLangParamInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n AddLangParamInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/add-lang-param.interceptor.ts\n \n\n\n \n Description\n \n \n Interceptor for adding the current language as parameter\nAdd the header (LANG_PARAM_KEY, ) to your request http headers\n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(translateService: TranslateService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n translateService\n \n \n TranslateService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(req: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n req\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ApiQueueService.html":{"url":"injectables/ApiQueueService.html","title":"injectable - ApiQueueService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n ApiQueueService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/queue/api-queue.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addQueueItem\n \n \n getQueue\n \n \n getQueueItem\n \n \n processAllQueueItems\n \n \n processAllQueueItemsSequential\n \n \n processQueueItem\n \n \n removeAllQueueItem\n \n \n removeQueueItem\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(store: StoreService, http: HttpClient, logService: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n http\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addQueueItem\n \n \n \n \n \n \naddQueueItem(id: string, item: ApiQueueItem)\n \n \n\n\n\n\n \n \n Adds an item in the queue by dispatching an action to the store.\nWARNING if matches any other queue item id will overwrite it.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \nThe id of the item inside the queue.\nWARNING if matches any other queue item id will overwrite it.\n\n\n \n \n \n item\n \n ApiQueueItem\n \n\n \n No\n \n\n\n \n \nan item for Queue\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getQueue\n \n \n \n \n \n \ngetQueue()\n \n \n\n\n\n\n \n \n Subscribes to the store to retrieve queue and then converts the queue object to an array of items.\n\n\n \n \n \n Returns : Observable\n\n \n \n An Observable of array of all items inside the current queue (ApiQueueItem[])\n\n \n \n \n \n \n \n \n \n \n \n \n getQueueItem\n \n \n \n \n \n \ngetQueueItem(id: string)\n \n \n\n\n\n\n \n \n Subscribes to the store to retrieve an item from the queue.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \nid of the item inside the queue\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n An Observable of ApiQueueItem type\n\n \n \n \n \n \n \n \n \n \n \n \n processAllQueueItems\n \n \n \n \n \n \nprocessAllQueueItems(continueOnError: boolean)\n \n \n\n\n\n\n \n \n Process all the items inside the queue.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n Description\n \n \n \n \n continueOnError\n \n boolean\n \n\n \n No\n \n\n \n true\n \n\n \n \nin case of an item request fails continue with the rest in queue\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n An Observable with an array which contains all responses from all items in queue.\n\n \n \n \n \n \n \n \n \n \n \n \n processAllQueueItemsSequential\n \n \n \n \n \n \nprocessAllQueueItemsSequential(ascending: boolean)\n \n \n\n\n\n\n \n \n Process all items in queue after it order them based on their timestamp. Beware that order\nmatter in execution of Http Request in queue. When a request completes only then next will begin. Emission\nor Http response follows order.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n Description\n \n \n \n \n ascending\n \n boolean\n \n\n \n No\n \n\n \n true\n \n\n \n \nsets the order of queue items based on timestamp\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n processQueueItem\n \n \n \n \n \n \nprocessQueueItem(id: string)\n \n \n\n\n\n\n \n \n Process an item from the queue.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \nid of the item inside the queue\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n An Observable of type any\n\n \n \n \n \n \n \n \n \n \n \n \n removeAllQueueItem\n \n \n \n \n \n \nremoveAllQueueItem()\n \n \n\n\n\n\n \n \n Removes all items placed in the queue.\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeQueueItem\n \n \n \n \n \n \nremoveQueueItem(id: string)\n \n \n\n\n\n\n \n \n Removes a given item from the queue.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \nid of the item inside the queue\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ApiQueueServiceMock.html":{"url":"classes/ApiQueueServiceMock.html","title":"class - ApiQueueServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ApiQueueServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/queue/api-queue.service.mock.ts\n \n\n\n\n \n Extends\n \n \n ApiQueueService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addQueueItem\n \n \n getQueue\n \n \n getQueueItem\n \n \n processAllQueueItems\n \n \n processQueueItem\n \n \n removeAllQueueItem\n \n \n removeQueueItem\n \n \n processAllQueueItemsSequential\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addQueueItem\n \n \n \n \n \n \naddQueueItem()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n getQueue\n \n \n \n \n \n \ngetQueue()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n getQueueItem\n \n \n \n \n \n \ngetQueueItem(id: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n processAllQueueItems\n \n \n \n \n \n \nprocessAllQueueItems()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n processQueueItem\n \n \n \n \n \n \nprocessQueueItem()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n removeAllQueueItem\n \n \n \n \n \n \nremoveAllQueueItem()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeQueueItem\n \n \n \n \n \n \nremoveQueueItem()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n processAllQueueItemsSequential\n \n \n \n \n \n \nprocessAllQueueItemsSequential(ascending: boolean)\n \n \n\n\n\n\n \n \n Process all items in queue after it order them based on their timestamp. Beware that order\nmatter in execution of Http Request in queue. When a request completes only then next will begin. Emission\nor Http response follows order.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n Description\n \n \n \n \n ascending\n \n boolean\n \n\n \n No\n \n\n \n true\n \n\n \n \nsets the order of queue items based on timestamp\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AsyncStorageService.html":{"url":"classes/AsyncStorageService.html","title":"class - AsyncStorageService","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AsyncStorageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/async-storage.service.ts\n \n\n\n \n Description\n \n \n Generic asynchronous storage service. Concrete asynchronous storage services must extend this class\n\n \n\n \n Extends\n \n \n StorageService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Abstract\n get\n \n \n Abstract\n get\n \n \n Abstract\n ready\n \n \n Abstract\n remove\n \n \n removeAsync\n \n \n Abstract\n set\n \n \n Abstract\n set\n \n \n setAsync\n \n \n setAsync\n \n \n Abstract\n name\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Abstract\n get\n \n \n \n \n \n \n \n get(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from async storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable of value\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n get\n \n \n \n \n \n \n \n get(key: string)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n ready\n \n \n \n \n \n \n \n ready()\n \n \n\n\n\n\n \n \n reflects the readiness of the storage\n\n\n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n remove\n \n \n \n \n \n \n \n remove(key: string)\n \n \n\n\n\n\n \n \n removes an object from async storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n removeAsync\n \n \n \n \n \n \nremoveAsync(key: string)\n \n \n\n\n\n\n \n \n asynchronous helper for remove function\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n set\n \n \n \n \n \n \n \n set(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in async storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n set\n \n \n \n \n \n \n \n set(key: string, value: T)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n value\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setAsync\n \n \n \n \n \n \nsetAsync(key: string, value: any)\n \n \n\n\n\n\n \n \n asynchronous helper for set function\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setAsync\n \n \n \n \n \n \nsetAsync(key: string, value: T)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n value\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n name\n \n \n \n \n \n \n \n name()\n \n \n\n\n\n\n \n \n utility function, to determine the storage implementation\n\n\n \n Returns : string\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AsyncStorageServiceMock.html":{"url":"classes/AsyncStorageServiceMock.html","title":"class - AsyncStorageServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AsyncStorageServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/async-storage.service.mock.ts\n \n\n\n\n \n Extends\n \n \n AsyncStorageService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n ready\n \n \n remove\n \n \n removeAsync\n \n \n set\n \n \n setAsync\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \nready()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n removeAsync\n \n \n \n \n \n \nremoveAsync()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n setAsync\n \n \n \n \n \n \nsetAsync()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/CachePreventionInterceptor.html":{"url":"interceptors/CachePreventionInterceptor.html","title":"interceptor - CachePreventionInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n CachePreventionInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/cache-prevention.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(req: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n req\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/CoreAppEffects.html":{"url":"injectables/CoreAppEffects.html","title":"injectable - CoreAppEffects","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n CoreAppEffects\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/effects/app.effects.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n activatedRoute\n \n \n getAppConnectionInformation\n \n \n updateAppConnection\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(actions: Actions, showConnectionStatus: boolean | ConnectionStatus, translateService: TranslateService, asService: UxAppShellService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n actions\n \n \n Actions\n \n \n \n No\n \n \n \n \n showConnectionStatus\n \n \n boolean | ConnectionStatus\n \n \n \n No\n \n \n \n \n translateService\n \n \n TranslateService\n \n \n \n No\n \n \n \n \n asService\n \n \n UxAppShellService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n activatedRoute\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : createEffect(() =>\n this.actions.pipe(\n ofType(CoreAppActionTypes.ACTIVATED_ROUTE),\n map((action: ActivatedRouteAction) => action.payload),\n mergeMap((route) => {\n // extract the module name, if defined\n const module = route.snapshot.data['module'] || 'undefined';\n return [new UpdateCurrentModuleAction(module)];\n })\n )\n )\n \n \n\n\n \n \n \n \n \n \n \n \n getAppConnectionInformation\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : createEffect(() =>\n merge(fromEvent(window, 'online').pipe(mapTo(true)), fromEvent(window, 'offline').pipe(mapTo(false))).pipe(\n map((connected) => new UpdateAppConnectionAction(connected))\n )\n )\n \n \n\n\n \n \n \n \n \n \n \n \n updateAppConnection\n \n \n \n \n \n \n Default value : createEffect(\n () =>\n this.actions.pipe(\n ofType(CoreAppActionTypes.UPDATE_APP_CONNECTION),\n map((action: UpdateAppConnectionAction) => action.payload),\n tap((connected) => {\n // TODO: for eUI 14, drop boolean support and refactor\n // check if feature is enabled\n let isFeatureEnabled =\n typeof this.showConnectionStatus !== 'boolean' ? this.showConnectionStatus?.enabled : this.showConnectionStatus;\n // extract lifespan if any\n let lifespan =\n typeof this.showConnectionStatus !== 'boolean' ? this.showConnectionStatus?.messageBox?.lifespan || 0 : 0;\n\n // if the user needs to be informed about the connection status\n if (isFeatureEnabled) {\n if (connected) {\n this.translateService.get('eui.CONNECTED').subscribe((translation) => {\n this.asService.growl(\n { severity: 'success', summary: 'MESSAGE', detail: translation, life: lifespan },\n lifespan {\n this.asService.growl(\n { severity: 'danger', summary: 'ERROR', detail: translation, life: lifespan },\n lifespan \n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/CoreModule.html":{"url":"modules/CoreModule.html","title":"module - CoreModule","body":"\n \n\n\n\n\n Modules\n CoreModule\n\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/eui-core.module.ts\n \n\n\n\n\n\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n forChild\n \n \n \n \n \n \n \n forChild(moduleName: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n moduleName\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n forRoot()\n \n \n\n\n\n\n \n \n No more providing config from forRoot, you have to use EUI_CONFIG_TOKEN to pass config via providers.\n\n\n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/CorsSecurityInterceptor.html":{"url":"interceptors/CorsSecurityInterceptor.html","title":"interceptor - CorsSecurityInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n CorsSecurityInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/cors-security.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/CsrfPreventionInterceptor.html":{"url":"interceptors/CsrfPreventionInterceptor.html","title":"interceptor - CsrfPreventionInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n CsrfPreventionInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/csrf-prevention.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/EmptyApiQueueAction.html":{"url":"classes/EmptyApiQueueAction.html","title":"class - EmptyApiQueueAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n EmptyApiQueueAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: any)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : any\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.EMPTY_API_QUEUE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ErrorSubClass.html":{"url":"classes/ErrorSubClass.html","title":"class - ErrorSubClass","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ErrorSubClass\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/errors/eui.error.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n Optional\n code\n \n \n Public\n message\n \n \n Public\n name\n \n \n Public\n stack\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(code?: string, msg?: string, args?: any)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n code\n \n \n string\n \n \n \n Yes\n \n \n \n \n msg\n \n \n string\n \n \n \n Yes\n \n \n \n \n args\n \n \n any\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n Optional\n code\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n message\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n name\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n stack\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{"url":"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html","title":"interceptor - EuLoginSessionTimeoutHandlingInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n EuLoginSessionTimeoutHandlingInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/eu-login-session-timeout-handling.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/EuiCoreRootGuardClass.html":{"url":"classes/EuiCoreRootGuardClass.html","title":"class - EuiCoreRootGuardClass","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n EuiCoreRootGuardClass\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/eui-core.module.ts\n \n\n\n\n\n\n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/EuiError.html":{"url":"classes/EuiError.html","title":"class - EuiError","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n EuiError\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/errors/eui.error.ts\n \n\n\n\n \n Extends\n \n \n ErrorSubClass\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n Optional\n code\n \n \n Public\n message\n \n \n Public\n name\n \n \n Public\n stack\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(code: string, msg?: string, args?: any)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n code\n \n \n string\n \n \n \n No\n \n \n \n \n msg\n \n \n string\n \n \n \n Yes\n \n \n \n \n args\n \n \n any\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n Optional\n code\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n message\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n name\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n stack\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/EuiPermissionService.html":{"url":"injectables/EuiPermissionService.html","title":"injectable - EuiPermissionService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n EuiPermissionService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/permission/permission.service.ts\n \n\n\n\n \n Extends\n \n \n EuiService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n checkAttributePermission\n \n \n checkPermission\n \n \n checkRight\n \n \n getState\n \n \n init\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(log: LogService, store: StoreService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n checkAttributePermission\n \n \n \n \n \n \ncheckAttributePermission(rightsAndPermission: string)\n \n \n\n\n\n\n \n \n accepts a string of right and or a permission. In string first comes the right and or followed by permission in\na dot separated way e.g. 'RIGHT.PERMISSION' or 'RIGHT'. The string can contain more that 2 separated fields.\nIn that case the last field should be the permission and all the others a Right. e.g. 'RIGHT1.RIGHT2.PERMISSION'\nThe last part is useful where you want a user to have multiple rights and the permission of the last right.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n rightsAndPermission\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n checkPermission\n \n \n \n \n \n \ncheckPermission(rightId: string, permission: string)\n \n \n\n\n\n\n \n \n check if a user has that right and that right has the permission given.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n rightId\n \n string\n \n\n \n No\n \n\n\n \n the right of the user\n\n \n \n \n permission\n \n string\n \n\n \n No\n \n\n\n \n the permission of the right\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n checkRight\n \n \n \n \n \n \ncheckRight(rightId: string)\n \n \n\n\n\n\n \n \n check if a user has the right.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n rightId\n \n string\n \n\n \n No\n \n\n\n \n the id of Right\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState()\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n get the user's Rights from the state\n\n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(rights: UxUserRight[])\n \n \n\n\n\n\n \n \n initialize the service by providing a state\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n rights\n \n UxUserRight[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(rights: UxUserRight[])\n \n \n\n\n\n\n \n \n update the state with the given user's rights\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n rights\n \n UxUserRight[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/GlobalErrorHandler.html":{"url":"injectables/GlobalErrorHandler.html","title":"injectable - GlobalErrorHandler","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n GlobalErrorHandler\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/errors/global-error-handler.ts\n \n\n\n\n \n Extends\n \n \n ErrorHandler\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n handleError\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(logService: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n handleError\n \n \n \n \n \n \nhandleError(error: any)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/HttpErrorHandlerInterceptor.html":{"url":"interceptors/HttpErrorHandlerInterceptor.html","title":"interceptor - HttpErrorHandlerInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n HttpErrorHandlerInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/errors/http-error-handler.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(config: HttpErrorHandlerConfig, injector: Injector, router: Router)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n \n HttpErrorHandlerConfig\n \n \n \n No\n \n \n \n \n injector\n \n \n Injector\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(req: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n req\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/I18nLoader.html":{"url":"injectables/I18nLoader.html","title":"injectable - I18nLoader","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n I18nLoader\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n addResources\n \n \n Public\n getFailedResources\n \n \n Public\n getTranslation\n \n \n Public\n loadResources\n \n \n Public\n removeResources\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(http: HttpClient, logService: LogService, euiAppConfig: EuiAppConfig)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n http\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n euiAppConfig\n \n \n EuiAppConfig\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n addResources\n \n \n \n \n \n \n \n addResources(config: I18nLoaderConfig)\n \n \n\n\n\n\n \n \n Adds resources\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n config\n \n I18nLoaderConfig\n \n\n \n No\n \n\n\n \n loader configuration\n\n \n \n \n \n \n \n \n \n Returns : I18nResourceImpl[]\n\n \n \n Observable | false\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n getFailedResources\n \n \n \n \n \n \n \n getFailedResources()\n \n \n\n\n\n\n \n \n Returns resources that failed\n\n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n getTranslation\n \n \n \n \n \n \n \n getTranslation(lang: string)\n \n \n\n\n\n\n \n \n Gets the translations from the server\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n Observable\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n loadResources\n \n \n \n \n \n \n \n loadResources(resources: I18nResourceImpl[], lang: string)\n \n \n\n\n\n\n \n \n Loads an array of resources, by language\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n resources\n \n I18nResourceImpl[]\n \n\n \n No\n \n\n\n \n the definition of the resources\n\n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n the resource language to load\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n Observable\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n removeResources\n \n \n \n \n \n \n \n removeResources(removedResources: I18nResourceImpl[])\n \n \n\n\n\n\n \n \n Removes resources from the loader instance\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n removedResources\n \n I18nResourceImpl[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/I18nModule.html":{"url":"modules/I18nModule.html","title":"module - I18nModule","body":"\n \n\n\n\n\n Modules\n I18nModule\n\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.module.ts\n \n\n\n\n \n Description\n \n \n I18N Module\n\n \n\n\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n forRoot()\n \n \n\n\n\n\n \n \n method called in your root module to provide the I18nModule\n\n\n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/I18nResourceImpl.html":{"url":"classes/I18nResourceImpl.html","title":"class - I18nResourceImpl","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n I18nResourceImpl\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.resource.ts\n \n\n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n compileTranslations\n \n \n Public\n equals\n \n \n Public\n getPath\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(prefix: string, suffix: string, compileTranslationsFn: (translations: any,lang: string) => void)\n \n \n\n \n \n Resource constructor\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n prefix\n \n \n string\n \n \n \n No\n \n \n \n the prefix of the resource\n\n \n \n \n suffix\n \n \n string\n \n \n \n No\n \n \n \n the suffix of the resource, optional parameter\n\n \n \n \n compileTranslationsFn\n \n \n function\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n compileTranslations\n \n \n \n \n \n \n \n compileTranslations(translations: any, lang: string)\n \n \n\n\n\n\n \n \n Translations pre-processor\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n translations\n \n any\n \n\n \n No\n \n\n\n \n the object to be pre-processed\n\n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n the translations language\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n the pre-processed translations\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n equals\n \n \n \n \n \n \n \n equals(obj: I18nResourceImpl)\n \n \n\n\n\n\n \n \n Indicates whether other object is equal-to this one.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n obj\n \n I18nResourceImpl\n \n\n \n No\n \n\n\n \n the reference object with which to compare\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true if this object is the same as obj, false otherwise\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n getPath\n \n \n \n \n \n \n \n getPath(lang: string)\n \n \n\n\n\n\n \n \n The path to the resource\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n the resource language\n\n \n \n \n \n \n \n \n \n Returns : string\n\n \n \n the path\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/I18nService.html":{"url":"injectables/I18nService.html","title":"injectable - I18nService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n I18nService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.service.ts\n \n\n\n\n \n Extends\n \n \n EuiLazyService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n addResources\n \n \n getState\n \n \n getState\n \n \n getState\n \n \n init\n \n \n Public\n lazyLoad\n \n \n lazyLoadInit\n \n \n onReady\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(baseGlobalConfig: GlobalConfig, translateService: TranslateService, logService: LogService, store: StoreService, document: Document)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n baseGlobalConfig\n \n \n GlobalConfig\n \n \n \n No\n \n \n \n \n translateService\n \n \n TranslateService\n \n \n \n No\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n document\n \n \n Document\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n addResources\n \n \n \n \n \n \n \n addResources(config: I18nLoaderConfig, moduleName?: string)\n \n \n\n\n\n\n \n \n Add resources based of a config loader\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n config\n \n I18nLoaderConfig\n \n\n \n No\n \n\n\n \n I18nLoaderConfig\n\n \n \n \n moduleName\n \n string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n Promise an EuiServiceStatus when translation has fully loaded\n\n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(mapFn?: (state?: T) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapFn\n \n function\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(key?: a)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n a\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable<>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(keyOrMapFn?: | string)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyOrMapFn\n \n | string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(langState?: T)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n langState\n \n T\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n lazyLoad\n \n \n \n \n \n \n \n lazyLoad(config: I18nLoaderConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n I18nLoaderConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n lazyLoadInit\n \n \n \n \n \n \nlazyLoadInit(moduleConfig: ModuleConfig, moduleName?: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n moduleConfig\n \n ModuleConfig\n \n\n \n No\n \n\n\n \n \n moduleName\n \n string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n onReady\n \n \n \n \n \n \nonReady(moduleName?: string)\n \n \n\n\n\n\n \n \n A pipe function that could serve as a wrapper of another observable\ne.g. ngx-translate i18n.onReady('my_module').pipe(switchMap(()=>translate.get('eui.KEY')));\nWARNING: onReady will emit only once for a loaded Module, going to another and then going back will not result\ninto another emission.\nfetch module name from the state.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n moduleName\n \n string\n \n\n \n Yes\n \n\n\n \n the name of the module that has been given through the eUI globalConfig. In case non provided\nfetch module name from the state.\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(langState: T | I18nState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n langState\n \n T | I18nState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/I18nServiceMock.html":{"url":"injectables/I18nServiceMock.html","title":"injectable - I18nServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n I18nServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.service.mock.ts\n \n\n\n\n \n Extends\n \n \n I18nService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addResources\n \n \n getState\n \n \n init\n \n \n lazyLoadInit\n \n \n updateState\n \n \n Public\n lazyLoad\n \n \n onReady\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n onLangChange\n \n \n currentLanguage\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addResources\n \n \n \n \n \n \naddResources()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(i18nState?: I18nState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n i18nState\n \n I18nState\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n lazyLoadInit\n \n \n \n \n \n \nlazyLoadInit()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(i18nState: I18nState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n i18nState\n \n I18nState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n lazyLoad\n \n \n \n \n \n \n \n lazyLoad(config: I18nLoaderConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n I18nLoaderConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n onReady\n \n \n \n \n \n \nonReady(moduleName?: string)\n \n \n\n\n\n\n \n \n A pipe function that could serve as a wrapper of another observable\ne.g. ngx-translate i18n.onReady('my_module').pipe(switchMap(()=>translate.get('eui.KEY')));\nWARNING: onReady will emit only once for a loaded Module, going to another and then going back will not result\ninto another emission.\nfetch module name from the state.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n moduleName\n \n string\n \n\n \n Yes\n \n\n\n \n the name of the module that has been given through the eUI globalConfig. In case non provided\nfetch module name from the state.\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n onLangChange\n \n \n\n \n \n getonLangChange()\n \n \n\n \n \n \n \n \n \n \n currentLanguage\n \n \n\n \n \n getcurrentLanguage()\n \n \n\n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/InitStoreAction.html":{"url":"classes/InitStoreAction.html","title":"class - InitStoreAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n InitStoreAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: literal type)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n literal type\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : literal type\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.INIT_STORE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/LoadedResources.html":{"url":"interfaces/LoadedResources.html","title":"interface - LoadedResources","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n LoadedResources\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n errors\n \n \n \n \n hasError\n \n \n \n \n translations\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n errors\n \n \n \n \n \n \n \n \n errors: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n hasError\n \n \n \n \n \n \n \n \n hasError: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n translations\n \n \n \n \n \n \n \n \n translations: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/LoadedResourcesError.html":{"url":"interfaces/LoadedResourcesError.html","title":"interface - LoadedResourcesError","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n LoadedResourcesError\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n error\n \n \n \n \n resource\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n error\n \n \n \n \n \n \n \n \n error: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n resource\n \n \n \n \n \n \n \n \n resource: I18nResourceImpl\n\n \n \n\n\n \n \n Type : I18nResourceImpl\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocalForageService.html":{"url":"injectables/LocalForageService.html","title":"injectable - LocalForageService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LocalForageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/local-forage.service.ts\n \n\n\n \n Description\n \n \n localforage service, using the localForage javascript library\nhttps://localforage.github.io/localForage\n\n \n\n \n Extends\n \n \n AsyncStorageService\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n ready\n \n \n remove\n \n \n set\n \n \n removeAsync\n \n \n setAsync\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(config: any, log: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n \n any\n \n \n \n No\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from localforage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable of value\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n the name of the storage service\n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \nready()\n \n \n\n\n\n\n \n \n reflects the readiness of the storage\n\n\n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove(key: string)\n \n \n\n\n\n\n \n \n removes an object from localforage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in localforage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n removeAsync\n \n \n \n \n \n \nremoveAsync(key: string)\n \n \n\n\n\n\n \n \n asynchronous helper for remove function\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setAsync\n \n \n \n \n \n \nsetAsync(key: string, value: any)\n \n \n\n\n\n\n \n \n asynchronous helper for set function\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'LocalForageService'\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocalStorageService.html":{"url":"injectables/LocalStorageService.html","title":"injectable - LocalStorageService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LocalStorageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/local-storage.service.ts\n \n\n\n \n Description\n \n \n localStorage service\n\n \n\n \n Extends\n \n \n StorageService\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n remove\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(log: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from local storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n the value or undefined, if case of error\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n the name of the storage service\n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove(key: string)\n \n \n\n\n\n\n \n \n removes an object from local storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in local storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'LocalStorageService'\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocaleService.html":{"url":"injectables/LocaleService.html","title":"injectable - LocaleService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LocaleService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/locale/locale.service.ts\n \n\n\n\n \n Extends\n \n \n EuiService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addLocale\n \n \n getState\n \n \n getState\n \n \n getState\n \n \n init\n \n \n ngOnDestroy\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n previousLocale\n \n \n currentLocale\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(store: StoreService, baseGlobalConfig: GlobalConfig, locale_id: string, localeMapper: LocaleMapper, i18n: I18nService, log: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n baseGlobalConfig\n \n \n GlobalConfig\n \n \n \n No\n \n \n \n \n locale_id\n \n \n string\n \n \n \n No\n \n \n \n \n localeMapper\n \n \n LocaleMapper\n \n \n \n No\n \n \n \n \n i18n\n \n \n I18nService\n \n \n \n No\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addLocale\n \n \n \n \n \n \naddLocale(id: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(mapFn?: (state?: T) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapFn\n \n function\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(key?: a)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n a\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable<>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(keyOrMapFn?: | string)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyOrMapFn\n \n | string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(state?: LocaleState | undefined)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n LocaleState | undefined\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(state: LocaleState)\n \n \n\n\n\n\n \n \n dynamically load locale and update the state\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n LocaleState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n previousLocale\n \n \n\n \n \n getpreviousLocale()\n \n \n\n \n \n \n \n \n \n \n currentLocale\n \n \n\n \n \n getcurrentLocale()\n \n \n\n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocaleServiceMock.html":{"url":"injectables/LocaleServiceMock.html","title":"injectable - LocaleServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LocaleServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/locale/locale.service.mock.ts\n \n\n\n\n \n Extends\n \n \n LocaleService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getState\n \n \n init\n \n \n updateState\n \n \n addLocale\n \n \n ngOnDestroy\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(locale_id: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n locale_id\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(state?: LocaleState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n LocaleState\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(state: LocaleState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n LocaleState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n addLocale\n \n \n \n \n \n \naddLocale(id: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/LogModule.html":{"url":"modules/LogModule.html","title":"module - LogModule","body":"\n \n\n\n\n\n Modules\n LogModule\n\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/services/log/log.module.ts\n \n\n\n\n \n Description\n \n \n Log Module\n\n \n\n\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n forChild\n \n \n \n \n \n \n \n forChild(config: LogConfig)\n \n \n\n\n\n\n \n \n method called in your other (non root, lazy loaded) modules to import a different instance of LogService\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n \n DEFAULT_LOG_CONFIG\n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n forRoot(config: LogConfig)\n \n \n\n\n\n\n \n \n method called in your root module to provide the LogService\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n \n DEFAULT_LOG_CONFIG\n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LogService.html":{"url":"injectables/LogService.html","title":"injectable - LogService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LogService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/log/log.service.ts\n \n\n\n \n Description\n \n \n Log service, responsible for getting or creating loggers. It itself acts as a base logger\n\n \n\n \n Extends\n \n \n Logger\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getLogger\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(name: string, level: LogLevel, appenders: LogAppender[])\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n \n string\n \n \n \n No\n \n \n \n \n level\n \n \n LogLevel\n \n \n \n No\n \n \n \n \n appenders\n \n \n LogAppender[]\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getLogger\n \n \n \n \n \n \ngetLogger(loggerName: string, persist: boolean)\n \n \n\n\n\n\n \n \n Gets a logger by name. If the logger does not exist, it is created\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n Description\n \n \n \n \n loggerName\n \n string\n \n\n \n No\n \n\n \n \n\n \n logger name\n\n \n \n \n persist\n \n boolean\n \n\n \n No\n \n\n \n false\n \n\n \n optional parameter. Set it to true if you want to reuse the logger. By default, it is set to false\n\n \n \n \n \n \n \n \n \n Returns : Logger\n\n \n \n the logger\n\n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/LogServiceMock.html":{"url":"classes/LogServiceMock.html","title":"class - LogServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n LogServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/log/log.service.mock.ts\n \n\n\n\n \n Extends\n \n \n LoggerMock\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getLogger\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getLogger\n \n \n \n \n \n \ngetLogger()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ModuleLoadEvent.html":{"url":"interfaces/ModuleLoadEvent.html","title":"interface - ModuleLoadEvent","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ModuleLoadEvent\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n error\n \n \n \n \n name\n \n \n \n \n ready\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n error\n \n \n \n \n \n \n \n \n error: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \n \n \n ready: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/OpenIdConnectInterceptor.html":{"url":"interceptors/OpenIdConnectInterceptor.html","title":"interceptor - OpenIdConnectInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n OpenIdConnectInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/openid/openid-connect.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n defaultMaximumRequestRetries\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler, retryCount: number, retryCallback?: Subject>)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n \n \n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n \n \n\n \n \n retryCount\n \n number\n \n\n \n No\n \n\n \n 0\n \n\n \n \n retryCallback\n \n Subject>\n \n\n \n Yes\n \n\n \n \n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n defaultMaximumRequestRetries\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 1\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/OpenIdConnectService.html":{"url":"injectables/OpenIdConnectService.html","title":"injectable - OpenIdConnectService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n OpenIdConnectService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/openid/openid-connect.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getUserDetails\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getUserDetails\n \n \n \n \n \n \ngetUserDetails()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/OpenIdConnectServiceMock.html":{"url":"classes/OpenIdConnectServiceMock.html","title":"class - OpenIdConnectServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n OpenIdConnectServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/openid/openid-connect.service.mock.ts\n \n\n\n\n \n Extends\n \n \n OpenIdConnectService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getUserDetails\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getUserDetails\n \n \n \n \n \n \ngetUserDetails()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/OpenIdConnectUserDetails.html":{"url":"interfaces/OpenIdConnectUserDetails.html","title":"interface - OpenIdConnectUserDetails","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n OpenIdConnectUserDetails\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/openid/openid-connect.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n departmentNumber\n \n \n \n Optional\n \n domain\n \n \n \n Optional\n \n domainUsername\n \n \n \n Optional\n \n email\n \n \n \n Optional\n \n firstName\n \n \n \n Optional\n \n lastName\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n departmentNumber\n \n \n \n \n \n \n \n \n departmentNumber: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n domain\n \n \n \n \n \n \n \n \n domain: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n domainUsername\n \n \n \n \n \n \n \n \n domainUsername: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n email\n \n \n \n \n \n \n \n \n email: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n firstName\n \n \n \n \n \n \n \n \n firstName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n lastName\n \n \n \n \n \n \n \n \n lastName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/RemoveApiQueueItemAction.html":{"url":"classes/RemoveApiQueueItemAction.html","title":"class - RemoveApiQueueItemAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n RemoveApiQueueItemAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.REMOVE_API_QUEUE_ITEM\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ResourceError.html":{"url":"interfaces/ResourceError.html","title":"interface - ResourceError","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ResourceError\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n error\n \n \n \n \n isError\n \n \n \n Optional\n \n resource\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n error\n \n \n \n \n \n \n \n \n error: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n isError\n \n \n \n \n \n \n \n \n isError: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n resource\n \n \n \n \n \n \n \n \n resource: I18nResourceImpl\n\n \n \n\n\n \n \n Type : I18nResourceImpl\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/RouterMock.html":{"url":"classes/RouterMock.html","title":"class - RouterMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n RouterMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/router.mock.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n events\n \n \n Public\n ne\n \n \n Public\n routerState\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n createUrlTree\n \n \n navigate\n \n \n navigateByUrl\n \n \n serializeUrl\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n events\n \n \n \n \n \n \n Default value : new Observable((observer) => {\n observer.next(this.ne);\n observer.complete();\n })\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n ne\n \n \n \n \n \n \n Default value : new NavigationEnd(0, 'http://localhost:4200/login', 'http://localhost:4200/login')\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n routerState\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n root: {},\n }\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n createUrlTree\n \n \n \n \n \n \ncreateUrlTree()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n navigate\n \n \n \n \n \n \nnavigate(url: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n navigateByUrl\n \n \n \n \n \n \nnavigateByUrl(url: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n serializeUrl\n \n \n \n \n \n \nserializeUrl()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/SessionStorageService.html":{"url":"injectables/SessionStorageService.html","title":"injectable - SessionStorageService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n SessionStorageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/session-storage.service.ts\n \n\n\n \n Description\n \n \n sessionStorage service\n\n \n\n \n Extends\n \n \n StorageService\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n remove\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(log: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from session storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n the value or undefined, if case of error\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n the name of the storage service\n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove(key: string)\n \n \n\n\n\n\n \n \n removes an object from session storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in session storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'SessionStorageService'\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/StorageService.html":{"url":"classes/StorageService.html","title":"class - StorageService","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n StorageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/storage.service.ts\n \n\n\n \n Description\n \n \n Generic storage service. Concrete storage services must extend this class\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Abstract\n get\n \n \n Abstract\n get\n \n \n Abstract\n name\n \n \n Abstract\n remove\n \n \n Abstract\n set\n \n \n Abstract\n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Abstract\n get\n \n \n \n \n \n \n \n get(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n the value or undefined, if case of error\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n get\n \n \n \n \n \n \n \n get(key: string)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : T\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n name\n \n \n \n \n \n \n \n name()\n \n \n\n\n\n\n \n \n utility function, to determine the storage implementation\n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n remove\n \n \n \n \n \n \n \n remove(key: string)\n \n \n\n\n\n\n \n \n removes an object from storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n set\n \n \n \n \n \n \n \n set(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n set\n \n \n \n \n \n \n \n set(key: string, value: T)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n value\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/StorageServiceMock.html":{"url":"classes/StorageServiceMock.html","title":"class - StorageServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n StorageServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/storage.service.mock.ts\n \n\n\n\n \n Extends\n \n \n StorageService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n remove\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/StoreMock.html":{"url":"classes/StoreMock.html","title":"class - StoreMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n StoreMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/store.mock.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n state\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n debounceTime\n \n \n dispatch\n \n \n distinctUntilChanged\n \n \n select\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n state\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : globalState\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n debounceTime\n \n \n \n \n \n \ndebounceTime()\n \n \n\n\n\n\n \n \n\n \n Returns : this\n\n \n \n \n \n \n \n \n \n \n \n \n dispatch\n \n \n \n \n \n \ndispatch()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n distinctUntilChanged\n \n \n \n \n \n \ndistinctUntilChanged()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \nselect(selector)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Optional\n \n \n \n \n selector\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/StoreService.html":{"url":"injectables/StoreService.html","title":"injectable - StoreService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n StoreService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/store.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addAutoSaveHandler\n \n \n dispatch\n \n \n dispatchAction\n \n \n handleAutoSave\n \n \n init\n \n \n select\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(store: Store, logService: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n store\n \n \n Store\n \n \n \n No\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addAutoSaveHandler\n \n \n \n \n \n \naddAutoSaveHandler(stateSlice: string, handler: Function)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n stateSlice\n \n string\n \n\n \n No\n \n\n\n \n \n handler\n \n Function\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n dispatch\n \n \n \n \n \n \ndispatch(action: any)\n \n \n\n\n\n\n \n \n Proxy to NGRX store.dispatch()\nthat allows to intercept if the store is present\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n action\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n dispatchAction\n \n \n \n \n \n \ndispatchAction(state: any, actionKey: any, reducer: ActionReducer)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n any\n \n\n \n No\n \n\n\n \n \n actionKey\n \n any\n \n\n \n No\n \n\n\n \n \n reducer\n \n ActionReducer\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n handleAutoSave\n \n \n \n \n \n \nhandleAutoSave()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(version?: string, storageType?: BrowserStorageType)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n version\n \n string\n \n\n \n Yes\n \n\n\n \n \n storageType\n \n BrowserStorageType\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \nselect(key: any)\n \n \n\n\n\n\n \n \n Proxy to NGRX store.select()\nthat allows to intercept if the store is present\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/StoreServiceMock.html":{"url":"injectables/StoreServiceMock.html","title":"injectable - StoreServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n StoreServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/store.service.mock.ts\n \n\n\n\n \n Extends\n \n \n StoreService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addAutoSaveHandler\n \n \n dispatch\n \n \n handleAutoSave\n \n \n init\n \n \n select\n \n \n dispatchAction\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addAutoSaveHandler\n \n \n \n \n \n \naddAutoSaveHandler()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n dispatch\n \n \n \n \n \n \ndispatch()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n handleAutoSave\n \n \n \n \n \n \nhandleAutoSave()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \nselect()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n dispatchAction\n \n \n \n \n \n \ndispatchAction(state: any, actionKey: any, reducer: ActionReducer)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n any\n \n\n \n No\n \n\n\n \n \n actionKey\n \n any\n \n\n \n No\n \n\n\n \n \n reducer\n \n ActionReducer\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/TimeZone.html":{"url":"interfaces/TimeZone.html","title":"interface - TimeZone","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n TimeZone\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-timezone.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n desc\n \n \n \n \n name\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n desc\n \n \n \n \n \n \n \n \n desc: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/TranslateMockDirective.html":{"url":"directives/TranslateMockDirective.html","title":"directive - TranslateMockDirective","body":"\n \n\n\n\n\n\n\n\n\n Directives\n TranslateMockDirective\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts\n \n\n\n\n\n \n Implements\n \n \n AfterViewChecked\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [translate]\n \n\n\n\n\n \n \n \n\n \n Index\n \n \n\n\n \n \n Inputs\n \n \n \n \n \n \n translateParams\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(_element: ElementRef)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n _element\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n translateParams\n \n \n \n \n Type : any\n\n \n \n \n \n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TranslateMockModule.html":{"url":"modules/TranslateMockModule.html","title":"module - TranslateMockModule","body":"\n \n\n\n\n\n Modules\n TranslateMockModule\n\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts\n \n\n\n\n\n\n \n \n \n Declarations\n \n \n TranslateMockDirective\n \n \n TranslateMockPipe\n \n \n \n \n Exports\n \n \n TranslateMockDirective\n \n \n TranslateMockPipe\n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/TranslateMockPipe.html":{"url":"pipes/TranslateMockPipe.html","title":"pipe - TranslateMockPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Pipes\n TranslateMockPipe\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts\n \n\n\n\n\n \n Metadata\n \n \n \n Name\n translate\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \ntransform(text: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n text\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TranslateServiceMock.html":{"url":"classes/TranslateServiceMock.html","title":"class - TranslateServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TranslateServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n currentLang\n \n \n isLoaded\n \n \n isLoadedSubject\n \n \n languages\n \n \n onDefaultLangChange\n \n \n onDefaultLangChangeSubject\n \n \n onLangChange\n \n \n onLangChangeSubject\n \n \n onTranslationChange\n \n \n onTranslationChangeSubject\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addLangs\n \n \n get\n \n \n getBrowserLang\n \n \n getLangs\n \n \n getTranslation\n \n \n instant\n \n \n setDefaultLang\n \n \n use\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n currentLang\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n isLoaded\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.isLoadedSubject.asObservable()\n \n \n\n\n \n \n \n \n \n \n \n \n isLoadedSubject\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(true)\n \n \n\n\n \n \n \n \n \n \n \n \n languages\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [DEFAULT_LANGUAGE]\n \n \n\n\n \n \n \n \n \n \n \n \n onDefaultLangChange\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.onDefaultLangChangeSubject.asObservable()\n \n \n\n\n \n \n \n \n \n \n \n \n onDefaultLangChangeSubject\n \n \n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n\n\n \n \n \n \n \n \n \n \n onLangChange\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.onLangChangeSubject.asObservable()\n \n \n\n\n \n \n \n \n \n \n \n \n onLangChangeSubject\n \n \n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n\n\n \n \n \n \n \n \n \n \n onTranslationChange\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.onTranslationChangeSubject.asObservable()\n \n \n\n\n \n \n \n \n \n \n \n \n onTranslationChangeSubject\n \n \n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addLangs\n \n \n \n \n \n \naddLangs(langs: string[])\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n langs\n \n string[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget(content: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n content\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getBrowserLang\n \n \n \n \n \n \ngetBrowserLang()\n \n \n\n\n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n getLangs\n \n \n \n \n \n \ngetLangs()\n \n \n\n\n\n\n \n \n\n \n Returns : string[]\n\n \n \n \n \n \n \n \n \n \n \n \n getTranslation\n \n \n \n \n \n \ngetTranslation()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n instant\n \n \n \n \n \n \ninstant(key: string | string[])\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string | string[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setDefaultLang\n \n \n \n \n \n \nsetDefaultLang(lang: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n use\n \n \n \n \n \n \nuse(lang: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateAppConnectionAction.html":{"url":"classes/UpdateAppConnectionAction.html","title":"class - UpdateAppConnectionAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateAppConnectionAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: boolean)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n boolean\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : boolean\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.UPDATE_APP_CONNECTION\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateAppStatusAction.html":{"url":"classes/UpdateAppStatusAction.html","title":"class - UpdateAppStatusAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateAppStatusAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.UPDATE_APP_STATUS\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateAppVersionAction.html":{"url":"classes/UpdateAppVersionAction.html","title":"class - UpdateAppVersionAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateAppVersionAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.UPDATE_APP_VERSION\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateCurrentModuleAction.html":{"url":"classes/UpdateCurrentModuleAction.html","title":"class - UpdateCurrentModuleAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateCurrentModuleAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.UPDATE_CURRENT_MODULE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateI18nStateAction.html":{"url":"classes/UpdateI18nStateAction.html","title":"class - UpdateI18nStateAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateI18nStateAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/i18n.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: I18nState)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n I18nState\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : I18nState\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreI18nActionTypes.UPDATE_I18N_STATE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateLocaleStateAction.html":{"url":"classes/UpdateLocaleStateAction.html","title":"class - UpdateLocaleStateAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateLocaleStateAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/locale.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: LocaleState)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n LocaleState\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : LocaleState\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreLocaleActionTypes.UPDATE_LOCALE_STATE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateNotificationsListAction.html":{"url":"classes/UpdateNotificationsListAction.html","title":"class - UpdateNotificationsListAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateNotificationsListAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/notifications.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: any[])\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n any[]\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : any[]\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreNotificationsActionTypes.UPDATE_NOTIFICATIONS_LIST\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserDashboardAction.html":{"url":"classes/UpdateUserDashboardAction.html","title":"class - UpdateUserDashboardAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserDashboardAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: any)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : any\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_DASHBOARD\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserDetailsAction.html":{"url":"classes/UpdateUserDetailsAction.html","title":"class - UpdateUserDetailsAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserDetailsAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: UserDetails)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n UserDetails\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : UserDetails\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_DETAILS\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserPreferencesAction.html":{"url":"classes/UpdateUserPreferencesAction.html","title":"class - UpdateUserPreferencesAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserPreferencesAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: UserPreferences)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n UserPreferences\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : UserPreferences\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_PREFERENCES\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserRightsAction.html":{"url":"classes/UpdateUserRightsAction.html","title":"class - UpdateUserRightsAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserRightsAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: UxUserRight[])\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n UxUserRight[]\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : UxUserRight[]\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_RIGHTS\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserStateAction.html":{"url":"classes/UpdateUserStateAction.html","title":"class - UpdateUserStateAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserStateAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: UserState)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n UserState\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : UserState\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_STATE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UserService.html":{"url":"injectables/UserService.html","title":"injectable - UserService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UserService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/user/user.service.ts\n \n\n\n\n \n Extends\n \n \n EuiService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getState\n \n \n getState\n \n \n getState\n \n \n init\n \n \n updateState\n \n \n updateState\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(store: StoreService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(mapFn?: (state?: T) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapFn\n \n function\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(key?: a)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n a\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable<>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(keyOrMapFn?: | string)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyOrMapFn\n \n | string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(userState: T)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(userState: T)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(slice, reducer: (state: any,undefined) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n slice\n \n \n\n \n No\n \n\n\n \n \n reducer\n \n function\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(userState: K | T, reducer?: any)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n K | T\n \n\n \n No\n \n\n\n \n \n reducer\n \n any\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UserServiceMock.html":{"url":"injectables/UserServiceMock.html","title":"injectable - UserServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UserServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/user/user.service.mock.ts\n \n\n\n\n \n Extends\n \n \n UserService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getUserId\n \n \n loadUserDetails\n \n \n loadUserPreferences\n \n \n mergeUserPreferences\n \n \n observePreferencesUpdate\n \n \n saveUserPreferences\n \n \n userPreferences\n \n \n getState\n \n \n init\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getUserId\n \n \n \n \n \n \ngetUserId()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n loadUserDetails\n \n \n \n \n \n \nloadUserDetails()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n loadUserPreferences\n \n \n \n \n \n \nloadUserPreferences()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n mergeUserPreferences\n \n \n \n \n \n \nmergeUserPreferences()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n observePreferencesUpdate\n \n \n \n \n \n \nobservePreferencesUpdate()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveUserPreferences\n \n \n \n \n \n \nsaveUserPreferences()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n userPreferences\n \n \n \n \n \n \nuserPreferences()\n \n \n\n\n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(mapFn?: (state?: T) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapFn\n \n function\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(userState: T)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(userState: T)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UxDynamicComponentService.html":{"url":"injectables/UxDynamicComponentService.html","title":"injectable - UxDynamicComponentService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UxDynamicComponentService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-dynamic-component/ux-dynamic-component.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n add\n \n \n Public\n remove\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(componentFactoryResolver: ComponentFactoryResolver, injector: Injector, appRef: ApplicationRef)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n componentFactoryResolver\n \n \n ComponentFactoryResolver\n \n \n \n No\n \n \n \n \n injector\n \n \n Injector\n \n \n \n No\n \n \n \n \n appRef\n \n \n ApplicationRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n add\n \n \n \n \n \n \n \n add(component: ComponentType, el?: ElementRef, config?: any)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n Adds a component to portal host dynamically\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n component\n \n ComponentType\n \n\n \n No\n \n\n\n \n The component to be injected\n\n \n \n \n el\n \n ElementRef\n \n\n \n Yes\n \n\n\n \n The element reference for the component to be injected\n\n \n \n \n config\n \n any\n \n\n \n Yes\n \n\n\n \n The data to be passed (config) for the DYNAMIC_COMPONENT_CONFIG token\n\n \n \n \n \n \n \n \n \n Returns : { portalHost: DomPortalOutlet; portal: ComponentPortal; portalComponentInstance: ComponentRef; }\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n remove\n \n \n \n \n \n \n \n remove(portalHostRef: DomPortalOutlet)\n \n \n\n\n\n\n \n \n detaches a portalHost\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n portalHostRef\n \n DomPortalOutlet\n \n\n \n No\n \n\n\n \n reference of portal host to be detached\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UxDynamicMenuService.html":{"url":"injectables/UxDynamicMenuService.html","title":"injectable - UxDynamicMenuService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UxDynamicMenuService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-dynamic-menu/ux-dynamic-menu.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n menuLinks\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n filterUxLinksWithRights\n \n \n getMenuLinks\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(uxPermission: EuiPermissionService, store: StoreService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n uxPermission\n \n \n EuiPermissionService\n \n \n \n No\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n filterUxLinksWithRights\n \n \n \n \n \n \nfilterUxLinksWithRights(links: Array)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n links\n \n Array\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getMenuLinks\n \n \n \n \n \n \ngetMenuLinks()\n \n \n\n\n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n menuLinks\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UxErrorFeedbackService.html":{"url":"injectables/UxErrorFeedbackService.html","title":"injectable - UxErrorFeedbackService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UxErrorFeedbackService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-error-feedback/ux-error-feedback.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n errors\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n clearError\n \n \n createGlobalErrorManager\n \n \n createLocalErrorManager\n \n \n growlError\n \n \n publishError\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(asService: UxAppShellService, translateService: TranslateService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n asService\n \n \n UxAppShellService\n \n \n \n No\n \n \n \n \n translateService\n \n \n TranslateService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n clearError\n \n \n \n \n \n \nclearError(id?: string, groupId?: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n Yes\n \n\n\n \n \n groupId\n \n string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n createGlobalErrorManager\n \n \n \n \n \n \ncreateGlobalErrorManager()\n \n \n\n\n\n\n \n \n\n \n Returns : UxErrorManager\n\n \n \n \n \n \n \n \n \n \n \n \n createLocalErrorManager\n \n \n \n \n \n \ncreateLocalErrorManager()\n \n \n\n\n\n\n \n \n\n \n Returns : UxErrorManager\n\n \n \n \n \n \n \n \n \n \n \n \n growlError\n \n \n \n \n \n \ngrowlError(err: UxHttpErrorResponse)\n \n \n\n\n\n\n \n \n Growl errors\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n err\n \n UxHttpErrorResponse\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n publishError\n \n \n \n \n \n \npublishError(err: UxHttpErrorResponse, instanceId?: string, groupId?: string, accumulate?: boolean)\n \n \n\n\n\n\n \n \n Publishes errors to targeted components\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n err\n \n UxHttpErrorResponse\n \n\n \n No\n \n\n\n \n \n instanceId\n \n string\n \n\n \n Yes\n \n\n\n \n \n groupId\n \n string\n \n\n \n Yes\n \n\n\n \n \n accumulate\n \n boolean\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n errors\n \n \n \n \n \n \n Default value : new Subject()\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UxErrorManager.html":{"url":"classes/UxErrorManager.html","title":"class - UxErrorManager","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UxErrorManager\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-error-feedback/ux-error-feedback.service.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Readonly\n httpErrorOperator\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n clearError\n \n \n errors\n \n \n growlError\n \n \n publishError\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(uxErrorFeedbackService: UxErrorFeedbackService, isGlobal?: boolean)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n uxErrorFeedbackService\n \n \n UxErrorFeedbackService\n \n \n \n No\n \n \n \n \n isGlobal\n \n \n boolean\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Readonly\n httpErrorOperator\n \n \n \n \n \n \n Default value : withUxErrorManager(this)\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n clearError\n \n \n \n \n \n \nclearError(groupId?: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n groupId\n \n string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n errors\n \n \n \n \n \n \nerrors()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n growlError\n \n \n \n \n \n \ngrowlError(err: UxHttpErrorResponse)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n err\n \n UxHttpErrorResponse\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n publishError\n \n \n \n \n \n \npublishError(err: UxHttpErrorResponse, groupId?: string, accumulate?: boolean)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n err\n \n UxHttpErrorResponse\n \n\n \n No\n \n\n\n \n \n groupId\n \n string\n \n\n \n Yes\n \n\n\n \n \n accumulate\n \n boolean\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/UxRequestErrorModelInterceptor.html":{"url":"interceptors/UxRequestErrorModelInterceptor.html","title":"interceptor - UxRequestErrorModelInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n UxRequestErrorModelInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/ux-request-error-model.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(errorMappingHandler: ErrorMappingHandler)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n errorMappingHandler\n \n \n ErrorMappingHandler\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(req: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n req\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UxRootInjectorGuard.html":{"url":"classes/UxRootInjectorGuard.html","title":"class - UxRootInjectorGuard","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UxRootInjectorGuard\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-root-injector.guard.ts\n \n\n\n\n\n\n\n\n \n Constructor\n \n \n \n \nconstructor(type: Type)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n type\n \n \n Type\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UxTimezoneService.html":{"url":"injectables/UxTimezoneService.html","title":"injectable - UxTimezoneService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UxTimezoneService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-timezone.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getCountries\n \n \n getTimezone\n \n \n getTimezones\n \n \n iso2country\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getCountries\n \n \n \n \n \n \ngetCountries()\n \n \n\n\n\n\n \n \n Gets the list of ISO-codes for all countries\n\n\n \n Returns : string[]\n\n \n \n \n \n \n \n \n \n \n \n \n getTimezone\n \n \n \n \n \n \ngetTimezone(tz: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n tz\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : TimeZone\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getTimezones\n \n \n \n \n \n \ngetTimezones()\n \n \n\n\n\n\n \n \n\n \n Returns : TimeZone[]\n\n \n \n \n \n \n \n \n \n \n \n \n iso2country\n \n \n \n \n \n \niso2country(iso: string)\n \n \n\n\n\n\n \n \n Convert country ISO code to country name (in english)\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n iso\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @angular/animations : 16.2.10\n \n @angular/common : 16.2.10\n \n @angular/compiler : 16.2.10\n \n @angular/core : 16.2.10\n \n @angular/forms : 16.2.10\n \n @angular/platform-browser : 16.2.10\n \n @angular/platform-browser-dynamic : 16.2.10\n \n @angular/router : 16.2.10\n \n @angular/compiler-cli : 16.2.10\n \n @angular/elements : 16.2.10\n \n @angular/language-service : 16.2.10\n \n @angular/service-worker : 16.2.10\n \n @angular-devkit/build-angular : 16.2.6\n \n @angular/cli : 16.2.6\n \n ng-packagr : 16.2.3\n \n @angular/cdk : 16.2.9\n \n @angular/material : 16.2.9\n \n @angular/material-moment-adapter : 16.2.9\n \n angular-animations : 0.11.0\n \n @angular-eslint/builder : 16.2.0\n \n @angular-eslint/eslint-plugin : 16.2.0\n \n @angular-eslint/eslint-plugin-template : 16.2.0\n \n @angular-eslint/schematics : 16.2.0\n \n @angular-eslint/template-parser : 16.2.0\n \n eslint-plugin-prefer-arrow : 1.2.3\n \n eslint-plugin-jsdoc : 43.1.1\n \n @typescript-eslint/parser : 5.59.7\n \n @typescript-eslint/eslint-plugin : 5.59.7\n \n eslint-plugin-import : 2.27.5\n \n @webcomponents/custom-elements : 1.6.0\n \n eslint : 8.41.0\n \n rxjs : 7.8.1\n \n tslib : ^2.3.0\n \n zone.js : 0.13.1\n \n typescript : 4.9.5\n \n @types/jasmine : 4.3.5\n \n @types/node : 18.16.3\n \n moment-timezone : 0.5.43\n \n jasmine-core : 4.6.0\n \n karma : 6.4.2\n \n karma-chrome-launcher : 3.2.0\n \n karma-coverage : 2.2.0\n \n karma-jasmine : 5.1.0\n \n karma-jasmine-html-reporter : 2.0.0\n \n karma-cli : 2.0.0\n \n karma-coverage-istanbul-reporter : 3.0.3\n \n karma-sourcemap-loader : 0.4.0\n \n karma-remap-coverage : 0.1.5\n \n jasmine-marbles : 0.9.2\n \n jasmine-spec-reporter : 7.0.0\n \n ts-node : 10.9.1\n \n @types/jasminewd2 : 2.0.10\n \n @types/lodash : 4.14.194\n \n @ngrx/effects : 16.3.0\n \n @ngrx/router-store : 16.3.0\n \n @ngrx/schematics : 16.3.0\n \n @ngrx/store : 16.3.0\n \n @ngrx/store-devtools : 16.3.0\n \n @ngrx/entity : 16.3.0\n \n @ngrx/component : 16.3.0\n \n @ngrx/component-store : 16.3.0\n \n ngrx-store-freeze : 0.2.4\n \n reselect : 4.1.8\n \n @ngx-translate/core : 15.0.0\n \n @ngx-translate/http-loader : 8.0.0\n \n ngx-infinite-scroll : 16.0.0\n \n cleave.js : 1.6.0\n \n @types/cleave.js : 1.4.8\n \n ngx-mask : 14.2.4\n \n quill : 2.0.0-dev.4\n \n @types/quill : 2.0.11\n \n quill-better-table : 1.2.10\n \n intl : 1.2.5\n \n resize-observer-polyfill : 1.5.1\n \n classlist.js : 1.1.20150312\n \n xhr-mock : 2.5.1\n \n ngx-device-detector : 3.0.0\n \n @compodoc/compodoc : 1.1.21\n \n @compodoc/ngd-transformer : 2.1.3\n \n @types/marked : 4.3.0\n \n marked : 4.3.0\n \n prismjs : 1.29.0\n \n oidc-client : 1.11.5\n \n jsrsasign : 10.8.6\n \n web-animations-js : 2.3.2\n \n event-source-polyfill : 1.0.31\n \n lodash-es : 4.17.21\n \n localforage : 1.10.0\n \n hammerjs : 2.0.8\n \n handlebars : 4.7.7\n \n pikaday : 1.8.2\n \n apexcharts : 3.41.0\n \n @stackblitz/sdk : 1.9.0\n \n prettier : 2.8.8\n \n prettier-eslint : 15.0.1\n \n eslint-config-prettier : 8.8.0\n \n eslint-plugin-prettier : 4.2.1\n \n @eui/styles-base : 16.2.4-snapshot-1697740876553\n \n @eui/ecl : 16.2.4-snapshot-1697740876553\n \n @eui/tools : ^6.0.0\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/enumerations.html":{"url":"miscellaneous/enumerations.html","title":"miscellaneous-enumerations - enumerations","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Enumerations\n\n\n\n Index\n \n \n \n \n \n \n BrowserStorageType (packages/.../store.service.ts)\n \n \n CoreAppActionTypes (packages/.../app.actions.ts)\n \n \n CoreI18nActionTypes (packages/.../i18n.actions.ts)\n \n \n CoreLocaleActionTypes (packages/.../locale.actions.ts)\n \n \n CoreNotificationsActionTypes (packages/.../notifications.actions.ts)\n \n \n CoreUserActionTypes (packages/.../user.actions.ts)\n \n \n \n \n \n \n\n\n packages/eui/packages/core/src/lib/services/store/store.service.ts\n \n \n \n \n \n \n BrowserStorageType\n \n \n \n \n local\n \n \n \n \n session\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n \n \n \n \n \n CoreAppActionTypes\n \n \n \n \n INIT_STORE\n \n \n \n \n Value : [App] Init store\n \n \n \n \n UPDATE_APP_VERSION\n \n \n \n \n Value : [App] Update version\n \n \n \n \n UPDATE_APP_CONNECTION\n \n \n \n \n Value : [App] Update connection\n \n \n \n \n ADD_APP_LOADED_CONFIG_MODULES\n \n \n \n \n Value : [App] Update app loaded config modules\n \n \n \n \n UPDATE_APP_STATUS\n \n \n \n \n Value : [App] Update status\n \n \n \n \n UPDATE_CURRENT_MODULE\n \n \n \n \n Value : [App] Update current module\n \n \n \n \n ACTIVATED_ROUTE\n \n \n \n \n Value : [App] Activated route\n \n \n \n \n ADD_API_QUEUE_ITEM\n \n \n \n \n Value : [App] Add API queue item\n \n \n \n \n REMOVE_API_QUEUE_ITEM\n \n \n \n \n Value : [App] Remove API queue item\n \n \n \n \n EMPTY_API_QUEUE\n \n \n \n \n Value : [App] empty API queue\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/i18n.actions.ts\n \n \n \n \n \n \n CoreI18nActionTypes\n \n \n \n \n UPDATE_I18N_STATE\n \n \n \n \n Value : [I18n] Update I18n State\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/locale.actions.ts\n \n \n \n \n \n \n CoreLocaleActionTypes\n \n \n \n \n UPDATE_LOCALE_STATE\n \n \n \n \n Value : [Locale] Update Locale State\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/notifications.actions.ts\n \n \n \n \n \n \n CoreNotificationsActionTypes\n \n \n \n \n UPDATE_NOTIFICATIONS_LIST\n \n \n \n \n Value : [Notif] Update list\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n \n \n \n \n \n CoreUserActionTypes\n \n \n \n \n UPDATE_USER_STATE\n \n \n \n \n Value : [User] Update User state\n \n \n \n \n UPDATE_USER_DETAILS\n \n \n \n \n Value : [User] Update details\n \n \n \n \n UPDATE_USER_PREFERENCES\n \n \n \n \n Value : [User] Update preferences\n \n \n \n \n UPDATE_USER_RIGHTS\n \n \n \n \n Value : [User] Update rights\n \n \n \n \n UPDATE_USER_DASHBOARD\n \n \n \n \n Value : [User] Update dashboard\n \n \n \n \n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n AlertHttpErrorCallbackFn (packages/.../http-error-handler-callback-functions.ts)\n \n \n ConsoleHttpErrorCallbackFn (packages/.../http-error-handler-callback-functions.ts)\n \n \n euiLogServiceFactory (packages/.../log.ts)\n \n \n getCoreChildProviders (packages/.../eui-startup.ts)\n \n \n getCoreProviders (packages/.../eui-startup.ts)\n \n \n getDependencyProviders (packages/.../eui-startup.ts)\n \n \n getGlobalConfig (packages/.../tokens.ts)\n \n \n getHttpErrorHandlingConfig (packages/.../tokens.ts)\n \n \n getLogAppendersConfig (packages/.../log.ts)\n \n \n getModuleConfig (packages/.../tokens.ts)\n \n \n getRootLogConfig (packages/.../tokens.ts)\n \n \n getShowConnectionStatus (packages/.../tokens.ts)\n \n \n GrowlHttpErrorCallbackFn (packages/.../http-error-handler-callback-functions.ts)\n \n \n isLogConfigDefined (packages/.../log.ts)\n \n \n loadEuiDynamicEnvironmentConfig (packages/.../eui-pre-init-app.ts)\n \n \n localStorageSync (packages/.../meta.reducers.ts)\n \n \n LogHttpErrorCallbackFn (packages/.../http-error-handler-callback-functions.ts)\n \n \n logServiceFactory (packages/.../log.ts)\n \n \n mergeAppHandlerConfigToAppConfig (packages/.../tokens.ts)\n \n \n mergeAppJsonConfigToAppConfig (packages/.../tokens.ts)\n \n \n preInitApp (packages/.../eui-pre-init-app.ts)\n \n \n prepareEuiAppConfigToken (packages/.../tokens.ts)\n \n \n sessionStorageSync (packages/.../meta.reducers.ts)\n \n \n withUxErrorManager (packages/.../ux-error-handler.operator.ts)\n \n \n \n \n \n \n\n\n packages/eui/packages/core/src/lib/services/errors/http-error-handler-callback-functions.ts\n \n \n \n \n \n \n \n AlertHttpErrorCallbackFn\n \n \n \n \n \n \nAlertHttpErrorCallbackFn(error: HttpErrorResponse)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n HttpErrorResponse\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ConsoleHttpErrorCallbackFn\n \n \n \n \n \n \nConsoleHttpErrorCallbackFn(error: HttpErrorResponse)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n HttpErrorResponse\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n GrowlHttpErrorCallbackFn\n \n \n \n \n \n \nGrowlHttpErrorCallbackFn(error: HttpErrorResponse, injector: Injector)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n HttpErrorResponse\n \n\n \n No\n \n\n\n \n \n injector\n \n Injector\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n LogHttpErrorCallbackFn\n \n \n \n \n \n \nLogHttpErrorCallbackFn(error: HttpErrorResponse, injector: Injector)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n HttpErrorResponse\n \n\n \n No\n \n\n\n \n \n injector\n \n Injector\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n \n \n \n packages/eui/packages/core/src/lib/services/app/factories/log.ts\n \n \n \n \n \n \n \n euiLogServiceFactory\n \n \n \n \n \n \neuiLogServiceFactory(injector: Injector, rootBaseLoggerName: string, rootConfig: LogConfig, childBaseLoggerName: string, childConfig: LogConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n injector\n \n Injector\n \n\n \n No\n \n\n \n \n\n \n \n rootBaseLoggerName\n \n string\n \n\n \n No\n \n\n \n \n\n \n \n rootConfig\n \n LogConfig\n \n\n \n No\n \n\n \n \n\n \n \n childBaseLoggerName\n \n string\n \n\n \n No\n \n\n \n null\n \n\n \n \n childConfig\n \n LogConfig\n \n\n \n No\n \n\n \n {}\n \n\n \n \n \n \n \n \n \n Returns : LogService\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getLogAppendersConfig\n \n \n \n \n \n \ngetLogAppendersConfig(config: LogConfig, injector: Injector)\n \n \n\n\n\n\n \n \n Helper function to provide a list of log appenders from a log configuration\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n \n DEFAULT_LOG_CONFIG\n \n\n \n \n injector\n \n Injector\n \n\n \n No\n \n\n \n null\n \n\n \n \n \n \n \n \n \n Returns : LogAppender[]\n\n \n \n an array of log appenders\n\n \n \n \n \n \n \n \n \n \n \n \n isLogConfigDefined\n \n \n \n \n \n \nisLogConfigDefined(config: LogConfig)\n \n \n\n\n\n\n \n \n Helper function to check if the log config is defined.\nDoes not check only for empty object, because the config can have other (non-log) parameters\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true/false\n\n \n \n \n \n \n \n \n \n \n \n \n logServiceFactory\n \n \n \n \n \n \nlogServiceFactory(config: LogConfig, injector: Injector)\n \n \n\n\n\n\n \n \n Helper function to provide an instance of LogService from a configuration\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n \n DEFAULT_LOG_CONFIG\n \n\n \n \n injector\n \n Injector\n \n\n \n No\n \n\n \n null\n \n\n \n \n \n \n \n \n \n Returns : LogService\n\n \n \n an instance of log service\n\n \n \n \n \n \n packages/eui/packages/core/src/lib/services/app/eui-startup.ts\n \n \n \n \n \n \n \n getCoreChildProviders\n \n \n \n \n \n \ngetCoreChildProviders(moduleName: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n moduleName\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Provider[]\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getCoreProviders\n \n \n \n \n \n \ngetCoreProviders()\n \n \n\n\n\n\n \n \n\n \n Returns : Provider[]\n\n \n \n \n \n \n \n \n \n \n \n \n getDependencyProviders\n \n \n \n \n \n \ngetDependencyProviders()\n \n \n\n\n\n\n \n \n\n \n Returns : Provider[]\n\n \n \n \n \n \n packages/eui/packages/core/src/lib/services/config/tokens.ts\n \n \n \n \n \n \n \n getGlobalConfig\n \n \n \n \n \n \ngetGlobalConfig(appConfig: EuiAppConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n appConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : GlobalConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getHttpErrorHandlingConfig\n \n \n \n \n \n \ngetHttpErrorHandlingConfig(appConfig: EuiAppConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n appConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : HttpErrorHandlerConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getModuleConfig\n \n \n \n \n \n \ngetModuleConfig(appConfig: EuiAppConfig, moduleName: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n appConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n moduleName\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : ModuleConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getRootLogConfig\n \n \n \n \n \n \ngetRootLogConfig(appConfig: EuiAppConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n appConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : LogConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getShowConnectionStatus\n \n \n \n \n \n \ngetShowConnectionStatus(globalConfig: GlobalConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n globalConfig\n \n GlobalConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean | ConnectionStatus\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n mergeAppHandlerConfigToAppConfig\n \n \n \n \n \n \nmergeAppHandlerConfigToAppConfig(euiAppConfig: EuiAppConfig, envAppHandler: EuiAppHandlersConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n euiAppConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n envAppHandler\n \n EuiAppHandlersConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : EuiAppConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n mergeAppJsonConfigToAppConfig\n \n \n \n \n \n \nmergeAppJsonConfigToAppConfig(euiAppConfig: EuiAppConfig, envAppJsonConfig: EuiAppJsonConfig, merge: Array, isDeepMerge: boolean)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n euiAppConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n envAppJsonConfig\n \n EuiAppJsonConfig\n \n\n \n No\n \n\n\n \n \n merge\n \n Array\n \n\n \n No\n \n\n\n \n \n isDeepMerge\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : EuiAppConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n prepareEuiAppConfigToken\n \n \n \n \n \n \nprepareEuiAppConfigToken(euiConfig: EuiConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n euiConfig\n \n EuiConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : EuiAppConfig\n\n \n \n \n \n \n \n \n \n packages/eui/packages/core/src/lib/services/app/eui-pre-init-app.ts\n \n \n \n \n \n \n \n loadEuiDynamicEnvironmentConfig\n \n \n \n \n \n \nloadEuiDynamicEnvironmentConfig(url: string, timeout?: number)\n \n \n\n\n\n\n \n \n Function to load asynchronously a dynamic configuration (from a local path or a web service)\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n url\n \n string\n \n\n \n No\n \n\n\n \n the path to the configuration\n\n \n \n \n timeout\n \n number\n \n\n \n Yes\n \n\n\n \n possible timeout\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n EuiAppJsonConfig promise\n\n \n \n \n \n \n \n \n \n \n \n \n preInitApp\n \n \n \n \n \n \npreInitApp(envConfig: EuiEnvConfig)\n \n \n\n\n\n\n \n \n Function to be used before the AppModule is bootstrapped. It is currently used to load dynamic configurations.\nIt needs to be added in your application main.ts file.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n envConfig\n \n EuiEnvConfig\n \n\n \n No\n \n\n\n \n the current environment configuration\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n the updated environment configuration, as a promise\n\n \n \n \n \n \n packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts\n \n \n \n \n \n \n \n localStorageSync\n \n \n \n \n \n \nlocalStorageSync(reducer: ActionReducer)\n \n \n\n\n\n\n \n \n Utility meta-reducer to load the state from the local storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n reducer\n \n ActionReducer\n \n\n \n No\n \n\n\n \n the action reducer\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sessionStorageSync\n \n \n \n \n \n \nsessionStorageSync(reducer: ActionReducer)\n \n \n\n\n\n\n \n \n Utility meta-reducer to load the state from the session storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n reducer\n \n ActionReducer\n \n\n \n No\n \n\n\n \n the action reducer\n\n \n \n \n \n \n \n \n \n \n \n \n packages/eui/packages/core/src/lib/services/ux-error-feedback/ux-error-handler.operator.ts\n \n \n \n \n \n \n \n withUxErrorManager\n \n \n \n \n \n \nwithUxErrorManager(errorManager?: UxErrorManager)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n errorManager\n \n UxErrorManager\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : OperatorFunction\n\n \n \n \n \n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"overview - index","body":"\n \n\n\n\n Overview\n\n\n\n \n \n \n \n \n \n 4 Modules\n \n \n \n \n \n \n \n \n 1 Directive\n \n \n \n \n \n \n \n 23 Injectables\n \n \n \n \n \n \n \n 1 Pipe\n \n \n \n \n \n \n \n 34 Classes\n \n \n \n \n \n \n \n 7 Interfaces\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nEuropean Union Public Licence\n V. 1.1\nEUPL (c) the European Community 2007\nThis European Union Public Licence (the \"EUPL\") applies to the Work or Software\n(as defined below) which is provided under the terms of this Licence. Any use\nof the Work, other than as authorised under this Licence is prohibited (to the\nextent such use is covered by a right of the copyright holder of the Work).\nThe Original Work is provided under the terms of this Licence when the Licensor\n(as defined below) has placed the following notice immediately following the\ncopyright notice for the Original Work:\nLicensed under the EUPL V.1.1\nor has expressed by any other mean his willingness to license under the EUPL.\n\nDefinitions\n\nIn this Licence, the following terms have the following meaning:\n\nThe Licence: this Licence.\n\nThe Original Work or the Software: the software distributed and/or\ncommunicated by the Licensor under this Licence, available as Source Code\nand also as Executable Code as the case may be.\n\nDerivative Works: the works or software that could be created by the\nLicensee, based upon the Original Work or modifications thereof. This\nLicence does not define the extent of modification or dependence on the\nOriginal Work required in order to classify a work as a Derivative Work;\nthis extent is determined by copyright law applicable in the country\nmentioned in Article 15.\n\nThe Work: the Original Work and/or its Derivative Works.\n\nThe Source Code: the human-readable form of the Work which is the most\nconvenient for people to study and modify.\n\nThe Executable Code: any code which has generally been compiled and which is\nmeant to be interpreted by a computer as a program.\n\nThe Licensor: the natural or legal person that distributes and/or\ncommunicates the Work under the Licence.\n\nContributor(s): any natural or legal person who modifies the Work under the\nLicence, or otherwise contributes to the creation of a Derivative Work.\n\nThe Licensee or \"You\": any natural or legal person who makes any usage of\nthe Software under the terms of the Licence.\n\nDistribution and/or Communication: any act of selling, giving, lending,\nrenting, distributing, communicating, transmitting, or otherwise making\navailable, on-line or off-line, copies of the Work or providing access to\nits essential functionalities at the disposal of any other natural or legal\nperson.\n\n\n\nScope of the rights granted by the Licence\n\nThe Licensor hereby grants You a world-wide, royalty-free, non-exclusive,\nsublicensable licence to do the following, for the duration of copyright vested\nin the Original Work:\n\nuse the Work in any circumstance and for all usage,\nreproduce the Work,\nmodify the Original Work, and make Derivative Works based upon the Work,\ncommunicate to the public, including the right to make available or display\nthe Work or copies thereof to the public and perform publicly, as the case\nmay be, the Work,\ndistribute the Work or copies thereof,\nlend and rent the Work or copies thereof,\nsub-license rights in the Work or copies thereof.\n\nThose rights can be exercised on any media, supports and formats, whether now\nknown or later invented, as far as the applicable law permits so.\nIn the countries where moral rights apply, the Licensor waives his right to\nexercise his moral right to the extent allowed by law in order to make\neffective the licence of the economic rights here above listed.\nThe Licensor grants to the Licensee royalty-free, non exclusive usage rights to\nany patents held by the Licensor, to the extent necessary to make use of the\nrights granted on the Work under this Licence.\n\nCommunication of the Source Code\n\nThe Licensor may provide the Work either in its Source Code form, or as\nExecutable Code. If the Work is provided as Executable Code, the Licensor\nprovides in addition a machine-readable copy of the Source Code of the Work\nalong with each copy of the Work that the Licensor distributes or indicates, in\na notice following the copyright notice attached to the Work, a repository\nwhere the Source Code is easily and freely accessible for as long as the\nLicensor continues to distribute and/or communicate the Work.\n\nLimitations on copyright\n\nNothing in this Licence is intended to deprive the Licensee of the benefits\nfrom any exception or limitation to the exclusive rights of the rights owners\nin the Original Work or Software, of the exhaustion of those rights or of other\napplicable limitations thereto.\n\nObligations of the Licensee\n\nThe grant of the rights mentioned above is subject to some restrictions and\nobligations imposed on the Licensee. Those obligations are the following:\n\nAttribution right: the Licensee shall keep intact all copyright, patent or\ntrademarks notices and all notices that refer to the Licence and to the\ndisclaimer of warranties. The Licensee must include a copy of such notices\nand a copy of the Licence with every copy of the Work he/she distributes\nand/or communicates. The Licensee must cause any Derivative Work to carry\nprominent notices stating that the Work has been modified and the date of\nmodification.\n\nCopyleft clause: If the Licensee distributes and/or communicates copies of\nthe Original Works or Derivative Works based upon the Original Work, this\nDistribution and/or Communication will be done under the terms of this\nLicence or of a later version of this Licence unless the Original Work is\nexpressly distributed only under this version of the Licence. The Licensee\n(becoming Licensor) cannot offer or impose any additional terms or\nconditions on the Work or Derivative Work that alter or restrict the terms\nof the Licence.\n\nCompatibility clause: If the Licensee Distributes and/or Communicates\nDerivative Works or copies thereof based upon both the Original Work and\nanother work licensed under a Compatible Licence, this Distribution and/or\nCommunication can be done under the terms of this Compatible Licence. For\nthe sake of this clause, \"Compatible Licence\" refers to the licences listed\nin the appendix attached to this Licence. Should the Licensee's obligations\nunder the Compatible Licence conflict with his/her obligations under this\nLicence, the obligations of the Compatible Licence shall prevail.\n\nProvision of Source Code: When distributing and/or communicating copies of\nthe Work, the Licensee will provide a machine-readable copy of the Source\nCode or indicate a repository where this Source will be easily and freely\navailable for as long as the Licensee continues to distribute and/or\ncommunicate the Work. Legal Protection: This Licence does not grant\npermission to use the trade names, trademarks, service marks, or names of\nthe Licensor, except as required for reasonable and customary use in\ndescribing the origin of the Work and reproducing the content of the\ncopyright notice.\n\n\n\nChain of Authorship\n\nThe original Licensor warrants that the copyright in the Original Work granted\nhereunder is owned by him/her or licensed to him/her and that he/she has the\npower and authority to grant the Licence.\nEach Contributor warrants that the copyright in the modifications he/she brings\nto the Work are owned by him/her or licensed to him/her and that he/she has the\npower and authority to grant the Licence.\nEach time You accept the Licence, the original Licensor and subsequent\nContributors grant You a licence to their contributions to the Work, under the\nterms of this Licence.\n\nDisclaimer of Warranty\n\nThe Work is a work in progress, which is continuously improved by numerous\ncontributors. It is not a finished work and may therefore contain defects or\n\"bugs\" inherent to this type of software development.\nFor the above reason, the Work is provided under the Licence on an \"as is\"\nbasis and without warranties of any kind concerning the Work, including without\nlimitation merchantability, fitness for a particular purpose, absence of\ndefects or errors, accuracy, non-infringement of intellectual property rights\nother than copyright as stated in Article 6 of this Licence.\nThis disclaimer of warranty is an essential part of the Licence and a condition\nfor the grant of any rights to the Work.\n\nDisclaimer of Liability\n\nExcept in the cases of wilful misconduct or damages directly caused to natural\npersons, the Licensor will in no event be liable for any direct or indirect,\nmaterial or moral, damages of any kind, arising out of the Licence or of the\nuse of the Work, including without limitation, damages for loss of goodwill,\nwork stoppage, computer failure or malfunction, loss of data or any commercial\ndamage, even if the Licensor has been advised of the possibility of such\ndamage. However, the Licensor will be liable under statutory product liability\nlaws as far such laws apply to the Work.\n\nAdditional agreements\n\nWhile distributing the Original Work or Derivative Works, You may choose to\nconclude an additional agreement to offer, and charge a fee for, acceptance of\nsupport, warranty, indemnity, or other liability obligations and/or services\nconsistent with this Licence. However, in accepting such obligations, You may\nact only on your own behalf and on your sole responsibility, not on behalf of\nthe original Licensor or any other Contributor, and only if You agree to\nindemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against such Contributor by the fact You have\naccepted any such warranty or additional liability.\n\nAcceptance of the Licence\n\nThe provisions of this Licence can be accepted by clicking on an icon \"I agree\"\nplaced under the bottom of a window displaying the text of this Licence or by\naffirming consent in any other similar way, in accordance with the rules of\napplicable law. Clicking on that icon indicates your clear and irrevocable\nacceptance of this Licence and all of its terms and conditions.\nSimilarly, you irrevocably accept this Licence and all of its terms and\nconditions by exercising any rights granted to You by Article 2 of this\nLicence, such as the use of the Work, the creation by You of a Derivative Work\nor the Distribution and/or Communication by You of the Work or copies thereof.\n\nInformation to the public\n\nIn case of any Distribution and/or Communication of the Work by means of\nelectronic communication by You (for example, by offering to download the Work\nfrom a remote location) the distribution channel or media (for example, a\nwebsite) must at least provide to the public the information requested by the\napplicable law regarding the Licensor, the Licence and the way it may be\naccessible, concluded, stored and reproduced by the Licensee.\n\nTermination of the Licence\n\nThe Licence and the rights granted hereunder will terminate automatically upon\nany breach by the Licensee of the terms of the Licence.\nSuch a termination will not terminate the licences of any person who has\nreceived the Work from the Licensee under the Licence, provided such persons\nremain in full compliance with the Licence.\n\nMiscellaneous\n\nWithout prejudice of Article 9 above, the Licence represents the complete\nagreement between the Parties as to the Work licensed hereunder.\nIf any provision of the Licence is invalid or unenforceable under applicable\nlaw, this will not affect the validity or enforceability of the Licence as a\nwhole. Such provision will be construed and/or reformed so as necessary to make\nit valid and enforceable.\nThe European Commission may publish other linguistic versions and/or new\nversions of this Licence, so far this is required and reasonable, without\nreducing the scope of the rights granted by the Licence. New versions of the\nLicence will be published with a unique version number.\nAll linguistic versions of this Licence, approved by the European Commission,\nhave identical value. Parties can take advantage of the linguistic version of\ntheir choice.\n\nJurisdiction\n\nAny litigation resulting from the interpretation of this License, arising\nbetween the European Commission, as a Licensor, and any Licensee, will be\nsubject to the jurisdiction of the Court of Justice of the European\nCommunities, as laid down in article 238 of the Treaty establishing the\nEuropean Community.\nAny litigation arising between Parties, other than the European Commission, and\nresulting from the interpretation of this License, will be subject to the\nexclusive jurisdiction of the competent court where the Licensor resides or\nconducts its primary business.\n\nApplicable Law\n\nThis Licence shall be governed by the law of the European Union country where\nthe Licensor resides or has his registered office.\nThis licence shall be governed by the Belgian law if:\n\na litigation arises between the European Commission, as a Licensor, and any\nLicensee;\nthe Licensor, other than the European Commission, has no residence or\nregistered office inside a European Union country.\n\nAppendix\n\"Compatible Licences\" according to article 5 EUPL are:\n\nGNU General Public License (GNU GPL) v. 2\nOpen Software License (OSL) v. 2.1, v. 3.0\nCommon Public License v. 1.0\nEclipse Public License v. 1.0\nCecill v. 2.0\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n CoreModule\n \n \n \n Browse\n \n \n \n \n \n \n \n I18nModule\n \n \n \n Browse\n \n \n \n \n \n \n \n LogModule\n \n \n \n Browse\n \n \n \n \n \n \n \n TranslateMockModule\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"properties.html":{"url":"properties.html","title":"package-properties - properties","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Properties\n \n \n \n Version : 16.0.0\n \n License : EUPL-1.1\n \n Repository : https://citnet.tech.ec.europa.eu/CITnet/stash/projects/csdr/repos/root\n \n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Type aliases\n\n\n\n Index\n \n \n \n \n \n \n CoreAppActions (packages/.../app.actions.ts)\n \n \n CoreI18nActions (packages/.../i18n.actions.ts)\n \n \n CoreLocaleActions (packages/.../locale.actions.ts)\n \n \n CoreNotificationsActions (packages/.../notifications.actions.ts)\n \n \n CoreUserActions (packages/.../user.actions.ts)\n \n \n LocaleMapper (packages/.../locale.service.ts)\n \n \n \n \n \n \n\n\n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n \n \n \n \n \n CoreAppActions\n \n \n \n \n InitStoreAction | UpdateAppVersionAction | UpdateAppConnectionAction | AddAppLoadedConfigModulesAction | UpdateAppStatusAction | UpdateCurrentModuleAction | ActivatedRouteAction | AddApiQueueItemAction | RemoveApiQueueItemAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/store/actions/i18n.actions.ts\n \n \n \n \n \n \n CoreI18nActions\n \n \n \n \n UpdateI18nStateAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/store/actions/locale.actions.ts\n \n \n \n \n \n \n CoreLocaleActions\n \n \n \n \n UpdateLocaleStateAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/store/actions/notifications.actions.ts\n \n \n \n \n \n \n CoreNotificationsActions\n \n \n \n \n UpdateNotificationsListAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n \n \n \n \n \n CoreUserActions\n \n \n \n \n UpdateUserDetailsAction | UpdateUserPreferencesAction | UpdateUserRightsAction | UpdateUserDashboardAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/locale/locale.service.ts\n \n \n \n \n \n \n LocaleMapper\n \n \n \n \n function\n\n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}}
|
|
2
|
+
"index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/classes/ActivatedRouteAction.html",[0,0.857,1,2.981]],["body/classes/ActivatedRouteAction.html",[1,3.892,2,1.156,3,0.14,4,0.122,5,2.539,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,15,6.357,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,22,5.347,23,0.01,24,0.01]],["title/classes/AddApiQueueItemAction.html",[0,0.857,25,3.236]],["body/classes/AddApiQueueItemAction.html",[2,1.137,3,0.137,4,0.12,5,2.497,6,1.918,7,1.79,8,0.189,9,1.254,10,1.846,11,2.728,12,0.346,13,0.653,14,1.986,16,0.38,17,0.011,18,0.3,19,0.3,20,1.174,21,1.032,23,0.01,24,0.01,25,4.155,26,5.707,27,5.259]],["title/classes/AddAppLoadedConfigModulesAction.html",[0,0.857,28,3.236]],["body/classes/AddAppLoadedConfigModulesAction.html",[2,1.137,3,0.137,4,0.12,5,2.497,6,1.918,7,1.79,8,0.189,9,1.254,10,1.846,11,2.728,12,0.346,13,0.653,14,1.986,16,0.38,17,0.011,18,0.3,19,0.3,20,1.174,21,1.032,23,0.01,24,0.01,26,5.707,28,4.155,29,5.259]],["title/interceptors/AddLangParamInterceptor.html",[30,2.223,31,3.577]],["body/interceptors/AddLangParamInterceptor.html",[3,0.124,4,0.109,8,0.171,12,0.295,13,0.591,16,0.498,17,0.012,18,0.354,19,0.354,23,0.009,24,0.009,30,2.585,31,4.16,32,2.716,33,4.762,34,3.466,35,4.762,36,1.799,37,4.762,38,3.466,39,3.763,40,3.763,41,3.466,42,4.762,43,4.762,44,2.716,45,3.466,46,4.762,47,0.96,48,3.365,49,4.762,50,5.018,51,3.466,52,3.536,53,3.212,54,3.536,55,2.086,56,3.466,57,0.712,58,1.248]],["title/injectables/ApiQueueService.html",[59,1.348,60,3.236]],["body/injectables/ApiQueueService.html",[3,0.063,4,0.055,7,0.822,8,0.087,12,0.275,13,0.3,16,0.464,17,0.011,18,0.367,19,0.367,20,0.848,21,0.745,23,0.006,24,0.006,36,2.319,38,1.757,44,2.675,45,3.871,47,0.587,53,1.25,57,0.994,58,1.794,60,1.907,61,0.769,62,2.108,63,2.413,64,3.315,65,4.097,66,3.315,67,3.315,68,3.315,69,3.315,70,4.097,71,3.315,72,1.757,73,2.06,74,3.315,75,2.33,76,2.887,77,2.413,78,1.222,79,6.511,80,5.318,81,1.907,82,6.223,83,2.413,84,2.999,85,3.795,86,4.46,87,3.795,88,5.362,89,1.27,90,3.795,91,2.417,92,2.413,93,1.25,94,3.181,95,5.61,96,2.108,97,2.413,98,4.097,99,2.413,100,2.762,101,1.376,102,2.413,103,2.413,104,2.413,105,2.413,106,2.413,107,2.108,108,4.202,109,2.762,110,3.315,111,2.108,112,2.108,113,2.108,114,2.108,115,2.108,116,1.537,117,2.108,118,2.108,119,2.108,120,1.451,121,2.413,122,2.282,123,2.108,124,2.413,125,1.757]],["title/classes/ApiQueueServiceMock.html",[0,0.857,126,3.577]],["body/classes/ApiQueueServiceMock.html",[2,0.822,3,0.099,4,0.087,8,0.137,12,0.163,13,0.661,16,0.384,17,0.012,18,0.304,19,0.304,20,0.849,21,0.745,23,0.008,24,0.008,36,1.435,44,3.036,45,3.874,47,0.824,53,1.968,57,1.137,58,1.837,60,3.002,62,3.319,64,5.366,65,5.366,66,4.649,67,5.366,68,4.649,69,5.366,70,5.366,71,5.366,78,0.977,82,4.854,86,2.42,89,1.663,95,4.649,96,3.319,98,3.319,100,2.766,107,3.319,108,5.259,109,3.874,110,4.649,111,3.319,112,3.319,113,3.319,114,3.319,115,3.319,116,2.42,117,3.319,118,3.319,119,3.319,120,2.285,126,3.319,127,3.8,128,1.339]],["title/classes/AsyncStorageService.html",[0,0.857,129,2.981]],["body/classes/AsyncStorageService.html",[0,0.514,2,0.531,3,0.064,4,0.056,8,0.088,12,0.307,16,0.518,17,0.012,18,0.41,19,0.382,21,1.408,23,0.006,24,0.006,36,2.336,47,0.596,55,2.832,57,1.052,58,1.845,78,1.413,89,1.284,91,1.564,93,2.458,116,3.42,120,1.477,122,1.477,128,0.865,129,1.788,130,2.146,131,1.941,132,2.146,133,4.691,134,4.117,135,1.272,136,2.146,137,1.941,138,2.146,139,1.564,140,6.537,141,3.454,142,2.575,143,3.041,144,3.688,145,4.243,146,2.61,147,4.745,148,3.664,149,3.955,150,4.243,151,4.243,152,2.146,153,2.146,154,1.666,155,2.146,156,3.041,157,2.253,158,2.61,159,3.362,160,1.941,161,2.146,162,2.146]],["title/classes/AsyncStorageServiceMock.html",[0,0.857,163,3.577]],["body/classes/AsyncStorageServiceMock.html",[2,1.056,3,0.127,4,0.112,8,0.176,17,0.012,18,0.398,23,0.009,24,0.009,47,0.976,57,1.188,58,1.933,78,0.897,89,1.706,128,1.72,129,3.555,130,4.266,141,5.079,142,3.787,143,5.513,144,3.98,145,5.513,163,4.266,164,4.884]],["title/interceptors/CachePreventionInterceptor.html",[30,2.223,165,3.577]],["body/interceptors/CachePreventionInterceptor.html",[3,0.141,4,0.124,8,0.195,12,0.288,16,0.486,17,0.012,18,0.309,19,0.309,23,0.01,24,0.01,32,3.084,47,1.04,48,3.649,51,3.935,52,3.834,53,3.482,54,3.834,55,2.368,56,3.935,57,0.808,58,1.417,165,4.723,166,5.407,167,4.723]],["title/injectables/CoreAppEffects.html",[59,1.348,168,3.577]],["body/injectables/CoreAppEffects.html",[1,2.113,3,0.076,4,0.066,8,0.105,9,0.831,12,0.226,13,0.36,15,3.822,16,0.21,17,0.012,18,0.25,19,0.166,20,1.176,21,1.033,23,0.006,24,0.006,50,4.267,58,1.147,61,0.924,168,2.535,169,2.903,170,4.375,171,4.375,172,2.903,173,5.266,174,4.375,175,3.258,176,3.822,177,3.822,178,3.822,179,5.266,180,4.375,181,2.903,182,4.375,183,4.375,184,2.903,185,4.375,186,2.266,187,2.293,188,5.266,189,2.903,190,1.969,191,2.903,192,2.967,193,2.903,194,2.903,195,2.903,196,2.903,197,2.903,198,2.903,199,2.903,200,2.903,201,2.113,202,2.903,203,2.903,204,2.293,205,2.903,206,2.903,207,2.535,208,2.903,209,2.293,210,2.903,211,2.903,212,4.375,213,4.375,214,5.266,215,2.903,216,6.612,217,2.903,218,3.822,219,2.293,220,2.535,221,2.903,222,2.535,223,2.535,224,2.903,225,2.903,226,4.375,227,4.375,228,2.903,229,4.375,230,2.293,231,4.375,232,3.822,233,4.375,234,2.903,235,1.323]],["title/modules/CoreModule.html",[186,2.121,236,3.236]],["body/modules/CoreModule.html",[3,0.136,4,0.12,12,0.224,16,0.378,17,0.011,18,0.299,19,0.299,23,0.01,24,0.01,47,0.81,57,0.984,78,1.209,236,4.132,237,2.983,238,4.568,239,4.568,240,4.192,241,4.568,242,5.23,243,3.807,244,5.202,245,5.693,246,4.568,247,4.132,248,3.262,249,4.132,250,5.23,251,5.23,252,5.23,253,5.23]],["title/interceptors/CorsSecurityInterceptor.html",[30,2.223,254,3.577]],["body/interceptors/CorsSecurityInterceptor.html",[3,0.141,4,0.124,8,0.195,12,0.288,16,0.486,17,0.012,18,0.309,19,0.309,23,0.01,24,0.01,32,3.084,44,3.084,47,1.04,48,3.649,52,3.834,53,3.482,54,3.834,55,2.368,57,0.808,58,1.417,254,4.723,255,5.407,256,5.407,257,3.935]],["title/interceptors/CsrfPreventionInterceptor.html",[30,2.223,258,3.577]],["body/interceptors/CsrfPreventionInterceptor.html",[3,0.141,4,0.124,8,0.195,12,0.288,16,0.486,17,0.012,18,0.309,19,0.309,23,0.01,24,0.01,32,3.084,44,3.084,47,1.04,48,3.649,52,3.834,53,3.482,54,3.834,55,2.368,57,0.808,58,1.417,167,4.723,257,3.935,258,4.723,259,5.407]],["title/classes/EmptyApiQueueAction.html",[0,0.857,260,3.577]],["body/classes/EmptyApiQueueAction.html",[2,1.176,3,0.142,4,0.124,5,2.582,6,1.983,7,1.851,8,0.196,9,1.28,10,1.885,11,2.77,12,0.328,13,0.675,14,2.054,16,0.393,17,0.012,18,0.31,19,0.31,20,1.214,21,1.067,23,0.01,24,0.01,260,4.749,261,5.437]],["title/classes/ErrorSubClass.html",[0,0.857,262,3.236]],["body/classes/ErrorSubClass.html",[2,1.02,3,0.123,4,0.108,8,0.17,9,1.169,10,2.236,12,0.323,13,0.585,16,0.341,17,0.012,18,0.392,19,0.392,23,0.009,24,0.009,78,1.469,230,4.867,262,3.726,263,4.119,264,4.994,265,5.381,266,4.119,267,5.381,268,5.381,269,3.006]],["title/interceptors/EuLoginSessionTimeoutHandlingInterceptor.html",[30,2.223,270,3.577]],["body/interceptors/EuLoginSessionTimeoutHandlingInterceptor.html",[3,0.139,4,0.122,8,0.191,12,0.285,16,0.48,17,0.011,18,0.304,19,0.304,23,0.01,24,0.01,32,3.032,44,3.032,47,1.03,48,3.611,52,3.794,53,3.446,54,3.794,55,2.329,57,0.794,58,1.394,257,3.87,270,4.644,271,5.317,272,5.317,273,3.87,274,4.644,275,5.317]],["title/classes/EuiCoreRootGuardClass.html",[0,0.857,276,3.577]],["body/classes/EuiCoreRootGuardClass.html",[2,1.344,3,0.162,4,0.142,13,0.907,17,0.011,23,0.011,24,0.011,238,5.426,239,5.426,276,5.426]],["title/classes/EuiError.html",[0,0.857,277,3.577]],["body/classes/EuiError.html",[2,1.015,3,0.122,4,0.107,8,0.169,9,1.166,10,2.233,12,0.323,13,0.582,16,0.339,17,0.012,18,0.391,19,0.391,23,0.009,24,0.009,78,1.467,128,1.653,230,4.852,262,3.708,263,4.099,264,4.982,265,5.364,266,4.099,267,5.364,268,5.364,269,2.69,277,4.099]],["title/injectables/EuiPermissionService.html",[59,1.348,278,3.236]],["body/injectables/EuiPermissionService.html",[3,0.077,4,0.068,8,0.107,12,0.296,13,0.368,16,0.499,17,0.011,18,0.381,19,0.381,23,0.006,24,0.006,36,1.679,47,0.688,57,0.996,58,1.166,61,0.944,73,2.413,75,1.948,76,2.413,78,1.381,86,1.888,89,0.803,101,1.691,125,3.236,128,1.045,135,1.536,175,2.763,209,3.513,219,4.682,246,2.59,247,2.343,278,2.343,279,2.966,280,2.343,281,4.446,282,4.446,283,4.446,284,3.208,285,2.203,286,2.674,287,2.343,288,1.691,289,2.966,290,2.966,291,6.567,292,6.209,293,2.966,294,2.966,295,2.966,296,2.966,297,4.446,298,2.59,299,3.513,300,2.966,301,2.59,302,2.59,303,2.966,304,5.334,305,2.966,306,2.966,307,2.966,308,2.59,309,2.966,310,2.59,311,2.966,312,5.016,313,2.966,314,2.966,315,4.446,316,2.966,317,2.011,318,4.446,319,2.533,320,2.966,321,5.176,322,2.966,323,2.966,324,2.343]],["title/injectables/GlobalErrorHandler.html",[59,1.348,325,3.577]],["body/injectables/GlobalErrorHandler.html",[3,0.139,4,0.122,8,0.191,12,0.285,13,0.66,16,0.48,17,0.011,18,0.38,19,0.38,23,0.01,24,0.01,47,1.03,57,0.794,61,1.693,75,3.18,89,1.439,128,1.873,235,3.032,325,4.644,326,5.317,327,5.317,328,5.317,329,6.652,330,5.317,331,5.317]],["title/interceptors/HttpErrorHandlerInterceptor.html",[30,2.223,332,3.577]],["body/interceptors/HttpErrorHandlerInterceptor.html",[3,0.13,4,0.114,8,0.179,12,0.274,13,0.619,16,0.461,17,0.011,18,0.365,19,0.365,23,0.009,24,0.009,32,2.843,47,0.989,48,3.466,51,3.629,52,3.642,53,3.308,54,3.642,56,3.629,57,0.745,58,1.307,235,2.272,248,2.47,332,4.354,333,4.354,334,4.985,335,4.354,336,5.578,337,5.871,338,7.43]],["title/injectables/I18nLoader.html",[59,1.348,339,3.577]],["body/injectables/I18nLoader.html",[3,0.09,4,0.079,8,0.124,10,2.144,12,0.289,13,0.428,16,0.488,17,0.012,18,0.385,19,0.385,23,0.007,24,0.007,34,4.236,36,1.875,39,3.922,45,2.507,47,0.768,57,1.051,58,1.77,61,1.097,74,4.336,75,2.79,78,1.17,81,2.722,89,0.932,94,3.367,122,2.072,248,1.707,339,3.009,340,2.507,341,3.922,342,5.82,343,4.336,344,4.964,345,4.964,346,3.445,347,5.563,348,3.009,349,3.922,350,6.142,351,3.922,352,3.009,353,4.578,354,2.722,355,3.445,356,3.445,357,2.722,358,2.722,359,3.445,360,3.445,361,3.445,362,3.445,363,2.507,364,2.722,365,3.445,366,2.722,367,3.445]],["title/modules/I18nModule.html",[186,2.121,368,3.236]],["body/modules/I18nModule.html",[3,0.15,4,0.131,17,0.011,23,0.01,24,0.01,36,2.164,47,0.887,57,0.856,186,3.608,237,3.268,240,3.649,244,4.527,245,5.504,368,5.504,369,5.73,370,4.527,371,5.005,372,5.005,373,4.171,374,4.171]],["title/classes/I18nResourceImpl.html",[0,0.857,353,2.777]],["body/classes/I18nResourceImpl.html",[2,0.764,3,0.092,4,0.081,8,0.127,10,1.983,12,0.276,13,0.628,16,0.465,17,0.011,18,0.368,19,0.405,23,0.007,24,0.007,34,4.297,36,2.434,39,3.995,40,3.995,47,0.783,57,0.882,78,1.417,89,0.956,93,3.338,100,2.572,150,2.792,157,2.401,175,1.831,353,4.004,354,2.792,358,5.387,363,4.963,375,3.534,376,5.056,377,5.056,378,5.056,379,3.534,380,5.904,381,5.056,382,3.534,383,5.056,384,3.534,385,3.534,386,5.157,387,3.534,388,5.056,389,3.534,390,3.087,391,3.087,392,3.534,393,5.056,394,3.087,395,3.534,396,3.534,397,3.087,398,3.534,399,4.416]],["title/injectables/I18nService.html",[59,1.348,400,2.981]],["body/injectables/I18nService.html",[3,0.063,4,0.055,8,0.087,10,1.484,12,0.315,13,0.299,16,0.532,17,0.012,18,0.42,19,0.4,23,0.006,24,0.006,36,1.431,41,1.752,47,0.586,50,3.866,55,2.53,57,1.022,58,1.792,61,0.767,73,2.056,75,2.326,76,2.056,78,1.221,84,1.902,89,1.025,101,1.373,109,1.752,116,1.533,125,1.752,128,0.848,148,1.193,157,1.799,186,2.751,204,1.902,232,2.103,243,4.204,248,2.32,269,2.811,284,3.688,285,1.877,286,2.278,299,1.902,317,2.569,319,2.224,341,2.993,348,2.103,349,4.563,350,2.103,351,1.902,400,1.752,401,2.103,402,2.407,403,3.309,404,3.309,405,4.091,406,2.407,407,3.409,408,5.311,409,2.103,410,2.103,411,2.407,412,2.407,413,2.757,414,1.752,415,1.752,416,1.752,417,1.752,418,1.752,419,2.407,420,3.788,421,2.103,422,2.407,423,4.091,424,2.103,425,1.752,426,2.103,427,2.103,428,3.7,429,1.902,430,1.752,431,2.103,432,2.103,433,2.103,434,3.309,435,2.103,436,2.103,437,3.309,438,2.103,439,1.632,440,1.902,441,2.407,442,2.993]],["title/injectables/I18nServiceMock.html",[59,1.348,443,3.577]],["body/injectables/I18nServiceMock.html",[3,0.088,4,0.077,8,0.121,10,1.363,12,0.27,13,0.605,16,0.455,17,0.012,18,0.411,19,0.359,23,0.007,24,0.007,36,1.269,47,0.755,57,1.075,58,1.886,61,1.07,78,0.895,84,2.655,89,0.91,101,1.917,116,2.14,125,2.446,128,1.184,157,1.596,186,3.261,204,2.655,243,2.446,248,1.665,269,2.136,284,3.451,285,2.416,286,2.932,299,2.655,319,2.315,341,4.534,349,3.853,400,2.446,403,4.259,404,5.013,405,5.013,407,2.446,413,2.446,421,2.935,424,2.935,425,2.446,426,2.935,427,2.935,428,4.534,429,2.655,430,2.446,431,2.935,432,2.935,433,2.935,434,4.259,435,2.935,436,2.935,437,4.259,438,2.935,439,2.279,440,2.655,442,5.509,443,2.935,444,3.36,445,4.259,446,4.259,447,4.876,448,3.36,449,3.36,450,3.36,451,3.36]],["title/classes/InitStoreAction.html",[0,0.857,452,3.236]],["body/classes/InitStoreAction.html",[2,1.137,3,0.137,4,0.12,5,2.497,6,1.918,7,1.79,8,0.189,9,1.254,10,1.846,11,2.728,12,0.346,13,0.653,14,1.986,16,0.38,17,0.011,18,0.3,19,0.3,20,1.174,21,1.032,23,0.01,24,0.01,26,5.707,452,4.155,453,5.259]],["title/interfaces/LoadedResources.html",[454,2.608,455,3.577]],["body/interfaces/LoadedResources.html",[3,0.141,4,0.124,8,0.195,9,1.276,12,0.313,17,0.012,19,0.384,23,0.01,24,0.01,93,3.482,94,4.558,175,3.482,340,3.935,358,5.78,455,4.723,456,3.251,457,5.324,458,7.315]],["title/interfaces/LoadedResourcesError.html",[454,2.608,459,3.577]],["body/interfaces/LoadedResourcesError.html",[3,0.149,4,0.13,8,0.205,9,1.318,12,0.297,17,0.011,23,0.01,24,0.01,78,1.275,235,3.412,340,4.146,353,4.707,363,5.449,456,3.425,459,4.975]],["title/injectables/LocalForageService.html",[59,1.348,460,3.577]],["body/injectables/LocalForageService.html",[3,0.075,4,0.066,8,0.104,9,0.825,12,0.293,13,0.357,16,0.476,17,0.012,18,0.432,19,0.376,20,0.642,21,1.382,23,0.006,24,0.006,36,2.489,47,0.673,57,1.022,58,1.846,61,0.916,75,1.904,78,1.389,89,1.176,91,1.832,93,2.713,116,3.716,120,1.73,122,1.73,128,1.013,129,2.094,133,3.796,134,2.767,135,2.251,141,3.812,142,2.843,143,3.434,144,3.574,145,3.434,146,1.951,148,3.641,149,4.249,150,4.611,151,4.611,152,2.513,153,2.513,154,1.951,155,2.513,156,3.434,157,2.063,158,1.951,159,2.513,240,2.767,248,1.425,288,2.479,335,2.513,460,3.796,461,2.513,462,2.877,463,5.473,464,2.877,465,2.877,466,2.877,467,2.877]],["title/injectables/LocalStorageService.html",[59,1.348,468,3.577]],["body/injectables/LocalStorageService.html",[3,0.096,4,0.084,8,0.133,9,0.988,12,0.297,13,0.457,16,0.474,17,0.012,18,0.444,19,0.375,20,0.823,21,1.359,23,0.008,24,0.008,36,2.48,47,0.806,57,0.981,61,1.173,75,2.281,78,1.386,89,1.409,91,2.345,93,3.129,101,2.101,120,2.215,122,2.215,128,1.297,131,2.91,134,4.181,135,2.697,139,2.345,142,2.826,144,3.445,146,2.498,148,3.563,149,4.096,154,2.498,158,2.498,190,2.498,235,1.679,240,3.316,287,2.91,288,2.101,461,3.217,468,4.548,469,3.683,470,4.772]],["title/injectables/LocaleService.html",[59,1.348,471,3.236]],["body/injectables/LocaleService.html",[3,0.08,4,0.07,8,0.111,12,0.32,13,0.382,16,0.54,17,0.012,18,0.4,19,0.4,23,0.007,24,0.007,47,0.708,55,1.349,57,1.046,58,1.691,61,0.981,72,2.242,73,2.483,75,2.004,76,1.672,78,1.241,86,1.961,89,1.477,128,1.085,148,1.526,157,1.462,190,3.102,269,2.645,280,2.433,284,4.065,285,2.266,286,2.75,288,2.609,317,3.102,319,2.867,324,2.433,364,2.433,370,3.614,400,3.329,407,3.329,409,3.995,414,2.242,415,2.242,416,2.242,417,2.242,418,2.242,445,3.995,471,2.433,472,2.69,473,3.995,474,4.765,475,4.574,476,4.574,477,3.995,478,5.274,479,2.69,480,2.69,481,4.771,482,2.69,483,2.69,484,2.69,485,3.08,486,3.08]],["title/injectables/LocaleServiceMock.html",[59,1.348,487,3.577]],["body/injectables/LocaleServiceMock.html",[3,0.113,4,0.099,8,0.156,12,0.301,13,0.538,16,0.508,17,0.012,18,0.402,19,0.402,23,0.009,24,0.009,47,0.901,57,1.097,58,1.724,61,1.38,78,1.292,86,2.759,89,1.576,128,1.526,269,1.898,284,3.956,285,2.885,286,3.502,319,2.765,471,3.423,473,5.087,474,5.746,477,3.784,479,3.784,480,3.784,481,5.558,482,3.784,487,3.784,488,4.332,489,4.332]],["title/modules/LogModule.html",[186,2.121,490,3.236]],["body/modules/LogModule.html",[3,0.121,4,0.106,12,0.261,16,0.441,17,0.011,18,0.348,19,0.348,20,1.363,21,1.197,23,0.009,24,0.009,36,1.755,47,0.719,57,0.912,75,2.673,186,3.161,237,3.48,240,3.885,241,4.059,244,4.821,245,3.672,248,3.023,288,2.65,366,3.672,371,5.33,372,5.33,373,4.441,374,3.382,413,3.382,439,3.151,490,3.672,491,4.647,492,4.647,493,6.318,494,4.647,495,4.059,496,4.647,497,5.33,498,4.647]],["title/injectables/LogService.html",[59,1.348,75,1.794]],["body/injectables/LogService.html",[3,0.112,4,0.098,8,0.154,12,0.247,13,0.53,16,0.417,17,0.011,18,0.417,19,0.373,20,1.289,21,0.838,23,0.008,24,0.008,36,2.18,40,3.377,47,0.893,57,0.639,61,1.361,75,1.872,78,1.285,100,3.111,128,1.506,135,2.214,144,3.291,288,2.438,310,3.733,354,4.56,357,3.377,499,4.274,500,4.274,501,3.733,502,4.274,503,4.274,504,4.274,505,4.274,506,3.733,507,7.827,508,5.041,509,4.274,510,5.771,511,5.771,512,5.041,513,5.041,514,4.274,515,5.771,516,4.274,517,3.733,518,4.274,519,4.274]],["title/classes/LogServiceMock.html",[0,0.857,520,3.577]],["body/classes/LogServiceMock.html",[2,1.277,3,0.154,4,0.135,8,0.213,17,0.011,23,0.01,24,0.01,47,1.098,57,0.882,128,2.081,508,6.643,520,5.159,521,5.906,522,7.095]],["title/interfaces/ModuleLoadEvent.html",[454,2.608,523,3.577]],["body/interfaces/ModuleLoadEvent.html",[3,0.143,4,0.125,8,0.197,9,1.285,12,0.315,17,0.012,18,0.42,19,0.387,23,0.01,24,0.01,78,1.243,141,5.351,175,3.506,235,3.351,401,4.777,456,3.288,523,4.777]],["title/interceptors/OpenIdConnectInterceptor.html",[30,2.223,524,3.577]],["body/interceptors/OpenIdConnectInterceptor.html",[3,0.126,4,0.111,8,0.174,9,1.188,12,0.268,13,0.777,16,0.349,17,0.011,18,0.276,19,0.276,20,1.398,21,1.228,23,0.009,24,0.009,32,2.757,44,2.757,47,0.969,48,3.398,52,3.571,53,3.243,54,3.571,57,0.722,58,1.267,218,4.223,257,3.519,269,2.118,524,4.223,525,3.519,526,4.834,527,6.261,528,6.261,529,5.487,530,6.261,531,4.557,532,4.223]],["title/injectables/OpenIdConnectService.html",[59,1.348,533,3.236]],["body/injectables/OpenIdConnectService.html",[3,0.153,4,0.134,8,0.211,13,0.877,17,0.011,23,0.01,24,0.01,47,1.094,57,0.877,58,1.539,61,1.869,525,4.273,533,4.638,534,5.127,535,6.625]],["title/classes/OpenIdConnectServiceMock.html",[0,0.857,536,3.577]],["body/classes/OpenIdConnectServiceMock.html",[2,1.27,3,0.153,4,0.134,8,0.211,17,0.011,23,0.01,24,0.01,47,1.094,57,0.877,58,1.539,128,2.068,525,4.273,533,4.638,535,6.625,536,5.127,537,5.87]],["title/interfaces/OpenIdConnectUserDetails.html",[454,2.608,538,3.577]],["body/interfaces/OpenIdConnectUserDetails.html",[3,0.12,4,0.105,8,0.165,9,1.147,12,0.329,17,0.012,19,0.47,23,0.009,24,0.009,78,1.513,456,2.754,525,3.334,534,4.001,538,4.001,539,6.764,540,6.764,541,6.764,542,6.764,543,6.764,544,6.764]],["title/classes/RemoveApiQueueItemAction.html",[0,0.857,545,3.236]],["body/classes/RemoveApiQueueItemAction.html",[2,1.156,3,0.14,4,0.122,5,2.539,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,78,1.336,545,4.224,546,5.347]],["title/interfaces/ResourceError.html",[454,2.608,547,3.577]],["body/interfaces/ResourceError.html",[3,0.14,4,0.122,8,0.193,9,1.267,12,0.312,17,0.011,19,0.435,23,0.01,24,0.01,78,1.226,175,3.458,235,3.317,340,3.892,353,4.527,363,5.297,456,3.215,547,4.67,548,7.278]],["title/classes/RouterMock.html",[0,0.857,549,3.577]],["body/classes/RouterMock.html",[2,0.881,3,0.106,4,0.093,8,0.147,9,1.06,10,2.075,12,0.273,16,0.403,17,0.012,18,0.319,19,0.319,20,1.424,21,1.251,23,0.008,24,0.008,47,0.865,57,1.025,78,1.363,89,1.512,93,2.111,192,3.788,373,2.966,549,3.559,550,4.074,551,5.586,552,5.586,553,5.586,554,6.375,555,5.586,556,5.586,557,6.375,558,4.074,559,4.074,560,4.074,561,4.074,562,5.586,563,4.074,564,4.879,565,4.074]],["title/injectables/SessionStorageService.html",[59,1.348,566,3.577]],["body/injectables/SessionStorageService.html",[3,0.096,4,0.084,8,0.133,9,0.988,12,0.297,13,0.457,16,0.474,17,0.012,18,0.444,19,0.375,20,0.823,21,1.359,23,0.008,24,0.008,36,2.48,47,0.806,57,0.981,61,1.173,75,2.281,78,1.386,89,1.409,91,2.345,93,3.129,101,2.101,120,2.215,122,2.215,128,1.297,131,2.91,134,4.181,135,2.697,139,2.345,142,2.826,144,3.445,146,2.498,148,3.563,149,4.096,154,2.498,158,2.498,190,2.498,235,1.679,240,3.316,273,4.396,287,2.91,288,2.101,566,4.548,567,3.683,568,3.683]],["title/classes/StorageService.html",[0,0.857,139,2.608]],["body/classes/StorageService.html",[0,0.694,2,0.717,3,0.086,4,0.076,8,0.119,12,0.307,16,0.517,17,0.012,18,0.419,19,0.38,21,1.361,23,0.007,24,0.007,36,2.362,47,0.747,55,2.912,57,1.037,78,1.415,89,1.541,91,2.11,93,2.949,101,1.89,120,1.993,122,1.993,132,2.895,134,4.419,135,1.717,136,2.895,137,2.618,138,2.895,139,2.11,140,6.805,142,2.62,144,3.792,146,3.273,148,3.637,149,3.861,154,2.247,157,1.574,158,3.273,160,2.618,161,2.895,162,2.895,190,2.247,235,1.51,569,3.314]],["title/classes/StorageServiceMock.html",[0,0.857,570,3.577]],["body/classes/StorageServiceMock.html",[2,1.189,3,0.144,4,0.126,8,0.198,17,0.012,18,0.421,23,0.01,24,0.01,47,1.052,57,1.101,78,1.01,89,1.839,128,1.937,139,3.502,142,4.001,144,4.204,570,4.804,571,5.5]],["title/classes/StoreMock.html",[0,0.857,572,3.577]],["body/classes/StoreMock.html",[2,1.067,3,0.129,4,0.113,8,0.178,9,1.204,12,0.211,16,0.356,17,0.012,18,0.282,19,0.282,20,1.102,21,0.968,23,0.009,24,0.009,47,0.982,57,1.106,58,1.663,89,1.335,319,3.012,572,5.541,573,4.934,574,7.012,575,5.54,576,7.012,577,5.012,578,4.934,579,4.934,580,4.934,581,4.31]],["title/injectables/StoreService.html",[59,1.348,73,2.223]],["body/injectables/StoreService.html",[3,0.092,4,0.081,7,1.199,8,0.127,12,0.303,13,0.437,16,0.512,17,0.012,18,0.405,19,0.405,23,0.007,24,0.007,47,0.781,48,2.737,55,2.209,57,1.058,58,0.923,61,1.121,72,2.563,73,1.911,75,2.818,76,3.696,78,1.301,89,1.843,148,1.744,157,2.394,269,2.209,285,2.499,319,1.672,575,3.984,577,3.984,582,3.075,583,4.405,584,4.405,585,5.146,586,3.521,587,4.405,588,3.521,589,3.521,590,5.043,591,4.405,592,3.521,593,5.043,594,5.043,595,3.075,596,4.405,597,3.42,598,3.984,599,3.521,600,5.043,601,4.405,602,2.563,603,3.521,604,3.521]],["title/injectables/StoreServiceMock.html",[59,1.348,605,3.577]],["body/injectables/StoreServiceMock.html",[3,0.119,4,0.104,8,0.164,12,0.195,13,0.748,16,0.329,17,0.012,18,0.26,19,0.26,23,0.009,24,0.009,47,0.933,55,2.639,57,1.146,58,1.195,61,1.452,73,2.474,78,1.106,89,2.021,128,1.606,285,3.344,319,2.164,575,5.332,577,5.332,583,5.895,584,5.263,585,5.895,595,3.982,596,5.263,597,4.086,598,4.76,605,3.982,606,4.559]],["title/interfaces/TimeZone.html",[454,2.608,607,2.981]],["body/interfaces/TimeZone.html",[3,0.148,4,0.13,8,0.204,9,1.313,12,0.296,17,0.011,18,0.426,23,0.01,24,0.01,78,1.428,456,3.405,607,4.121,608,3.229,609,4.946,610,7.467]],["title/directives/TranslateMockDirective.html",[611,3.577,612,3.236]],["body/directives/TranslateMockDirective.html",[3,0.144,4,0.127,6,2.017,8,0.199,12,0.292,13,0.687,16,0.4,17,0.011,18,0.316,19,0.316,23,0.01,24,0.01,430,4.026,581,4.832,612,4.371,613,5.532,614,4.026,615,5.532,616,4.832,617,6.817,618,6.817,619,5.532,620,5.955,621,5.532]],["title/modules/TranslateMockModule.html",[186,2.121,622,3.236]],["body/modules/TranslateMockModule.html",[3,0.159,4,0.139,17,0.011,23,0.011,24,0.011,237,3.476,612,5.711,614,4.436,622,4.815,623,6.094,624,5.711,625,6.094]],["title/pipes/TranslateMockPipe.html",[425,2.981,624,3.236]],["body/pipes/TranslateMockPipe.html",[3,0.149,4,0.13,12,0.244,16,0.411,17,0.011,18,0.396,19,0.325,23,0.01,24,0.01,47,0.882,57,0.851,78,1.375,430,4.146,614,4.146,616,4.975,624,4.5,626,5.696,627,5.696,628,5.696,629,4.975]],["title/classes/TranslateServiceMock.html",[0,0.857,630,3.577]],["body/classes/TranslateServiceMock.html",[2,0.617,3,0.074,4,0.065,8,0.103,9,0.819,12,0.333,16,0.451,17,0.012,18,0.356,19,0.356,20,1.606,21,1.411,23,0.006,24,0.006,34,3.142,47,0.668,57,1.05,58,1.721,78,1.45,89,1.41,148,1.413,192,3.94,249,3.41,343,4.55,446,3.77,531,4.78,614,2.075,630,2.49,631,4.316,632,4.316,633,4.316,634,4.316,635,4.316,636,4.316,637,4.316,638,4.316,639,4.316,640,4.316,641,5.209,642,5.209,643,4.316,644,4.316,645,2.851,646,2.851,647,2.851,648,2.851,649,2.851,650,2.851,651,2.851,652,2.851,653,2.851,654,2.851,655,2.49,656,2.851,657,2.851,658,2.851]],["title/classes/UpdateAppConnectionAction.html",[0,0.857,201,2.981]],["body/classes/UpdateAppConnectionAction.html",[2,1.156,3,0.14,4,0.122,5,2.539,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,175,3.77,201,3.892,659,5.347]],["title/classes/UpdateAppStatusAction.html",[0,0.857,660,3.236]],["body/classes/UpdateAppStatusAction.html",[2,1.156,3,0.14,4,0.122,5,2.539,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,78,1.336,660,4.224,661,5.347]],["title/classes/UpdateAppVersionAction.html",[0,0.857,662,3.236]],["body/classes/UpdateAppVersionAction.html",[2,1.156,3,0.14,4,0.122,5,2.539,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,78,1.336,662,4.224,663,5.347]],["title/classes/UpdateCurrentModuleAction.html",[0,0.857,664,3.236]],["body/classes/UpdateCurrentModuleAction.html",[2,1.156,3,0.14,4,0.122,5,2.539,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,78,1.336,664,4.224,665,5.347]],["title/classes/UpdateI18nStateAction.html",[0,0.857,666,3.236]],["body/classes/UpdateI18nStateAction.html",[2,1.156,3,0.14,4,0.122,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,442,5.75,666,4.224,667,4.224,668,5.347]],["title/classes/UpdateLocaleStateAction.html",[0,0.857,669,3.236]],["body/classes/UpdateLocaleStateAction.html",[2,1.156,3,0.14,4,0.122,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,481,5.75,669,4.224,670,4.224,671,5.347]],["title/classes/UpdateNotificationsListAction.html",[0,0.857,672,3.236]],["body/classes/UpdateNotificationsListAction.html",[2,1.176,3,0.142,4,0.124,6,1.983,7,1.851,8,0.196,9,1.28,10,1.885,11,2.77,12,0.328,13,0.675,14,2.054,16,0.393,17,0.012,18,0.31,19,0.31,20,1.214,21,1.067,23,0.01,24,0.01,672,4.296,673,4.296,674,5.437]],["title/classes/UpdateUserDashboardAction.html",[0,0.857,675,3.236]],["body/classes/UpdateUserDashboardAction.html",[2,1.176,3,0.142,4,0.124,6,1.983,7,1.851,8,0.196,9,1.28,10,1.885,11,2.77,12,0.328,13,0.675,14,2.054,16,0.393,17,0.012,18,0.31,19,0.31,20,1.214,21,1.067,23,0.01,24,0.01,675,4.296,676,3.27,677,5.437]],["title/classes/UpdateUserDetailsAction.html",[0,0.857,678,3.236]],["body/classes/UpdateUserDetailsAction.html",[2,1.156,3,0.14,4,0.122,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,676,3.215,678,4.224,679,7.278,680,5.347]],["title/classes/UpdateUserPreferencesAction.html",[0,0.857,681,3.236]],["body/classes/UpdateUserPreferencesAction.html",[2,1.156,3,0.14,4,0.122,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,676,3.215,681,4.224,682,7.278,683,5.347]],["title/classes/UpdateUserRightsAction.html",[0,0.857,684,3.236]],["body/classes/UpdateUserRightsAction.html",[2,1.156,3,0.14,4,0.122,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,321,6.357,676,3.215,684,4.224,685,5.347]],["title/classes/UpdateUserStateAction.html",[0,0.857,686,3.577]],["body/classes/UpdateUserStateAction.html",[2,1.156,3,0.14,4,0.122,6,1.95,7,1.82,8,0.193,9,1.267,10,1.866,11,2.749,12,0.327,13,0.664,14,2.019,16,0.386,17,0.011,18,0.305,19,0.305,20,1.194,21,1.049,23,0.01,24,0.01,676,3.215,686,4.67,687,5.75,688,5.347]],["title/injectables/UserService.html",[59,1.348,689,3.236]],["body/injectables/UserService.html",[3,0.083,4,0.073,8,0.115,12,0.335,13,0.396,16,0.564,17,0.012,18,0.415,19,0.415,23,0.007,24,0.007,47,0.727,55,3.101,57,1.058,58,1.611,61,1.017,72,2.324,73,2.549,76,1.733,78,0.862,89,1.772,128,1.125,148,1.582,157,2.23,269,2.692,280,2.523,284,4.118,285,2.327,286,4.118,317,4.441,319,2.23,414,2.324,415,2.324,416,2.324,417,2.324,418,2.324,597,4.167,687,4.403,689,2.523,690,3.193,691,2.789,692,4.103,693,2.789,694,2.789,695,2.789]],["title/injectables/UserServiceMock.html",[59,1.348,696,3.577]],["body/injectables/UserServiceMock.html",[3,0.086,4,0.075,8,0.118,12,0.333,13,0.595,16,0.562,17,0.012,18,0.408,19,0.408,23,0.007,24,0.007,47,0.742,55,2.479,57,1.067,58,1.632,61,1.045,78,0.88,89,1.792,128,1.155,148,1.625,157,2.275,269,2.727,284,4.158,285,2.374,286,4.158,317,4.49,319,2.275,414,2.387,415,2.387,416,2.387,417,2.387,418,2.387,597,4.221,687,5.641,689,2.592,691,2.865,692,4.185,693,2.865,694,2.865,695,2.865,696,2.865,697,3.28]],["title/injectables/UxDynamicComponentService.html",[59,1.348,698,3.577]],["body/injectables/UxDynamicComponentService.html",[3,0.103,4,0.09,8,0.142,10,1.89,12,0.29,13,0.489,16,0.488,17,0.011,18,0.358,19,0.358,23,0.008,24,0.008,36,2.062,41,3.973,47,0.845,55,1.726,57,0.816,61,1.255,81,3.113,89,1.067,142,2.963,248,3.103,269,2.391,337,5.343,394,4.768,483,3.442,608,2.247,620,4.768,698,3.442,699,3.973,700,3.94,701,3.94,702,3.94,703,6.264,704,5.459,705,5.459,706,3.94,707,5.459,708,5.459,709,6.762,710,5.459,711,5.459,712,5.459,713,3.94,714,3.442,715,3.94,716,3.94,717,3.94,718,3.94,719,5.459,720,3.94,721,3.94,722,3.94,723,3.94]],["title/injectables/UxDynamicMenuService.html",[59,1.348,724,3.577]],["body/injectables/UxDynamicMenuService.html",[3,0.123,4,0.108,8,0.17,9,1.169,12,0.294,13,0.585,16,0.445,17,0.012,18,0.352,19,0.352,20,1.053,21,0.925,23,0.009,24,0.009,47,0.954,57,0.92,61,1.502,73,3.344,76,3.344,94,4.934,278,4.867,608,2.689,699,4.484,724,4.119,725,4.716,726,4.716,727,6.16,728,6.16,729,6.861,730,4.716,731,4.716,732,4.716,733,4.716,734,4.716]],["title/injectables/UxErrorFeedbackService.html",[59,1.348,735,3.236]],["body/injectables/UxErrorFeedbackService.html",[3,0.095,4,0.084,8,0.132,9,0.983,12,0.28,13,0.454,16,0.473,17,0.012,18,0.374,19,0.374,20,0.816,21,0.717,23,0.008,24,0.008,47,0.802,50,4.762,57,1.032,61,1.164,78,1.384,86,2.328,89,1.628,175,2.683,177,3.193,178,4.524,192,2.479,235,2.36,269,3.025,457,4.762,531,2.66,608,2.085,735,2.888,736,2.888,737,3.193,738,4.524,739,6.015,740,6.015,741,4.524,742,4.524,743,3.655,744,3.655,745,5.715,746,3.77,747,3.193,748,5.715,749,3.655,750,4.524,751,3.193,752,5.179,753,4.524,754,3.655,755,3.655,756,3.655]],["title/classes/UxErrorManager.html",[0,0.857,746,2.981]],["body/classes/UxErrorManager.html",[2,0.856,3,0.103,4,0.091,8,0.142,9,1.039,12,0.29,13,0.491,16,0.489,17,0.012,18,0.387,19,0.387,20,0.884,21,0.776,23,0.008,24,0.008,47,0.847,57,1.012,58,1.037,78,1.244,89,1.699,175,3.509,235,2.495,269,2.967,457,4.569,608,2.257,735,4.96,736,3.126,737,3.456,738,4.782,741,4.782,742,4.782,745,5.483,746,2.88,747,3.456,748,5.917,750,4.782,751,3.456,753,4.782,757,5.475,758,5.475,759,3.957,760,5.475,761,3.957,762,3.957]],["title/interceptors/UxRequestErrorModelInterceptor.html",[30,2.223,763,3.577]],["body/interceptors/UxRequestErrorModelInterceptor.html",[3,0.135,4,0.118,8,0.186,12,0.28,13,0.642,16,0.472,17,0.011,18,0.373,19,0.373,23,0.01,24,0.01,32,2.951,44,2.951,47,1.012,48,3.549,51,3.766,52,3.729,53,3.387,54,3.729,56,3.766,57,0.773,58,1.356,235,2.358,763,4.519,764,5.173,765,5.173,766,5.173,767,7.169]],["title/classes/UxRootInjectorGuard.html",[0,0.857,768,3.577]],["body/classes/UxRootInjectorGuard.html",[2,1.27,3,0.153,4,0.134,12,0.337,13,0.729,16,0.424,17,0.011,18,0.335,19,0.335,23,0.01,24,0.01,373,4.273,608,3.348,768,5.127,769,5.87,770,5.87]],["title/injectables/UxTimezoneService.html",[59,1.348,771,3.577]],["body/injectables/UxTimezoneService.html",[3,0.121,4,0.106,8,0.167,12,0.261,16,0.439,17,0.012,18,0.388,19,0.347,23,0.009,24,0.009,47,0.942,57,1.079,61,1.473,78,1.414,264,3.366,357,3.654,607,4.427,608,2.638,609,4.039,771,4.039,772,6.796,773,6.082,774,6.796,775,6.082,776,3.654,777,6.796,778,4.625,779,4.039,780,4.625,781,4.625,782,4.625,783,4.625,784,5.313,785,4.625]],["title/dependencies.html",[786,2.98,787,4.306]],["body/dependencies.html",[17,0.012,23,0.004,24,0.004,76,2.087,135,0.933,248,0.892,351,2.367,429,3.929,463,1.573,495,1.573,506,1.573,591,1.573,607,1.311,699,1.311,787,1.573,788,1.801,789,6.69,790,1.801,791,2.995,792,1.801,793,1.801,794,2.995,795,2.995,796,1.801,797,2.995,798,1.801,799,1.801,800,1.801,801,1.801,802,5.956,803,1.801,804,2.995,805,1.801,806,1.801,807,1.801,808,1.801,809,1.801,810,3.844,811,2.995,812,2.995,813,1.801,814,2.995,815,1.801,816,1.801,817,4.973,818,3.844,819,5.688,820,1.801,821,1.801,822,1.801,823,1.801,824,5.688,825,1.801,826,1.801,827,1.801,828,1.801,829,1.801,830,3.844,831,1.801,832,2.995,833,1.801,834,1.801,835,1.801,836,2.995,837,1.801,838,1.801,839,1.801,840,1.801,841,1.801,842,1.801,843,1.801,844,1.801,845,1.801,846,1.801,847,1.801,848,1.801,849,1.801,850,4.973,851,1.801,852,1.801,853,6.182,854,1.801,855,1.801,856,1.801,857,1.801,858,3.844,859,1.801,860,1.801,861,1.801,862,3.844,863,3.844,864,1.801,865,1.801,866,1.801,867,1.801,868,1.801,869,1.801,870,1.801,871,1.801,872,1.801,873,1.801,874,1.801,875,1.801,876,1.801,877,1.801,878,1.801,879,1.801,880,1.801,881,1.801,882,5.956,883,1.801,884,1.801,885,2.995,886,1.801,887,1.801,888,2.995,889,1.801,890,1.801,891,1.801,892,1.801,893,1.801,894,1.801,895,1.801,896,1.801,897,1.801,898,1.801,899,1.573,900,1.801,901,1.801,902,1.801,903,1.801,904,1.801,905,2.995,906,1.801,907,1.801,908,1.801,909,1.801,910,1.801,911,1.801,912,1.801,913,1.801,914,1.801,915,1.801,916,2.995,917,1.801,918,1.801,919,1.801,920,1.801,921,1.801,922,1.801,923,1.801,924,1.801,925,1.801,926,1.801,927,1.801,928,1.801,929,1.801,930,1.801,931,1.801,932,2.995,933,1.801,934,1.801,935,1.801,936,1.801,937,1.801,938,1.801,939,1.801,940,1.801,941,1.573,942,1.801,943,1.801,944,1.573,945,1.573,946,1.801,947,1.801,948,1.801,949,1.801,950,1.801,951,1.801,952,1.801,953,1.801,954,1.801,955,1.801,956,1.801,957,1.801,958,1.801,959,1.801,960,1.801,961,4.48,962,1.801,963,1.801,964,1.801,965,1.801,966,1.801,967,2.995,968,1.801,969,1.801,970,1.801]],["title/miscellaneous/enumerations.html",[971,2.052,972,4.306]],["body/miscellaneous/enumerations.html",[5,1.542,8,0.117,17,0.012,21,1.589,23,0.007,24,0.007,38,2.363,41,2.363,76,1.762,79,4.153,82,4.446,142,1.762,186,1.682,219,5.443,222,2.836,223,2.836,237,1.852,248,1.609,273,2.363,285,1.609,312,2.565,319,2.672,324,6.191,370,3.757,413,2.363,470,2.565,484,4.153,582,2.836,601,4.153,602,2.363,667,2.565,670,2.565,673,2.565,676,1.952,776,2.565,971,1.952,972,2.836,973,3.247,974,4.755,975,2.836,976,4.755,977,2.836,978,4.755,979,2.836,980,4.755,981,2.836,982,4.755,983,2.836,984,3.247,985,7.671,986,3.247,987,3.247,988,3.247,989,3.247,990,3.247,991,3.247,992,3.247,993,3.247,994,3.247,995,5.627,996,3.247,997,3.247,998,2.836,999,3.247,1000,3.247,1001,3.247,1002,3.247,1003,3.247,1004,3.247,1005,3.247,1006,3.247,1007,3.247,1008,3.247,1009,3.247,1010,3.247]],["title/miscellaneous/functions.html",[971,2.052,1011,4.306]],["body/miscellaneous/functions.html",[4,0.031,7,0.804,8,0.049,12,0.304,16,0.517,17,0.012,18,0.405,19,0.405,20,0.698,21,0.613,23,0.003,24,0.003,36,1.409,38,0.991,57,1.079,75,1.369,78,1.051,89,1.01,93,0.705,94,2.12,134,1.503,135,1.223,156,2.47,157,2.004,160,1.865,175,1.932,176,1.189,187,1.076,209,1.865,220,1.189,235,2.772,243,2.275,248,2.091,269,1.034,273,0.991,274,2.73,285,1.549,288,2.637,319,1.121,333,1.189,336,1.189,337,5.437,347,5.855,352,4.039,364,2.947,366,1.865,374,1.718,386,2.73,399,2.062,407,2.715,410,3.258,423,1.189,439,0.923,470,1.865,493,5.164,497,2.062,512,2.062,513,1.189,529,1.865,564,1.189,587,3.686,597,3.136,598,2.947,608,0.776,699,1.718,736,1.076,746,1.718,776,1.076,941,1.189,971,0.819,998,1.189,1011,1.189,1012,2.361,1013,3.73,1014,4.22,1015,4.22,1016,2.361,1017,2.361,1018,3.73,1019,2.361,1020,4.22,1021,3.73,1022,3.126,1023,3.126,1024,2.361,1025,5.254,1026,2.361,1027,2.361,1028,2.361,1029,2.361,1030,2.361,1031,2.361,1032,2.361,1033,2.361,1034,3.126,1035,2.361,1036,2.361,1037,2.361,1038,2.361,1039,2.361,1040,2.361,1041,2.361,1042,2.361,1043,2.361,1044,2.361,1045,1.361,1046,2.361,1047,1.361,1048,5.254,1049,1.361,1050,1.361,1051,1.361,1052,1.361,1053,1.361,1054,2.361,1055,2.361,1056,2.361,1057,2.361,1058,3.126,1059,1.361,1060,1.361,1061,1.361,1062,1.361,1063,2.361,1064,1.361,1065,3.126,1066,1.361,1067,1.361,1068,3.73,1069,1.361,1070,1.361,1071,1.361,1072,1.361,1073,1.361,1074,2.361,1075,2.361,1076,1.361,1077,2.361,1078,3.126,1079,2.361,1080,2.361,1081,1.361,1082,3.126,1083,1.361,1084,1.361,1085,1.361,1086,1.361,1087,2.361,1088,2.361,1089,1.361,1090,1.361,1091,1.361,1092,1.361,1093,1.361,1094,1.361,1095,1.361,1096,1.361,1097,1.361,1098,2.361,1099,1.361,1100,1.361,1101,1.361,1102,2.361,1103,2.361,1104,1.361,1105,1.361,1106,1.361,1107,1.361]],["title/index.html",[8,0.147,1108,3.577]],["body/index.html",[2,1.301,17,0.01,23,0.01,24,0.01,61,1.916,237,3.432,425,4.38,456,3.619,532,6.267,611,5.256,1108,5.256,1109,6.018,1110,6.018,1111,6.018,1112,6.018]],["title/license.html",[501,2.98,1113,3.412,1114,2.696]],["body/license.html",[10,1.116,12,0.032,17,0.002,21,0.145,23,0.002,24,0.002,88,0.645,101,1.083,108,1.078,109,1.721,123,1.191,135,0.383,137,0.584,151,0.584,187,1.078,192,0.925,207,0.645,247,0.584,249,2.951,264,3.498,291,2.42,292,0.645,298,1.191,301,0.645,302,1.191,308,0.645,312,4.155,374,1.383,390,1.191,391,0.645,397,1.191,428,0.584,439,1.288,440,2.19,457,0.538,517,0.645,529,0.584,531,1.383,602,1.721,629,0.645,655,0.645,714,0.645,779,0.645,784,1.659,944,0.645,945,3.487,971,0.444,1114,2.951,1115,4.806,1116,2.364,1117,7.559,1118,3.449,1119,0.645,1120,2.42,1121,0.739,1122,1.364,1123,0.739,1124,0.739,1125,7.627,1126,3.735,1127,1.364,1128,5.917,1129,4.629,1130,0.739,1131,0.739,1132,2.771,1133,4.436,1134,0.739,1135,4.436,1136,0.739,1137,5.508,1138,6.163,1139,3.449,1140,2.771,1141,0.739,1142,2.771,1143,0.739,1144,0.739,1145,0.739,1146,0.739,1147,0.739,1148,0.739,1149,1.364,1150,5.388,1151,0.739,1152,2.364,1153,2.364,1154,4.436,1155,3.735,1156,5.62,1157,2.771,1158,1.364,1159,3.449,1160,0.739,1161,1.364,1162,0.739,1163,1.9,1164,0.739,1165,0.739,1166,3.992,1167,3.449,1168,1.364,1169,3.13,1170,0.739,1171,0.739,1172,1.9,1173,1.364,1174,0.739,1175,0.739,1176,0.739,1177,1.364,1178,0.739,1179,0.739,1180,0.739,1181,0.739,1182,1.364,1183,0.739,1184,2.771,1185,2.771,1186,2.771,1187,2.771,1188,2.364,1189,0.739,1190,0.739,1191,0.739,1192,1.364,1193,0.739,1194,1.9,1195,3.13,1196,3.449,1197,1.364,1198,0.739,1199,0.739,1200,0.739,1201,0.739,1202,1.9,1203,1.364,1204,0.739,1205,0.739,1206,1.364,1207,3.992,1208,0.739,1209,1.364,1210,0.739,1211,0.739,1212,1.364,1213,3.13,1214,0.739,1215,1.364,1216,0.739,1217,0.739,1218,1.364,1219,1.364,1220,2.364,1221,0.739,1222,0.739,1223,0.739,1224,0.739,1225,0.739,1226,2.771,1227,1.9,1228,1.9,1229,0.739,1230,0.739,1231,0.739,1232,1.9,1233,0.739,1234,0.739,1235,0.739,1236,1.9,1237,0.739,1238,1.364,1239,0.739,1240,0.739,1241,0.739,1242,0.739,1243,1.364,1244,0.739,1245,1.9,1246,0.739,1247,1.9,1248,1.364,1249,0.739,1250,0.739,1251,0.739,1252,0.739,1253,0.739,1254,0.739,1255,2.364,1256,1.364,1257,0.739,1258,0.739,1259,1.364,1260,0.739,1261,0.739,1262,1.364,1263,3.13,1264,0.739,1265,2.364,1266,1.364,1267,1.191,1268,1.364,1269,1.364,1270,1.364,1271,1.364,1272,1.364,1273,1.364,1274,0.739,1275,0.739,1276,0.739,1277,0.739,1278,0.739,1279,1.9,1280,0.739,1281,0.739,1282,0.739,1283,3.735,1284,3.13,1285,0.739,1286,0.739,1287,0.739,1288,2.364,1289,0.739,1290,0.739,1291,0.739,1292,1.364,1293,2.364,1294,0.739,1295,2.364,1296,1.364,1297,0.739,1298,2.364,1299,0.739,1300,0.739,1301,0.739,1302,0.739,1303,0.739,1304,0.739,1305,0.739,1306,1.9,1307,1.364,1308,0.739,1309,0.739,1310,0.739,1311,1.364,1312,0.739,1313,2.364,1314,1.9,1315,0.739,1316,0.739,1317,0.739,1318,0.739,1319,3.13,1320,0.739,1321,0.739,1322,1.9,1323,1.364,1324,0.739,1325,0.739,1326,0.739,1327,0.739,1328,1.9,1329,0.739,1330,0.739,1331,0.739,1332,1.364,1333,0.739,1334,1.364,1335,1.364,1336,0.739,1337,0.739,1338,0.739,1339,0.739,1340,0.739,1341,0.739,1342,1.364,1343,1.9,1344,1.364,1345,2.364,1346,1.364,1347,1.364,1348,2.364,1349,0.739,1350,1.364,1351,0.739,1352,1.364,1353,0.739,1354,2.364,1355,0.739,1356,0.739,1357,0.739,1358,0.739,1359,0.739,1360,0.739,1361,1.364,1362,0.739,1363,0.739,1364,0.739,1365,0.739,1366,0.739,1367,2.771,1368,1.364,1369,0.739,1370,0.739,1371,0.739,1372,0.739,1373,0.739,1374,0.739,1375,0.739,1376,0.739,1377,0.739,1378,0.739,1379,0.739,1380,0.739,1381,0.739,1382,2.771,1383,0.739,1384,0.739,1385,0.739,1386,1.9,1387,0.739,1388,0.739,1389,1.364,1390,1.364,1391,0.739,1392,0.739,1393,0.739,1394,1.9,1395,0.739,1396,1.364,1397,0.739,1398,0.739,1399,0.739,1400,0.739,1401,0.739,1402,1.364,1403,0.739,1404,0.739,1405,0.739,1406,0.739,1407,0.739,1408,1.364,1409,0.739,1410,0.739,1411,0.739,1412,1.364,1413,0.739,1414,0.739,1415,1.9,1416,0.739,1417,0.739,1418,0.739,1419,1.364,1420,0.739,1421,0.739,1422,1.364,1423,0.739,1424,0.739,1425,0.739,1426,0.739,1427,0.739,1428,0.739,1429,0.739,1430,0.739,1431,0.739,1432,1.364,1433,0.739,1434,1.364,1435,1.364,1436,0.739,1437,0.739,1438,0.739,1439,0.739,1440,0.739,1441,0.739,1442,0.739,1443,0.739,1444,0.739,1445,0.739,1446,0.739,1447,0.739,1448,0.739,1449,1.364,1450,0.739,1451,0.739,1452,1.364,1453,0.739,1454,0.739,1455,0.739,1456,0.739,1457,0.739,1458,0.739,1459,0.739,1460,0.739,1461,0.739,1462,0.739,1463,0.739,1464,1.364,1465,1.364,1466,0.739,1467,0.739,1468,0.739,1469,0.739,1470,0.739,1471,0.739,1472,0.739,1473,0.739,1474,0.739,1475,0.739,1476,2.364,1477,1.9,1478,0.739,1479,0.739,1480,0.739,1481,0.739,1482,0.739,1483,0.739,1484,0.739,1485,0.739,1486,0.739,1487,0.739,1488,3.13,1489,0.739,1490,1.9,1491,2.364,1492,0.739,1493,0.739,1494,0.739,1495,0.739,1496,0.739,1497,0.739,1498,0.739,1499,0.739,1500,1.9,1501,1.9,1502,1.364,1503,1.364,1504,1.364,1505,0.739,1506,0.739,1507,0.739,1508,0.739,1509,0.739,1510,0.739,1511,0.739,1512,0.739,1513,1.364,1514,0.739,1515,0.739,1516,0.739,1517,1.364,1518,1.364,1519,1.364,1520,0.739,1521,0.739,1522,0.739,1523,0.739,1524,0.739,1525,1.364,1526,0.739,1527,0.739,1528,0.739,1529,0.739,1530,0.739,1531,0.739,1532,0.739,1533,1.364,1534,0.739,1535,0.739,1536,0.739]],["title/modules.html",[237,3.197]],["body/modules.html",[17,0.011,23,0.011,24,0.011,236,4.877,237,3.52,368,4.877,490,4.877,622,4.877,1537,8.004]],["title/properties.html",[9,0.936,786,2.98]],["body/properties.html",[9,1.157,17,0.012,23,0.011,24,0.011,602,4.436,899,5.323,1114,4.815,1119,5.323,1120,5.323,1267,5.323,1538,6.094]],["title/miscellaneous/typealiases.html",[971,2.052,1539,4.93]],["body/miscellaneous/typealiases.html",[1,3.449,5,2.25,8,0.171,12,0.203,17,0.012,23,0.009,24,0.009,25,3.744,28,3.744,157,2.25,201,3.449,452,3.744,472,4.139,478,5.398,545,3.744,660,3.744,662,3.744,664,3.744,666,3.744,667,3.744,669,3.744,670,3.744,672,3.744,673,3.744,675,3.744,676,2.85,678,3.744,681,3.744,684,3.744,971,2.85,975,4.139,977,4.139,979,4.139,981,4.139,983,4.139,1540,4.739,1541,6.18,1542,6.18,1543,6.18,1544,6.18,1545,6.18,1546,4.739]]],"invertedIndex":[["",{"_index":17,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"properties.html":{},"miscellaneous/typealiases.html":{}}}],["0",{"_index":218,"title":{},"body":{"injectables/CoreAppEffects.html":{},"interceptors/OpenIdConnectInterceptor.html":{}}}],["0.1.5",{"_index":869,"title":{},"body":{"dependencies.html":{}}}],["0.11.0",{"_index":815,"title":{},"body":{"dependencies.html":{}}}],["0.13.1",{"_index":843,"title":{},"body":{"dependencies.html":{}}}],["0.2.4",{"_index":890,"title":{},"body":{"dependencies.html":{}}}],["0.4.0",{"_index":867,"title":{},"body":{"dependencies.html":{}}}],["0.5.43",{"_index":849,"title":{},"body":{"dependencies.html":{}}}],["0.9.2",{"_index":871,"title":{},"body":{"dependencies.html":{}}}],["1",{"_index":532,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{},"index.html":{}}}],["1.0",{"_index":1533,"title":{},"body":{"license.html":{}}}],["1.0.31",{"_index":946,"title":{},"body":{"dependencies.html":{}}}],["1.1",{"_index":1119,"title":{},"body":{"license.html":{},"properties.html":{}}}],["1.1.20150312",{"_index":919,"title":{},"body":{"dependencies.html":{}}}],["1.1.21",{"_index":927,"title":{},"body":{"dependencies.html":{}}}],["1.10.0",{"_index":950,"title":{},"body":{"dependencies.html":{}}}],["1.11.5",{"_index":938,"title":{},"body":{"dependencies.html":{}}}],["1.2.10",{"_index":911,"title":{},"body":{"dependencies.html":{}}}],["1.2.3",{"_index":827,"title":{},"body":{"dependencies.html":{}}}],["1.2.5",{"_index":913,"title":{},"body":{"dependencies.html":{}}}],["1.29.0",{"_index":935,"title":{},"body":{"dependencies.html":{}}}],["1.4.8",{"_index":902,"title":{},"body":{"dependencies.html":{}}}],["1.5.1",{"_index":917,"title":{},"body":{"dependencies.html":{}}}],["1.6.0",{"_index":836,"title":{},"body":{"dependencies.html":{}}}],["1.8.2",{"_index":956,"title":{},"body":{"dependencies.html":{}}}],["1.9.0",{"_index":960,"title":{},"body":{"dependencies.html":{}}}],["10.8.6",{"_index":940,"title":{},"body":{"dependencies.html":{}}}],["10.9.1",{"_index":876,"title":{},"body":{"dependencies.html":{}}}],["14",{"_index":205,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["14.2.4",{"_index":904,"title":{},"body":{"dependencies.html":{}}}],["15",{"_index":1170,"title":{},"body":{"license.html":{}}}],["15.0.0",{"_index":894,"title":{},"body":{"dependencies.html":{}}}],["15.0.1",{"_index":963,"title":{},"body":{"dependencies.html":{}}}],["16.0.0",{"_index":899,"title":{},"body":{"dependencies.html":{},"properties.html":{}}}],["16.2.0",{"_index":817,"title":{},"body":{"dependencies.html":{}}}],["16.2.10",{"_index":789,"title":{},"body":{"dependencies.html":{}}}],["16.2.3",{"_index":808,"title":{},"body":{"dependencies.html":{}}}],["16.2.4",{"_index":967,"title":{},"body":{"dependencies.html":{}}}],["16.2.6",{"_index":804,"title":{},"body":{"dependencies.html":{}}}],["16.2.9",{"_index":810,"title":{},"body":{"dependencies.html":{}}}],["16.3.0",{"_index":882,"title":{},"body":{"dependencies.html":{}}}],["18.16.3",{"_index":848,"title":{},"body":{"dependencies.html":{}}}],["2",{"_index":302,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["2.0",{"_index":1536,"title":{},"body":{"license.html":{}}}],["2.0.0",{"_index":863,"title":{},"body":{"dependencies.html":{}}}],["2.0.10",{"_index":878,"title":{},"body":{"dependencies.html":{}}}],["2.0.11",{"_index":908,"title":{},"body":{"dependencies.html":{}}}],["2.0.8",{"_index":952,"title":{},"body":{"dependencies.html":{}}}],["2.1",{"_index":1530,"title":{},"body":{"license.html":{}}}],["2.1.3",{"_index":930,"title":{},"body":{"dependencies.html":{}}}],["2.2.0",{"_index":859,"title":{},"body":{"dependencies.html":{}}}],["2.27.5",{"_index":833,"title":{},"body":{"dependencies.html":{}}}],["2.3.0",{"_index":841,"title":{},"body":{"dependencies.html":{}}}],["2.3.2",{"_index":943,"title":{},"body":{"dependencies.html":{}}}],["2.5.1",{"_index":922,"title":{},"body":{"dependencies.html":{}}}],["2.8.8",{"_index":962,"title":{},"body":{"dependencies.html":{}}}],["2007",{"_index":1123,"title":{},"body":{"license.html":{}}}],["23",{"_index":1110,"title":{},"body":{"index.html":{}}}],["238",{"_index":1509,"title":{},"body":{"license.html":{}}}],["3.0",{"_index":1531,"title":{},"body":{"license.html":{}}}],["3.0.0",{"_index":925,"title":{},"body":{"dependencies.html":{}}}],["3.0.3",{"_index":865,"title":{},"body":{"dependencies.html":{}}}],["3.2.0",{"_index":857,"title":{},"body":{"dependencies.html":{}}}],["3.41.0",{"_index":958,"title":{},"body":{"dependencies.html":{}}}],["34",{"_index":1111,"title":{},"body":{"index.html":{}}}],["4",{"_index":1109,"title":{},"body":{"index.html":{}}}],["4.1.8",{"_index":892,"title":{},"body":{"dependencies.html":{}}}],["4.14.194",{"_index":880,"title":{},"body":{"dependencies.html":{}}}],["4.17.21",{"_index":949,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":965,"title":{},"body":{"dependencies.html":{}}}],["4.3.0",{"_index":932,"title":{},"body":{"dependencies.html":{}}}],["4.3.5",{"_index":846,"title":{},"body":{"dependencies.html":{}}}],["4.6.0",{"_index":852,"title":{},"body":{"dependencies.html":{}}}],["4.7.7",{"_index":954,"title":{},"body":{"dependencies.html":{}}}],["4.9.5",{"_index":844,"title":{},"body":{"dependencies.html":{}}}],["43.1.1",{"_index":829,"title":{},"body":{"dependencies.html":{}}}],["5",{"_index":1524,"title":{},"body":{"license.html":{}}}],["5.1.0",{"_index":860,"title":{},"body":{"dependencies.html":{}}}],["5.59.7",{"_index":832,"title":{},"body":{"dependencies.html":{}}}],["6",{"_index":1380,"title":{},"body":{"license.html":{}}}],["6.0.0",{"_index":970,"title":{},"body":{"dependencies.html":{}}}],["6.4.2",{"_index":854,"title":{},"body":{"dependencies.html":{}}}],["7",{"_index":1112,"title":{},"body":{"index.html":{}}}],["7.0.0",{"_index":873,"title":{},"body":{"dependencies.html":{}}}],["7.8.1",{"_index":839,"title":{},"body":{"dependencies.html":{}}}],["8.0.0",{"_index":896,"title":{},"body":{"dependencies.html":{}}}],["8.41.0",{"_index":837,"title":{},"body":{"dependencies.html":{}}}],["8.8.0",{"_index":964,"title":{},"body":{"dependencies.html":{}}}],["9",{"_index":1473,"title":{},"body":{"license.html":{}}}],["_element",{"_index":621,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["above",{"_index":1255,"title":{},"body":{"license.html":{}}}],["absence",{"_index":1374,"title":{},"body":{"license.html":{}}}],["abstract",{"_index":140,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["accept",{"_index":1350,"title":{},"body":{"license.html":{}}}],["acceptance",{"_index":1415,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":1432,"title":{},"body":{"license.html":{}}}],["accepting",{"_index":1418,"title":{},"body":{"license.html":{}}}],["accepts",{"_index":290,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["access",{"_index":1208,"title":{},"body":{"license.html":{}}}],["accessible",{"_index":1270,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":445,"title":{},"body":{"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{}}}],["accordance",{"_index":1442,"title":{},"body":{"license.html":{}}}],["according",{"_index":1523,"title":{},"body":{"license.html":{}}}],["accumulate",{"_index":753,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["accuracy",{"_index":1375,"title":{},"body":{"license.html":{}}}],["act",{"_index":1197,"title":{},"body":{"license.html":{}}}],["action",{"_index":7,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"injectables/ApiQueueService.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"injectables/StoreService.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"miscellaneous/functions.html":{}}}],["action.payload",{"_index":183,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["actionkey",{"_index":596,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["actionreducer",{"_index":598,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"miscellaneous/functions.html":{}}}],["actions",{"_index":173,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["activated",{"_index":992,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["activated_route",{"_index":991,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["activatedroute",{"_index":15,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"injectables/CoreAppEffects.html":{}}}],["activatedrouteaction",{"_index":1,"title":{"classes/ActivatedRouteAction.html":{}},"body":{"classes/ActivatedRouteAction.html":{},"injectables/CoreAppEffects.html":{},"miscellaneous/typealiases.html":{}}}],["acts",{"_index":505,"title":{},"body":{"injectables/LogService.html":{}}}],["adapter",{"_index":813,"title":{},"body":{"dependencies.html":{}}}],["add",{"_index":41,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/I18nService.html":{},"injectables/UxDynamicComponentService.html":{},"miscellaneous/enumerations.html":{}}}],["add(component",{"_index":706,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["add_api_queue_item",{"_index":994,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["add_app_loaded_config_modules",{"_index":988,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["addapiqueueitemaction",{"_index":25,"title":{"classes/AddApiQueueItemAction.html":{}},"body":{"classes/AddApiQueueItemAction.html":{},"miscellaneous/typealiases.html":{}}}],["addapploadedconfigmodulesaction",{"_index":28,"title":{"classes/AddAppLoadedConfigModulesAction.html":{}},"body":{"classes/AddAppLoadedConfigModulesAction.html":{},"miscellaneous/typealiases.html":{}}}],["addautosavehandler",{"_index":583,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["addautosavehandler(stateslice",{"_index":586,"title":{},"body":{"injectables/StoreService.html":{}}}],["added",{"_index":1094,"title":{},"body":{"miscellaneous/functions.html":{}}}],["adding",{"_index":37,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["addition",{"_index":1261,"title":{},"body":{"license.html":{}}}],["additional",{"_index":1313,"title":{},"body":{"license.html":{}}}],["addlangparaminterceptor",{"_index":31,"title":{"interceptors/AddLangParamInterceptor.html":{}},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["addlangs",{"_index":640,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["addlangs(langs",{"_index":652,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["addlocale",{"_index":473,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["addlocale(id",{"_index":479,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["addqueueitem",{"_index":64,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["addqueueitem(id",{"_index":77,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["addresources",{"_index":341,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["addresources(config",{"_index":348,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{}}}],["adds",{"_index":81,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/I18nLoader.html":{},"injectables/UxDynamicComponentService.html":{}}}],["advantage",{"_index":1498,"title":{},"body":{"license.html":{}}}],["advised",{"_index":1404,"title":{},"body":{"license.html":{}}}],["affect",{"_index":1480,"title":{},"body":{"license.html":{}}}],["affirming",{"_index":1439,"title":{},"body":{"license.html":{}}}],["afterviewchecked",{"_index":615,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["against",{"_index":1430,"title":{},"body":{"license.html":{}}}],["agree",{"_index":1422,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":1412,"title":{},"body":{"license.html":{}}}],["agreements",{"_index":1409,"title":{},"body":{"license.html":{}}}],["alerthttperrorcallbackfn",{"_index":1012,"title":{},"body":{"miscellaneous/functions.html":{}}}],["alerthttperrorcallbackfn(error",{"_index":1047,"title":{},"body":{"miscellaneous/functions.html":{}}}],["aliases",{"_index":1540,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["allowed",{"_index":1251,"title":{},"body":{"license.html":{}}}],["allows",{"_index":593,"title":{},"body":{"injectables/StoreService.html":{}}}],["along",{"_index":1264,"title":{},"body":{"license.html":{}}}],["alter",{"_index":1315,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":1150,"title":{},"body":{"license.html":{}}}],["angular",{"_index":802,"title":{},"body":{"dependencies.html":{}}}],["angular/animations",{"_index":788,"title":{},"body":{"dependencies.html":{}}}],["angular/cdk",{"_index":809,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":805,"title":{},"body":{"dependencies.html":{}}}],["angular/common",{"_index":790,"title":{},"body":{"dependencies.html":{}}}],["angular/compiler",{"_index":791,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":792,"title":{},"body":{"dependencies.html":{}}}],["angular/elements",{"_index":798,"title":{},"body":{"dependencies.html":{}}}],["angular/forms",{"_index":793,"title":{},"body":{"dependencies.html":{}}}],["angular/language",{"_index":799,"title":{},"body":{"dependencies.html":{}}}],["angular/material",{"_index":811,"title":{},"body":{"dependencies.html":{}}}],["angular/platform",{"_index":794,"title":{},"body":{"dependencies.html":{}}}],["angular/router",{"_index":796,"title":{},"body":{"dependencies.html":{}}}],["angular/service",{"_index":800,"title":{},"body":{"dependencies.html":{}}}],["animations",{"_index":814,"title":{},"body":{"dependencies.html":{}}}],["another",{"_index":428,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"license.html":{}}}],["any,lang",{"_index":382,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["any,undefined",{"_index":694,"title":{},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["apexcharts",{"_index":957,"title":{},"body":{"dependencies.html":{}}}],["api",{"_index":995,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["apiqueueitem",{"_index":80,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["apiqueueservice",{"_index":60,"title":{"injectables/ApiQueueService.html":{}},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["apiqueueservicemock",{"_index":126,"title":{"classes/ApiQueueServiceMock.html":{}},"body":{"classes/ApiQueueServiceMock.html":{}}}],["app",{"_index":985,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["app.ts",{"_index":1034,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appconfig",{"_index":1068,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appenders",{"_index":512,"title":{},"body":{"injectables/LogService.html":{},"miscellaneous/functions.html":{}}}],["appendix",{"_index":1323,"title":{},"body":{"license.html":{}}}],["applicable",{"_index":1167,"title":{},"body":{"license.html":{}}}],["application",{"_index":1095,"title":{},"body":{"miscellaneous/functions.html":{}}}],["applicationref",{"_index":705,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["applies",{"_index":1124,"title":{},"body":{"license.html":{}}}],["apply",{"_index":1248,"title":{},"body":{"license.html":{}}}],["appmodule",{"_index":1090,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appref",{"_index":704,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["approved",{"_index":1495,"title":{},"body":{"license.html":{}}}],["args",{"_index":268,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["arises",{"_index":1521,"title":{},"body":{"license.html":{}}}],["arising",{"_index":1394,"title":{},"body":{"license.html":{}}}],["array",{"_index":94,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/I18nLoader.html":{},"interfaces/LoadedResources.html":{},"injectables/UxDynamicMenuService.html":{},"miscellaneous/functions.html":{}}}],["arrow",{"_index":826,"title":{},"body":{"dependencies.html":{}}}],["article",{"_index":1169,"title":{},"body":{"license.html":{}}}],["ascending",{"_index":119,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["asserted",{"_index":1429,"title":{},"body":{"license.html":{}}}],["asservice",{"_index":177,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/UxErrorFeedbackService.html":{}}}],["associated",{"_index":149,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["async",{"_index":147,"title":{},"body":{"classes/AsyncStorageService.html":{}}}],["asynchronous",{"_index":133,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["asynchronously",{"_index":1084,"title":{},"body":{"miscellaneous/functions.html":{}}}],["asyncstorageservice",{"_index":129,"title":{"classes/AsyncStorageService.html":{}},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{}}}],["asyncstorageservicemock",{"_index":163,"title":{"classes/AsyncStorageServiceMock.html":{}},"body":{"classes/AsyncStorageServiceMock.html":{}}}],["attached",{"_index":1266,"title":{},"body":{"license.html":{}}}],["attribution",{"_index":1287,"title":{},"body":{"license.html":{}}}],["authorised",{"_index":1130,"title":{},"body":{"license.html":{}}}],["authority",{"_index":1347,"title":{},"body":{"license.html":{}}}],["authorship",{"_index":1341,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":1466,"title":{},"body":{"license.html":{}}}],["available",{"_index":1152,"title":{},"body":{"license.html":{}}}],["back",{"_index":435,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["base",{"_index":506,"title":{},"body":{"injectables/LogService.html":{},"dependencies.html":{}}}],["based",{"_index":109,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/I18nService.html":{},"license.html":{}}}],["baseglobalconfig",{"_index":409,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{}}}],["basis",{"_index":1366,"title":{},"body":{"license.html":{}}}],["becoming",{"_index":1310,"title":{},"body":{"license.html":{}}}],["before",{"_index":1089,"title":{},"body":{"miscellaneous/functions.html":{}}}],["begin",{"_index":115,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["behalf",{"_index":1419,"title":{},"body":{"license.html":{}}}],["behaviorsubject",{"_index":646,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["behaviorsubject(true",{"_index":647,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["belgian",{"_index":1520,"title":{},"body":{"license.html":{}}}],["below",{"_index":1127,"title":{},"body":{"license.html":{}}}],["benefits",{"_index":1277,"title":{},"body":{"license.html":{}}}],["better",{"_index":909,"title":{},"body":{"dependencies.html":{}}}],["between",{"_index":1476,"title":{},"body":{"license.html":{}}}],["beware",{"_index":111,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["boolean",{"_index":175,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResources.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/ResourceError.html":{},"classes/UpdateAppConnectionAction.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["bootstrapped",{"_index":1091,"title":{},"body":{"miscellaneous/functions.html":{}}}],["both",{"_index":1318,"title":{},"body":{"license.html":{}}}],["bottom",{"_index":1436,"title":{},"body":{"license.html":{}}}],["breach",{"_index":1467,"title":{},"body":{"license.html":{}}}],["brings",{"_index":1349,"title":{},"body":{"license.html":{}}}],["browse",{"_index":1537,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":795,"title":{},"body":{"dependencies.html":{}}}],["browserstoragetype",{"_index":601,"title":{},"body":{"injectables/StoreService.html":{},"miscellaneous/enumerations.html":{}}}],["bugs",{"_index":1362,"title":{},"body":{"license.html":{}}}],["business",{"_index":1516,"title":{},"body":{"license.html":{}}}],["c",{"_index":1121,"title":{},"body":{"license.html":{}}}],["cachepreventioninterceptor",{"_index":165,"title":{"interceptors/CachePreventionInterceptor.html":{}},"body":{"interceptors/CachePreventionInterceptor.html":{}}}],["callback",{"_index":1014,"title":{},"body":{"miscellaneous/functions.html":{}}}],["called",{"_index":372,"title":{},"body":{"modules/I18nModule.html":{},"modules/LogModule.html":{}}}],["carry",{"_index":1300,"title":{},"body":{"license.html":{}}}],["case",{"_index":101,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"license.html":{}}}],["cases",{"_index":1383,"title":{},"body":{"license.html":{}}}],["cause",{"_index":1299,"title":{},"body":{"license.html":{}}}],["caused",{"_index":1388,"title":{},"body":{"license.html":{}}}],["cecill",{"_index":1535,"title":{},"body":{"license.html":{}}}],["chain",{"_index":1340,"title":{},"body":{"license.html":{}}}],["channel",{"_index":1457,"title":{},"body":{"license.html":{}}}],["charge",{"_index":1413,"title":{},"body":{"license.html":{}}}],["check",{"_index":209,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"miscellaneous/functions.html":{}}}],["checkattributepermission",{"_index":281,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkattributepermission(rightsandpermission",{"_index":289,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkpermission",{"_index":282,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkpermission(rightid",{"_index":314,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkright",{"_index":283,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["checkright(rightid",{"_index":316,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["childbaseloggername",{"_index":1056,"title":{},"body":{"miscellaneous/functions.html":{}}}],["childconfig",{"_index":1057,"title":{},"body":{"miscellaneous/functions.html":{}}}],["choice",{"_index":1499,"title":{},"body":{"license.html":{}}}],["choose",{"_index":1410,"title":{},"body":{"license.html":{}}}],["chrome",{"_index":855,"title":{},"body":{"dependencies.html":{}}}],["circumstance",{"_index":1224,"title":{},"body":{"license.html":{}}}],["claims",{"_index":1428,"title":{},"body":{"license.html":{}}}],["class",{"_index":0,"title":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"classes/I18nResourceImpl.html":{},"classes/InitStoreAction.html":{},"classes/LogServiceMock.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"classes/UxErrorManager.html":{},"classes/UxRootInjectorGuard.html":{}},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["classes",{"_index":2,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"classes/I18nResourceImpl.html":{},"classes/InitStoreAction.html":{},"classes/LogServiceMock.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"classes/UxErrorManager.html":{},"classes/UxRootInjectorGuard.html":{},"index.html":{}}}],["classify",{"_index":1164,"title":{},"body":{"license.html":{}}}],["classlist.js",{"_index":918,"title":{},"body":{"dependencies.html":{}}}],["clause",{"_index":1306,"title":{},"body":{"license.html":{}}}],["clear",{"_index":1444,"title":{},"body":{"license.html":{}}}],["clearerror",{"_index":738,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["clearerror(groupid",{"_index":762,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["clearerror(id",{"_index":744,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["cleave.js",{"_index":900,"title":{},"body":{"dependencies.html":{}}}],["cli",{"_index":797,"title":{},"body":{"dependencies.html":{}}}],["clicking",{"_index":1434,"title":{},"body":{"license.html":{}}}],["client",{"_index":937,"title":{},"body":{"dependencies.html":{}}}],["code",{"_index":264,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"injectables/UxTimezoneService.html":{},"license.html":{}}}],["codes",{"_index":778,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["comes",{"_index":294,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["commercial",{"_index":1401,"title":{},"body":{"license.html":{}}}],["commission",{"_index":1488,"title":{},"body":{"license.html":{}}}],["common",{"_index":1532,"title":{},"body":{"license.html":{}}}],["communicate",{"_index":1227,"title":{},"body":{"license.html":{}}}],["communicated",{"_index":1151,"title":{},"body":{"license.html":{}}}],["communicates",{"_index":1188,"title":{},"body":{"license.html":{}}}],["communicating",{"_index":1203,"title":{},"body":{"license.html":{}}}],["communication",{"_index":1196,"title":{},"body":{"license.html":{}}}],["communities",{"_index":1506,"title":{},"body":{"license.html":{}}}],["community",{"_index":1122,"title":{},"body":{"license.html":{}}}],["compare",{"_index":395,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["compatibility",{"_index":1317,"title":{},"body":{"license.html":{}}}],["compatible",{"_index":1319,"title":{},"body":{"license.html":{}}}],["competent",{"_index":1512,"title":{},"body":{"license.html":{}}}],["compiled",{"_index":1179,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":384,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["compiletranslations",{"_index":376,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["compiletranslations(translations",{"_index":385,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["compiletranslationsfn",{"_index":381,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["complete",{"_index":1475,"title":{},"body":{"license.html":{}}}],["completes",{"_index":114,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["compliance",{"_index":1471,"title":{},"body":{"license.html":{}}}],["compodoc/compodoc",{"_index":926,"title":{},"body":{"dependencies.html":{}}}],["compodoc/ngd",{"_index":928,"title":{},"body":{"dependencies.html":{}}}],["component",{"_index":709,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["component.service.ts",{"_index":701,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["component/ux",{"_index":700,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["componentfactoryresolver",{"_index":703,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["components",{"_index":756,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["componenttype",{"_index":707,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["computer",{"_index":1182,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":1369,"title":{},"body":{"license.html":{}}}],["conclude",{"_index":1411,"title":{},"body":{"license.html":{}}}],["concluded",{"_index":1461,"title":{},"body":{"license.html":{}}}],["concrete",{"_index":136,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["condition",{"_index":1381,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":1314,"title":{},"body":{"license.html":{}}}],["conducts",{"_index":1514,"title":{},"body":{"license.html":{}}}],["config",{"_index":248,"title":{},"body":{"modules/CoreModule.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"modules/LogModule.html":{},"injectables/UxDynamicComponentService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["configuration",{"_index":352,"title":{},"body":{"injectables/I18nLoader.html":{},"miscellaneous/functions.html":{}}}],["configurations",{"_index":1093,"title":{},"body":{"miscellaneous/functions.html":{}}}],["conflict",{"_index":1325,"title":{},"body":{"license.html":{}}}],["connect.interceptor.ts",{"_index":526,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["connect.service.mock.ts",{"_index":537,"title":{},"body":{"classes/OpenIdConnectServiceMock.html":{}}}],["connect.service.ts",{"_index":534,"title":{},"body":{"injectables/OpenIdConnectService.html":{},"interfaces/OpenIdConnectUserDetails.html":{}}}],["connected",{"_index":224,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["connection",{"_index":222,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/enumerations.html":{}}}],["connectionstatus",{"_index":176,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/functions.html":{}}}],["consent",{"_index":1440,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":1417,"title":{},"body":{"license.html":{}}}],["consolehttperrorcallbackfn",{"_index":1016,"title":{},"body":{"miscellaneous/functions.html":{}}}],["consolehttperrorcallbackfn(error",{"_index":1049,"title":{},"body":{"miscellaneous/functions.html":{}}}],["const",{"_index":188,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["constructor",{"_index":13,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/CoreAppEffects.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/RemoveApiQueueItemAction.html":{},"injectables/SessionStorageService.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"directives/TranslateMockDirective.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{}}}],["constructor(_element",{"_index":619,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["constructor(actions",{"_index":172,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["constructor(asservice",{"_index":743,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["constructor(baseglobalconfig",{"_index":406,"title":{},"body":{"injectables/I18nService.html":{}}}],["constructor(code",{"_index":266,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["constructor(componentfactoryresolver",{"_index":702,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["constructor(config",{"_index":335,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/LocalForageService.html":{}}}],["constructor(errormappinghandler",{"_index":766,"title":{},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["constructor(http",{"_index":346,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["constructor(locale_id",{"_index":489,"title":{},"body":{"injectables/LocaleServiceMock.html":{}}}],["constructor(log",{"_index":287,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{}}}],["constructor(logservice",{"_index":330,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["constructor(name",{"_index":509,"title":{},"body":{"injectables/LogService.html":{}}}],["constructor(payload",{"_index":14,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{}}}],["constructor(prefix",{"_index":379,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["constructor(store",{"_index":72,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/LocaleService.html":{},"injectables/StoreService.html":{},"injectables/UserService.html":{}}}],["constructor(translateservice",{"_index":49,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["constructor(type",{"_index":770,"title":{},"body":{"classes/UxRootInjectorGuard.html":{}}}],["constructor(uxerrorfeedbackservice",{"_index":759,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["constructor(uxpermission",{"_index":730,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["construed",{"_index":1484,"title":{},"body":{"license.html":{}}}],["contain",{"_index":301,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["contains",{"_index":105,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["content",{"_index":655,"title":{},"body":{"classes/TranslateServiceMock.html":{},"license.html":{}}}],["continue",{"_index":103,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["continueonerror",{"_index":99,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["continues",{"_index":1272,"title":{},"body":{"license.html":{}}}],["continuously",{"_index":1356,"title":{},"body":{"license.html":{}}}],["contributes",{"_index":1191,"title":{},"body":{"license.html":{}}}],["contributions",{"_index":1353,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":1348,"title":{},"body":{"license.html":{}}}],["contributor(s",{"_index":1189,"title":{},"body":{"license.html":{}}}],["contributors",{"_index":1352,"title":{},"body":{"license.html":{}}}],["convenient",{"_index":1174,"title":{},"body":{"license.html":{}}}],["convert",{"_index":783,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["converts",{"_index":92,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["copies",{"_index":1207,"title":{},"body":{"license.html":{}}}],["copy",{"_index":1263,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":1305,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":1135,"title":{},"body":{"license.html":{}}}],["core",{"_index":851,"title":{},"body":{"dependencies.html":{}}}],["core.module.ts",{"_index":239,"title":{},"body":{"modules/CoreModule.html":{},"classes/EuiCoreRootGuardClass.html":{}}}],["coreappactions",{"_index":1541,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["coreappactiontypes",{"_index":974,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["coreappactiontypes.activated_route",{"_index":22,"title":{},"body":{"classes/ActivatedRouteAction.html":{}}}],["coreappactiontypes.add_api_queue_item",{"_index":27,"title":{},"body":{"classes/AddApiQueueItemAction.html":{}}}],["coreappactiontypes.add_app_loaded_config_modules",{"_index":29,"title":{},"body":{"classes/AddAppLoadedConfigModulesAction.html":{}}}],["coreappactiontypes.empty_api_queue",{"_index":261,"title":{},"body":{"classes/EmptyApiQueueAction.html":{}}}],["coreappactiontypes.init_store",{"_index":453,"title":{},"body":{"classes/InitStoreAction.html":{}}}],["coreappactiontypes.remove_api_queue_item",{"_index":546,"title":{},"body":{"classes/RemoveApiQueueItemAction.html":{}}}],["coreappactiontypes.update_app_connection",{"_index":659,"title":{},"body":{"classes/UpdateAppConnectionAction.html":{}}}],["coreappactiontypes.update_app_status",{"_index":661,"title":{},"body":{"classes/UpdateAppStatusAction.html":{}}}],["coreappactiontypes.update_app_version",{"_index":663,"title":{},"body":{"classes/UpdateAppVersionAction.html":{}}}],["coreappactiontypes.update_current_module",{"_index":665,"title":{},"body":{"classes/UpdateCurrentModuleAction.html":{}}}],["coreappeffects",{"_index":168,"title":{"injectables/CoreAppEffects.html":{}},"body":{"injectables/CoreAppEffects.html":{}}}],["corei18nactions",{"_index":1542,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["corei18nactiontypes",{"_index":976,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["corei18nactiontypes.update_i18n_state",{"_index":668,"title":{},"body":{"classes/UpdateI18nStateAction.html":{}}}],["corelocaleactions",{"_index":1543,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["corelocaleactiontypes",{"_index":978,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["corelocaleactiontypes.update_locale_state",{"_index":671,"title":{},"body":{"classes/UpdateLocaleStateAction.html":{}}}],["coremodule",{"_index":236,"title":{"modules/CoreModule.html":{}},"body":{"modules/CoreModule.html":{},"modules.html":{}}}],["corenotificationsactions",{"_index":1544,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["corenotificationsactiontypes",{"_index":980,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["corenotificationsactiontypes.update_notifications_list",{"_index":674,"title":{},"body":{"classes/UpdateNotificationsListAction.html":{}}}],["corestate",{"_index":578,"title":{},"body":{"classes/StoreMock.html":{}}}],["coreuseractions",{"_index":1545,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["coreuseractiontypes",{"_index":982,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["coreuseractiontypes.update_user_dashboard",{"_index":677,"title":{},"body":{"classes/UpdateUserDashboardAction.html":{}}}],["coreuseractiontypes.update_user_details",{"_index":680,"title":{},"body":{"classes/UpdateUserDetailsAction.html":{}}}],["coreuseractiontypes.update_user_preferences",{"_index":683,"title":{},"body":{"classes/UpdateUserPreferencesAction.html":{}}}],["coreuseractiontypes.update_user_rights",{"_index":685,"title":{},"body":{"classes/UpdateUserRightsAction.html":{}}}],["coreuseractiontypes.update_user_state",{"_index":688,"title":{},"body":{"classes/UpdateUserStateAction.html":{}}}],["corssecurityinterceptor",{"_index":254,"title":{"interceptors/CorsSecurityInterceptor.html":{}},"body":{"interceptors/CorsSecurityInterceptor.html":{}}}],["countries",{"_index":779,"title":{},"body":{"injectables/UxTimezoneService.html":{},"license.html":{}}}],["country",{"_index":784,"title":{},"body":{"injectables/UxTimezoneService.html":{},"license.html":{}}}],["court",{"_index":1504,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":858,"title":{},"body":{"dependencies.html":{}}}],["covered",{"_index":1134,"title":{},"body":{"license.html":{}}}],["created",{"_index":517,"title":{},"body":{"injectables/LogService.html":{},"license.html":{}}}],["createeffect",{"_index":179,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["createglobalerrormanager",{"_index":739,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["createlocalerrormanager",{"_index":740,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["createurltree",{"_index":554,"title":{},"body":{"classes/RouterMock.html":{}}}],["creating",{"_index":502,"title":{},"body":{"injectables/LogService.html":{}}}],["creation",{"_index":1192,"title":{},"body":{"license.html":{}}}],["csrfpreventioninterceptor",{"_index":258,"title":{"interceptors/CsrfPreventionInterceptor.html":{}},"body":{"interceptors/CsrfPreventionInterceptor.html":{}}}],["current",{"_index":38,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["currentlang",{"_index":631,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["currentlanguage",{"_index":447,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["currentlocale",{"_index":476,"title":{},"body":{"injectables/LocaleService.html":{}}}],["currently",{"_index":1092,"title":{},"body":{"miscellaneous/functions.html":{}}}],["customary",{"_index":1336,"title":{},"body":{"license.html":{}}}],["damage",{"_index":1402,"title":{},"body":{"license.html":{}}}],["damages",{"_index":1386,"title":{},"body":{"license.html":{}}}],["danger",{"_index":234,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["dashboard",{"_index":1010,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["data",{"_index":714,"title":{},"body":{"injectables/UxDynamicComponentService.html":{},"license.html":{}}}],["date",{"_index":1304,"title":{},"body":{"license.html":{}}}],["debouncetime",{"_index":574,"title":{},"body":{"classes/StoreMock.html":{}}}],["declarations",{"_index":623,"title":{},"body":{"modules/TranslateMockModule.html":{}}}],["default",{"_index":20,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/CoreAppEffects.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StoreMock.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["default_language",{"_index":648,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["default_log_config",{"_index":497,"title":{},"body":{"modules/LogModule.html":{},"miscellaneous/functions.html":{}}}],["defaultmaximumrequestretries",{"_index":527,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["defects",{"_index":1361,"title":{},"body":{"license.html":{}}}],["defend",{"_index":1424,"title":{},"body":{"license.html":{}}}],["define",{"_index":1160,"title":{},"body":{"license.html":{}}}],["defined",{"_index":187,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["definition",{"_index":362,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["definitions",{"_index":1147,"title":{},"body":{"license.html":{}}}],["departmentnumber",{"_index":539,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["dependence",{"_index":1162,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":787,"title":{"dependencies.html":{}},"body":{"dependencies.html":{}}}],["deprive",{"_index":1276,"title":{},"body":{"license.html":{}}}],["derivative",{"_index":1154,"title":{},"body":{"license.html":{}}}],["desc",{"_index":610,"title":{},"body":{"interfaces/TimeZone.html":{}}}],["describing",{"_index":1337,"title":{},"body":{"license.html":{}}}],["description",{"_index":36,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"injectables/UxDynamicComponentService.html":{},"miscellaneous/functions.html":{}}}],["detached",{"_index":723,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["detaches",{"_index":720,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["detail",{"_index":231,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["details",{"_index":1005,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["detector",{"_index":924,"title":{},"body":{"dependencies.html":{}}}],["determine",{"_index":161,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["determined",{"_index":1165,"title":{},"body":{"license.html":{}}}],["dev.4",{"_index":906,"title":{},"body":{"dependencies.html":{}}}],["development",{"_index":1364,"title":{},"body":{"license.html":{}}}],["device",{"_index":923,"title":{},"body":{"dependencies.html":{}}}],["devkit/build",{"_index":803,"title":{},"body":{"dependencies.html":{}}}],["devtools",{"_index":886,"title":{},"body":{"dependencies.html":{}}}],["different",{"_index":496,"title":{},"body":{"modules/LogModule.html":{}}}],["direct",{"_index":1391,"title":{},"body":{"license.html":{}}}],["directive",{"_index":611,"title":{"directives/TranslateMockDirective.html":{}},"body":{"index.html":{}}}],["directives",{"_index":613,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["directly",{"_index":1387,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":1295,"title":{},"body":{"license.html":{}}}],["dispatch",{"_index":575,"title":{},"body":{"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["dispatch(action",{"_index":589,"title":{},"body":{"injectables/StoreService.html":{}}}],["dispatchaction",{"_index":584,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["dispatchaction(state",{"_index":595,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["dispatching",{"_index":83,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["display",{"_index":1229,"title":{},"body":{"license.html":{}}}],["displaying",{"_index":1438,"title":{},"body":{"license.html":{}}}],["disposal",{"_index":1211,"title":{},"body":{"license.html":{}}}],["distinctuntilchanged",{"_index":576,"title":{},"body":{"classes/StoreMock.html":{}}}],["distribute",{"_index":1232,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":1149,"title":{},"body":{"license.html":{}}}],["distributes",{"_index":1187,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":1202,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":1195,"title":{},"body":{"license.html":{}}}],["document",{"_index":408,"title":{},"body":{"injectables/I18nService.html":{}}}],["domain",{"_index":540,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["domainusername",{"_index":541,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["domportaloutlet",{"_index":719,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["done",{"_index":1307,"title":{},"body":{"license.html":{}}}],["dot",{"_index":296,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["down",{"_index":1508,"title":{},"body":{"license.html":{}}}],["download",{"_index":1454,"title":{},"body":{"license.html":{}}}],["drop",{"_index":206,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["duration",{"_index":1222,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":699,"title":{},"body":{"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{}}}],["dynamic_component_config",{"_index":716,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["dynamically",{"_index":483,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/UxDynamicComponentService.html":{}}}],["e.g",{"_index":299,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["each",{"_index":1265,"title":{},"body":{"license.html":{}}}],["easily",{"_index":1268,"title":{},"body":{"license.html":{}}}],["eclipse",{"_index":1534,"title":{},"body":{"license.html":{}}}],["economic",{"_index":1253,"title":{},"body":{"license.html":{}}}],["effective",{"_index":1252,"title":{},"body":{"license.html":{}}}],["el",{"_index":708,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["electronic",{"_index":1451,"title":{},"body":{"license.html":{}}}],["element",{"_index":713,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["elementref",{"_index":620,"title":{},"body":{"directives/TranslateMockDirective.html":{},"injectables/UxDynamicComponentService.html":{}}}],["elements",{"_index":835,"title":{},"body":{"dependencies.html":{}}}],["email",{"_index":542,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["emission",{"_index":116,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{}}}],["emit",{"_index":432,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["empty",{"_index":998,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["empty_api_queue",{"_index":997,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["emptyapiqueueaction",{"_index":260,"title":{"classes/EmptyApiQueueAction.html":{}},"body":{"classes/EmptyApiQueueAction.html":{}}}],["enabled",{"_index":211,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["enforceability",{"_index":1482,"title":{},"body":{"license.html":{}}}],["enforceable",{"_index":1487,"title":{},"body":{"license.html":{}}}],["english",{"_index":785,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["enumerations",{"_index":972,"title":{"miscellaneous/enumerations.html":{}},"body":{"miscellaneous/enumerations.html":{}}}],["envapphandler",{"_index":1074,"title":{},"body":{"miscellaneous/functions.html":{}}}],["envappjsonconfig",{"_index":1077,"title":{},"body":{"miscellaneous/functions.html":{}}}],["envconfig",{"_index":1097,"title":{},"body":{"miscellaneous/functions.html":{}}}],["environment",{"_index":1098,"title":{},"body":{"miscellaneous/functions.html":{}}}],["equal",{"_index":392,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["equals",{"_index":377,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["equals(obj",{"_index":389,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["err",{"_index":750,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["error",{"_index":235,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalStorageService.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/ResourceError.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"miscellaneous/functions.html":{}}}],["errorhandler",{"_index":328,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["errormanager",{"_index":1106,"title":{},"body":{"miscellaneous/functions.html":{}}}],["errormappinghandler",{"_index":767,"title":{},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["errors",{"_index":457,"title":{},"body":{"interfaces/LoadedResources.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"license.html":{}}}],["errorsubclass",{"_index":262,"title":{"classes/ErrorSubClass.html":{}},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["es",{"_index":948,"title":{},"body":{"dependencies.html":{}}}],["eslint",{"_index":824,"title":{},"body":{"dependencies.html":{}}}],["eslint/builder",{"_index":816,"title":{},"body":{"dependencies.html":{}}}],["eslint/eslint",{"_index":818,"title":{},"body":{"dependencies.html":{}}}],["eslint/parser",{"_index":831,"title":{},"body":{"dependencies.html":{}}}],["eslint/schematics",{"_index":821,"title":{},"body":{"dependencies.html":{}}}],["eslint/template",{"_index":822,"title":{},"body":{"dependencies.html":{}}}],["essential",{"_index":1209,"title":{},"body":{"license.html":{}}}],["establishing",{"_index":1511,"title":{},"body":{"license.html":{}}}],["eui",{"_index":204,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["eui/ecl",{"_index":968,"title":{},"body":{"dependencies.html":{}}}],["eui/styles",{"_index":966,"title":{},"body":{"dependencies.html":{}}}],["eui/tools",{"_index":969,"title":{},"body":{"dependencies.html":{}}}],["eui_config_token",{"_index":250,"title":{},"body":{"modules/CoreModule.html":{}}}],["euiappconfig",{"_index":347,"title":{},"body":{"injectables/I18nLoader.html":{},"miscellaneous/functions.html":{}}}],["euiapphandlersconfig",{"_index":1075,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euiappjsonconfig",{"_index":1078,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euiconfig",{"_index":1082,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euicorerootguardclass",{"_index":276,"title":{"classes/EuiCoreRootGuardClass.html":{}},"body":{"classes/EuiCoreRootGuardClass.html":{}}}],["euienvconfig",{"_index":1087,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euierror",{"_index":277,"title":{"classes/EuiError.html":{}},"body":{"classes/EuiError.html":{}}}],["euilazyservice",{"_index":402,"title":{},"body":{"injectables/I18nService.html":{}}}],["euilogservicefactory",{"_index":1017,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euilogservicefactory(injector",{"_index":1053,"title":{},"body":{"miscellaneous/functions.html":{}}}],["euipermissionservice",{"_index":278,"title":{"injectables/EuiPermissionService.html":{}},"body":{"injectables/EuiPermissionService.html":{},"injectables/UxDynamicMenuService.html":{}}}],["euiservice",{"_index":280,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{}}}],["euiservicestatus",{"_index":411,"title":{},"body":{"injectables/I18nService.html":{}}}],["euloginsessiontimeouthandlinginterceptor",{"_index":270,"title":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}}}],["eupl",{"_index":1120,"title":{},"body":{"license.html":{},"properties.html":{}}}],["european",{"_index":1115,"title":{},"body":{"license.html":{}}}],["even",{"_index":1403,"title":{},"body":{"license.html":{}}}],["event",{"_index":944,"title":{},"body":{"dependencies.html":{},"license.html":{}}}],["events",{"_index":551,"title":{},"body":{"classes/RouterMock.html":{}}}],["example",{"_index":1452,"title":{},"body":{"license.html":{}}}],["except",{"_index":1334,"title":{},"body":{"license.html":{}}}],["exception",{"_index":1278,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":1220,"title":{},"body":{"license.html":{}}}],["executable",{"_index":1153,"title":{},"body":{"license.html":{}}}],["execution",{"_index":113,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["exercise",{"_index":1250,"title":{},"body":{"license.html":{}}}],["exercised",{"_index":1237,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":1448,"title":{},"body":{"license.html":{}}}],["exhaustion",{"_index":1281,"title":{},"body":{"license.html":{}}}],["exist",{"_index":516,"title":{},"body":{"injectables/LogService.html":{}}}],["exports",{"_index":625,"title":{},"body":{"modules/TranslateMockModule.html":{}}}],["expressed",{"_index":1144,"title":{},"body":{"license.html":{}}}],["expressly",{"_index":1309,"title":{},"body":{"license.html":{}}}],["extend",{"_index":138,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["extends",{"_index":128,"title":{},"body":{"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"classes/OpenIdConnectServiceMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageServiceMock.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["extent",{"_index":1132,"title":{},"body":{"license.html":{}}}],["extract",{"_index":185,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["fact",{"_index":1431,"title":{},"body":{"license.html":{}}}],["failed",{"_index":355,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["fails",{"_index":102,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["failure",{"_index":1399,"title":{},"body":{"license.html":{}}}],["false",{"_index":354,"title":{},"body":{"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/LogService.html":{}}}],["far",{"_index":1245,"title":{},"body":{"license.html":{}}}],["feature",{"_index":210,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["fee",{"_index":1414,"title":{},"body":{"license.html":{}}}],["feedback.service.ts",{"_index":737,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["feedback/ux",{"_index":736,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["fetch",{"_index":437,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["field",{"_index":305,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["fields",{"_index":303,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["file",{"_index":4,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["filteruxlinkswithrights",{"_index":728,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["filteruxlinkswithrights(links",{"_index":732,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["finished",{"_index":1359,"title":{},"body":{"license.html":{}}}],["first",{"_index":293,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["firstname",{"_index":543,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["fitness",{"_index":1371,"title":{},"body":{"license.html":{}}}],["followed",{"_index":295,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["following",{"_index":1139,"title":{},"body":{"license.html":{}}}],["follows",{"_index":118,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["forage.service.ts",{"_index":462,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["forchild",{"_index":241,"title":{},"body":{"modules/CoreModule.html":{},"modules/LogModule.html":{}}}],["forchild(config",{"_index":492,"title":{},"body":{"modules/LogModule.html":{}}}],["forchild(modulename",{"_index":242,"title":{},"body":{"modules/CoreModule.html":{}}}],["form",{"_index":1173,"title":{},"body":{"license.html":{}}}],["formats",{"_index":1240,"title":{},"body":{"license.html":{}}}],["forroot",{"_index":245,"title":{},"body":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"modules/LogModule.html":{}}}],["forroot(config",{"_index":498,"title":{},"body":{"modules/LogModule.html":{}}}],["free",{"_index":1219,"title":{},"body":{"license.html":{}}}],["freely",{"_index":1269,"title":{},"body":{"license.html":{}}}],["freeze",{"_index":889,"title":{},"body":{"dependencies.html":{}}}],["fromevent(window",{"_index":196,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["full",{"_index":1470,"title":{},"body":{"license.html":{}}}],["fully",{"_index":412,"title":{},"body":{"injectables/I18nService.html":{}}}],["function",{"_index":157,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocaleService.html":{},"classes/StorageService.html":{},"injectables/StoreService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["functionalities",{"_index":1210,"title":{},"body":{"license.html":{}}}],["functions",{"_index":1011,"title":{"miscellaneous/functions.html":{}},"body":{"miscellaneous/functions.html":{}}}],["functions.ts",{"_index":1015,"title":{},"body":{"miscellaneous/functions.html":{}}}],["general",{"_index":1526,"title":{},"body":{"license.html":{}}}],["generally",{"_index":1178,"title":{},"body":{"license.html":{}}}],["generic",{"_index":132,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["get(content",{"_index":654,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["get(key",{"_index":146,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["getappconnectioninformation",{"_index":170,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["getbrowserlang",{"_index":641,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["getcorechildproviders",{"_index":1019,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getcorechildproviders(modulename",{"_index":1064,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getcoreproviders",{"_index":1022,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getcountries",{"_index":772,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["getcurrentlanguage",{"_index":451,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["getcurrentlocale",{"_index":486,"title":{},"body":{"injectables/LocaleService.html":{}}}],["getdependencyproviders",{"_index":1023,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getfailedresources",{"_index":342,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["getglobalconfig",{"_index":1024,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getglobalconfig(appconfig",{"_index":1067,"title":{},"body":{"miscellaneous/functions.html":{}}}],["gethttperrorhandlingconfig",{"_index":1026,"title":{},"body":{"miscellaneous/functions.html":{}}}],["gethttperrorhandlingconfig(appconfig",{"_index":1069,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getlangs",{"_index":642,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["getlogappendersconfig",{"_index":1027,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getlogappendersconfig(config",{"_index":1059,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getlogger",{"_index":508,"title":{},"body":{"injectables/LogService.html":{},"classes/LogServiceMock.html":{}}}],["getlogger(loggername",{"_index":514,"title":{},"body":{"injectables/LogService.html":{}}}],["getmenulinks",{"_index":729,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["getmoduleconfig",{"_index":1028,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getmoduleconfig(appconfig",{"_index":1070,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getonlangchange",{"_index":450,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["getpath",{"_index":378,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["getpath(lang",{"_index":398,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["getpreviouslocale",{"_index":485,"title":{},"body":{"injectables/LocaleService.html":{}}}],["getqueue",{"_index":65,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["getqueueitem",{"_index":66,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["getqueueitem(id",{"_index":96,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["getrootlogconfig",{"_index":1029,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getrootlogconfig(appconfig",{"_index":1071,"title":{},"body":{"miscellaneous/functions.html":{}}}],["gets",{"_index":357,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/LogService.html":{},"injectables/UxTimezoneService.html":{}}}],["getshowconnectionstatus",{"_index":1030,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getshowconnectionstatus(globalconfig",{"_index":1072,"title":{},"body":{"miscellaneous/functions.html":{}}}],["getstate",{"_index":284,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["getstate(key",{"_index":416,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["getstate(keyormapfn",{"_index":417,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["getstate(mapfn",{"_index":414,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["gettimezone",{"_index":773,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["gettimezone(tz",{"_index":780,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["gettimezones",{"_index":774,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["getting",{"_index":501,"title":{"license.html":{}},"body":{"injectables/LogService.html":{}}}],["gettranslation",{"_index":343,"title":{},"body":{"injectables/I18nLoader.html":{},"classes/TranslateServiceMock.html":{}}}],["gettranslation(lang",{"_index":356,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["getuserdetails",{"_index":535,"title":{},"body":{"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{}}}],["given",{"_index":125,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["giving",{"_index":1199,"title":{},"body":{"license.html":{}}}],["globalconfig",{"_index":407,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"miscellaneous/functions.html":{}}}],["globalerrorhandler",{"_index":325,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"injectables/GlobalErrorHandler.html":{}}}],["globalstate",{"_index":579,"title":{},"body":{"classes/StoreMock.html":{}}}],["gnu",{"_index":1525,"title":{},"body":{"license.html":{}}}],["going",{"_index":434,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["goodwill",{"_index":1397,"title":{},"body":{"license.html":{}}}],["governed",{"_index":1517,"title":{},"body":{"license.html":{}}}],["gpl",{"_index":1527,"title":{},"body":{"license.html":{}}}],["grant",{"_index":1284,"title":{},"body":{"license.html":{}}}],["granted",{"_index":1213,"title":{},"body":{"license.html":{}}}],["grants",{"_index":1215,"title":{},"body":{"license.html":{}}}],["groupid",{"_index":745,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["growl",{"_index":749,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["growlerror",{"_index":741,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["growlerror(err",{"_index":747,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["growlhttperrorcallbackfn",{"_index":1031,"title":{},"body":{"miscellaneous/functions.html":{}}}],["growlhttperrorcallbackfn(error",{"_index":1050,"title":{},"body":{"miscellaneous/functions.html":{}}}],["hammerjs",{"_index":951,"title":{},"body":{"dependencies.html":{}}}],["handleautosave",{"_index":585,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["handlebars",{"_index":953,"title":{},"body":{"dependencies.html":{}}}],["handleerror",{"_index":329,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":331,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler",{"_index":587,"title":{},"body":{"injectables/StoreService.html":{},"miscellaneous/functions.html":{}}}],["handler.interceptor.ts",{"_index":334,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{}}}],["handler.operator.ts",{"_index":1046,"title":{},"body":{"miscellaneous/functions.html":{}}}],["handler.ts",{"_index":327,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handling.interceptor.ts",{"_index":275,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}}}],["harmless",{"_index":1426,"title":{},"body":{"license.html":{}}}],["haserror",{"_index":458,"title":{},"body":{"interfaces/LoadedResources.html":{}}}],["he/she",{"_index":1298,"title":{},"body":{"license.html":{}}}],["header",{"_index":42,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["headers",{"_index":46,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["held",{"_index":1258,"title":{},"body":{"license.html":{}}}],["helper",{"_index":156,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"miscellaneous/functions.html":{}}}],["here",{"_index":1254,"title":{},"body":{"license.html":{}}}],["hereby",{"_index":1214,"title":{},"body":{"license.html":{}}}],["hereunder",{"_index":1343,"title":{},"body":{"license.html":{}}}],["him/her",{"_index":1345,"title":{},"body":{"license.html":{}}}],["his/her",{"_index":1326,"title":{},"body":{"license.html":{}}}],["hold",{"_index":1425,"title":{},"body":{"license.html":{}}}],["holder",{"_index":1136,"title":{},"body":{"license.html":{}}}],["host",{"_index":711,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["html",{"_index":861,"title":{},"body":{"dependencies.html":{}}}],["http",{"_index":45,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/I18nLoader.html":{}}}],["http://localhost:4200/login",{"_index":562,"title":{},"body":{"classes/RouterMock.html":{}}}],["httpclient",{"_index":74,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/I18nLoader.html":{}}}],["httperrorhandlerconfig",{"_index":336,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{},"miscellaneous/functions.html":{}}}],["httperrorhandlerinterceptor",{"_index":332,"title":{"interceptors/HttpErrorHandlerInterceptor.html":{}},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{}}}],["httperroroperator",{"_index":758,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["httperrorresponse",{"_index":1048,"title":{},"body":{"miscellaneous/functions.html":{}}}],["httphandler",{"_index":54,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["httprequest",{"_index":52,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["https://citnet.tech.ec.europa.eu/citnet/stash/projects/csdr/repos/root",{"_index":1538,"title":{},"body":{"properties.html":{}}}],["https://localforage.github.io/localforage",{"_index":467,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["human",{"_index":1171,"title":{},"body":{"license.html":{}}}],["i18n",{"_index":370,"title":{},"body":{"modules/I18nModule.html":{},"injectables/LocaleService.html":{},"miscellaneous/enumerations.html":{}}}],["i18n.onready('my_module').pipe(switchmap(()=>translate.get('eui.key",{"_index":431,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["i18nloader",{"_index":339,"title":{"injectables/I18nLoader.html":{}},"body":{"injectables/I18nLoader.html":{}}}],["i18nloaderconfig",{"_index":349,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["i18nmodule",{"_index":368,"title":{"modules/I18nModule.html":{}},"body":{"modules/I18nModule.html":{},"modules.html":{}}}],["i18nresourceimpl",{"_index":353,"title":{"classes/I18nResourceImpl.html":{}},"body":{"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ResourceError.html":{}}}],["i18nservice",{"_index":400,"title":{"injectables/I18nService.html":{}},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{}}}],["i18nservicemock",{"_index":443,"title":{"injectables/I18nServiceMock.html":{}},"body":{"injectables/I18nServiceMock.html":{}}}],["i18nstate",{"_index":442,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/UpdateI18nStateAction.html":{}}}],["icon",{"_index":1435,"title":{},"body":{"license.html":{}}}],["id",{"_index":86,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"injectables/EuiPermissionService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/UxErrorFeedbackService.html":{}}}],["identical",{"_index":1496,"title":{},"body":{"license.html":{}}}],["immediately",{"_index":1141,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":162,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{}}}],["implements",{"_index":6,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"directives/TranslateMockDirective.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{}}}],["import",{"_index":495,"title":{},"body":{"modules/LogModule.html":{},"dependencies.html":{}}}],["impose",{"_index":1312,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":1286,"title":{},"body":{"license.html":{}}}],["improved",{"_index":1357,"title":{},"body":{"license.html":{}}}],["include",{"_index":1297,"title":{},"body":{"license.html":{}}}],["including",{"_index":1228,"title":{},"body":{"license.html":{}}}],["incurred",{"_index":1427,"title":{},"body":{"license.html":{}}}],["indemnify",{"_index":1423,"title":{},"body":{"license.html":{}}}],["indemnity",{"_index":1416,"title":{},"body":{"license.html":{}}}],["index",{"_index":8,"title":{"index.html":{}},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["indicate",{"_index":1329,"title":{},"body":{"license.html":{}}}],["indicates",{"_index":390,"title":{},"body":{"classes/I18nResourceImpl.html":{},"license.html":{}}}],["indirect",{"_index":1392,"title":{},"body":{"license.html":{}}}],["infinite",{"_index":897,"title":{},"body":{"dependencies.html":{}}}],["info",{"_index":3,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{}}}],["information",{"_index":1449,"title":{},"body":{"license.html":{}}}],["informed",{"_index":221,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["infringement",{"_index":1376,"title":{},"body":{"license.html":{}}}],["inherent",{"_index":1363,"title":{},"body":{"license.html":{}}}],["init",{"_index":285,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["init(i18nstate",{"_index":448,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["init(langstate",{"_index":419,"title":{},"body":{"injectables/I18nService.html":{}}}],["init(rights",{"_index":320,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["init(state",{"_index":480,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["init(userstate",{"_index":691,"title":{},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["init(version",{"_index":599,"title":{},"body":{"injectables/StoreService.html":{}}}],["init_store",{"_index":984,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["initialize",{"_index":322,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["initstoreaction",{"_index":452,"title":{"classes/InitStoreAction.html":{}},"body":{"classes/InitStoreAction.html":{},"miscellaneous/typealiases.html":{}}}],["injectable",{"_index":59,"title":{"injectables/ApiQueueService.html":{},"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"injectables/OpenIdConnectService.html":{},"injectables/SessionStorageService.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"injectables/UxTimezoneService.html":{}},"body":{}}],["injectables",{"_index":61,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"injectables/OpenIdConnectService.html":{},"injectables/SessionStorageService.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"injectables/UxTimezoneService.html":{},"index.html":{}}}],["injected",{"_index":712,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["injector",{"_index":337,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/UxDynamicComponentService.html":{},"miscellaneous/functions.html":{}}}],["injector.guard.ts",{"_index":769,"title":{},"body":{"classes/UxRootInjectorGuard.html":{}}}],["inputs",{"_index":617,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["inside",{"_index":88,"title":{},"body":{"injectables/ApiQueueService.html":{},"license.html":{}}}],["instance",{"_index":366,"title":{},"body":{"injectables/I18nLoader.html":{},"modules/LogModule.html":{},"miscellaneous/functions.html":{}}}],["instanceid",{"_index":752,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["instant",{"_index":643,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["instant(key",{"_index":656,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["intact",{"_index":1290,"title":{},"body":{"license.html":{}}}],["intellectual",{"_index":1377,"title":{},"body":{"license.html":{}}}],["intended",{"_index":1275,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":48,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/StoreService.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["intercept(req",{"_index":51,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["intercept(request",{"_index":257,"title":{},"body":{"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{}}}],["interceptor",{"_index":30,"title":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["interceptors",{"_index":32,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["interface",{"_index":454,"title":{"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"interfaces/ResourceError.html":{},"interfaces/TimeZone.html":{}},"body":{}}],["interfaces",{"_index":456,"title":{},"body":{"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"interfaces/ResourceError.html":{},"interfaces/TimeZone.html":{},"index.html":{}}}],["interpretation",{"_index":1503,"title":{},"body":{"license.html":{}}}],["interpreted",{"_index":1181,"title":{},"body":{"license.html":{}}}],["intl",{"_index":912,"title":{},"body":{"dependencies.html":{}}}],["invalid",{"_index":1478,"title":{},"body":{"license.html":{}}}],["invented",{"_index":1244,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":1445,"title":{},"body":{"license.html":{}}}],["irrevocably",{"_index":1447,"title":{},"body":{"license.html":{}}}],["isdeepmerge",{"_index":1080,"title":{},"body":{"miscellaneous/functions.html":{}}}],["iserror",{"_index":548,"title":{},"body":{"interfaces/ResourceError.html":{}}}],["isfeatureenabled",{"_index":212,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["isglobal",{"_index":760,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["isloaded",{"_index":632,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["isloadedsubject",{"_index":633,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["islogconfigdefined",{"_index":1032,"title":{},"body":{"miscellaneous/functions.html":{}}}],["islogconfigdefined(config",{"_index":1060,"title":{},"body":{"miscellaneous/functions.html":{}}}],["iso",{"_index":777,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["iso2country",{"_index":775,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["iso2country(iso",{"_index":782,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["istanbul",{"_index":864,"title":{},"body":{"dependencies.html":{}}}],["item",{"_index":79,"title":{},"body":{"injectables/ApiQueueService.html":{},"miscellaneous/enumerations.html":{}}}],["items",{"_index":95,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["itself",{"_index":504,"title":{},"body":{"injectables/LogService.html":{}}}],["jasmine",{"_index":850,"title":{},"body":{"dependencies.html":{}}}],["javascript",{"_index":465,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["js",{"_index":942,"title":{},"body":{"dependencies.html":{}}}],["jsdoc",{"_index":828,"title":{},"body":{"dependencies.html":{}}}],["jsrsasign",{"_index":939,"title":{},"body":{"dependencies.html":{}}}],["jurisdiction",{"_index":1500,"title":{},"body":{"license.html":{}}}],["justice",{"_index":1505,"title":{},"body":{"license.html":{}}}],["k",{"_index":317,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["karma",{"_index":853,"title":{},"body":{"dependencies.html":{}}}],["keep",{"_index":1289,"title":{},"body":{"license.html":{}}}],["key",{"_index":148,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/I18nService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"injectables/StoreService.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["keyormapfn",{"_index":418,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["kind",{"_index":1368,"title":{},"body":{"license.html":{}}}],["known",{"_index":1242,"title":{},"body":{"license.html":{}}}],["laid",{"_index":1507,"title":{},"body":{"license.html":{}}}],["lang",{"_index":34,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"classes/TranslateServiceMock.html":{}}}],["lang_param_key",{"_index":43,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["langs",{"_index":653,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["langstate",{"_index":420,"title":{},"body":{"injectables/I18nService.html":{}}}],["language",{"_index":39,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{}}}],["languages",{"_index":634,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["last",{"_index":304,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["lastname",{"_index":544,"title":{},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["later",{"_index":1243,"title":{},"body":{"license.html":{}}}],["launcher",{"_index":856,"title":{},"body":{"dependencies.html":{}}}],["law",{"_index":1166,"title":{},"body":{"license.html":{}}}],["laws",{"_index":1408,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":494,"title":{},"body":{"modules/LogModule.html":{}}}],["lazyload",{"_index":403,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["lazyload(config",{"_index":421,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["lazyloadinit",{"_index":404,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["lazyloadinit(moduleconfig",{"_index":422,"title":{},"body":{"injectables/I18nService.html":{}}}],["legal",{"_index":1185,"title":{},"body":{"license.html":{}}}],["lend",{"_index":1233,"title":{},"body":{"license.html":{}}}],["lending",{"_index":1200,"title":{},"body":{"license.html":{}}}],["level",{"_index":510,"title":{},"body":{"injectables/LogService.html":{}}}],["liability",{"_index":1382,"title":{},"body":{"license.html":{}}}],["liable",{"_index":1390,"title":{},"body":{"license.html":{}}}],["library",{"_index":466,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["licence",{"_index":1117,"title":{},"body":{"license.html":{}}}],["licences",{"_index":1322,"title":{},"body":{"license.html":{}}}],["license",{"_index":1114,"title":{"license.html":{}},"body":{"license.html":{},"properties.html":{}}}],["licensed",{"_index":1142,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":1156,"title":{},"body":{"license.html":{}}}],["licensee's",{"_index":1324,"title":{},"body":{"license.html":{}}}],["licensor",{"_index":1138,"title":{},"body":{"license.html":{}}}],["life",{"_index":233,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["lifespan",{"_index":216,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["limitation",{"_index":1279,"title":{},"body":{"license.html":{}}}],["limitations",{"_index":1273,"title":{},"body":{"license.html":{}}}],["line",{"_index":1206,"title":{},"body":{"license.html":{}}}],["linguistic",{"_index":1490,"title":{},"body":{"license.html":{}}}],["link",{"_index":734,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["links",{"_index":733,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["list",{"_index":776,"title":{},"body":{"injectables/UxTimezoneService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["listed",{"_index":1256,"title":{},"body":{"license.html":{}}}],["literal",{"_index":26,"title":{},"body":{"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/InitStoreAction.html":{}}}],["litigation",{"_index":1501,"title":{},"body":{"license.html":{}}}],["load",{"_index":364,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/LocaleService.html":{},"miscellaneous/functions.html":{}}}],["loaded",{"_index":413,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"modules/LogModule.html":{},"miscellaneous/enumerations.html":{}}}],["loadedresources",{"_index":455,"title":{"interfaces/LoadedResources.html":{}},"body":{"interfaces/LoadedResources.html":{}}}],["loadedresourceserror",{"_index":459,"title":{"interfaces/LoadedResourcesError.html":{}},"body":{"interfaces/LoadedResourcesError.html":{}}}],["loader",{"_index":351,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"dependencies.html":{}}}],["loadeuidynamicenvironmentconfig",{"_index":1033,"title":{},"body":{"miscellaneous/functions.html":{}}}],["loadeuidynamicenvironmentconfig(url",{"_index":1083,"title":{},"body":{"miscellaneous/functions.html":{}}}],["loadresources",{"_index":344,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["loadresources(resources",{"_index":360,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["loads",{"_index":361,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["local",{"_index":470,"title":{},"body":{"injectables/LocalStorageService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["locale",{"_index":484,"title":{},"body":{"injectables/LocaleService.html":{},"miscellaneous/enumerations.html":{}}}],["locale_id",{"_index":477,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["localemapper",{"_index":478,"title":{},"body":{"injectables/LocaleService.html":{},"miscellaneous/typealiases.html":{}}}],["localeservice",{"_index":471,"title":{"injectables/LocaleService.html":{}},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["localeservicemock",{"_index":487,"title":{"injectables/LocaleServiceMock.html":{}},"body":{"injectables/LocaleServiceMock.html":{}}}],["localestate",{"_index":481,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"classes/UpdateLocaleStateAction.html":{}}}],["localforage",{"_index":463,"title":{},"body":{"injectables/LocalForageService.html":{},"dependencies.html":{}}}],["localforageservice",{"_index":460,"title":{"injectables/LocalForageService.html":{}},"body":{"injectables/LocalForageService.html":{}}}],["localstorage",{"_index":469,"title":{},"body":{"injectables/LocalStorageService.html":{}}}],["localstorageservice",{"_index":468,"title":{"injectables/LocalStorageService.html":{}},"body":{"injectables/LocalStorageService.html":{}}}],["localstoragesync",{"_index":1035,"title":{},"body":{"miscellaneous/functions.html":{}}}],["localstoragesync(reducer",{"_index":1101,"title":{},"body":{"miscellaneous/functions.html":{}}}],["location",{"_index":1456,"title":{},"body":{"license.html":{}}}],["lodash",{"_index":947,"title":{},"body":{"dependencies.html":{}}}],["log",{"_index":288,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"miscellaneous/functions.html":{}}}],["logappender",{"_index":513,"title":{},"body":{"injectables/LogService.html":{},"miscellaneous/functions.html":{}}}],["logconfig",{"_index":493,"title":{},"body":{"modules/LogModule.html":{},"miscellaneous/functions.html":{}}}],["logger",{"_index":507,"title":{},"body":{"injectables/LogService.html":{}}}],["loggermock",{"_index":522,"title":{},"body":{"classes/LogServiceMock.html":{}}}],["loggername",{"_index":518,"title":{},"body":{"injectables/LogService.html":{}}}],["loggers",{"_index":503,"title":{},"body":{"injectables/LogService.html":{}}}],["loghttperrorcallbackfn",{"_index":1037,"title":{},"body":{"miscellaneous/functions.html":{}}}],["loghttperrorcallbackfn(error",{"_index":1051,"title":{},"body":{"miscellaneous/functions.html":{}}}],["login",{"_index":272,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}}}],["loglevel",{"_index":511,"title":{},"body":{"injectables/LogService.html":{}}}],["logmodule",{"_index":490,"title":{"modules/LogModule.html":{}},"body":{"modules/LogModule.html":{},"modules.html":{}}}],["logservice",{"_index":75,"title":{"injectables/LogService.html":{}},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"injectables/StoreService.html":{},"miscellaneous/functions.html":{}}}],["logservicefactory",{"_index":1038,"title":{},"body":{"miscellaneous/functions.html":{}}}],["logservicefactory(config",{"_index":1062,"title":{},"body":{"miscellaneous/functions.html":{}}}],["logservicemock",{"_index":520,"title":{"classes/LogServiceMock.html":{}},"body":{"classes/LogServiceMock.html":{}}}],["long",{"_index":1271,"title":{},"body":{"license.html":{}}}],["loss",{"_index":1396,"title":{},"body":{"license.html":{}}}],["machine",{"_index":1262,"title":{},"body":{"license.html":{}}}],["main.ts",{"_index":1096,"title":{},"body":{"miscellaneous/functions.html":{}}}],["make",{"_index":1226,"title":{},"body":{"license.html":{}}}],["makes",{"_index":1193,"title":{},"body":{"license.html":{}}}],["making",{"_index":1205,"title":{},"body":{"license.html":{}}}],["malfunction",{"_index":1400,"title":{},"body":{"license.html":{}}}],["map((action",{"_index":182,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["map((connected",{"_index":198,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["mapfn",{"_index":415,"title":{},"body":{"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["marbles",{"_index":870,"title":{},"body":{"dependencies.html":{}}}],["marked",{"_index":933,"title":{},"body":{"dependencies.html":{}}}],["marks",{"_index":1333,"title":{},"body":{"license.html":{}}}],["mask",{"_index":903,"title":{},"body":{"dependencies.html":{}}}],["matches",{"_index":85,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["matching",{"_index":24,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"properties.html":{},"miscellaneous/typealiases.html":{}}}],["material",{"_index":1393,"title":{},"body":{"license.html":{}}}],["matter",{"_index":112,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["mean",{"_index":1145,"title":{},"body":{"license.html":{}}}],["meaning",{"_index":1148,"title":{},"body":{"license.html":{}}}],["means",{"_index":1450,"title":{},"body":{"license.html":{}}}],["meant",{"_index":1180,"title":{},"body":{"license.html":{}}}],["media",{"_index":1238,"title":{},"body":{"license.html":{}}}],["mentioned",{"_index":1168,"title":{},"body":{"license.html":{}}}],["menu.service.ts",{"_index":726,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["menu/ux",{"_index":725,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["menulinks",{"_index":727,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["merchantability",{"_index":1370,"title":{},"body":{"license.html":{}}}],["merge",{"_index":1079,"title":{},"body":{"miscellaneous/functions.html":{}}}],["merge(fromevent(window",{"_index":194,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["mergeapphandlerconfigtoappconfig",{"_index":1039,"title":{},"body":{"miscellaneous/functions.html":{}}}],["mergeapphandlerconfigtoappconfig(euiappconfig",{"_index":1073,"title":{},"body":{"miscellaneous/functions.html":{}}}],["mergeappjsonconfigtoappconfig",{"_index":1040,"title":{},"body":{"miscellaneous/functions.html":{}}}],["mergeappjsonconfigtoappconfig(euiappconfig",{"_index":1076,"title":{},"body":{"miscellaneous/functions.html":{}}}],["mergemap((route",{"_index":184,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["message",{"_index":230,"title":{},"body":{"injectables/CoreAppEffects.html":{},"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["meta",{"_index":1102,"title":{},"body":{"miscellaneous/functions.html":{}}}],["metadata",{"_index":616,"title":{},"body":{"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{}}}],["method",{"_index":371,"title":{},"body":{"modules/I18nModule.html":{},"modules/LogModule.html":{}}}],["methods",{"_index":47,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"injectables/UxTimezoneService.html":{}}}],["miscellaneous",{"_index":971,"title":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/typealiases.html":{}}}],["misconduct",{"_index":1385,"title":{},"body":{"license.html":{}}}],["mock",{"_index":921,"title":{},"body":{"dependencies.html":{}}}],["model.interceptor.ts",{"_index":765,"title":{},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["modification",{"_index":1161,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":1158,"title":{},"body":{"license.html":{}}}],["modified",{"_index":1303,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":1190,"title":{},"body":{"license.html":{}}}],["modify",{"_index":1177,"title":{},"body":{"license.html":{}}}],["module",{"_index":186,"title":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"modules/LogModule.html":{},"modules/TranslateMockModule.html":{}},"body":{"injectables/CoreAppEffects.html":{},"modules/I18nModule.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"modules/LogModule.html":{},"miscellaneous/enumerations.html":{}}}],["moduleconfig",{"_index":423,"title":{},"body":{"injectables/I18nService.html":{},"miscellaneous/functions.html":{}}}],["moduleloadevent",{"_index":523,"title":{"interfaces/ModuleLoadEvent.html":{}},"body":{"interfaces/ModuleLoadEvent.html":{}}}],["modulename",{"_index":243,"title":{},"body":{"modules/CoreModule.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"miscellaneous/functions.html":{}}}],["modules",{"_index":237,"title":{"modules.html":{}},"body":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"modules/LogModule.html":{},"modules/TranslateMockModule.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"modules.html":{}}}],["modulewithproviders",{"_index":244,"title":{},"body":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"modules/LogModule.html":{}}}],["moment",{"_index":812,"title":{},"body":{"dependencies.html":{}}}],["moral",{"_index":1247,"title":{},"body":{"license.html":{}}}],["more",{"_index":246,"title":{},"body":{"modules/CoreModule.html":{},"injectables/EuiPermissionService.html":{}}}],["msg",{"_index":267,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["multiple",{"_index":311,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["name",{"_index":18,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["names",{"_index":1332,"title":{},"body":{"license.html":{}}}],["natural",{"_index":1184,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":555,"title":{},"body":{"classes/RouterMock.html":{}}}],["navigate(url",{"_index":563,"title":{},"body":{"classes/RouterMock.html":{}}}],["navigatebyurl",{"_index":556,"title":{},"body":{"classes/RouterMock.html":{}}}],["navigatebyurl(url",{"_index":565,"title":{},"body":{"classes/RouterMock.html":{}}}],["navigationend(0",{"_index":561,"title":{},"body":{"classes/RouterMock.html":{}}}],["ne",{"_index":552,"title":{},"body":{"classes/RouterMock.html":{}}}],["necessary",{"_index":1259,"title":{},"body":{"license.html":{}}}],["needs",{"_index":220,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/functions.html":{}}}],["new",{"_index":192,"title":{},"body":{"injectables/CoreAppEffects.html":{},"classes/RouterMock.html":{},"classes/TranslateServiceMock.html":{},"injectables/UxErrorFeedbackService.html":{},"license.html":{}}}],["next",{"_index":53,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["ng",{"_index":806,"title":{},"body":{"dependencies.html":{}}}],["ngondestroy",{"_index":474,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["ngrx",{"_index":591,"title":{},"body":{"injectables/StoreService.html":{},"dependencies.html":{}}}],["ngrx/component",{"_index":888,"title":{},"body":{"dependencies.html":{}}}],["ngrx/effects",{"_index":881,"title":{},"body":{"dependencies.html":{}}}],["ngrx/entity",{"_index":887,"title":{},"body":{"dependencies.html":{}}}],["ngrx/router",{"_index":883,"title":{},"body":{"dependencies.html":{}}}],["ngrx/schematics",{"_index":884,"title":{},"body":{"dependencies.html":{}}}],["ngrx/store",{"_index":885,"title":{},"body":{"dependencies.html":{}}}],["ngx",{"_index":429,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"dependencies.html":{}}}],["node",{"_index":875,"title":{},"body":{"dependencies.html":{}}}],["non",{"_index":439,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"modules/LogModule.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["nothing",{"_index":1274,"title":{},"body":{"license.html":{}}}],["notice",{"_index":1140,"title":{},"body":{"license.html":{}}}],["notices",{"_index":1293,"title":{},"body":{"license.html":{}}}],["notif",{"_index":1002,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["now",{"_index":1241,"title":{},"body":{"license.html":{}}}],["null",{"_index":1058,"title":{},"body":{"miscellaneous/functions.html":{}}}],["number",{"_index":529,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["numerous",{"_index":1358,"title":{},"body":{"license.html":{}}}],["obj",{"_index":393,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["object",{"_index":93,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/AsyncStorageService.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResources.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"miscellaneous/functions.html":{}}}],["obligations",{"_index":1283,"title":{},"body":{"license.html":{}}}],["observable",{"_index":58,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/EuiPermissionService.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["observable((observer",{"_index":558,"title":{},"body":{"classes/RouterMock.html":{}}}],["observer",{"_index":915,"title":{},"body":{"dependencies.html":{}}}],["observer.complete",{"_index":560,"title":{},"body":{"classes/RouterMock.html":{}}}],["observer.next(this.ne",{"_index":559,"title":{},"body":{"classes/RouterMock.html":{}}}],["offer",{"_index":1311,"title":{},"body":{"license.html":{}}}],["offering",{"_index":1453,"title":{},"body":{"license.html":{}}}],["office",{"_index":1519,"title":{},"body":{"license.html":{}}}],["offline').pipe(mapto(false))).pipe",{"_index":197,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["oftype(coreappactiontypes.activated_route",{"_index":181,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["oftype(coreappactiontypes.update_app_connection",{"_index":200,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["oidc",{"_index":936,"title":{},"body":{"dependencies.html":{}}}],["once",{"_index":433,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["ondefaultlangchange",{"_index":635,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["ondefaultlangchangesubject",{"_index":636,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["one",{"_index":150,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/I18nResourceImpl.html":{},"injectables/LocalForageService.html":{}}}],["onlangchange",{"_index":446,"title":{},"body":{"injectables/I18nServiceMock.html":{},"classes/TranslateServiceMock.html":{}}}],["onlangchangesubject",{"_index":637,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["online').pipe(mapto(true",{"_index":195,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["onready",{"_index":405,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["onready(modulename",{"_index":424,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["ontranslationchange",{"_index":638,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["ontranslationchangesubject",{"_index":639,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["open",{"_index":1528,"title":{},"body":{"license.html":{}}}],["openidconnectinterceptor",{"_index":524,"title":{"interceptors/OpenIdConnectInterceptor.html":{}},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["openidconnectservice",{"_index":533,"title":{"injectables/OpenIdConnectService.html":{}},"body":{"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{}}}],["openidconnectservicemock",{"_index":536,"title":{"classes/OpenIdConnectServiceMock.html":{}},"body":{"classes/OpenIdConnectServiceMock.html":{}}}],["openidconnectuserdetails",{"_index":538,"title":{"interfaces/OpenIdConnectUserDetails.html":{}},"body":{"interfaces/OpenIdConnectUserDetails.html":{}}}],["operatorfunction",{"_index":1107,"title":{},"body":{"miscellaneous/functions.html":{}}}],["optional",{"_index":19,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["order",{"_index":108,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"license.html":{}}}],["origin",{"_index":1338,"title":{},"body":{"license.html":{}}}],["original",{"_index":1137,"title":{},"body":{"license.html":{}}}],["osl",{"_index":1529,"title":{},"body":{"license.html":{}}}],["others",{"_index":306,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["otherwise",{"_index":397,"title":{},"body":{"classes/I18nResourceImpl.html":{},"license.html":{}}}],["out",{"_index":1395,"title":{},"body":{"license.html":{}}}],["overview",{"_index":1108,"title":{"index.html":{}},"body":{"index.html":{}}}],["overwrite",{"_index":87,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["owned",{"_index":1344,"title":{},"body":{"license.html":{}}}],["owners",{"_index":1280,"title":{},"body":{"license.html":{}}}],["package",{"_index":786,"title":{"dependencies.html":{},"properties.html":{}},"body":{}}],["packages/.../app.actions.ts",{"_index":975,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../eui",{"_index":1020,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../http",{"_index":1013,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../i18n.actions.ts",{"_index":977,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../locale.actions.ts",{"_index":979,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../locale.service.ts",{"_index":1546,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["packages/.../log.ts",{"_index":1018,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../meta.reducers.ts",{"_index":1036,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../notifications.actions.ts",{"_index":981,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../store.service.ts",{"_index":973,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["packages/.../tokens.ts",{"_index":1025,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../user.actions.ts",{"_index":983,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/.../ux",{"_index":1045,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/eui",{"_index":238,"title":{},"body":{"modules/CoreModule.html":{},"classes/EuiCoreRootGuardClass.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/add",{"_index":33,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/cache",{"_index":166,"title":{},"body":{"interceptors/CachePreventionInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/cors",{"_index":255,"title":{},"body":{"interceptors/CorsSecurityInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/csrf",{"_index":259,"title":{},"body":{"interceptors/CsrfPreventionInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/eu",{"_index":271,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/openid/openid",{"_index":525,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{}}}],["packages/eui/packages/core/src/lib/interceptors/ux",{"_index":764,"title":{},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["packages/eui/packages/core/src/lib/mocks/router.mock.ts",{"_index":550,"title":{},"body":{"classes/RouterMock.html":{}}}],["packages/eui/packages/core/src/lib/mocks/store.mock.ts",{"_index":573,"title":{},"body":{"classes/StoreMock.html":{}}}],["packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts",{"_index":614,"title":{},"body":{"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/app/eui",{"_index":1063,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/app/factories/log.ts",{"_index":1052,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/config/tokens.ts",{"_index":1066,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/errors/eui.error.ts",{"_index":263,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["packages/eui/packages/core/src/lib/services/errors/global",{"_index":326,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["packages/eui/packages/core/src/lib/services/errors/http",{"_index":333,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{},"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts",{"_index":340,"title":{},"body":{"injectables/I18nLoader.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ResourceError.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.module.ts",{"_index":369,"title":{},"body":{"modules/I18nModule.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.resource.ts",{"_index":375,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.service.mock.ts",{"_index":444,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/i18n/i18n.service.ts",{"_index":401,"title":{},"body":{"injectables/I18nService.html":{},"interfaces/ModuleLoadEvent.html":{}}}],["packages/eui/packages/core/src/lib/services/locale/locale.service.mock.ts",{"_index":488,"title":{},"body":{"injectables/LocaleServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/locale/locale.service.ts",{"_index":472,"title":{},"body":{"injectables/LocaleService.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/log/log.module.ts",{"_index":491,"title":{},"body":{"modules/LogModule.html":{}}}],["packages/eui/packages/core/src/lib/services/log/log.service.mock.ts",{"_index":521,"title":{},"body":{"classes/LogServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/log/log.service.ts",{"_index":499,"title":{},"body":{"injectables/LogService.html":{}}}],["packages/eui/packages/core/src/lib/services/permission/permission.service.ts",{"_index":279,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["packages/eui/packages/core/src/lib/services/queue/api",{"_index":62,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/async",{"_index":130,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/local",{"_index":461,"title":{},"body":{"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/session",{"_index":567,"title":{},"body":{"injectables/SessionStorageService.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/storage.service.mock.ts",{"_index":571,"title":{},"body":{"classes/StorageServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/storage/storage.service.ts",{"_index":569,"title":{},"body":{"classes/StorageService.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts",{"_index":5,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/i18n.actions.ts",{"_index":667,"title":{},"body":{"classes/UpdateI18nStateAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/locale.actions.ts",{"_index":670,"title":{},"body":{"classes/UpdateLocaleStateAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/notifications.actions.ts",{"_index":673,"title":{},"body":{"classes/UpdateNotificationsListAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts",{"_index":676,"title":{},"body":{"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/typealiases.html":{}}}],["packages/eui/packages/core/src/lib/services/store/effects/app.effects.ts",{"_index":169,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts",{"_index":1100,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/eui/packages/core/src/lib/services/store/store.service.mock.ts",{"_index":606,"title":{},"body":{"injectables/StoreServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/store/store.service.ts",{"_index":582,"title":{},"body":{"injectables/StoreService.html":{},"miscellaneous/enumerations.html":{}}}],["packages/eui/packages/core/src/lib/services/user/user.service.mock.ts",{"_index":697,"title":{},"body":{"injectables/UserServiceMock.html":{}}}],["packages/eui/packages/core/src/lib/services/user/user.service.ts",{"_index":690,"title":{},"body":{"injectables/UserService.html":{}}}],["packages/eui/packages/core/src/lib/services/ux",{"_index":608,"title":{},"body":{"interfaces/TimeZone.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["packagr",{"_index":807,"title":{},"body":{"dependencies.html":{}}}],["param.interceptor.ts",{"_index":35,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{}}}],["parameter",{"_index":40,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"classes/I18nResourceImpl.html":{},"injectables/LogService.html":{}}}],["parameters",{"_index":16,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["parser",{"_index":823,"title":{},"body":{"dependencies.html":{}}}],["part",{"_index":308,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["particular",{"_index":1372,"title":{},"body":{"license.html":{}}}],["parties",{"_index":1477,"title":{},"body":{"license.html":{}}}],["pass",{"_index":251,"title":{},"body":{"modules/CoreModule.html":{}}}],["passed",{"_index":715,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["patent",{"_index":1291,"title":{},"body":{"license.html":{}}}],["patents",{"_index":1257,"title":{},"body":{"license.html":{}}}],["path",{"_index":399,"title":{},"body":{"classes/I18nResourceImpl.html":{},"miscellaneous/functions.html":{}}}],["payload",{"_index":11,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{}}}],["people",{"_index":1175,"title":{},"body":{"license.html":{}}}],["perform",{"_index":1230,"title":{},"body":{"license.html":{}}}],["permission",{"_index":292,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["permits",{"_index":1246,"title":{},"body":{"license.html":{}}}],["persist",{"_index":515,"title":{},"body":{"injectables/LogService.html":{}}}],["person",{"_index":1186,"title":{},"body":{"license.html":{}}}],["persons",{"_index":1389,"title":{},"body":{"license.html":{}}}],["pikaday",{"_index":955,"title":{},"body":{"dependencies.html":{}}}],["pipe",{"_index":425,"title":{"pipes/TranslateMockPipe.html":{}},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"index.html":{}}}],["pipes",{"_index":626,"title":{},"body":{"pipes/TranslateMockPipe.html":{}}}],["placed",{"_index":123,"title":{},"body":{"injectables/ApiQueueService.html":{},"license.html":{}}}],["plugin",{"_index":819,"title":{},"body":{"dependencies.html":{}}}],["polyfill",{"_index":916,"title":{},"body":{"dependencies.html":{}}}],["portal",{"_index":710,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["portalhost",{"_index":721,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["portalhostref",{"_index":722,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["possibility",{"_index":1405,"title":{},"body":{"license.html":{}}}],["possible",{"_index":1085,"title":{},"body":{"miscellaneous/functions.html":{}}}],["power",{"_index":1346,"title":{},"body":{"license.html":{}}}],["pre",{"_index":386,"title":{},"body":{"classes/I18nResourceImpl.html":{},"miscellaneous/functions.html":{}}}],["prefer",{"_index":825,"title":{},"body":{"dependencies.html":{}}}],["preferences",{"_index":1007,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["prefix",{"_index":383,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["preinitapp",{"_index":1041,"title":{},"body":{"miscellaneous/functions.html":{}}}],["preinitapp(envconfig",{"_index":1086,"title":{},"body":{"miscellaneous/functions.html":{}}}],["prejudice",{"_index":1472,"title":{},"body":{"license.html":{}}}],["prepareeuiappconfigtoken",{"_index":1042,"title":{},"body":{"miscellaneous/functions.html":{}}}],["prepareeuiappconfigtoken(euiconfig",{"_index":1081,"title":{},"body":{"miscellaneous/functions.html":{}}}],["present",{"_index":594,"title":{},"body":{"injectables/StoreService.html":{}}}],["prettier",{"_index":961,"title":{},"body":{"dependencies.html":{}}}],["prevail",{"_index":1327,"title":{},"body":{"license.html":{}}}],["prevention.interceptor.ts",{"_index":167,"title":{},"body":{"interceptors/CachePreventionInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{}}}],["previouslocale",{"_index":475,"title":{},"body":{"injectables/LocaleService.html":{}}}],["primary",{"_index":1515,"title":{},"body":{"license.html":{}}}],["prismjs",{"_index":934,"title":{},"body":{"dependencies.html":{}}}],["process",{"_index":98,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processallqueueitems",{"_index":67,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processallqueueitems(continueonerror",{"_index":97,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["processallqueueitemssequential",{"_index":68,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processallqueueitemssequential(ascending",{"_index":107,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processed",{"_index":388,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["processor",{"_index":387,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["processqueueitem",{"_index":69,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["processqueueitem(id",{"_index":121,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["product",{"_index":1407,"title":{},"body":{"license.html":{}}}],["program",{"_index":1183,"title":{},"body":{"license.html":{}}}],["progress",{"_index":1355,"title":{},"body":{"license.html":{}}}],["prohibited",{"_index":1131,"title":{},"body":{"license.html":{}}}],["prominent",{"_index":1301,"title":{},"body":{"license.html":{}}}],["promise",{"_index":410,"title":{},"body":{"injectables/I18nService.html":{},"miscellaneous/functions.html":{}}}],["properties",{"_index":9,"title":{"properties.html":{}},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"injectables/CoreAppEffects.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StoreMock.html":{},"interfaces/TimeZone.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"properties.html":{}}}],["property",{"_index":1378,"title":{},"body":{"license.html":{}}}],["protection",{"_index":1330,"title":{},"body":{"license.html":{}}}],["provide",{"_index":374,"title":{},"body":{"modules/I18nModule.html":{},"modules/LogModule.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["provided",{"_index":440,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"license.html":{}}}],["provider",{"_index":1065,"title":{},"body":{"miscellaneous/functions.html":{}}}],["providers",{"_index":253,"title":{},"body":{"modules/CoreModule.html":{}}}],["provides",{"_index":1260,"title":{},"body":{"license.html":{}}}],["providing",{"_index":247,"title":{},"body":{"modules/CoreModule.html":{},"injectables/EuiPermissionService.html":{},"license.html":{}}}],["provision",{"_index":1328,"title":{},"body":{"license.html":{}}}],["provisions",{"_index":1433,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":590,"title":{},"body":{"injectables/StoreService.html":{}}}],["public",{"_index":10,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UxDynamicComponentService.html":{},"license.html":{}}}],["publicly",{"_index":1231,"title":{},"body":{"license.html":{}}}],["publish",{"_index":1489,"title":{},"body":{"license.html":{}}}],["published",{"_index":1493,"title":{},"body":{"license.html":{}}}],["publisherror",{"_index":742,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["publisherror(err",{"_index":751,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["publishes",{"_index":754,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["purpose",{"_index":1373,"title":{},"body":{"license.html":{}}}],["queue",{"_index":82,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"miscellaneous/enumerations.html":{}}}],["queue.service.mock.ts",{"_index":127,"title":{},"body":{"classes/ApiQueueServiceMock.html":{}}}],["queue.service.ts",{"_index":63,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["quill",{"_index":905,"title":{},"body":{"dependencies.html":{}}}],["readable",{"_index":1172,"title":{},"body":{"license.html":{}}}],["readiness",{"_index":153,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["readonly",{"_index":757,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["ready",{"_index":141,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{},"interfaces/ModuleLoadEvent.html":{}}}],["reason",{"_index":1365,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":1335,"title":{},"body":{"license.html":{}}}],["received",{"_index":1468,"title":{},"body":{"license.html":{}}}],["reducer",{"_index":597,"title":{},"body":{"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"miscellaneous/functions.html":{}}}],["reducing",{"_index":1492,"title":{},"body":{"license.html":{}}}],["refactor",{"_index":208,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["refer",{"_index":1294,"title":{},"body":{"license.html":{}}}],["reference",{"_index":394,"title":{},"body":{"classes/I18nResourceImpl.html":{},"injectables/UxDynamicComponentService.html":{}}}],["refers",{"_index":1321,"title":{},"body":{"license.html":{}}}],["reflects",{"_index":152,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["reformed",{"_index":1485,"title":{},"body":{"license.html":{}}}],["regarding",{"_index":1460,"title":{},"body":{"license.html":{}}}],["registered",{"_index":1518,"title":{},"body":{"license.html":{}}}],["remain",{"_index":1469,"title":{},"body":{"license.html":{}}}],["remap",{"_index":868,"title":{},"body":{"dependencies.html":{}}}],["remote",{"_index":1455,"title":{},"body":{"license.html":{}}}],["remove",{"_index":142,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"miscellaneous/enumerations.html":{}}}],["remove(key",{"_index":154,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["remove(portalhostref",{"_index":718,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["remove_api_queue_item",{"_index":996,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["removeallqueueitem",{"_index":70,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["removeapiqueueitemaction",{"_index":545,"title":{"classes/RemoveApiQueueItemAction.html":{}},"body":{"classes/RemoveApiQueueItemAction.html":{},"miscellaneous/typealiases.html":{}}}],["removeasync",{"_index":143,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{}}}],["removeasync(key",{"_index":155,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["removedresources",{"_index":367,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["removequeueitem",{"_index":71,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["removequeueitem(id",{"_index":124,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["removeresources",{"_index":345,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["removeresources(removedresources",{"_index":365,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["removes",{"_index":122,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/AsyncStorageService.html":{},"injectables/I18nLoader.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["rent",{"_index":1234,"title":{},"body":{"license.html":{}}}],["renting",{"_index":1201,"title":{},"body":{"license.html":{}}}],["reporter",{"_index":862,"title":{},"body":{"dependencies.html":{}}}],["repository",{"_index":1267,"title":{},"body":{"license.html":{},"properties.html":{}}}],["represents",{"_index":1474,"title":{},"body":{"license.html":{}}}],["reproduce",{"_index":1225,"title":{},"body":{"license.html":{}}}],["reproduced",{"_index":1463,"title":{},"body":{"license.html":{}}}],["reproducing",{"_index":1339,"title":{},"body":{"license.html":{}}}],["req",{"_index":56,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["request",{"_index":44,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["requested",{"_index":1459,"title":{},"body":{"license.html":{}}}],["required",{"_index":1163,"title":{},"body":{"license.html":{}}}],["reselect",{"_index":891,"title":{},"body":{"dependencies.html":{}}}],["residence",{"_index":1522,"title":{},"body":{"license.html":{}}}],["resides",{"_index":1513,"title":{},"body":{"license.html":{}}}],["resize",{"_index":914,"title":{},"body":{"dependencies.html":{}}}],["resource",{"_index":363,"title":{},"body":{"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResourcesError.html":{},"interfaces/ResourceError.html":{}}}],["resourceerror",{"_index":547,"title":{"interfaces/ResourceError.html":{}},"body":{"interfaces/ResourceError.html":{}}}],["resources",{"_index":350,"title":{},"body":{"injectables/I18nLoader.html":{},"injectables/I18nService.html":{}}}],["response",{"_index":117,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["responses",{"_index":106,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["responsibility",{"_index":1421,"title":{},"body":{"license.html":{}}}],["responsible",{"_index":500,"title":{},"body":{"injectables/LogService.html":{}}}],["rest",{"_index":104,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["restrict",{"_index":1316,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":1285,"title":{},"body":{"license.html":{}}}],["result",{"_index":436,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["resulting",{"_index":1502,"title":{},"body":{"license.html":{}}}],["results",{"_index":23,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiCoreRootGuardClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"properties.html":{},"miscellaneous/typealiases.html":{}}}],["retrieve",{"_index":91,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["retrycallback",{"_index":530,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["retrycount",{"_index":528,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{}}}],["return",{"_index":191,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["returns",{"_index":57,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"interceptors/CachePreventionInterceptor.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"modules/I18nModule.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"classes/LogServiceMock.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/OpenIdConnectService.html":{},"classes/OpenIdConnectServiceMock.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["reuse",{"_index":519,"title":{},"body":{"injectables/LogService.html":{}}}],["right",{"_index":291,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["right.permission",{"_index":300,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["right1.right2.permission",{"_index":307,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["rightid",{"_index":315,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["rights",{"_index":312,"title":{},"body":{"injectables/EuiPermissionService.html":{},"miscellaneous/enumerations.html":{},"license.html":{}}}],["rightsandpermission",{"_index":313,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["root",{"_index":373,"title":{},"body":{"modules/I18nModule.html":{},"modules/LogModule.html":{},"classes/RouterMock.html":{},"classes/UxRootInjectorGuard.html":{}}}],["rootbaseloggername",{"_index":1054,"title":{},"body":{"miscellaneous/functions.html":{}}}],["rootconfig",{"_index":1055,"title":{},"body":{"miscellaneous/functions.html":{}}}],["route",{"_index":993,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["route.snapshot.data['module",{"_index":189,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["router",{"_index":338,"title":{},"body":{"interceptors/HttpErrorHandlerInterceptor.html":{}}}],["routermock",{"_index":549,"title":{"classes/RouterMock.html":{}},"body":{"classes/RouterMock.html":{}}}],["routerstate",{"_index":553,"title":{},"body":{"classes/RouterMock.html":{}}}],["royalty",{"_index":1218,"title":{},"body":{"license.html":{}}}],["rules",{"_index":1443,"title":{},"body":{"license.html":{}}}],["rxjs",{"_index":838,"title":{},"body":{"dependencies.html":{}}}],["s",{"_index":1103,"title":{},"body":{"miscellaneous/functions.html":{}}}],["sake",{"_index":1320,"title":{},"body":{"license.html":{}}}],["same",{"_index":396,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["scope",{"_index":1212,"title":{},"body":{"license.html":{}}}],["scroll",{"_index":898,"title":{},"body":{"dependencies.html":{}}}],["security.interceptor.ts",{"_index":256,"title":{},"body":{"interceptors/CorsSecurityInterceptor.html":{}}}],["select",{"_index":577,"title":{},"body":{"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{}}}],["select(key",{"_index":603,"title":{},"body":{"injectables/StoreService.html":{}}}],["select(selector",{"_index":580,"title":{},"body":{"classes/StoreMock.html":{}}}],["selector",{"_index":581,"title":{},"body":{"classes/StoreMock.html":{},"directives/TranslateMockDirective.html":{}}}],["selling",{"_index":1198,"title":{},"body":{"license.html":{}}}],["separated",{"_index":297,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["serializeurl",{"_index":557,"title":{},"body":{"classes/RouterMock.html":{}}}],["serve",{"_index":426,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["server",{"_index":359,"title":{},"body":{"injectables/I18nLoader.html":{}}}],["service",{"_index":135,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/EuiPermissionService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["services",{"_index":137,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{},"license.html":{}}}],["session",{"_index":273,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/SessionStorageService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["sessionstorage",{"_index":568,"title":{},"body":{"injectables/SessionStorageService.html":{}}}],["sessionstorageservice",{"_index":566,"title":{"injectables/SessionStorageService.html":{}},"body":{"injectables/SessionStorageService.html":{}}}],["sessionstoragesync",{"_index":1043,"title":{},"body":{"miscellaneous/functions.html":{}}}],["sessionstoragesync(reducer",{"_index":1104,"title":{},"body":{"miscellaneous/functions.html":{}}}],["set",{"_index":144,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LogService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{}}}],["set(key",{"_index":158,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["setasync",{"_index":145,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/LocalForageService.html":{}}}],["setasync(key",{"_index":159,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{}}}],["setdefaultlang",{"_index":644,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["setdefaultlang(lang",{"_index":657,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["sets",{"_index":120,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["severity",{"_index":227,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["shall",{"_index":1288,"title":{},"body":{"license.html":{}}}],["showconnectionstatus",{"_index":174,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["similar",{"_index":1441,"title":{},"body":{"license.html":{}}}],["similarly",{"_index":1446,"title":{},"body":{"license.html":{}}}],["slice",{"_index":695,"title":{},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["software",{"_index":1126,"title":{},"body":{"license.html":{}}}],["sole",{"_index":1420,"title":{},"body":{"license.html":{}}}],["source",{"_index":945,"title":{},"body":{"dependencies.html":{},"license.html":{}}}],["sourcemap",{"_index":866,"title":{},"body":{"dependencies.html":{}}}],["spec",{"_index":872,"title":{},"body":{"dependencies.html":{}}}],["stack",{"_index":265,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{}}}],["stackblitz/sdk",{"_index":959,"title":{},"body":{"dependencies.html":{}}}],["started",{"_index":1113,"title":{"license.html":{}},"body":{}}],["startup.ts",{"_index":1021,"title":{},"body":{"miscellaneous/functions.html":{}}}],["state",{"_index":319,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{}}}],["stated",{"_index":1379,"title":{},"body":{"license.html":{}}}],["stateslice",{"_index":588,"title":{},"body":{"injectables/StoreService.html":{}}}],["static",{"_index":240,"title":{},"body":{"modules/CoreModule.html":{},"modules/I18nModule.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"modules/LogModule.html":{},"injectables/SessionStorageService.html":{}}}],["stating",{"_index":1302,"title":{},"body":{"license.html":{}}}],["status",{"_index":223,"title":{},"body":{"injectables/CoreAppEffects.html":{},"miscellaneous/enumerations.html":{}}}],["statutory",{"_index":1406,"title":{},"body":{"license.html":{}}}],["stoppage",{"_index":1398,"title":{},"body":{"license.html":{}}}],["storage",{"_index":134,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"miscellaneous/functions.html":{}}}],["storage.service.mock.ts",{"_index":164,"title":{},"body":{"classes/AsyncStorageServiceMock.html":{}}}],["storage.service.ts",{"_index":131,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{}}}],["storageservice",{"_index":139,"title":{"classes/StorageService.html":{}},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalStorageService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{}}}],["storageservicemock",{"_index":570,"title":{"classes/StorageServiceMock.html":{}},"body":{"classes/StorageServiceMock.html":{}}}],["storagetype",{"_index":600,"title":{},"body":{"injectables/StoreService.html":{}}}],["store",{"_index":76,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/StoreService.html":{},"injectables/UserService.html":{},"injectables/UxDynamicMenuService.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{}}}],["store.dispatch",{"_index":592,"title":{},"body":{"injectables/StoreService.html":{}}}],["store.select",{"_index":604,"title":{},"body":{"injectables/StoreService.html":{}}}],["stored",{"_index":1462,"title":{},"body":{"license.html":{}}}],["storemock",{"_index":572,"title":{"classes/StoreMock.html":{}},"body":{"classes/StoreMock.html":{}}}],["storeservice",{"_index":73,"title":{"injectables/StoreService.html":{}},"body":{"injectables/ApiQueueService.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UxDynamicMenuService.html":{}}}],["storeservicemock",{"_index":605,"title":{"injectables/StoreServiceMock.html":{}},"body":{"injectables/StoreServiceMock.html":{}}}],["string",{"_index":78,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"modules/CoreModule.html":{},"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{}}}],["study",{"_index":1176,"title":{},"body":{"license.html":{}}}],["sub",{"_index":1235,"title":{},"body":{"license.html":{}}}],["subject",{"_index":531,"title":{},"body":{"interceptors/OpenIdConnectInterceptor.html":{},"classes/TranslateServiceMock.html":{},"injectables/UxErrorFeedbackService.html":{},"license.html":{}}}],["sublicensable",{"_index":1221,"title":{},"body":{"license.html":{}}}],["subscribes",{"_index":90,"title":{},"body":{"injectables/ApiQueueService.html":{}}}],["subsequent",{"_index":1351,"title":{},"body":{"license.html":{}}}],["success",{"_index":228,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["such",{"_index":1133,"title":{},"body":{"license.html":{}}}],["suffix",{"_index":380,"title":{},"body":{"classes/I18nResourceImpl.html":{}}}],["summary",{"_index":229,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["support",{"_index":207,"title":{},"body":{"injectables/CoreAppEffects.html":{},"license.html":{}}}],["supports",{"_index":1239,"title":{},"body":{"license.html":{}}}],["t",{"_index":55,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"classes/AsyncStorageService.html":{},"interceptors/CachePreventionInterceptor.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"injectables/I18nService.html":{},"injectables/LocaleService.html":{},"classes/StorageService.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{}}}],["table",{"_index":910,"title":{},"body":{"dependencies.html":{}}}],["take",{"_index":1497,"title":{},"body":{"license.html":{}}}],["tap((connected",{"_index":202,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["targeted",{"_index":755,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{}}}],["template",{"_index":820,"title":{},"body":{"dependencies.html":{}}}],["terminate",{"_index":1465,"title":{},"body":{"license.html":{}}}],["termination",{"_index":1464,"title":{},"body":{"license.html":{}}}],["terms",{"_index":1129,"title":{},"body":{"license.html":{}}}],["text",{"_index":629,"title":{},"body":{"pipes/TranslateMockPipe.html":{},"license.html":{}}}],["therefore",{"_index":1360,"title":{},"body":{"license.html":{}}}],["thereof",{"_index":1159,"title":{},"body":{"license.html":{}}}],["thereto",{"_index":1282,"title":{},"body":{"license.html":{}}}],["this.actions.pipe",{"_index":180,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.asservice.growl",{"_index":226,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.isloadedsubject.asobservable",{"_index":645,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["this.ondefaultlangchangesubject.asobservable",{"_index":649,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["this.onlangchangesubject.asobservable",{"_index":650,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["this.ontranslationchangesubject.asobservable",{"_index":651,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["this.showconnectionstatus",{"_index":214,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.showconnectionstatus?.enabled",{"_index":215,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.showconnectionstatus?.messagebox?.lifespan",{"_index":217,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["this.translateservice.get('eui.connected').subscribe((translation",{"_index":225,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["those",{"_index":1236,"title":{},"body":{"license.html":{}}}],["through",{"_index":438,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["time",{"_index":151,"title":{},"body":{"classes/AsyncStorageService.html":{},"injectables/LocalForageService.html":{},"license.html":{}}}],["timeout",{"_index":274,"title":{},"body":{"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"miscellaneous/functions.html":{}}}],["timestamp",{"_index":110,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{}}}],["timezone",{"_index":607,"title":{"interfaces/TimeZone.html":{}},"body":{"interfaces/TimeZone.html":{},"injectables/UxTimezoneService.html":{},"dependencies.html":{}}}],["timezone.service.ts",{"_index":609,"title":{},"body":{"interfaces/TimeZone.html":{},"injectables/UxTimezoneService.html":{}}}],["todo",{"_index":203,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["token",{"_index":717,"title":{},"body":{"injectables/UxDynamicComponentService.html":{}}}],["trade",{"_index":1331,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":1292,"title":{},"body":{"license.html":{}}}],["transform",{"_index":627,"title":{},"body":{"pipes/TranslateMockPipe.html":{}}}],["transform(text",{"_index":628,"title":{},"body":{"pipes/TranslateMockPipe.html":{}}}],["transformer",{"_index":929,"title":{},"body":{"dependencies.html":{}}}],["translate",{"_index":430,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{}}}],["translate/core",{"_index":893,"title":{},"body":{"dependencies.html":{}}}],["translate/http",{"_index":895,"title":{},"body":{"dependencies.html":{}}}],["translatemockdirective",{"_index":612,"title":{"directives/TranslateMockDirective.html":{}},"body":{"directives/TranslateMockDirective.html":{},"modules/TranslateMockModule.html":{}}}],["translatemockmodule",{"_index":622,"title":{"modules/TranslateMockModule.html":{}},"body":{"modules/TranslateMockModule.html":{},"modules.html":{}}}],["translatemockpipe",{"_index":624,"title":{"pipes/TranslateMockPipe.html":{}},"body":{"modules/TranslateMockModule.html":{},"pipes/TranslateMockPipe.html":{}}}],["translateparams",{"_index":618,"title":{},"body":{"directives/TranslateMockDirective.html":{}}}],["translateservice",{"_index":50,"title":{},"body":{"interceptors/AddLangParamInterceptor.html":{},"injectables/CoreAppEffects.html":{},"injectables/I18nService.html":{},"injectables/UxErrorFeedbackService.html":{}}}],["translateservicemock",{"_index":630,"title":{"classes/TranslateServiceMock.html":{}},"body":{"classes/TranslateServiceMock.html":{}}}],["translation",{"_index":232,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/I18nService.html":{}}}],["translations",{"_index":358,"title":{},"body":{"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"interfaces/LoadedResources.html":{}}}],["transmitting",{"_index":1204,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":1510,"title":{},"body":{"license.html":{}}}],["true",{"_index":100,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/I18nResourceImpl.html":{},"injectables/LogService.html":{}}}],["true/false",{"_index":1061,"title":{},"body":{"miscellaneous/functions.html":{}}}],["ts",{"_index":874,"title":{},"body":{"dependencies.html":{}}}],["tslib",{"_index":840,"title":{},"body":{"dependencies.html":{}}}],["type",{"_index":12,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"interceptors/AddLangParamInterceptor.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"interceptors/CachePreventionInterceptor.html":{},"injectables/CoreAppEffects.html":{},"modules/CoreModule.html":{},"interceptors/CorsSecurityInterceptor.html":{},"interceptors/CsrfPreventionInterceptor.html":{},"classes/EmptyApiQueueAction.html":{},"classes/ErrorSubClass.html":{},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{},"classes/EuiError.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpErrorHandlerInterceptor.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"classes/InitStoreAction.html":{},"interfaces/LoadedResources.html":{},"interfaces/LoadedResourcesError.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interfaces/ModuleLoadEvent.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"interfaces/OpenIdConnectUserDetails.html":{},"classes/RemoveApiQueueItemAction.html":{},"interfaces/ResourceError.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"interfaces/TimeZone.html":{},"directives/TranslateMockDirective.html":{},"pipes/TranslateMockPipe.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"interceptors/UxRequestErrorModelInterceptor.html":{},"classes/UxRootInjectorGuard.html":{},"injectables/UxTimezoneService.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/typealiases.html":{}}}],["typealiases",{"_index":1539,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeof",{"_index":213,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["types/cleave.js",{"_index":901,"title":{},"body":{"dependencies.html":{}}}],["types/jasmine",{"_index":845,"title":{},"body":{"dependencies.html":{}}}],["types/jasminewd2",{"_index":877,"title":{},"body":{"dependencies.html":{}}}],["types/lodash",{"_index":879,"title":{},"body":{"dependencies.html":{}}}],["types/marked",{"_index":931,"title":{},"body":{"dependencies.html":{}}}],["types/node",{"_index":847,"title":{},"body":{"dependencies.html":{}}}],["types/quill",{"_index":907,"title":{},"body":{"dependencies.html":{}}}],["typescript",{"_index":830,"title":{},"body":{"dependencies.html":{}}}],["tz",{"_index":781,"title":{},"body":{"injectables/UxTimezoneService.html":{}}}],["undefined",{"_index":190,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{}}}],["under",{"_index":1128,"title":{},"body":{"license.html":{}}}],["unenforceable",{"_index":1479,"title":{},"body":{"license.html":{}}}],["union",{"_index":1116,"title":{},"body":{"license.html":{}}}],["unique",{"_index":1494,"title":{},"body":{"license.html":{}}}],["unless",{"_index":1308,"title":{},"body":{"license.html":{}}}],["update",{"_index":324,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LocaleService.html":{},"miscellaneous/enumerations.html":{}}}],["update_app_connection",{"_index":987,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_app_status",{"_index":989,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_app_version",{"_index":986,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_current_module",{"_index":990,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_i18n_state",{"_index":999,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_locale_state",{"_index":1000,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_notifications_list",{"_index":1001,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_dashboard",{"_index":1009,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_details",{"_index":1004,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_preferences",{"_index":1006,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_rights",{"_index":1008,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["update_user_state",{"_index":1003,"title":{},"body":{"miscellaneous/enumerations.html":{}}}],["updateappconnection",{"_index":171,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["updateappconnectionaction",{"_index":201,"title":{"classes/UpdateAppConnectionAction.html":{}},"body":{"injectables/CoreAppEffects.html":{},"classes/UpdateAppConnectionAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateappconnectionaction(connected",{"_index":199,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["updateappstatusaction",{"_index":660,"title":{"classes/UpdateAppStatusAction.html":{}},"body":{"classes/UpdateAppStatusAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateappversionaction",{"_index":662,"title":{"classes/UpdateAppVersionAction.html":{}},"body":{"classes/UpdateAppVersionAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatecurrentmoduleaction",{"_index":664,"title":{"classes/UpdateCurrentModuleAction.html":{}},"body":{"classes/UpdateCurrentModuleAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatecurrentmoduleaction(module",{"_index":193,"title":{},"body":{"injectables/CoreAppEffects.html":{}}}],["updated",{"_index":1099,"title":{},"body":{"miscellaneous/functions.html":{}}}],["updatei18nstateaction",{"_index":666,"title":{"classes/UpdateI18nStateAction.html":{}},"body":{"classes/UpdateI18nStateAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatelocalestateaction",{"_index":669,"title":{"classes/UpdateLocaleStateAction.html":{}},"body":{"classes/UpdateLocaleStateAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatenotificationslistaction",{"_index":672,"title":{"classes/UpdateNotificationsListAction.html":{}},"body":{"classes/UpdateNotificationsListAction.html":{},"miscellaneous/typealiases.html":{}}}],["updatestate",{"_index":286,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["updatestate(i18nstate",{"_index":449,"title":{},"body":{"injectables/I18nServiceMock.html":{}}}],["updatestate(langstate",{"_index":441,"title":{},"body":{"injectables/I18nService.html":{}}}],["updatestate(rights",{"_index":323,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["updatestate(slice",{"_index":693,"title":{},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["updatestate(state",{"_index":482,"title":{},"body":{"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{}}}],["updatestate(userstate",{"_index":692,"title":{},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["updateuserdashboardaction",{"_index":675,"title":{"classes/UpdateUserDashboardAction.html":{}},"body":{"classes/UpdateUserDashboardAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateuserdetailsaction",{"_index":678,"title":{"classes/UpdateUserDetailsAction.html":{}},"body":{"classes/UpdateUserDetailsAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateuserpreferencesaction",{"_index":681,"title":{"classes/UpdateUserPreferencesAction.html":{}},"body":{"classes/UpdateUserPreferencesAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateuserrightsaction",{"_index":684,"title":{"classes/UpdateUserRightsAction.html":{}},"body":{"classes/UpdateUserRightsAction.html":{},"miscellaneous/typealiases.html":{}}}],["updateuserstateaction",{"_index":686,"title":{"classes/UpdateUserStateAction.html":{}},"body":{"classes/UpdateUserStateAction.html":{}}}],["upon",{"_index":1157,"title":{},"body":{"license.html":{}}}],["url",{"_index":564,"title":{},"body":{"classes/RouterMock.html":{},"miscellaneous/functions.html":{}}}],["usage",{"_index":1194,"title":{},"body":{"license.html":{}}}],["use",{"_index":249,"title":{},"body":{"modules/CoreModule.html":{},"classes/TranslateServiceMock.html":{},"license.html":{}}}],["use(lang",{"_index":658,"title":{},"body":{"classes/TranslateServiceMock.html":{}}}],["used",{"_index":1088,"title":{},"body":{"miscellaneous/functions.html":{}}}],["useful",{"_index":309,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["user",{"_index":219,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/EuiPermissionService.html":{},"miscellaneous/enumerations.html":{}}}],["user's",{"_index":318,"title":{},"body":{"injectables/EuiPermissionService.html":{}}}],["userdetails",{"_index":679,"title":{},"body":{"classes/UpdateUserDetailsAction.html":{}}}],["userpreferences",{"_index":682,"title":{},"body":{"classes/UpdateUserPreferencesAction.html":{}}}],["userservice",{"_index":689,"title":{"injectables/UserService.html":{}},"body":{"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["userservicemock",{"_index":696,"title":{"injectables/UserServiceMock.html":{}},"body":{"injectables/UserServiceMock.html":{}}}],["userstate",{"_index":687,"title":{},"body":{"classes/UpdateUserStateAction.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{}}}],["using",{"_index":464,"title":{},"body":{"injectables/LocalForageService.html":{}}}],["utility",{"_index":160,"title":{},"body":{"classes/AsyncStorageService.html":{},"classes/StorageService.html":{},"miscellaneous/functions.html":{}}}],["uxappshellservice",{"_index":178,"title":{},"body":{"injectables/CoreAppEffects.html":{},"injectables/UxErrorFeedbackService.html":{}}}],["uxdynamiccomponentservice",{"_index":698,"title":{"injectables/UxDynamicComponentService.html":{}},"body":{"injectables/UxDynamicComponentService.html":{}}}],["uxdynamicmenuservice",{"_index":724,"title":{"injectables/UxDynamicMenuService.html":{}},"body":{"injectables/UxDynamicMenuService.html":{}}}],["uxerrorfeedbackservice",{"_index":735,"title":{"injectables/UxErrorFeedbackService.html":{}},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["uxerrormanager",{"_index":746,"title":{"classes/UxErrorManager.html":{}},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["uxhttperrorresponse",{"_index":748,"title":{},"body":{"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{}}}],["uxpermission",{"_index":731,"title":{},"body":{"injectables/UxDynamicMenuService.html":{}}}],["uxrequesterrormodelinterceptor",{"_index":763,"title":{"interceptors/UxRequestErrorModelInterceptor.html":{}},"body":{"interceptors/UxRequestErrorModelInterceptor.html":{}}}],["uxrootinjectorguard",{"_index":768,"title":{"classes/UxRootInjectorGuard.html":{}},"body":{"classes/UxRootInjectorGuard.html":{}}}],["uxtimezoneservice",{"_index":771,"title":{"injectables/UxTimezoneService.html":{}},"body":{"injectables/UxTimezoneService.html":{}}}],["uxuserright",{"_index":321,"title":{},"body":{"injectables/EuiPermissionService.html":{},"classes/UpdateUserRightsAction.html":{}}}],["v",{"_index":1118,"title":{},"body":{"license.html":{}}}],["v.1.1",{"_index":1143,"title":{},"body":{"license.html":{}}}],["valid",{"_index":1486,"title":{},"body":{"license.html":{}}}],["validity",{"_index":1481,"title":{},"body":{"license.html":{}}}],["value",{"_index":21,"title":{},"body":{"classes/ActivatedRouteAction.html":{},"classes/AddApiQueueItemAction.html":{},"classes/AddAppLoadedConfigModulesAction.html":{},"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"injectables/CoreAppEffects.html":{},"classes/EmptyApiQueueAction.html":{},"classes/InitStoreAction.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"modules/LogModule.html":{},"injectables/LogService.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"classes/RemoveApiQueueItemAction.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StoreMock.html":{},"classes/TranslateServiceMock.html":{},"classes/UpdateAppConnectionAction.html":{},"classes/UpdateAppStatusAction.html":{},"classes/UpdateAppVersionAction.html":{},"classes/UpdateCurrentModuleAction.html":{},"classes/UpdateI18nStateAction.html":{},"classes/UpdateLocaleStateAction.html":{},"classes/UpdateNotificationsListAction.html":{},"classes/UpdateUserDashboardAction.html":{},"classes/UpdateUserDetailsAction.html":{},"classes/UpdateUserPreferencesAction.html":{},"classes/UpdateUserRightsAction.html":{},"classes/UpdateUserStateAction.html":{},"injectables/UxDynamicMenuService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["version",{"_index":602,"title":{},"body":{"injectables/StoreService.html":{},"miscellaneous/enumerations.html":{},"license.html":{},"properties.html":{}}}],["versions",{"_index":1491,"title":{},"body":{"license.html":{}}}],["vested",{"_index":1223,"title":{},"body":{"license.html":{}}}],["via",{"_index":252,"title":{},"body":{"modules/CoreModule.html":{}}}],["void",{"_index":89,"title":{},"body":{"injectables/ApiQueueService.html":{},"classes/ApiQueueServiceMock.html":{},"classes/AsyncStorageService.html":{},"classes/AsyncStorageServiceMock.html":{},"injectables/EuiPermissionService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/I18nLoader.html":{},"classes/I18nResourceImpl.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocalForageService.html":{},"injectables/LocalStorageService.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"classes/RouterMock.html":{},"injectables/SessionStorageService.html":{},"classes/StorageService.html":{},"classes/StorageServiceMock.html":{},"classes/StoreMock.html":{},"injectables/StoreService.html":{},"injectables/StoreServiceMock.html":{},"classes/TranslateServiceMock.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["waives",{"_index":1249,"title":{},"body":{"license.html":{}}}],["want",{"_index":310,"title":{},"body":{"injectables/EuiPermissionService.html":{},"injectables/LogService.html":{}}}],["warning",{"_index":84,"title":{},"body":{"injectables/ApiQueueService.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["warranties",{"_index":1296,"title":{},"body":{"license.html":{}}}],["warrants",{"_index":1342,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":1354,"title":{},"body":{"license.html":{}}}],["way",{"_index":298,"title":{},"body":{"injectables/EuiPermissionService.html":{},"license.html":{}}}],["web",{"_index":941,"title":{},"body":{"dependencies.html":{},"miscellaneous/functions.html":{}}}],["webcomponents/custom",{"_index":834,"title":{},"body":{"dependencies.html":{}}}],["website",{"_index":1458,"title":{},"body":{"license.html":{}}}],["whether",{"_index":391,"title":{},"body":{"classes/I18nResourceImpl.html":{},"license.html":{}}}],["whole",{"_index":1483,"title":{},"body":{"license.html":{}}}],["wide",{"_index":1217,"title":{},"body":{"license.html":{}}}],["wilful",{"_index":1384,"title":{},"body":{"license.html":{}}}],["willingness",{"_index":1146,"title":{},"body":{"license.html":{}}}],["window",{"_index":1437,"title":{},"body":{"license.html":{}}}],["without",{"_index":1367,"title":{},"body":{"license.html":{}}}],["withuxerrormanager",{"_index":1044,"title":{},"body":{"miscellaneous/functions.html":{}}}],["withuxerrormanager(errormanager",{"_index":1105,"title":{},"body":{"miscellaneous/functions.html":{}}}],["withuxerrormanager(this",{"_index":761,"title":{},"body":{"classes/UxErrorManager.html":{}}}],["work",{"_index":1125,"title":{},"body":{"license.html":{}}}],["worker",{"_index":801,"title":{},"body":{"dependencies.html":{}}}],["works",{"_index":1155,"title":{},"body":{"license.html":{}}}],["world",{"_index":1216,"title":{},"body":{"license.html":{}}}],["wrapper",{"_index":427,"title":{},"body":{"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{}}}],["xhr",{"_index":920,"title":{},"body":{"dependencies.html":{}}}],["yes",{"_index":269,"title":{},"body":{"classes/ErrorSubClass.html":{},"classes/EuiError.html":{},"injectables/I18nService.html":{},"injectables/I18nServiceMock.html":{},"injectables/LocaleService.html":{},"injectables/LocaleServiceMock.html":{},"interceptors/OpenIdConnectInterceptor.html":{},"injectables/StoreService.html":{},"injectables/UserService.html":{},"injectables/UserServiceMock.html":{},"injectables/UxDynamicComponentService.html":{},"injectables/UxErrorFeedbackService.html":{},"classes/UxErrorManager.html":{},"miscellaneous/functions.html":{}}}],["zone.js",{"_index":842,"title":{},"body":{"dependencies.html":{}}}]],"pipeline":["stemmer"]},
|
|
3
|
+
"store": {"classes/ActivatedRouteAction.html":{"url":"classes/ActivatedRouteAction.html","title":"class - ActivatedRouteAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ActivatedRouteAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: ActivatedRoute)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : ActivatedRoute\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.ACTIVATED_ROUTE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AddApiQueueItemAction.html":{"url":"classes/AddApiQueueItemAction.html","title":"class - AddApiQueueItemAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AddApiQueueItemAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: literal type)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n literal type\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : literal type\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.ADD_API_QUEUE_ITEM\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AddAppLoadedConfigModulesAction.html":{"url":"classes/AddAppLoadedConfigModulesAction.html","title":"class - AddAppLoadedConfigModulesAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AddAppLoadedConfigModulesAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: literal type)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n literal type\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : literal type\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.ADD_APP_LOADED_CONFIG_MODULES\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/AddLangParamInterceptor.html":{"url":"interceptors/AddLangParamInterceptor.html","title":"interceptor - AddLangParamInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n AddLangParamInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/add-lang-param.interceptor.ts\n \n\n\n \n Description\n \n \n Interceptor for adding the current language as parameter\nAdd the header (LANG_PARAM_KEY, ) to your request http headers\n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(translateService: TranslateService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n translateService\n \n \n TranslateService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(req: HttpRequest, next: HttpHandler)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n req\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ApiQueueService.html":{"url":"injectables/ApiQueueService.html","title":"injectable - ApiQueueService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n ApiQueueService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/queue/api-queue.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addQueueItem\n \n \n getQueue\n \n \n getQueueItem\n \n \n processAllQueueItems\n \n \n processAllQueueItemsSequential\n \n \n processQueueItem\n \n \n removeAllQueueItem\n \n \n removeQueueItem\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(store: StoreService, http: HttpClient, logService: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n http\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addQueueItem\n \n \n \n \n \n \naddQueueItem(id: string, item: ApiQueueItem)\n \n \n\n\n\n\n \n \n Adds an item in the queue by dispatching an action to the store.\nWARNING if matches any other queue item id will overwrite it.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \nThe id of the item inside the queue.\nWARNING if matches any other queue item id will overwrite it.\n\n\n \n \n \n item\n \n ApiQueueItem\n \n\n \n No\n \n\n\n \n \nan item for Queue\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getQueue\n \n \n \n \n \n \ngetQueue()\n \n \n\n\n\n\n \n \n Subscribes to the store to retrieve queue and then converts the queue object to an array of items.\n\n\n \n \n \n Returns : Observable\n\n \n \n An Observable of array of all items inside the current queue (ApiQueueItem[])\n\n \n \n \n \n \n \n \n \n \n \n \n getQueueItem\n \n \n \n \n \n \ngetQueueItem(id: string)\n \n \n\n\n\n\n \n \n Subscribes to the store to retrieve an item from the queue.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \nid of the item inside the queue\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n An Observable of ApiQueueItem type\n\n \n \n \n \n \n \n \n \n \n \n \n processAllQueueItems\n \n \n \n \n \n \nprocessAllQueueItems(continueOnError)\n \n \n\n\n\n\n \n \n Process all the items inside the queue.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n Description\n \n \n \n \n continueOnError\n\n \n No\n \n\n \n true\n \n\n \n \nin case of an item request fails continue with the rest in queue\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n An Observable with an array which contains all responses from all items in queue.\n\n \n \n \n \n \n \n \n \n \n \n \n processAllQueueItemsSequential\n \n \n \n \n \n \nprocessAllQueueItemsSequential(ascending)\n \n \n\n\n\n\n \n \n Process all items in queue after it order them based on their timestamp. Beware that order\nmatter in execution of Http Request in queue. When a request completes only then next will begin. Emission\nor Http response follows order.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n Description\n \n \n \n \n ascending\n\n \n No\n \n\n \n true\n \n\n \n \nsets the order of queue items based on timestamp\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n processQueueItem\n \n \n \n \n \n \nprocessQueueItem(id: string)\n \n \n\n\n\n\n \n \n Process an item from the queue.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \nid of the item inside the queue\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n An Observable of type any\n\n \n \n \n \n \n \n \n \n \n \n \n removeAllQueueItem\n \n \n \n \n \n \nremoveAllQueueItem()\n \n \n\n\n\n\n \n \n Removes all items placed in the queue.\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeQueueItem\n \n \n \n \n \n \nremoveQueueItem(id: string)\n \n \n\n\n\n\n \n \n Removes a given item from the queue.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \nid of the item inside the queue\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ApiQueueServiceMock.html":{"url":"classes/ApiQueueServiceMock.html","title":"class - ApiQueueServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ApiQueueServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/queue/api-queue.service.mock.ts\n \n\n\n\n \n Extends\n \n \n ApiQueueService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addQueueItem\n \n \n getQueue\n \n \n getQueueItem\n \n \n processAllQueueItems\n \n \n processQueueItem\n \n \n removeAllQueueItem\n \n \n removeQueueItem\n \n \n processAllQueueItemsSequential\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addQueueItem\n \n \n \n \n \n \naddQueueItem()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n getQueue\n \n \n \n \n \n \ngetQueue()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n getQueueItem\n \n \n \n \n \n \ngetQueueItem(id: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n processAllQueueItems\n \n \n \n \n \n \nprocessAllQueueItems()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n processQueueItem\n \n \n \n \n \n \nprocessQueueItem()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n removeAllQueueItem\n \n \n \n \n \n \nremoveAllQueueItem()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeQueueItem\n \n \n \n \n \n \nremoveQueueItem()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n processAllQueueItemsSequential\n \n \n \n \n \n \nprocessAllQueueItemsSequential(ascending)\n \n \n\n\n\n\n \n \n Process all items in queue after it order them based on their timestamp. Beware that order\nmatter in execution of Http Request in queue. When a request completes only then next will begin. Emission\nor Http response follows order.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n Description\n \n \n \n \n ascending\n\n \n No\n \n\n \n true\n \n\n \n \nsets the order of queue items based on timestamp\n\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AsyncStorageService.html":{"url":"classes/AsyncStorageService.html","title":"class - AsyncStorageService","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AsyncStorageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/async-storage.service.ts\n \n\n\n \n Description\n \n \n Generic asynchronous storage service. Concrete asynchronous storage services must extend this class\n\n \n\n \n Extends\n \n \n StorageService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Abstract\n get\n \n \n Abstract\n get\n \n \n Abstract\n ready\n \n \n Abstract\n remove\n \n \n removeAsync\n \n \n Abstract\n set\n \n \n Abstract\n set\n \n \n setAsync\n \n \n setAsync\n \n \n Abstract\n name\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Abstract\n get\n \n \n \n \n \n \n \n get(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from async storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable of value\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n get\n \n \n \n \n \n \n \n get(key: string)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n ready\n \n \n \n \n \n \n \n ready()\n \n \n\n\n\n\n \n \n reflects the readiness of the storage\n\n\n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n remove\n \n \n \n \n \n \n \n remove(key: string)\n \n \n\n\n\n\n \n \n removes an object from async storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n removeAsync\n \n \n \n \n \n \nremoveAsync(key: string)\n \n \n\n\n\n\n \n \n asynchronous helper for remove function\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n set\n \n \n \n \n \n \n \n set(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in async storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n set\n \n \n \n \n \n \n \n set(key: string, value: T)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n value\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setAsync\n \n \n \n \n \n \nsetAsync(key: string, value: any)\n \n \n\n\n\n\n \n \n asynchronous helper for set function\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setAsync\n \n \n \n \n \n \nsetAsync(key: string, value: T)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n value\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n name\n \n \n \n \n \n \n \n name()\n \n \n\n\n\n\n \n \n utility function, to determine the storage implementation\n\n\n \n Returns : string\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AsyncStorageServiceMock.html":{"url":"classes/AsyncStorageServiceMock.html","title":"class - AsyncStorageServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AsyncStorageServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/async-storage.service.mock.ts\n \n\n\n\n \n Extends\n \n \n AsyncStorageService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n ready\n \n \n remove\n \n \n removeAsync\n \n \n set\n \n \n setAsync\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \nready()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n removeAsync\n \n \n \n \n \n \nremoveAsync()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n setAsync\n \n \n \n \n \n \nsetAsync()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/CachePreventionInterceptor.html":{"url":"interceptors/CachePreventionInterceptor.html","title":"interceptor - CachePreventionInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n CachePreventionInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/cache-prevention.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(req: HttpRequest, next: HttpHandler)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n req\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/CoreAppEffects.html":{"url":"injectables/CoreAppEffects.html","title":"injectable - CoreAppEffects","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n CoreAppEffects\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/effects/app.effects.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n activatedRoute\n \n \n getAppConnectionInformation\n \n \n updateAppConnection\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(actions: Actions, showConnectionStatus: boolean | ConnectionStatus, translateService: TranslateService, asService: UxAppShellService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n actions\n \n \n Actions\n \n \n \n No\n \n \n \n \n showConnectionStatus\n \n \n boolean | ConnectionStatus\n \n \n \n No\n \n \n \n \n translateService\n \n \n TranslateService\n \n \n \n No\n \n \n \n \n asService\n \n \n UxAppShellService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n activatedRoute\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : createEffect(() =>\n this.actions.pipe(\n ofType(CoreAppActionTypes.ACTIVATED_ROUTE),\n map((action: ActivatedRouteAction) => action.payload),\n mergeMap((route) => {\n // extract the module name, if defined\n const module = route.snapshot.data['module'] || 'undefined';\n return [new UpdateCurrentModuleAction(module)];\n }),\n ),\n )\n \n \n\n\n \n \n \n \n \n \n \n \n getAppConnectionInformation\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : createEffect(() =>\n merge(fromEvent(window, 'online').pipe(mapTo(true)), fromEvent(window, 'offline').pipe(mapTo(false))).pipe(\n map((connected) => new UpdateAppConnectionAction(connected)),\n ),\n )\n \n \n\n\n \n \n \n \n \n \n \n \n updateAppConnection\n \n \n \n \n \n \n Default value : createEffect(\n () =>\n this.actions.pipe(\n ofType(CoreAppActionTypes.UPDATE_APP_CONNECTION),\n map((action: UpdateAppConnectionAction) => action.payload),\n tap((connected) => {\n // TODO: for eUI 14, drop boolean support and refactor\n // check if feature is enabled\n const isFeatureEnabled =\n typeof this.showConnectionStatus !== 'boolean' ? this.showConnectionStatus?.enabled : this.showConnectionStatus;\n // extract lifespan if any\n const lifespan =\n typeof this.showConnectionStatus !== 'boolean' ? this.showConnectionStatus?.messageBox?.lifespan || 0 : 0;\n\n // if the user needs to be informed about the connection status\n if (isFeatureEnabled) {\n if (connected) {\n this.translateService.get('eui.CONNECTED').subscribe((translation) => {\n this.asService.growl(\n { severity: 'success', summary: 'MESSAGE', detail: translation, life: lifespan },\n lifespan {\n this.asService.growl(\n { severity: 'danger', summary: 'ERROR', detail: translation, life: lifespan },\n lifespan \n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/CoreModule.html":{"url":"modules/CoreModule.html","title":"module - CoreModule","body":"\n \n\n\n\n\n Modules\n CoreModule\n\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/eui-core.module.ts\n \n\n\n\n\n\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n forChild\n \n \n \n \n \n \n \n forChild(moduleName: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n moduleName\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n forRoot()\n \n \n\n\n\n\n \n \n No more providing config from forRoot, you have to use EUI_CONFIG_TOKEN to pass config via providers.\n\n\n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/CorsSecurityInterceptor.html":{"url":"interceptors/CorsSecurityInterceptor.html","title":"interceptor - CorsSecurityInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n CorsSecurityInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/cors-security.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/CsrfPreventionInterceptor.html":{"url":"interceptors/CsrfPreventionInterceptor.html","title":"interceptor - CsrfPreventionInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n CsrfPreventionInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/csrf-prevention.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/EmptyApiQueueAction.html":{"url":"classes/EmptyApiQueueAction.html","title":"class - EmptyApiQueueAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n EmptyApiQueueAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: any)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : any\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.EMPTY_API_QUEUE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ErrorSubClass.html":{"url":"classes/ErrorSubClass.html","title":"class - ErrorSubClass","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ErrorSubClass\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/errors/eui.error.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n Optional\n code\n \n \n Public\n message\n \n \n Public\n name\n \n \n Public\n stack\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(code?: string, msg?: string, args?: any)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n code\n \n \n string\n \n \n \n Yes\n \n \n \n \n msg\n \n \n string\n \n \n \n Yes\n \n \n \n \n args\n \n \n any\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n Optional\n code\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n message\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n name\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n stack\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html":{"url":"interceptors/EuLoginSessionTimeoutHandlingInterceptor.html","title":"interceptor - EuLoginSessionTimeoutHandlingInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n EuLoginSessionTimeoutHandlingInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/eu-login-session-timeout-handling.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/EuiCoreRootGuardClass.html":{"url":"classes/EuiCoreRootGuardClass.html","title":"class - EuiCoreRootGuardClass","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n EuiCoreRootGuardClass\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/eui-core.module.ts\n \n\n\n\n\n\n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/EuiError.html":{"url":"classes/EuiError.html","title":"class - EuiError","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n EuiError\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/errors/eui.error.ts\n \n\n\n\n \n Extends\n \n \n ErrorSubClass\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n Optional\n code\n \n \n Public\n message\n \n \n Public\n name\n \n \n Public\n stack\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(code: string, msg?: string, args?: any)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n code\n \n \n string\n \n \n \n No\n \n \n \n \n msg\n \n \n string\n \n \n \n Yes\n \n \n \n \n args\n \n \n any\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n Optional\n code\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n message\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n name\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n stack\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/EuiPermissionService.html":{"url":"injectables/EuiPermissionService.html","title":"injectable - EuiPermissionService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n EuiPermissionService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/permission/permission.service.ts\n \n\n\n\n \n Extends\n \n \n EuiService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n checkAttributePermission\n \n \n checkPermission\n \n \n checkRight\n \n \n getState\n \n \n init\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(log: LogService, store: StoreService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n checkAttributePermission\n \n \n \n \n \n \ncheckAttributePermission(rightsAndPermission: string)\n \n \n\n\n\n\n \n \n accepts a string of right and or a permission. In string first comes the right and or followed by permission in\na dot separated way e.g. 'RIGHT.PERMISSION' or 'RIGHT'. The string can contain more that 2 separated fields.\nIn that case the last field should be the permission and all the others a Right. e.g. 'RIGHT1.RIGHT2.PERMISSION'\nThe last part is useful where you want a user to have multiple rights and the permission of the last right.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n rightsAndPermission\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n checkPermission\n \n \n \n \n \n \ncheckPermission(rightId: string, permission: string)\n \n \n\n\n\n\n \n \n check if a user has that right and that right has the permission given.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n rightId\n \n string\n \n\n \n No\n \n\n\n \n the right of the user\n\n \n \n \n permission\n \n string\n \n\n \n No\n \n\n\n \n the permission of the right\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n checkRight\n \n \n \n \n \n \ncheckRight(rightId: string)\n \n \n\n\n\n\n \n \n check if a user has the right.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n rightId\n \n string\n \n\n \n No\n \n\n\n \n the id of Right\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState()\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n get the user's Rights from the state\n\n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(rights: UxUserRight[])\n \n \n\n\n\n\n \n \n initialize the service by providing a state\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n rights\n \n UxUserRight[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(rights: UxUserRight[])\n \n \n\n\n\n\n \n \n update the state with the given user's rights\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n rights\n \n UxUserRight[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/GlobalErrorHandler.html":{"url":"injectables/GlobalErrorHandler.html","title":"injectable - GlobalErrorHandler","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n GlobalErrorHandler\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/errors/global-error-handler.ts\n \n\n\n\n \n Extends\n \n \n ErrorHandler\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n handleError\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(logService: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n handleError\n \n \n \n \n \n \nhandleError(error: any)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/HttpErrorHandlerInterceptor.html":{"url":"interceptors/HttpErrorHandlerInterceptor.html","title":"interceptor - HttpErrorHandlerInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n HttpErrorHandlerInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/errors/http-error-handler.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(config: HttpErrorHandlerConfig, injector: Injector, router: Router)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n \n HttpErrorHandlerConfig\n \n \n \n No\n \n \n \n \n injector\n \n \n Injector\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(req: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n req\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/I18nLoader.html":{"url":"injectables/I18nLoader.html","title":"injectable - I18nLoader","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n I18nLoader\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n addResources\n \n \n Public\n getFailedResources\n \n \n Public\n getTranslation\n \n \n Public\n loadResources\n \n \n Public\n removeResources\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(http: HttpClient, logService: LogService, euiAppConfig: EuiAppConfig)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n http\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n euiAppConfig\n \n \n EuiAppConfig\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n addResources\n \n \n \n \n \n \n \n addResources(config: I18nLoaderConfig)\n \n \n\n\n\n\n \n \n Adds resources\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n config\n \n I18nLoaderConfig\n \n\n \n No\n \n\n\n \n loader configuration\n\n \n \n \n \n \n \n \n \n Returns : I18nResourceImpl[]\n\n \n \n Observable | false\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n getFailedResources\n \n \n \n \n \n \n \n getFailedResources()\n \n \n\n\n\n\n \n \n Returns resources that failed\n\n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n getTranslation\n \n \n \n \n \n \n \n getTranslation(lang: string)\n \n \n\n\n\n\n \n \n Gets the translations from the server\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n Observable\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n loadResources\n \n \n \n \n \n \n \n loadResources(resources: I18nResourceImpl[], lang: string)\n \n \n\n\n\n\n \n \n Loads an array of resources, by language\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n resources\n \n I18nResourceImpl[]\n \n\n \n No\n \n\n\n \n the definition of the resources\n\n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n the resource language to load\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n Observable\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n removeResources\n \n \n \n \n \n \n \n removeResources(removedResources: I18nResourceImpl[])\n \n \n\n\n\n\n \n \n Removes resources from the loader instance\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n removedResources\n \n I18nResourceImpl[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/I18nModule.html":{"url":"modules/I18nModule.html","title":"module - I18nModule","body":"\n \n\n\n\n\n Modules\n I18nModule\n\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.module.ts\n \n\n\n\n \n Description\n \n \n I18N Module\n\n \n\n\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n forRoot()\n \n \n\n\n\n\n \n \n method called in your root module to provide the I18nModule\n\n\n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/I18nResourceImpl.html":{"url":"classes/I18nResourceImpl.html","title":"class - I18nResourceImpl","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n I18nResourceImpl\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.resource.ts\n \n\n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n compileTranslations\n \n \n Public\n equals\n \n \n Public\n getPath\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(prefix: string, suffix: string, compileTranslationsFn: (translations: any,lang: string) => void)\n \n \n\n \n \n Resource constructor\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n prefix\n \n \n string\n \n \n \n No\n \n \n \n the prefix of the resource\n\n \n \n \n suffix\n \n \n string\n \n \n \n No\n \n \n \n the suffix of the resource, optional parameter\n\n \n \n \n compileTranslationsFn\n \n \n function\n \n \n \n No\n \n \n \n compiler function, optional parameter\n\n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n compileTranslations\n \n \n \n \n \n \n \n compileTranslations(translations: any, lang: string)\n \n \n\n\n\n\n \n \n Translations pre-processor\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n translations\n \n any\n \n\n \n No\n \n\n\n \n the object to be pre-processed\n\n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n the translations language\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n the pre-processed translations\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n equals\n \n \n \n \n \n \n \n equals(obj: I18nResourceImpl)\n \n \n\n\n\n\n \n \n Indicates whether other object is equal-to this one.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n obj\n \n I18nResourceImpl\n \n\n \n No\n \n\n\n \n the reference object with which to compare\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true if this object is the same as obj, false otherwise\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n getPath\n \n \n \n \n \n \n \n getPath(lang: string)\n \n \n\n\n\n\n \n \n The path to the resource\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n the resource language\n\n \n \n \n \n \n \n \n \n Returns : string\n\n \n \n the path\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/I18nService.html":{"url":"injectables/I18nService.html","title":"injectable - I18nService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n I18nService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.service.ts\n \n\n\n\n \n Extends\n \n \n EuiLazyService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n addResources\n \n \n getState\n \n \n getState\n \n \n getState\n \n \n init\n \n \n Public\n lazyLoad\n \n \n lazyLoadInit\n \n \n onReady\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(baseGlobalConfig: GlobalConfig, translateService: TranslateService, logService: LogService, store: StoreService, document: Document)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n baseGlobalConfig\n \n \n GlobalConfig\n \n \n \n No\n \n \n \n \n translateService\n \n \n TranslateService\n \n \n \n No\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n document\n \n \n Document\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n addResources\n \n \n \n \n \n \n \n addResources(config: I18nLoaderConfig, moduleName?: string)\n \n \n\n\n\n\n \n \n Add resources based of a config loader\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n config\n \n I18nLoaderConfig\n \n\n \n No\n \n\n\n \n I18nLoaderConfig\n\n \n \n \n moduleName\n \n string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n Promise an EuiServiceStatus when translation has fully loaded\n\n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(mapFn?: (state?: T) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapFn\n \n function\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(key?: a)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n a\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable<>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(keyOrMapFn?: | string)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyOrMapFn\n \n | string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(langState?: T)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n langState\n \n T\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n lazyLoad\n \n \n \n \n \n \n \n lazyLoad(config: I18nLoaderConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n I18nLoaderConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n lazyLoadInit\n \n \n \n \n \n \nlazyLoadInit(moduleConfig: ModuleConfig, moduleName?: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n moduleConfig\n \n ModuleConfig\n \n\n \n No\n \n\n\n \n \n moduleName\n \n string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n onReady\n \n \n \n \n \n \nonReady(moduleName?: string)\n \n \n\n\n\n\n \n \n A pipe function that could serve as a wrapper of another observable\ne.g. ngx-translate i18n.onReady('my_module').pipe(switchMap(()=>translate.get('eui.KEY')));\nWARNING: onReady will emit only once for a loaded Module, going to another and then going back will not result\ninto another emission.\nfetch module name from the state.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n moduleName\n \n string\n \n\n \n Yes\n \n\n\n \n the name of the module that has been given through the eUI globalConfig. In case non provided\nfetch module name from the state.\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(langState: T | I18nState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n langState\n \n T | I18nState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/I18nServiceMock.html":{"url":"injectables/I18nServiceMock.html","title":"injectable - I18nServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n I18nServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.service.mock.ts\n \n\n\n\n \n Extends\n \n \n I18nService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addResources\n \n \n getState\n \n \n init\n \n \n lazyLoadInit\n \n \n updateState\n \n \n Public\n lazyLoad\n \n \n onReady\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n onLangChange\n \n \n currentLanguage\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addResources\n \n \n \n \n \n \naddResources()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(i18nState?: I18nState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n i18nState\n \n I18nState\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n lazyLoadInit\n \n \n \n \n \n \nlazyLoadInit()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(i18nState: I18nState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n i18nState\n \n I18nState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n lazyLoad\n \n \n \n \n \n \n \n lazyLoad(config: I18nLoaderConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n I18nLoaderConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n onReady\n \n \n \n \n \n \nonReady(moduleName?: string)\n \n \n\n\n\n\n \n \n A pipe function that could serve as a wrapper of another observable\ne.g. ngx-translate i18n.onReady('my_module').pipe(switchMap(()=>translate.get('eui.KEY')));\nWARNING: onReady will emit only once for a loaded Module, going to another and then going back will not result\ninto another emission.\nfetch module name from the state.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n moduleName\n \n string\n \n\n \n Yes\n \n\n\n \n the name of the module that has been given through the eUI globalConfig. In case non provided\nfetch module name from the state.\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n onLangChange\n \n \n\n \n \n getonLangChange()\n \n \n\n \n \n \n \n \n \n \n currentLanguage\n \n \n\n \n \n getcurrentLanguage()\n \n \n\n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/InitStoreAction.html":{"url":"classes/InitStoreAction.html","title":"class - InitStoreAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n InitStoreAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: literal type)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n literal type\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : literal type\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.INIT_STORE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/LoadedResources.html":{"url":"interfaces/LoadedResources.html","title":"interface - LoadedResources","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n LoadedResources\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n errors\n \n \n \n \n hasError\n \n \n \n \n translations\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n errors\n \n \n \n \n \n \n \n \n errors: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n hasError\n \n \n \n \n \n \n \n \n hasError: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n translations\n \n \n \n \n \n \n \n \n translations: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/LoadedResourcesError.html":{"url":"interfaces/LoadedResourcesError.html","title":"interface - LoadedResourcesError","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n LoadedResourcesError\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n error\n \n \n \n \n resource\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n error\n \n \n \n \n \n \n \n \n error: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n resource\n \n \n \n \n \n \n \n \n resource: I18nResourceImpl\n\n \n \n\n\n \n \n Type : I18nResourceImpl\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocalForageService.html":{"url":"injectables/LocalForageService.html","title":"injectable - LocalForageService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LocalForageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/local-forage.service.ts\n \n\n\n \n Description\n \n \n localforage service, using the localForage javascript library\nhttps://localforage.github.io/localForage\n\n \n\n \n Extends\n \n \n AsyncStorageService\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n ready\n \n \n remove\n \n \n set\n \n \n removeAsync\n \n \n setAsync\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(config: any, log: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n \n any\n \n \n \n No\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from localforage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable of value\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n the name of the storage service\n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \nready()\n \n \n\n\n\n\n \n \n reflects the readiness of the storage\n\n\n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove(key: string)\n \n \n\n\n\n\n \n \n removes an object from localforage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in localforage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n one time emission Observable\n\n \n \n \n \n \n \n \n \n \n \n \n removeAsync\n \n \n \n \n \n \nremoveAsync(key: string)\n \n \n\n\n\n\n \n \n asynchronous helper for remove function\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setAsync\n \n \n \n \n \n \nsetAsync(key: string, value: any)\n \n \n\n\n\n\n \n \n asynchronous helper for set function\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'LocalForageService'\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocalStorageService.html":{"url":"injectables/LocalStorageService.html","title":"injectable - LocalStorageService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LocalStorageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/local-storage.service.ts\n \n\n\n \n Description\n \n \n localStorage service\n\n \n\n \n Extends\n \n \n StorageService\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n remove\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(log: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from local storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n the value or undefined, if case of error\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n the name of the storage service\n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove(key: string)\n \n \n\n\n\n\n \n \n removes an object from local storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in local storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'LocalStorageService'\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocaleService.html":{"url":"injectables/LocaleService.html","title":"injectable - LocaleService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LocaleService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/locale/locale.service.ts\n \n\n\n\n \n Extends\n \n \n EuiService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addLocale\n \n \n getState\n \n \n getState\n \n \n getState\n \n \n init\n \n \n ngOnDestroy\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n previousLocale\n \n \n currentLocale\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(store: StoreService, baseGlobalConfig: GlobalConfig, locale_id: string, localeMapper: LocaleMapper, i18n: I18nService, log: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n baseGlobalConfig\n \n \n GlobalConfig\n \n \n \n No\n \n \n \n \n locale_id\n \n \n string\n \n \n \n No\n \n \n \n \n localeMapper\n \n \n LocaleMapper\n \n \n \n No\n \n \n \n \n i18n\n \n \n I18nService\n \n \n \n No\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addLocale\n \n \n \n \n \n \naddLocale(id: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(mapFn?: (state?: T) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapFn\n \n function\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(key?: a)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n a\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable<>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(keyOrMapFn?: | string)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyOrMapFn\n \n | string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(state?: LocaleState | undefined)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n LocaleState | undefined\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(state: LocaleState)\n \n \n\n\n\n\n \n \n dynamically load locale and update the state\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n LocaleState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n previousLocale\n \n \n\n \n \n getpreviousLocale()\n \n \n\n \n \n \n \n \n \n \n currentLocale\n \n \n\n \n \n getcurrentLocale()\n \n \n\n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocaleServiceMock.html":{"url":"injectables/LocaleServiceMock.html","title":"injectable - LocaleServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LocaleServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/locale/locale.service.mock.ts\n \n\n\n\n \n Extends\n \n \n LocaleService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getState\n \n \n init\n \n \n updateState\n \n \n addLocale\n \n \n ngOnDestroy\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(locale_id: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n locale_id\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(state?: LocaleState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n LocaleState\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(state: LocaleState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n LocaleState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n addLocale\n \n \n \n \n \n \naddLocale(id: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/LogModule.html":{"url":"modules/LogModule.html","title":"module - LogModule","body":"\n \n\n\n\n\n Modules\n LogModule\n\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/services/log/log.module.ts\n \n\n\n\n \n Description\n \n \n Log Module\n\n \n\n\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n forChild\n \n \n \n \n \n \n \n forChild(config: LogConfig)\n \n \n\n\n\n\n \n \n method called in your other (non root, lazy loaded) modules to import a different instance of LogService\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n \n DEFAULT_LOG_CONFIG\n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n forRoot(config: LogConfig)\n \n \n\n\n\n\n \n \n method called in your root module to provide the LogService\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n \n DEFAULT_LOG_CONFIG\n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LogService.html":{"url":"injectables/LogService.html","title":"injectable - LogService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n LogService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/log/log.service.ts\n \n\n\n \n Description\n \n \n Log service, responsible for getting or creating loggers. It itself acts as a base logger\n\n \n\n \n Extends\n \n \n Logger\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getLogger\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(name: string, level: LogLevel, appenders: LogAppender[])\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n \n string\n \n \n \n No\n \n \n \n \n level\n \n \n LogLevel\n \n \n \n No\n \n \n \n \n appenders\n \n \n LogAppender[]\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getLogger\n \n \n \n \n \n \ngetLogger(loggerName: string, persist)\n \n \n\n\n\n\n \n \n Gets a logger by name. If the logger does not exist, it is created\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n Description\n \n \n \n \n loggerName\n \n string\n \n\n \n No\n \n\n \n \n\n \n logger name\n\n \n \n \n persist\n \n \n\n \n No\n \n\n \n false\n \n\n \n optional parameter. Set it to true if you want to reuse the logger. By default, it is set to false\n\n \n \n \n \n \n \n \n \n Returns : Logger\n\n \n \n the logger\n\n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/LogServiceMock.html":{"url":"classes/LogServiceMock.html","title":"class - LogServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n LogServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/log/log.service.mock.ts\n \n\n\n\n \n Extends\n \n \n LoggerMock\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getLogger\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getLogger\n \n \n \n \n \n \ngetLogger()\n \n \n\n\n\n\n \n \n\n \n Returns : LoggerMock\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ModuleLoadEvent.html":{"url":"interfaces/ModuleLoadEvent.html","title":"interface - ModuleLoadEvent","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ModuleLoadEvent\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n error\n \n \n \n \n name\n \n \n \n \n ready\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n error\n \n \n \n \n \n \n \n \n error: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \n \n \n ready: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/OpenIdConnectInterceptor.html":{"url":"interceptors/OpenIdConnectInterceptor.html","title":"interceptor - OpenIdConnectInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n OpenIdConnectInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/openid/openid-connect.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n defaultMaximumRequestRetries\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler, retryCount: number, retryCallback?: Subject>)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n \n \n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n \n \n\n \n \n retryCount\n \n number\n \n\n \n No\n \n\n \n 0\n \n\n \n \n retryCallback\n \n Subject>\n \n\n \n Yes\n \n\n \n \n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n defaultMaximumRequestRetries\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 1\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/OpenIdConnectService.html":{"url":"injectables/OpenIdConnectService.html","title":"injectable - OpenIdConnectService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n OpenIdConnectService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/openid/openid-connect.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getUserDetails\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getUserDetails\n \n \n \n \n \n \ngetUserDetails()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/OpenIdConnectServiceMock.html":{"url":"classes/OpenIdConnectServiceMock.html","title":"class - OpenIdConnectServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n OpenIdConnectServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/openid/openid-connect.service.mock.ts\n \n\n\n\n \n Extends\n \n \n OpenIdConnectService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getUserDetails\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getUserDetails\n \n \n \n \n \n \ngetUserDetails()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/OpenIdConnectUserDetails.html":{"url":"interfaces/OpenIdConnectUserDetails.html","title":"interface - OpenIdConnectUserDetails","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n OpenIdConnectUserDetails\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/openid/openid-connect.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n departmentNumber\n \n \n \n Optional\n \n domain\n \n \n \n Optional\n \n domainUsername\n \n \n \n Optional\n \n email\n \n \n \n Optional\n \n firstName\n \n \n \n Optional\n \n lastName\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n departmentNumber\n \n \n \n \n \n \n \n \n departmentNumber: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n domain\n \n \n \n \n \n \n \n \n domain: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n domainUsername\n \n \n \n \n \n \n \n \n domainUsername: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n email\n \n \n \n \n \n \n \n \n email: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n firstName\n \n \n \n \n \n \n \n \n firstName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n lastName\n \n \n \n \n \n \n \n \n lastName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/RemoveApiQueueItemAction.html":{"url":"classes/RemoveApiQueueItemAction.html","title":"class - RemoveApiQueueItemAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n RemoveApiQueueItemAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.REMOVE_API_QUEUE_ITEM\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ResourceError.html":{"url":"interfaces/ResourceError.html","title":"interface - ResourceError","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ResourceError\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/i18n/i18n.loader.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n error\n \n \n \n \n isError\n \n \n \n Optional\n \n resource\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n error\n \n \n \n \n \n \n \n \n error: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n isError\n \n \n \n \n \n \n \n \n isError: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n resource\n \n \n \n \n \n \n \n \n resource: I18nResourceImpl\n\n \n \n\n\n \n \n Type : I18nResourceImpl\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/RouterMock.html":{"url":"classes/RouterMock.html","title":"class - RouterMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n RouterMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/router.mock.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n events\n \n \n Public\n ne\n \n \n Public\n routerState\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n createUrlTree\n \n \n navigate\n \n \n navigateByUrl\n \n \n serializeUrl\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n events\n \n \n \n \n \n \n Default value : new Observable((observer) => {\n observer.next(this.ne);\n observer.complete();\n })\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n ne\n \n \n \n \n \n \n Default value : new NavigationEnd(0, 'http://localhost:4200/login', 'http://localhost:4200/login')\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n routerState\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n root: {},\n }\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n createUrlTree\n \n \n \n \n \n \ncreateUrlTree()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n navigate\n \n \n \n \n \n \nnavigate(url: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n navigateByUrl\n \n \n \n \n \n \nnavigateByUrl(url: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n serializeUrl\n \n \n \n \n \n \nserializeUrl()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/SessionStorageService.html":{"url":"injectables/SessionStorageService.html","title":"injectable - SessionStorageService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n SessionStorageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/session-storage.service.ts\n \n\n\n \n Description\n \n \n sessionStorage service\n\n \n\n \n Extends\n \n \n StorageService\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n remove\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(log: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n log\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from session storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n the value or undefined, if case of error\n\n \n \n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n the name of the storage service\n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove(key: string)\n \n \n\n\n\n\n \n \n removes an object from session storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in session storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Static\n NAME\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'SessionStorageService'\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/StorageService.html":{"url":"classes/StorageService.html","title":"class - StorageService","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n StorageService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/storage.service.ts\n \n\n\n \n Description\n \n \n Generic storage service. Concrete storage services must extend this class\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Abstract\n get\n \n \n Abstract\n get\n \n \n Abstract\n name\n \n \n Abstract\n remove\n \n \n Abstract\n set\n \n \n Abstract\n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Abstract\n get\n \n \n \n \n \n \n \n get(key: string)\n \n \n\n\n\n\n \n \n retrieve an object from storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n the value or undefined, if case of error\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n get\n \n \n \n \n \n \n \n get(key: string)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : T\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n name\n \n \n \n \n \n \n \n name()\n \n \n\n\n\n\n \n \n utility function, to determine the storage implementation\n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n Abstract\n remove\n \n \n \n \n \n \n \n remove(key: string)\n \n \n\n\n\n\n \n \n removes an object from storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n set\n \n \n \n \n \n \n \n set(key: string, value: any)\n \n \n\n\n\n\n \n \n sets an object in storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n the associated key\n\n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n the value to set\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Abstract\n set\n \n \n \n \n \n \n \n set(key: string, value: T)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n value\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/StorageServiceMock.html":{"url":"classes/StorageServiceMock.html","title":"class - StorageServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n StorageServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/storage/storage.service.mock.ts\n \n\n\n\n \n Extends\n \n \n StorageService\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n get\n \n \n name\n \n \n remove\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget()\n \n \n\n\n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \nname()\n \n \n\n\n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \nremove()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \nset()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/StoreMock.html":{"url":"classes/StoreMock.html","title":"class - StoreMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n StoreMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/store.mock.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n state\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n debounceTime\n \n \n dispatch\n \n \n distinctUntilChanged\n \n \n select\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n state\n \n \n \n \n \n \n Type : CoreState\n\n \n \n \n \n Default value : globalState\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n debounceTime\n \n \n \n \n \n \ndebounceTime()\n \n \n\n\n\n\n \n \n\n \n Returns : StoreMock\n\n \n \n \n \n \n \n \n \n \n \n \n dispatch\n \n \n \n \n \n \ndispatch()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n distinctUntilChanged\n \n \n \n \n \n \ndistinctUntilChanged()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \nselect(selector)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Optional\n \n \n \n \n selector\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/StoreService.html":{"url":"injectables/StoreService.html","title":"injectable - StoreService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n StoreService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/store.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addAutoSaveHandler\n \n \n dispatch\n \n \n dispatchAction\n \n \n handleAutoSave\n \n \n init\n \n \n select\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(store: Store, logService: LogService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n store\n \n \n Store\n \n \n \n No\n \n \n \n \n logService\n \n \n LogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addAutoSaveHandler\n \n \n \n \n \n \naddAutoSaveHandler(stateSlice: string, handler: Function)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n stateSlice\n \n string\n \n\n \n No\n \n\n\n \n \n handler\n \n Function\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n dispatch\n \n \n \n \n \n \ndispatch(action: any)\n \n \n\n\n\n\n \n \n Proxy to NGRX store.dispatch()\nthat allows to intercept if the store is present\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n action\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n dispatchAction\n \n \n \n \n \n \ndispatchAction(state: T, actionKey: string, reducer: ActionReducer)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n T\n \n\n \n No\n \n\n\n \n \n actionKey\n \n string\n \n\n \n No\n \n\n\n \n \n reducer\n \n ActionReducer\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n handleAutoSave\n \n \n \n \n \n \nhandleAutoSave()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(version?: string, storageType?: BrowserStorageType)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n version\n \n string\n \n\n \n Yes\n \n\n\n \n \n storageType\n \n BrowserStorageType\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \nselect(key: any)\n \n \n\n\n\n\n \n \n Proxy to NGRX store.select()\nthat allows to intercept if the store is present\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable<>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/StoreServiceMock.html":{"url":"injectables/StoreServiceMock.html","title":"injectable - StoreServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n StoreServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/store.service.mock.ts\n \n\n\n\n \n Extends\n \n \n StoreService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n addAutoSaveHandler\n \n \n dispatch\n \n \n handleAutoSave\n \n \n init\n \n \n select\n \n \n dispatchAction\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addAutoSaveHandler\n \n \n \n \n \n \naddAutoSaveHandler()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n dispatch\n \n \n \n \n \n \ndispatch()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n handleAutoSave\n \n \n \n \n \n \nhandleAutoSave()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \nselect()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n dispatchAction\n \n \n \n \n \n \ndispatchAction(state: T, actionKey: string, reducer: ActionReducer)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n state\n \n T\n \n\n \n No\n \n\n\n \n \n actionKey\n \n string\n \n\n \n No\n \n\n\n \n \n reducer\n \n ActionReducer\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/TimeZone.html":{"url":"interfaces/TimeZone.html","title":"interface - TimeZone","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n TimeZone\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-timezone.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n desc\n \n \n \n \n name\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n desc\n \n \n \n \n \n \n \n \n desc: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/TranslateMockDirective.html":{"url":"directives/TranslateMockDirective.html","title":"directive - TranslateMockDirective","body":"\n \n\n\n\n\n\n\n\n\n Directives\n TranslateMockDirective\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts\n \n\n\n\n\n \n Implements\n \n \n AfterViewChecked\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [translate]\n \n\n\n\n\n \n \n \n\n \n Index\n \n \n\n\n \n \n Inputs\n \n \n \n \n \n \n translateParams\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(_element: ElementRef)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n _element\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n translateParams\n \n \n \n \n Type : any\n\n \n \n \n \n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TranslateMockModule.html":{"url":"modules/TranslateMockModule.html","title":"module - TranslateMockModule","body":"\n \n\n\n\n\n Modules\n TranslateMockModule\n\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts\n \n\n\n\n\n\n \n \n \n Declarations\n \n \n TranslateMockDirective\n \n \n TranslateMockPipe\n \n \n \n \n Exports\n \n \n TranslateMockDirective\n \n \n TranslateMockPipe\n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/TranslateMockPipe.html":{"url":"pipes/TranslateMockPipe.html","title":"pipe - TranslateMockPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Pipes\n TranslateMockPipe\n\n\n\n \n Info\n \n\n\n\n \n\n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts\n \n\n\n\n\n \n Metadata\n \n \n \n Name\n translate\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \ntransform(text: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n text\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TranslateServiceMock.html":{"url":"classes/TranslateServiceMock.html","title":"class - TranslateServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TranslateServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/mocks/translate.module.mock.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n currentLang\n \n \n isLoaded\n \n \n isLoadedSubject\n \n \n languages\n \n \n onDefaultLangChange\n \n \n onDefaultLangChangeSubject\n \n \n onLangChange\n \n \n onLangChangeSubject\n \n \n onTranslationChange\n \n \n onTranslationChangeSubject\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addLangs\n \n \n get\n \n \n getBrowserLang\n \n \n getLangs\n \n \n getTranslation\n \n \n instant\n \n \n setDefaultLang\n \n \n use\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n currentLang\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n isLoaded\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.isLoadedSubject.asObservable()\n \n \n\n\n \n \n \n \n \n \n \n \n isLoadedSubject\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(true)\n \n \n\n\n \n \n \n \n \n \n \n \n languages\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [DEFAULT_LANGUAGE]\n \n \n\n\n \n \n \n \n \n \n \n \n onDefaultLangChange\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.onDefaultLangChangeSubject.asObservable()\n \n \n\n\n \n \n \n \n \n \n \n \n onDefaultLangChangeSubject\n \n \n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n\n\n \n \n \n \n \n \n \n \n onLangChange\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.onLangChangeSubject.asObservable()\n \n \n\n\n \n \n \n \n \n \n \n \n onLangChangeSubject\n \n \n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n\n\n \n \n \n \n \n \n \n \n onTranslationChange\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.onTranslationChangeSubject.asObservable()\n \n \n\n\n \n \n \n \n \n \n \n \n onTranslationChangeSubject\n \n \n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addLangs\n \n \n \n \n \n \naddLangs(langs: string[])\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n langs\n \n string[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \nget(content: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n content\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getBrowserLang\n \n \n \n \n \n \ngetBrowserLang()\n \n \n\n\n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n getLangs\n \n \n \n \n \n \ngetLangs()\n \n \n\n\n\n\n \n \n\n \n Returns : string[]\n\n \n \n \n \n \n \n \n \n \n \n \n getTranslation\n \n \n \n \n \n \ngetTranslation()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n instant\n \n \n \n \n \n \ninstant(key: string | string[])\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string | string[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setDefaultLang\n \n \n \n \n \n \nsetDefaultLang(lang: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n use\n \n \n \n \n \n \nuse(lang: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n lang\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateAppConnectionAction.html":{"url":"classes/UpdateAppConnectionAction.html","title":"class - UpdateAppConnectionAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateAppConnectionAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: boolean)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n boolean\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : boolean\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.UPDATE_APP_CONNECTION\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateAppStatusAction.html":{"url":"classes/UpdateAppStatusAction.html","title":"class - UpdateAppStatusAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateAppStatusAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.UPDATE_APP_STATUS\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateAppVersionAction.html":{"url":"classes/UpdateAppVersionAction.html","title":"class - UpdateAppVersionAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateAppVersionAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.UPDATE_APP_VERSION\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateCurrentModuleAction.html":{"url":"classes/UpdateCurrentModuleAction.html","title":"class - UpdateCurrentModuleAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateCurrentModuleAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: string)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : string\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreAppActionTypes.UPDATE_CURRENT_MODULE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateI18nStateAction.html":{"url":"classes/UpdateI18nStateAction.html","title":"class - UpdateI18nStateAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateI18nStateAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/i18n.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: I18nState)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n I18nState\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : I18nState\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreI18nActionTypes.UPDATE_I18N_STATE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateLocaleStateAction.html":{"url":"classes/UpdateLocaleStateAction.html","title":"class - UpdateLocaleStateAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateLocaleStateAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/locale.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: LocaleState)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n LocaleState\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : LocaleState\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreLocaleActionTypes.UPDATE_LOCALE_STATE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateNotificationsListAction.html":{"url":"classes/UpdateNotificationsListAction.html","title":"class - UpdateNotificationsListAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateNotificationsListAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/notifications.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: any[])\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n any[]\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : any[]\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreNotificationsActionTypes.UPDATE_NOTIFICATIONS_LIST\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserDashboardAction.html":{"url":"classes/UpdateUserDashboardAction.html","title":"class - UpdateUserDashboardAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserDashboardAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: any)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : any\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_DASHBOARD\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserDetailsAction.html":{"url":"classes/UpdateUserDetailsAction.html","title":"class - UpdateUserDetailsAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserDetailsAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: UserDetails)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n UserDetails\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : UserDetails\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_DETAILS\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserPreferencesAction.html":{"url":"classes/UpdateUserPreferencesAction.html","title":"class - UpdateUserPreferencesAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserPreferencesAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: UserPreferences)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n UserPreferences\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : UserPreferences\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_PREFERENCES\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserRightsAction.html":{"url":"classes/UpdateUserRightsAction.html","title":"class - UpdateUserRightsAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserRightsAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: UxUserRight[])\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n UxUserRight[]\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : UxUserRight[]\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_RIGHTS\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UpdateUserStateAction.html":{"url":"classes/UpdateUserStateAction.html","title":"class - UpdateUserStateAction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UpdateUserStateAction\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n\n\n\n\n \n Implements\n \n \n Action\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n payload\n \n \n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(payload: UserState)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n payload\n \n \n UserState\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n payload\n \n \n \n \n \n \n Type : UserState\n\n \n \n\n\n \n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n Default value : CoreUserActionTypes.UPDATE_USER_STATE\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UserService.html":{"url":"injectables/UserService.html","title":"injectable - UserService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UserService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/user/user.service.ts\n \n\n\n\n \n Extends\n \n \n EuiService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getState\n \n \n getState\n \n \n getState\n \n \n init\n \n \n updateState\n \n \n updateState\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(store: StoreService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(mapFn?: (state?: T) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapFn\n \n function\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(key?: a)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n a\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable<>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(keyOrMapFn?: | string)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyOrMapFn\n \n | string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(userState: T)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(userState: T)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n T\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(slice, reducer: (state: any,undefined) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n slice\n \n \n\n \n No\n \n\n\n \n \n reducer\n \n function\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(userState: K | T, reducer?: any)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n K | T\n \n\n \n No\n \n\n\n \n \n reducer\n \n any\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UserServiceMock.html":{"url":"injectables/UserServiceMock.html","title":"injectable - UserServiceMock","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UserServiceMock\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/user/user.service.mock.ts\n \n\n\n\n \n Extends\n \n \n UserService\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getState\n \n \n getState\n \n \n getState\n \n \n init\n \n \n updateState\n \n \n updateState\n \n \n updateState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(mapFn?: (state?: T) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapFn\n \n function\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(key?: a)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n a\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable<>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getState\n \n \n \n \n \n \ngetState(keyOrMapFn?: | string)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyOrMapFn\n \n | string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \ninit(userState: UserState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n UserState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(userState: UserState)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n UserState\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(slice, reducer: (state: any,undefined) => void)\n \n \n\n\n\n \n \n Type parameters :\n \n a\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n slice\n \n \n\n \n No\n \n\n\n \n \n reducer\n \n function\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateState\n \n \n \n \n \n \nupdateState(userState: K | T, reducer?: any)\n \n \n\n\n\n \n \n Type parameters :\n \n K\n \n \n \n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n userState\n \n K | T\n \n\n \n No\n \n\n\n \n \n reducer\n \n any\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UxDynamicComponentService.html":{"url":"injectables/UxDynamicComponentService.html","title":"injectable - UxDynamicComponentService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UxDynamicComponentService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-dynamic-component/ux-dynamic-component.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n add\n \n \n Public\n remove\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(componentFactoryResolver: ComponentFactoryResolver, injector: Injector, appRef: ApplicationRef)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n componentFactoryResolver\n \n \n ComponentFactoryResolver\n \n \n \n No\n \n \n \n \n injector\n \n \n Injector\n \n \n \n No\n \n \n \n \n appRef\n \n \n ApplicationRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n add\n \n \n \n \n \n \n \n add(component: ComponentType, el?: ElementRef, config?: any)\n \n \n\n\n\n \n \n Type parameters :\n \n T\n \n \n \n\n \n \n Adds a component to portal host dynamically\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n component\n \n ComponentType\n \n\n \n No\n \n\n\n \n The component to be injected\n\n \n \n \n el\n \n ElementRef\n \n\n \n Yes\n \n\n\n \n The element reference for the component to be injected\n\n \n \n \n config\n \n any\n \n\n \n Yes\n \n\n\n \n The data to be passed (config) for the DYNAMIC_COMPONENT_CONFIG token\n\n \n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n remove\n \n \n \n \n \n \n \n remove(portalHostRef: DomPortalOutlet)\n \n \n\n\n\n\n \n \n detaches a portalHost\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n portalHostRef\n \n DomPortalOutlet\n \n\n \n No\n \n\n\n \n reference of portal host to be detached\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UxDynamicMenuService.html":{"url":"injectables/UxDynamicMenuService.html","title":"injectable - UxDynamicMenuService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UxDynamicMenuService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-dynamic-menu/ux-dynamic-menu.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n menuLinks\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n filterUxLinksWithRights\n \n \n getMenuLinks\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(uxPermission: EuiPermissionService, store: StoreService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n uxPermission\n \n \n EuiPermissionService\n \n \n \n No\n \n \n \n \n store\n \n \n StoreService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n filterUxLinksWithRights\n \n \n \n \n \n \nfilterUxLinksWithRights(links: Array)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n links\n \n Array\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getMenuLinks\n \n \n \n \n \n \ngetMenuLinks()\n \n \n\n\n\n\n \n \n\n \n Returns : LINK[]\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n menuLinks\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UxErrorFeedbackService.html":{"url":"injectables/UxErrorFeedbackService.html","title":"injectable - UxErrorFeedbackService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UxErrorFeedbackService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-error-feedback/ux-error-feedback.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n errors\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n clearError\n \n \n createGlobalErrorManager\n \n \n createLocalErrorManager\n \n \n growlError\n \n \n publishError\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(asService: UxAppShellService, translateService: TranslateService)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n asService\n \n \n UxAppShellService\n \n \n \n No\n \n \n \n \n translateService\n \n \n TranslateService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n clearError\n \n \n \n \n \n \nclearError(id?: string, groupId?: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n Yes\n \n\n\n \n \n groupId\n \n string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n createGlobalErrorManager\n \n \n \n \n \n \ncreateGlobalErrorManager()\n \n \n\n\n\n\n \n \n\n \n Returns : UxErrorManager\n\n \n \n \n \n \n \n \n \n \n \n \n createLocalErrorManager\n \n \n \n \n \n \ncreateLocalErrorManager()\n \n \n\n\n\n\n \n \n\n \n Returns : UxErrorManager\n\n \n \n \n \n \n \n \n \n \n \n \n growlError\n \n \n \n \n \n \ngrowlError(err: UxHttpErrorResponse)\n \n \n\n\n\n\n \n \n Growl errors\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n err\n \n UxHttpErrorResponse\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n publishError\n \n \n \n \n \n \npublishError(err: UxHttpErrorResponse, instanceId?: string, groupId?: string, accumulate?: boolean)\n \n \n\n\n\n\n \n \n Publishes errors to targeted components\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n err\n \n UxHttpErrorResponse\n \n\n \n No\n \n\n\n \n \n instanceId\n \n string\n \n\n \n Yes\n \n\n\n \n \n groupId\n \n string\n \n\n \n Yes\n \n\n\n \n \n accumulate\n \n boolean\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n errors\n \n \n \n \n \n \n Default value : new Subject()\n \n \n\n\n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UxErrorManager.html":{"url":"classes/UxErrorManager.html","title":"class - UxErrorManager","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UxErrorManager\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-error-feedback/ux-error-feedback.service.ts\n \n\n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Readonly\n httpErrorOperator\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n clearError\n \n \n errors\n \n \n growlError\n \n \n publishError\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(uxErrorFeedbackService: UxErrorFeedbackService, isGlobal?: boolean)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n uxErrorFeedbackService\n \n \n UxErrorFeedbackService\n \n \n \n No\n \n \n \n \n isGlobal\n \n \n boolean\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Readonly\n httpErrorOperator\n \n \n \n \n \n \n Default value : withUxErrorManager(this)\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n clearError\n \n \n \n \n \n \nclearError(groupId?: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n groupId\n \n string\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n errors\n \n \n \n \n \n \nerrors()\n \n \n\n\n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n growlError\n \n \n \n \n \n \ngrowlError(err: UxHttpErrorResponse)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n err\n \n UxHttpErrorResponse\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n publishError\n \n \n \n \n \n \npublishError(err: UxHttpErrorResponse, groupId?: string, accumulate?: boolean)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n err\n \n UxHttpErrorResponse\n \n\n \n No\n \n\n\n \n \n groupId\n \n string\n \n\n \n Yes\n \n\n\n \n \n accumulate\n \n boolean\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/UxRequestErrorModelInterceptor.html":{"url":"interceptors/UxRequestErrorModelInterceptor.html","title":"interceptor - UxRequestErrorModelInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n\n Interceptors\n UxRequestErrorModelInterceptor\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/interceptors/ux-request-error-model.interceptor.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(errorMappingHandler: ErrorMappingHandler)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n errorMappingHandler\n \n \n ErrorMappingHandler\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \nintercept(req: HttpRequest, next: HttpHandler)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n req\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UxRootInjectorGuard.html":{"url":"classes/UxRootInjectorGuard.html","title":"class - UxRootInjectorGuard","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UxRootInjectorGuard\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-root-injector.guard.ts\n \n\n\n\n\n\n\n\n \n Constructor\n \n \n \n \nconstructor(type: Type)\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n type\n \n \n Type\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UxTimezoneService.html":{"url":"injectables/UxTimezoneService.html","title":"injectable - UxTimezoneService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UxTimezoneService\n\n\n\n \n Info\n \n\n\n\n \n \n File\n \n \n packages/eui/packages/core/src/lib/services/ux-timezone.service.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getCountries\n \n \n getTimezone\n \n \n getTimezones\n \n \n iso2country\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getCountries\n \n \n \n \n \n \ngetCountries()\n \n \n\n\n\n\n \n \n Gets the list of ISO-codes for all countries\n\n\n \n Returns : string[]\n\n \n \n \n \n \n \n \n \n \n \n \n getTimezone\n \n \n \n \n \n \ngetTimezone(tz: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n tz\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : TimeZone\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getTimezones\n \n \n \n \n \n \ngetTimezones()\n \n \n\n\n\n\n \n \n\n \n Returns : TimeZone[]\n\n \n \n \n \n \n \n \n \n \n \n \n iso2country\n \n \n \n \n \n \niso2country(iso: string)\n \n \n\n\n\n\n \n \n Convert country ISO code to country name (in english)\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n iso\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @angular/animations : 16.2.10\n \n @angular/common : 16.2.10\n \n @angular/compiler : 16.2.10\n \n @angular/core : 16.2.10\n \n @angular/forms : 16.2.10\n \n @angular/platform-browser : 16.2.10\n \n @angular/platform-browser-dynamic : 16.2.10\n \n @angular/router : 16.2.10\n \n @angular/compiler-cli : 16.2.10\n \n @angular/elements : 16.2.10\n \n @angular/language-service : 16.2.10\n \n @angular/service-worker : 16.2.10\n \n @angular-devkit/build-angular : 16.2.6\n \n @angular/cli : 16.2.6\n \n ng-packagr : 16.2.3\n \n @angular/cdk : 16.2.9\n \n @angular/material : 16.2.9\n \n @angular/material-moment-adapter : 16.2.9\n \n angular-animations : 0.11.0\n \n @angular-eslint/builder : 16.2.0\n \n @angular-eslint/eslint-plugin : 16.2.0\n \n @angular-eslint/eslint-plugin-template : 16.2.0\n \n @angular-eslint/schematics : 16.2.0\n \n @angular-eslint/template-parser : 16.2.0\n \n eslint-plugin-prefer-arrow : 1.2.3\n \n eslint-plugin-jsdoc : 43.1.1\n \n @typescript-eslint/parser : 5.59.7\n \n @typescript-eslint/eslint-plugin : 5.59.7\n \n eslint-plugin-import : 2.27.5\n \n @webcomponents/custom-elements : 1.6.0\n \n eslint : 8.41.0\n \n rxjs : 7.8.1\n \n tslib : ^2.3.0\n \n zone.js : 0.13.1\n \n typescript : 4.9.5\n \n @types/jasmine : 4.3.5\n \n @types/node : 18.16.3\n \n moment-timezone : 0.5.43\n \n jasmine-core : 4.6.0\n \n karma : 6.4.2\n \n karma-chrome-launcher : 3.2.0\n \n karma-coverage : 2.2.0\n \n karma-jasmine : 5.1.0\n \n karma-jasmine-html-reporter : 2.0.0\n \n karma-cli : 2.0.0\n \n karma-coverage-istanbul-reporter : 3.0.3\n \n karma-sourcemap-loader : 0.4.0\n \n karma-remap-coverage : 0.1.5\n \n jasmine-marbles : 0.9.2\n \n jasmine-spec-reporter : 7.0.0\n \n ts-node : 10.9.1\n \n @types/jasminewd2 : 2.0.10\n \n @types/lodash : 4.14.194\n \n @ngrx/effects : 16.3.0\n \n @ngrx/router-store : 16.3.0\n \n @ngrx/schematics : 16.3.0\n \n @ngrx/store : 16.3.0\n \n @ngrx/store-devtools : 16.3.0\n \n @ngrx/entity : 16.3.0\n \n @ngrx/component : 16.3.0\n \n @ngrx/component-store : 16.3.0\n \n ngrx-store-freeze : 0.2.4\n \n reselect : 4.1.8\n \n @ngx-translate/core : 15.0.0\n \n @ngx-translate/http-loader : 8.0.0\n \n ngx-infinite-scroll : 16.0.0\n \n cleave.js : 1.6.0\n \n @types/cleave.js : 1.4.8\n \n ngx-mask : 14.2.4\n \n quill : 2.0.0-dev.4\n \n @types/quill : 2.0.11\n \n quill-better-table : 1.2.10\n \n intl : 1.2.5\n \n resize-observer-polyfill : 1.5.1\n \n classlist.js : 1.1.20150312\n \n xhr-mock : 2.5.1\n \n ngx-device-detector : 3.0.0\n \n @compodoc/compodoc : 1.1.21\n \n @compodoc/ngd-transformer : 2.1.3\n \n @types/marked : 4.3.0\n \n marked : 4.3.0\n \n prismjs : 1.29.0\n \n oidc-client : 1.11.5\n \n jsrsasign : 10.8.6\n \n web-animations-js : 2.3.2\n \n event-source-polyfill : 1.0.31\n \n lodash-es : 4.17.21\n \n localforage : 1.10.0\n \n hammerjs : 2.0.8\n \n handlebars : 4.7.7\n \n pikaday : 1.8.2\n \n apexcharts : 3.41.0\n \n @stackblitz/sdk : 1.9.0\n \n prettier : 2.8.8\n \n prettier-eslint : 15.0.1\n \n eslint-config-prettier : 8.8.0\n \n eslint-plugin-prettier : 4.2.1\n \n @eui/styles-base : 16.2.4\n \n @eui/ecl : 16.2.4\n \n @eui/tools : ^6.0.0\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/enumerations.html":{"url":"miscellaneous/enumerations.html","title":"miscellaneous-enumerations - enumerations","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Enumerations\n\n\n\n Index\n \n \n \n \n \n \n BrowserStorageType (packages/.../store.service.ts)\n \n \n CoreAppActionTypes (packages/.../app.actions.ts)\n \n \n CoreI18nActionTypes (packages/.../i18n.actions.ts)\n \n \n CoreLocaleActionTypes (packages/.../locale.actions.ts)\n \n \n CoreNotificationsActionTypes (packages/.../notifications.actions.ts)\n \n \n CoreUserActionTypes (packages/.../user.actions.ts)\n \n \n \n \n \n \n\n\n packages/eui/packages/core/src/lib/services/store/store.service.ts\n \n \n \n \n \n \n BrowserStorageType\n \n \n \n \n local\n \n \n \n \n session\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n \n \n \n \n \n CoreAppActionTypes\n \n \n \n \n INIT_STORE\n \n \n \n \n Value : [App] Init store\n \n \n \n \n UPDATE_APP_VERSION\n \n \n \n \n Value : [App] Update version\n \n \n \n \n UPDATE_APP_CONNECTION\n \n \n \n \n Value : [App] Update connection\n \n \n \n \n ADD_APP_LOADED_CONFIG_MODULES\n \n \n \n \n Value : [App] Update app loaded config modules\n \n \n \n \n UPDATE_APP_STATUS\n \n \n \n \n Value : [App] Update status\n \n \n \n \n UPDATE_CURRENT_MODULE\n \n \n \n \n Value : [App] Update current module\n \n \n \n \n ACTIVATED_ROUTE\n \n \n \n \n Value : [App] Activated route\n \n \n \n \n ADD_API_QUEUE_ITEM\n \n \n \n \n Value : [App] Add API queue item\n \n \n \n \n REMOVE_API_QUEUE_ITEM\n \n \n \n \n Value : [App] Remove API queue item\n \n \n \n \n EMPTY_API_QUEUE\n \n \n \n \n Value : [App] empty API queue\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/i18n.actions.ts\n \n \n \n \n \n \n CoreI18nActionTypes\n \n \n \n \n UPDATE_I18N_STATE\n \n \n \n \n Value : [I18n] Update I18n State\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/locale.actions.ts\n \n \n \n \n \n \n CoreLocaleActionTypes\n \n \n \n \n UPDATE_LOCALE_STATE\n \n \n \n \n Value : [Locale] Update Locale State\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/notifications.actions.ts\n \n \n \n \n \n \n CoreNotificationsActionTypes\n \n \n \n \n UPDATE_NOTIFICATIONS_LIST\n \n \n \n \n Value : [Notif] Update list\n \n \n \n \n\n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n \n \n \n \n \n CoreUserActionTypes\n \n \n \n \n UPDATE_USER_STATE\n \n \n \n \n Value : [User] Update User state\n \n \n \n \n UPDATE_USER_DETAILS\n \n \n \n \n Value : [User] Update details\n \n \n \n \n UPDATE_USER_PREFERENCES\n \n \n \n \n Value : [User] Update preferences\n \n \n \n \n UPDATE_USER_RIGHTS\n \n \n \n \n Value : [User] Update rights\n \n \n \n \n UPDATE_USER_DASHBOARD\n \n \n \n \n Value : [User] Update dashboard\n \n \n \n \n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n AlertHttpErrorCallbackFn (packages/.../http-error-handler-callback-functions.ts)\n \n \n ConsoleHttpErrorCallbackFn (packages/.../http-error-handler-callback-functions.ts)\n \n \n euiLogServiceFactory (packages/.../log.ts)\n \n \n getCoreChildProviders (packages/.../eui-startup.ts)\n \n \n getCoreProviders (packages/.../eui-startup.ts)\n \n \n getDependencyProviders (packages/.../eui-startup.ts)\n \n \n getGlobalConfig (packages/.../tokens.ts)\n \n \n getHttpErrorHandlingConfig (packages/.../tokens.ts)\n \n \n getLogAppendersConfig (packages/.../log.ts)\n \n \n getModuleConfig (packages/.../tokens.ts)\n \n \n getRootLogConfig (packages/.../tokens.ts)\n \n \n getShowConnectionStatus (packages/.../tokens.ts)\n \n \n GrowlHttpErrorCallbackFn (packages/.../http-error-handler-callback-functions.ts)\n \n \n isLogConfigDefined (packages/.../log.ts)\n \n \n loadEuiDynamicEnvironmentConfig (packages/.../eui-pre-init-app.ts)\n \n \n localStorageSync (packages/.../meta.reducers.ts)\n \n \n LogHttpErrorCallbackFn (packages/.../http-error-handler-callback-functions.ts)\n \n \n logServiceFactory (packages/.../log.ts)\n \n \n mergeAppHandlerConfigToAppConfig (packages/.../tokens.ts)\n \n \n mergeAppJsonConfigToAppConfig (packages/.../tokens.ts)\n \n \n preInitApp (packages/.../eui-pre-init-app.ts)\n \n \n prepareEuiAppConfigToken (packages/.../tokens.ts)\n \n \n sessionStorageSync (packages/.../meta.reducers.ts)\n \n \n withUxErrorManager (packages/.../ux-error-handler.operator.ts)\n \n \n \n \n \n \n\n\n packages/eui/packages/core/src/lib/services/errors/http-error-handler-callback-functions.ts\n \n \n \n \n \n \n \n AlertHttpErrorCallbackFn\n \n \n \n \n \n \nAlertHttpErrorCallbackFn(error: HttpErrorResponse)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n HttpErrorResponse\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ConsoleHttpErrorCallbackFn\n \n \n \n \n \n \nConsoleHttpErrorCallbackFn(error: HttpErrorResponse)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n HttpErrorResponse\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n GrowlHttpErrorCallbackFn\n \n \n \n \n \n \nGrowlHttpErrorCallbackFn(error: HttpErrorResponse, injector: Injector)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n HttpErrorResponse\n \n\n \n No\n \n\n\n \n \n injector\n \n Injector\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n LogHttpErrorCallbackFn\n \n \n \n \n \n \nLogHttpErrorCallbackFn(error: HttpErrorResponse, injector: Injector)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n error\n \n HttpErrorResponse\n \n\n \n No\n \n\n\n \n \n injector\n \n Injector\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n packages/eui/packages/core/src/lib/services/app/factories/log.ts\n \n \n \n \n \n \n \n euiLogServiceFactory\n \n \n \n \n \n \neuiLogServiceFactory(injector: Injector, rootBaseLoggerName: string, rootConfig: LogConfig, childBaseLoggerName: string, childConfig: LogConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n injector\n \n Injector\n \n\n \n No\n \n\n \n \n\n \n \n rootBaseLoggerName\n \n string\n \n\n \n No\n \n\n \n \n\n \n \n rootConfig\n \n LogConfig\n \n\n \n No\n \n\n \n \n\n \n \n childBaseLoggerName\n \n string\n \n\n \n No\n \n\n \n null\n \n\n \n \n childConfig\n \n LogConfig\n \n\n \n No\n \n\n \n {}\n \n\n \n \n \n \n \n \n \n Returns : LogService\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getLogAppendersConfig\n \n \n \n \n \n \ngetLogAppendersConfig(config: LogConfig, injector: Injector)\n \n \n\n\n\n\n \n \n Helper function to provide a list of log appenders from a log configuration\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n \n DEFAULT_LOG_CONFIG\n \n\n \n \n injector\n \n Injector\n \n\n \n No\n \n\n \n null\n \n\n \n \n \n \n \n \n \n Returns : LogAppender[]\n\n \n \n an array of log appenders\n\n \n \n \n \n \n \n \n \n \n \n \n isLogConfigDefined\n \n \n \n \n \n \nisLogConfigDefined(config: LogConfig)\n \n \n\n\n\n\n \n \n Helper function to check if the log config is defined.\nDoes not check only for empty object, because the config can have other (non-log) parameters\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true/false\n\n \n \n \n \n \n \n \n \n \n \n \n logServiceFactory\n \n \n \n \n \n \nlogServiceFactory(config: LogConfig, injector: Injector)\n \n \n\n\n\n\n \n \n Helper function to provide an instance of LogService from a configuration\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n config\n \n LogConfig\n \n\n \n No\n \n\n \n DEFAULT_LOG_CONFIG\n \n\n \n \n injector\n \n Injector\n \n\n \n No\n \n\n \n null\n \n\n \n \n \n \n \n \n \n Returns : LogService\n\n \n \n an instance of log service\n\n \n \n \n \n \n packages/eui/packages/core/src/lib/services/app/eui-startup.ts\n \n \n \n \n \n \n \n getCoreChildProviders\n \n \n \n \n \n \ngetCoreChildProviders(moduleName: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n moduleName\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Provider[]\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getCoreProviders\n \n \n \n \n \n \ngetCoreProviders()\n \n \n\n\n\n\n \n \n\n \n Returns : Provider[]\n\n \n \n \n \n \n \n \n \n \n \n \n getDependencyProviders\n \n \n \n \n \n \ngetDependencyProviders()\n \n \n\n\n\n\n \n \n\n \n Returns : Provider[]\n\n \n \n \n \n \n packages/eui/packages/core/src/lib/services/config/tokens.ts\n \n \n \n \n \n \n \n getGlobalConfig\n \n \n \n \n \n \ngetGlobalConfig(appConfig: EuiAppConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n appConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : GlobalConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getHttpErrorHandlingConfig\n \n \n \n \n \n \ngetHttpErrorHandlingConfig(appConfig: EuiAppConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n appConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : HttpErrorHandlerConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getModuleConfig\n \n \n \n \n \n \ngetModuleConfig(appConfig: EuiAppConfig, moduleName: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n appConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n moduleName\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : ModuleConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getRootLogConfig\n \n \n \n \n \n \ngetRootLogConfig(appConfig: EuiAppConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n appConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : LogConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getShowConnectionStatus\n \n \n \n \n \n \ngetShowConnectionStatus(globalConfig: GlobalConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n globalConfig\n \n GlobalConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean | ConnectionStatus\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n mergeAppHandlerConfigToAppConfig\n \n \n \n \n \n \nmergeAppHandlerConfigToAppConfig(euiAppConfig: EuiAppConfig, envAppHandler: EuiAppHandlersConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n euiAppConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n envAppHandler\n \n EuiAppHandlersConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : EuiAppConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n mergeAppJsonConfigToAppConfig\n \n \n \n \n \n \nmergeAppJsonConfigToAppConfig(euiAppConfig: EuiAppConfig, envAppJsonConfig: EuiAppJsonConfig, merge: Array, isDeepMerge: boolean)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n euiAppConfig\n \n EuiAppConfig\n \n\n \n No\n \n\n\n \n \n envAppJsonConfig\n \n EuiAppJsonConfig\n \n\n \n No\n \n\n\n \n \n merge\n \n Array\n \n\n \n No\n \n\n\n \n \n isDeepMerge\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : EuiAppConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n prepareEuiAppConfigToken\n \n \n \n \n \n \nprepareEuiAppConfigToken(euiConfig: EuiConfig)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n euiConfig\n \n EuiConfig\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : EuiAppConfig\n\n \n \n \n \n \n \n \n \n packages/eui/packages/core/src/lib/services/app/eui-pre-init-app.ts\n \n \n \n \n \n \n \n loadEuiDynamicEnvironmentConfig\n \n \n \n \n \n \nloadEuiDynamicEnvironmentConfig(url: string, timeout?: number)\n \n \n\n\n\n\n \n \n Function to load asynchronously a dynamic configuration (from a local path or a web service)\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n url\n \n string\n \n\n \n No\n \n\n\n \n the path to the configuration\n\n \n \n \n timeout\n \n number\n \n\n \n Yes\n \n\n\n \n possible timeout\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n EuiAppJsonConfig promise\n\n \n \n \n \n \n \n \n \n \n \n \n preInitApp\n \n \n \n \n \n \npreInitApp(envConfig: EuiEnvConfig)\n \n \n\n\n\n\n \n \n Function to be used before the AppModule is bootstrapped. It is currently used to load dynamic configurations.\nIt needs to be added in your application main.ts file.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n envConfig\n \n EuiEnvConfig\n \n\n \n No\n \n\n\n \n the current environment configuration\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n the updated environment configuration, as a promise\n\n \n \n \n \n \n packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts\n \n \n \n \n \n \n \n localStorageSync\n \n \n \n \n \n \nlocalStorageSync(reducer: ActionReducer)\n \n \n\n\n\n\n \n \n Utility meta-reducer to load the state from the local storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n reducer\n \n ActionReducer\n \n\n \n No\n \n\n\n \n the action reducer\n\n \n \n \n \n \n \n \n \n Returns : S\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sessionStorageSync\n \n \n \n \n \n \nsessionStorageSync(reducer: ActionReducer)\n \n \n\n\n\n\n \n \n Utility meta-reducer to load the state from the session storage\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n reducer\n \n ActionReducer\n \n\n \n No\n \n\n\n \n the action reducer\n\n \n \n \n \n \n \n \n \n Returns : S\n\n \n \n \n \n \n \n \n \n packages/eui/packages/core/src/lib/services/ux-error-feedback/ux-error-handler.operator.ts\n \n \n \n \n \n \n \n withUxErrorManager\n \n \n \n \n \n \nwithUxErrorManager(errorManager?: UxErrorManager)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n errorManager\n \n UxErrorManager\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : OperatorFunction\n\n \n \n \n \n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"overview - index","body":"\n \n\n\n\n Overview\n\n\n\n \n \n \n \n \n \n 4 Modules\n \n \n \n \n \n \n \n \n 1 Directive\n \n \n \n \n \n \n \n 23 Injectables\n \n \n \n \n \n \n \n 1 Pipe\n \n \n \n \n \n \n \n 34 Classes\n \n \n \n \n \n \n \n 7 Interfaces\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nEuropean Union Public Licence\n V. 1.1\nEUPL (c) the European Community 2007\nThis European Union Public Licence (the \"EUPL\") applies to the Work or Software\n(as defined below) which is provided under the terms of this Licence. Any use\nof the Work, other than as authorised under this Licence is prohibited (to the\nextent such use is covered by a right of the copyright holder of the Work).\nThe Original Work is provided under the terms of this Licence when the Licensor\n(as defined below) has placed the following notice immediately following the\ncopyright notice for the Original Work:\nLicensed under the EUPL V.1.1\nor has expressed by any other mean his willingness to license under the EUPL.\n\nDefinitions\n\nIn this Licence, the following terms have the following meaning:\n\nThe Licence: this Licence.\n\nThe Original Work or the Software: the software distributed and/or\ncommunicated by the Licensor under this Licence, available as Source Code\nand also as Executable Code as the case may be.\n\nDerivative Works: the works or software that could be created by the\nLicensee, based upon the Original Work or modifications thereof. This\nLicence does not define the extent of modification or dependence on the\nOriginal Work required in order to classify a work as a Derivative Work;\nthis extent is determined by copyright law applicable in the country\nmentioned in Article 15.\n\nThe Work: the Original Work and/or its Derivative Works.\n\nThe Source Code: the human-readable form of the Work which is the most\nconvenient for people to study and modify.\n\nThe Executable Code: any code which has generally been compiled and which is\nmeant to be interpreted by a computer as a program.\n\nThe Licensor: the natural or legal person that distributes and/or\ncommunicates the Work under the Licence.\n\nContributor(s): any natural or legal person who modifies the Work under the\nLicence, or otherwise contributes to the creation of a Derivative Work.\n\nThe Licensee or \"You\": any natural or legal person who makes any usage of\nthe Software under the terms of the Licence.\n\nDistribution and/or Communication: any act of selling, giving, lending,\nrenting, distributing, communicating, transmitting, or otherwise making\navailable, on-line or off-line, copies of the Work or providing access to\nits essential functionalities at the disposal of any other natural or legal\nperson.\n\n\n\nScope of the rights granted by the Licence\n\nThe Licensor hereby grants You a world-wide, royalty-free, non-exclusive,\nsublicensable licence to do the following, for the duration of copyright vested\nin the Original Work:\n\nuse the Work in any circumstance and for all usage,\nreproduce the Work,\nmodify the Original Work, and make Derivative Works based upon the Work,\ncommunicate to the public, including the right to make available or display\nthe Work or copies thereof to the public and perform publicly, as the case\nmay be, the Work,\ndistribute the Work or copies thereof,\nlend and rent the Work or copies thereof,\nsub-license rights in the Work or copies thereof.\n\nThose rights can be exercised on any media, supports and formats, whether now\nknown or later invented, as far as the applicable law permits so.\nIn the countries where moral rights apply, the Licensor waives his right to\nexercise his moral right to the extent allowed by law in order to make\neffective the licence of the economic rights here above listed.\nThe Licensor grants to the Licensee royalty-free, non exclusive usage rights to\nany patents held by the Licensor, to the extent necessary to make use of the\nrights granted on the Work under this Licence.\n\nCommunication of the Source Code\n\nThe Licensor may provide the Work either in its Source Code form, or as\nExecutable Code. If the Work is provided as Executable Code, the Licensor\nprovides in addition a machine-readable copy of the Source Code of the Work\nalong with each copy of the Work that the Licensor distributes or indicates, in\na notice following the copyright notice attached to the Work, a repository\nwhere the Source Code is easily and freely accessible for as long as the\nLicensor continues to distribute and/or communicate the Work.\n\nLimitations on copyright\n\nNothing in this Licence is intended to deprive the Licensee of the benefits\nfrom any exception or limitation to the exclusive rights of the rights owners\nin the Original Work or Software, of the exhaustion of those rights or of other\napplicable limitations thereto.\n\nObligations of the Licensee\n\nThe grant of the rights mentioned above is subject to some restrictions and\nobligations imposed on the Licensee. Those obligations are the following:\n\nAttribution right: the Licensee shall keep intact all copyright, patent or\ntrademarks notices and all notices that refer to the Licence and to the\ndisclaimer of warranties. The Licensee must include a copy of such notices\nand a copy of the Licence with every copy of the Work he/she distributes\nand/or communicates. The Licensee must cause any Derivative Work to carry\nprominent notices stating that the Work has been modified and the date of\nmodification.\n\nCopyleft clause: If the Licensee distributes and/or communicates copies of\nthe Original Works or Derivative Works based upon the Original Work, this\nDistribution and/or Communication will be done under the terms of this\nLicence or of a later version of this Licence unless the Original Work is\nexpressly distributed only under this version of the Licence. The Licensee\n(becoming Licensor) cannot offer or impose any additional terms or\nconditions on the Work or Derivative Work that alter or restrict the terms\nof the Licence.\n\nCompatibility clause: If the Licensee Distributes and/or Communicates\nDerivative Works or copies thereof based upon both the Original Work and\nanother work licensed under a Compatible Licence, this Distribution and/or\nCommunication can be done under the terms of this Compatible Licence. For\nthe sake of this clause, \"Compatible Licence\" refers to the licences listed\nin the appendix attached to this Licence. Should the Licensee's obligations\nunder the Compatible Licence conflict with his/her obligations under this\nLicence, the obligations of the Compatible Licence shall prevail.\n\nProvision of Source Code: When distributing and/or communicating copies of\nthe Work, the Licensee will provide a machine-readable copy of the Source\nCode or indicate a repository where this Source will be easily and freely\navailable for as long as the Licensee continues to distribute and/or\ncommunicate the Work. Legal Protection: This Licence does not grant\npermission to use the trade names, trademarks, service marks, or names of\nthe Licensor, except as required for reasonable and customary use in\ndescribing the origin of the Work and reproducing the content of the\ncopyright notice.\n\n\n\nChain of Authorship\n\nThe original Licensor warrants that the copyright in the Original Work granted\nhereunder is owned by him/her or licensed to him/her and that he/she has the\npower and authority to grant the Licence.\nEach Contributor warrants that the copyright in the modifications he/she brings\nto the Work are owned by him/her or licensed to him/her and that he/she has the\npower and authority to grant the Licence.\nEach time You accept the Licence, the original Licensor and subsequent\nContributors grant You a licence to their contributions to the Work, under the\nterms of this Licence.\n\nDisclaimer of Warranty\n\nThe Work is a work in progress, which is continuously improved by numerous\ncontributors. It is not a finished work and may therefore contain defects or\n\"bugs\" inherent to this type of software development.\nFor the above reason, the Work is provided under the Licence on an \"as is\"\nbasis and without warranties of any kind concerning the Work, including without\nlimitation merchantability, fitness for a particular purpose, absence of\ndefects or errors, accuracy, non-infringement of intellectual property rights\nother than copyright as stated in Article 6 of this Licence.\nThis disclaimer of warranty is an essential part of the Licence and a condition\nfor the grant of any rights to the Work.\n\nDisclaimer of Liability\n\nExcept in the cases of wilful misconduct or damages directly caused to natural\npersons, the Licensor will in no event be liable for any direct or indirect,\nmaterial or moral, damages of any kind, arising out of the Licence or of the\nuse of the Work, including without limitation, damages for loss of goodwill,\nwork stoppage, computer failure or malfunction, loss of data or any commercial\ndamage, even if the Licensor has been advised of the possibility of such\ndamage. However, the Licensor will be liable under statutory product liability\nlaws as far such laws apply to the Work.\n\nAdditional agreements\n\nWhile distributing the Original Work or Derivative Works, You may choose to\nconclude an additional agreement to offer, and charge a fee for, acceptance of\nsupport, warranty, indemnity, or other liability obligations and/or services\nconsistent with this Licence. However, in accepting such obligations, You may\nact only on your own behalf and on your sole responsibility, not on behalf of\nthe original Licensor or any other Contributor, and only if You agree to\nindemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against such Contributor by the fact You have\naccepted any such warranty or additional liability.\n\nAcceptance of the Licence\n\nThe provisions of this Licence can be accepted by clicking on an icon \"I agree\"\nplaced under the bottom of a window displaying the text of this Licence or by\naffirming consent in any other similar way, in accordance with the rules of\napplicable law. Clicking on that icon indicates your clear and irrevocable\nacceptance of this Licence and all of its terms and conditions.\nSimilarly, you irrevocably accept this Licence and all of its terms and\nconditions by exercising any rights granted to You by Article 2 of this\nLicence, such as the use of the Work, the creation by You of a Derivative Work\nor the Distribution and/or Communication by You of the Work or copies thereof.\n\nInformation to the public\n\nIn case of any Distribution and/or Communication of the Work by means of\nelectronic communication by You (for example, by offering to download the Work\nfrom a remote location) the distribution channel or media (for example, a\nwebsite) must at least provide to the public the information requested by the\napplicable law regarding the Licensor, the Licence and the way it may be\naccessible, concluded, stored and reproduced by the Licensee.\n\nTermination of the Licence\n\nThe Licence and the rights granted hereunder will terminate automatically upon\nany breach by the Licensee of the terms of the Licence.\nSuch a termination will not terminate the licences of any person who has\nreceived the Work from the Licensee under the Licence, provided such persons\nremain in full compliance with the Licence.\n\nMiscellaneous\n\nWithout prejudice of Article 9 above, the Licence represents the complete\nagreement between the Parties as to the Work licensed hereunder.\nIf any provision of the Licence is invalid or unenforceable under applicable\nlaw, this will not affect the validity or enforceability of the Licence as a\nwhole. Such provision will be construed and/or reformed so as necessary to make\nit valid and enforceable.\nThe European Commission may publish other linguistic versions and/or new\nversions of this Licence, so far this is required and reasonable, without\nreducing the scope of the rights granted by the Licence. New versions of the\nLicence will be published with a unique version number.\nAll linguistic versions of this Licence, approved by the European Commission,\nhave identical value. Parties can take advantage of the linguistic version of\ntheir choice.\n\nJurisdiction\n\nAny litigation resulting from the interpretation of this License, arising\nbetween the European Commission, as a Licensor, and any Licensee, will be\nsubject to the jurisdiction of the Court of Justice of the European\nCommunities, as laid down in article 238 of the Treaty establishing the\nEuropean Community.\nAny litigation arising between Parties, other than the European Commission, and\nresulting from the interpretation of this License, will be subject to the\nexclusive jurisdiction of the competent court where the Licensor resides or\nconducts its primary business.\n\nApplicable Law\n\nThis Licence shall be governed by the law of the European Union country where\nthe Licensor resides or has his registered office.\nThis licence shall be governed by the Belgian law if:\n\na litigation arises between the European Commission, as a Licensor, and any\nLicensee;\nthe Licensor, other than the European Commission, has no residence or\nregistered office inside a European Union country.\n\nAppendix\n\"Compatible Licences\" according to article 5 EUPL are:\n\nGNU General Public License (GNU GPL) v. 2\nOpen Software License (OSL) v. 2.1, v. 3.0\nCommon Public License v. 1.0\nEclipse Public License v. 1.0\nCecill v. 2.0\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n CoreModule\n \n \n \n Browse\n \n \n \n \n \n \n \n I18nModule\n \n \n \n Browse\n \n \n \n \n \n \n \n LogModule\n \n \n \n Browse\n \n \n \n \n \n \n \n TranslateMockModule\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"properties.html":{"url":"properties.html","title":"package-properties - properties","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Properties\n \n \n \n Version : 16.0.0\n \n License : EUPL-1.1\n \n Repository : https://citnet.tech.ec.europa.eu/CITnet/stash/projects/csdr/repos/root\n \n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Type aliases\n\n\n\n Index\n \n \n \n \n \n \n CoreAppActions (packages/.../app.actions.ts)\n \n \n CoreI18nActions (packages/.../i18n.actions.ts)\n \n \n CoreLocaleActions (packages/.../locale.actions.ts)\n \n \n CoreNotificationsActions (packages/.../notifications.actions.ts)\n \n \n CoreUserActions (packages/.../user.actions.ts)\n \n \n LocaleMapper (packages/.../locale.service.ts)\n \n \n \n \n \n \n\n\n packages/eui/packages/core/src/lib/services/store/actions/app.actions.ts\n \n \n \n \n \n \n CoreAppActions\n \n \n \n \n InitStoreAction | UpdateAppVersionAction | UpdateAppConnectionAction | AddAppLoadedConfigModulesAction | UpdateAppStatusAction | UpdateCurrentModuleAction | ActivatedRouteAction | AddApiQueueItemAction | RemoveApiQueueItemAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/store/actions/i18n.actions.ts\n \n \n \n \n \n \n CoreI18nActions\n \n \n \n \n UpdateI18nStateAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/store/actions/locale.actions.ts\n \n \n \n \n \n \n CoreLocaleActions\n \n \n \n \n UpdateLocaleStateAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/store/actions/notifications.actions.ts\n \n \n \n \n \n \n CoreNotificationsActions\n \n \n \n \n UpdateNotificationsListAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/store/actions/user.actions.ts\n \n \n \n \n \n \n CoreUserActions\n \n \n \n \n UpdateUserDetailsAction | UpdateUserPreferencesAction | UpdateUserRightsAction | UpdateUserDashboardAction\n\n \n \n \n \n packages/eui/packages/core/src/lib/services/locale/locale.service.ts\n \n \n \n \n \n \n LocaleMapper\n \n \n \n \n function\n\n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}}
|
|
4
4
|
}
|