@eui/core 19.0.0-next.9 → 19.0.0-rc.1
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/ActivatedRouteAction.html +10 -2
- package/docs/classes/AddApiQueueItemAction.html +10 -2
- package/docs/classes/AddAppLoadedConfigModulesAction.html +10 -2
- package/docs/classes/ApiQueueServiceMock.html +27 -3
- package/docs/classes/EmptyApiQueueAction.html +10 -2
- package/docs/classes/InitStoreAction.html +10 -2
- package/docs/classes/RemoveApiQueueItemAction.html +10 -2
- package/docs/classes/UpdateAppConnectionAction.html +10 -2
- package/docs/classes/UpdateAppStatusAction.html +10 -2
- package/docs/classes/UpdateAppVersionAction.html +10 -2
- package/docs/classes/UpdateCurrentModuleAction.html +10 -2
- package/docs/classes/UpdateI18nStateAction.html +10 -2
- package/docs/classes/UpdateLocaleStateAction.html +10 -2
- package/docs/classes/UpdateNotificationsListAction.html +10 -2
- package/docs/classes/UpdateUserDashboardAction.html +10 -2
- package/docs/classes/UpdateUserDetailsAction.html +10 -2
- package/docs/classes/UpdateUserPreferencesAction.html +10 -2
- package/docs/classes/UpdateUserRightsAction.html +10 -2
- package/docs/classes/UpdateUserStateAction.html +10 -2
- package/docs/dependencies.html +4 -24
- package/docs/index.html +2 -2
- package/docs/injectables/ApiQueueService.html +18 -2
- package/docs/injectables/EuiAppShellService.html +9 -1
- package/docs/injectables/GlobalErrorHandler.html +1 -1
- package/docs/injectables/I18nService.html +193 -17
- package/docs/injectables/I18nServiceMock.html +37 -1
- package/docs/injectables/LocaleService.html +119 -44
- package/docs/injectables/LocaleServiceMock.html +8 -41
- package/docs/injectables/StoreService.html +273 -65
- package/docs/injectables/StoreServiceMock.html +8 -30
- package/docs/injectables/UserService.html +97 -21
- package/docs/injectables/UserServiceMock.html +36 -0
- package/docs/interceptors/AddLangParamInterceptor.html +2 -2
- package/docs/interceptors/CachePreventionInterceptor.html +2 -2
- package/docs/interceptors/CorsSecurityInterceptor.html +2 -2
- package/docs/interceptors/CsrfPreventionInterceptor.html +2 -2
- package/docs/interceptors/EuLoginSessionTimeoutHandlingInterceptor.html +2 -2
- package/docs/interceptors/HttpErrorHandlerInterceptor.html +4 -4
- package/docs/interceptors/UxRequestErrorModelInterceptor.html +4 -4
- package/docs/interfaces/Action.html +270 -0
- package/docs/interfaces/ActionReducer.html +269 -0
- package/docs/interfaces/MemoizedSelector.html +407 -0
- package/docs/interfaces/MemoizedSelectorWithProps.html +414 -0
- package/docs/interfaces/TranslationKeys.html +223 -0
- package/docs/js/menu-wc.js +33 -21
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/enumerations.html +35 -10
- package/docs/miscellaneous/functions.html +937 -60
- package/docs/miscellaneous/typealiases.html +232 -13
- package/docs/miscellaneous/variables.html +283 -163
- package/fesm2022/eui-core.mjs +578 -403
- package/fesm2022/eui-core.mjs.map +1 -1
- package/lib/eui-core.module.d.ts.map +1 -1
- package/lib/services/app/eui-init-app.d.ts +10 -1
- package/lib/services/app/eui-init-app.d.ts.map +1 -1
- package/lib/services/app/eui-pre-init-app.d.ts.map +1 -1
- package/lib/services/app/eui-startup.d.ts.map +1 -1
- package/lib/services/app/index.d.ts +1 -0
- package/lib/services/app/index.d.ts.map +1 -1
- package/lib/services/config/defaults.d.ts.map +1 -1
- package/lib/services/eui-app-shell.service.d.ts +1 -1
- package/lib/services/eui-app-shell.service.d.ts.map +1 -1
- package/lib/services/i18n/i18n.loader.d.ts +10 -1
- package/lib/services/i18n/i18n.loader.d.ts.map +1 -1
- package/lib/services/i18n/i18n.service.d.ts +32 -8
- package/lib/services/i18n/i18n.service.d.ts.map +1 -1
- package/lib/services/locale/locale.service.d.ts +18 -32
- package/lib/services/locale/locale.service.d.ts.map +1 -1
- package/lib/services/locale/locale.service.mock.d.ts +1 -1
- package/lib/services/locale/locale.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 +18 -3
- package/lib/services/queue/api-queue.service.d.ts.map +1 -1
- package/lib/services/queue/api-queue.service.mock.d.ts +2 -2
- package/lib/services/queue/api-queue.service.mock.d.ts.map +1 -1
- package/lib/services/store/actions/app.actions.d.ts +37 -1
- package/lib/services/store/actions/app.actions.d.ts.map +1 -1
- package/lib/services/store/actions/i18n.actions.d.ts +10 -1
- package/lib/services/store/actions/i18n.actions.d.ts.map +1 -1
- package/lib/services/store/actions/locale.actions.d.ts +10 -1
- package/lib/services/store/actions/locale.actions.d.ts.map +1 -1
- package/lib/services/store/actions/notifications.actions.d.ts +10 -1
- package/lib/services/store/actions/notifications.actions.d.ts.map +1 -1
- package/lib/services/store/actions/user.actions.d.ts +22 -1
- package/lib/services/store/actions/user.actions.d.ts.map +1 -1
- package/lib/services/store/index.d.ts +0 -1
- package/lib/services/store/index.d.ts.map +1 -1
- package/lib/services/store/ngrx_kit.d.ts +54 -0
- package/lib/services/store/ngrx_kit.d.ts.map +1 -0
- package/lib/services/store/reducers/app.reducers.d.ts +4 -1
- package/lib/services/store/reducers/app.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/core.reducers.d.ts +4 -1
- package/lib/services/store/reducers/core.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/i18n.reducers.d.ts +4 -1
- package/lib/services/store/reducers/i18n.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/locale.reducers.d.ts +4 -1
- package/lib/services/store/reducers/locale.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/meta.reducers.d.ts +5 -1
- package/lib/services/store/reducers/meta.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/notifications.reducers.d.ts +4 -1
- package/lib/services/store/reducers/notifications.reducers.d.ts.map +1 -1
- package/lib/services/store/reducers/user.reducers.d.ts +4 -1
- package/lib/services/store/reducers/user.reducers.d.ts.map +1 -1
- package/lib/services/store/store.service.d.ts +40 -12
- package/lib/services/store/store.service.d.ts.map +1 -1
- package/lib/services/user/user.service.d.ts +32 -6
- package/lib/services/user/user.service.d.ts.map +1 -1
- package/package.json +2 -2
- package/docs/injectables/CoreAppEffects.html +0 -468
- package/lib/services/store/effects/app.effects.d.ts +0 -21
- package/lib/services/store/effects/app.effects.d.ts.map +0 -1
- package/lib/services/store/effects/index.d.ts +0 -4
- package/lib/services/store/effects/index.d.ts.map +0 -1
|
@@ -114,10 +114,10 @@
|
|
|
114
114
|
<a href="#actionToReducerMap" title="packages/eui/packages/core/src/lib/services/store/reducers/app.reducers.ts" ><b>actionToReducerMap</b> (packages/.../app.reducers.ts)</a>
|
|
115
115
|
</li>
|
|
116
116
|
<li>
|
|
117
|
-
<a href="#actionToReducerMap" title="packages/eui/packages/core/src/lib/services/store/reducers/i18n.reducers.ts" ><b>actionToReducerMap</b> (packages/.../i18n.reducers.ts)</a>
|
|
117
|
+
<a href="#actionToReducerMap" title="packages/eui/packages/core/src/lib/services/store/reducers/i18n.reducers.ts" class="deprecated-name"><b>actionToReducerMap</b> (packages/.../i18n.reducers.ts)</a>
|
|
118
118
|
</li>
|
|
119
119
|
<li>
|
|
120
|
-
<a href="#actionToReducerMap" title="packages/eui/packages/core/src/lib/services/store/reducers/locale.reducers.ts" ><b>actionToReducerMap</b> (packages/.../locale.reducers.ts)</a>
|
|
120
|
+
<a href="#actionToReducerMap" title="packages/eui/packages/core/src/lib/services/store/reducers/locale.reducers.ts" class="deprecated-name"><b>actionToReducerMap</b> (packages/.../locale.reducers.ts)</a>
|
|
121
121
|
</li>
|
|
122
122
|
<li>
|
|
123
123
|
<a href="#actionToReducerMap" title="packages/eui/packages/core/src/lib/services/store/reducers/notifications.reducers.ts" ><b>actionToReducerMap</b> (packages/.../notifications.reducers.ts)</a>
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
<a href="#addApiQueueItem" title="packages/eui/packages/core/src/lib/services/store/reducers/app.reducers.ts" ><b>addApiQueueItem</b> (packages/.../app.reducers.ts)</a>
|
|
130
130
|
</li>
|
|
131
131
|
<li>
|
|
132
|
-
<a href="#AddAppLoadedConfigModules" title="packages/eui/packages/core/src/lib/
|
|
132
|
+
<a href="#AddAppLoadedConfigModules" title="packages/eui/packages/core/src/lib/eui-core.module.ts" ><b>AddAppLoadedConfigModules</b> (packages/.../eui-core.module.ts)</a>
|
|
133
133
|
</li>
|
|
134
134
|
<li>
|
|
135
135
|
<a href="#BASE_LOGGER_NAME_TOKEN" title="packages/eui/packages/core/src/lib/services/log/log.service.ts" ><b>BASE_LOGGER_NAME_TOKEN</b> (packages/.../log.service.ts)</a>
|
|
@@ -153,25 +153,22 @@
|
|
|
153
153
|
<a href="#CORE_ROOT_GUARD" title="packages/eui/packages/core/src/lib/eui-core.module.ts" ><b>CORE_ROOT_GUARD</b> (packages/.../eui-core.module.ts)</a>
|
|
154
154
|
</li>
|
|
155
155
|
<li>
|
|
156
|
-
<a href="#coreAppReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/app.reducers.ts" ><b>coreAppReducers</b> (packages/.../app.reducers.ts)</a>
|
|
156
|
+
<a href="#coreAppReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/app.reducers.ts" class="deprecated-name"><b>coreAppReducers</b> (packages/.../app.reducers.ts)</a>
|
|
157
157
|
</li>
|
|
158
158
|
<li>
|
|
159
|
-
<a href="#coreLocaleReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/locale.reducers.ts" ><b>coreLocaleReducers</b> (packages/.../locale.reducers.ts)</a>
|
|
159
|
+
<a href="#coreLocaleReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/locale.reducers.ts" class="deprecated-name"><b>coreLocaleReducers</b> (packages/.../locale.reducers.ts)</a>
|
|
160
160
|
</li>
|
|
161
161
|
<li>
|
|
162
|
-
<a href="#
|
|
162
|
+
<a href="#coreNotificationsReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/notifications.reducers.ts" class="deprecated-name"><b>coreNotificationsReducers</b> (packages/.../notifications.reducers.ts)</a>
|
|
163
163
|
</li>
|
|
164
164
|
<li>
|
|
165
|
-
<a href="#
|
|
165
|
+
<a href="#coreReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/core.reducers.ts" class="deprecated-name"><b>coreReducers</b> (packages/.../core.reducers.ts)</a>
|
|
166
166
|
</li>
|
|
167
167
|
<li>
|
|
168
|
-
<a href="#
|
|
168
|
+
<a href="#coreUserReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/user.reducers.ts" class="deprecated-name"><b>coreUserReducers</b> (packages/.../user.reducers.ts)</a>
|
|
169
169
|
</li>
|
|
170
170
|
<li>
|
|
171
|
-
<a href="#
|
|
172
|
-
</li>
|
|
173
|
-
<li>
|
|
174
|
-
<a href="#corI18nReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/i18n.reducers.ts" ><b>corI18nReducers</b> (packages/.../i18n.reducers.ts)</a>
|
|
171
|
+
<a href="#corI18nReducers" title="packages/eui/packages/core/src/lib/services/store/reducers/i18n.reducers.ts" class="deprecated-name"><b>corI18nReducers</b> (packages/.../i18n.reducers.ts)</a>
|
|
175
172
|
</li>
|
|
176
173
|
<li>
|
|
177
174
|
<a href="#createEuiCoreRootGuard" title="packages/eui/packages/core/src/lib/eui-core.module.ts" ><b>createEuiCoreRootGuard</b> (packages/.../eui-core.module.ts)</a>
|
|
@@ -237,7 +234,7 @@
|
|
|
237
234
|
<a href="#euiCoreRootGuardClass" title="packages/eui/packages/core/src/lib/eui-core.module.ts" ><b>euiCoreRootGuardClass</b> (packages/.../eui-core.module.ts)</a>
|
|
238
235
|
</li>
|
|
239
236
|
<li>
|
|
240
|
-
<a href="#euiInitApp" title="packages/eui/packages/core/src/lib/services/app/eui-init-app.ts" ><b>euiInitApp</b> (packages/.../eui-init-app.ts)</a>
|
|
237
|
+
<a href="#euiInitApp" title="packages/eui/packages/core/src/lib/services/app/eui-init-app.ts" class="deprecated-name"><b>euiInitApp</b> (packages/.../eui-init-app.ts)</a>
|
|
241
238
|
</li>
|
|
242
239
|
<li>
|
|
243
240
|
<a href="#extend" title="packages/eui/packages/core/src/lib/services/config/tokens.ts" ><b>extend</b> (packages/.../tokens.ts)</a>
|
|
@@ -246,11 +243,14 @@
|
|
|
246
243
|
<a href="#extend" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" ><b>extend</b> (packages/.../meta.reducers.ts)</a>
|
|
247
244
|
</li>
|
|
248
245
|
<li>
|
|
249
|
-
<a href="#filterAppState" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" ><b>filterAppState</b> (packages/.../meta.reducers.ts)</a>
|
|
246
|
+
<a href="#filterAppState" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" class="deprecated-name"><b>filterAppState</b> (packages/.../meta.reducers.ts)</a>
|
|
250
247
|
</li>
|
|
251
248
|
<li>
|
|
252
249
|
<a href="#formatNumber" title="packages/eui/packages/core/src/lib/helpers/format-helpers.ts" ><b>formatNumber</b> (packages/.../format-helpers.ts)</a>
|
|
253
250
|
</li>
|
|
251
|
+
<li>
|
|
252
|
+
<a href="#getLastAddedModule" title="packages/eui/packages/core/src/lib/services/i18n/i18n.service.ts" ><b>getLastAddedModule</b> (packages/.../i18n.service.ts)</a>
|
|
253
|
+
</li>
|
|
254
254
|
<li>
|
|
255
255
|
<a href="#getStyle" title="packages/eui/packages/core/src/lib/helpers/dom-helpers.ts" ><b>getStyle</b> (packages/.../dom-helpers.ts)</a>
|
|
256
256
|
</li>
|
|
@@ -266,6 +266,9 @@
|
|
|
266
266
|
<li>
|
|
267
267
|
<a href="#HTTP_ERROR_HANDLER_CONFIG_TOKEN" title="packages/eui/packages/core/src/lib/services/config/tokens.ts" ><b>HTTP_ERROR_HANDLER_CONFIG_TOKEN</b> (packages/.../tokens.ts)</a>
|
|
268
268
|
</li>
|
|
269
|
+
<li>
|
|
270
|
+
<a href="#init" title="packages/eui/packages/core/src/lib/services/app/eui-init-app.ts" ><b>init</b> (packages/.../eui-init-app.ts)</a>
|
|
271
|
+
</li>
|
|
269
272
|
<li>
|
|
270
273
|
<a href="#initialState" title="packages/eui/packages/core/src/lib/services/eui-app-shell.service.ts" ><b>initialState</b> (packages/.../eui-app-shell.service.ts)</a>
|
|
271
274
|
</li>
|
|
@@ -282,7 +285,7 @@
|
|
|
282
285
|
<a href="#LANG_PARAM_KEY" title="packages/eui/packages/core/src/lib/interceptors/add-lang-param.interceptor.ts" ><b>LANG_PARAM_KEY</b> (packages/.../add-lang-param.interceptor.ts)</a>
|
|
283
286
|
</li>
|
|
284
287
|
<li>
|
|
285
|
-
<a href="#loadState" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" ><b>loadState</b> (packages/.../meta.reducers.ts)</a>
|
|
288
|
+
<a href="#loadState" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" class="deprecated-name"><b>loadState</b> (packages/.../meta.reducers.ts)</a>
|
|
286
289
|
</li>
|
|
287
290
|
<li>
|
|
288
291
|
<a href="#LOCAL_FORAGE_SERVICE_CONFIG_TOKEN" title="packages/eui/packages/core/src/lib/services/storage/local-forage.service.ts" ><b>LOCAL_FORAGE_SERVICE_CONFIG_TOKEN</b> (packages/.../local-forage.service.ts)</a>
|
|
@@ -366,10 +369,10 @@
|
|
|
366
369
|
<a href="#updateCurrentModule" title="packages/eui/packages/core/src/lib/services/store/reducers/app.reducers.ts" ><b>updateCurrentModule</b> (packages/.../app.reducers.ts)</a>
|
|
367
370
|
</li>
|
|
368
371
|
<li>
|
|
369
|
-
<a href="#updateI18nState" title="packages/eui/packages/core/src/lib/services/store/reducers/i18n.reducers.ts" ><b>updateI18nState</b> (packages/.../i18n.reducers.ts)</a>
|
|
372
|
+
<a href="#updateI18nState" title="packages/eui/packages/core/src/lib/services/store/reducers/i18n.reducers.ts" class="deprecated-name"><b>updateI18nState</b> (packages/.../i18n.reducers.ts)</a>
|
|
370
373
|
</li>
|
|
371
374
|
<li>
|
|
372
|
-
<a href="#updateLocaleState" title="packages/eui/packages/core/src/lib/services/store/reducers/locale.reducers.ts" ><b>updateLocaleState</b> (packages/.../locale.reducers.ts)</a>
|
|
375
|
+
<a href="#updateLocaleState" title="packages/eui/packages/core/src/lib/services/store/reducers/locale.reducers.ts" class="deprecated-name"><b>updateLocaleState</b> (packages/.../locale.reducers.ts)</a>
|
|
373
376
|
</li>
|
|
374
377
|
<li>
|
|
375
378
|
<a href="#updateNotificationsList" title="packages/eui/packages/core/src/lib/services/store/reducers/notifications.reducers.ts" ><b>updateNotificationsList</b> (packages/.../notifications.reducers.ts)</a>
|
|
@@ -426,7 +429,6 @@
|
|
|
426
429
|
<i>Default value : </i><code>{
|
|
427
430
|
[CoreAppActionTypes.UPDATE_APP_VERSION]: updateAppVersion,
|
|
428
431
|
[CoreAppActionTypes.UPDATE_APP_CONNECTION]: updateAppConnection,
|
|
429
|
-
[CoreAppActionTypes.ADD_APP_LOADED_CONFIG_MODULES]: AddAppLoadedConfigModules,
|
|
430
432
|
[CoreAppActionTypes.UPDATE_APP_STATUS]: updateAppStatus,
|
|
431
433
|
[CoreAppActionTypes.UPDATE_CURRENT_MODULE]: updateCurrentModule,
|
|
432
434
|
[CoreAppActionTypes.ADD_API_QUEUE_ITEM]: addApiQueueItem,
|
|
@@ -469,42 +471,16 @@
|
|
|
469
471
|
<tbody>
|
|
470
472
|
<tr>
|
|
471
473
|
<td class="col-md-4">
|
|
472
|
-
<a name="
|
|
474
|
+
<a name="coreAppReducers"></a>
|
|
473
475
|
<span class="name">
|
|
474
|
-
<span ><b>
|
|
475
|
-
<a href="#
|
|
476
|
+
<span class="deprecated-name"><b>coreAppReducers</b></span>
|
|
477
|
+
<a href="#coreAppReducers"><span class="icon ion-ios-link"></span></a>
|
|
476
478
|
</span>
|
|
477
479
|
</td>
|
|
478
480
|
</tr>
|
|
479
|
-
<tr>
|
|
480
|
-
<td class="col-md-4">
|
|
481
|
-
<i>Default value : </i><code>(state: AppState, action: AddAppLoadedConfigModulesAction): AppState => ({
|
|
482
|
-
...state,
|
|
483
|
-
loadedConfigModules: {
|
|
484
|
-
lastAddedModule: action.payload.moduleName,
|
|
485
|
-
modulesConfig: {
|
|
486
|
-
...state.loadedConfigModules.modulesConfig,
|
|
487
|
-
[action.payload.moduleName]: {
|
|
488
|
-
...action.payload.moduleConfig,
|
|
489
|
-
},
|
|
490
|
-
},
|
|
491
|
-
},
|
|
492
|
-
})</code>
|
|
493
|
-
</td>
|
|
494
|
-
</tr>
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
</tbody>
|
|
498
|
-
</table>
|
|
499
|
-
<table class="table table-sm table-bordered">
|
|
500
|
-
<tbody>
|
|
501
481
|
<tr>
|
|
502
|
-
<td class="col-md-4">
|
|
503
|
-
|
|
504
|
-
<span class="name">
|
|
505
|
-
<span ><b>coreAppReducers</b></span>
|
|
506
|
-
<a href="#coreAppReducers"><span class="icon ion-ios-link"></span></a>
|
|
507
|
-
</span>
|
|
482
|
+
<td class="col-md-4 deprecated">
|
|
483
|
+
it will be removed in the next major version
|
|
508
484
|
</td>
|
|
509
485
|
</tr>
|
|
510
486
|
<tr>
|
|
@@ -669,10 +645,15 @@
|
|
|
669
645
|
<td class="col-md-4">
|
|
670
646
|
<a name="actionToReducerMap"></a>
|
|
671
647
|
<span class="name">
|
|
672
|
-
<span ><b>actionToReducerMap</b></span>
|
|
648
|
+
<span class="deprecated-name"><b>actionToReducerMap</b></span>
|
|
673
649
|
<a href="#actionToReducerMap"><span class="icon ion-ios-link"></span></a>
|
|
674
650
|
</span>
|
|
675
651
|
</td>
|
|
652
|
+
</tr>
|
|
653
|
+
<tr>
|
|
654
|
+
<td class="col-md-4 deprecated">
|
|
655
|
+
it will be removed in the next major version
|
|
656
|
+
</td>
|
|
676
657
|
</tr>
|
|
677
658
|
<tr>
|
|
678
659
|
<td class="col-md-4">
|
|
@@ -697,10 +678,15 @@
|
|
|
697
678
|
<td class="col-md-4">
|
|
698
679
|
<a name="corI18nReducers"></a>
|
|
699
680
|
<span class="name">
|
|
700
|
-
<span ><b>corI18nReducers</b></span>
|
|
681
|
+
<span class="deprecated-name"><b>corI18nReducers</b></span>
|
|
701
682
|
<a href="#corI18nReducers"><span class="icon ion-ios-link"></span></a>
|
|
702
683
|
</span>
|
|
703
684
|
</td>
|
|
685
|
+
</tr>
|
|
686
|
+
<tr>
|
|
687
|
+
<td class="col-md-4 deprecated">
|
|
688
|
+
it will be removed in the next major version
|
|
689
|
+
</td>
|
|
704
690
|
</tr>
|
|
705
691
|
<tr>
|
|
706
692
|
<td class="col-md-4">
|
|
@@ -728,10 +714,15 @@
|
|
|
728
714
|
<td class="col-md-4">
|
|
729
715
|
<a name="updateI18nState"></a>
|
|
730
716
|
<span class="name">
|
|
731
|
-
<span ><b>updateI18nState</b></span>
|
|
717
|
+
<span class="deprecated-name"><b>updateI18nState</b></span>
|
|
732
718
|
<a href="#updateI18nState"><span class="icon ion-ios-link"></span></a>
|
|
733
719
|
</span>
|
|
734
720
|
</td>
|
|
721
|
+
</tr>
|
|
722
|
+
<tr>
|
|
723
|
+
<td class="col-md-4 deprecated">
|
|
724
|
+
it will be removed in the next major version
|
|
725
|
+
</td>
|
|
735
726
|
</tr>
|
|
736
727
|
<tr>
|
|
737
728
|
<td class="col-md-4">
|
|
@@ -754,10 +745,15 @@
|
|
|
754
745
|
<td class="col-md-4">
|
|
755
746
|
<a name="actionToReducerMap"></a>
|
|
756
747
|
<span class="name">
|
|
757
|
-
<span ><b>actionToReducerMap</b></span>
|
|
748
|
+
<span class="deprecated-name"><b>actionToReducerMap</b></span>
|
|
758
749
|
<a href="#actionToReducerMap"><span class="icon ion-ios-link"></span></a>
|
|
759
750
|
</span>
|
|
760
751
|
</td>
|
|
752
|
+
</tr>
|
|
753
|
+
<tr>
|
|
754
|
+
<td class="col-md-4 deprecated">
|
|
755
|
+
it will be removed in the next major version
|
|
756
|
+
</td>
|
|
761
757
|
</tr>
|
|
762
758
|
<tr>
|
|
763
759
|
<td class="col-md-4">
|
|
@@ -782,10 +778,15 @@
|
|
|
782
778
|
<td class="col-md-4">
|
|
783
779
|
<a name="coreLocaleReducers"></a>
|
|
784
780
|
<span class="name">
|
|
785
|
-
<span ><b>coreLocaleReducers</b></span>
|
|
781
|
+
<span class="deprecated-name"><b>coreLocaleReducers</b></span>
|
|
786
782
|
<a href="#coreLocaleReducers"><span class="icon ion-ios-link"></span></a>
|
|
787
783
|
</span>
|
|
788
784
|
</td>
|
|
785
|
+
</tr>
|
|
786
|
+
<tr>
|
|
787
|
+
<td class="col-md-4 deprecated">
|
|
788
|
+
it will be removed in the next major version
|
|
789
|
+
</td>
|
|
789
790
|
</tr>
|
|
790
791
|
<tr>
|
|
791
792
|
<td class="col-md-4">
|
|
@@ -816,10 +817,15 @@
|
|
|
816
817
|
<td class="col-md-4">
|
|
817
818
|
<a name="updateLocaleState"></a>
|
|
818
819
|
<span class="name">
|
|
819
|
-
<span ><b>updateLocaleState</b></span>
|
|
820
|
+
<span class="deprecated-name"><b>updateLocaleState</b></span>
|
|
820
821
|
<a href="#updateLocaleState"><span class="icon ion-ios-link"></span></a>
|
|
821
822
|
</span>
|
|
822
823
|
</td>
|
|
824
|
+
</tr>
|
|
825
|
+
<tr>
|
|
826
|
+
<td class="col-md-4 deprecated">
|
|
827
|
+
it will be removed in the next major version
|
|
828
|
+
</td>
|
|
823
829
|
</tr>
|
|
824
830
|
<tr>
|
|
825
831
|
<td class="col-md-4">
|
|
@@ -870,10 +876,15 @@
|
|
|
870
876
|
<td class="col-md-4">
|
|
871
877
|
<a name="coreNotificationsReducers"></a>
|
|
872
878
|
<span class="name">
|
|
873
|
-
<span ><b>coreNotificationsReducers</b></span>
|
|
879
|
+
<span class="deprecated-name"><b>coreNotificationsReducers</b></span>
|
|
874
880
|
<a href="#coreNotificationsReducers"><span class="icon ion-ios-link"></span></a>
|
|
875
881
|
</span>
|
|
876
882
|
</td>
|
|
883
|
+
</tr>
|
|
884
|
+
<tr>
|
|
885
|
+
<td class="col-md-4 deprecated">
|
|
886
|
+
it will be removed in the next major version
|
|
887
|
+
</td>
|
|
877
888
|
</tr>
|
|
878
889
|
<tr>
|
|
879
890
|
<td class="col-md-4">
|
|
@@ -960,10 +971,15 @@
|
|
|
960
971
|
<td class="col-md-4">
|
|
961
972
|
<a name="coreUserReducers"></a>
|
|
962
973
|
<span class="name">
|
|
963
|
-
<span ><b>coreUserReducers</b></span>
|
|
974
|
+
<span class="deprecated-name"><b>coreUserReducers</b></span>
|
|
964
975
|
<a href="#coreUserReducers"><span class="icon ion-ios-link"></span></a>
|
|
965
976
|
</span>
|
|
966
977
|
</td>
|
|
978
|
+
</tr>
|
|
979
|
+
<tr>
|
|
980
|
+
<td class="col-md-4 deprecated">
|
|
981
|
+
it will be removed in the next major version
|
|
982
|
+
</td>
|
|
967
983
|
</tr>
|
|
968
984
|
<tr>
|
|
969
985
|
<td class="col-md-4">
|
|
@@ -1106,6 +1122,108 @@
|
|
|
1106
1122
|
</tr>
|
|
1107
1123
|
|
|
1108
1124
|
|
|
1125
|
+
</tbody>
|
|
1126
|
+
</table>
|
|
1127
|
+
</section>
|
|
1128
|
+
<h3>packages/eui/packages/core/src/lib/eui-core.module.ts</h3>
|
|
1129
|
+
<section data-compodoc="block-properties">
|
|
1130
|
+
<h3></h3> <table class="table table-sm table-bordered">
|
|
1131
|
+
<tbody>
|
|
1132
|
+
<tr>
|
|
1133
|
+
<td class="col-md-4">
|
|
1134
|
+
<a name="AddAppLoadedConfigModules"></a>
|
|
1135
|
+
<span class="name">
|
|
1136
|
+
<span ><b>AddAppLoadedConfigModules</b></span>
|
|
1137
|
+
<a href="#AddAppLoadedConfigModules"><span class="icon ion-ios-link"></span></a>
|
|
1138
|
+
</span>
|
|
1139
|
+
</td>
|
|
1140
|
+
</tr>
|
|
1141
|
+
<tr>
|
|
1142
|
+
<td class="col-md-4">
|
|
1143
|
+
<i>Default value : </i><code>(state: CoreState, action: { moduleName, moduleConfig }): CoreState => ({
|
|
1144
|
+
...state,
|
|
1145
|
+
app: {
|
|
1146
|
+
...state.app,
|
|
1147
|
+
loadedConfigModules: {
|
|
1148
|
+
lastAddedModule: action.moduleName,
|
|
1149
|
+
modulesConfig: {
|
|
1150
|
+
...state.app.loadedConfigModules.modulesConfig,
|
|
1151
|
+
[action.moduleName]: {
|
|
1152
|
+
...action.moduleConfig,
|
|
1153
|
+
},
|
|
1154
|
+
},
|
|
1155
|
+
},
|
|
1156
|
+
},
|
|
1157
|
+
})</code>
|
|
1158
|
+
</td>
|
|
1159
|
+
</tr>
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
</tbody>
|
|
1163
|
+
</table>
|
|
1164
|
+
<table class="table table-sm table-bordered">
|
|
1165
|
+
<tbody>
|
|
1166
|
+
<tr>
|
|
1167
|
+
<td class="col-md-4">
|
|
1168
|
+
<a name="CORE_ROOT_GUARD"></a>
|
|
1169
|
+
<span class="name">
|
|
1170
|
+
<span ><b>CORE_ROOT_GUARD</b></span>
|
|
1171
|
+
<a href="#CORE_ROOT_GUARD"><span class="icon ion-ios-link"></span></a>
|
|
1172
|
+
</span>
|
|
1173
|
+
</td>
|
|
1174
|
+
</tr>
|
|
1175
|
+
<tr>
|
|
1176
|
+
<td class="col-md-4">
|
|
1177
|
+
<i>Default value : </i><code>new InjectionToken<void>('Internal Theme ForRoot Guard')</code>
|
|
1178
|
+
</td>
|
|
1179
|
+
</tr>
|
|
1180
|
+
|
|
1181
|
+
|
|
1182
|
+
</tbody>
|
|
1183
|
+
</table>
|
|
1184
|
+
<table class="table table-sm table-bordered">
|
|
1185
|
+
<tbody>
|
|
1186
|
+
<tr>
|
|
1187
|
+
<td class="col-md-4">
|
|
1188
|
+
<a name="createEuiCoreRootGuard"></a>
|
|
1189
|
+
<span class="name">
|
|
1190
|
+
<span ><b>createEuiCoreRootGuard</b></span>
|
|
1191
|
+
<a href="#createEuiCoreRootGuard"><span class="icon ion-ios-link"></span></a>
|
|
1192
|
+
</span>
|
|
1193
|
+
</td>
|
|
1194
|
+
</tr>
|
|
1195
|
+
<tr>
|
|
1196
|
+
<td class="col-md-4">
|
|
1197
|
+
<i>Default value : </i><code>(core): string => {
|
|
1198
|
+
if (core) {
|
|
1199
|
+
throw new TypeError('CoreModule.forRoot() called twice. Feature modules should use ThemeModule.forChild() instead.');
|
|
1200
|
+
}
|
|
1201
|
+
return 'guarded';
|
|
1202
|
+
}</code>
|
|
1203
|
+
</td>
|
|
1204
|
+
</tr>
|
|
1205
|
+
|
|
1206
|
+
|
|
1207
|
+
</tbody>
|
|
1208
|
+
</table>
|
|
1209
|
+
<table class="table table-sm table-bordered">
|
|
1210
|
+
<tbody>
|
|
1211
|
+
<tr>
|
|
1212
|
+
<td class="col-md-4">
|
|
1213
|
+
<a name="euiCoreRootGuardClass"></a>
|
|
1214
|
+
<span class="name">
|
|
1215
|
+
<span ><b>euiCoreRootGuardClass</b></span>
|
|
1216
|
+
<a href="#euiCoreRootGuardClass"><span class="icon ion-ios-link"></span></a>
|
|
1217
|
+
</span>
|
|
1218
|
+
</td>
|
|
1219
|
+
</tr>
|
|
1220
|
+
<tr>
|
|
1221
|
+
<td class="col-md-4">
|
|
1222
|
+
<i>Default value : </i><code>(): EuiCoreRootGuardClass => new EuiCoreRootGuardClass()</code>
|
|
1223
|
+
</td>
|
|
1224
|
+
</tr>
|
|
1225
|
+
|
|
1226
|
+
|
|
1109
1227
|
</tbody>
|
|
1110
1228
|
</table>
|
|
1111
1229
|
</section>
|
|
@@ -1487,10 +1605,15 @@
|
|
|
1487
1605
|
<td class="col-md-4">
|
|
1488
1606
|
<a name="filterAppState"></a>
|
|
1489
1607
|
<span class="name">
|
|
1490
|
-
<span ><b>filterAppState</b></span>
|
|
1608
|
+
<span class="deprecated-name"><b>filterAppState</b></span>
|
|
1491
1609
|
<a href="#filterAppState"><span class="icon ion-ios-link"></span></a>
|
|
1492
1610
|
</span>
|
|
1493
1611
|
</td>
|
|
1612
|
+
</tr>
|
|
1613
|
+
<tr>
|
|
1614
|
+
<td class="col-md-4 deprecated">
|
|
1615
|
+
it will be removed in the next major version
|
|
1616
|
+
</td>
|
|
1494
1617
|
</tr>
|
|
1495
1618
|
<tr>
|
|
1496
1619
|
<td class="col-md-4">
|
|
@@ -1529,10 +1652,15 @@
|
|
|
1529
1652
|
<td class="col-md-4">
|
|
1530
1653
|
<a name="loadState"></a>
|
|
1531
1654
|
<span class="name">
|
|
1532
|
-
<span ><b>loadState</b></span>
|
|
1655
|
+
<span class="deprecated-name"><b>loadState</b></span>
|
|
1533
1656
|
<a href="#loadState"><span class="icon ion-ios-link"></span></a>
|
|
1534
1657
|
</span>
|
|
1535
1658
|
</td>
|
|
1659
|
+
</tr>
|
|
1660
|
+
<tr>
|
|
1661
|
+
<td class="col-md-4 deprecated">
|
|
1662
|
+
it will be removed in the next major version
|
|
1663
|
+
</td>
|
|
1536
1664
|
</tr>
|
|
1537
1665
|
<tr>
|
|
1538
1666
|
<td class="col-md-4">
|
|
@@ -1832,103 +1960,6 @@
|
|
|
1832
1960
|
</tr>
|
|
1833
1961
|
|
|
1834
1962
|
|
|
1835
|
-
</tbody>
|
|
1836
|
-
</table>
|
|
1837
|
-
</section>
|
|
1838
|
-
<h3>packages/eui/packages/core/src/lib/eui-core.module.ts</h3>
|
|
1839
|
-
<section data-compodoc="block-properties">
|
|
1840
|
-
<h3></h3> <table class="table table-sm table-bordered">
|
|
1841
|
-
<tbody>
|
|
1842
|
-
<tr>
|
|
1843
|
-
<td class="col-md-4">
|
|
1844
|
-
<a name="CORE_ROOT_GUARD"></a>
|
|
1845
|
-
<span class="name">
|
|
1846
|
-
<span ><b>CORE_ROOT_GUARD</b></span>
|
|
1847
|
-
<a href="#CORE_ROOT_GUARD"><span class="icon ion-ios-link"></span></a>
|
|
1848
|
-
</span>
|
|
1849
|
-
</td>
|
|
1850
|
-
</tr>
|
|
1851
|
-
<tr>
|
|
1852
|
-
<td class="col-md-4">
|
|
1853
|
-
<i>Default value : </i><code>new InjectionToken<void>('Internal Theme ForRoot Guard')</code>
|
|
1854
|
-
</td>
|
|
1855
|
-
</tr>
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
</tbody>
|
|
1859
|
-
</table>
|
|
1860
|
-
<table class="table table-sm table-bordered">
|
|
1861
|
-
<tbody>
|
|
1862
|
-
<tr>
|
|
1863
|
-
<td class="col-md-4">
|
|
1864
|
-
<a name="createEuiCoreRootGuard"></a>
|
|
1865
|
-
<span class="name">
|
|
1866
|
-
<span ><b>createEuiCoreRootGuard</b></span>
|
|
1867
|
-
<a href="#createEuiCoreRootGuard"><span class="icon ion-ios-link"></span></a>
|
|
1868
|
-
</span>
|
|
1869
|
-
</td>
|
|
1870
|
-
</tr>
|
|
1871
|
-
<tr>
|
|
1872
|
-
<td class="col-md-4">
|
|
1873
|
-
<i>Default value : </i><code>(core): string => {
|
|
1874
|
-
if (core) {
|
|
1875
|
-
throw new TypeError('CoreModule.forRoot() called twice. Feature modules should use ThemeModule.forChild() instead.');
|
|
1876
|
-
}
|
|
1877
|
-
return 'guarded';
|
|
1878
|
-
}</code>
|
|
1879
|
-
</td>
|
|
1880
|
-
</tr>
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
</tbody>
|
|
1884
|
-
</table>
|
|
1885
|
-
<table class="table table-sm table-bordered">
|
|
1886
|
-
<tbody>
|
|
1887
|
-
<tr>
|
|
1888
|
-
<td class="col-md-4">
|
|
1889
|
-
<a name="euiCoreRootGuardClass"></a>
|
|
1890
|
-
<span class="name">
|
|
1891
|
-
<span ><b>euiCoreRootGuardClass</b></span>
|
|
1892
|
-
<a href="#euiCoreRootGuardClass"><span class="icon ion-ios-link"></span></a>
|
|
1893
|
-
</span>
|
|
1894
|
-
</td>
|
|
1895
|
-
</tr>
|
|
1896
|
-
<tr>
|
|
1897
|
-
<td class="col-md-4">
|
|
1898
|
-
<i>Default value : </i><code>(): EuiCoreRootGuardClass => new EuiCoreRootGuardClass()</code>
|
|
1899
|
-
</td>
|
|
1900
|
-
</tr>
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
</tbody>
|
|
1904
|
-
</table>
|
|
1905
|
-
</section>
|
|
1906
|
-
<h3>packages/eui/packages/core/src/lib/services/store/effects/index.ts</h3>
|
|
1907
|
-
<section data-compodoc="block-properties">
|
|
1908
|
-
<h3></h3> <table class="table table-sm table-bordered">
|
|
1909
|
-
<tbody>
|
|
1910
|
-
<tr>
|
|
1911
|
-
<td class="col-md-4">
|
|
1912
|
-
<a name="CoreModuleEffects"></a>
|
|
1913
|
-
<span class="name">
|
|
1914
|
-
<span ><b>CoreModuleEffects</b></span>
|
|
1915
|
-
<a href="#CoreModuleEffects"><span class="icon ion-ios-link"></span></a>
|
|
1916
|
-
</span>
|
|
1917
|
-
</td>
|
|
1918
|
-
</tr>
|
|
1919
|
-
<tr>
|
|
1920
|
-
<td class="col-md-4">
|
|
1921
|
-
<i>Type : </i> <code>[]</code>
|
|
1922
|
-
|
|
1923
|
-
</td>
|
|
1924
|
-
</tr>
|
|
1925
|
-
<tr>
|
|
1926
|
-
<td class="col-md-4">
|
|
1927
|
-
<i>Default value : </i><code>[CoreAppEffects]</code>
|
|
1928
|
-
</td>
|
|
1929
|
-
</tr>
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
1963
|
</tbody>
|
|
1933
1964
|
</table>
|
|
1934
1965
|
</section>
|
|
@@ -1940,14 +1971,19 @@
|
|
|
1940
1971
|
<td class="col-md-4">
|
|
1941
1972
|
<a name="coreReducers"></a>
|
|
1942
1973
|
<span class="name">
|
|
1943
|
-
<span ><b>coreReducers</b></span>
|
|
1974
|
+
<span class="deprecated-name"><b>coreReducers</b></span>
|
|
1944
1975
|
<a href="#coreReducers"><span class="icon ion-ios-link"></span></a>
|
|
1945
1976
|
</span>
|
|
1946
1977
|
</td>
|
|
1978
|
+
</tr>
|
|
1979
|
+
<tr>
|
|
1980
|
+
<td class="col-md-4 deprecated">
|
|
1981
|
+
it will be removed in the next major version
|
|
1982
|
+
</td>
|
|
1947
1983
|
</tr>
|
|
1948
1984
|
<tr>
|
|
1949
1985
|
<td class="col-md-4">
|
|
1950
|
-
<i>Type : </i>
|
|
1986
|
+
<i>Type : </i> <code><a href="../miscellaneous/typealiases.html#ActionReducerMap" target="_self" >ActionReducerMap<CoreState, any></a></code>
|
|
1951
1987
|
|
|
1952
1988
|
</td>
|
|
1953
1989
|
</tr>
|
|
@@ -2127,7 +2163,7 @@
|
|
|
2127
2163
|
</tr>
|
|
2128
2164
|
<tr>
|
|
2129
2165
|
<td class="col-md-4">
|
|
2130
|
-
<i>Type : </i>
|
|
2166
|
+
<i>Type : </i> <code><a href="../miscellaneous/typealiases.html#Handler" target="_self" >HttpErrorHandlerConfig</a></code>
|
|
2131
2167
|
|
|
2132
2168
|
</td>
|
|
2133
2169
|
</tr>
|
|
@@ -2217,10 +2253,7 @@
|
|
|
2217
2253
|
<tr>
|
|
2218
2254
|
<td class="col-md-4">
|
|
2219
2255
|
<i>Default value : </i><code>{
|
|
2220
|
-
available: ['en'],
|
|
2221
|
-
registered: ['en'],
|
|
2222
2256
|
bindWithTranslate: false,
|
|
2223
|
-
affectGlobalLocale: false,
|
|
2224
2257
|
}</code>
|
|
2225
2258
|
</td>
|
|
2226
2259
|
</tr>
|
|
@@ -3193,10 +3226,15 @@
|
|
|
3193
3226
|
<td class="col-md-4">
|
|
3194
3227
|
<a name="euiInitApp"></a>
|
|
3195
3228
|
<span class="name">
|
|
3196
|
-
<span ><b>euiInitApp</b></span>
|
|
3229
|
+
<span class="deprecated-name"><b>euiInitApp</b></span>
|
|
3197
3230
|
<a href="#euiInitApp"><span class="icon ion-ios-link"></span></a>
|
|
3198
3231
|
</span>
|
|
3199
3232
|
</td>
|
|
3233
|
+
</tr>
|
|
3234
|
+
<tr>
|
|
3235
|
+
<td class="col-md-4 deprecated">
|
|
3236
|
+
Use `provideEuiInitializer()` instead. Beware that this should be declared as Environment providers.
|
|
3237
|
+
</td>
|
|
3200
3238
|
</tr>
|
|
3201
3239
|
<tr>
|
|
3202
3240
|
<td class="col-md-4">
|
|
@@ -3229,6 +3267,59 @@
|
|
|
3229
3267
|
</td>
|
|
3230
3268
|
</tr>
|
|
3231
3269
|
|
|
3270
|
+
<tr>
|
|
3271
|
+
<td class="col-md-4">
|
|
3272
|
+
<div class="io-description"><p>Initializes the app with the necessary configurations</p>
|
|
3273
|
+
</div>
|
|
3274
|
+
</td>
|
|
3275
|
+
</tr>
|
|
3276
|
+
|
|
3277
|
+
</tbody>
|
|
3278
|
+
</table>
|
|
3279
|
+
<table class="table table-sm table-bordered">
|
|
3280
|
+
<tbody>
|
|
3281
|
+
<tr>
|
|
3282
|
+
<td class="col-md-4">
|
|
3283
|
+
<a name="init"></a>
|
|
3284
|
+
<span class="name">
|
|
3285
|
+
<span ><b>init</b></span>
|
|
3286
|
+
<a href="#init"><span class="icon ion-ios-link"></span></a>
|
|
3287
|
+
</span>
|
|
3288
|
+
</td>
|
|
3289
|
+
</tr>
|
|
3290
|
+
<tr>
|
|
3291
|
+
<td class="col-md-4">
|
|
3292
|
+
<i>Default value : </i><code>(): Promise<unknown> => {
|
|
3293
|
+
const locationInitialized = inject(LOCATION_INITIALIZED, { optional: true }) || Promise.resolve(null);
|
|
3294
|
+
const appConfig: EuiAppConfig = inject(CONFIG_TOKEN);
|
|
3295
|
+
const storeService = inject(StoreService);
|
|
3296
|
+
|
|
3297
|
+
return new Promise<void>(resolve => {
|
|
3298
|
+
|
|
3299
|
+
locationInitialized.then(() => {
|
|
3300
|
+
// necessary config parameters
|
|
3301
|
+
let appVersion: string;
|
|
3302
|
+
if (appConfig && appConfig.versions && appConfig.versions.app) {
|
|
3303
|
+
appVersion = appConfig.versions.app;
|
|
3304
|
+
} else {
|
|
3305
|
+
appVersion = '0.0.0';
|
|
3306
|
+
}
|
|
3307
|
+
let storageType: BrowserStorageType;
|
|
3308
|
+
if (appConfig && appConfig['saveStateStorage']) {
|
|
3309
|
+
storageType = appConfig['saveStateStorage'];
|
|
3310
|
+
} else {
|
|
3311
|
+
storageType = BrowserStorageType.local;
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3314
|
+
storeService.init(appVersion, storageType);
|
|
3315
|
+
storeService.handleAutoSave();
|
|
3316
|
+
resolve(null);
|
|
3317
|
+
});
|
|
3318
|
+
});
|
|
3319
|
+
}</code>
|
|
3320
|
+
</td>
|
|
3321
|
+
</tr>
|
|
3322
|
+
|
|
3232
3323
|
|
|
3233
3324
|
</tbody>
|
|
3234
3325
|
</table>
|
|
@@ -3381,6 +3472,35 @@
|
|
|
3381
3472
|
</tbody>
|
|
3382
3473
|
</table>
|
|
3383
3474
|
</section>
|
|
3475
|
+
<h3>packages/eui/packages/core/src/lib/services/i18n/i18n.service.ts</h3>
|
|
3476
|
+
<section data-compodoc="block-properties">
|
|
3477
|
+
<h3></h3> <table class="table table-sm table-bordered">
|
|
3478
|
+
<tbody>
|
|
3479
|
+
<tr>
|
|
3480
|
+
<td class="col-md-4">
|
|
3481
|
+
<a name="getLastAddedModule"></a>
|
|
3482
|
+
<span class="name">
|
|
3483
|
+
<span ><b>getLastAddedModule</b></span>
|
|
3484
|
+
<a href="#getLastAddedModule"><span class="icon ion-ios-link"></span></a>
|
|
3485
|
+
</span>
|
|
3486
|
+
</td>
|
|
3487
|
+
</tr>
|
|
3488
|
+
<tr>
|
|
3489
|
+
<td class="col-md-4">
|
|
3490
|
+
<i>Type : </i> <code><a href="../miscellaneous/typealiases.html#Selector" target="_self" >Selector<CoreState, string></a></code>
|
|
3491
|
+
|
|
3492
|
+
</td>
|
|
3493
|
+
</tr>
|
|
3494
|
+
<tr>
|
|
3495
|
+
<td class="col-md-4">
|
|
3496
|
+
<i>Default value : </i><code>(state: CoreState) => state.app.loadedConfigModules.lastAddedModule</code>
|
|
3497
|
+
</td>
|
|
3498
|
+
</tr>
|
|
3499
|
+
|
|
3500
|
+
|
|
3501
|
+
</tbody>
|
|
3502
|
+
</table>
|
|
3503
|
+
</section>
|
|
3384
3504
|
<h3>packages/eui/packages/core/src/lib/helpers/http-helpers.ts</h3>
|
|
3385
3505
|
<section data-compodoc="block-properties">
|
|
3386
3506
|
<h3></h3> <table class="table table-sm table-bordered">
|