@eui/components 19.1.0-snapshot-1740051612326 → 19.1.0-snapshot-1740147515499
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/components/EuiAccordionComponent.html +30 -0
- package/docs/components/EuiAccordionItemComponent.html +49 -0
- package/docs/components/EuiBlockContentComponent.html +71 -2
- package/docs/dependencies.html +2 -2
- package/docs/directives/EuiAccordionItemHeaderDirective.html +18 -0
- package/docs/js/menu-wc.js +22 -13
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/modules/EuiAccordionModule.html +28 -17
- package/docs/modules/EuiBlockContentModule.html +29 -4
- package/eui-accordion/eui-accordion-item.component.d.ts +45 -2
- package/eui-accordion/eui-accordion-item.component.d.ts.map +1 -1
- package/eui-accordion/eui-accordion.component.d.ts +27 -1
- package/eui-accordion/eui-accordion.component.d.ts.map +1 -1
- package/eui-accordion/eui-accordion.module.d.ts +27 -5
- package/eui-accordion/eui-accordion.module.d.ts.map +1 -1
- package/eui-block-content/eui-block-content.component.d.ts +52 -7
- package/eui-block-content/eui-block-content.component.d.ts.map +1 -1
- package/eui-block-content/eui-block-content.module.d.ts +23 -2
- package/eui-block-content/eui-block-content.module.d.ts.map +1 -1
- package/eui-datepicker/eui-datepicker.component.d.ts.map +1 -1
- package/fesm2022/eui-components-eui-accordion.mjs +112 -13
- package/fesm2022/eui-components-eui-accordion.mjs.map +1 -1
- package/fesm2022/eui-components-eui-block-content.mjs +81 -17
- package/fesm2022/eui-components-eui-block-content.mjs.map +1 -1
- package/fesm2022/eui-components-eui-datepicker.mjs +1 -0
- package/fesm2022/eui-components-eui-datepicker.mjs.map +1 -1
- package/package.json +3 -3
@@ -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>Accordion container component that manages expandable items.
|
117
|
+
Uses Angular CDK's accordion functionality for managing expansion state.</p>
|
118
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html"><!-- Single expansion mode -->
|
119
|
+
<eui-accordion>
|
120
|
+
<eui-accordion-item>First item</eui-accordion-item>
|
121
|
+
<eui-accordion-item>Second item</eui-accordion-item>
|
122
|
+
</eui-accordion></code></pre></div><!-- Multiple expansion mode -->
|
123
|
+
<p><eui-accordion [isMulti]="true">
|
124
|
+
<eui-accordion-item>First item</eui-accordion-item>
|
125
|
+
<eui-accordion-item>Second item</eui-accordion-item>
|
126
|
+
</eui-accordion></p>
|
127
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-none"> When false (default), only one item can be expanded at a time.</code></pre></div>
|
128
|
+
</p>
|
112
129
|
|
113
130
|
|
114
131
|
|
@@ -261,6 +278,19 @@
|
|
261
278
|
<span class="accessor"><b>get</b><code>cssClasses()</code></span>
|
262
279
|
</td>
|
263
280
|
</tr>
|
281
|
+
<tr>
|
282
|
+
<td class="col-md-4">
|
283
|
+
<div class="io-description"><p>Computes and returns the CSS classes for the component based on its current state.</p>
|
284
|
+
</div>
|
285
|
+
|
286
|
+
<div>
|
287
|
+
</div>
|
288
|
+
<div class="io-description">
|
289
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
290
|
+
|
291
|
+
</div>
|
292
|
+
</td>
|
293
|
+
</tr>
|
264
294
|
|
265
295
|
</tbody>
|
266
296
|
</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>Individual accordion item component that can be expanded/collapsed.
|
117
|
+
Uses Angular CDK's accordion item functionality for managing expansion state
|
118
|
+
and includes collapse animation.</p>
|
119
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html"><eui-accordion-item [isExpanded]="true">
|
120
|
+
<!-- Custom header using directive -->
|
121
|
+
<eui-accordion-item-header>
|
122
|
+
Custom Header Content
|
123
|
+
</eui-accordion-item-header></code></pre></div> <!-- Content -->
|
124
|
+
<p>Accordion item content</p>
|
125
|
+
</eui-accordion-item>
|
126
|
+
|
127
|
+
|
128
|
+
</p>
|
112
129
|
|
113
130
|
|
114
131
|
|
@@ -147,6 +164,15 @@
|
|
147
164
|
</tr>
|
148
165
|
|
149
166
|
|
167
|
+
<tr>
|
168
|
+
<td class="col-md-3">imports</td>
|
169
|
+
<td class="col-md-9">
|
170
|
+
<code>CommonModule</code>
|
171
|
+
<code><a href="../modules/EuiIconModule.html" target="_self" >EuiIconModule</a></code>
|
172
|
+
<code>CdkAccordionModule</code>
|
173
|
+
<code><a href="../directives/BaseStatesDirective.html" target="_self" >BaseStatesDirective</a></code>
|
174
|
+
</td>
|
175
|
+
</tr>
|
150
176
|
|
151
177
|
|
152
178
|
|
@@ -325,6 +351,9 @@
|
|
325
351
|
|
326
352
|
<tr>
|
327
353
|
<td class="col-md-4">
|
354
|
+
<div class="io-description"><p>Handles the toggle event for expanding/collapsing the accordion item
|
355
|
+
Prevents event propagation to avoid interfering with parent handlers</p>
|
356
|
+
</div>
|
328
357
|
|
329
358
|
<div class="io-description">
|
330
359
|
<b>Parameters :</b>
|
@@ -335,6 +364,7 @@
|
|
335
364
|
<td>Name</td>
|
336
365
|
<td>Type</td>
|
337
366
|
<td>Optional</td>
|
367
|
+
<td>Description</td>
|
338
368
|
</tr>
|
339
369
|
</thead>
|
340
370
|
<tbody>
|
@@ -349,6 +379,12 @@
|
|
349
379
|
</td>
|
350
380
|
|
351
381
|
|
382
|
+
<td>
|
383
|
+
<ul>
|
384
|
+
<li>The toggle event</li>
|
385
|
+
</ul>
|
386
|
+
|
387
|
+
</td>
|
352
388
|
</tr>
|
353
389
|
</tbody>
|
354
390
|
</table>
|
@@ -384,6 +420,19 @@
|
|
384
420
|
<span class="accessor"><b>get</b><code>cssClasses()</code></span>
|
385
421
|
</td>
|
386
422
|
</tr>
|
423
|
+
<tr>
|
424
|
+
<td class="col-md-4">
|
425
|
+
<div class="io-description"><p>Computes and returns the CSS classes for the component based on its current state.</p>
|
426
|
+
</div>
|
427
|
+
|
428
|
+
<div>
|
429
|
+
</div>
|
430
|
+
<div class="io-description">
|
431
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
432
|
+
|
433
|
+
</div>
|
434
|
+
</td>
|
435
|
+
</tr>
|
387
436
|
|
388
437
|
</tbody>
|
389
438
|
</table>
|
@@ -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>Component that wraps content and manages focus state when content is blocked.
|
117
|
+
Provides accessibility attributes and handles focus restoration when blocking/unblocking.</p>
|
118
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html"><!-- Basic usage -->
|
119
|
+
<eui-block-content>
|
120
|
+
<div>Content that can be blocked</div>
|
121
|
+
</eui-block-content></code></pre></div><!-- Blocked state with custom accessibility -->
|
122
|
+
<p><eui-block-content
|
123
|
+
[isBlocked]="true"
|
124
|
+
role="dialog"
|
125
|
+
ariaLabel="Loading content">
|
126
|
+
<div>This content is blocked</div>
|
127
|
+
</eui-block-content></p>
|
128
|
+
|
129
|
+
</p>
|
112
130
|
|
113
131
|
|
114
132
|
<p class="comment">
|
@@ -325,6 +343,12 @@
|
|
325
343
|
<i>Default value : </i><code>'block content wrapper'</code>
|
326
344
|
</td>
|
327
345
|
</tr>
|
346
|
+
<tr>
|
347
|
+
<td class="col-md-4">
|
348
|
+
<div class="io-description"><p>ARIA label for the content wrapper</p>
|
349
|
+
</div>
|
350
|
+
</td>
|
351
|
+
</tr>
|
328
352
|
</tbody>
|
329
353
|
</table>
|
330
354
|
<table class="table table-sm table-bordered">
|
@@ -346,6 +370,13 @@
|
|
346
370
|
<i>Default value : </i><code>false</code>
|
347
371
|
</td>
|
348
372
|
</tr>
|
373
|
+
<tr>
|
374
|
+
<td class="col-md-4">
|
375
|
+
<div class="io-description"><p>Whether the content is currently blocked
|
376
|
+
When true, focused elements within will be blurred and state saved</p>
|
377
|
+
</div>
|
378
|
+
</td>
|
379
|
+
</tr>
|
349
380
|
</tbody>
|
350
381
|
</table>
|
351
382
|
<table class="table table-sm table-bordered">
|
@@ -367,6 +398,12 @@
|
|
367
398
|
<i>Default value : </i><code>'region'</code>
|
368
399
|
</td>
|
369
400
|
</tr>
|
401
|
+
<tr>
|
402
|
+
<td class="col-md-4">
|
403
|
+
<div class="io-description"><p>ARIA role for the content wrapper</p>
|
404
|
+
</div>
|
405
|
+
</td>
|
406
|
+
</tr>
|
370
407
|
</tbody>
|
371
408
|
</table>
|
372
409
|
</section>
|
@@ -390,6 +427,12 @@
|
|
390
427
|
</td>
|
391
428
|
</tr>
|
392
429
|
|
430
|
+
<tr>
|
431
|
+
<td class="col-md-4">
|
432
|
+
<div class="io-description"><p>CSS classes applied to the host element</p>
|
433
|
+
</div>
|
434
|
+
</td>
|
435
|
+
</tr>
|
393
436
|
|
394
437
|
</tbody>
|
395
438
|
</table>
|
@@ -423,7 +466,8 @@
|
|
423
466
|
|
424
467
|
<tr>
|
425
468
|
<td class="col-md-4">
|
426
|
-
<div class="io-description"><p>
|
469
|
+
<div class="io-description"><p>Removes focus from the currently focused element when blocking
|
470
|
+
Stores the element reference for later restoration</p>
|
427
471
|
</div>
|
428
472
|
|
429
473
|
<div class="io-description">
|
@@ -435,6 +479,7 @@
|
|
435
479
|
<td>Name</td>
|
436
480
|
<td>Type</td>
|
437
481
|
<td>Optional</td>
|
482
|
+
<td>Description</td>
|
438
483
|
</tr>
|
439
484
|
</thead>
|
440
485
|
<tbody>
|
@@ -449,6 +494,12 @@
|
|
449
494
|
</td>
|
450
495
|
|
451
496
|
|
497
|
+
<td>
|
498
|
+
<ul>
|
499
|
+
<li>The currently focused element</li>
|
500
|
+
</ul>
|
501
|
+
|
502
|
+
</td>
|
452
503
|
</tr>
|
453
504
|
</tbody>
|
454
505
|
</table>
|
@@ -486,7 +537,7 @@
|
|
486
537
|
|
487
538
|
<tr>
|
488
539
|
<td class="col-md-4">
|
489
|
-
<div class="io-description"><p>focus
|
540
|
+
<div class="io-description"><p>Restores focus to the previously focused element when unblocking</p>
|
490
541
|
</div>
|
491
542
|
|
492
543
|
<div class="io-description">
|
@@ -498,6 +549,7 @@
|
|
498
549
|
<td>Name</td>
|
499
550
|
<td>Type</td>
|
500
551
|
<td>Optional</td>
|
552
|
+
<td>Description</td>
|
501
553
|
</tr>
|
502
554
|
</thead>
|
503
555
|
<tbody>
|
@@ -512,6 +564,12 @@
|
|
512
564
|
</td>
|
513
565
|
|
514
566
|
|
567
|
+
<td>
|
568
|
+
<ul>
|
569
|
+
<li>The element that was previously focused</li>
|
570
|
+
</ul>
|
571
|
+
|
572
|
+
</td>
|
515
573
|
</tr>
|
516
574
|
</tbody>
|
517
575
|
</table>
|
@@ -547,6 +605,17 @@
|
|
547
605
|
<span class="accessor"><b>get</b><code>cssClasses()</code></span>
|
548
606
|
</td>
|
549
607
|
</tr>
|
608
|
+
<tr>
|
609
|
+
<td class="col-md-4">
|
610
|
+
<div class="io-description"><p>CSS classes applied to the host element</p>
|
611
|
+
</div>
|
612
|
+
|
613
|
+
<div class="io-description">
|
614
|
+
<b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
615
|
+
|
616
|
+
</div>
|
617
|
+
</td>
|
618
|
+
</tr>
|
550
619
|
|
551
620
|
</tbody>
|
552
621
|
</table>
|
package/docs/dependencies.html
CHANGED
@@ -266,9 +266,9 @@
|
|
266
266
|
<li>
|
267
267
|
<b>@stackblitz/sdk</b> : 1.11.0</li>
|
268
268
|
<li>
|
269
|
-
<b>@eui/styles</b> : 19.0
|
269
|
+
<b>@eui/styles</b> : 19.1.0-snapshot-1740057996064</li>
|
270
270
|
<li>
|
271
|
-
<b>@eui/ecl</b> : 19.0
|
271
|
+
<b>@eui/ecl</b> : 19.1.0-snapshot-1740057996064</li>
|
272
272
|
<li>
|
273
273
|
<b>@eui/tools</b> : ^6.0.0</li>
|
274
274
|
</ul>
|
@@ -113,6 +113,20 @@
|
|
113
113
|
</p>
|
114
114
|
|
115
115
|
|
116
|
+
<p class="comment">
|
117
|
+
<h3>Description</h3>
|
118
|
+
</p>
|
119
|
+
<p class="comment">
|
120
|
+
<p>Directive for customizing the header content of an accordion item.</p>
|
121
|
+
<b>Example :</b><div><pre class="line-numbers"><code class="language-html"><eui-accordion-item>
|
122
|
+
<eui-accordion-item-header>
|
123
|
+
<div class="custom-header">
|
124
|
+
<eui-icon name="info"></eui-icon>
|
125
|
+
<span>Custom Header</span>
|
126
|
+
</div>
|
127
|
+
</eui-accordion-item-header>
|
128
|
+
</eui-accordion-item></code></pre></div>
|
129
|
+
</p>
|
116
130
|
|
117
131
|
|
118
132
|
|
@@ -127,6 +141,10 @@
|
|
127
141
|
<td class="col-md-9"><code>eui-accordion-item-header</code></td>
|
128
142
|
</tr>
|
129
143
|
|
144
|
+
<tr>
|
145
|
+
<td class="col-md-3">Standalone</td>
|
146
|
+
<td class="col-md-9"><code>true</code></td>
|
147
|
+
</tr>
|
130
148
|
|
131
149
|
|
132
150
|
|
package/docs/js/menu-wc.js
CHANGED
@@ -59,13 +59,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
59
59
|
<a href="modules/EuiAccordionModule.html" data-type="entity-link" >EuiAccordionModule</a>
|
60
60
|
<li class="chapter inner">
|
61
61
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
62
|
-
'data-bs-target="#components-links-module-EuiAccordionModule-
|
62
|
+
'data-bs-target="#components-links-module-EuiAccordionModule-8d37cd364005316418d4f5245fa0cb0f7419f2163c3bdf1c23cbc90f315d43ab8c9a3685fe98d4fee65c69ea0a15abb3e1c576cb81c50050f1e8e32d625f581e"' : 'data-bs-target="#xs-components-links-module-EuiAccordionModule-8d37cd364005316418d4f5245fa0cb0f7419f2163c3bdf1c23cbc90f315d43ab8c9a3685fe98d4fee65c69ea0a15abb3e1c576cb81c50050f1e8e32d625f581e"' }>
|
63
63
|
<span class="icon ion-md-cog"></span>
|
64
64
|
<span>Components</span>
|
65
65
|
<span class="icon ion-ios-arrow-down"></span>
|
66
66
|
</div>
|
67
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiAccordionModule-
|
68
|
-
'id="xs-components-links-module-EuiAccordionModule-
|
67
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiAccordionModule-8d37cd364005316418d4f5245fa0cb0f7419f2163c3bdf1c23cbc90f315d43ab8c9a3685fe98d4fee65c69ea0a15abb3e1c576cb81c50050f1e8e32d625f581e"' :
|
68
|
+
'id="xs-components-links-module-EuiAccordionModule-8d37cd364005316418d4f5245fa0cb0f7419f2163c3bdf1c23cbc90f315d43ab8c9a3685fe98d4fee65c69ea0a15abb3e1c576cb81c50050f1e8e32d625f581e"' }>
|
69
69
|
<li class="link">
|
70
70
|
<a href="components/EuiAccordionComponent.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiAccordionComponent</a>
|
71
71
|
</li>
|
@@ -76,16 +76,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
76
76
|
</li>
|
77
77
|
<li class="chapter inner">
|
78
78
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
79
|
-
'data-bs-target="#directives-links-module-EuiAccordionModule-
|
79
|
+
'data-bs-target="#directives-links-module-EuiAccordionModule-8d37cd364005316418d4f5245fa0cb0f7419f2163c3bdf1c23cbc90f315d43ab8c9a3685fe98d4fee65c69ea0a15abb3e1c576cb81c50050f1e8e32d625f581e"' : 'data-bs-target="#xs-directives-links-module-EuiAccordionModule-8d37cd364005316418d4f5245fa0cb0f7419f2163c3bdf1c23cbc90f315d43ab8c9a3685fe98d4fee65c69ea0a15abb3e1c576cb81c50050f1e8e32d625f581e"' }>
|
80
80
|
<span class="icon ion-md-code-working"></span>
|
81
81
|
<span>Directives</span>
|
82
82
|
<span class="icon ion-ios-arrow-down"></span>
|
83
83
|
</div>
|
84
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="directives-links-module-EuiAccordionModule-
|
85
|
-
'id="xs-directives-links-module-EuiAccordionModule-
|
86
|
-
<li class="link">
|
87
|
-
<a href="directives/BaseStatesDirective.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >BaseStatesDirective</a>
|
88
|
-
</li>
|
84
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="directives-links-module-EuiAccordionModule-8d37cd364005316418d4f5245fa0cb0f7419f2163c3bdf1c23cbc90f315d43ab8c9a3685fe98d4fee65c69ea0a15abb3e1c576cb81c50050f1e8e32d625f581e"' :
|
85
|
+
'id="xs-directives-links-module-EuiAccordionModule-8d37cd364005316418d4f5245fa0cb0f7419f2163c3bdf1c23cbc90f315d43ab8c9a3685fe98d4fee65c69ea0a15abb3e1c576cb81c50050f1e8e32d625f581e"' }>
|
89
86
|
<li class="link">
|
90
87
|
<a href="directives/EuiAccordionItemHeaderDirective.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiAccordionItemHeaderDirective</a>
|
91
88
|
</li>
|
@@ -424,16 +421,16 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
424
421
|
</li>
|
425
422
|
</li>
|
426
423
|
<li class="link">
|
427
|
-
<a href="modules/EuiBlockContentModule.html" data-type="entity-link" >EuiBlockContentModule</a>
|
424
|
+
<a href="modules/EuiBlockContentModule.html" data-type="entity-link" class="deprecated-name">EuiBlockContentModule</a>
|
428
425
|
<li class="chapter inner">
|
429
426
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
430
|
-
'data-bs-target="#components-links-module-EuiBlockContentModule-
|
427
|
+
'data-bs-target="#components-links-module-EuiBlockContentModule-04ff04c32423863a94760f494434a51a57be5cc5fc0edae4cf0d4d5f4268eff325a1e3681088a88508cde088ef89967c659f7e785098114f00b519ae5f507e77"' : 'data-bs-target="#xs-components-links-module-EuiBlockContentModule-04ff04c32423863a94760f494434a51a57be5cc5fc0edae4cf0d4d5f4268eff325a1e3681088a88508cde088ef89967c659f7e785098114f00b519ae5f507e77"' }>
|
431
428
|
<span class="icon ion-md-cog"></span>
|
432
429
|
<span>Components</span>
|
433
430
|
<span class="icon ion-ios-arrow-down"></span>
|
434
431
|
</div>
|
435
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiBlockContentModule-
|
436
|
-
'id="xs-components-links-module-EuiBlockContentModule-
|
432
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiBlockContentModule-04ff04c32423863a94760f494434a51a57be5cc5fc0edae4cf0d4d5f4268eff325a1e3681088a88508cde088ef89967c659f7e785098114f00b519ae5f507e77"' :
|
433
|
+
'id="xs-components-links-module-EuiBlockContentModule-04ff04c32423863a94760f494434a51a57be5cc5fc0edae4cf0d4d5f4268eff325a1e3681088a88508cde088ef89967c659f7e785098114f00b519ae5f507e77"' }>
|
437
434
|
<li class="link">
|
438
435
|
<a href="components/EuiBlockContentComponent.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiBlockContentComponent</a>
|
439
436
|
</li>
|
@@ -2277,6 +2274,12 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
2277
2274
|
<li class="link">
|
2278
2275
|
<a href="components/DefaultComponent-1.html" data-type="entity-link" >DefaultComponent</a>
|
2279
2276
|
</li>
|
2277
|
+
<li class="link">
|
2278
|
+
<a href="components/EuiAccordionComponent.html" data-type="entity-link" >EuiAccordionComponent</a>
|
2279
|
+
</li>
|
2280
|
+
<li class="link">
|
2281
|
+
<a href="components/EuiAccordionItemComponent.html" data-type="entity-link" >EuiAccordionItemComponent</a>
|
2282
|
+
</li>
|
2280
2283
|
<li class="link">
|
2281
2284
|
<a href="components/EuiApexChartComponent.html" data-type="entity-link" >EuiApexChartComponent</a>
|
2282
2285
|
</li>
|
@@ -2337,6 +2340,9 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
2337
2340
|
<li class="link">
|
2338
2341
|
<a href="components/EuiBadgeComponent.html" data-type="entity-link" >EuiBadgeComponent</a>
|
2339
2342
|
</li>
|
2343
|
+
<li class="link">
|
2344
|
+
<a href="components/EuiBlockContentComponent.html" data-type="entity-link" >EuiBlockContentComponent</a>
|
2345
|
+
</li>
|
2340
2346
|
<li class="link">
|
2341
2347
|
<a href="components/EuiButtonComponent.html" data-type="entity-link" >EuiButtonComponent</a>
|
2342
2348
|
</li>
|
@@ -2575,6 +2581,9 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
2575
2581
|
<li class="link">
|
2576
2582
|
<a href="directives/BaseStatesDirective.html" data-type="entity-link" >BaseStatesDirective</a>
|
2577
2583
|
</li>
|
2584
|
+
<li class="link">
|
2585
|
+
<a href="directives/EuiAccordionItemHeaderDirective.html" data-type="entity-link" >EuiAccordionItemHeaderDirective</a>
|
2586
|
+
</li>
|
2578
2587
|
<li class="link">
|
2579
2588
|
<a href="directives/EuiArrowKeyNavigableDirective.html" data-type="entity-link" >EuiArrowKeyNavigableDirective</a>
|
2580
2589
|
</li>
|