@eui/components 18.0.0-next.6 → 18.0.0-next.8
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/EuiEuLanguages.html +696 -0
- package/docs/classes/EuiMenuItem.html +1147 -0
- package/docs/components/EuiAppSidebarMenuComponent.html +2 -2
- package/docs/components/EuiCommonHeaderComponent.html +1 -1
- package/docs/components/EuiExpandContentComponent.html +1 -1
- package/docs/components/EuiLanguageSelectorComponent.html +4 -4
- package/docs/components/EuiMenuComponent.html +6 -6
- package/docs/components/EuiMenuItemComponent.html +1 -1
- package/docs/components/EuiModalSelectorComponent.html +4 -4
- package/docs/components/EuiSidebarMenuComponent.html +3 -3
- package/docs/components/EuiToolbarMenuComponent.html +4 -4
- package/docs/components/EuiUserProfileCardComponent.html +1 -1
- package/docs/dependencies.html +2 -2
- package/docs/index.html +2 -2
- package/docs/interfaces/EuiLanguage.html +317 -0
- package/docs/js/menu-wc.js +15 -6
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/typealiases.html +21 -0
- package/docs/modules/EuiCommonHeaderModule.html +0 -10
- package/docs/modules/EuiExpandContentModule.html +0 -10
- package/esm2022/eui-icon/eui-icon-svg.component.mjs +2 -2
- package/esm2022/eui-icon/eui-icon.component.mjs +2 -2
- package/esm2022/eui-input-checkbox/eui-input-checkbox.component.mjs +2 -2
- package/esm2022/eui-input-radio/eui-input-radio.component.mjs +2 -2
- package/esm2022/eui-menu/models/eui-menu-item.model.mjs +12 -2
- package/esm2022/index.mjs +2 -2
- package/esm2022/layout/eui-app/eui-app-top-message/top-message.component.mjs +2 -2
- package/esm2022/layout/eui-language-selector/index.mjs +3 -1
- package/esm2022/layout/eui-language-selector/modal-selector/modal-selector.component.mjs +2 -2
- package/esm2022/layout/eui-language-selector/models/eui-eu-languages.model.mjs +152 -0
- package/esm2022/layout/eui-language-selector/models/eui-language.model.mjs +2 -0
- package/esm2022/layout/eui-user-profile/user-profile-card/user-profile-card.component.mjs +5 -9
- package/esm2022/shared/eui-common-header/common-header.component.mjs +10 -8
- package/esm2022/shared/eui-expand-content/eui-expand-content.component.mjs +11 -8
- package/esm2022/shared/index.mjs +2 -2
- package/esm2022/shared/input.directive.mjs +2 -2
- package/eui-icon/eui-icon-svg.component.d.ts +1 -1
- package/eui-icon/eui-icon-svg.component.d.ts.map +1 -1
- package/eui-icon/eui-icon.component.d.ts +1 -1
- package/eui-icon/eui-icon.component.d.ts.map +1 -1
- package/eui-menu/models/eui-menu-item.model.d.ts +41 -1
- package/eui-menu/models/eui-menu-item.model.d.ts.map +1 -1
- package/fesm2022/eui-components-eui-icon.mjs +2 -2
- package/fesm2022/eui-components-eui-icon.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-checkbox.mjs +2 -4
- package/fesm2022/eui-components-eui-input-checkbox.mjs.map +1 -1
- package/fesm2022/eui-components-eui-input-radio.mjs +2 -4
- package/fesm2022/eui-components-eui-input-radio.mjs.map +1 -1
- package/fesm2022/eui-components-eui-menu.mjs +11 -1
- package/fesm2022/eui-components-eui-menu.mjs.map +2 -2
- package/fesm2022/eui-components-layout.mjs +192 -41
- package/fesm2022/eui-components-layout.mjs.map +4 -4
- package/fesm2022/eui-components-shared.mjs +1242 -82
- package/fesm2022/eui-components-shared.mjs.map +4 -4
- package/fesm2022/eui-components.mjs +353 -22
- package/fesm2022/eui-components.mjs.map +3 -3
- package/index.d.ts +1 -1
- package/index.d.ts.map +1 -1
- package/layout/eui-app/eui-app-top-message/top-message.component.d.ts +1 -1
- package/layout/eui-app/eui-app-top-message/top-message.component.d.ts.map +1 -1
- package/layout/eui-language-selector/index.d.ts +2 -0
- package/layout/eui-language-selector/index.d.ts.map +1 -1
- package/layout/eui-language-selector/modal-selector/modal-selector.component.d.ts +1 -1
- package/layout/eui-language-selector/modal-selector/modal-selector.component.d.ts.map +1 -1
- package/layout/eui-language-selector/models/eui-eu-languages.model.d.ts +45 -0
- package/layout/eui-language-selector/models/eui-eu-languages.model.d.ts.map +1 -0
- package/layout/eui-language-selector/models/eui-language.model.d.ts +7 -0
- package/layout/eui-language-selector/models/eui-language.model.d.ts.map +1 -0
- package/layout/eui-user-profile/user-profile-card/user-profile-card.component.d.ts +2 -2
- package/layout/eui-user-profile/user-profile-card/user-profile-card.component.d.ts.map +1 -1
- package/package.json +3 -15
- package/shared/eui-common-header/common-header.component.d.ts +1 -2
- package/shared/eui-common-header/common-header.component.d.ts.map +1 -1
- package/shared/eui-expand-content/eui-expand-content.component.d.ts +1 -2
- package/shared/eui-expand-content/eui-expand-content.component.d.ts.map +1 -1
- package/shared/index.d.ts +1 -1
- package/shared/index.d.ts.map +1 -1
- package/shared/input.directive.d.ts +1 -1
- package/shared/input.directive.d.ts.map +1 -1
- package/esm2022/eui-all/eui-components-eui-all.mjs +0 -5
- package/esm2022/shared/base/eui-components-shared-base.mjs +0 -5
- package/eui-all/eui-components-eui-all.d.ts.map +0 -1
- package/eui-all/package.json +0 -3
- package/fesm2022/eui-components-eui-all.mjs +0 -356
- package/fesm2022/eui-components-eui-all.mjs.map +0 -7
- package/fesm2022/eui-components-shared-base.mjs +0 -1208
- package/fesm2022/eui-components-shared-base.mjs.map +0 -7
- package/shared/base/eui-components-shared-base.d.ts.map +0 -1
- package/shared/base/package.json +0 -3
@@ -0,0 +1,317 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html class="no-js" lang="">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
6
|
+
<title>csdr documentation</title>
|
7
|
+
<meta name="description" content="">
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
9
|
+
|
10
|
+
<link rel="icon" type="image/x-icon" href="../images/favicon.ico">
|
11
|
+
<link rel="stylesheet" href="../styles/style.css">
|
12
|
+
<link rel="stylesheet" href="../styles/dark.css">
|
13
|
+
<link rel="stylesheet" href="../styles/material.css">
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<script>
|
17
|
+
// Blocking script to avaoid flickering dark mode
|
18
|
+
// Dark mode toggle button
|
19
|
+
var useDark = window.matchMedia('(prefers-color-scheme: dark)');
|
20
|
+
var darkModeState = useDark.matches;
|
21
|
+
var $darkModeToggleSwitchers = document.querySelectorAll('.dark-mode-switch input');
|
22
|
+
var $darkModeToggles = document.querySelectorAll('.dark-mode-switch');
|
23
|
+
var darkModeStateLocal = localStorage.getItem('compodoc_darkmode-state');
|
24
|
+
|
25
|
+
function checkToggle(check) {
|
26
|
+
for (var i = 0; i < $darkModeToggleSwitchers.length; i++) {
|
27
|
+
$darkModeToggleSwitchers[i].checked = check;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
function toggleDarkMode(state) {
|
32
|
+
if (window.localStorage) {
|
33
|
+
localStorage.setItem('compodoc_darkmode-state', state);
|
34
|
+
}
|
35
|
+
|
36
|
+
checkToggle(state);
|
37
|
+
|
38
|
+
const hasClass = document.body.classList.contains('dark');
|
39
|
+
|
40
|
+
if (state) {
|
41
|
+
for (var i = 0; i < $darkModeToggles.length; i++) {
|
42
|
+
$darkModeToggles[i].classList.add('dark');
|
43
|
+
}
|
44
|
+
if (!hasClass) {
|
45
|
+
document.body.classList.add('dark');
|
46
|
+
}
|
47
|
+
} else {
|
48
|
+
for (var i = 0; i < $darkModeToggles.length; i++) {
|
49
|
+
$darkModeToggles[i].classList.remove('dark');
|
50
|
+
}
|
51
|
+
if (hasClass) {
|
52
|
+
document.body.classList.remove('dark');
|
53
|
+
}
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
useDark.addEventListener('change', function (evt) {
|
58
|
+
toggleDarkMode(evt.matches);
|
59
|
+
});
|
60
|
+
if (darkModeStateLocal) {
|
61
|
+
darkModeState = darkModeStateLocal === 'true';
|
62
|
+
}
|
63
|
+
toggleDarkMode(darkModeState);
|
64
|
+
|
65
|
+
if ($darkModeToggles.length > 0) {
|
66
|
+
for (var i = 0; i < $darkModeToggleSwitchers.length; i++) {
|
67
|
+
$darkModeToggleSwitchers[i].addEventListener('change', function (event) {
|
68
|
+
darkModeState = !darkModeState;
|
69
|
+
toggleDarkMode(darkModeState);
|
70
|
+
});
|
71
|
+
}
|
72
|
+
}
|
73
|
+
</script>
|
74
|
+
|
75
|
+
<div class="navbar navbar-default navbar-fixed-top d-block d-sm-none">
|
76
|
+
<a href="../" class="navbar-brand">csdr documentation</a>
|
77
|
+
<button type="button" class="btn btn-default btn-menu ion-ios-menu" id="btn-menu"></button>
|
78
|
+
</div>
|
79
|
+
|
80
|
+
<div class="xs-menu menu" id="mobile-menu">
|
81
|
+
<div id="book-search-input" role="search"><input type="text" placeholder="Type to search"></div> <compodoc-menu></compodoc-menu>
|
82
|
+
</div>
|
83
|
+
|
84
|
+
<div class="container-fluid main">
|
85
|
+
<div class="row main">
|
86
|
+
<div class="hidden-xs menu">
|
87
|
+
<compodoc-menu mode="normal"></compodoc-menu>
|
88
|
+
</div>
|
89
|
+
<!-- START CONTENT -->
|
90
|
+
<div class="content interface">
|
91
|
+
<div class="content-data">
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
<ol class="breadcrumb">
|
106
|
+
<li class="breadcrumb-item">Interfaces</li>
|
107
|
+
<li class="breadcrumb-item"
|
108
|
+
>
|
109
|
+
EuiLanguage</li>
|
110
|
+
</ol>
|
111
|
+
|
112
|
+
<ul class="nav nav-tabs" role="tablist">
|
113
|
+
<li class="nav-item">
|
114
|
+
<a href="#info"
|
115
|
+
class="nav-link"
|
116
|
+
class="nav-link active"
|
117
|
+
role="tab" id="info-tab" data-bs-toggle="tab" data-link="info">Info</a>
|
118
|
+
</li>
|
119
|
+
</ul>
|
120
|
+
|
121
|
+
<div class="tab-content">
|
122
|
+
<div class="tab-pane fade active in" id="info">
|
123
|
+
<p class="comment">
|
124
|
+
<h3>File</h3>
|
125
|
+
</p>
|
126
|
+
<p class="comment">
|
127
|
+
<code>packages/eui/packages/components/layout/eui-language-selector/models/eui-language.model.ts</code>
|
128
|
+
</p>
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
<section data-compodoc="block-index">
|
134
|
+
<h3 id="index">Index</h3>
|
135
|
+
<table class="table table-sm table-bordered index-table">
|
136
|
+
<tbody>
|
137
|
+
<tr>
|
138
|
+
<td class="col-md-4">
|
139
|
+
<h6><b>Properties</b></h6>
|
140
|
+
</td>
|
141
|
+
</tr>
|
142
|
+
<tr>
|
143
|
+
<td class="col-md-4">
|
144
|
+
<ul class="index-list">
|
145
|
+
<li>
|
146
|
+
<a href="#code"
|
147
|
+
>
|
148
|
+
code
|
149
|
+
</a>
|
150
|
+
</li>
|
151
|
+
<li>
|
152
|
+
<a href="#label"
|
153
|
+
>
|
154
|
+
label
|
155
|
+
</a>
|
156
|
+
</li>
|
157
|
+
</ul>
|
158
|
+
</td>
|
159
|
+
</tr>
|
160
|
+
</tbody>
|
161
|
+
</table>
|
162
|
+
</section>
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
<section data-compodoc="block-properties">
|
167
|
+
<h3 id="inputs">Properties</h3>
|
168
|
+
<table class="table table-sm table-bordered">
|
169
|
+
<tbody>
|
170
|
+
<tr>
|
171
|
+
<td class="col-md-4">
|
172
|
+
<a name="code"></a>
|
173
|
+
<span class="name "><b>code</b>
|
174
|
+
<a href="#code">
|
175
|
+
<span class="icon ion-ios-link"></span>
|
176
|
+
</a>
|
177
|
+
</span>
|
178
|
+
</td>
|
179
|
+
</tr>
|
180
|
+
<tr>
|
181
|
+
<td class="col-md-4">
|
182
|
+
<code>code: <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
183
|
+
</code>
|
184
|
+
</td>
|
185
|
+
</tr>
|
186
|
+
|
187
|
+
|
188
|
+
<tr>
|
189
|
+
<td class="col-md-4">
|
190
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
191
|
+
|
192
|
+
</td>
|
193
|
+
</tr>
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
<tr>
|
200
|
+
<td class="col-md-4">
|
201
|
+
<div class="io-description"><p>the ISO language code e.g. en or fr</p>
|
202
|
+
</div>
|
203
|
+
</td>
|
204
|
+
</tr>
|
205
|
+
</tbody>
|
206
|
+
</table>
|
207
|
+
<table class="table table-sm table-bordered">
|
208
|
+
<tbody>
|
209
|
+
<tr>
|
210
|
+
<td class="col-md-4">
|
211
|
+
<a name="label"></a>
|
212
|
+
<span class="name "><b>label</b>
|
213
|
+
<a href="#label">
|
214
|
+
<span class="icon ion-ios-link"></span>
|
215
|
+
</a>
|
216
|
+
</span>
|
217
|
+
</td>
|
218
|
+
</tr>
|
219
|
+
<tr>
|
220
|
+
<td class="col-md-4">
|
221
|
+
<code>label: <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
222
|
+
</code>
|
223
|
+
</td>
|
224
|
+
</tr>
|
225
|
+
|
226
|
+
|
227
|
+
<tr>
|
228
|
+
<td class="col-md-4">
|
229
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
230
|
+
|
231
|
+
</td>
|
232
|
+
</tr>
|
233
|
+
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
|
238
|
+
<tr>
|
239
|
+
<td class="col-md-4">
|
240
|
+
<div class="io-description"><p>the label of the language translated in that language</p>
|
241
|
+
</div>
|
242
|
+
</td>
|
243
|
+
</tr>
|
244
|
+
</tbody>
|
245
|
+
</table>
|
246
|
+
</section>
|
247
|
+
</div>
|
248
|
+
|
249
|
+
|
250
|
+
</div>
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
|
258
|
+
|
259
|
+
</div><div class="search-results">
|
260
|
+
<div class="has-results">
|
261
|
+
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
|
262
|
+
<ul class="search-results-list"></ul>
|
263
|
+
</div>
|
264
|
+
<div class="no-results">
|
265
|
+
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
|
266
|
+
</div>
|
267
|
+
</div>
|
268
|
+
</div>
|
269
|
+
<!-- END CONTENT -->
|
270
|
+
</div>
|
271
|
+
</div>
|
272
|
+
|
273
|
+
<label class="dark-mode-switch">
|
274
|
+
<input type="checkbox">
|
275
|
+
<span class="slider">
|
276
|
+
<svg class="slider-icon" viewBox="0 0 24 24" fill="none" height="20" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg">
|
277
|
+
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path>
|
278
|
+
</svg>
|
279
|
+
</span>
|
280
|
+
</label>
|
281
|
+
|
282
|
+
<script>
|
283
|
+
var COMPODOC_CURRENT_PAGE_DEPTH = 1;
|
284
|
+
var COMPODOC_CURRENT_PAGE_CONTEXT = 'interface';
|
285
|
+
var COMPODOC_CURRENT_PAGE_URL = 'EuiLanguage.html';
|
286
|
+
var MAX_SEARCH_RESULTS = 15;
|
287
|
+
</script>
|
288
|
+
|
289
|
+
<script src="../js/libs/custom-elements.min.js"></script>
|
290
|
+
<script src="../js/libs/lit-html.js"></script>
|
291
|
+
|
292
|
+
<script src="../js/menu-wc.js" defer></script>
|
293
|
+
<script nomodule src="../js/menu-wc_es5.js" defer></script>
|
294
|
+
|
295
|
+
<script src="../js/libs/bootstrap-native.js"></script>
|
296
|
+
|
297
|
+
<script src="../js/libs/es6-shim.min.js"></script>
|
298
|
+
<script src="../js/libs/EventDispatcher.js"></script>
|
299
|
+
<script src="../js/libs/promise.min.js"></script>
|
300
|
+
<script src="../js/libs/zepto.min.js"></script>
|
301
|
+
|
302
|
+
<script src="../js/compodoc.js"></script>
|
303
|
+
|
304
|
+
<script src="../js/tabs.js"></script>
|
305
|
+
<script src="../js/menu.js"></script>
|
306
|
+
<script src="../js/libs/clipboard.min.js"></script>
|
307
|
+
<script src="../js/libs/prism.js"></script>
|
308
|
+
<script src="../js/sourceCode.js"></script>
|
309
|
+
<script src="../js/search/search.js"></script>
|
310
|
+
<script src="../js/search/lunr.min.js"></script>
|
311
|
+
<script src="../js/search/search-lunr.js"></script>
|
312
|
+
<script src="../js/search/search_index.js"></script>
|
313
|
+
<script src="../js/lazy-load-graphs.js"></script>
|
314
|
+
|
315
|
+
|
316
|
+
</body>
|
317
|
+
</html>
|
package/docs/js/menu-wc.js
CHANGED
@@ -717,13 +717,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
717
717
|
<a href="modules/EuiCommonHeaderModule.html" data-type="entity-link" >EuiCommonHeaderModule</a>
|
718
718
|
<li class="chapter inner">
|
719
719
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
720
|
-
'data-bs-target="#components-links-module-EuiCommonHeaderModule-
|
720
|
+
'data-bs-target="#components-links-module-EuiCommonHeaderModule-0770f1281252642fe399b13414698eb7477f408a036802fe6f178e695f39faa3ac7697ccea9d8dd5a905b1437a9b1df7ea6c022caabb69fb63867f5c2f38fb35"' : 'data-bs-target="#xs-components-links-module-EuiCommonHeaderModule-0770f1281252642fe399b13414698eb7477f408a036802fe6f178e695f39faa3ac7697ccea9d8dd5a905b1437a9b1df7ea6c022caabb69fb63867f5c2f38fb35"' }>
|
721
721
|
<span class="icon ion-md-cog"></span>
|
722
722
|
<span>Components</span>
|
723
723
|
<span class="icon ion-ios-arrow-down"></span>
|
724
724
|
</div>
|
725
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiCommonHeaderModule-
|
726
|
-
'id="xs-components-links-module-EuiCommonHeaderModule-
|
725
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiCommonHeaderModule-0770f1281252642fe399b13414698eb7477f408a036802fe6f178e695f39faa3ac7697ccea9d8dd5a905b1437a9b1df7ea6c022caabb69fb63867f5c2f38fb35"' :
|
726
|
+
'id="xs-components-links-module-EuiCommonHeaderModule-0770f1281252642fe399b13414698eb7477f408a036802fe6f178e695f39faa3ac7697ccea9d8dd5a905b1437a9b1df7ea6c022caabb69fb63867f5c2f38fb35"' }>
|
727
727
|
<li class="link">
|
728
728
|
<a href="components/EuiCommonHeaderComponent.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiCommonHeaderComponent</a>
|
729
729
|
</li>
|
@@ -1061,13 +1061,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
1061
1061
|
<a href="modules/EuiExpandContentModule.html" data-type="entity-link" >EuiExpandContentModule</a>
|
1062
1062
|
<li class="chapter inner">
|
1063
1063
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
1064
|
-
'data-bs-target="#components-links-module-EuiExpandContentModule-
|
1064
|
+
'data-bs-target="#components-links-module-EuiExpandContentModule-9cec8862f8362965313ca4c8884ea75a23989b6c04832208244f4b2d736df699a947a111ec862ecd5963829ae5d1dee3aafbb71327d78967b8b659afd644d401"' : 'data-bs-target="#xs-components-links-module-EuiExpandContentModule-9cec8862f8362965313ca4c8884ea75a23989b6c04832208244f4b2d736df699a947a111ec862ecd5963829ae5d1dee3aafbb71327d78967b8b659afd644d401"' }>
|
1065
1065
|
<span class="icon ion-md-cog"></span>
|
1066
1066
|
<span>Components</span>
|
1067
1067
|
<span class="icon ion-ios-arrow-down"></span>
|
1068
1068
|
</div>
|
1069
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiExpandContentModule-
|
1070
|
-
'id="xs-components-links-module-EuiExpandContentModule-
|
1069
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiExpandContentModule-9cec8862f8362965313ca4c8884ea75a23989b6c04832208244f4b2d736df699a947a111ec862ecd5963829ae5d1dee3aafbb71327d78967b8b659afd644d401"' :
|
1070
|
+
'id="xs-components-links-module-EuiExpandContentModule-9cec8862f8362965313ca4c8884ea75a23989b6c04832208244f4b2d736df699a947a111ec862ecd5963829ae5d1dee3aafbb71327d78967b8b659afd644d401"' }>
|
1071
1071
|
<li class="link">
|
1072
1072
|
<a href="components/EuiExpandContentComponent.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiExpandContentComponent</a>
|
1073
1073
|
</li>
|
@@ -2767,6 +2767,12 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
2767
2767
|
<li class="link">
|
2768
2768
|
<a href="classes/EuiDialogConfig.html" data-type="entity-link" >EuiDialogConfig</a>
|
2769
2769
|
</li>
|
2770
|
+
<li class="link">
|
2771
|
+
<a href="classes/EuiEuLanguages.html" data-type="entity-link" >EuiEuLanguages</a>
|
2772
|
+
</li>
|
2773
|
+
<li class="link">
|
2774
|
+
<a href="classes/EuiMenuItem.html" data-type="entity-link" >EuiMenuItem</a>
|
2775
|
+
</li>
|
2770
2776
|
<li class="link">
|
2771
2777
|
<a href="classes/EuiMessageBoxComponentInstances.html" data-type="entity-link" >EuiMessageBoxComponentInstances</a>
|
2772
2778
|
</li>
|
@@ -2982,6 +2988,9 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
2982
2988
|
<li class="link">
|
2983
2989
|
<a href="interfaces/EuiInfo.html" data-type="entity-link" >EuiInfo</a>
|
2984
2990
|
</li>
|
2991
|
+
<li class="link">
|
2992
|
+
<a href="interfaces/EuiLanguage.html" data-type="entity-link" >EuiLanguage</a>
|
2993
|
+
</li>
|
2985
2994
|
<li class="link">
|
2986
2995
|
<a href="interfaces/EuiLargeSize.html" data-type="entity-link" >EuiLargeSize</a>
|
2987
2996
|
</li>
|