@eui/ecl 22.0.0-alpha.16 → 22.0.0-alpha.18
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/changelog.html +28 -0
- package/docs/components/EclModalHeaderComponent.html +5 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/json/documentation.json +41 -41
- package/docs/llms.txt +2 -2
- package/docs/properties.html +1 -1
- package/fesm2022/eui-ecl-components-ecl-modal.mjs +14 -3
- package/fesm2022/eui-ecl-components-ecl-modal.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eui-ecl-components-ecl-modal.d.ts +11 -1
- package/types/eui-ecl-components-ecl-modal.d.ts.map +1 -1
package/docs/changelog.html
CHANGED
|
@@ -106,6 +106,34 @@
|
|
|
106
106
|
|
|
107
107
|
|
|
108
108
|
|
|
109
|
+
<h2>22.0.0-alpha.17 (2026-09-23)</h2>
|
|
110
|
+
<h5>Chores</h5>
|
|
111
|
+
<ul>
|
|
112
|
+
<li><strong>eds:</strong><ul>
|
|
113
|
+
<li>added remaining components to support patterns and templates - EUI-12528 <a href="https://citnet.tech.ec.europa.eu/CITnet/jira/browse/EUI-12528">EUI-12528</a> (<a href="https://sdlc.aws.cloud.tech.ec.europa.eu/csdr/eui/eui/-/commit/9593fe5de60396f04f1c83e45de35aadb67b0851">9593fe5d</a>)</li>
|
|
114
|
+
</ul>
|
|
115
|
+
</li>
|
|
116
|
+
</ul>
|
|
117
|
+
<hr>
|
|
118
|
+
<hr>
|
|
119
|
+
<h2>22.0.0-alpha.16 (2026-09-23)</h2>
|
|
120
|
+
<h5>Chores</h5>
|
|
121
|
+
<ul>
|
|
122
|
+
<li><strong>eds:</strong><ul>
|
|
123
|
+
<li>react showcase shared docPage structure - added table,datepicker,label to react cmp (<a href="https://sdlc.aws.cloud.tech.ec.europa.eu/csdr/eui/eui/-/commit/25a99d0dd98c6f70ddb4ec0b1fb21719fb8c0cc6">25a99d0d</a>)</li>
|
|
124
|
+
</ul>
|
|
125
|
+
</li>
|
|
126
|
+
<li><strong>eui-dropdown-tree:</strong><ul>
|
|
127
|
+
<li>added showFullLabel input option to allow tree node items to display full labels (multi-lines) - EUI-12902 <a href="https://citnet.tech.ec.europa.eu/CITnet/jira/browse/EUI-12902">EUI-12902</a> (<a href="https://sdlc.aws.cloud.tech.ec.europa.eu/csdr/eui/eui/-/commit/423f4d2a00e3be4d497d45da3d28e9858177d720">423f4d2a</a>)</li>
|
|
128
|
+
</ul>
|
|
129
|
+
</li>
|
|
130
|
+
<li><strong>ecl-modal:</strong><ul>
|
|
131
|
+
<li>added tests + some small fixes EUI-12909 <a href="https://citnet.tech.ec.europa.eu/CITnet/jira/browse/EUI-12909">EUI-12909</a> (<a href="https://sdlc.aws.cloud.tech.ec.europa.eu/csdr/eui/eui/-/commit/e578acbaaf564a781338ffd9aee691ac7ccd3303">e578acba</a>)</li>
|
|
132
|
+
</ul>
|
|
133
|
+
</li>
|
|
134
|
+
</ul>
|
|
135
|
+
<hr>
|
|
136
|
+
<hr>
|
|
109
137
|
<h2>22.0.0-alpha.15 (2026-09-23)</h2>
|
|
110
138
|
<h5>Chores</h5>
|
|
111
139
|
<ul>
|
|
@@ -636,7 +636,9 @@ Emits a <code>modalClose</code> event with no payload.</p>
|
|
|
636
636
|
</tr>
|
|
637
637
|
<tr>
|
|
638
638
|
<td class="col-md-4">
|
|
639
|
-
<i>Default value : </i><code>
|
|
639
|
+
<i>Default value : </i><code>computed<'information' | 'success' | 'warning' | 'error' | string | undefined>(
|
|
640
|
+
() => this.modal.variant(),
|
|
641
|
+
)</code>
|
|
640
642
|
</td>
|
|
641
643
|
</tr>
|
|
642
644
|
|
|
@@ -644,6 +646,8 @@ Emits a <code>modalClose</code> event with no payload.</p>
|
|
|
644
646
|
<td class="col-md-4">
|
|
645
647
|
<div class="io-description"><p>Defines the visual variant of the modal.
|
|
646
648
|
Determines which icon is shown in the header.
|
|
649
|
+
Derived reactively from the parent modal's <code>variant</code> input, so the header
|
|
650
|
+
icon updates automatically when the parent variant changes at runtime.
|
|
647
651
|
Possible values: 'information', 'success', 'warning', 'error', or any custom string.</p>
|
|
648
652
|
</div>
|
|
649
653
|
</td>
|