@eui/core 19.0.0-next.8 → 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 +32 -52
- 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 +666 -487
- 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
|
@@ -116,9 +116,33 @@
|
|
|
116
116
|
<li>
|
|
117
117
|
<a href="#ConsoleHttpErrorCallbackFn" title="packages/eui/packages/core/src/lib/services/errors/http-error-handler-callback-functions.ts" ><b>ConsoleHttpErrorCallbackFn</b> (packages/.../http-error-handler-callback-functions.ts)</a>
|
|
118
118
|
</li>
|
|
119
|
+
<li>
|
|
120
|
+
<a href="#createSelector" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>createSelector</b> (packages/.../ngrx_kit.ts)</a>
|
|
121
|
+
</li>
|
|
122
|
+
<li>
|
|
123
|
+
<a href="#createSelector" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>createSelector</b> (packages/.../ngrx_kit.ts)</a>
|
|
124
|
+
</li>
|
|
125
|
+
<li>
|
|
126
|
+
<a href="#createSelector" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>createSelector</b> (packages/.../ngrx_kit.ts)</a>
|
|
127
|
+
</li>
|
|
128
|
+
<li>
|
|
129
|
+
<a href="#createSelectorFactory" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>createSelectorFactory</b> (packages/.../ngrx_kit.ts)</a>
|
|
130
|
+
</li>
|
|
131
|
+
<li>
|
|
132
|
+
<a href="#createSelectorFactory" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>createSelectorFactory</b> (packages/.../ngrx_kit.ts)</a>
|
|
133
|
+
</li>
|
|
134
|
+
<li>
|
|
135
|
+
<a href="#defaultMemoize" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>defaultMemoize</b> (packages/.../ngrx_kit.ts)</a>
|
|
136
|
+
</li>
|
|
137
|
+
<li>
|
|
138
|
+
<a href="#defaultStateFn" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>defaultStateFn</b> (packages/.../ngrx_kit.ts)</a>
|
|
139
|
+
</li>
|
|
119
140
|
<li>
|
|
120
141
|
<a href="#euiLogServiceFactory" title="packages/eui/packages/core/src/lib/services/app/factories/log.ts" ><b>euiLogServiceFactory</b> (packages/.../log.ts)</a>
|
|
121
142
|
</li>
|
|
143
|
+
<li>
|
|
144
|
+
<a href="#extractArgsFromSelectorsDictionary" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>extractArgsFromSelectorsDictionary</b> (packages/.../ngrx_kit.ts)</a>
|
|
145
|
+
</li>
|
|
122
146
|
<li>
|
|
123
147
|
<a href="#getCoreChildProviders" title="packages/eui/packages/core/src/lib/services/app/eui-startup.ts" ><b>getCoreChildProviders</b> (packages/.../eui-startup.ts)</a>
|
|
124
148
|
</li>
|
|
@@ -149,14 +173,23 @@
|
|
|
149
173
|
<li>
|
|
150
174
|
<a href="#GrowlHttpErrorCallbackFn" title="packages/eui/packages/core/src/lib/services/errors/http-error-handler-callback-functions.ts" ><b>GrowlHttpErrorCallbackFn</b> (packages/.../http-error-handler-callback-functions.ts)</a>
|
|
151
175
|
</li>
|
|
176
|
+
<li>
|
|
177
|
+
<a href="#isArgumentsChanged" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>isArgumentsChanged</b> (packages/.../ngrx_kit.ts)</a>
|
|
178
|
+
</li>
|
|
179
|
+
<li>
|
|
180
|
+
<a href="#isEqualCheck" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>isEqualCheck</b> (packages/.../ngrx_kit.ts)</a>
|
|
181
|
+
</li>
|
|
152
182
|
<li>
|
|
153
183
|
<a href="#isLogConfigDefined" title="packages/eui/packages/core/src/lib/services/app/factories/log.ts" ><b>isLogConfigDefined</b> (packages/.../log.ts)</a>
|
|
154
184
|
</li>
|
|
185
|
+
<li>
|
|
186
|
+
<a href="#isSelectorsDictionary" title="packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts" ><b>isSelectorsDictionary</b> (packages/.../ngrx_kit.ts)</a>
|
|
187
|
+
</li>
|
|
155
188
|
<li>
|
|
156
189
|
<a href="#loadEuiDynamicEnvironmentConfig" title="packages/eui/packages/core/src/lib/services/app/eui-pre-init-app.ts" ><b>loadEuiDynamicEnvironmentConfig</b> (packages/.../eui-pre-init-app.ts)</a>
|
|
157
190
|
</li>
|
|
158
191
|
<li>
|
|
159
|
-
<a href="#localStorageSync" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" ><b>localStorageSync</b> (packages/.../meta.reducers.ts)</a>
|
|
192
|
+
<a href="#localStorageSync" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" class="deprecated-name"><b>localStorageSync</b> (packages/.../meta.reducers.ts)</a>
|
|
160
193
|
</li>
|
|
161
194
|
<li>
|
|
162
195
|
<a href="#localStorageSync" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" ><b>localStorageSync</b> (packages/.../meta.reducers.ts)</a>
|
|
@@ -183,10 +216,13 @@
|
|
|
183
216
|
<a href="#prepareEuiAppConfigToken" title="packages/eui/packages/core/src/lib/services/config/tokens.ts" ><b>prepareEuiAppConfigToken</b> (packages/.../tokens.ts)</a>
|
|
184
217
|
</li>
|
|
185
218
|
<li>
|
|
186
|
-
<a href="#
|
|
219
|
+
<a href="#provideEuiInitializer" title="packages/eui/packages/core/src/lib/services/app/eui-init-app.ts" ><b>provideEuiInitializer</b> (packages/.../eui-init-app.ts)</a>
|
|
187
220
|
</li>
|
|
188
221
|
<li>
|
|
189
|
-
<a href="#sessionStorageSync" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" ><b>sessionStorageSync</b> (packages/.../meta.reducers.ts)</a>
|
|
222
|
+
<a href="#sessionStorageSync" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" class="deprecated-name"><b>sessionStorageSync</b> (packages/.../meta.reducers.ts)</a>
|
|
223
|
+
</li>
|
|
224
|
+
<li>
|
|
225
|
+
<a href="#sessionStorageSync" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" class="deprecated-name"><b>sessionStorageSync</b> (packages/.../meta.reducers.ts)</a>
|
|
190
226
|
</li>
|
|
191
227
|
<li>
|
|
192
228
|
<a href="#sessionStorageSync" title="packages/eui/packages/core/src/lib/services/store/reducers/meta.reducers.ts" ><b>sessionStorageSync</b> (packages/.../meta.reducers.ts)</a>
|
|
@@ -196,24 +232,633 @@
|
|
|
196
232
|
</tr>
|
|
197
233
|
</tbody>
|
|
198
234
|
</table>
|
|
199
|
-
</section>
|
|
200
|
-
|
|
201
|
-
<h3>packages/eui/packages/core/src/lib/services/errors/http-error-handler-callback-functions.ts</h3>
|
|
202
|
-
<section data-compodoc="block-methods">
|
|
203
|
-
<h3></h3> <table class="table table-sm table-bordered">
|
|
235
|
+
</section>
|
|
236
|
+
|
|
237
|
+
<h3>packages/eui/packages/core/src/lib/services/errors/http-error-handler-callback-functions.ts</h3>
|
|
238
|
+
<section data-compodoc="block-methods">
|
|
239
|
+
<h3></h3> <table class="table table-sm table-bordered">
|
|
240
|
+
<tbody>
|
|
241
|
+
<tr>
|
|
242
|
+
<td class="col-md-4">
|
|
243
|
+
<a name="AlertHttpErrorCallbackFn"></a>
|
|
244
|
+
<span class="name">
|
|
245
|
+
<span ><b>AlertHttpErrorCallbackFn</b></span>
|
|
246
|
+
<a href="#AlertHttpErrorCallbackFn"><span class="icon ion-ios-link"></span></a>
|
|
247
|
+
</span>
|
|
248
|
+
</td>
|
|
249
|
+
</tr>
|
|
250
|
+
<tr>
|
|
251
|
+
<td class="col-md-4">
|
|
252
|
+
<code>AlertHttpErrorCallbackFn(error: HttpErrorResponse)</code>
|
|
253
|
+
</td>
|
|
254
|
+
</tr>
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
<tr>
|
|
260
|
+
<td class="col-md-4">
|
|
261
|
+
|
|
262
|
+
<div class="io-description">
|
|
263
|
+
<b>Parameters :</b>
|
|
264
|
+
|
|
265
|
+
<table class="params">
|
|
266
|
+
<thead>
|
|
267
|
+
<tr>
|
|
268
|
+
<td>Name</td>
|
|
269
|
+
<td>Type</td>
|
|
270
|
+
<td>Optional</td>
|
|
271
|
+
</tr>
|
|
272
|
+
</thead>
|
|
273
|
+
<tbody>
|
|
274
|
+
<tr>
|
|
275
|
+
<td>error</td>
|
|
276
|
+
<td>
|
|
277
|
+
<code>HttpErrorResponse</code>
|
|
278
|
+
</td>
|
|
279
|
+
|
|
280
|
+
<td>
|
|
281
|
+
No
|
|
282
|
+
</td>
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
</tr>
|
|
286
|
+
</tbody>
|
|
287
|
+
</table>
|
|
288
|
+
</div>
|
|
289
|
+
<div class="io-description">
|
|
290
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
|
291
|
+
|
|
292
|
+
</div>
|
|
293
|
+
<div class="io-description">
|
|
294
|
+
|
|
295
|
+
</div>
|
|
296
|
+
</td>
|
|
297
|
+
</tr>
|
|
298
|
+
</tbody>
|
|
299
|
+
</table>
|
|
300
|
+
<table class="table table-sm table-bordered">
|
|
301
|
+
<tbody>
|
|
302
|
+
<tr>
|
|
303
|
+
<td class="col-md-4">
|
|
304
|
+
<a name="ConsoleHttpErrorCallbackFn"></a>
|
|
305
|
+
<span class="name">
|
|
306
|
+
<span ><b>ConsoleHttpErrorCallbackFn</b></span>
|
|
307
|
+
<a href="#ConsoleHttpErrorCallbackFn"><span class="icon ion-ios-link"></span></a>
|
|
308
|
+
</span>
|
|
309
|
+
</td>
|
|
310
|
+
</tr>
|
|
311
|
+
<tr>
|
|
312
|
+
<td class="col-md-4">
|
|
313
|
+
<code>ConsoleHttpErrorCallbackFn(error: HttpErrorResponse)</code>
|
|
314
|
+
</td>
|
|
315
|
+
</tr>
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
<tr>
|
|
321
|
+
<td class="col-md-4">
|
|
322
|
+
|
|
323
|
+
<div class="io-description">
|
|
324
|
+
<b>Parameters :</b>
|
|
325
|
+
|
|
326
|
+
<table class="params">
|
|
327
|
+
<thead>
|
|
328
|
+
<tr>
|
|
329
|
+
<td>Name</td>
|
|
330
|
+
<td>Type</td>
|
|
331
|
+
<td>Optional</td>
|
|
332
|
+
</tr>
|
|
333
|
+
</thead>
|
|
334
|
+
<tbody>
|
|
335
|
+
<tr>
|
|
336
|
+
<td>error</td>
|
|
337
|
+
<td>
|
|
338
|
+
<code>HttpErrorResponse</code>
|
|
339
|
+
</td>
|
|
340
|
+
|
|
341
|
+
<td>
|
|
342
|
+
No
|
|
343
|
+
</td>
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
</tr>
|
|
347
|
+
</tbody>
|
|
348
|
+
</table>
|
|
349
|
+
</div>
|
|
350
|
+
<div class="io-description">
|
|
351
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
|
352
|
+
|
|
353
|
+
</div>
|
|
354
|
+
<div class="io-description">
|
|
355
|
+
|
|
356
|
+
</div>
|
|
357
|
+
</td>
|
|
358
|
+
</tr>
|
|
359
|
+
</tbody>
|
|
360
|
+
</table>
|
|
361
|
+
<table class="table table-sm table-bordered">
|
|
362
|
+
<tbody>
|
|
363
|
+
<tr>
|
|
364
|
+
<td class="col-md-4">
|
|
365
|
+
<a name="GrowlHttpErrorCallbackFn"></a>
|
|
366
|
+
<span class="name">
|
|
367
|
+
<span ><b>GrowlHttpErrorCallbackFn</b></span>
|
|
368
|
+
<a href="#GrowlHttpErrorCallbackFn"><span class="icon ion-ios-link"></span></a>
|
|
369
|
+
</span>
|
|
370
|
+
</td>
|
|
371
|
+
</tr>
|
|
372
|
+
<tr>
|
|
373
|
+
<td class="col-md-4">
|
|
374
|
+
<code>GrowlHttpErrorCallbackFn(error: HttpErrorResponse, injector: Injector)</code>
|
|
375
|
+
</td>
|
|
376
|
+
</tr>
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
<tr>
|
|
382
|
+
<td class="col-md-4">
|
|
383
|
+
|
|
384
|
+
<div class="io-description">
|
|
385
|
+
<b>Parameters :</b>
|
|
386
|
+
|
|
387
|
+
<table class="params">
|
|
388
|
+
<thead>
|
|
389
|
+
<tr>
|
|
390
|
+
<td>Name</td>
|
|
391
|
+
<td>Type</td>
|
|
392
|
+
<td>Optional</td>
|
|
393
|
+
</tr>
|
|
394
|
+
</thead>
|
|
395
|
+
<tbody>
|
|
396
|
+
<tr>
|
|
397
|
+
<td>error</td>
|
|
398
|
+
<td>
|
|
399
|
+
<code>HttpErrorResponse</code>
|
|
400
|
+
</td>
|
|
401
|
+
|
|
402
|
+
<td>
|
|
403
|
+
No
|
|
404
|
+
</td>
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
</tr>
|
|
408
|
+
<tr>
|
|
409
|
+
<td>injector</td>
|
|
410
|
+
<td>
|
|
411
|
+
<code>Injector</code>
|
|
412
|
+
</td>
|
|
413
|
+
|
|
414
|
+
<td>
|
|
415
|
+
No
|
|
416
|
+
</td>
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
</tr>
|
|
420
|
+
</tbody>
|
|
421
|
+
</table>
|
|
422
|
+
</div>
|
|
423
|
+
<div class="io-description">
|
|
424
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
|
425
|
+
|
|
426
|
+
</div>
|
|
427
|
+
<div class="io-description">
|
|
428
|
+
|
|
429
|
+
</div>
|
|
430
|
+
</td>
|
|
431
|
+
</tr>
|
|
432
|
+
</tbody>
|
|
433
|
+
</table>
|
|
434
|
+
<table class="table table-sm table-bordered">
|
|
435
|
+
<tbody>
|
|
436
|
+
<tr>
|
|
437
|
+
<td class="col-md-4">
|
|
438
|
+
<a name="LogHttpErrorCallbackFn"></a>
|
|
439
|
+
<span class="name">
|
|
440
|
+
<span ><b>LogHttpErrorCallbackFn</b></span>
|
|
441
|
+
<a href="#LogHttpErrorCallbackFn"><span class="icon ion-ios-link"></span></a>
|
|
442
|
+
</span>
|
|
443
|
+
</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td class="col-md-4">
|
|
447
|
+
<code>LogHttpErrorCallbackFn(error: HttpErrorResponse, injector: Injector)</code>
|
|
448
|
+
</td>
|
|
449
|
+
</tr>
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
<tr>
|
|
455
|
+
<td class="col-md-4">
|
|
456
|
+
|
|
457
|
+
<div class="io-description">
|
|
458
|
+
<b>Parameters :</b>
|
|
459
|
+
|
|
460
|
+
<table class="params">
|
|
461
|
+
<thead>
|
|
462
|
+
<tr>
|
|
463
|
+
<td>Name</td>
|
|
464
|
+
<td>Type</td>
|
|
465
|
+
<td>Optional</td>
|
|
466
|
+
</tr>
|
|
467
|
+
</thead>
|
|
468
|
+
<tbody>
|
|
469
|
+
<tr>
|
|
470
|
+
<td>error</td>
|
|
471
|
+
<td>
|
|
472
|
+
<code>HttpErrorResponse</code>
|
|
473
|
+
</td>
|
|
474
|
+
|
|
475
|
+
<td>
|
|
476
|
+
No
|
|
477
|
+
</td>
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
</tr>
|
|
481
|
+
<tr>
|
|
482
|
+
<td>injector</td>
|
|
483
|
+
<td>
|
|
484
|
+
<code>Injector</code>
|
|
485
|
+
</td>
|
|
486
|
+
|
|
487
|
+
<td>
|
|
488
|
+
No
|
|
489
|
+
</td>
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
</tr>
|
|
493
|
+
</tbody>
|
|
494
|
+
</table>
|
|
495
|
+
</div>
|
|
496
|
+
<div class="io-description">
|
|
497
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
|
498
|
+
|
|
499
|
+
</div>
|
|
500
|
+
<div class="io-description">
|
|
501
|
+
|
|
502
|
+
</div>
|
|
503
|
+
</td>
|
|
504
|
+
</tr>
|
|
505
|
+
</tbody>
|
|
506
|
+
</table>
|
|
507
|
+
</section> <h3>packages/eui/packages/core/src/lib/services/store/ngrx_kit.ts</h3>
|
|
508
|
+
<section data-compodoc="block-methods">
|
|
509
|
+
<h3></h3> <table class="table table-sm table-bordered">
|
|
510
|
+
<tbody>
|
|
511
|
+
<tr>
|
|
512
|
+
<td class="col-md-4">
|
|
513
|
+
<a name="createSelector"></a>
|
|
514
|
+
<span class="name">
|
|
515
|
+
<span ><b>createSelector</b></span>
|
|
516
|
+
<a href="#createSelector"><span class="icon ion-ios-link"></span></a>
|
|
517
|
+
</span>
|
|
518
|
+
</td>
|
|
519
|
+
</tr>
|
|
520
|
+
<tr>
|
|
521
|
+
<td class="col-md-4">
|
|
522
|
+
<code>createSelector(s1: <a href="../undefineds/Selector.html" target="_self">Selector</a>, projector)</code>
|
|
523
|
+
</td>
|
|
524
|
+
</tr>
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
<tr>
|
|
530
|
+
<td class="col-md-4">
|
|
531
|
+
|
|
532
|
+
<div class="io-description">
|
|
533
|
+
<b>Parameters :</b>
|
|
534
|
+
|
|
535
|
+
<table class="params">
|
|
536
|
+
<thead>
|
|
537
|
+
<tr>
|
|
538
|
+
<td>Name</td>
|
|
539
|
+
<td>Type</td>
|
|
540
|
+
<td>Optional</td>
|
|
541
|
+
</tr>
|
|
542
|
+
</thead>
|
|
543
|
+
<tbody>
|
|
544
|
+
<tr>
|
|
545
|
+
<td>s1</td>
|
|
546
|
+
<td>
|
|
547
|
+
<code><a href="../miscellaneous/typealiases.html#Selector" target="_self" >Selector</a></code>
|
|
548
|
+
</td>
|
|
549
|
+
|
|
550
|
+
<td>
|
|
551
|
+
No
|
|
552
|
+
</td>
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
</tr>
|
|
556
|
+
<tr>
|
|
557
|
+
<td>projector</td>
|
|
558
|
+
<td>
|
|
559
|
+
</td>
|
|
560
|
+
|
|
561
|
+
<td>
|
|
562
|
+
No
|
|
563
|
+
</td>
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
</tr>
|
|
567
|
+
</tbody>
|
|
568
|
+
</table>
|
|
569
|
+
</div>
|
|
570
|
+
<div class="io-description">
|
|
571
|
+
<b>Returns : </b> <code><a href="../interfaces/MemoizedSelector.html" target="_self" >MemoizedSelector<State, Result, ></a></code>
|
|
572
|
+
|
|
573
|
+
</div>
|
|
574
|
+
<div class="io-description">
|
|
575
|
+
|
|
576
|
+
</div>
|
|
577
|
+
</td>
|
|
578
|
+
</tr>
|
|
579
|
+
</tbody>
|
|
580
|
+
</table>
|
|
581
|
+
<table class="table table-sm table-bordered">
|
|
582
|
+
<tbody>
|
|
583
|
+
<tr>
|
|
584
|
+
<td class="col-md-4">
|
|
585
|
+
<a name="createSelector"></a>
|
|
586
|
+
<span class="name">
|
|
587
|
+
<span ><b>createSelector</b></span>
|
|
588
|
+
<a href="#createSelector"><span class="icon ion-ios-link"></span></a>
|
|
589
|
+
</span>
|
|
590
|
+
</td>
|
|
591
|
+
</tr>
|
|
592
|
+
<tr>
|
|
593
|
+
<td class="col-md-4">
|
|
594
|
+
<code>createSelector(selectors, projector)</code>
|
|
595
|
+
</td>
|
|
596
|
+
</tr>
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
<tr>
|
|
602
|
+
<td class="col-md-4">
|
|
603
|
+
|
|
604
|
+
<div class="io-description">
|
|
605
|
+
<b>Parameters :</b>
|
|
606
|
+
|
|
607
|
+
<table class="params">
|
|
608
|
+
<thead>
|
|
609
|
+
<tr>
|
|
610
|
+
<td>Name</td>
|
|
611
|
+
<td>Optional</td>
|
|
612
|
+
</tr>
|
|
613
|
+
</thead>
|
|
614
|
+
<tbody>
|
|
615
|
+
<tr>
|
|
616
|
+
<td>selectors</td>
|
|
617
|
+
|
|
618
|
+
<td>
|
|
619
|
+
No
|
|
620
|
+
</td>
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
</tr>
|
|
624
|
+
<tr>
|
|
625
|
+
<td>projector</td>
|
|
626
|
+
|
|
627
|
+
<td>
|
|
628
|
+
No
|
|
629
|
+
</td>
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
</tr>
|
|
633
|
+
</tbody>
|
|
634
|
+
</table>
|
|
635
|
+
</div>
|
|
636
|
+
<div class="io-description">
|
|
637
|
+
<b>Returns : </b> <code><a href="../interfaces/MemoizedSelector.html" target="_self" >MemoizedSelector<State, Result, Result></a></code>
|
|
638
|
+
|
|
639
|
+
</div>
|
|
640
|
+
<div class="io-description">
|
|
641
|
+
|
|
642
|
+
</div>
|
|
643
|
+
</td>
|
|
644
|
+
</tr>
|
|
645
|
+
</tbody>
|
|
646
|
+
</table>
|
|
647
|
+
<table class="table table-sm table-bordered">
|
|
648
|
+
<tbody>
|
|
649
|
+
<tr>
|
|
650
|
+
<td class="col-md-4">
|
|
651
|
+
<a name="createSelector"></a>
|
|
652
|
+
<span class="name">
|
|
653
|
+
<span ><b>createSelector</b></span>
|
|
654
|
+
<a href="#createSelector"><span class="icon ion-ios-link"></span></a>
|
|
655
|
+
</span>
|
|
656
|
+
</td>
|
|
657
|
+
</tr>
|
|
658
|
+
<tr>
|
|
659
|
+
<td class="col-md-4">
|
|
660
|
+
<code>createSelector(...input: undefined)</code>
|
|
661
|
+
</td>
|
|
662
|
+
</tr>
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
<tr>
|
|
668
|
+
<td class="col-md-4">
|
|
669
|
+
|
|
670
|
+
<div class="io-description">
|
|
671
|
+
<b>Parameters :</b>
|
|
672
|
+
|
|
673
|
+
<table class="params">
|
|
674
|
+
<thead>
|
|
675
|
+
<tr>
|
|
676
|
+
<td>Name</td>
|
|
677
|
+
<td>Optional</td>
|
|
678
|
+
</tr>
|
|
679
|
+
</thead>
|
|
680
|
+
<tbody>
|
|
681
|
+
<tr>
|
|
682
|
+
<td>input</td>
|
|
683
|
+
|
|
684
|
+
<td>
|
|
685
|
+
No
|
|
686
|
+
</td>
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
</tr>
|
|
690
|
+
</tbody>
|
|
691
|
+
</table>
|
|
692
|
+
</div>
|
|
693
|
+
<div class="io-description">
|
|
694
|
+
<b>Returns : </b> <code>MemoizedSelector | MemoizedSelectorWithProps</code>
|
|
695
|
+
|
|
696
|
+
</div>
|
|
697
|
+
<div class="io-description">
|
|
698
|
+
|
|
699
|
+
</div>
|
|
700
|
+
</td>
|
|
701
|
+
</tr>
|
|
702
|
+
</tbody>
|
|
703
|
+
</table>
|
|
704
|
+
<table class="table table-sm table-bordered">
|
|
705
|
+
<tbody>
|
|
706
|
+
<tr>
|
|
707
|
+
<td class="col-md-4">
|
|
708
|
+
<a name="createSelectorFactory"></a>
|
|
709
|
+
<span class="name">
|
|
710
|
+
<span ><b>createSelectorFactory</b></span>
|
|
711
|
+
<a href="#createSelectorFactory"><span class="icon ion-ios-link"></span></a>
|
|
712
|
+
</span>
|
|
713
|
+
</td>
|
|
714
|
+
</tr>
|
|
715
|
+
<tr>
|
|
716
|
+
<td class="col-md-4">
|
|
717
|
+
<code>createSelectorFactory(memoize: <a href="../undefineds/MemoizeFn.html" target="_self">MemoizeFn</a>)</code>
|
|
718
|
+
</td>
|
|
719
|
+
</tr>
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
<tr>
|
|
725
|
+
<td class="col-md-4">
|
|
726
|
+
|
|
727
|
+
<div class="io-description">
|
|
728
|
+
<b>Parameters :</b>
|
|
729
|
+
|
|
730
|
+
<table class="params">
|
|
731
|
+
<thead>
|
|
732
|
+
<tr>
|
|
733
|
+
<td>Name</td>
|
|
734
|
+
<td>Type</td>
|
|
735
|
+
<td>Optional</td>
|
|
736
|
+
</tr>
|
|
737
|
+
</thead>
|
|
738
|
+
<tbody>
|
|
739
|
+
<tr>
|
|
740
|
+
<td>memoize</td>
|
|
741
|
+
<td>
|
|
742
|
+
<code><a href="../miscellaneous/typealiases.html#MemoizeFn" target="_self" >MemoizeFn</a></code>
|
|
743
|
+
</td>
|
|
744
|
+
|
|
745
|
+
<td>
|
|
746
|
+
No
|
|
747
|
+
</td>
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
</tr>
|
|
751
|
+
</tbody>
|
|
752
|
+
</table>
|
|
753
|
+
</div>
|
|
754
|
+
<div class="io-description">
|
|
755
|
+
<b>Returns : </b> <code><a href="../interfaces/MemoizedSelector.html" target="_self" >MemoizedSelector<T | V></a></code>
|
|
756
|
+
|
|
757
|
+
</div>
|
|
758
|
+
<div class="io-description">
|
|
759
|
+
|
|
760
|
+
</div>
|
|
761
|
+
</td>
|
|
762
|
+
</tr>
|
|
763
|
+
</tbody>
|
|
764
|
+
</table>
|
|
765
|
+
<table class="table table-sm table-bordered">
|
|
766
|
+
<tbody>
|
|
767
|
+
<tr>
|
|
768
|
+
<td class="col-md-4">
|
|
769
|
+
<a name="createSelectorFactory"></a>
|
|
770
|
+
<span class="name">
|
|
771
|
+
<span ><b>createSelectorFactory</b></span>
|
|
772
|
+
<a href="#createSelectorFactory"><span class="icon ion-ios-link"></span></a>
|
|
773
|
+
</span>
|
|
774
|
+
</td>
|
|
775
|
+
</tr>
|
|
776
|
+
<tr>
|
|
777
|
+
<td class="col-md-4">
|
|
778
|
+
<code>createSelectorFactory(memoize: <a href="../undefineds/MemoizeFn.html" target="_self">MemoizeFn</a>, options: <a href="../undefineds/SelectorFactoryConfig.html" target="_self">SelectorFactoryConfig</a>)</code>
|
|
779
|
+
</td>
|
|
780
|
+
</tr>
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
<tr>
|
|
786
|
+
<td class="col-md-4">
|
|
787
|
+
|
|
788
|
+
<div class="io-description">
|
|
789
|
+
<b>Parameters :</b>
|
|
790
|
+
|
|
791
|
+
<table class="params">
|
|
792
|
+
<thead>
|
|
793
|
+
<tr>
|
|
794
|
+
<td>Name</td>
|
|
795
|
+
<td>Type</td>
|
|
796
|
+
<td>Optional</td>
|
|
797
|
+
<td>Default value</td>
|
|
798
|
+
<td>Description</td>
|
|
799
|
+
</tr>
|
|
800
|
+
</thead>
|
|
801
|
+
<tbody>
|
|
802
|
+
<tr>
|
|
803
|
+
<td>memoize</td>
|
|
804
|
+
<td>
|
|
805
|
+
<code><a href="../miscellaneous/typealiases.html#MemoizeFn" target="_self" >MemoizeFn</a></code>
|
|
806
|
+
</td>
|
|
807
|
+
|
|
808
|
+
<td>
|
|
809
|
+
No
|
|
810
|
+
</td>
|
|
811
|
+
|
|
812
|
+
<td>
|
|
813
|
+
</td>
|
|
814
|
+
|
|
815
|
+
<td>
|
|
816
|
+
<p>The function used to memoize selectors</p>
|
|
817
|
+
|
|
818
|
+
</td>
|
|
819
|
+
</tr>
|
|
820
|
+
<tr>
|
|
821
|
+
<td>options</td>
|
|
822
|
+
<td>
|
|
823
|
+
<code><a href="../miscellaneous/typealiases.html#SelectorFactoryConfig" target="_self" >SelectorFactoryConfig</a></code>
|
|
824
|
+
</td>
|
|
825
|
+
|
|
826
|
+
<td>
|
|
827
|
+
No
|
|
828
|
+
</td>
|
|
829
|
+
|
|
830
|
+
<td>
|
|
831
|
+
<code>{
|
|
832
|
+
stateFn: defaultStateFn,
|
|
833
|
+
}</code>
|
|
834
|
+
</td>
|
|
835
|
+
|
|
836
|
+
<td>
|
|
837
|
+
<p>Config Object that may include a <code>stateFn</code> function defining how to return the selector's value, given the entire <code>Store</code>'s state, parent <code>Selector</code>s, <code>Props</code>, and a <code>MemoizedProjection</code></p>
|
|
838
|
+
|
|
839
|
+
</td>
|
|
840
|
+
</tr>
|
|
841
|
+
</tbody>
|
|
842
|
+
</table>
|
|
843
|
+
</div>
|
|
844
|
+
</td>
|
|
845
|
+
</tr>
|
|
846
|
+
</tbody>
|
|
847
|
+
</table>
|
|
848
|
+
<table class="table table-sm table-bordered">
|
|
204
849
|
<tbody>
|
|
205
850
|
<tr>
|
|
206
851
|
<td class="col-md-4">
|
|
207
|
-
<a name="
|
|
852
|
+
<a name="defaultMemoize"></a>
|
|
208
853
|
<span class="name">
|
|
209
|
-
<span ><b>
|
|
210
|
-
<a href="#
|
|
854
|
+
<span ><b>defaultMemoize</b></span>
|
|
855
|
+
<a href="#defaultMemoize"><span class="icon ion-ios-link"></span></a>
|
|
211
856
|
</span>
|
|
212
857
|
</td>
|
|
213
858
|
</tr>
|
|
214
859
|
<tr>
|
|
215
860
|
<td class="col-md-4">
|
|
216
|
-
<code>
|
|
861
|
+
<code>defaultMemoize(projectionFn: <a href="../undefineds/AnyFn.html" target="_self">AnyFn</a>, isArgumentsEqual, isResultEqual)</code>
|
|
217
862
|
</td>
|
|
218
863
|
</tr>
|
|
219
864
|
|
|
@@ -232,26 +877,57 @@
|
|
|
232
877
|
<td>Name</td>
|
|
233
878
|
<td>Type</td>
|
|
234
879
|
<td>Optional</td>
|
|
880
|
+
<td>Default value</td>
|
|
235
881
|
</tr>
|
|
236
882
|
</thead>
|
|
237
883
|
<tbody>
|
|
238
884
|
<tr>
|
|
239
|
-
<td>
|
|
885
|
+
<td>projectionFn</td>
|
|
886
|
+
<td>
|
|
887
|
+
<code><a href="../miscellaneous/typealiases.html#AnyFn" target="_self" >AnyFn</a></code>
|
|
888
|
+
</td>
|
|
889
|
+
|
|
890
|
+
<td>
|
|
891
|
+
No
|
|
892
|
+
</td>
|
|
893
|
+
|
|
894
|
+
<td>
|
|
895
|
+
</td>
|
|
896
|
+
|
|
897
|
+
</tr>
|
|
898
|
+
<tr>
|
|
899
|
+
<td>isArgumentsEqual</td>
|
|
900
|
+
<td>
|
|
901
|
+
</td>
|
|
902
|
+
|
|
903
|
+
<td>
|
|
904
|
+
No
|
|
905
|
+
</td>
|
|
906
|
+
|
|
907
|
+
<td>
|
|
908
|
+
<code>isEqualCheck</code>
|
|
909
|
+
</td>
|
|
910
|
+
|
|
911
|
+
</tr>
|
|
912
|
+
<tr>
|
|
913
|
+
<td>isResultEqual</td>
|
|
240
914
|
<td>
|
|
241
|
-
<code>HttpErrorResponse</code>
|
|
242
915
|
</td>
|
|
243
916
|
|
|
244
917
|
<td>
|
|
245
918
|
No
|
|
246
919
|
</td>
|
|
247
920
|
|
|
921
|
+
<td>
|
|
922
|
+
<code>isEqualCheck</code>
|
|
923
|
+
</td>
|
|
248
924
|
|
|
249
925
|
</tr>
|
|
250
926
|
</tbody>
|
|
251
927
|
</table>
|
|
252
928
|
</div>
|
|
253
929
|
<div class="io-description">
|
|
254
|
-
<b>Returns : </b> <code><a href="
|
|
930
|
+
<b>Returns : </b> <code><a href="../miscellaneous/typealiases.html#MemoizedProjection" target="_self" >MemoizedProjection</a></code>
|
|
255
931
|
|
|
256
932
|
</div>
|
|
257
933
|
<div class="io-description">
|
|
@@ -265,16 +941,16 @@
|
|
|
265
941
|
<tbody>
|
|
266
942
|
<tr>
|
|
267
943
|
<td class="col-md-4">
|
|
268
|
-
<a name="
|
|
944
|
+
<a name="defaultStateFn"></a>
|
|
269
945
|
<span class="name">
|
|
270
|
-
<span ><b>
|
|
271
|
-
<a href="#
|
|
946
|
+
<span ><b>defaultStateFn</b></span>
|
|
947
|
+
<a href="#defaultStateFn"><span class="icon ion-ios-link"></span></a>
|
|
272
948
|
</span>
|
|
273
949
|
</td>
|
|
274
950
|
</tr>
|
|
275
951
|
<tr>
|
|
276
952
|
<td class="col-md-4">
|
|
277
|
-
<code>
|
|
953
|
+
<code>defaultStateFn(state: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>, selectors, props: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>, memoizedProjector: <a href="../undefineds/MemoizedProjection.html" target="_self">MemoizedProjection</a>)</code>
|
|
278
954
|
</td>
|
|
279
955
|
</tr>
|
|
280
956
|
|
|
@@ -297,9 +973,44 @@
|
|
|
297
973
|
</thead>
|
|
298
974
|
<tbody>
|
|
299
975
|
<tr>
|
|
300
|
-
<td>
|
|
976
|
+
<td>state</td>
|
|
301
977
|
<td>
|
|
302
|
-
|
|
978
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
979
|
+
</td>
|
|
980
|
+
|
|
981
|
+
<td>
|
|
982
|
+
No
|
|
983
|
+
</td>
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
</tr>
|
|
987
|
+
<tr>
|
|
988
|
+
<td>selectors</td>
|
|
989
|
+
<td>
|
|
990
|
+
</td>
|
|
991
|
+
|
|
992
|
+
<td>
|
|
993
|
+
No
|
|
994
|
+
</td>
|
|
995
|
+
|
|
996
|
+
|
|
997
|
+
</tr>
|
|
998
|
+
<tr>
|
|
999
|
+
<td>props</td>
|
|
1000
|
+
<td>
|
|
1001
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
1002
|
+
</td>
|
|
1003
|
+
|
|
1004
|
+
<td>
|
|
1005
|
+
No
|
|
1006
|
+
</td>
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
</tr>
|
|
1010
|
+
<tr>
|
|
1011
|
+
<td>memoizedProjector</td>
|
|
1012
|
+
<td>
|
|
1013
|
+
<code><a href="../miscellaneous/typealiases.html#MemoizedProjection" target="_self" >MemoizedProjection</a></code>
|
|
303
1014
|
</td>
|
|
304
1015
|
|
|
305
1016
|
<td>
|
|
@@ -312,7 +1023,7 @@
|
|
|
312
1023
|
</table>
|
|
313
1024
|
</div>
|
|
314
1025
|
<div class="io-description">
|
|
315
|
-
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >
|
|
1026
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
316
1027
|
|
|
317
1028
|
</div>
|
|
318
1029
|
<div class="io-description">
|
|
@@ -326,16 +1037,16 @@
|
|
|
326
1037
|
<tbody>
|
|
327
1038
|
<tr>
|
|
328
1039
|
<td class="col-md-4">
|
|
329
|
-
<a name="
|
|
1040
|
+
<a name="extractArgsFromSelectorsDictionary"></a>
|
|
330
1041
|
<span class="name">
|
|
331
|
-
<span ><b>
|
|
332
|
-
<a href="#
|
|
1042
|
+
<span ><b>extractArgsFromSelectorsDictionary</b></span>
|
|
1043
|
+
<a href="#extractArgsFromSelectorsDictionary"><span class="icon ion-ios-link"></span></a>
|
|
333
1044
|
</span>
|
|
334
1045
|
</td>
|
|
335
1046
|
</tr>
|
|
336
1047
|
<tr>
|
|
337
1048
|
<td class="col-md-4">
|
|
338
|
-
<code>
|
|
1049
|
+
<code>extractArgsFromSelectorsDictionary(selectorsDictionary: Record)</code>
|
|
339
1050
|
</td>
|
|
340
1051
|
</tr>
|
|
341
1052
|
|
|
@@ -358,9 +1069,9 @@
|
|
|
358
1069
|
</thead>
|
|
359
1070
|
<tbody>
|
|
360
1071
|
<tr>
|
|
361
|
-
<td>
|
|
1072
|
+
<td>selectorsDictionary</td>
|
|
362
1073
|
<td>
|
|
363
|
-
<code>
|
|
1074
|
+
<code>Record</code>
|
|
364
1075
|
</td>
|
|
365
1076
|
|
|
366
1077
|
<td>
|
|
@@ -369,10 +1080,76 @@
|
|
|
369
1080
|
|
|
370
1081
|
|
|
371
1082
|
</tr>
|
|
1083
|
+
</tbody>
|
|
1084
|
+
</table>
|
|
1085
|
+
</div>
|
|
1086
|
+
</td>
|
|
1087
|
+
</tr>
|
|
1088
|
+
</tbody>
|
|
1089
|
+
</table>
|
|
1090
|
+
<table class="table table-sm table-bordered">
|
|
1091
|
+
<tbody>
|
|
1092
|
+
<tr>
|
|
1093
|
+
<td class="col-md-4">
|
|
1094
|
+
<a name="isArgumentsChanged"></a>
|
|
1095
|
+
<span class="name">
|
|
1096
|
+
<span ><b>isArgumentsChanged</b></span>
|
|
1097
|
+
<a href="#isArgumentsChanged"><span class="icon ion-ios-link"></span></a>
|
|
1098
|
+
</span>
|
|
1099
|
+
</td>
|
|
1100
|
+
</tr>
|
|
1101
|
+
<tr>
|
|
1102
|
+
<td class="col-md-4">
|
|
1103
|
+
<code>isArgumentsChanged(args: IArguments, lastArguments: IArguments, comparator: <a href="../undefineds/ComparatorFn.html" target="_self">ComparatorFn</a>)</code>
|
|
1104
|
+
</td>
|
|
1105
|
+
</tr>
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
<tr>
|
|
1111
|
+
<td class="col-md-4">
|
|
1112
|
+
|
|
1113
|
+
<div class="io-description">
|
|
1114
|
+
<b>Parameters :</b>
|
|
1115
|
+
|
|
1116
|
+
<table class="params">
|
|
1117
|
+
<thead>
|
|
1118
|
+
<tr>
|
|
1119
|
+
<td>Name</td>
|
|
1120
|
+
<td>Type</td>
|
|
1121
|
+
<td>Optional</td>
|
|
1122
|
+
</tr>
|
|
1123
|
+
</thead>
|
|
1124
|
+
<tbody>
|
|
372
1125
|
<tr>
|
|
373
|
-
<td>
|
|
1126
|
+
<td>args</td>
|
|
374
1127
|
<td>
|
|
375
|
-
<code>
|
|
1128
|
+
<code>IArguments</code>
|
|
1129
|
+
</td>
|
|
1130
|
+
|
|
1131
|
+
<td>
|
|
1132
|
+
No
|
|
1133
|
+
</td>
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
</tr>
|
|
1137
|
+
<tr>
|
|
1138
|
+
<td>lastArguments</td>
|
|
1139
|
+
<td>
|
|
1140
|
+
<code>IArguments</code>
|
|
1141
|
+
</td>
|
|
1142
|
+
|
|
1143
|
+
<td>
|
|
1144
|
+
No
|
|
1145
|
+
</td>
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
</tr>
|
|
1149
|
+
<tr>
|
|
1150
|
+
<td>comparator</td>
|
|
1151
|
+
<td>
|
|
1152
|
+
<code><a href="../miscellaneous/typealiases.html#ComparatorFn" target="_self" >ComparatorFn</a></code>
|
|
376
1153
|
</td>
|
|
377
1154
|
|
|
378
1155
|
<td>
|
|
@@ -384,13 +1161,6 @@
|
|
|
384
1161
|
</tbody>
|
|
385
1162
|
</table>
|
|
386
1163
|
</div>
|
|
387
|
-
<div class="io-description">
|
|
388
|
-
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
|
389
|
-
|
|
390
|
-
</div>
|
|
391
|
-
<div class="io-description">
|
|
392
|
-
|
|
393
|
-
</div>
|
|
394
1164
|
</td>
|
|
395
1165
|
</tr>
|
|
396
1166
|
</tbody>
|
|
@@ -399,16 +1169,16 @@
|
|
|
399
1169
|
<tbody>
|
|
400
1170
|
<tr>
|
|
401
1171
|
<td class="col-md-4">
|
|
402
|
-
<a name="
|
|
1172
|
+
<a name="isEqualCheck"></a>
|
|
403
1173
|
<span class="name">
|
|
404
|
-
<span ><b>
|
|
405
|
-
<a href="#
|
|
1174
|
+
<span ><b>isEqualCheck</b></span>
|
|
1175
|
+
<a href="#isEqualCheck"><span class="icon ion-ios-link"></span></a>
|
|
406
1176
|
</span>
|
|
407
1177
|
</td>
|
|
408
1178
|
</tr>
|
|
409
1179
|
<tr>
|
|
410
1180
|
<td class="col-md-4">
|
|
411
|
-
<code>
|
|
1181
|
+
<code>isEqualCheck(a: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>, b: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>)</code>
|
|
412
1182
|
</td>
|
|
413
1183
|
</tr>
|
|
414
1184
|
|
|
@@ -431,9 +1201,9 @@
|
|
|
431
1201
|
</thead>
|
|
432
1202
|
<tbody>
|
|
433
1203
|
<tr>
|
|
434
|
-
<td>
|
|
1204
|
+
<td>a</td>
|
|
435
1205
|
<td>
|
|
436
|
-
|
|
1206
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
437
1207
|
</td>
|
|
438
1208
|
|
|
439
1209
|
<td>
|
|
@@ -443,9 +1213,9 @@
|
|
|
443
1213
|
|
|
444
1214
|
</tr>
|
|
445
1215
|
<tr>
|
|
446
|
-
<td>
|
|
1216
|
+
<td>b</td>
|
|
447
1217
|
<td>
|
|
448
|
-
|
|
1218
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
449
1219
|
</td>
|
|
450
1220
|
|
|
451
1221
|
<td>
|
|
@@ -458,7 +1228,64 @@
|
|
|
458
1228
|
</table>
|
|
459
1229
|
</div>
|
|
460
1230
|
<div class="io-description">
|
|
461
|
-
<b>Returns : </b> <code><a href="https://
|
|
1231
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code>
|
|
1232
|
+
|
|
1233
|
+
</div>
|
|
1234
|
+
<div class="io-description">
|
|
1235
|
+
|
|
1236
|
+
</div>
|
|
1237
|
+
</td>
|
|
1238
|
+
</tr>
|
|
1239
|
+
</tbody>
|
|
1240
|
+
</table>
|
|
1241
|
+
<table class="table table-sm table-bordered">
|
|
1242
|
+
<tbody>
|
|
1243
|
+
<tr>
|
|
1244
|
+
<td class="col-md-4">
|
|
1245
|
+
<a name="isSelectorsDictionary"></a>
|
|
1246
|
+
<span class="name">
|
|
1247
|
+
<span ><b>isSelectorsDictionary</b></span>
|
|
1248
|
+
<a href="#isSelectorsDictionary"><span class="icon ion-ios-link"></span></a>
|
|
1249
|
+
</span>
|
|
1250
|
+
</td>
|
|
1251
|
+
</tr>
|
|
1252
|
+
<tr>
|
|
1253
|
+
<td class="col-md-4">
|
|
1254
|
+
<code>isSelectorsDictionary(selectors)</code>
|
|
1255
|
+
</td>
|
|
1256
|
+
</tr>
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
<tr>
|
|
1262
|
+
<td class="col-md-4">
|
|
1263
|
+
|
|
1264
|
+
<div class="io-description">
|
|
1265
|
+
<b>Parameters :</b>
|
|
1266
|
+
|
|
1267
|
+
<table class="params">
|
|
1268
|
+
<thead>
|
|
1269
|
+
<tr>
|
|
1270
|
+
<td>Name</td>
|
|
1271
|
+
<td>Optional</td>
|
|
1272
|
+
</tr>
|
|
1273
|
+
</thead>
|
|
1274
|
+
<tbody>
|
|
1275
|
+
<tr>
|
|
1276
|
+
<td>selectors</td>
|
|
1277
|
+
|
|
1278
|
+
<td>
|
|
1279
|
+
No
|
|
1280
|
+
</td>
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
</tr>
|
|
1284
|
+
</tbody>
|
|
1285
|
+
</table>
|
|
1286
|
+
</div>
|
|
1287
|
+
<div class="io-description">
|
|
1288
|
+
<b>Returns : </b> <code><a href="../miscellaneous/typealiases.html#Selector" target="_self" >Record<string | Selector<, >></a></code>
|
|
462
1289
|
|
|
463
1290
|
</div>
|
|
464
1291
|
<div class="io-description">
|
|
@@ -1062,7 +1889,7 @@ Does not check only for empty object, because the config can have other (non-lo
|
|
|
1062
1889
|
</table>
|
|
1063
1890
|
</div>
|
|
1064
1891
|
<div class="io-description">
|
|
1065
|
-
<b>Returns : </b>
|
|
1892
|
+
<b>Returns : </b> <code><a href="../miscellaneous/typealiases.html#Handler" target="_self" >HttpErrorHandlerConfig</a></code>
|
|
1066
1893
|
|
|
1067
1894
|
</div>
|
|
1068
1895
|
<div class="io-description">
|
|
@@ -1280,7 +2107,7 @@ Does not check only for empty object, because the config can have other (non-lo
|
|
|
1280
2107
|
</tr>
|
|
1281
2108
|
<tr>
|
|
1282
2109
|
<td class="col-md-4">
|
|
1283
|
-
<code>mergeAppHandlerConfigToAppConfig(euiAppConfig: EuiAppConfig, envAppHandler: EuiAppHandlersConfig)</code>
|
|
2110
|
+
<code>mergeAppHandlerConfigToAppConfig(euiAppConfig: EuiAppConfig, envAppHandler: <a href="../undefineds/Handler.html" target="_self">EuiAppHandlersConfig</a>)</code>
|
|
1284
2111
|
</td>
|
|
1285
2112
|
</tr>
|
|
1286
2113
|
|
|
@@ -1317,7 +2144,7 @@ Does not check only for empty object, because the config can have other (non-lo
|
|
|
1317
2144
|
<tr>
|
|
1318
2145
|
<td>envAppHandler</td>
|
|
1319
2146
|
<td>
|
|
1320
|
-
|
|
2147
|
+
<code><a href="../miscellaneous/typealiases.html#Handler" target="_self" >EuiAppHandlersConfig</a></code>
|
|
1321
2148
|
</td>
|
|
1322
2149
|
|
|
1323
2150
|
<td>
|
|
@@ -1663,11 +2490,16 @@ It needs to be added in your application main.ts file.</p>
|
|
|
1663
2490
|
<td class="col-md-4">
|
|
1664
2491
|
<a name="localStorageSync"></a>
|
|
1665
2492
|
<span class="name">
|
|
1666
|
-
<span ><b>localStorageSync</b></span>
|
|
2493
|
+
<span class="deprecated-name"><b>localStorageSync</b></span>
|
|
1667
2494
|
<a href="#localStorageSync"><span class="icon ion-ios-link"></span></a>
|
|
1668
2495
|
</span>
|
|
1669
2496
|
</td>
|
|
1670
2497
|
</tr>
|
|
2498
|
+
<tr>
|
|
2499
|
+
<td class="col-md-4 deprecated">
|
|
2500
|
+
it will be removed in the next major version
|
|
2501
|
+
</td>
|
|
2502
|
+
</tr>
|
|
1671
2503
|
<tr>
|
|
1672
2504
|
<td class="col-md-4">
|
|
1673
2505
|
<code>localStorageSync(platformId)</code>
|
|
@@ -1734,7 +2566,7 @@ It needs to be added in your application main.ts file.</p>
|
|
|
1734
2566
|
</tr>
|
|
1735
2567
|
<tr>
|
|
1736
2568
|
<td class="col-md-4">
|
|
1737
|
-
<code>localStorageSync(reducer: ActionReducer)</code>
|
|
2569
|
+
<code>localStorageSync(reducer: <a href="../interfaces/ActionReducer.html" target="_self">ActionReducer</a>)</code>
|
|
1738
2570
|
</td>
|
|
1739
2571
|
</tr>
|
|
1740
2572
|
|
|
@@ -1762,7 +2594,7 @@ It needs to be added in your application main.ts file.</p>
|
|
|
1762
2594
|
<tr>
|
|
1763
2595
|
<td>reducer</td>
|
|
1764
2596
|
<td>
|
|
1765
|
-
|
|
2597
|
+
<code><a href="../interfaces/ActionReducer.html" target="_self" >ActionReducer</a></code>
|
|
1766
2598
|
</td>
|
|
1767
2599
|
|
|
1768
2600
|
<td>
|
|
@@ -1802,7 +2634,7 @@ It needs to be added in your application main.ts file.</p>
|
|
|
1802
2634
|
</tr>
|
|
1803
2635
|
<tr>
|
|
1804
2636
|
<td class="col-md-4">
|
|
1805
|
-
<code>localStorageSync(reducer: ActionReducer
|
|
2637
|
+
<code>localStorageSync(reducer: <a href="../interfaces/ActionReducer.html" target="_self">ActionReducer</a>, platformId?)</code>
|
|
1806
2638
|
</td>
|
|
1807
2639
|
</tr>
|
|
1808
2640
|
|
|
@@ -1827,7 +2659,7 @@ It needs to be added in your application main.ts file.</p>
|
|
|
1827
2659
|
<tr>
|
|
1828
2660
|
<td>reducer</td>
|
|
1829
2661
|
<td>
|
|
1830
|
-
|
|
2662
|
+
<code><a href="../interfaces/ActionReducer.html" target="_self" >ActionReducer</a></code>
|
|
1831
2663
|
</td>
|
|
1832
2664
|
|
|
1833
2665
|
<td>
|
|
@@ -1867,11 +2699,16 @@ It needs to be added in your application main.ts file.</p>
|
|
|
1867
2699
|
<td class="col-md-4">
|
|
1868
2700
|
<a name="sessionStorageSync"></a>
|
|
1869
2701
|
<span class="name">
|
|
1870
|
-
<span ><b>sessionStorageSync</b></span>
|
|
2702
|
+
<span class="deprecated-name"><b>sessionStorageSync</b></span>
|
|
1871
2703
|
<a href="#sessionStorageSync"><span class="icon ion-ios-link"></span></a>
|
|
1872
2704
|
</span>
|
|
1873
2705
|
</td>
|
|
1874
2706
|
</tr>
|
|
2707
|
+
<tr>
|
|
2708
|
+
<td class="col-md-4 deprecated">
|
|
2709
|
+
it will be removed in the next major version
|
|
2710
|
+
</td>
|
|
2711
|
+
</tr>
|
|
1875
2712
|
<tr>
|
|
1876
2713
|
<td class="col-md-4">
|
|
1877
2714
|
<code>sessionStorageSync(platformId)</code>
|
|
@@ -1931,14 +2768,19 @@ It needs to be added in your application main.ts file.</p>
|
|
|
1931
2768
|
<td class="col-md-4">
|
|
1932
2769
|
<a name="sessionStorageSync"></a>
|
|
1933
2770
|
<span class="name">
|
|
1934
|
-
<span ><b>sessionStorageSync</b></span>
|
|
2771
|
+
<span class="deprecated-name"><b>sessionStorageSync</b></span>
|
|
1935
2772
|
<a href="#sessionStorageSync"><span class="icon ion-ios-link"></span></a>
|
|
1936
2773
|
</span>
|
|
1937
2774
|
</td>
|
|
1938
2775
|
</tr>
|
|
2776
|
+
<tr>
|
|
2777
|
+
<td class="col-md-4 deprecated">
|
|
2778
|
+
it will be removed in the next major version
|
|
2779
|
+
</td>
|
|
2780
|
+
</tr>
|
|
1939
2781
|
<tr>
|
|
1940
2782
|
<td class="col-md-4">
|
|
1941
|
-
<code>sessionStorageSync(reducer: ActionReducer)</code>
|
|
2783
|
+
<code>sessionStorageSync(reducer: <a href="../interfaces/ActionReducer.html" target="_self">ActionReducer</a>)</code>
|
|
1942
2784
|
</td>
|
|
1943
2785
|
</tr>
|
|
1944
2786
|
|
|
@@ -1966,7 +2808,7 @@ It needs to be added in your application main.ts file.</p>
|
|
|
1966
2808
|
<tr>
|
|
1967
2809
|
<td>reducer</td>
|
|
1968
2810
|
<td>
|
|
1969
|
-
|
|
2811
|
+
<code><a href="../interfaces/ActionReducer.html" target="_self" >ActionReducer</a></code>
|
|
1970
2812
|
</td>
|
|
1971
2813
|
|
|
1972
2814
|
<td>
|
|
@@ -2006,7 +2848,7 @@ It needs to be added in your application main.ts file.</p>
|
|
|
2006
2848
|
</tr>
|
|
2007
2849
|
<tr>
|
|
2008
2850
|
<td class="col-md-4">
|
|
2009
|
-
<code>sessionStorageSync(reducer: ActionReducer
|
|
2851
|
+
<code>sessionStorageSync(reducer: <a href="../interfaces/ActionReducer.html" target="_self">ActionReducer</a>, platformId?)</code>
|
|
2010
2852
|
</td>
|
|
2011
2853
|
</tr>
|
|
2012
2854
|
|
|
@@ -2031,7 +2873,7 @@ It needs to be added in your application main.ts file.</p>
|
|
|
2031
2873
|
<tr>
|
|
2032
2874
|
<td>reducer</td>
|
|
2033
2875
|
<td>
|
|
2034
|
-
|
|
2876
|
+
<code><a href="../interfaces/ActionReducer.html" target="_self" >ActionReducer</a></code>
|
|
2035
2877
|
</td>
|
|
2036
2878
|
|
|
2037
2879
|
<td>
|
|
@@ -2065,6 +2907,41 @@ It needs to be added in your application main.ts file.</p>
|
|
|
2065
2907
|
</tr>
|
|
2066
2908
|
</tbody>
|
|
2067
2909
|
</table>
|
|
2910
|
+
</section> <h3>packages/eui/packages/core/src/lib/services/app/eui-init-app.ts</h3>
|
|
2911
|
+
<section data-compodoc="block-methods">
|
|
2912
|
+
<h3></h3> <table class="table table-sm table-bordered">
|
|
2913
|
+
<tbody>
|
|
2914
|
+
<tr>
|
|
2915
|
+
<td class="col-md-4">
|
|
2916
|
+
<a name="provideEuiInitializer"></a>
|
|
2917
|
+
<span class="name">
|
|
2918
|
+
<span ><b>provideEuiInitializer</b></span>
|
|
2919
|
+
<a href="#provideEuiInitializer"><span class="icon ion-ios-link"></span></a>
|
|
2920
|
+
</span>
|
|
2921
|
+
</td>
|
|
2922
|
+
</tr>
|
|
2923
|
+
<tr>
|
|
2924
|
+
<td class="col-md-4">
|
|
2925
|
+
<code>provideEuiInitializer()</code>
|
|
2926
|
+
</td>
|
|
2927
|
+
</tr>
|
|
2928
|
+
|
|
2929
|
+
|
|
2930
|
+
|
|
2931
|
+
|
|
2932
|
+
<tr>
|
|
2933
|
+
<td class="col-md-4">
|
|
2934
|
+
<div class="io-description"><p>Initializes the app with the necessary configurations. Use this in combination with <code>provideAppInitializer(euiInitApp_Env)</code></p>
|
|
2935
|
+
</div>
|
|
2936
|
+
|
|
2937
|
+
<div class="io-description">
|
|
2938
|
+
<b>Returns : </b> <code>EnvironmentProviders</code>
|
|
2939
|
+
|
|
2940
|
+
</div>
|
|
2941
|
+
</td>
|
|
2942
|
+
</tr>
|
|
2943
|
+
</tbody>
|
|
2944
|
+
</table>
|
|
2068
2945
|
</section>
|
|
2069
2946
|
|
|
2070
2947
|
|