@siemens/ix-react 4.2.0 → 4.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/READMEOSS.html +0 -0
- package/dist/components.js +10 -5
- package/dist/components.js.map +1 -1
- package/dist/components.server.js +145 -136
- package/dist/components.server.js.map +1 -1
- package/dist/modal/index.js +5 -3
- package/dist/modal/index.js.map +1 -1
- package/dist/tree/tree.js +1 -1
- package/dist/types/components.d.ts +72 -67
- package/dist/types/components.server.d.ts +72 -71
- package/dist/types/modal/index.d.ts +4 -1
- package/package.json +8 -8
|
@@ -1,12 +1,7 @@
|
|
|
1
|
+
"use client";
|
|
1
2
|
import * as clientComponents from '@siemens/ix';
|
|
2
3
|
import { createComponent } from '@stencil/react-output-target/ssr';
|
|
3
4
|
|
|
4
|
-
/**
|
|
5
|
-
* This file was automatically generated by the Stencil React Output Target.
|
|
6
|
-
* Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
/* eslint-disable */
|
|
9
|
-
// @ts-ignore - ignore potential type issues as the project is importing itself
|
|
10
5
|
const serializeShadowRoot = { "scoped": [], "default": "declarative-shadow-dom" };
|
|
11
6
|
const IxActionCard = /*@__PURE__*/ createComponent({
|
|
12
7
|
tagName: 'ix-action-card',
|
|
@@ -17,24 +12,23 @@ const IxActionCard = /*@__PURE__*/ createComponent({
|
|
|
17
12
|
heading: 'heading',
|
|
18
13
|
subheading: 'subheading',
|
|
19
14
|
selected: 'selected',
|
|
20
|
-
ariaLabelCard: 'aria-label-card'
|
|
15
|
+
ariaLabelCard: 'aria-label-card',
|
|
16
|
+
passive: 'passive'
|
|
21
17
|
},
|
|
22
18
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
23
19
|
clientModule: clientComponents.IxActionCard,
|
|
24
|
-
serializeShadowRoot
|
|
20
|
+
serializeShadowRoot
|
|
25
21
|
});
|
|
26
22
|
const IxApplication = /*@__PURE__*/ createComponent({
|
|
27
23
|
tagName: 'ix-application',
|
|
28
24
|
properties: {
|
|
29
25
|
theme: 'theme',
|
|
30
26
|
themeSystemAppearance: 'theme-system-appearance',
|
|
31
|
-
forceBreakpoint: 'force-breakpoint'
|
|
32
|
-
breakpoints: 'breakpoints',
|
|
33
|
-
appSwitchConfig: 'app-switch-config'
|
|
27
|
+
forceBreakpoint: 'force-breakpoint'
|
|
34
28
|
},
|
|
35
29
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
36
30
|
clientModule: clientComponents.IxApplication,
|
|
37
|
-
serializeShadowRoot
|
|
31
|
+
serializeShadowRoot
|
|
38
32
|
});
|
|
39
33
|
const IxApplicationHeader = /*@__PURE__*/ createComponent({
|
|
40
34
|
tagName: 'ix-application-header',
|
|
@@ -50,11 +44,12 @@ const IxApplicationHeader = /*@__PURE__*/ createComponent({
|
|
|
50
44
|
showMenu: 'show-menu',
|
|
51
45
|
ariaLabelMenuExpandIconButton: 'aria-label-menu-expand-icon-button',
|
|
52
46
|
ariaLabelAppSwitchIconButton: 'aria-label-app-switch-icon-button',
|
|
53
|
-
ariaLabelMoreMenuIconButton: 'aria-label-more-menu-icon-button'
|
|
47
|
+
ariaLabelMoreMenuIconButton: 'aria-label-more-menu-icon-button',
|
|
48
|
+
enableTopLayer: 'enable-top-layer'
|
|
54
49
|
},
|
|
55
50
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
56
51
|
clientModule: clientComponents.IxApplicationHeader,
|
|
57
|
-
serializeShadowRoot
|
|
52
|
+
serializeShadowRoot
|
|
58
53
|
});
|
|
59
54
|
const IxAvatar = /*@__PURE__*/ createComponent({
|
|
60
55
|
tagName: 'ix-avatar',
|
|
@@ -69,7 +64,7 @@ const IxAvatar = /*@__PURE__*/ createComponent({
|
|
|
69
64
|
},
|
|
70
65
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
71
66
|
clientModule: clientComponents.IxAvatar,
|
|
72
|
-
serializeShadowRoot
|
|
67
|
+
serializeShadowRoot
|
|
73
68
|
});
|
|
74
69
|
const IxBlind = /*@__PURE__*/ createComponent({
|
|
75
70
|
tagName: 'ix-blind',
|
|
@@ -82,19 +77,19 @@ const IxBlind = /*@__PURE__*/ createComponent({
|
|
|
82
77
|
},
|
|
83
78
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
84
79
|
clientModule: clientComponents.IxBlind,
|
|
85
|
-
serializeShadowRoot
|
|
80
|
+
serializeShadowRoot
|
|
86
81
|
});
|
|
87
82
|
const IxBreadcrumb = /*@__PURE__*/ createComponent({
|
|
88
83
|
tagName: 'ix-breadcrumb',
|
|
89
84
|
properties: {
|
|
90
85
|
visibleItemCount: 'visible-item-count',
|
|
91
|
-
nextItems: 'next-items',
|
|
92
86
|
subtle: 'subtle',
|
|
93
|
-
ariaLabelPreviousButton: 'aria-label-previous-button'
|
|
87
|
+
ariaLabelPreviousButton: 'aria-label-previous-button',
|
|
88
|
+
enableTopLayer: 'enable-top-layer'
|
|
94
89
|
},
|
|
95
90
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
96
91
|
clientModule: clientComponents.IxBreadcrumb,
|
|
97
|
-
serializeShadowRoot
|
|
92
|
+
serializeShadowRoot
|
|
98
93
|
});
|
|
99
94
|
const IxBreadcrumbItem = /*@__PURE__*/ createComponent({
|
|
100
95
|
tagName: 'ix-breadcrumb-item',
|
|
@@ -112,7 +107,7 @@ const IxBreadcrumbItem = /*@__PURE__*/ createComponent({
|
|
|
112
107
|
},
|
|
113
108
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
114
109
|
clientModule: clientComponents.IxBreadcrumbItem,
|
|
115
|
-
serializeShadowRoot
|
|
110
|
+
serializeShadowRoot
|
|
116
111
|
});
|
|
117
112
|
const IxButton = /*@__PURE__*/ createComponent({
|
|
118
113
|
tagName: 'ix-button',
|
|
@@ -133,17 +128,18 @@ const IxButton = /*@__PURE__*/ createComponent({
|
|
|
133
128
|
},
|
|
134
129
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
135
130
|
clientModule: clientComponents.IxButton,
|
|
136
|
-
serializeShadowRoot
|
|
131
|
+
serializeShadowRoot
|
|
137
132
|
});
|
|
138
133
|
const IxCard = /*@__PURE__*/ createComponent({
|
|
139
134
|
tagName: 'ix-card',
|
|
140
135
|
properties: {
|
|
141
136
|
variant: 'variant',
|
|
142
|
-
selected: 'selected'
|
|
137
|
+
selected: 'selected',
|
|
138
|
+
passive: 'passive'
|
|
143
139
|
},
|
|
144
140
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
145
141
|
clientModule: clientComponents.IxCard,
|
|
146
|
-
serializeShadowRoot
|
|
142
|
+
serializeShadowRoot
|
|
147
143
|
});
|
|
148
144
|
const IxCardAccordion = /*@__PURE__*/ createComponent({
|
|
149
145
|
tagName: 'ix-card-accordion',
|
|
@@ -154,14 +150,14 @@ const IxCardAccordion = /*@__PURE__*/ createComponent({
|
|
|
154
150
|
},
|
|
155
151
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
156
152
|
clientModule: clientComponents.IxCardAccordion,
|
|
157
|
-
serializeShadowRoot
|
|
153
|
+
serializeShadowRoot
|
|
158
154
|
});
|
|
159
155
|
const IxCardContent = /*@__PURE__*/ createComponent({
|
|
160
156
|
tagName: 'ix-card-content',
|
|
161
157
|
properties: {},
|
|
162
158
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
163
159
|
clientModule: clientComponents.IxCardContent,
|
|
164
|
-
serializeShadowRoot
|
|
160
|
+
serializeShadowRoot
|
|
165
161
|
});
|
|
166
162
|
const IxCardList = /*@__PURE__*/ createComponent({
|
|
167
163
|
tagName: 'ix-card-list',
|
|
@@ -179,25 +175,21 @@ const IxCardList = /*@__PURE__*/ createComponent({
|
|
|
179
175
|
},
|
|
180
176
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
181
177
|
clientModule: clientComponents.IxCardList,
|
|
182
|
-
serializeShadowRoot
|
|
178
|
+
serializeShadowRoot
|
|
183
179
|
});
|
|
184
180
|
const IxCardTitle = /*@__PURE__*/ createComponent({
|
|
185
181
|
tagName: 'ix-card-title',
|
|
186
182
|
properties: {},
|
|
187
183
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
188
184
|
clientModule: clientComponents.IxCardTitle,
|
|
189
|
-
serializeShadowRoot
|
|
185
|
+
serializeShadowRoot
|
|
190
186
|
});
|
|
191
187
|
const IxCategoryFilter = /*@__PURE__*/ createComponent({
|
|
192
188
|
tagName: 'ix-category-filter',
|
|
193
189
|
properties: {
|
|
194
190
|
disabled: 'disabled',
|
|
195
191
|
readonly: 'readonly',
|
|
196
|
-
filterState: 'filter-state',
|
|
197
192
|
placeholder: 'placeholder',
|
|
198
|
-
categories: 'categories',
|
|
199
|
-
nonSelectableCategories: 'non-selectable-categories',
|
|
200
|
-
suggestions: 'suggestions',
|
|
201
193
|
icon: 'icon',
|
|
202
194
|
hideIcon: 'hide-icon',
|
|
203
195
|
staticOperator: 'static-operator',
|
|
@@ -206,11 +198,12 @@ const IxCategoryFilter = /*@__PURE__*/ createComponent({
|
|
|
206
198
|
i18nPlainText: 'i18n-plain-text',
|
|
207
199
|
ariaLabelResetButton: 'aria-label-reset-button',
|
|
208
200
|
ariaLabelOperatorButton: 'aria-label-operator-button',
|
|
209
|
-
ariaLabelFilterInput: 'aria-label-filter-input'
|
|
201
|
+
ariaLabelFilterInput: 'aria-label-filter-input',
|
|
202
|
+
enableTopLayer: 'enable-top-layer'
|
|
210
203
|
},
|
|
211
204
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
212
205
|
clientModule: clientComponents.IxCategoryFilter,
|
|
213
|
-
serializeShadowRoot
|
|
206
|
+
serializeShadowRoot
|
|
214
207
|
});
|
|
215
208
|
const IxCheckbox = /*@__PURE__*/ createComponent({
|
|
216
209
|
tagName: 'ix-checkbox',
|
|
@@ -225,7 +218,7 @@ const IxCheckbox = /*@__PURE__*/ createComponent({
|
|
|
225
218
|
},
|
|
226
219
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
227
220
|
clientModule: clientComponents.IxCheckbox,
|
|
228
|
-
serializeShadowRoot
|
|
221
|
+
serializeShadowRoot
|
|
229
222
|
});
|
|
230
223
|
const IxCheckboxGroup = /*@__PURE__*/ createComponent({
|
|
231
224
|
tagName: 'ix-checkbox-group',
|
|
@@ -242,7 +235,7 @@ const IxCheckboxGroup = /*@__PURE__*/ createComponent({
|
|
|
242
235
|
},
|
|
243
236
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
244
237
|
clientModule: clientComponents.IxCheckboxGroup,
|
|
245
|
-
serializeShadowRoot
|
|
238
|
+
serializeShadowRoot
|
|
246
239
|
});
|
|
247
240
|
const IxChip = /*@__PURE__*/ createComponent({
|
|
248
241
|
tagName: 'ix-chip',
|
|
@@ -260,7 +253,7 @@ const IxChip = /*@__PURE__*/ createComponent({
|
|
|
260
253
|
},
|
|
261
254
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
262
255
|
clientModule: clientComponents.IxChip,
|
|
263
|
-
serializeShadowRoot
|
|
256
|
+
serializeShadowRoot
|
|
264
257
|
});
|
|
265
258
|
const IxCol = /*@__PURE__*/ createComponent({
|
|
266
259
|
tagName: 'ix-col',
|
|
@@ -272,14 +265,14 @@ const IxCol = /*@__PURE__*/ createComponent({
|
|
|
272
265
|
},
|
|
273
266
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
274
267
|
clientModule: clientComponents.IxCol,
|
|
275
|
-
serializeShadowRoot
|
|
268
|
+
serializeShadowRoot
|
|
276
269
|
});
|
|
277
270
|
const IxContent = /*@__PURE__*/ createComponent({
|
|
278
271
|
tagName: 'ix-content',
|
|
279
272
|
properties: {},
|
|
280
273
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
281
274
|
clientModule: clientComponents.IxContent,
|
|
282
|
-
serializeShadowRoot
|
|
275
|
+
serializeShadowRoot
|
|
283
276
|
});
|
|
284
277
|
const IxContentHeader = /*@__PURE__*/ createComponent({
|
|
285
278
|
tagName: 'ix-content-header',
|
|
@@ -291,7 +284,7 @@ const IxContentHeader = /*@__PURE__*/ createComponent({
|
|
|
291
284
|
},
|
|
292
285
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
293
286
|
clientModule: clientComponents.IxContentHeader,
|
|
294
|
-
serializeShadowRoot
|
|
287
|
+
serializeShadowRoot
|
|
295
288
|
});
|
|
296
289
|
const IxCustomField = /*@__PURE__*/ createComponent({
|
|
297
290
|
tagName: 'ix-custom-field',
|
|
@@ -307,7 +300,7 @@ const IxCustomField = /*@__PURE__*/ createComponent({
|
|
|
307
300
|
},
|
|
308
301
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
309
302
|
clientModule: clientComponents.IxCustomField,
|
|
310
|
-
serializeShadowRoot
|
|
303
|
+
serializeShadowRoot
|
|
311
304
|
});
|
|
312
305
|
const IxDateDropdown = /*@__PURE__*/ createComponent({
|
|
313
306
|
tagName: 'ix-date-dropdown',
|
|
@@ -325,17 +318,17 @@ const IxDateDropdown = /*@__PURE__*/ createComponent({
|
|
|
325
318
|
showWeekNumbers: 'show-week-numbers',
|
|
326
319
|
ariaLabelDropdownButton: 'aria-label-dropdown-button',
|
|
327
320
|
customRangeDisabled: 'custom-range-disabled',
|
|
328
|
-
dateRangeOptions: 'date-range-options',
|
|
329
321
|
locale: 'locale',
|
|
330
322
|
weekStartIndex: 'week-start-index',
|
|
331
323
|
i18nCustomItem: 'i18n-custom-item',
|
|
332
324
|
i18nDone: 'i18n-done',
|
|
333
325
|
i18nNoRange: 'i18n-no-range',
|
|
334
|
-
today: 'today'
|
|
326
|
+
today: 'today',
|
|
327
|
+
enableTopLayer: 'enable-top-layer'
|
|
335
328
|
},
|
|
336
329
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
337
330
|
clientModule: clientComponents.IxDateDropdown,
|
|
338
|
-
serializeShadowRoot
|
|
331
|
+
serializeShadowRoot
|
|
339
332
|
});
|
|
340
333
|
const IxDateInput = /*@__PURE__*/ createComponent({
|
|
341
334
|
tagName: 'ix-date-input',
|
|
@@ -364,11 +357,12 @@ const IxDateInput = /*@__PURE__*/ createComponent({
|
|
|
364
357
|
ariaLabelPreviousMonthButton: 'aria-label-previous-month-button',
|
|
365
358
|
ariaLabelNextMonthButton: 'aria-label-next-month-button',
|
|
366
359
|
suppressSubmitOnEnter: 'suppress-submit-on-enter',
|
|
367
|
-
textAlignment: 'text-alignment'
|
|
360
|
+
textAlignment: 'text-alignment',
|
|
361
|
+
enableTopLayer: 'enable-top-layer'
|
|
368
362
|
},
|
|
369
363
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
370
364
|
clientModule: clientComponents.IxDateInput,
|
|
371
|
-
serializeShadowRoot
|
|
365
|
+
serializeShadowRoot
|
|
372
366
|
});
|
|
373
367
|
const IxDatePicker = /*@__PURE__*/ createComponent({
|
|
374
368
|
tagName: 'ix-date-picker',
|
|
@@ -387,11 +381,12 @@ const IxDatePicker = /*@__PURE__*/ createComponent({
|
|
|
387
381
|
locale: 'locale',
|
|
388
382
|
showWeekNumbers: 'show-week-numbers',
|
|
389
383
|
embedded: 'embedded',
|
|
390
|
-
today: 'today'
|
|
384
|
+
today: 'today',
|
|
385
|
+
enableTopLayer: 'enable-top-layer'
|
|
391
386
|
},
|
|
392
387
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
393
388
|
clientModule: clientComponents.IxDatePicker,
|
|
394
|
-
serializeShadowRoot
|
|
389
|
+
serializeShadowRoot
|
|
395
390
|
});
|
|
396
391
|
const IxDatetimePicker = /*@__PURE__*/ createComponent({
|
|
397
392
|
tagName: 'ix-datetime-picker',
|
|
@@ -416,14 +411,14 @@ const IxDatetimePicker = /*@__PURE__*/ createComponent({
|
|
|
416
411
|
},
|
|
417
412
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
418
413
|
clientModule: clientComponents.IxDatetimePicker,
|
|
419
|
-
serializeShadowRoot
|
|
414
|
+
serializeShadowRoot
|
|
420
415
|
});
|
|
421
416
|
const IxDivider = /*@__PURE__*/ createComponent({
|
|
422
417
|
tagName: 'ix-divider',
|
|
423
418
|
properties: {},
|
|
424
419
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
425
420
|
clientModule: clientComponents.IxDivider,
|
|
426
|
-
serializeShadowRoot
|
|
421
|
+
serializeShadowRoot
|
|
427
422
|
});
|
|
428
423
|
const IxDrawer = /*@__PURE__*/ createComponent({
|
|
429
424
|
tagName: 'ix-drawer',
|
|
@@ -438,7 +433,7 @@ const IxDrawer = /*@__PURE__*/ createComponent({
|
|
|
438
433
|
},
|
|
439
434
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
440
435
|
clientModule: clientComponents.IxDrawer,
|
|
441
|
-
serializeShadowRoot
|
|
436
|
+
serializeShadowRoot
|
|
442
437
|
});
|
|
443
438
|
const IxDropdown = /*@__PURE__*/ createComponent({
|
|
444
439
|
tagName: 'ix-dropdown',
|
|
@@ -451,15 +446,14 @@ const IxDropdown = /*@__PURE__*/ createComponent({
|
|
|
451
446
|
placement: 'placement',
|
|
452
447
|
positioningStrategy: 'positioning-strategy',
|
|
453
448
|
header: 'header',
|
|
454
|
-
offset: 'offset',
|
|
455
|
-
overwriteDropdownStyle: 'overwrite-dropdown-style',
|
|
456
449
|
discoverAllSubmenus: 'discover-all-submenus',
|
|
457
450
|
ignoreRelatedSubmenu: 'ignore-related-submenu',
|
|
458
|
-
suppressOverflowBehavior: 'suppress-overflow-behavior'
|
|
451
|
+
suppressOverflowBehavior: 'suppress-overflow-behavior',
|
|
452
|
+
enableTopLayer: 'enable-top-layer'
|
|
459
453
|
},
|
|
460
454
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
461
455
|
clientModule: clientComponents.IxDropdown,
|
|
462
|
-
serializeShadowRoot
|
|
456
|
+
serializeShadowRoot
|
|
463
457
|
});
|
|
464
458
|
const IxDropdownButton = /*@__PURE__*/ createComponent({
|
|
465
459
|
tagName: 'ix-dropdown-button',
|
|
@@ -470,18 +464,19 @@ const IxDropdownButton = /*@__PURE__*/ createComponent({
|
|
|
470
464
|
icon: 'icon',
|
|
471
465
|
closeBehavior: 'close-behavior',
|
|
472
466
|
placement: 'placement',
|
|
473
|
-
ariaLabelDropdownButton: 'aria-label-dropdown-button'
|
|
467
|
+
ariaLabelDropdownButton: 'aria-label-dropdown-button',
|
|
468
|
+
enableTopLayer: 'enable-top-layer'
|
|
474
469
|
},
|
|
475
470
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
476
471
|
clientModule: clientComponents.IxDropdownButton,
|
|
477
|
-
serializeShadowRoot
|
|
472
|
+
serializeShadowRoot
|
|
478
473
|
});
|
|
479
474
|
const IxDropdownHeader = /*@__PURE__*/ createComponent({
|
|
480
475
|
tagName: 'ix-dropdown-header',
|
|
481
476
|
properties: { label: 'label' },
|
|
482
477
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
483
478
|
clientModule: clientComponents.IxDropdownHeader,
|
|
484
|
-
serializeShadowRoot
|
|
479
|
+
serializeShadowRoot
|
|
485
480
|
});
|
|
486
481
|
const IxDropdownItem = /*@__PURE__*/ createComponent({
|
|
487
482
|
tagName: 'ix-dropdown-item',
|
|
@@ -498,14 +493,14 @@ const IxDropdownItem = /*@__PURE__*/ createComponent({
|
|
|
498
493
|
},
|
|
499
494
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
500
495
|
clientModule: clientComponents.IxDropdownItem,
|
|
501
|
-
serializeShadowRoot
|
|
496
|
+
serializeShadowRoot
|
|
502
497
|
});
|
|
503
498
|
const IxDropdownQuickActions = /*@__PURE__*/ createComponent({
|
|
504
499
|
tagName: 'ix-dropdown-quick-actions',
|
|
505
500
|
properties: {},
|
|
506
501
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
507
502
|
clientModule: clientComponents.IxDropdownQuickActions,
|
|
508
|
-
serializeShadowRoot
|
|
503
|
+
serializeShadowRoot
|
|
509
504
|
});
|
|
510
505
|
const IxEmptyState = /*@__PURE__*/ createComponent({
|
|
511
506
|
tagName: 'ix-empty-state',
|
|
@@ -519,7 +514,7 @@ const IxEmptyState = /*@__PURE__*/ createComponent({
|
|
|
519
514
|
},
|
|
520
515
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
521
516
|
clientModule: clientComponents.IxEmptyState,
|
|
522
|
-
serializeShadowRoot
|
|
517
|
+
serializeShadowRoot
|
|
523
518
|
});
|
|
524
519
|
const IxEventList = /*@__PURE__*/ createComponent({
|
|
525
520
|
tagName: 'ix-event-list',
|
|
@@ -531,7 +526,7 @@ const IxEventList = /*@__PURE__*/ createComponent({
|
|
|
531
526
|
},
|
|
532
527
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
533
528
|
clientModule: clientComponents.IxEventList,
|
|
534
|
-
serializeShadowRoot
|
|
529
|
+
serializeShadowRoot
|
|
535
530
|
});
|
|
536
531
|
const IxEventListItem = /*@__PURE__*/ createComponent({
|
|
537
532
|
tagName: 'ix-event-list-item',
|
|
@@ -544,7 +539,7 @@ const IxEventListItem = /*@__PURE__*/ createComponent({
|
|
|
544
539
|
},
|
|
545
540
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
546
541
|
clientModule: clientComponents.IxEventListItem,
|
|
547
|
-
serializeShadowRoot
|
|
542
|
+
serializeShadowRoot
|
|
548
543
|
});
|
|
549
544
|
const IxExpandingSearch = /*@__PURE__*/ createComponent({
|
|
550
545
|
tagName: 'ix-expanding-search',
|
|
@@ -560,19 +555,18 @@ const IxExpandingSearch = /*@__PURE__*/ createComponent({
|
|
|
560
555
|
},
|
|
561
556
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
562
557
|
clientModule: clientComponents.IxExpandingSearch,
|
|
563
|
-
serializeShadowRoot
|
|
558
|
+
serializeShadowRoot
|
|
564
559
|
});
|
|
565
560
|
const IxFieldLabel = /*@__PURE__*/ createComponent({
|
|
566
561
|
tagName: 'ix-field-label',
|
|
567
562
|
properties: {
|
|
568
563
|
required: 'required',
|
|
569
564
|
htmlFor: 'html-for',
|
|
570
|
-
controlRef: 'control-ref',
|
|
571
565
|
isInvalid: 'is-invalid'
|
|
572
566
|
},
|
|
573
567
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
574
568
|
clientModule: clientComponents.IxFieldLabel,
|
|
575
|
-
serializeShadowRoot
|
|
569
|
+
serializeShadowRoot
|
|
576
570
|
});
|
|
577
571
|
const IxFilterChip = /*@__PURE__*/ createComponent({
|
|
578
572
|
tagName: 'ix-filter-chip',
|
|
@@ -583,7 +577,7 @@ const IxFilterChip = /*@__PURE__*/ createComponent({
|
|
|
583
577
|
},
|
|
584
578
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
585
579
|
clientModule: clientComponents.IxFilterChip,
|
|
586
|
-
serializeShadowRoot
|
|
580
|
+
serializeShadowRoot
|
|
587
581
|
});
|
|
588
582
|
const IxFlipTile = /*@__PURE__*/ createComponent({
|
|
589
583
|
tagName: 'ix-flip-tile',
|
|
@@ -596,14 +590,14 @@ const IxFlipTile = /*@__PURE__*/ createComponent({
|
|
|
596
590
|
},
|
|
597
591
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
598
592
|
clientModule: clientComponents.IxFlipTile,
|
|
599
|
-
serializeShadowRoot
|
|
593
|
+
serializeShadowRoot
|
|
600
594
|
});
|
|
601
595
|
const IxFlipTileContent = /*@__PURE__*/ createComponent({
|
|
602
596
|
tagName: 'ix-flip-tile-content',
|
|
603
597
|
properties: { contentVisible: 'content-visible' },
|
|
604
598
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
605
599
|
clientModule: clientComponents.IxFlipTileContent,
|
|
606
|
-
serializeShadowRoot
|
|
600
|
+
serializeShadowRoot
|
|
607
601
|
});
|
|
608
602
|
const IxGroup = /*@__PURE__*/ createComponent({
|
|
609
603
|
tagName: 'ix-group',
|
|
@@ -618,14 +612,14 @@ const IxGroup = /*@__PURE__*/ createComponent({
|
|
|
618
612
|
},
|
|
619
613
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
620
614
|
clientModule: clientComponents.IxGroup,
|
|
621
|
-
serializeShadowRoot
|
|
615
|
+
serializeShadowRoot
|
|
622
616
|
});
|
|
623
617
|
const IxGroupContextMenu = /*@__PURE__*/ createComponent({
|
|
624
618
|
tagName: 'ix-group-context-menu',
|
|
625
619
|
properties: {},
|
|
626
620
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
627
621
|
clientModule: clientComponents.IxGroupContextMenu,
|
|
628
|
-
serializeShadowRoot
|
|
622
|
+
serializeShadowRoot
|
|
629
623
|
});
|
|
630
624
|
const IxGroupItem = /*@__PURE__*/ createComponent({
|
|
631
625
|
tagName: 'ix-group-item',
|
|
@@ -642,7 +636,7 @@ const IxGroupItem = /*@__PURE__*/ createComponent({
|
|
|
642
636
|
},
|
|
643
637
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
644
638
|
clientModule: clientComponents.IxGroupItem,
|
|
645
|
-
serializeShadowRoot
|
|
639
|
+
serializeShadowRoot
|
|
646
640
|
});
|
|
647
641
|
const IxHelperText = /*@__PURE__*/ createComponent({
|
|
648
642
|
tagName: 'ix-helper-text',
|
|
@@ -656,7 +650,7 @@ const IxHelperText = /*@__PURE__*/ createComponent({
|
|
|
656
650
|
},
|
|
657
651
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
658
652
|
clientModule: clientComponents.IxHelperText,
|
|
659
|
-
serializeShadowRoot
|
|
653
|
+
serializeShadowRoot
|
|
660
654
|
});
|
|
661
655
|
const IxIconButton = /*@__PURE__*/ createComponent({
|
|
662
656
|
tagName: 'ix-icon-button',
|
|
@@ -673,7 +667,7 @@ const IxIconButton = /*@__PURE__*/ createComponent({
|
|
|
673
667
|
},
|
|
674
668
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
675
669
|
clientModule: clientComponents.IxIconButton,
|
|
676
|
-
serializeShadowRoot
|
|
670
|
+
serializeShadowRoot
|
|
677
671
|
});
|
|
678
672
|
const IxIconToggleButton = /*@__PURE__*/ createComponent({
|
|
679
673
|
tagName: 'ix-icon-toggle-button',
|
|
@@ -691,7 +685,7 @@ const IxIconToggleButton = /*@__PURE__*/ createComponent({
|
|
|
691
685
|
},
|
|
692
686
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
693
687
|
clientModule: clientComponents.IxIconToggleButton,
|
|
694
|
-
serializeShadowRoot
|
|
688
|
+
serializeShadowRoot
|
|
695
689
|
});
|
|
696
690
|
const IxInput = /*@__PURE__*/ createComponent({
|
|
697
691
|
tagName: 'ix-input',
|
|
@@ -719,14 +713,14 @@ const IxInput = /*@__PURE__*/ createComponent({
|
|
|
719
713
|
},
|
|
720
714
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
721
715
|
clientModule: clientComponents.IxInput,
|
|
722
|
-
serializeShadowRoot
|
|
716
|
+
serializeShadowRoot
|
|
723
717
|
});
|
|
724
718
|
const IxInputGroup = /*@__PURE__*/ createComponent({
|
|
725
719
|
tagName: 'ix-input-group',
|
|
726
720
|
properties: {},
|
|
727
721
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
728
722
|
clientModule: clientComponents.IxInputGroup,
|
|
729
|
-
serializeShadowRoot
|
|
723
|
+
serializeShadowRoot
|
|
730
724
|
});
|
|
731
725
|
const IxKeyValue = /*@__PURE__*/ createComponent({
|
|
732
726
|
tagName: 'ix-key-value',
|
|
@@ -739,14 +733,14 @@ const IxKeyValue = /*@__PURE__*/ createComponent({
|
|
|
739
733
|
},
|
|
740
734
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
741
735
|
clientModule: clientComponents.IxKeyValue,
|
|
742
|
-
serializeShadowRoot
|
|
736
|
+
serializeShadowRoot
|
|
743
737
|
});
|
|
744
738
|
const IxKeyValueList = /*@__PURE__*/ createComponent({
|
|
745
739
|
tagName: 'ix-key-value-list',
|
|
746
740
|
properties: { striped: 'striped' },
|
|
747
741
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
748
742
|
clientModule: clientComponents.IxKeyValueList,
|
|
749
|
-
serializeShadowRoot
|
|
743
|
+
serializeShadowRoot
|
|
750
744
|
});
|
|
751
745
|
const IxKpi = /*@__PURE__*/ createComponent({
|
|
752
746
|
tagName: 'ix-kpi',
|
|
@@ -761,14 +755,14 @@ const IxKpi = /*@__PURE__*/ createComponent({
|
|
|
761
755
|
},
|
|
762
756
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
763
757
|
clientModule: clientComponents.IxKpi,
|
|
764
|
-
serializeShadowRoot
|
|
758
|
+
serializeShadowRoot
|
|
765
759
|
});
|
|
766
760
|
const IxLayoutAuto = /*@__PURE__*/ createComponent({
|
|
767
761
|
tagName: 'ix-layout-auto',
|
|
768
|
-
properties: {
|
|
762
|
+
properties: {},
|
|
769
763
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
770
764
|
clientModule: clientComponents.IxLayoutAuto,
|
|
771
|
-
serializeShadowRoot
|
|
765
|
+
serializeShadowRoot
|
|
772
766
|
});
|
|
773
767
|
const IxLayoutGrid = /*@__PURE__*/ createComponent({
|
|
774
768
|
tagName: 'ix-layout-grid',
|
|
@@ -779,7 +773,7 @@ const IxLayoutGrid = /*@__PURE__*/ createComponent({
|
|
|
779
773
|
},
|
|
780
774
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
781
775
|
clientModule: clientComponents.IxLayoutGrid,
|
|
782
|
-
serializeShadowRoot
|
|
776
|
+
serializeShadowRoot
|
|
783
777
|
});
|
|
784
778
|
const IxLinkButton = /*@__PURE__*/ createComponent({
|
|
785
779
|
tagName: 'ix-link-button',
|
|
@@ -790,7 +784,7 @@ const IxLinkButton = /*@__PURE__*/ createComponent({
|
|
|
790
784
|
},
|
|
791
785
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
792
786
|
clientModule: clientComponents.IxLinkButton,
|
|
793
|
-
serializeShadowRoot
|
|
787
|
+
serializeShadowRoot
|
|
794
788
|
});
|
|
795
789
|
const IxMenu = /*@__PURE__*/ createComponent({
|
|
796
790
|
tagName: 'ix-menu',
|
|
@@ -813,25 +807,26 @@ const IxMenu = /*@__PURE__*/ createComponent({
|
|
|
813
807
|
},
|
|
814
808
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
815
809
|
clientModule: clientComponents.IxMenu,
|
|
816
|
-
serializeShadowRoot
|
|
810
|
+
serializeShadowRoot
|
|
817
811
|
});
|
|
818
812
|
const IxMenuAbout = /*@__PURE__*/ createComponent({
|
|
819
813
|
tagName: 'ix-menu-about',
|
|
820
814
|
properties: {
|
|
821
815
|
activeTabLabel: 'active-tab-label',
|
|
822
816
|
label: 'label',
|
|
817
|
+
ariaLabelCloseButton: 'aria-label-close-button',
|
|
823
818
|
show: 'show'
|
|
824
819
|
},
|
|
825
820
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
826
821
|
clientModule: clientComponents.IxMenuAbout,
|
|
827
|
-
serializeShadowRoot
|
|
822
|
+
serializeShadowRoot
|
|
828
823
|
});
|
|
829
824
|
const IxMenuAboutItem = /*@__PURE__*/ createComponent({
|
|
830
825
|
tagName: 'ix-menu-about-item',
|
|
831
826
|
properties: { label: 'label' },
|
|
832
827
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
833
828
|
clientModule: clientComponents.IxMenuAboutItem,
|
|
834
|
-
serializeShadowRoot
|
|
829
|
+
serializeShadowRoot
|
|
835
830
|
});
|
|
836
831
|
const IxMenuAboutNews = /*@__PURE__*/ createComponent({
|
|
837
832
|
tagName: 'ix-menu-about-news',
|
|
@@ -844,7 +839,7 @@ const IxMenuAboutNews = /*@__PURE__*/ createComponent({
|
|
|
844
839
|
},
|
|
845
840
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
846
841
|
clientModule: clientComponents.IxMenuAboutNews,
|
|
847
|
-
serializeShadowRoot
|
|
842
|
+
serializeShadowRoot
|
|
848
843
|
});
|
|
849
844
|
const IxMenuAvatar = /*@__PURE__*/ createComponent({
|
|
850
845
|
tagName: 'ix-menu-avatar',
|
|
@@ -853,12 +848,15 @@ const IxMenuAvatar = /*@__PURE__*/ createComponent({
|
|
|
853
848
|
bottom: 'bottom',
|
|
854
849
|
image: 'image',
|
|
855
850
|
initials: 'initials',
|
|
851
|
+
tooltipText: 'tooltip-text',
|
|
852
|
+
ariaLabelTooltip: 'aria-label-tooltip',
|
|
856
853
|
i18nLogout: 'i18n-logout',
|
|
857
|
-
hideLogoutButton: 'hide-logout-button'
|
|
854
|
+
hideLogoutButton: 'hide-logout-button',
|
|
855
|
+
enableTopLayer: 'enable-top-layer'
|
|
858
856
|
},
|
|
859
857
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
860
858
|
clientModule: clientComponents.IxMenuAvatar,
|
|
861
|
-
serializeShadowRoot
|
|
859
|
+
serializeShadowRoot
|
|
862
860
|
});
|
|
863
861
|
const IxMenuAvatarItem = /*@__PURE__*/ createComponent({
|
|
864
862
|
tagName: 'ix-menu-avatar-item',
|
|
@@ -868,7 +866,7 @@ const IxMenuAvatarItem = /*@__PURE__*/ createComponent({
|
|
|
868
866
|
},
|
|
869
867
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
870
868
|
clientModule: clientComponents.IxMenuAvatarItem,
|
|
871
|
-
serializeShadowRoot
|
|
869
|
+
serializeShadowRoot
|
|
872
870
|
});
|
|
873
871
|
const IxMenuCategory = /*@__PURE__*/ createComponent({
|
|
874
872
|
tagName: 'ix-menu-category',
|
|
@@ -880,7 +878,7 @@ const IxMenuCategory = /*@__PURE__*/ createComponent({
|
|
|
880
878
|
},
|
|
881
879
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
882
880
|
clientModule: clientComponents.IxMenuCategory,
|
|
883
|
-
serializeShadowRoot
|
|
881
|
+
serializeShadowRoot
|
|
884
882
|
});
|
|
885
883
|
const IxMenuItem = /*@__PURE__*/ createComponent({
|
|
886
884
|
tagName: 'ix-menu-item',
|
|
@@ -900,25 +898,26 @@ const IxMenuItem = /*@__PURE__*/ createComponent({
|
|
|
900
898
|
},
|
|
901
899
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
902
900
|
clientModule: clientComponents.IxMenuItem,
|
|
903
|
-
serializeShadowRoot
|
|
901
|
+
serializeShadowRoot
|
|
904
902
|
});
|
|
905
903
|
const IxMenuSettings = /*@__PURE__*/ createComponent({
|
|
906
904
|
tagName: 'ix-menu-settings',
|
|
907
905
|
properties: {
|
|
908
906
|
activeTabLabel: 'active-tab-label',
|
|
909
907
|
label: 'label',
|
|
908
|
+
ariaLabelCloseButton: 'aria-label-close-button',
|
|
910
909
|
show: 'show'
|
|
911
910
|
},
|
|
912
911
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
913
912
|
clientModule: clientComponents.IxMenuSettings,
|
|
914
|
-
serializeShadowRoot
|
|
913
|
+
serializeShadowRoot
|
|
915
914
|
});
|
|
916
915
|
const IxMenuSettingsItem = /*@__PURE__*/ createComponent({
|
|
917
916
|
tagName: 'ix-menu-settings-item',
|
|
918
917
|
properties: { label: 'label' },
|
|
919
918
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
920
919
|
clientModule: clientComponents.IxMenuSettingsItem,
|
|
921
|
-
serializeShadowRoot
|
|
920
|
+
serializeShadowRoot
|
|
922
921
|
});
|
|
923
922
|
const IxMessageBar = /*@__PURE__*/ createComponent({
|
|
924
923
|
tagName: 'ix-message-bar',
|
|
@@ -928,7 +927,7 @@ const IxMessageBar = /*@__PURE__*/ createComponent({
|
|
|
928
927
|
},
|
|
929
928
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
930
929
|
clientModule: clientComponents.IxMessageBar,
|
|
931
|
-
serializeShadowRoot
|
|
930
|
+
serializeShadowRoot
|
|
932
931
|
});
|
|
933
932
|
const IxModal = /*@__PURE__*/ createComponent({
|
|
934
933
|
tagName: 'ix-modal',
|
|
@@ -937,27 +936,26 @@ const IxModal = /*@__PURE__*/ createComponent({
|
|
|
937
936
|
disableAnimation: 'disable-animation',
|
|
938
937
|
hideBackdrop: 'hide-backdrop',
|
|
939
938
|
closeOnBackdropClick: 'close-on-backdrop-click',
|
|
940
|
-
beforeDismiss: 'before-dismiss',
|
|
941
939
|
centered: 'centered',
|
|
942
940
|
disableEscapeClose: 'disable-escape-close'
|
|
943
941
|
},
|
|
944
942
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
945
943
|
clientModule: clientComponents.IxModal,
|
|
946
|
-
serializeShadowRoot
|
|
944
|
+
serializeShadowRoot
|
|
947
945
|
});
|
|
948
946
|
const IxModalContent = /*@__PURE__*/ createComponent({
|
|
949
947
|
tagName: 'ix-modal-content',
|
|
950
948
|
properties: {},
|
|
951
949
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
952
950
|
clientModule: clientComponents.IxModalContent,
|
|
953
|
-
serializeShadowRoot
|
|
951
|
+
serializeShadowRoot
|
|
954
952
|
});
|
|
955
953
|
const IxModalFooter = /*@__PURE__*/ createComponent({
|
|
956
954
|
tagName: 'ix-modal-footer',
|
|
957
955
|
properties: {},
|
|
958
956
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
959
957
|
clientModule: clientComponents.IxModalFooter,
|
|
960
|
-
serializeShadowRoot
|
|
958
|
+
serializeShadowRoot
|
|
961
959
|
});
|
|
962
960
|
const IxModalHeader = /*@__PURE__*/ createComponent({
|
|
963
961
|
tagName: 'ix-modal-header',
|
|
@@ -970,7 +968,7 @@ const IxModalHeader = /*@__PURE__*/ createComponent({
|
|
|
970
968
|
},
|
|
971
969
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
972
970
|
clientModule: clientComponents.IxModalHeader,
|
|
973
|
-
serializeShadowRoot
|
|
971
|
+
serializeShadowRoot
|
|
974
972
|
});
|
|
975
973
|
const IxNumberInput = /*@__PURE__*/ createComponent({
|
|
976
974
|
tagName: 'ix-number-input',
|
|
@@ -1000,7 +998,7 @@ const IxNumberInput = /*@__PURE__*/ createComponent({
|
|
|
1000
998
|
},
|
|
1001
999
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1002
1000
|
clientModule: clientComponents.IxNumberInput,
|
|
1003
|
-
serializeShadowRoot
|
|
1001
|
+
serializeShadowRoot
|
|
1004
1002
|
});
|
|
1005
1003
|
const IxPagination = /*@__PURE__*/ createComponent({
|
|
1006
1004
|
tagName: 'ix-pagination',
|
|
@@ -1019,7 +1017,7 @@ const IxPagination = /*@__PURE__*/ createComponent({
|
|
|
1019
1017
|
},
|
|
1020
1018
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1021
1019
|
clientModule: clientComponents.IxPagination,
|
|
1022
|
-
serializeShadowRoot
|
|
1020
|
+
serializeShadowRoot
|
|
1023
1021
|
});
|
|
1024
1022
|
const IxPane = /*@__PURE__*/ createComponent({
|
|
1025
1023
|
tagName: 'ix-pane',
|
|
@@ -1040,7 +1038,7 @@ const IxPane = /*@__PURE__*/ createComponent({
|
|
|
1040
1038
|
},
|
|
1041
1039
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1042
1040
|
clientModule: clientComponents.IxPane,
|
|
1043
|
-
serializeShadowRoot
|
|
1041
|
+
serializeShadowRoot
|
|
1044
1042
|
});
|
|
1045
1043
|
const IxPaneLayout = /*@__PURE__*/ createComponent({
|
|
1046
1044
|
tagName: 'ix-pane-layout',
|
|
@@ -1051,7 +1049,7 @@ const IxPaneLayout = /*@__PURE__*/ createComponent({
|
|
|
1051
1049
|
},
|
|
1052
1050
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1053
1051
|
clientModule: clientComponents.IxPaneLayout,
|
|
1054
|
-
serializeShadowRoot
|
|
1052
|
+
serializeShadowRoot
|
|
1055
1053
|
});
|
|
1056
1054
|
const IxPill = /*@__PURE__*/ createComponent({
|
|
1057
1055
|
tagName: 'ix-pill',
|
|
@@ -1067,7 +1065,7 @@ const IxPill = /*@__PURE__*/ createComponent({
|
|
|
1067
1065
|
},
|
|
1068
1066
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1069
1067
|
clientModule: clientComponents.IxPill,
|
|
1070
|
-
serializeShadowRoot
|
|
1068
|
+
serializeShadowRoot
|
|
1071
1069
|
});
|
|
1072
1070
|
const IxProgressIndicator = /*@__PURE__*/ createComponent({
|
|
1073
1071
|
tagName: 'ix-progress-indicator',
|
|
@@ -1085,7 +1083,7 @@ const IxProgressIndicator = /*@__PURE__*/ createComponent({
|
|
|
1085
1083
|
},
|
|
1086
1084
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1087
1085
|
clientModule: clientComponents.IxProgressIndicator,
|
|
1088
|
-
serializeShadowRoot
|
|
1086
|
+
serializeShadowRoot
|
|
1089
1087
|
});
|
|
1090
1088
|
const IxPushCard = /*@__PURE__*/ createComponent({
|
|
1091
1089
|
tagName: 'ix-push-card',
|
|
@@ -1096,11 +1094,12 @@ const IxPushCard = /*@__PURE__*/ createComponent({
|
|
|
1096
1094
|
heading: 'heading',
|
|
1097
1095
|
subheading: 'subheading',
|
|
1098
1096
|
variant: 'variant',
|
|
1099
|
-
expanded: 'expanded'
|
|
1097
|
+
expanded: 'expanded',
|
|
1098
|
+
passive: 'passive'
|
|
1100
1099
|
},
|
|
1101
1100
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1102
1101
|
clientModule: clientComponents.IxPushCard,
|
|
1103
|
-
serializeShadowRoot
|
|
1102
|
+
serializeShadowRoot
|
|
1104
1103
|
});
|
|
1105
1104
|
const IxRadio = /*@__PURE__*/ createComponent({
|
|
1106
1105
|
tagName: 'ix-radio',
|
|
@@ -1114,7 +1113,7 @@ const IxRadio = /*@__PURE__*/ createComponent({
|
|
|
1114
1113
|
},
|
|
1115
1114
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1116
1115
|
clientModule: clientComponents.IxRadio,
|
|
1117
|
-
serializeShadowRoot
|
|
1116
|
+
serializeShadowRoot
|
|
1118
1117
|
});
|
|
1119
1118
|
const IxRadioGroup = /*@__PURE__*/ createComponent({
|
|
1120
1119
|
tagName: 'ix-radio-group',
|
|
@@ -1132,14 +1131,14 @@ const IxRadioGroup = /*@__PURE__*/ createComponent({
|
|
|
1132
1131
|
},
|
|
1133
1132
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1134
1133
|
clientModule: clientComponents.IxRadioGroup,
|
|
1135
|
-
serializeShadowRoot
|
|
1134
|
+
serializeShadowRoot
|
|
1136
1135
|
});
|
|
1137
1136
|
const IxRow = /*@__PURE__*/ createComponent({
|
|
1138
1137
|
tagName: 'ix-row',
|
|
1139
1138
|
properties: {},
|
|
1140
1139
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1141
1140
|
clientModule: clientComponents.IxRow,
|
|
1142
|
-
serializeShadowRoot
|
|
1141
|
+
serializeShadowRoot
|
|
1143
1142
|
});
|
|
1144
1143
|
const IxSelect = /*@__PURE__*/ createComponent({
|
|
1145
1144
|
tagName: 'ix-select',
|
|
@@ -1169,11 +1168,12 @@ const IxSelect = /*@__PURE__*/ createComponent({
|
|
|
1169
1168
|
hideListHeader: 'hide-list-header',
|
|
1170
1169
|
dropdownWidth: 'dropdown-width',
|
|
1171
1170
|
dropdownMaxWidth: 'dropdown-max-width',
|
|
1172
|
-
collapseMultipleSelection: 'collapse-multiple-selection'
|
|
1171
|
+
collapseMultipleSelection: 'collapse-multiple-selection',
|
|
1172
|
+
enableTopLayer: 'enable-top-layer'
|
|
1173
1173
|
},
|
|
1174
1174
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1175
1175
|
clientModule: clientComponents.IxSelect,
|
|
1176
|
-
serializeShadowRoot
|
|
1176
|
+
serializeShadowRoot
|
|
1177
1177
|
});
|
|
1178
1178
|
const IxSelectItem = /*@__PURE__*/ createComponent({
|
|
1179
1179
|
tagName: 'ix-select-item',
|
|
@@ -1185,16 +1185,22 @@ const IxSelectItem = /*@__PURE__*/ createComponent({
|
|
|
1185
1185
|
},
|
|
1186
1186
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1187
1187
|
clientModule: clientComponents.IxSelectItem,
|
|
1188
|
-
serializeShadowRoot
|
|
1188
|
+
serializeShadowRoot
|
|
1189
1189
|
});
|
|
1190
1190
|
const IxSlider = /*@__PURE__*/ createComponent({
|
|
1191
1191
|
tagName: 'ix-slider',
|
|
1192
1192
|
properties: {
|
|
1193
|
+
helperText: 'helper-text',
|
|
1194
|
+
label: 'label',
|
|
1195
|
+
invalidText: 'invalid-text',
|
|
1196
|
+
infoText: 'info-text',
|
|
1197
|
+
warningText: 'warning-text',
|
|
1198
|
+
validText: 'valid-text',
|
|
1199
|
+
showTextAsTooltip: 'show-text-as-tooltip',
|
|
1193
1200
|
step: 'step',
|
|
1194
1201
|
min: 'min',
|
|
1195
1202
|
max: 'max',
|
|
1196
1203
|
value: 'value',
|
|
1197
|
-
marker: 'marker',
|
|
1198
1204
|
trace: 'trace',
|
|
1199
1205
|
traceReference: 'trace-reference',
|
|
1200
1206
|
disabled: 'disabled',
|
|
@@ -1202,7 +1208,7 @@ const IxSlider = /*@__PURE__*/ createComponent({
|
|
|
1202
1208
|
},
|
|
1203
1209
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1204
1210
|
clientModule: clientComponents.IxSlider,
|
|
1205
|
-
serializeShadowRoot
|
|
1211
|
+
serializeShadowRoot
|
|
1206
1212
|
});
|
|
1207
1213
|
const IxSpinner = /*@__PURE__*/ createComponent({
|
|
1208
1214
|
tagName: 'ix-spinner',
|
|
@@ -1213,7 +1219,7 @@ const IxSpinner = /*@__PURE__*/ createComponent({
|
|
|
1213
1219
|
},
|
|
1214
1220
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1215
1221
|
clientModule: clientComponents.IxSpinner,
|
|
1216
|
-
serializeShadowRoot
|
|
1222
|
+
serializeShadowRoot
|
|
1217
1223
|
});
|
|
1218
1224
|
const IxSplitButton = /*@__PURE__*/ createComponent({
|
|
1219
1225
|
tagName: 'ix-split-button',
|
|
@@ -1228,11 +1234,12 @@ const IxSplitButton = /*@__PURE__*/ createComponent({
|
|
|
1228
1234
|
disabled: 'disabled',
|
|
1229
1235
|
disableButton: 'disable-button',
|
|
1230
1236
|
disableDropdownButton: 'disable-dropdown-button',
|
|
1231
|
-
placement: 'placement'
|
|
1237
|
+
placement: 'placement',
|
|
1238
|
+
enableTopLayer: 'enable-top-layer'
|
|
1232
1239
|
},
|
|
1233
1240
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1234
1241
|
clientModule: clientComponents.IxSplitButton,
|
|
1235
|
-
serializeShadowRoot
|
|
1242
|
+
serializeShadowRoot
|
|
1236
1243
|
});
|
|
1237
1244
|
const IxTabItem = /*@__PURE__*/ createComponent({
|
|
1238
1245
|
tagName: 'ix-tab-item',
|
|
@@ -1248,7 +1255,7 @@ const IxTabItem = /*@__PURE__*/ createComponent({
|
|
|
1248
1255
|
},
|
|
1249
1256
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1250
1257
|
clientModule: clientComponents.IxTabItem,
|
|
1251
|
-
serializeShadowRoot
|
|
1258
|
+
serializeShadowRoot
|
|
1252
1259
|
});
|
|
1253
1260
|
const IxTabs = /*@__PURE__*/ createComponent({
|
|
1254
1261
|
tagName: 'ix-tabs',
|
|
@@ -1263,7 +1270,7 @@ const IxTabs = /*@__PURE__*/ createComponent({
|
|
|
1263
1270
|
},
|
|
1264
1271
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1265
1272
|
clientModule: clientComponents.IxTabs,
|
|
1266
|
-
serializeShadowRoot
|
|
1273
|
+
serializeShadowRoot
|
|
1267
1274
|
});
|
|
1268
1275
|
const IxTextarea = /*@__PURE__*/ createComponent({
|
|
1269
1276
|
tagName: 'ix-textarea',
|
|
@@ -1291,14 +1298,14 @@ const IxTextarea = /*@__PURE__*/ createComponent({
|
|
|
1291
1298
|
},
|
|
1292
1299
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1293
1300
|
clientModule: clientComponents.IxTextarea,
|
|
1294
|
-
serializeShadowRoot
|
|
1301
|
+
serializeShadowRoot
|
|
1295
1302
|
});
|
|
1296
1303
|
const IxTile = /*@__PURE__*/ createComponent({
|
|
1297
1304
|
tagName: 'ix-tile',
|
|
1298
1305
|
properties: { size: 'size' },
|
|
1299
1306
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1300
1307
|
clientModule: clientComponents.IxTile,
|
|
1301
|
-
serializeShadowRoot
|
|
1308
|
+
serializeShadowRoot
|
|
1302
1309
|
});
|
|
1303
1310
|
const IxTimeInput = /*@__PURE__*/ createComponent({
|
|
1304
1311
|
tagName: 'ix-time-input',
|
|
@@ -1330,11 +1337,12 @@ const IxTimeInput = /*@__PURE__*/ createComponent({
|
|
|
1330
1337
|
i18nMillisecondColumnHeader: 'i18n-millisecond-column-header',
|
|
1331
1338
|
suppressSubmitOnEnter: 'suppress-submit-on-enter',
|
|
1332
1339
|
hideHeader: 'hide-header',
|
|
1333
|
-
textAlignment: 'text-alignment'
|
|
1340
|
+
textAlignment: 'text-alignment',
|
|
1341
|
+
enableTopLayer: 'enable-top-layer'
|
|
1334
1342
|
},
|
|
1335
1343
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1336
1344
|
clientModule: clientComponents.IxTimeInput,
|
|
1337
|
-
serializeShadowRoot
|
|
1345
|
+
serializeShadowRoot
|
|
1338
1346
|
});
|
|
1339
1347
|
const IxTimePicker = /*@__PURE__*/ createComponent({
|
|
1340
1348
|
tagName: 'ix-time-picker',
|
|
@@ -1358,7 +1366,7 @@ const IxTimePicker = /*@__PURE__*/ createComponent({
|
|
|
1358
1366
|
},
|
|
1359
1367
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1360
1368
|
clientModule: clientComponents.IxTimePicker,
|
|
1361
|
-
serializeShadowRoot
|
|
1369
|
+
serializeShadowRoot
|
|
1362
1370
|
});
|
|
1363
1371
|
const IxToast = /*@__PURE__*/ createComponent({
|
|
1364
1372
|
tagName: 'ix-toast',
|
|
@@ -1369,11 +1377,12 @@ const IxToast = /*@__PURE__*/ createComponent({
|
|
|
1369
1377
|
preventAutoClose: 'prevent-auto-close',
|
|
1370
1378
|
icon: 'icon',
|
|
1371
1379
|
iconColor: 'icon-color',
|
|
1380
|
+
hideIcon: 'hide-icon',
|
|
1372
1381
|
ariaLabelCloseIconButton: 'aria-label-close-icon-button'
|
|
1373
1382
|
},
|
|
1374
1383
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1375
1384
|
clientModule: clientComponents.IxToast,
|
|
1376
|
-
serializeShadowRoot
|
|
1385
|
+
serializeShadowRoot
|
|
1377
1386
|
});
|
|
1378
1387
|
const IxToastContainer = /*@__PURE__*/ createComponent({
|
|
1379
1388
|
tagName: 'ix-toast-container',
|
|
@@ -1384,7 +1393,7 @@ const IxToastContainer = /*@__PURE__*/ createComponent({
|
|
|
1384
1393
|
},
|
|
1385
1394
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1386
1395
|
clientModule: clientComponents.IxToastContainer,
|
|
1387
|
-
serializeShadowRoot
|
|
1396
|
+
serializeShadowRoot
|
|
1388
1397
|
});
|
|
1389
1398
|
const IxToggle = /*@__PURE__*/ createComponent({
|
|
1390
1399
|
tagName: 'ix-toggle',
|
|
@@ -1402,7 +1411,7 @@ const IxToggle = /*@__PURE__*/ createComponent({
|
|
|
1402
1411
|
},
|
|
1403
1412
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1404
1413
|
clientModule: clientComponents.IxToggle,
|
|
1405
|
-
serializeShadowRoot
|
|
1414
|
+
serializeShadowRoot
|
|
1406
1415
|
});
|
|
1407
1416
|
const IxToggleButton = /*@__PURE__*/ createComponent({
|
|
1408
1417
|
tagName: 'ix-toggle-button',
|
|
@@ -1417,7 +1426,7 @@ const IxToggleButton = /*@__PURE__*/ createComponent({
|
|
|
1417
1426
|
},
|
|
1418
1427
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1419
1428
|
clientModule: clientComponents.IxToggleButton,
|
|
1420
|
-
serializeShadowRoot
|
|
1429
|
+
serializeShadowRoot
|
|
1421
1430
|
});
|
|
1422
1431
|
const IxTooltip = /*@__PURE__*/ createComponent({
|
|
1423
1432
|
tagName: 'ix-tooltip',
|
|
@@ -1432,7 +1441,7 @@ const IxTooltip = /*@__PURE__*/ createComponent({
|
|
|
1432
1441
|
},
|
|
1433
1442
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1434
1443
|
clientModule: clientComponents.IxTooltip,
|
|
1435
|
-
serializeShadowRoot
|
|
1444
|
+
serializeShadowRoot
|
|
1436
1445
|
});
|
|
1437
1446
|
const IxTypography = /*@__PURE__*/ createComponent({
|
|
1438
1447
|
tagName: 'ix-typography',
|
|
@@ -1444,7 +1453,7 @@ const IxTypography = /*@__PURE__*/ createComponent({
|
|
|
1444
1453
|
},
|
|
1445
1454
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1446
1455
|
clientModule: clientComponents.IxTypography,
|
|
1447
|
-
serializeShadowRoot
|
|
1456
|
+
serializeShadowRoot
|
|
1448
1457
|
});
|
|
1449
1458
|
const IxUpload = /*@__PURE__*/ createComponent({
|
|
1450
1459
|
tagName: 'ix-upload',
|
|
@@ -1463,7 +1472,7 @@ const IxUpload = /*@__PURE__*/ createComponent({
|
|
|
1463
1472
|
},
|
|
1464
1473
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1465
1474
|
clientModule: clientComponents.IxUpload,
|
|
1466
|
-
serializeShadowRoot
|
|
1475
|
+
serializeShadowRoot
|
|
1467
1476
|
});
|
|
1468
1477
|
const IxValidationTooltip = /*@__PURE__*/ createComponent({
|
|
1469
1478
|
tagName: 'ix-validation-tooltip',
|
|
@@ -1474,7 +1483,7 @@ const IxValidationTooltip = /*@__PURE__*/ createComponent({
|
|
|
1474
1483
|
},
|
|
1475
1484
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1476
1485
|
clientModule: clientComponents.IxValidationTooltip,
|
|
1477
|
-
serializeShadowRoot
|
|
1486
|
+
serializeShadowRoot
|
|
1478
1487
|
});
|
|
1479
1488
|
const IxWorkflowStep = /*@__PURE__*/ createComponent({
|
|
1480
1489
|
tagName: 'ix-workflow-step',
|
|
@@ -1488,7 +1497,7 @@ const IxWorkflowStep = /*@__PURE__*/ createComponent({
|
|
|
1488
1497
|
},
|
|
1489
1498
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1490
1499
|
clientModule: clientComponents.IxWorkflowStep,
|
|
1491
|
-
serializeShadowRoot
|
|
1500
|
+
serializeShadowRoot
|
|
1492
1501
|
});
|
|
1493
1502
|
const IxWorkflowSteps = /*@__PURE__*/ createComponent({
|
|
1494
1503
|
tagName: 'ix-workflow-steps',
|
|
@@ -1499,7 +1508,7 @@ const IxWorkflowSteps = /*@__PURE__*/ createComponent({
|
|
|
1499
1508
|
},
|
|
1500
1509
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1501
1510
|
clientModule: clientComponents.IxWorkflowSteps,
|
|
1502
|
-
serializeShadowRoot
|
|
1511
|
+
serializeShadowRoot
|
|
1503
1512
|
});
|
|
1504
1513
|
|
|
1505
1514
|
export { IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxProgressIndicator, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextarea, IxTile, IxTimeInput, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, serializeShadowRoot };
|