@eui/core 15.4.0-snapshot-1690222114541 → 15.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/dependencies.html +4 -2
- package/docs/injectables/StoreService.html +90 -0
- package/docs/injectables/StoreServiceMock.html +90 -0
- package/docs/injectables/UserService.html +179 -0
- package/docs/injectables/UserServiceMock.html +9 -1
- package/docs/js/search/search_index.js +2 -2
- package/esm2020/lib/services/store/store.service.mjs +7 -1
- package/esm2020/lib/services/user/user.service.mjs +16 -3
- package/fesm2015/eui-core.mjs +21 -2
- package/fesm2015/eui-core.mjs.map +1 -1
- package/fesm2020/eui-core.mjs +21 -2
- package/fesm2020/eui-core.mjs.map +1 -1
- package/lib/services/store/store.service.d.ts +2 -1
- package/lib/services/store/store.service.d.ts.map +1 -1
- package/lib/services/user/user.service.d.ts +2 -1
- package/lib/services/user/user.service.d.ts.map +1 -1
- package/package.json +2 -2
package/docs/dependencies.html
CHANGED
|
@@ -110,6 +110,8 @@
|
|
|
110
110
|
<b>@typescript-eslint/eslint-plugin-tslint</b> : 5.50.0</li>
|
|
111
111
|
<li>
|
|
112
112
|
<b>eslint-plugin-import</b> : 2.27.5</li>
|
|
113
|
+
<li>
|
|
114
|
+
<b>@eslint-community/eslint-utils</b> : 4.4.0</li>
|
|
113
115
|
<li>
|
|
114
116
|
<b>@webcomponents/custom-elements</b> : 1.5.1</li>
|
|
115
117
|
<li>
|
|
@@ -259,9 +261,9 @@
|
|
|
259
261
|
<li>
|
|
260
262
|
<b>eslint-plugin-prettier</b> : 4.2.1</li>
|
|
261
263
|
<li>
|
|
262
|
-
<b>@eui/ecl</b> : 15.
|
|
264
|
+
<b>@eui/ecl</b> : 15.4.0-snapshot-1690875650641</li>
|
|
263
265
|
<li>
|
|
264
|
-
<b>@eui/styles-base</b> : 15.
|
|
266
|
+
<b>@eui/styles-base</b> : 15.4.0-snapshot-1690875650641</li>
|
|
265
267
|
<li>
|
|
266
268
|
<b>@eui/tools</b> : ^6.0.0</li>
|
|
267
269
|
</ul>
|
|
@@ -82,6 +82,9 @@
|
|
|
82
82
|
<li>
|
|
83
83
|
<a href="#dispatch" >dispatch</a>
|
|
84
84
|
</li>
|
|
85
|
+
<li>
|
|
86
|
+
<a href="#dispatchAction" >dispatchAction</a>
|
|
87
|
+
</li>
|
|
85
88
|
<li>
|
|
86
89
|
<a href="#handleAutoSave" >handleAutoSave</a>
|
|
87
90
|
</li>
|
|
@@ -305,6 +308,93 @@ that allows to intercept if the store is present</p>
|
|
|
305
308
|
</tr>
|
|
306
309
|
</tbody>
|
|
307
310
|
</table>
|
|
311
|
+
<table class="table table-sm table-bordered">
|
|
312
|
+
<tbody>
|
|
313
|
+
<tr>
|
|
314
|
+
<td class="col-md-4">
|
|
315
|
+
<a name="dispatchAction"></a>
|
|
316
|
+
<span class="name">
|
|
317
|
+
<span ><b>dispatchAction</b></span>
|
|
318
|
+
<a href="#dispatchAction"><span class="icon ion-ios-link"></span></a>
|
|
319
|
+
</span>
|
|
320
|
+
</td>
|
|
321
|
+
</tr>
|
|
322
|
+
<tr>
|
|
323
|
+
<td class="col-md-4">
|
|
324
|
+
<code>dispatchAction(state: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>, actionKey: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>, reducer: ActionReducer<any | Action>)</code>
|
|
325
|
+
</td>
|
|
326
|
+
</tr>
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
<tr>
|
|
332
|
+
<td class="col-md-4">
|
|
333
|
+
|
|
334
|
+
<div class="io-description">
|
|
335
|
+
<b>Parameters :</b>
|
|
336
|
+
|
|
337
|
+
<table class="params">
|
|
338
|
+
<thead>
|
|
339
|
+
<tr>
|
|
340
|
+
<td>Name</td>
|
|
341
|
+
<td>Type</td>
|
|
342
|
+
<td>Optional</td>
|
|
343
|
+
</tr>
|
|
344
|
+
</thead>
|
|
345
|
+
<tbody>
|
|
346
|
+
<tr>
|
|
347
|
+
<td>state</td>
|
|
348
|
+
<td>
|
|
349
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
350
|
+
</td>
|
|
351
|
+
|
|
352
|
+
<td>
|
|
353
|
+
No
|
|
354
|
+
</td>
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
</tr>
|
|
358
|
+
<tr>
|
|
359
|
+
<td>actionKey</td>
|
|
360
|
+
<td>
|
|
361
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
362
|
+
</td>
|
|
363
|
+
|
|
364
|
+
<td>
|
|
365
|
+
No
|
|
366
|
+
</td>
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
</tr>
|
|
370
|
+
<tr>
|
|
371
|
+
<td>reducer</td>
|
|
372
|
+
<td>
|
|
373
|
+
<code>ActionReducer<any | Action></code>
|
|
374
|
+
</td>
|
|
375
|
+
|
|
376
|
+
<td>
|
|
377
|
+
No
|
|
378
|
+
</td>
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
</tr>
|
|
382
|
+
</tbody>
|
|
383
|
+
</table>
|
|
384
|
+
</div>
|
|
385
|
+
<div>
|
|
386
|
+
</div>
|
|
387
|
+
<div class="io-description">
|
|
388
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
389
|
+
|
|
390
|
+
</div>
|
|
391
|
+
<div class="io-description">
|
|
392
|
+
|
|
393
|
+
</div>
|
|
394
|
+
</td>
|
|
395
|
+
</tr>
|
|
396
|
+
</tbody>
|
|
397
|
+
</table>
|
|
308
398
|
<table class="table table-sm table-bordered">
|
|
309
399
|
<tbody>
|
|
310
400
|
<tr>
|
|
@@ -97,6 +97,9 @@
|
|
|
97
97
|
<li>
|
|
98
98
|
<a href="#select" >select</a>
|
|
99
99
|
</li>
|
|
100
|
+
<li>
|
|
101
|
+
<a href="#dispatchAction" >dispatchAction</a>
|
|
102
|
+
</li>
|
|
100
103
|
</ul>
|
|
101
104
|
</td>
|
|
102
105
|
</tr>
|
|
@@ -278,6 +281,93 @@
|
|
|
278
281
|
<div class="io-description">
|
|
279
282
|
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
280
283
|
|
|
284
|
+
</div>
|
|
285
|
+
</td>
|
|
286
|
+
</tr>
|
|
287
|
+
</tbody>
|
|
288
|
+
</table>
|
|
289
|
+
<table class="table table-sm table-bordered">
|
|
290
|
+
<tbody>
|
|
291
|
+
<tr>
|
|
292
|
+
<td class="col-md-4">
|
|
293
|
+
<a name="dispatchAction"></a>
|
|
294
|
+
<span class="name">
|
|
295
|
+
<span ><b>dispatchAction</b></span>
|
|
296
|
+
<a href="#dispatchAction"><span class="icon ion-ios-link"></span></a>
|
|
297
|
+
</span>
|
|
298
|
+
</td>
|
|
299
|
+
</tr>
|
|
300
|
+
<tr>
|
|
301
|
+
<td class="col-md-4">
|
|
302
|
+
<code>dispatchAction(state: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>, actionKey: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>, reducer: ActionReducer<any | Action>)</code>
|
|
303
|
+
</td>
|
|
304
|
+
</tr>
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
<tr>
|
|
310
|
+
<td class="col-md-4">
|
|
311
|
+
|
|
312
|
+
<div class="io-description">
|
|
313
|
+
<b>Parameters :</b>
|
|
314
|
+
|
|
315
|
+
<table class="params">
|
|
316
|
+
<thead>
|
|
317
|
+
<tr>
|
|
318
|
+
<td>Name</td>
|
|
319
|
+
<td>Type</td>
|
|
320
|
+
<td>Optional</td>
|
|
321
|
+
</tr>
|
|
322
|
+
</thead>
|
|
323
|
+
<tbody>
|
|
324
|
+
<tr>
|
|
325
|
+
<td>state</td>
|
|
326
|
+
<td>
|
|
327
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
328
|
+
</td>
|
|
329
|
+
|
|
330
|
+
<td>
|
|
331
|
+
No
|
|
332
|
+
</td>
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
</tr>
|
|
336
|
+
<tr>
|
|
337
|
+
<td>actionKey</td>
|
|
338
|
+
<td>
|
|
339
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
340
|
+
</td>
|
|
341
|
+
|
|
342
|
+
<td>
|
|
343
|
+
No
|
|
344
|
+
</td>
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
</tr>
|
|
348
|
+
<tr>
|
|
349
|
+
<td>reducer</td>
|
|
350
|
+
<td>
|
|
351
|
+
<code>ActionReducer<any | Action></code>
|
|
352
|
+
</td>
|
|
353
|
+
|
|
354
|
+
<td>
|
|
355
|
+
No
|
|
356
|
+
</td>
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
</tr>
|
|
360
|
+
</tbody>
|
|
361
|
+
</table>
|
|
362
|
+
</div>
|
|
363
|
+
<div>
|
|
364
|
+
</div>
|
|
365
|
+
<div class="io-description">
|
|
366
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
367
|
+
|
|
368
|
+
</div>
|
|
369
|
+
<div class="io-description">
|
|
370
|
+
|
|
281
371
|
</div>
|
|
282
372
|
</td>
|
|
283
373
|
</tr>
|
|
@@ -97,6 +97,12 @@
|
|
|
97
97
|
<li>
|
|
98
98
|
<a href="#updateState" >updateState</a>
|
|
99
99
|
</li>
|
|
100
|
+
<li>
|
|
101
|
+
<a href="#updateState" >updateState</a>
|
|
102
|
+
</li>
|
|
103
|
+
<li>
|
|
104
|
+
<a href="#updateState" >updateState</a>
|
|
105
|
+
</li>
|
|
100
106
|
</ul>
|
|
101
107
|
</td>
|
|
102
108
|
</tr>
|
|
@@ -453,6 +459,14 @@
|
|
|
453
459
|
|
|
454
460
|
|
|
455
461
|
|
|
462
|
+
<tr>
|
|
463
|
+
<td class="col-md-4">
|
|
464
|
+
<b>Type parameters :</b>
|
|
465
|
+
<ul class="type-parameters">
|
|
466
|
+
<li>K</li>
|
|
467
|
+
</ul>
|
|
468
|
+
</td>
|
|
469
|
+
</tr>
|
|
456
470
|
|
|
457
471
|
<tr>
|
|
458
472
|
<td class="col-md-4">
|
|
@@ -480,6 +494,171 @@
|
|
|
480
494
|
</td>
|
|
481
495
|
|
|
482
496
|
|
|
497
|
+
</tr>
|
|
498
|
+
</tbody>
|
|
499
|
+
</table>
|
|
500
|
+
</div>
|
|
501
|
+
<div>
|
|
502
|
+
</div>
|
|
503
|
+
<div class="io-description">
|
|
504
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
505
|
+
|
|
506
|
+
</div>
|
|
507
|
+
<div class="io-description">
|
|
508
|
+
|
|
509
|
+
</div>
|
|
510
|
+
</td>
|
|
511
|
+
</tr>
|
|
512
|
+
</tbody>
|
|
513
|
+
</table>
|
|
514
|
+
<table class="table table-sm table-bordered">
|
|
515
|
+
<tbody>
|
|
516
|
+
<tr>
|
|
517
|
+
<td class="col-md-4">
|
|
518
|
+
<a name="updateState"></a>
|
|
519
|
+
<span class="name">
|
|
520
|
+
<span ><b>updateState</b></span>
|
|
521
|
+
<a href="#updateState"><span class="icon ion-ios-link"></span></a>
|
|
522
|
+
</span>
|
|
523
|
+
</td>
|
|
524
|
+
</tr>
|
|
525
|
+
<tr>
|
|
526
|
+
<td class="col-md-4">
|
|
527
|
+
<code>updateState(slice, reducer: (state: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>,undefined) => void)</code>
|
|
528
|
+
</td>
|
|
529
|
+
</tr>
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
<tr>
|
|
534
|
+
<td class="col-md-4">
|
|
535
|
+
<b>Type parameters :</b>
|
|
536
|
+
<ul class="type-parameters">
|
|
537
|
+
<li>a</li>
|
|
538
|
+
</ul>
|
|
539
|
+
</td>
|
|
540
|
+
</tr>
|
|
541
|
+
|
|
542
|
+
<tr>
|
|
543
|
+
<td class="col-md-4">
|
|
544
|
+
|
|
545
|
+
<div class="io-description">
|
|
546
|
+
<b>Parameters :</b>
|
|
547
|
+
|
|
548
|
+
<table class="params">
|
|
549
|
+
<thead>
|
|
550
|
+
<tr>
|
|
551
|
+
<td>Name</td>
|
|
552
|
+
<td>Type</td>
|
|
553
|
+
<td>Optional</td>
|
|
554
|
+
</tr>
|
|
555
|
+
</thead>
|
|
556
|
+
<tbody>
|
|
557
|
+
<tr>
|
|
558
|
+
<td>slice</td>
|
|
559
|
+
<td>
|
|
560
|
+
</td>
|
|
561
|
+
|
|
562
|
+
<td>
|
|
563
|
+
No
|
|
564
|
+
</td>
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
</tr>
|
|
568
|
+
<tr>
|
|
569
|
+
<td>reducer</td>
|
|
570
|
+
<td>
|
|
571
|
+
<code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/function" target="_blank" >function</a></code>
|
|
572
|
+
</td>
|
|
573
|
+
|
|
574
|
+
<td>
|
|
575
|
+
No
|
|
576
|
+
</td>
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
</tr>
|
|
580
|
+
</tbody>
|
|
581
|
+
</table>
|
|
582
|
+
</div>
|
|
583
|
+
<div>
|
|
584
|
+
</div>
|
|
585
|
+
<div class="io-description">
|
|
586
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
587
|
+
|
|
588
|
+
</div>
|
|
589
|
+
<div class="io-description">
|
|
590
|
+
|
|
591
|
+
</div>
|
|
592
|
+
</td>
|
|
593
|
+
</tr>
|
|
594
|
+
</tbody>
|
|
595
|
+
</table>
|
|
596
|
+
<table class="table table-sm table-bordered">
|
|
597
|
+
<tbody>
|
|
598
|
+
<tr>
|
|
599
|
+
<td class="col-md-4">
|
|
600
|
+
<a name="updateState"></a>
|
|
601
|
+
<span class="name">
|
|
602
|
+
<span ><b>updateState</b></span>
|
|
603
|
+
<a href="#updateState"><span class="icon ion-ios-link"></span></a>
|
|
604
|
+
</span>
|
|
605
|
+
</td>
|
|
606
|
+
</tr>
|
|
607
|
+
<tr>
|
|
608
|
+
<td class="col-md-4">
|
|
609
|
+
<code>updateState(userState: K | T, reducer?: <a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank">any</a>)</code>
|
|
610
|
+
</td>
|
|
611
|
+
</tr>
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
<tr>
|
|
616
|
+
<td class="col-md-4">
|
|
617
|
+
<b>Type parameters :</b>
|
|
618
|
+
<ul class="type-parameters">
|
|
619
|
+
<li>K</li>
|
|
620
|
+
</ul>
|
|
621
|
+
</td>
|
|
622
|
+
</tr>
|
|
623
|
+
|
|
624
|
+
<tr>
|
|
625
|
+
<td class="col-md-4">
|
|
626
|
+
|
|
627
|
+
<div class="io-description">
|
|
628
|
+
<b>Parameters :</b>
|
|
629
|
+
|
|
630
|
+
<table class="params">
|
|
631
|
+
<thead>
|
|
632
|
+
<tr>
|
|
633
|
+
<td>Name</td>
|
|
634
|
+
<td>Type</td>
|
|
635
|
+
<td>Optional</td>
|
|
636
|
+
</tr>
|
|
637
|
+
</thead>
|
|
638
|
+
<tbody>
|
|
639
|
+
<tr>
|
|
640
|
+
<td>userState</td>
|
|
641
|
+
<td>
|
|
642
|
+
<code>K | T</code>
|
|
643
|
+
</td>
|
|
644
|
+
|
|
645
|
+
<td>
|
|
646
|
+
No
|
|
647
|
+
</td>
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
</tr>
|
|
651
|
+
<tr>
|
|
652
|
+
<td>reducer</td>
|
|
653
|
+
<td>
|
|
654
|
+
<code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
655
|
+
</td>
|
|
656
|
+
|
|
657
|
+
<td>
|
|
658
|
+
Yes
|
|
659
|
+
</td>
|
|
660
|
+
|
|
661
|
+
|
|
483
662
|
</tr>
|
|
484
663
|
</tbody>
|
|
485
664
|
</table>
|
|
@@ -513,6 +513,14 @@
|
|
|
513
513
|
|
|
514
514
|
|
|
515
515
|
|
|
516
|
+
<tr>
|
|
517
|
+
<td class="col-md-4">
|
|
518
|
+
<b>Type parameters :</b>
|
|
519
|
+
<ul class="type-parameters">
|
|
520
|
+
<li>K</li>
|
|
521
|
+
</ul>
|
|
522
|
+
</td>
|
|
523
|
+
</tr>
|
|
516
524
|
|
|
517
525
|
<tr>
|
|
518
526
|
<td class="col-md-4">
|
|
@@ -547,7 +555,7 @@
|
|
|
547
555
|
<div>
|
|
548
556
|
</div>
|
|
549
557
|
<div class="io-description">
|
|
550
|
-
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >
|
|
558
|
+
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code>
|
|
551
559
|
|
|
552
560
|
</div>
|
|
553
561
|
<div class="io-description">
|