@eui/components 19.0.3 → 19.0.4
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/directives/eui-has-permission.directive.d.ts +70 -2
- package/directives/eui-has-permission.directive.d.ts.map +1 -1
- package/directives/eui-maxlength.directive.d.ts +94 -10
- package/directives/eui-maxlength.directive.d.ts.map +1 -1
- package/docs/components/EuiAlertComponent.html +129 -0
- package/docs/components/EuiAlertTitleComponent.html +12 -0
- package/docs/components/EuiChipComponent.html +108 -1
- package/docs/components/EuiInputCheckboxComponent.html +169 -10
- package/docs/components/EuiInputGroupAddOnComponent.html +22 -0
- package/docs/components/EuiInputGroupAddOnItemComponent.html +30 -0
- package/docs/components/EuiInputGroupComponent.html +35 -0
- package/docs/components/EuiInputNumberComponent.html +83 -4
- package/docs/components/EuiInputRadioComponent.html +228 -0
- package/docs/components/EuiInputTextComponent.html +50 -0
- package/docs/components/EuiPaginatorComponent.html +204 -0
- package/docs/components/EuiTextareaComponent.html +207 -1
- package/docs/dependencies.html +2 -2
- package/docs/directives/AutoResizeDirective.html +49 -1
- package/docs/directives/EuiHasPermissionDirective.html +34 -0
- package/docs/directives/EuiInputNumberDirective.html +17 -0
- package/docs/directives/EuiMaxLengthDirective.html +35 -7
- package/docs/js/menu-wc.js +65 -119
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/functions.html +14 -0
- package/docs/modules/EuiAlertModule.html +11 -0
- package/docs/modules/EuiChipModule.html +11 -0
- package/docs/modules/EuiHasPermissionDirectiveModule.html +17 -3
- package/docs/modules/EuiInputCheckboxModule.html +25 -4
- package/docs/modules/EuiInputGroupModule.html +20 -5
- package/docs/modules/EuiInputNumberModule.html +26 -5
- package/docs/modules/EuiInputRadioModule.html +27 -4
- package/docs/modules/EuiInputTextModule.html +25 -4
- package/docs/modules/EuiMaxLengthDirectiveModule.html +25 -4
- package/docs/modules/EuiPaginatorModule.html +11 -0
- package/docs/modules/EuiTextAreaModule.html +20 -4
- package/eui-alert/components/eui-alert-title.component.d.ts +1 -0
- package/eui-alert/components/eui-alert-title.component.d.ts.map +1 -1
- package/eui-alert/eui-alert.component.d.ts +74 -0
- package/eui-alert/eui-alert.component.d.ts.map +1 -1
- package/eui-alert/eui-alert.module.d.ts +12 -0
- package/eui-alert/eui-alert.module.d.ts.map +1 -1
- package/eui-chip/eui-chip.component.d.ts +71 -0
- package/eui-chip/eui-chip.component.d.ts.map +1 -1
- package/eui-chip/eui-chip.module.d.ts +12 -0
- package/eui-chip/eui-chip.module.d.ts.map +1 -1
- package/eui-input-checkbox/eui-input-checkbox.component.d.ts +88 -11
- package/eui-input-checkbox/eui-input-checkbox.component.d.ts.map +1 -1
- package/eui-input-checkbox/eui-input-checkbox.module.d.ts +17 -3
- package/eui-input-checkbox/eui-input-checkbox.module.d.ts.map +1 -1
- package/eui-input-group/eui-input-group-addon-item.component.d.ts +33 -1
- package/eui-input-group/eui-input-group-addon-item.component.d.ts.map +1 -1
- package/eui-input-group/eui-input-group-addon.component.d.ts +40 -2
- package/eui-input-group/eui-input-group-addon.component.d.ts.map +1 -1
- package/eui-input-group/eui-input-group.component.d.ts +44 -1
- package/eui-input-group/eui-input-group.component.d.ts.map +1 -1
- package/eui-input-group/eui-input-group.module.d.ts +21 -5
- package/eui-input-group/eui-input-group.module.d.ts.map +1 -1
- package/eui-input-number/eui-input-number.component.d.ts +73 -9
- package/eui-input-number/eui-input-number.component.d.ts.map +1 -1
- package/eui-input-number/eui-input-number.module.d.ts +19 -4
- package/eui-input-number/eui-input-number.module.d.ts.map +1 -1
- package/eui-input-number/eui-number-control.directive.d.ts +27 -2
- package/eui-input-number/eui-number-control.directive.d.ts.map +1 -1
- package/eui-input-radio/eui-input-radio.component.d.ts +96 -1
- package/eui-input-radio/eui-input-radio.component.d.ts.map +1 -1
- package/eui-input-radio/eui-input-radio.module.d.ts +20 -3
- package/eui-input-radio/eui-input-radio.module.d.ts.map +1 -1
- package/eui-input-text/eui-input-text.component.d.ts +54 -1
- package/eui-input-text/eui-input-text.component.d.ts.map +1 -1
- package/eui-input-text/eui-input-text.module.d.ts +19 -3
- package/eui-input-text/eui-input-text.module.d.ts.map +1 -1
- package/eui-paginator/eui-paginator.component.d.ts +148 -4
- package/eui-paginator/eui-paginator.component.d.ts.map +1 -1
- package/eui-paginator/eui-paginator.module.d.ts +12 -0
- package/eui-paginator/eui-paginator.module.d.ts.map +1 -1
- package/eui-textarea/auto-resize.directive.d.ts +90 -3
- package/eui-textarea/auto-resize.directive.d.ts.map +1 -1
- package/eui-textarea/eui-textarea.component.d.ts +111 -5
- package/eui-textarea/eui-textarea.component.d.ts.map +1 -1
- package/eui-textarea/eui-textarea.module.d.ts +23 -4
- package/eui-textarea/eui-textarea.module.d.ts.map +1 -1
- package/eui-timepicker/eui-timepicker.component.d.ts.map +1 -1
- package/fesm2022/eui-components-directives.mjs +180 -34
- package/fesm2022/eui-components-directives.mjs.map +1 -1
- package/fesm2022/eui-components-eui-accordion.mjs +1 -1
- package/fesm2022/eui-components-eui-alert.mjs +85 -3
- package/fesm2022/eui-components-eui-alert.mjs.map +1 -1
- package/fesm2022/eui-components-eui-autocomplete.mjs +2 -2
- package/fesm2022/eui-components-eui-avatar.mjs +1 -1
- package/fesm2022/eui-components-eui-badge.mjs +1 -1
- package/fesm2022/eui-components-eui-block-content.mjs +1 -1
- package/fesm2022/eui-components-eui-block-document.mjs +1 -1
- package/fesm2022/eui-components-eui-breadcrumb.mjs +1 -1
- package/fesm2022/eui-components-eui-button-group.mjs +1 -1
- package/fesm2022/eui-components-eui-button-v2.mjs +1 -1
- package/fesm2022/eui-components-eui-button.mjs +1 -1
- package/fesm2022/eui-components-eui-card.mjs +3 -3
- package/fesm2022/eui-components-eui-card.mjs.map +1 -1
- package/fesm2022/eui-components-eui-chip-group.mjs +1 -1
- package/fesm2022/eui-components-eui-chip-list.mjs +1 -1
- package/fesm2022/eui-components-eui-chip.mjs +75 -1
- package/fesm2022/eui-components-eui-chip.mjs.map +1 -1
- package/fesm2022/eui-components-eui-dashboard-button.mjs +1 -1
- package/fesm2022/eui-components-eui-dashboard-card.mjs +1 -1
- package/fesm2022/eui-components-eui-date-range-selector.mjs +5 -5
- package/fesm2022/eui-components-eui-date-range-selector.mjs.map +1 -1
- package/fesm2022/eui-components-eui-datepicker.mjs +1 -1
- package/fesm2022/eui-components-eui-dialog.mjs +1 -1
- package/fesm2022/eui-components-eui-dimmer.mjs +1 -1
- package/fesm2022/eui-components-eui-disable-content.mjs +1 -1
- package/fesm2022/eui-components-eui-discussion-thread.mjs +1 -1
- package/fesm2022/eui-components-eui-dropdown.mjs +2 -2
- package/fesm2022/eui-components-eui-feedback-message.mjs +1 -1
- package/fesm2022/eui-components-eui-fieldset.mjs +1 -1
- package/fesm2022/eui-components-eui-file-upload.mjs +1 -1
- package/fesm2022/eui-components-eui-growl.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-button-expander.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-button.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-color.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-input.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-state.mjs +1 -1
- package/fesm2022/eui-components-eui-icon-toggle.mjs +1 -1
- package/fesm2022/eui-components-eui-icon.mjs +1 -1
- package/fesm2022/eui-components-eui-input-checkbox.mjs +104 -14
- package/fesm2022/eui-components-eui-input-checkbox.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-group.mjs +142 -12
- package/fesm2022/eui-components-eui-input-group.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-number.mjs +109 -13
- package/fesm2022/eui-components-eui-input-number.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-radio.mjs +117 -6
- package/fesm2022/eui-components-eui-input-radio.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-text.mjs +73 -6
- package/fesm2022/eui-components-eui-input-text.mjs.map +1 -1
- package/fesm2022/eui-components-eui-label.mjs +1 -1
- package/fesm2022/eui-components-eui-language-selector.mjs +1 -1
- package/fesm2022/eui-components-eui-list.mjs +1 -1
- package/fesm2022/eui-components-eui-menu.mjs +1 -1
- package/fesm2022/eui-components-eui-message-box.mjs +1 -1
- package/fesm2022/eui-components-eui-navbar.mjs +1 -1
- package/fesm2022/eui-components-eui-overlay.mjs +1 -1
- package/fesm2022/eui-components-eui-page.mjs +1 -1
- package/fesm2022/eui-components-eui-paginator.mjs +153 -6
- package/fesm2022/eui-components-eui-paginator.mjs.map +1 -1
- package/fesm2022/eui-components-eui-popover.mjs +1 -1
- package/fesm2022/eui-components-eui-progress-bar.mjs +1 -1
- package/fesm2022/eui-components-eui-progress-circle.mjs +1 -1
- package/fesm2022/eui-components-eui-select.mjs +1 -1
- package/fesm2022/eui-components-eui-sidebar-menu.mjs +1 -1
- package/fesm2022/eui-components-eui-skeleton.mjs +1 -1
- package/fesm2022/eui-components-eui-slide-toggle.mjs +2 -2
- package/fesm2022/eui-components-eui-split-button.mjs +1 -1
- package/fesm2022/eui-components-eui-table-v2.mjs +1 -1
- package/fesm2022/eui-components-eui-table.mjs +1 -1
- package/fesm2022/eui-components-eui-tabs.mjs +1 -1
- package/fesm2022/eui-components-eui-textarea.mjs +221 -15
- package/fesm2022/eui-components-eui-textarea.mjs.map +1 -1
- package/fesm2022/eui-components-eui-timebar.mjs +1 -1
- package/fesm2022/eui-components-eui-timeline.mjs +1 -1
- package/fesm2022/eui-components-eui-timepicker.mjs +36 -29
- package/fesm2022/eui-components-eui-timepicker.mjs.map +1 -1
- package/fesm2022/eui-components-eui-tree-list.mjs +1 -1
- package/fesm2022/eui-components-eui-tree.mjs +1 -1
- package/fesm2022/eui-components-eui-user-profile.mjs +1 -1
- package/fesm2022/eui-components-eui-wizard.mjs +1 -1
- package/fesm2022/eui-components-externals-eui-editor.mjs +1 -1
- package/fesm2022/eui-components-externals-quill.mjs +1 -1
- package/fesm2022/eui-components-layout.mjs +2 -2
- package/fesm2022/eui-components-shared.mjs +2 -2
- package/package.json +3 -3
@@ -109,6 +109,15 @@
|
|
109
109
|
</p>
|
110
110
|
|
111
111
|
|
112
|
+
<p class="comment">
|
113
|
+
<h3>Description</h3>
|
114
|
+
</p>
|
115
|
+
<p class="comment">
|
116
|
+
<p>Chips are compact elements that allow users to enter information, select a choice, filter content or trigger an action.
|
117
|
+
The eui-chip component can also be displayed dynamically as a group of multiple interactive elements, see eui-chip-list.</p>
|
118
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html"></code></pre></div><b>Example :</b><div><pre class="line-numbers"><code class="language-html"><eui-chip>Chip label</eui-chip></code></pre></div><p>See <a href="https://eui.ecdevops.eu/eui-showcase-ux-components-19.x/style-guide/components/eui-chip">https://eui.ecdevops.eu/eui-showcase-ux-components-19.x/style-guide/components/eui-chip</a>.</p>
|
119
|
+
|
120
|
+
</p>
|
112
121
|
|
113
122
|
|
114
123
|
<p class="comment">
|
@@ -255,7 +264,7 @@
|
|
255
264
|
<a href="#isFilled" >isFilled</a>
|
256
265
|
</li>
|
257
266
|
<li>
|
258
|
-
<a href="#isSquared" >isSquared</a>
|
267
|
+
<a href="#isSquared" class="deprecated-name">isSquared</a>
|
259
268
|
</li>
|
260
269
|
<li>
|
261
270
|
<a href="#tooltipMessage" >tooltipMessage</a>
|
@@ -393,6 +402,12 @@
|
|
393
402
|
<i>Default value : </i><code>'Chip content'</code>
|
394
403
|
</td>
|
395
404
|
</tr>
|
405
|
+
<tr>
|
406
|
+
<td class="col-md-4">
|
407
|
+
<div class="io-description"><p>Sets the <code>aria-label</code> attribute for the host element.</p>
|
408
|
+
</div>
|
409
|
+
</td>
|
410
|
+
</tr>
|
396
411
|
</tbody>
|
397
412
|
</table>
|
398
413
|
<table class="table table-sm table-bordered">
|
@@ -421,6 +436,12 @@
|
|
421
436
|
}</code>
|
422
437
|
</td>
|
423
438
|
</tr>
|
439
|
+
<tr>
|
440
|
+
<td class="col-md-4">
|
441
|
+
<div class="io-description"><p>Sets the data of the chip like tooltip configuration.</p>
|
442
|
+
</div>
|
443
|
+
</td>
|
444
|
+
</tr>
|
424
445
|
</tbody>
|
425
446
|
</table>
|
426
447
|
<table class="table table-sm table-bordered">
|
@@ -442,6 +463,12 @@
|
|
442
463
|
<i>Default value : </i><code>'eui-chip'</code>
|
443
464
|
</td>
|
444
465
|
</tr>
|
466
|
+
<tr>
|
467
|
+
<td class="col-md-4">
|
468
|
+
<div class="io-description"><p>Sets the <code>data-e2e</code> attribute for the host element.</p>
|
469
|
+
</div>
|
470
|
+
</td>
|
471
|
+
</tr>
|
445
472
|
</tbody>
|
446
473
|
</table>
|
447
474
|
<table class="table table-sm table-bordered">
|
@@ -463,6 +490,12 @@
|
|
463
490
|
<i>Default value : </i><code>null</code>
|
464
491
|
</td>
|
465
492
|
</tr>
|
493
|
+
<tr>
|
494
|
+
<td class="col-md-4">
|
495
|
+
<div class="io-description"><p>Sets the euiInternalId of the chip.</p>
|
496
|
+
</div>
|
497
|
+
</td>
|
498
|
+
</tr>
|
466
499
|
</tbody>
|
467
500
|
</table>
|
468
501
|
<table class="table table-sm table-bordered">
|
@@ -479,6 +512,12 @@
|
|
479
512
|
|
480
513
|
</td>
|
481
514
|
</tr>
|
515
|
+
<tr>
|
516
|
+
<td class="col-md-4">
|
517
|
+
<div class="io-description"><p>Sets the id of the chip.</p>
|
518
|
+
</div>
|
519
|
+
</td>
|
520
|
+
</tr>
|
482
521
|
</tbody>
|
483
522
|
</table>
|
484
523
|
<table class="table table-sm table-bordered">
|
@@ -500,6 +539,12 @@
|
|
500
539
|
<i>Default value : </i><code>false</code>
|
501
540
|
</td>
|
502
541
|
</tr>
|
542
|
+
<tr>
|
543
|
+
<td class="col-md-4">
|
544
|
+
<div class="io-description"><p>Wether the chip can be removed.</p>
|
545
|
+
</div>
|
546
|
+
</td>
|
547
|
+
</tr>
|
503
548
|
</tbody>
|
504
549
|
</table>
|
505
550
|
<table class="table table-sm table-bordered">
|
@@ -521,6 +566,12 @@
|
|
521
566
|
<i>Default value : </i><code>false</code>
|
522
567
|
</td>
|
523
568
|
</tr>
|
569
|
+
<tr>
|
570
|
+
<td class="col-md-4">
|
571
|
+
<div class="io-description"><p>Wether the chip is filled with color.</p>
|
572
|
+
</div>
|
573
|
+
</td>
|
574
|
+
</tr>
|
524
575
|
</tbody>
|
525
576
|
</table>
|
526
577
|
<table class="table table-sm table-bordered">
|
@@ -558,6 +609,12 @@
|
|
558
609
|
|
559
610
|
</td>
|
560
611
|
</tr>
|
612
|
+
<tr>
|
613
|
+
<td class="col-md-4">
|
614
|
+
<div class="io-description"><p>Sets the label of the tooltip to diaply on hover.</p>
|
615
|
+
</div>
|
616
|
+
</td>
|
617
|
+
</tr>
|
561
618
|
</tbody>
|
562
619
|
</table>
|
563
620
|
</section>
|
@@ -577,6 +634,12 @@
|
|
577
634
|
|
578
635
|
</td>
|
579
636
|
</tr>
|
637
|
+
<tr>
|
638
|
+
<td class="col-md-4">
|
639
|
+
<div class="io-description"><p>Event emitted when the chip is removed.</p>
|
640
|
+
</div>
|
641
|
+
</td>
|
642
|
+
</tr>
|
580
643
|
</tbody>
|
581
644
|
</table>
|
582
645
|
</section>
|
@@ -604,6 +667,12 @@
|
|
604
667
|
</td>
|
605
668
|
</tr>
|
606
669
|
|
670
|
+
<tr>
|
671
|
+
<td class="col-md-4">
|
672
|
+
<div class="io-description"><p>Sets the <code>role</code> attribute for the host element.</p>
|
673
|
+
</div>
|
674
|
+
</td>
|
675
|
+
</tr>
|
607
676
|
|
608
677
|
</tbody>
|
609
678
|
</table>
|
@@ -625,6 +694,12 @@
|
|
625
694
|
</td>
|
626
695
|
</tr>
|
627
696
|
|
697
|
+
<tr>
|
698
|
+
<td class="col-md-4">
|
699
|
+
<div class="io-description"><p>Sets the <code>class</code> attribute for the host element.</p>
|
700
|
+
</div>
|
701
|
+
</td>
|
702
|
+
</tr>
|
628
703
|
|
629
704
|
</tbody>
|
630
705
|
</table>
|
@@ -660,6 +735,8 @@
|
|
660
735
|
|
661
736
|
<tr>
|
662
737
|
<td class="col-md-4">
|
738
|
+
<div class="io-description"><p>Remove chip handler</p>
|
739
|
+
</div>
|
663
740
|
|
664
741
|
<div class="io-description">
|
665
742
|
<b>Parameters :</b>
|
@@ -670,6 +747,7 @@
|
|
670
747
|
<td>Name</td>
|
671
748
|
<td>Type</td>
|
672
749
|
<td>Optional</td>
|
750
|
+
<td>Description</td>
|
673
751
|
</tr>
|
674
752
|
</thead>
|
675
753
|
<tbody>
|
@@ -684,6 +762,10 @@
|
|
684
762
|
</td>
|
685
763
|
|
686
764
|
|
765
|
+
<td>
|
766
|
+
<p>Click event</p>
|
767
|
+
|
768
|
+
</td>
|
687
769
|
</tr>
|
688
770
|
</tbody>
|
689
771
|
</table>
|
@@ -786,6 +868,12 @@
|
|
786
868
|
</td>
|
787
869
|
</tr>
|
788
870
|
|
871
|
+
<tr>
|
872
|
+
<td class="col-md-4">
|
873
|
+
<div class="io-description"><p>Icon declares by user in the chip</p>
|
874
|
+
</div>
|
875
|
+
</td>
|
876
|
+
</tr>
|
789
877
|
|
790
878
|
</tbody>
|
791
879
|
</table>
|
@@ -822,6 +910,12 @@
|
|
822
910
|
</td>
|
823
911
|
</tr>
|
824
912
|
|
913
|
+
<tr>
|
914
|
+
<td class="col-md-4">
|
915
|
+
<div class="io-description"><p>Sets the <code>role</code> attribute for the host element.</p>
|
916
|
+
</div>
|
917
|
+
</td>
|
918
|
+
</tr>
|
825
919
|
|
826
920
|
</tbody>
|
827
921
|
</table>
|
@@ -845,6 +939,19 @@
|
|
845
939
|
<span class="accessor"><b>get</b><code>cssClasses()</code></span>
|
846
940
|
</td>
|
847
941
|
</tr>
|
942
|
+
<tr>
|
943
|
+
<td class="col-md-4">
|
944
|
+
<div class="io-description"><p>Sets the <code>class</code> attribute for the host element.</p>
|
945
|
+
</div>
|
946
|
+
|
947
|
+
<div>
|
948
|
+
</div>
|
949
|
+
<div class="io-description">
|
950
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
951
|
+
|
952
|
+
</div>
|
953
|
+
</td>
|
954
|
+
</tr>
|
848
955
|
|
849
956
|
</tbody>
|
850
957
|
</table>
|
@@ -109,6 +109,17 @@
|
|
109
109
|
</p>
|
110
110
|
|
111
111
|
|
112
|
+
<p class="comment">
|
113
|
+
<h3>Description</h3>
|
114
|
+
</p>
|
115
|
+
<p class="comment">
|
116
|
+
<p>Angular component that provides a custom checkbox input implementation.
|
117
|
+
Extends <a href="../directives/InputDirective.html">InputDirective</a> and implements form control functionality.</p>
|
118
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html"><input euiInputCheckBox
|
119
|
+
[(ngModel)]="isChecked"
|
120
|
+
[indeterminate]="isIndeterminate"
|
121
|
+
[isInvalid]="hasError"></code></pre></div>
|
122
|
+
</p>
|
112
123
|
|
113
124
|
<p class="comment">
|
114
125
|
<h3>Extends</h3>
|
@@ -149,6 +160,10 @@
|
|
149
160
|
<td class="col-md-9"><code>input[euiInputCheckBox]</code></td>
|
150
161
|
</tr>
|
151
162
|
|
163
|
+
<tr>
|
164
|
+
<td class="col-md-3">standalone</td>
|
165
|
+
<td class="col-md-9"><code>true</code></td>
|
166
|
+
</tr>
|
152
167
|
|
153
168
|
|
154
169
|
<tr>
|
@@ -413,6 +428,12 @@
|
|
413
428
|
|
414
429
|
</td>
|
415
430
|
</tr>
|
431
|
+
<tr>
|
432
|
+
<td class="col-md-4">
|
433
|
+
<div class="io-description"><p>Controls the checked state of the checkbox.</p>
|
434
|
+
</div>
|
435
|
+
</td>
|
436
|
+
</tr>
|
416
437
|
</tbody>
|
417
438
|
</table>
|
418
439
|
<table class="table table-sm table-bordered">
|
@@ -431,10 +452,9 @@
|
|
431
452
|
</tr>
|
432
453
|
<tr>
|
433
454
|
<td class="col-md-4">
|
434
|
-
<div class="io-description"><p>
|
435
|
-
|
436
|
-
|
437
|
-
set to false.</p>
|
455
|
+
<div class="io-description"><p>Controls the indeterminate (mixed) state of the checkbox.
|
456
|
+
When true, the checkbox appears in an indeterminate state.
|
457
|
+
This state is automatically cleared when the checkbox is clicked.</p>
|
438
458
|
</div>
|
439
459
|
</td>
|
440
460
|
</tr>
|
@@ -454,6 +474,12 @@ set to false.</p>
|
|
454
474
|
|
455
475
|
</td>
|
456
476
|
</tr>
|
477
|
+
<tr>
|
478
|
+
<td class="col-md-4">
|
479
|
+
<div class="io-description"><p>Controls the invalid state of the checkbox. Used for displaying validation errors.</p>
|
480
|
+
</div>
|
481
|
+
</td>
|
482
|
+
</tr>
|
457
483
|
</tbody>
|
458
484
|
</table>
|
459
485
|
<table class="table table-sm table-bordered">
|
@@ -565,7 +591,7 @@ set to false.</p>
|
|
565
591
|
</tr>
|
566
592
|
<tr>
|
567
593
|
<td class="col-md-4">
|
568
|
-
<div class="io-description"><p>Event
|
594
|
+
<div class="io-description"><p>Event emitter that fires when the indeterminate state changes.</p>
|
569
595
|
</div>
|
570
596
|
</td>
|
571
597
|
</tr>
|
@@ -617,6 +643,13 @@ set to false.</p>
|
|
617
643
|
</td>
|
618
644
|
</tr>
|
619
645
|
|
646
|
+
<tr>
|
647
|
+
<td class="col-md-4">
|
648
|
+
<div class="io-description"><p>Gets the CSS classes for the checkbox component.
|
649
|
+
Combines base classes with validation state classes.</p>
|
650
|
+
</div>
|
651
|
+
</td>
|
652
|
+
</tr>
|
620
653
|
|
621
654
|
</tbody>
|
622
655
|
</table>
|
@@ -641,13 +674,50 @@ set to false.</p>
|
|
641
674
|
</tr>
|
642
675
|
<tr>
|
643
676
|
<td class="col-md-4">
|
644
|
-
<code>change(checked)</code>
|
677
|
+
<code>change(checked: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank">boolean</a>)</code>
|
645
678
|
</td>
|
646
679
|
</tr>
|
647
680
|
|
648
681
|
|
649
682
|
|
650
683
|
|
684
|
+
<tr>
|
685
|
+
<td class="col-md-4">
|
686
|
+
<div class="io-description"><p>Event handler for checkbox change events.</p>
|
687
|
+
</div>
|
688
|
+
|
689
|
+
<div class="io-description">
|
690
|
+
<b>Parameters :</b>
|
691
|
+
|
692
|
+
<table class="params">
|
693
|
+
<thead>
|
694
|
+
<tr>
|
695
|
+
<td>Name</td>
|
696
|
+
<td>Optional</td>
|
697
|
+
<td>Description</td>
|
698
|
+
</tr>
|
699
|
+
</thead>
|
700
|
+
<tbody>
|
701
|
+
<tr>
|
702
|
+
<td>checked</td>
|
703
|
+
|
704
|
+
<td>
|
705
|
+
No
|
706
|
+
</td>
|
707
|
+
|
708
|
+
|
709
|
+
<td>
|
710
|
+
<ul>
|
711
|
+
<li>The new checked state</li>
|
712
|
+
</ul>
|
713
|
+
|
714
|
+
</td>
|
715
|
+
</tr>
|
716
|
+
</tbody>
|
717
|
+
</table>
|
718
|
+
</div>
|
719
|
+
</td>
|
720
|
+
</tr>
|
651
721
|
</tbody>
|
652
722
|
</table>
|
653
723
|
<table class="table table-sm table-bordered">
|
@@ -675,6 +745,44 @@ set to false.</p>
|
|
675
745
|
|
676
746
|
|
677
747
|
|
748
|
+
<tr>
|
749
|
+
<td class="col-md-4">
|
750
|
+
<div class="io-description"><p>Event handler for space key press.
|
751
|
+
Prevents space key action when checkbox is readonly.</p>
|
752
|
+
</div>
|
753
|
+
|
754
|
+
<div class="io-description">
|
755
|
+
<b>Parameters :</b>
|
756
|
+
|
757
|
+
<table class="params">
|
758
|
+
<thead>
|
759
|
+
<tr>
|
760
|
+
<td>Name</td>
|
761
|
+
<td>Optional</td>
|
762
|
+
<td>Description</td>
|
763
|
+
</tr>
|
764
|
+
</thead>
|
765
|
+
<tbody>
|
766
|
+
<tr>
|
767
|
+
<td>event</td>
|
768
|
+
|
769
|
+
<td>
|
770
|
+
No
|
771
|
+
</td>
|
772
|
+
|
773
|
+
|
774
|
+
<td>
|
775
|
+
<ul>
|
776
|
+
<li>The keyboard event</li>
|
777
|
+
</ul>
|
778
|
+
|
779
|
+
</td>
|
780
|
+
</tr>
|
781
|
+
</tbody>
|
782
|
+
</table>
|
783
|
+
</div>
|
784
|
+
</td>
|
785
|
+
</tr>
|
678
786
|
</tbody>
|
679
787
|
</table>
|
680
788
|
</section>
|
@@ -889,6 +997,9 @@ set to false.</p>
|
|
889
997
|
|
890
998
|
<tr>
|
891
999
|
<td class="col-md-4">
|
1000
|
+
<div class="io-description"><p>Implements ControlValueAccessor writeValue method.
|
1001
|
+
Updates the checked state of the checkbox.</p>
|
1002
|
+
</div>
|
892
1003
|
|
893
1004
|
<div class="io-description">
|
894
1005
|
<b>Parameters :</b>
|
@@ -899,6 +1010,7 @@ set to false.</p>
|
|
899
1010
|
<td>Name</td>
|
900
1011
|
<td>Type</td>
|
901
1012
|
<td>Optional</td>
|
1013
|
+
<td>Description</td>
|
902
1014
|
</tr>
|
903
1015
|
</thead>
|
904
1016
|
<tbody>
|
@@ -913,6 +1025,12 @@ set to false.</p>
|
|
913
1025
|
</td>
|
914
1026
|
|
915
1027
|
|
1028
|
+
<td>
|
1029
|
+
<ul>
|
1030
|
+
<li>The value to write</li>
|
1031
|
+
</ul>
|
1032
|
+
|
1033
|
+
</td>
|
916
1034
|
</tr>
|
917
1035
|
</tbody>
|
918
1036
|
</table>
|
@@ -1009,6 +1127,20 @@ set to false.</p>
|
|
1009
1127
|
<span class="accessor"><b>get</b><code>cssClasses()</code></span>
|
1010
1128
|
</td>
|
1011
1129
|
</tr>
|
1130
|
+
<tr>
|
1131
|
+
<td class="col-md-4">
|
1132
|
+
<div class="io-description"><p>Gets the CSS classes for the checkbox component.
|
1133
|
+
Combines base classes with validation state classes.</p>
|
1134
|
+
</div>
|
1135
|
+
|
1136
|
+
<div>
|
1137
|
+
</div>
|
1138
|
+
<div class="io-description">
|
1139
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
1140
|
+
|
1141
|
+
</div>
|
1142
|
+
</td>
|
1143
|
+
</tr>
|
1012
1144
|
|
1013
1145
|
</tbody>
|
1014
1146
|
</table>
|
@@ -1028,12 +1160,13 @@ set to false.</p>
|
|
1028
1160
|
</tr>
|
1029
1161
|
<tr>
|
1030
1162
|
<td class="col-md-4">
|
1031
|
-
<div class="io-description"><p>
|
1032
|
-
|
1033
|
-
|
1034
|
-
set to false.</p>
|
1163
|
+
<div class="io-description"><p>Controls the indeterminate (mixed) state of the checkbox.
|
1164
|
+
When true, the checkbox appears in an indeterminate state.
|
1165
|
+
This state is automatically cleared when the checkbox is clicked.</p>
|
1035
1166
|
</div>
|
1036
1167
|
|
1168
|
+
<div>
|
1169
|
+
</div>
|
1037
1170
|
<div class="io-description">
|
1038
1171
|
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code>
|
1039
1172
|
|
@@ -1099,6 +1232,19 @@ set to false.</p>
|
|
1099
1232
|
<span class="accessor"><b>get</b><code>isInvalid()</code></span>
|
1100
1233
|
</td>
|
1101
1234
|
</tr>
|
1235
|
+
<tr>
|
1236
|
+
<td class="col-md-4">
|
1237
|
+
<div class="io-description"><p>Controls the invalid state of the checkbox. Used for displaying validation errors.</p>
|
1238
|
+
</div>
|
1239
|
+
|
1240
|
+
<div>
|
1241
|
+
</div>
|
1242
|
+
<div class="io-description">
|
1243
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code>
|
1244
|
+
|
1245
|
+
</div>
|
1246
|
+
</td>
|
1247
|
+
</tr>
|
1102
1248
|
|
1103
1249
|
<tr>
|
1104
1250
|
<td class="col-md-4">
|
@@ -1158,6 +1304,19 @@ set to false.</p>
|
|
1158
1304
|
<span class="accessor"><b>get</b><code>checked()</code></span>
|
1159
1305
|
</td>
|
1160
1306
|
</tr>
|
1307
|
+
<tr>
|
1308
|
+
<td class="col-md-4">
|
1309
|
+
<div class="io-description"><p>Controls the checked state of the checkbox.</p>
|
1310
|
+
</div>
|
1311
|
+
|
1312
|
+
<div>
|
1313
|
+
</div>
|
1314
|
+
<div class="io-description">
|
1315
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code>
|
1316
|
+
|
1317
|
+
</div>
|
1318
|
+
</td>
|
1319
|
+
</tr>
|
1161
1320
|
|
1162
1321
|
<tr>
|
1163
1322
|
<td class="col-md-4">
|
@@ -109,6 +109,24 @@
|
|
109
109
|
</p>
|
110
110
|
|
111
111
|
|
112
|
+
<p class="comment">
|
113
|
+
<h3>Description</h3>
|
114
|
+
</p>
|
115
|
+
<p class="comment">
|
116
|
+
<p>A component that serves as a container for input group add-on items.
|
117
|
+
Can be used either as an attribute selector on a div or as a custom element.</p>
|
118
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">As an attribute
|
119
|
+
```html
|
120
|
+
<div euiInputGroupAddOn>
|
121
|
+
<div euiInputGroupAddOnItem>Item 1</div>
|
122
|
+
<div euiInputGroupAddOnItem>Item 2</div>
|
123
|
+
</div></code></pre></div><b>Example :</b><div><pre class="line-numbers"><code class="language-none">As an element
|
124
|
+
```html
|
125
|
+
<eui-input-group-addon>
|
126
|
+
<eui-input-group-addon-item>Item 1</eui-input-group-addon-item>
|
127
|
+
<eui-input-group-addon-item>Item 2</eui-input-group-addon-item>
|
128
|
+
</eui-input-group-addon></code></pre></div>
|
129
|
+
</p>
|
112
130
|
|
113
131
|
|
114
132
|
|
@@ -134,6 +152,10 @@
|
|
134
152
|
<td class="col-md-9"><code>div[euiInputGroupAddOn], eui-input-group-addon</code></td>
|
135
153
|
</tr>
|
136
154
|
|
155
|
+
<tr>
|
156
|
+
<td class="col-md-3">standalone</td>
|
157
|
+
<td class="col-md-9"><code>true</code></td>
|
158
|
+
</tr>
|
137
159
|
|
138
160
|
|
139
161
|
<tr>
|
@@ -109,6 +109,18 @@
|
|
109
109
|
</p>
|
110
110
|
|
111
111
|
|
112
|
+
<p class="comment">
|
113
|
+
<h3>Description</h3>
|
114
|
+
</p>
|
115
|
+
<p class="comment">
|
116
|
+
<p>A component that represents an individual item within an input group add-on.
|
117
|
+
Can be used either as an attribute selector on a div or as a custom element.</p>
|
118
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">As an attribute
|
119
|
+
```html
|
120
|
+
<div euiInputGroupAddOnItem>Content</div></code></pre></div><b>Example :</b><div><pre class="line-numbers"><code class="language-none">As an element
|
121
|
+
```html
|
122
|
+
<eui-input-group-addon-item>Content</eui-input-group-addon-item></code></pre></div>
|
123
|
+
</p>
|
112
124
|
|
113
125
|
|
114
126
|
|
@@ -134,6 +146,10 @@
|
|
134
146
|
<td class="col-md-9"><code>div[euiInputGroupAddOnItem], eui-input-group-addon-item</code></td>
|
135
147
|
</tr>
|
136
148
|
|
149
|
+
<tr>
|
150
|
+
<td class="col-md-3">standalone</td>
|
151
|
+
<td class="col-md-9"><code>true</code></td>
|
152
|
+
</tr>
|
137
153
|
|
138
154
|
|
139
155
|
<tr>
|
@@ -286,6 +302,20 @@
|
|
286
302
|
<span class="accessor"><b>get</b><code>cssClasses()</code></span>
|
287
303
|
</td>
|
288
304
|
</tr>
|
305
|
+
<tr>
|
306
|
+
<td class="col-md-4">
|
307
|
+
<div class="io-description"><p>Getter that returns the CSS class for the component.
|
308
|
+
Bound to the host element's class attribute.</p>
|
309
|
+
</div>
|
310
|
+
|
311
|
+
<div>
|
312
|
+
</div>
|
313
|
+
<div class="io-description">
|
314
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
315
|
+
|
316
|
+
</div>
|
317
|
+
</td>
|
318
|
+
</tr>
|
289
319
|
|
290
320
|
</tbody>
|
291
321
|
</table>
|
@@ -109,6 +109,23 @@
|
|
109
109
|
</p>
|
110
110
|
|
111
111
|
|
112
|
+
<p class="comment">
|
113
|
+
<h3>Description</h3>
|
114
|
+
</p>
|
115
|
+
<p class="comment">
|
116
|
+
<p>A component that serves as the main container for input group elements.
|
117
|
+
Can only be used as an attribute selector on a div element.</p>
|
118
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html">```html
|
119
|
+
<div euiInputGroup>
|
120
|
+
<eui-input-group-addon>
|
121
|
+
<eui-input-group-addon-item>Prefix</eui-input-group-addon-item>
|
122
|
+
</eui-input-group-addon>
|
123
|
+
<input type="text">
|
124
|
+
<eui-input-group-addon>
|
125
|
+
<eui-input-group-addon-item>Suffix</eui-input-group-addon-item>
|
126
|
+
</eui-input-group-addon>
|
127
|
+
</div></code></pre></div><b>Example :</b><div><pre class="line-numbers"><code class="language-none"></code></pre></div>
|
128
|
+
</p>
|
112
129
|
|
113
130
|
|
114
131
|
|
@@ -134,6 +151,10 @@
|
|
134
151
|
<td class="col-md-9"><code>div[euiInputGroup]</code></td>
|
135
152
|
</tr>
|
136
153
|
|
154
|
+
<tr>
|
155
|
+
<td class="col-md-3">standalone</td>
|
156
|
+
<td class="col-md-9"><code>true</code></td>
|
157
|
+
</tr>
|
137
158
|
|
138
159
|
|
139
160
|
<tr>
|
@@ -315,6 +336,20 @@
|
|
315
336
|
<span class="accessor"><b>get</b><code>cssClasses()</code></span>
|
316
337
|
</td>
|
317
338
|
</tr>
|
339
|
+
<tr>
|
340
|
+
<td class="col-md-4">
|
341
|
+
<div class="io-description"><p>Getter that returns the CSS class for the component.
|
342
|
+
Bound to the host element's class attribute.</p>
|
343
|
+
</div>
|
344
|
+
|
345
|
+
<div>
|
346
|
+
</div>
|
347
|
+
<div class="io-description">
|
348
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
349
|
+
|
350
|
+
</div>
|
351
|
+
</td>
|
352
|
+
</tr>
|
318
353
|
|
319
354
|
</tbody>
|
320
355
|
</table>
|