@siemens/ix-react 3.1.0 → 4.0.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 +29 -80
- package/dist/components.js +266 -275
- package/dist/components.js.map +1 -1
- package/dist/components.server.js +412 -223
- package/dist/components.server.js.map +1 -1
- package/dist/context/application-context.js.map +1 -1
- package/dist/context/context.js.map +1 -1
- package/dist/delegate.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/internal-components.js +6 -0
- package/dist/internal-components.js.map +1 -1
- package/dist/ix-icon.js +1 -1
- package/dist/modal/index.js.map +1 -1
- package/dist/modal/portal.js.map +1 -1
- package/dist/toast/toast.js +16 -6
- package/dist/toast/toast.js.map +1 -1
- package/dist/tree/internal-tree.js +1 -1
- package/dist/tree/tree.js +16 -11
- package/dist/tree/tree.js.map +1 -1
- package/dist/types/components.d.ts +11 -16
- package/dist/types/components.server.d.ts +11 -19
- package/dist/types/toast/toast.d.ts +3 -2
- package/dist/types/tree/tree.d.ts +19 -4
- package/package.json +17 -10
|
@@ -1,24 +1,27 @@
|
|
|
1
|
+
import * as clientComponents from '@siemens/ix';
|
|
1
2
|
import { createComponent } from '@stencil/react-output-target/ssr';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* This file was automatically generated by the Stencil React Output Target.
|
|
5
6
|
* Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
|
|
6
|
-
* Do __not__ import components from this file as server side rendered components
|
|
7
|
-
* may not hydrate due to missing Stencil runtime. Instead, import these components through the generated 'components.ts'
|
|
8
|
-
* file that re-exports all components with the 'use client' directive.
|
|
9
7
|
*/
|
|
8
|
+
/* eslint-disable */
|
|
9
|
+
// @ts-ignore - ignore potential type issues as the project is importing itself
|
|
10
10
|
const serializeShadowRoot = { "scoped": [], "default": "declarative-shadow-dom" };
|
|
11
11
|
const IxActionCard = /*@__PURE__*/ createComponent({
|
|
12
12
|
tagName: 'ix-action-card',
|
|
13
13
|
properties: {
|
|
14
14
|
variant: 'variant',
|
|
15
15
|
icon: 'icon',
|
|
16
|
+
ariaLabelIcon: 'aria-label-icon',
|
|
16
17
|
heading: 'heading',
|
|
17
18
|
subheading: 'subheading',
|
|
18
|
-
selected: 'selected'
|
|
19
|
+
selected: 'selected',
|
|
20
|
+
ariaLabelCard: 'aria-label-card'
|
|
19
21
|
},
|
|
20
22
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
21
|
-
|
|
23
|
+
clientModule: clientComponents.IxActionCard,
|
|
24
|
+
serializeShadowRoot,
|
|
22
25
|
});
|
|
23
26
|
const IxApplication = /*@__PURE__*/ createComponent({
|
|
24
27
|
tagName: 'ix-application',
|
|
@@ -30,38 +33,43 @@ const IxApplication = /*@__PURE__*/ createComponent({
|
|
|
30
33
|
appSwitchConfig: 'app-switch-config'
|
|
31
34
|
},
|
|
32
35
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
33
|
-
|
|
36
|
+
clientModule: clientComponents.IxApplication,
|
|
37
|
+
serializeShadowRoot,
|
|
34
38
|
});
|
|
35
39
|
const IxApplicationHeader = /*@__PURE__*/ createComponent({
|
|
36
40
|
tagName: 'ix-application-header',
|
|
37
41
|
properties: {
|
|
38
42
|
name: 'name',
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
+
nameSuffix: 'name-suffix',
|
|
44
|
+
companyLogo: 'company-logo',
|
|
45
|
+
companyLogoAlt: 'company-logo-alt',
|
|
46
|
+
appIcon: 'app-icon',
|
|
47
|
+
appIconAlt: 'app-icon-alt',
|
|
48
|
+
appIconOutline: 'app-icon-outline',
|
|
49
|
+
hideBottomBorder: 'hide-bottom-border',
|
|
50
|
+
showMenu: 'show-menu',
|
|
51
|
+
ariaLabelMenuExpandIconButton: 'aria-label-menu-expand-icon-button',
|
|
52
|
+
ariaLabelAppSwitchIconButton: 'aria-label-app-switch-icon-button',
|
|
53
|
+
ariaLabelMoreMenuIconButton: 'aria-label-more-menu-icon-button'
|
|
54
|
+
},
|
|
55
|
+
hydrateModule: import('@siemens/ix/hydrate'),
|
|
56
|
+
clientModule: clientComponents.IxApplicationHeader,
|
|
57
|
+
serializeShadowRoot,
|
|
43
58
|
});
|
|
44
59
|
const IxAvatar = /*@__PURE__*/ createComponent({
|
|
45
60
|
tagName: 'ix-avatar',
|
|
46
61
|
properties: {
|
|
62
|
+
a11yLabel: 'a11y-label',
|
|
47
63
|
image: 'image',
|
|
48
64
|
initials: 'initials',
|
|
49
65
|
username: 'username',
|
|
50
|
-
extra: 'extra'
|
|
66
|
+
extra: 'extra',
|
|
67
|
+
tooltipText: 'tooltip-text',
|
|
68
|
+
ariaLabelTooltip: 'aria-label-tooltip'
|
|
51
69
|
},
|
|
52
70
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
const IxBasicNavigation = /*@__PURE__*/ createComponent({
|
|
56
|
-
tagName: 'ix-basic-navigation',
|
|
57
|
-
properties: {
|
|
58
|
-
applicationName: 'application-name',
|
|
59
|
-
hideHeader: 'hide-header',
|
|
60
|
-
forceBreakpoint: 'force-breakpoint',
|
|
61
|
-
breakpoints: 'breakpoints'
|
|
62
|
-
},
|
|
63
|
-
hydrateModule: import('@siemens/ix/hydrate'),
|
|
64
|
-
serializeShadowRoot
|
|
71
|
+
clientModule: clientComponents.IxAvatar,
|
|
72
|
+
serializeShadowRoot,
|
|
65
73
|
});
|
|
66
74
|
const IxBlind = /*@__PURE__*/ createComponent({
|
|
67
75
|
tagName: 'ix-blind',
|
|
@@ -73,48 +81,59 @@ const IxBlind = /*@__PURE__*/ createComponent({
|
|
|
73
81
|
variant: 'variant'
|
|
74
82
|
},
|
|
75
83
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
76
|
-
|
|
84
|
+
clientModule: clientComponents.IxBlind,
|
|
85
|
+
serializeShadowRoot,
|
|
77
86
|
});
|
|
78
87
|
const IxBreadcrumb = /*@__PURE__*/ createComponent({
|
|
79
88
|
tagName: 'ix-breadcrumb',
|
|
80
89
|
properties: {
|
|
81
90
|
visibleItemCount: 'visible-item-count',
|
|
82
91
|
nextItems: 'next-items',
|
|
83
|
-
|
|
92
|
+
subtle: 'subtle',
|
|
84
93
|
ariaLabelPreviousButton: 'aria-label-previous-button'
|
|
85
94
|
},
|
|
86
95
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
87
|
-
|
|
96
|
+
clientModule: clientComponents.IxBreadcrumb,
|
|
97
|
+
serializeShadowRoot,
|
|
88
98
|
});
|
|
89
99
|
const IxBreadcrumbItem = /*@__PURE__*/ createComponent({
|
|
90
100
|
tagName: 'ix-breadcrumb-item',
|
|
91
101
|
properties: {
|
|
102
|
+
ariaLabelButton: 'aria-label-button',
|
|
92
103
|
label: 'label',
|
|
93
104
|
icon: 'icon',
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
105
|
+
href: 'href',
|
|
106
|
+
target: 'target',
|
|
107
|
+
rel: 'rel',
|
|
108
|
+
subtle: 'subtle',
|
|
109
|
+
invisible: 'invisible',
|
|
110
|
+
hideChevron: 'hide-chevron',
|
|
97
111
|
isDropdownTrigger: 'is-dropdown-trigger'
|
|
98
112
|
},
|
|
99
113
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
100
|
-
|
|
114
|
+
clientModule: clientComponents.IxBreadcrumbItem,
|
|
115
|
+
serializeShadowRoot,
|
|
101
116
|
});
|
|
102
117
|
const IxButton = /*@__PURE__*/ createComponent({
|
|
103
118
|
tagName: 'ix-button',
|
|
104
119
|
properties: {
|
|
120
|
+
ariaLabelButton: 'aria-label-button',
|
|
105
121
|
variant: 'variant',
|
|
106
|
-
outline: 'outline',
|
|
107
|
-
ghost: 'ghost',
|
|
108
122
|
disabled: 'disabled',
|
|
109
123
|
type: 'type',
|
|
110
124
|
loading: 'loading',
|
|
111
125
|
form: 'form',
|
|
112
126
|
icon: 'icon',
|
|
127
|
+
iconRight: 'icon-right',
|
|
113
128
|
alignment: 'alignment',
|
|
114
|
-
iconSize: 'icon-size'
|
|
129
|
+
iconSize: 'icon-size',
|
|
130
|
+
href: 'href',
|
|
131
|
+
target: 'target',
|
|
132
|
+
rel: 'rel'
|
|
115
133
|
},
|
|
116
134
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
117
|
-
|
|
135
|
+
clientModule: clientComponents.IxButton,
|
|
136
|
+
serializeShadowRoot,
|
|
118
137
|
});
|
|
119
138
|
const IxCard = /*@__PURE__*/ createComponent({
|
|
120
139
|
tagName: 'ix-card',
|
|
@@ -123,23 +142,31 @@ const IxCard = /*@__PURE__*/ createComponent({
|
|
|
123
142
|
selected: 'selected'
|
|
124
143
|
},
|
|
125
144
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
126
|
-
|
|
145
|
+
clientModule: clientComponents.IxCard,
|
|
146
|
+
serializeShadowRoot,
|
|
127
147
|
});
|
|
128
148
|
const IxCardAccordion = /*@__PURE__*/ createComponent({
|
|
129
149
|
tagName: 'ix-card-accordion',
|
|
130
|
-
properties: {
|
|
150
|
+
properties: {
|
|
151
|
+
ariaLabelExpandButton: 'aria-label-expand-button',
|
|
152
|
+
collapse: 'collapse',
|
|
153
|
+
variant: 'variant'
|
|
154
|
+
},
|
|
131
155
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
132
|
-
|
|
156
|
+
clientModule: clientComponents.IxCardAccordion,
|
|
157
|
+
serializeShadowRoot,
|
|
133
158
|
});
|
|
134
159
|
const IxCardContent = /*@__PURE__*/ createComponent({
|
|
135
160
|
tagName: 'ix-card-content',
|
|
136
161
|
properties: {},
|
|
137
162
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
138
|
-
|
|
163
|
+
clientModule: clientComponents.IxCardContent,
|
|
164
|
+
serializeShadowRoot,
|
|
139
165
|
});
|
|
140
166
|
const IxCardList = /*@__PURE__*/ createComponent({
|
|
141
167
|
tagName: 'ix-card-list',
|
|
142
168
|
properties: {
|
|
169
|
+
ariaLabelExpandButton: 'aria-label-expand-button',
|
|
143
170
|
label: 'label',
|
|
144
171
|
collapse: 'collapse',
|
|
145
172
|
listStyle: 'list-style',
|
|
@@ -147,17 +174,19 @@ const IxCardList = /*@__PURE__*/ createComponent({
|
|
|
147
174
|
showAllCount: 'show-all-count',
|
|
148
175
|
suppressOverflowHandling: 'suppress-overflow-handling',
|
|
149
176
|
hideShowAll: 'hide-show-all',
|
|
150
|
-
i18nShowAll: '
|
|
151
|
-
i18nMoreCards: '
|
|
177
|
+
i18nShowAll: 'i18n-show-all',
|
|
178
|
+
i18nMoreCards: 'i18n-more-cards'
|
|
152
179
|
},
|
|
153
180
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
154
|
-
|
|
181
|
+
clientModule: clientComponents.IxCardList,
|
|
182
|
+
serializeShadowRoot,
|
|
155
183
|
});
|
|
156
184
|
const IxCardTitle = /*@__PURE__*/ createComponent({
|
|
157
185
|
tagName: 'ix-card-title',
|
|
158
186
|
properties: {},
|
|
159
187
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
160
|
-
|
|
188
|
+
clientModule: clientComponents.IxCardTitle,
|
|
189
|
+
serializeShadowRoot,
|
|
161
190
|
});
|
|
162
191
|
const IxCategoryFilter = /*@__PURE__*/ createComponent({
|
|
163
192
|
tagName: 'ix-category-filter',
|
|
@@ -172,13 +201,16 @@ const IxCategoryFilter = /*@__PURE__*/ createComponent({
|
|
|
172
201
|
icon: 'icon',
|
|
173
202
|
hideIcon: 'hide-icon',
|
|
174
203
|
staticOperator: 'static-operator',
|
|
175
|
-
|
|
176
|
-
tmpDisableScrollIntoView: 'tmp-disable-scroll-into-view',
|
|
204
|
+
uniqueCategories: 'unique-categories',
|
|
177
205
|
labelCategories: 'label-categories',
|
|
178
|
-
i18nPlainText: '
|
|
206
|
+
i18nPlainText: 'i18n-plain-text',
|
|
207
|
+
ariaLabelResetButton: 'aria-label-reset-button',
|
|
208
|
+
ariaLabelOperatorButton: 'aria-label-operator-button',
|
|
209
|
+
ariaLabelFilterInput: 'aria-label-filter-input'
|
|
179
210
|
},
|
|
180
211
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
181
|
-
|
|
212
|
+
clientModule: clientComponents.IxCategoryFilter,
|
|
213
|
+
serializeShadowRoot,
|
|
182
214
|
});
|
|
183
215
|
const IxCheckbox = /*@__PURE__*/ createComponent({
|
|
184
216
|
tagName: 'ix-checkbox',
|
|
@@ -192,7 +224,8 @@ const IxCheckbox = /*@__PURE__*/ createComponent({
|
|
|
192
224
|
required: 'required'
|
|
193
225
|
},
|
|
194
226
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
195
|
-
|
|
227
|
+
clientModule: clientComponents.IxCheckbox,
|
|
228
|
+
serializeShadowRoot,
|
|
196
229
|
});
|
|
197
230
|
const IxCheckboxGroup = /*@__PURE__*/ createComponent({
|
|
198
231
|
tagName: 'ix-checkbox-group',
|
|
@@ -208,22 +241,26 @@ const IxCheckboxGroup = /*@__PURE__*/ createComponent({
|
|
|
208
241
|
required: 'required'
|
|
209
242
|
},
|
|
210
243
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
211
|
-
|
|
244
|
+
clientModule: clientComponents.IxCheckboxGroup,
|
|
245
|
+
serializeShadowRoot,
|
|
212
246
|
});
|
|
213
247
|
const IxChip = /*@__PURE__*/ createComponent({
|
|
214
248
|
tagName: 'ix-chip',
|
|
215
249
|
properties: {
|
|
216
250
|
variant: 'variant',
|
|
217
|
-
|
|
251
|
+
inactive: 'inactive',
|
|
218
252
|
closable: 'closable',
|
|
219
253
|
icon: 'icon',
|
|
220
254
|
background: 'background',
|
|
221
255
|
chipColor: 'chip-color',
|
|
222
256
|
outline: 'outline',
|
|
223
|
-
tooltipText: 'tooltip-text'
|
|
257
|
+
tooltipText: 'tooltip-text',
|
|
258
|
+
centerContent: 'center-content',
|
|
259
|
+
ariaLabelCloseButton: 'aria-label-close-button'
|
|
224
260
|
},
|
|
225
261
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
226
|
-
|
|
262
|
+
clientModule: clientComponents.IxChip,
|
|
263
|
+
serializeShadowRoot,
|
|
227
264
|
});
|
|
228
265
|
const IxCol = /*@__PURE__*/ createComponent({
|
|
229
266
|
tagName: 'ix-col',
|
|
@@ -234,13 +271,15 @@ const IxCol = /*@__PURE__*/ createComponent({
|
|
|
234
271
|
sizeLg: 'size-lg'
|
|
235
272
|
},
|
|
236
273
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
237
|
-
|
|
274
|
+
clientModule: clientComponents.IxCol,
|
|
275
|
+
serializeShadowRoot,
|
|
238
276
|
});
|
|
239
277
|
const IxContent = /*@__PURE__*/ createComponent({
|
|
240
278
|
tagName: 'ix-content',
|
|
241
279
|
properties: {},
|
|
242
280
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
243
|
-
|
|
281
|
+
clientModule: clientComponents.IxContent,
|
|
282
|
+
serializeShadowRoot,
|
|
244
283
|
});
|
|
245
284
|
const IxContentHeader = /*@__PURE__*/ createComponent({
|
|
246
285
|
tagName: 'ix-content-header',
|
|
@@ -251,7 +290,8 @@ const IxContentHeader = /*@__PURE__*/ createComponent({
|
|
|
251
290
|
hasBackButton: 'has-back-button'
|
|
252
291
|
},
|
|
253
292
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
254
|
-
|
|
293
|
+
clientModule: clientComponents.IxContentHeader,
|
|
294
|
+
serializeShadowRoot,
|
|
255
295
|
});
|
|
256
296
|
const IxCustomField = /*@__PURE__*/ createComponent({
|
|
257
297
|
tagName: 'ix-custom-field',
|
|
@@ -266,25 +306,25 @@ const IxCustomField = /*@__PURE__*/ createComponent({
|
|
|
266
306
|
showTextAsTooltip: 'show-text-as-tooltip'
|
|
267
307
|
},
|
|
268
308
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
269
|
-
|
|
309
|
+
clientModule: clientComponents.IxCustomField,
|
|
310
|
+
serializeShadowRoot,
|
|
270
311
|
});
|
|
271
312
|
const IxDateDropdown = /*@__PURE__*/ createComponent({
|
|
272
313
|
tagName: 'ix-date-dropdown',
|
|
273
314
|
properties: {
|
|
274
315
|
disabled: 'disabled',
|
|
275
316
|
format: 'format',
|
|
276
|
-
|
|
317
|
+
singleSelection: 'single-selection',
|
|
277
318
|
from: 'from',
|
|
278
319
|
to: 'to',
|
|
279
320
|
minDate: 'min-date',
|
|
280
321
|
maxDate: 'max-date',
|
|
281
322
|
dateRangeId: 'date-range-id',
|
|
282
323
|
variant: 'variant',
|
|
283
|
-
outline: 'outline',
|
|
284
|
-
ghost: 'ghost',
|
|
285
324
|
loading: 'loading',
|
|
286
325
|
showWeekNumbers: 'show-week-numbers',
|
|
287
|
-
|
|
326
|
+
ariaLabelDropdownButton: 'aria-label-dropdown-button',
|
|
327
|
+
customRangeDisabled: 'custom-range-disabled',
|
|
288
328
|
dateRangeOptions: 'date-range-options',
|
|
289
329
|
locale: 'locale',
|
|
290
330
|
weekStartIndex: 'week-start-index',
|
|
@@ -294,7 +334,8 @@ const IxDateDropdown = /*@__PURE__*/ createComponent({
|
|
|
294
334
|
today: 'today'
|
|
295
335
|
},
|
|
296
336
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
297
|
-
|
|
337
|
+
clientModule: clientComponents.IxDateDropdown,
|
|
338
|
+
serializeShadowRoot,
|
|
298
339
|
});
|
|
299
340
|
const IxDateInput = /*@__PURE__*/ createComponent({
|
|
300
341
|
tagName: 'ix-date-input',
|
|
@@ -302,11 +343,14 @@ const IxDateInput = /*@__PURE__*/ createComponent({
|
|
|
302
343
|
name: 'name',
|
|
303
344
|
placeholder: 'placeholder',
|
|
304
345
|
value: 'value',
|
|
346
|
+
minDate: 'min-date',
|
|
347
|
+
maxDate: 'max-date',
|
|
305
348
|
locale: 'locale',
|
|
306
349
|
format: 'format',
|
|
307
350
|
required: 'required',
|
|
308
351
|
helperText: 'helper-text',
|
|
309
352
|
label: 'label',
|
|
353
|
+
ariaLabelCalendarButton: 'aria-label-calendar-button',
|
|
310
354
|
invalidText: 'invalid-text',
|
|
311
355
|
readonly: 'readonly',
|
|
312
356
|
disabled: 'disabled',
|
|
@@ -315,38 +359,42 @@ const IxDateInput = /*@__PURE__*/ createComponent({
|
|
|
315
359
|
validText: 'valid-text',
|
|
316
360
|
showTextAsTooltip: 'show-text-as-tooltip',
|
|
317
361
|
i18nErrorDateUnparsable: 'i18n-error-date-unparsable',
|
|
318
|
-
showWeekNumbers: 'show-week-numbers'
|
|
362
|
+
showWeekNumbers: 'show-week-numbers',
|
|
363
|
+
weekStartIndex: 'week-start-index',
|
|
364
|
+
ariaLabelPreviousMonthButton: 'aria-label-previous-month-button',
|
|
365
|
+
ariaLabelNextMonthButton: 'aria-label-next-month-button'
|
|
319
366
|
},
|
|
320
367
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
321
|
-
|
|
368
|
+
clientModule: clientComponents.IxDateInput,
|
|
369
|
+
serializeShadowRoot,
|
|
322
370
|
});
|
|
323
371
|
const IxDatePicker = /*@__PURE__*/ createComponent({
|
|
324
372
|
tagName: 'ix-date-picker',
|
|
325
373
|
properties: {
|
|
326
374
|
format: 'format',
|
|
327
|
-
|
|
375
|
+
singleSelection: 'single-selection',
|
|
328
376
|
corners: 'corners',
|
|
329
377
|
from: 'from',
|
|
330
378
|
to: 'to',
|
|
331
379
|
minDate: 'min-date',
|
|
332
380
|
maxDate: 'max-date',
|
|
333
381
|
i18nDone: 'i18n-done',
|
|
382
|
+
ariaLabelPreviousMonthButton: 'aria-label-previous-month-button',
|
|
383
|
+
ariaLabelNextMonthButton: 'aria-label-next-month-button',
|
|
334
384
|
weekStartIndex: 'week-start-index',
|
|
335
385
|
locale: 'locale',
|
|
336
386
|
showWeekNumbers: 'show-week-numbers',
|
|
337
|
-
|
|
387
|
+
embedded: 'embedded',
|
|
338
388
|
today: 'today'
|
|
339
389
|
},
|
|
340
390
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
341
|
-
|
|
391
|
+
clientModule: clientComponents.IxDatePicker,
|
|
392
|
+
serializeShadowRoot,
|
|
342
393
|
});
|
|
343
394
|
const IxDatetimePicker = /*@__PURE__*/ createComponent({
|
|
344
395
|
tagName: 'ix-datetime-picker',
|
|
345
396
|
properties: {
|
|
346
|
-
|
|
347
|
-
showHour: 'show-hour',
|
|
348
|
-
showMinutes: 'show-minutes',
|
|
349
|
-
showSeconds: 'show-seconds',
|
|
397
|
+
singleSelection: 'single-selection',
|
|
350
398
|
minDate: 'min-date',
|
|
351
399
|
maxDate: 'max-date',
|
|
352
400
|
dateFormat: 'date-format',
|
|
@@ -357,19 +405,23 @@ const IxDatetimePicker = /*@__PURE__*/ createComponent({
|
|
|
357
405
|
showTimeReference: 'show-time-reference',
|
|
358
406
|
timeReference: 'time-reference',
|
|
359
407
|
i18nDone: 'i18n-done',
|
|
360
|
-
i18nTime: '
|
|
408
|
+
i18nTime: 'i18n-time',
|
|
409
|
+
ariaLabelPreviousMonthButton: 'aria-label-previous-month-button',
|
|
410
|
+
ariaLabelNextMonthButton: 'aria-label-next-month-button',
|
|
361
411
|
weekStartIndex: 'week-start-index',
|
|
362
412
|
locale: 'locale',
|
|
363
413
|
showWeekNumbers: 'show-week-numbers'
|
|
364
414
|
},
|
|
365
415
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
366
|
-
|
|
416
|
+
clientModule: clientComponents.IxDatetimePicker,
|
|
417
|
+
serializeShadowRoot,
|
|
367
418
|
});
|
|
368
419
|
const IxDivider = /*@__PURE__*/ createComponent({
|
|
369
420
|
tagName: 'ix-divider',
|
|
370
421
|
properties: {},
|
|
371
422
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
372
|
-
|
|
423
|
+
clientModule: clientComponents.IxDivider,
|
|
424
|
+
serializeShadowRoot,
|
|
373
425
|
});
|
|
374
426
|
const IxDrawer = /*@__PURE__*/ createComponent({
|
|
375
427
|
tagName: 'ix-drawer',
|
|
@@ -379,10 +431,12 @@ const IxDrawer = /*@__PURE__*/ createComponent({
|
|
|
379
431
|
fullHeight: 'full-height',
|
|
380
432
|
minWidth: 'min-width',
|
|
381
433
|
maxWidth: 'max-width',
|
|
382
|
-
width: 'width'
|
|
434
|
+
width: 'width',
|
|
435
|
+
ariaLabelCloseButton: 'aria-label-close-button'
|
|
383
436
|
},
|
|
384
437
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
385
|
-
|
|
438
|
+
clientModule: clientComponents.IxDrawer,
|
|
439
|
+
serializeShadowRoot,
|
|
386
440
|
});
|
|
387
441
|
const IxDropdown = /*@__PURE__*/ createComponent({
|
|
388
442
|
tagName: 'ix-dropdown',
|
|
@@ -402,34 +456,38 @@ const IxDropdown = /*@__PURE__*/ createComponent({
|
|
|
402
456
|
suppressOverflowBehavior: 'suppress-overflow-behavior'
|
|
403
457
|
},
|
|
404
458
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
405
|
-
|
|
459
|
+
clientModule: clientComponents.IxDropdown,
|
|
460
|
+
serializeShadowRoot,
|
|
406
461
|
});
|
|
407
462
|
const IxDropdownButton = /*@__PURE__*/ createComponent({
|
|
408
463
|
tagName: 'ix-dropdown-button',
|
|
409
464
|
properties: {
|
|
410
465
|
variant: 'variant',
|
|
411
|
-
outline: 'outline',
|
|
412
|
-
ghost: 'ghost',
|
|
413
466
|
disabled: 'disabled',
|
|
414
467
|
label: 'label',
|
|
415
468
|
icon: 'icon',
|
|
416
469
|
closeBehavior: 'close-behavior',
|
|
417
|
-
placement: 'placement'
|
|
470
|
+
placement: 'placement',
|
|
471
|
+
ariaLabelDropdownButton: 'aria-label-dropdown-button'
|
|
418
472
|
},
|
|
419
473
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
420
|
-
|
|
474
|
+
clientModule: clientComponents.IxDropdownButton,
|
|
475
|
+
serializeShadowRoot,
|
|
421
476
|
});
|
|
422
477
|
const IxDropdownHeader = /*@__PURE__*/ createComponent({
|
|
423
478
|
tagName: 'ix-dropdown-header',
|
|
424
479
|
properties: { label: 'label' },
|
|
425
480
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
426
|
-
|
|
481
|
+
clientModule: clientComponents.IxDropdownHeader,
|
|
482
|
+
serializeShadowRoot,
|
|
427
483
|
});
|
|
428
484
|
const IxDropdownItem = /*@__PURE__*/ createComponent({
|
|
429
485
|
tagName: 'ix-dropdown-item',
|
|
430
486
|
properties: {
|
|
431
487
|
label: 'label',
|
|
432
488
|
icon: 'icon',
|
|
489
|
+
ariaLabelIcon: 'aria-label-icon',
|
|
490
|
+
ariaLabelButton: 'aria-label-button',
|
|
433
491
|
hover: 'hover',
|
|
434
492
|
disabled: 'disabled',
|
|
435
493
|
checked: 'checked',
|
|
@@ -437,13 +495,15 @@ const IxDropdownItem = /*@__PURE__*/ createComponent({
|
|
|
437
495
|
suppressChecked: 'suppress-checked'
|
|
438
496
|
},
|
|
439
497
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
440
|
-
|
|
498
|
+
clientModule: clientComponents.IxDropdownItem,
|
|
499
|
+
serializeShadowRoot,
|
|
441
500
|
});
|
|
442
501
|
const IxDropdownQuickActions = /*@__PURE__*/ createComponent({
|
|
443
502
|
tagName: 'ix-dropdown-quick-actions',
|
|
444
503
|
properties: {},
|
|
445
504
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
446
|
-
|
|
505
|
+
clientModule: clientComponents.IxDropdownQuickActions,
|
|
506
|
+
serializeShadowRoot,
|
|
447
507
|
});
|
|
448
508
|
const IxEmptyState = /*@__PURE__*/ createComponent({
|
|
449
509
|
tagName: 'ix-empty-state',
|
|
@@ -452,10 +512,12 @@ const IxEmptyState = /*@__PURE__*/ createComponent({
|
|
|
452
512
|
icon: 'icon',
|
|
453
513
|
header: 'header',
|
|
454
514
|
subHeader: 'sub-header',
|
|
455
|
-
action: 'action'
|
|
515
|
+
action: 'action',
|
|
516
|
+
ariaLabelEmptyStateIcon: 'aria-label-empty-state-icon'
|
|
456
517
|
},
|
|
457
518
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
458
|
-
|
|
519
|
+
clientModule: clientComponents.IxEmptyState,
|
|
520
|
+
serializeShadowRoot,
|
|
459
521
|
});
|
|
460
522
|
const IxEventList = /*@__PURE__*/ createComponent({
|
|
461
523
|
tagName: 'ix-event-list',
|
|
@@ -466,18 +528,21 @@ const IxEventList = /*@__PURE__*/ createComponent({
|
|
|
466
528
|
chevron: 'chevron'
|
|
467
529
|
},
|
|
468
530
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
469
|
-
|
|
531
|
+
clientModule: clientComponents.IxEventList,
|
|
532
|
+
serializeShadowRoot,
|
|
470
533
|
});
|
|
471
534
|
const IxEventListItem = /*@__PURE__*/ createComponent({
|
|
472
535
|
tagName: 'ix-event-list-item',
|
|
473
536
|
properties: {
|
|
537
|
+
variant: 'variant',
|
|
474
538
|
itemColor: 'item-color',
|
|
475
539
|
selected: 'selected',
|
|
476
540
|
disabled: 'disabled',
|
|
477
541
|
chevron: 'chevron'
|
|
478
542
|
},
|
|
479
543
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
480
|
-
|
|
544
|
+
clientModule: clientComponents.IxEventListItem,
|
|
545
|
+
serializeShadowRoot,
|
|
481
546
|
});
|
|
482
547
|
const IxExpandingSearch = /*@__PURE__*/ createComponent({
|
|
483
548
|
tagName: 'ix-expanding-search',
|
|
@@ -487,11 +552,13 @@ const IxExpandingSearch = /*@__PURE__*/ createComponent({
|
|
|
487
552
|
value: 'value',
|
|
488
553
|
fullWidth: 'full-width',
|
|
489
554
|
variant: 'variant',
|
|
490
|
-
|
|
491
|
-
|
|
555
|
+
ariaLabelSearchIconButton: 'aria-label-search-icon-button',
|
|
556
|
+
ariaLabelClearIconButton: 'aria-label-clear-icon-button',
|
|
557
|
+
ariaLabelSearchInput: 'aria-label-search-input'
|
|
492
558
|
},
|
|
493
559
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
494
|
-
|
|
560
|
+
clientModule: clientComponents.IxExpandingSearch,
|
|
561
|
+
serializeShadowRoot,
|
|
495
562
|
});
|
|
496
563
|
const IxFieldLabel = /*@__PURE__*/ createComponent({
|
|
497
564
|
tagName: 'ix-field-label',
|
|
@@ -502,33 +569,39 @@ const IxFieldLabel = /*@__PURE__*/ createComponent({
|
|
|
502
569
|
isInvalid: 'is-invalid'
|
|
503
570
|
},
|
|
504
571
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
505
|
-
|
|
572
|
+
clientModule: clientComponents.IxFieldLabel,
|
|
573
|
+
serializeShadowRoot,
|
|
506
574
|
});
|
|
507
575
|
const IxFilterChip = /*@__PURE__*/ createComponent({
|
|
508
576
|
tagName: 'ix-filter-chip',
|
|
509
577
|
properties: {
|
|
510
578
|
disabled: 'disabled',
|
|
511
|
-
readonly: 'readonly'
|
|
579
|
+
readonly: 'readonly',
|
|
580
|
+
ariaLabelCloseIconButton: 'aria-label-close-icon-button'
|
|
512
581
|
},
|
|
513
582
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
514
|
-
|
|
583
|
+
clientModule: clientComponents.IxFilterChip,
|
|
584
|
+
serializeShadowRoot,
|
|
515
585
|
});
|
|
516
586
|
const IxFlipTile = /*@__PURE__*/ createComponent({
|
|
517
587
|
tagName: 'ix-flip-tile',
|
|
518
588
|
properties: {
|
|
519
|
-
|
|
589
|
+
variant: 'variant',
|
|
520
590
|
height: 'height',
|
|
521
591
|
width: 'width',
|
|
522
|
-
index: 'index'
|
|
592
|
+
index: 'index',
|
|
593
|
+
ariaLabelEyeIconButton: 'aria-label-eye-icon-button'
|
|
523
594
|
},
|
|
524
595
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
525
|
-
|
|
596
|
+
clientModule: clientComponents.IxFlipTile,
|
|
597
|
+
serializeShadowRoot,
|
|
526
598
|
});
|
|
527
599
|
const IxFlipTileContent = /*@__PURE__*/ createComponent({
|
|
528
600
|
tagName: 'ix-flip-tile-content',
|
|
529
601
|
properties: { contentVisible: 'content-visible' },
|
|
530
602
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
531
|
-
|
|
603
|
+
clientModule: clientComponents.IxFlipTileContent,
|
|
604
|
+
serializeShadowRoot,
|
|
532
605
|
});
|
|
533
606
|
const IxGroup = /*@__PURE__*/ createComponent({
|
|
534
607
|
tagName: 'ix-group',
|
|
@@ -536,33 +609,38 @@ const IxGroup = /*@__PURE__*/ createComponent({
|
|
|
536
609
|
suppressHeaderSelection: 'suppress-header-selection',
|
|
537
610
|
header: 'header',
|
|
538
611
|
subHeader: 'sub-header',
|
|
539
|
-
|
|
612
|
+
expanded: 'expanded',
|
|
540
613
|
selected: 'selected',
|
|
541
614
|
index: 'index',
|
|
542
615
|
expandOnHeaderClick: 'expand-on-header-click'
|
|
543
616
|
},
|
|
544
617
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
545
|
-
|
|
618
|
+
clientModule: clientComponents.IxGroup,
|
|
619
|
+
serializeShadowRoot,
|
|
546
620
|
});
|
|
547
621
|
const IxGroupContextMenu = /*@__PURE__*/ createComponent({
|
|
548
622
|
tagName: 'ix-group-context-menu',
|
|
549
623
|
properties: {},
|
|
550
624
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
551
|
-
|
|
625
|
+
clientModule: clientComponents.IxGroupContextMenu,
|
|
626
|
+
serializeShadowRoot,
|
|
552
627
|
});
|
|
553
628
|
const IxGroupItem = /*@__PURE__*/ createComponent({
|
|
554
629
|
tagName: 'ix-group-item',
|
|
555
630
|
properties: {
|
|
556
631
|
icon: 'icon',
|
|
632
|
+
ariaLabelIcon: 'aria-label-icon',
|
|
557
633
|
text: 'text',
|
|
558
634
|
secondaryText: 'secondary-text',
|
|
559
635
|
suppressSelection: 'suppress-selection',
|
|
636
|
+
groupFooter: 'group-footer',
|
|
560
637
|
selected: 'selected',
|
|
561
|
-
|
|
638
|
+
disabled: 'disabled',
|
|
562
639
|
index: 'index'
|
|
563
640
|
},
|
|
564
641
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
565
|
-
|
|
642
|
+
clientModule: clientComponents.IxGroupItem,
|
|
643
|
+
serializeShadowRoot,
|
|
566
644
|
});
|
|
567
645
|
const IxHelperText = /*@__PURE__*/ createComponent({
|
|
568
646
|
tagName: 'ix-helper-text',
|
|
@@ -575,15 +653,14 @@ const IxHelperText = /*@__PURE__*/ createComponent({
|
|
|
575
653
|
warningText: 'warning-text'
|
|
576
654
|
},
|
|
577
655
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
578
|
-
|
|
656
|
+
clientModule: clientComponents.IxHelperText,
|
|
657
|
+
serializeShadowRoot,
|
|
579
658
|
});
|
|
580
659
|
const IxIconButton = /*@__PURE__*/ createComponent({
|
|
581
660
|
tagName: 'ix-icon-button',
|
|
582
661
|
properties: {
|
|
583
662
|
a11yLabel: 'a11y-label',
|
|
584
663
|
variant: 'variant',
|
|
585
|
-
outline: 'outline',
|
|
586
|
-
ghost: 'ghost',
|
|
587
664
|
oval: 'oval',
|
|
588
665
|
icon: 'icon',
|
|
589
666
|
size: 'size',
|
|
@@ -593,7 +670,8 @@ const IxIconButton = /*@__PURE__*/ createComponent({
|
|
|
593
670
|
loading: 'loading'
|
|
594
671
|
},
|
|
595
672
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
596
|
-
|
|
673
|
+
clientModule: clientComponents.IxIconButton,
|
|
674
|
+
serializeShadowRoot,
|
|
597
675
|
});
|
|
598
676
|
const IxIconToggleButton = /*@__PURE__*/ createComponent({
|
|
599
677
|
tagName: 'ix-icon-toggle-button',
|
|
@@ -606,10 +684,12 @@ const IxIconToggleButton = /*@__PURE__*/ createComponent({
|
|
|
606
684
|
pressed: 'pressed',
|
|
607
685
|
size: 'size',
|
|
608
686
|
disabled: 'disabled',
|
|
609
|
-
loading: 'loading'
|
|
687
|
+
loading: 'loading',
|
|
688
|
+
ariaLabelIconButton: 'aria-label-icon-button'
|
|
610
689
|
},
|
|
611
690
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
612
|
-
|
|
691
|
+
clientModule: clientComponents.IxIconToggleButton,
|
|
692
|
+
serializeShadowRoot,
|
|
613
693
|
});
|
|
614
694
|
const IxInput = /*@__PURE__*/ createComponent({
|
|
615
695
|
tagName: 'ix-input',
|
|
@@ -634,48 +714,57 @@ const IxInput = /*@__PURE__*/ createComponent({
|
|
|
634
714
|
allowedCharactersPattern: 'allowed-characters-pattern'
|
|
635
715
|
},
|
|
636
716
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
637
|
-
|
|
717
|
+
clientModule: clientComponents.IxInput,
|
|
718
|
+
serializeShadowRoot,
|
|
638
719
|
});
|
|
639
720
|
const IxInputGroup = /*@__PURE__*/ createComponent({
|
|
640
721
|
tagName: 'ix-input-group',
|
|
641
722
|
properties: {},
|
|
642
723
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
643
|
-
|
|
724
|
+
clientModule: clientComponents.IxInputGroup,
|
|
725
|
+
serializeShadowRoot,
|
|
644
726
|
});
|
|
645
727
|
const IxKeyValue = /*@__PURE__*/ createComponent({
|
|
646
728
|
tagName: 'ix-key-value',
|
|
647
729
|
properties: {
|
|
648
730
|
icon: 'icon',
|
|
731
|
+
ariaLabelIcon: 'aria-label-icon',
|
|
649
732
|
label: 'label',
|
|
650
733
|
labelPosition: 'label-position',
|
|
651
734
|
value: 'value'
|
|
652
735
|
},
|
|
653
736
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
654
|
-
|
|
737
|
+
clientModule: clientComponents.IxKeyValue,
|
|
738
|
+
serializeShadowRoot,
|
|
655
739
|
});
|
|
656
740
|
const IxKeyValueList = /*@__PURE__*/ createComponent({
|
|
657
741
|
tagName: 'ix-key-value-list',
|
|
658
742
|
properties: { striped: 'striped' },
|
|
659
743
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
660
|
-
|
|
744
|
+
clientModule: clientComponents.IxKeyValueList,
|
|
745
|
+
serializeShadowRoot,
|
|
661
746
|
});
|
|
662
747
|
const IxKpi = /*@__PURE__*/ createComponent({
|
|
663
748
|
tagName: 'ix-kpi',
|
|
664
749
|
properties: {
|
|
665
750
|
label: 'label',
|
|
751
|
+
ariaLabelAlarmIcon: 'aria-label-alarm-icon',
|
|
752
|
+
ariaLabelWarningIcon: 'aria-label-warning-icon',
|
|
666
753
|
value: 'value',
|
|
667
754
|
unit: 'unit',
|
|
668
755
|
state: 'state',
|
|
669
756
|
orientation: 'orientation'
|
|
670
757
|
},
|
|
671
758
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
672
|
-
|
|
759
|
+
clientModule: clientComponents.IxKpi,
|
|
760
|
+
serializeShadowRoot,
|
|
673
761
|
});
|
|
674
762
|
const IxLayoutAuto = /*@__PURE__*/ createComponent({
|
|
675
763
|
tagName: 'ix-layout-auto',
|
|
676
764
|
properties: { layout: 'layout' },
|
|
677
765
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
678
|
-
|
|
766
|
+
clientModule: clientComponents.IxLayoutAuto,
|
|
767
|
+
serializeShadowRoot,
|
|
679
768
|
});
|
|
680
769
|
const IxLayoutGrid = /*@__PURE__*/ createComponent({
|
|
681
770
|
tagName: 'ix-layout-grid',
|
|
@@ -685,7 +774,8 @@ const IxLayoutGrid = /*@__PURE__*/ createComponent({
|
|
|
685
774
|
columns: 'columns'
|
|
686
775
|
},
|
|
687
776
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
688
|
-
|
|
777
|
+
clientModule: clientComponents.IxLayoutGrid,
|
|
778
|
+
serializeShadowRoot,
|
|
689
779
|
});
|
|
690
780
|
const IxLinkButton = /*@__PURE__*/ createComponent({
|
|
691
781
|
tagName: 'ix-link-button',
|
|
@@ -695,28 +785,8 @@ const IxLinkButton = /*@__PURE__*/ createComponent({
|
|
|
695
785
|
target: 'target'
|
|
696
786
|
},
|
|
697
787
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
const IxMapNavigation = /*@__PURE__*/ createComponent({
|
|
701
|
-
tagName: 'ix-map-navigation',
|
|
702
|
-
properties: {
|
|
703
|
-
applicationName: 'application-name',
|
|
704
|
-
navigationTitle: 'navigation-title',
|
|
705
|
-
hideContextMenu: 'hide-context-menu'
|
|
706
|
-
},
|
|
707
|
-
hydrateModule: import('@siemens/ix/hydrate'),
|
|
708
|
-
serializeShadowRoot
|
|
709
|
-
});
|
|
710
|
-
const IxMapNavigationOverlay = /*@__PURE__*/ createComponent({
|
|
711
|
-
tagName: 'ix-map-navigation-overlay',
|
|
712
|
-
properties: {
|
|
713
|
-
name: 'name',
|
|
714
|
-
icon: 'icon',
|
|
715
|
-
color: 'color',
|
|
716
|
-
iconColor: 'icon-color'
|
|
717
|
-
},
|
|
718
|
-
hydrateModule: import('@siemens/ix/hydrate'),
|
|
719
|
-
serializeShadowRoot
|
|
788
|
+
clientModule: clientComponents.IxLinkButton,
|
|
789
|
+
serializeShadowRoot,
|
|
720
790
|
});
|
|
721
791
|
const IxMenu = /*@__PURE__*/ createComponent({
|
|
722
792
|
tagName: 'ix-menu',
|
|
@@ -724,22 +794,22 @@ const IxMenu = /*@__PURE__*/ createComponent({
|
|
|
724
794
|
showSettings: 'show-settings',
|
|
725
795
|
showAbout: 'show-about',
|
|
726
796
|
enableToggleTheme: 'enable-toggle-theme',
|
|
727
|
-
enableSettings: 'enable-settings',
|
|
728
797
|
enableMapExpand: 'enable-map-expand',
|
|
729
798
|
applicationName: 'application-name',
|
|
730
799
|
applicationDescription: 'application-description',
|
|
731
|
-
i18nExpandSidebar: '
|
|
800
|
+
i18nExpandSidebar: 'i18n-expand-sidebar',
|
|
732
801
|
expand: 'expand',
|
|
733
802
|
startExpanded: 'start-expanded',
|
|
734
803
|
pinned: 'pinned',
|
|
735
|
-
i18nLegal: '
|
|
736
|
-
i18nSettings: '
|
|
737
|
-
i18nToggleTheme: '
|
|
738
|
-
i18nExpand: '
|
|
739
|
-
i18nCollapse: '
|
|
804
|
+
i18nLegal: 'i18n-legal',
|
|
805
|
+
i18nSettings: 'i18n-settings',
|
|
806
|
+
i18nToggleTheme: 'i18n-toggle-theme',
|
|
807
|
+
i18nExpand: 'i18n-expand',
|
|
808
|
+
i18nCollapse: 'i18n-collapse'
|
|
740
809
|
},
|
|
741
810
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
742
|
-
|
|
811
|
+
clientModule: clientComponents.IxMenu,
|
|
812
|
+
serializeShadowRoot,
|
|
743
813
|
});
|
|
744
814
|
const IxMenuAbout = /*@__PURE__*/ createComponent({
|
|
745
815
|
tagName: 'ix-menu-about',
|
|
@@ -749,26 +819,28 @@ const IxMenuAbout = /*@__PURE__*/ createComponent({
|
|
|
749
819
|
show: 'show'
|
|
750
820
|
},
|
|
751
821
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
752
|
-
|
|
822
|
+
clientModule: clientComponents.IxMenuAbout,
|
|
823
|
+
serializeShadowRoot,
|
|
753
824
|
});
|
|
754
825
|
const IxMenuAboutItem = /*@__PURE__*/ createComponent({
|
|
755
826
|
tagName: 'ix-menu-about-item',
|
|
756
827
|
properties: { label: 'label' },
|
|
757
828
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
758
|
-
|
|
829
|
+
clientModule: clientComponents.IxMenuAboutItem,
|
|
830
|
+
serializeShadowRoot,
|
|
759
831
|
});
|
|
760
832
|
const IxMenuAboutNews = /*@__PURE__*/ createComponent({
|
|
761
833
|
tagName: 'ix-menu-about-news',
|
|
762
834
|
properties: {
|
|
763
835
|
show: 'show',
|
|
764
836
|
label: 'label',
|
|
765
|
-
i18nShowMore: '
|
|
837
|
+
i18nShowMore: 'i18n-show-more',
|
|
766
838
|
aboutItemLabel: 'about-item-label',
|
|
767
|
-
offsetBottom: 'offset-bottom',
|
|
768
839
|
expanded: 'expanded'
|
|
769
840
|
},
|
|
770
841
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
771
|
-
|
|
842
|
+
clientModule: clientComponents.IxMenuAboutNews,
|
|
843
|
+
serializeShadowRoot,
|
|
772
844
|
});
|
|
773
845
|
const IxMenuAvatar = /*@__PURE__*/ createComponent({
|
|
774
846
|
tagName: 'ix-menu-avatar',
|
|
@@ -777,11 +849,12 @@ const IxMenuAvatar = /*@__PURE__*/ createComponent({
|
|
|
777
849
|
bottom: 'bottom',
|
|
778
850
|
image: 'image',
|
|
779
851
|
initials: 'initials',
|
|
780
|
-
i18nLogout: '
|
|
781
|
-
|
|
852
|
+
i18nLogout: 'i18n-logout',
|
|
853
|
+
hideLogoutButton: 'hide-logout-button'
|
|
782
854
|
},
|
|
783
855
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
784
|
-
|
|
856
|
+
clientModule: clientComponents.IxMenuAvatar,
|
|
857
|
+
serializeShadowRoot,
|
|
785
858
|
});
|
|
786
859
|
const IxMenuAvatarItem = /*@__PURE__*/ createComponent({
|
|
787
860
|
tagName: 'ix-menu-avatar-item',
|
|
@@ -790,17 +863,20 @@ const IxMenuAvatarItem = /*@__PURE__*/ createComponent({
|
|
|
790
863
|
label: 'label'
|
|
791
864
|
},
|
|
792
865
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
793
|
-
|
|
866
|
+
clientModule: clientComponents.IxMenuAvatarItem,
|
|
867
|
+
serializeShadowRoot,
|
|
794
868
|
});
|
|
795
869
|
const IxMenuCategory = /*@__PURE__*/ createComponent({
|
|
796
870
|
tagName: 'ix-menu-category',
|
|
797
871
|
properties: {
|
|
798
872
|
label: 'label',
|
|
799
873
|
icon: 'icon',
|
|
800
|
-
notifications: 'notifications'
|
|
874
|
+
notifications: 'notifications',
|
|
875
|
+
tooltipText: 'tooltip-text'
|
|
801
876
|
},
|
|
802
877
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
803
|
-
|
|
878
|
+
clientModule: clientComponents.IxMenuCategory,
|
|
879
|
+
serializeShadowRoot,
|
|
804
880
|
});
|
|
805
881
|
const IxMenuItem = /*@__PURE__*/ createComponent({
|
|
806
882
|
tagName: 'ix-menu-item',
|
|
@@ -812,10 +888,15 @@ const IxMenuItem = /*@__PURE__*/ createComponent({
|
|
|
812
888
|
notifications: 'notifications',
|
|
813
889
|
active: 'active',
|
|
814
890
|
disabled: 'disabled',
|
|
891
|
+
tooltipText: 'tooltip-text',
|
|
892
|
+
href: 'href',
|
|
893
|
+
target: 'target',
|
|
894
|
+
rel: 'rel',
|
|
815
895
|
isCategory: 'is-category'
|
|
816
896
|
},
|
|
817
897
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
818
|
-
|
|
898
|
+
clientModule: clientComponents.IxMenuItem,
|
|
899
|
+
serializeShadowRoot,
|
|
819
900
|
});
|
|
820
901
|
const IxMenuSettings = /*@__PURE__*/ createComponent({
|
|
821
902
|
tagName: 'ix-menu-settings',
|
|
@@ -825,58 +906,67 @@ const IxMenuSettings = /*@__PURE__*/ createComponent({
|
|
|
825
906
|
show: 'show'
|
|
826
907
|
},
|
|
827
908
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
828
|
-
|
|
909
|
+
clientModule: clientComponents.IxMenuSettings,
|
|
910
|
+
serializeShadowRoot,
|
|
829
911
|
});
|
|
830
912
|
const IxMenuSettingsItem = /*@__PURE__*/ createComponent({
|
|
831
913
|
tagName: 'ix-menu-settings-item',
|
|
832
914
|
properties: { label: 'label' },
|
|
833
915
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
834
|
-
|
|
916
|
+
clientModule: clientComponents.IxMenuSettingsItem,
|
|
917
|
+
serializeShadowRoot,
|
|
835
918
|
});
|
|
836
919
|
const IxMessageBar = /*@__PURE__*/ createComponent({
|
|
837
920
|
tagName: 'ix-message-bar',
|
|
838
921
|
properties: {
|
|
839
922
|
type: 'type',
|
|
840
|
-
|
|
923
|
+
persistent: 'persistent'
|
|
841
924
|
},
|
|
842
925
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
843
|
-
|
|
926
|
+
clientModule: clientComponents.IxMessageBar,
|
|
927
|
+
serializeShadowRoot,
|
|
844
928
|
});
|
|
845
929
|
const IxModal = /*@__PURE__*/ createComponent({
|
|
846
930
|
tagName: 'ix-modal',
|
|
847
931
|
properties: {
|
|
848
932
|
size: 'size',
|
|
849
|
-
|
|
850
|
-
|
|
933
|
+
disableAnimation: 'disable-animation',
|
|
934
|
+
hideBackdrop: 'hide-backdrop',
|
|
851
935
|
closeOnBackdropClick: 'close-on-backdrop-click',
|
|
852
936
|
beforeDismiss: 'before-dismiss',
|
|
853
937
|
centered: 'centered',
|
|
854
|
-
|
|
938
|
+
disableEscapeClose: 'disable-escape-close'
|
|
855
939
|
},
|
|
856
940
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
857
|
-
|
|
941
|
+
clientModule: clientComponents.IxModal,
|
|
942
|
+
serializeShadowRoot,
|
|
858
943
|
});
|
|
859
944
|
const IxModalContent = /*@__PURE__*/ createComponent({
|
|
860
945
|
tagName: 'ix-modal-content',
|
|
861
946
|
properties: {},
|
|
862
947
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
863
|
-
|
|
948
|
+
clientModule: clientComponents.IxModalContent,
|
|
949
|
+
serializeShadowRoot,
|
|
864
950
|
});
|
|
865
951
|
const IxModalFooter = /*@__PURE__*/ createComponent({
|
|
866
952
|
tagName: 'ix-modal-footer',
|
|
867
953
|
properties: {},
|
|
868
954
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
869
|
-
|
|
955
|
+
clientModule: clientComponents.IxModalFooter,
|
|
956
|
+
serializeShadowRoot,
|
|
870
957
|
});
|
|
871
958
|
const IxModalHeader = /*@__PURE__*/ createComponent({
|
|
872
959
|
tagName: 'ix-modal-header',
|
|
873
960
|
properties: {
|
|
874
961
|
hideClose: 'hide-close',
|
|
875
962
|
icon: 'icon',
|
|
963
|
+
ariaLabelIcon: 'aria-label-icon',
|
|
964
|
+
ariaLabelCloseIconButton: 'aria-label-close-icon-button',
|
|
876
965
|
iconColor: 'icon-color'
|
|
877
966
|
},
|
|
878
967
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
879
|
-
|
|
968
|
+
clientModule: clientComponents.IxModalHeader,
|
|
969
|
+
serializeShadowRoot,
|
|
880
970
|
});
|
|
881
971
|
const IxNumberInput = /*@__PURE__*/ createComponent({
|
|
882
972
|
tagName: 'ix-number-input',
|
|
@@ -902,22 +992,26 @@ const IxNumberInput = /*@__PURE__*/ createComponent({
|
|
|
902
992
|
step: 'step'
|
|
903
993
|
},
|
|
904
994
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
905
|
-
|
|
995
|
+
clientModule: clientComponents.IxNumberInput,
|
|
996
|
+
serializeShadowRoot,
|
|
906
997
|
});
|
|
907
998
|
const IxPagination = /*@__PURE__*/ createComponent({
|
|
908
999
|
tagName: 'ix-pagination',
|
|
909
1000
|
properties: {
|
|
910
1001
|
advanced: 'advanced',
|
|
911
1002
|
itemCount: 'item-count',
|
|
912
|
-
|
|
1003
|
+
hideItemCount: 'hide-item-count',
|
|
913
1004
|
count: 'count',
|
|
914
1005
|
selectedPage: 'selected-page',
|
|
915
|
-
i18nPage: '
|
|
916
|
-
i18nOf: '
|
|
917
|
-
i18nItems: '
|
|
1006
|
+
i18nPage: 'i18n-page',
|
|
1007
|
+
i18nOf: 'i18n-of',
|
|
1008
|
+
i18nItems: 'i18n-items',
|
|
1009
|
+
ariaLabelChevronLeftIconButton: 'aria-label-chevron-left-icon-button',
|
|
1010
|
+
ariaLabelChevronRightIconButton: 'aria-label-chevron-right-icon-button'
|
|
918
1011
|
},
|
|
919
1012
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
920
|
-
|
|
1013
|
+
clientModule: clientComponents.IxPagination,
|
|
1014
|
+
serializeShadowRoot,
|
|
921
1015
|
});
|
|
922
1016
|
const IxPane = /*@__PURE__*/ createComponent({
|
|
923
1017
|
tagName: 'ix-pane',
|
|
@@ -930,11 +1024,15 @@ const IxPane = /*@__PURE__*/ createComponent({
|
|
|
930
1024
|
expanded: 'expanded',
|
|
931
1025
|
composition: 'composition',
|
|
932
1026
|
icon: 'icon',
|
|
1027
|
+
closeOnClickOutside: 'close-on-click-outside',
|
|
1028
|
+
ariaLabelIcon: 'aria-label-icon',
|
|
1029
|
+
ariaLabelCollapseCloseButton: 'aria-label-collapse-close-button',
|
|
933
1030
|
ignoreLayoutSettings: 'ignore-layout-settings',
|
|
934
1031
|
isMobile: 'is-mobile'
|
|
935
1032
|
},
|
|
936
1033
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
937
|
-
|
|
1034
|
+
clientModule: clientComponents.IxPane,
|
|
1035
|
+
serializeShadowRoot,
|
|
938
1036
|
});
|
|
939
1037
|
const IxPaneLayout = /*@__PURE__*/ createComponent({
|
|
940
1038
|
tagName: 'ix-pane-layout',
|
|
@@ -944,7 +1042,8 @@ const IxPaneLayout = /*@__PURE__*/ createComponent({
|
|
|
944
1042
|
borderless: 'borderless'
|
|
945
1043
|
},
|
|
946
1044
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
947
|
-
|
|
1045
|
+
clientModule: clientComponents.IxPaneLayout,
|
|
1046
|
+
serializeShadowRoot,
|
|
948
1047
|
});
|
|
949
1048
|
const IxPill = /*@__PURE__*/ createComponent({
|
|
950
1049
|
tagName: 'ix-pill',
|
|
@@ -952,26 +1051,48 @@ const IxPill = /*@__PURE__*/ createComponent({
|
|
|
952
1051
|
variant: 'variant',
|
|
953
1052
|
outline: 'outline',
|
|
954
1053
|
icon: 'icon',
|
|
1054
|
+
ariaLabelIcon: 'aria-label-icon',
|
|
955
1055
|
background: 'background',
|
|
956
1056
|
pillColor: 'pill-color',
|
|
957
1057
|
alignLeft: 'align-left',
|
|
958
1058
|
tooltipText: 'tooltip-text'
|
|
959
1059
|
},
|
|
960
1060
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
961
|
-
|
|
1061
|
+
clientModule: clientComponents.IxPill,
|
|
1062
|
+
serializeShadowRoot,
|
|
1063
|
+
});
|
|
1064
|
+
const IxProgressIndicator = /*@__PURE__*/ createComponent({
|
|
1065
|
+
tagName: 'ix-progress-indicator',
|
|
1066
|
+
properties: {
|
|
1067
|
+
type: 'type',
|
|
1068
|
+
size: 'size',
|
|
1069
|
+
value: 'value',
|
|
1070
|
+
min: 'min',
|
|
1071
|
+
max: 'max',
|
|
1072
|
+
status: 'status',
|
|
1073
|
+
label: 'label',
|
|
1074
|
+
helperText: 'helper-text',
|
|
1075
|
+
textAlignment: 'text-alignment',
|
|
1076
|
+
showTextAsTooltip: 'show-text-as-tooltip'
|
|
1077
|
+
},
|
|
1078
|
+
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1079
|
+
clientModule: clientComponents.IxProgressIndicator,
|
|
1080
|
+
serializeShadowRoot,
|
|
962
1081
|
});
|
|
963
1082
|
const IxPushCard = /*@__PURE__*/ createComponent({
|
|
964
1083
|
tagName: 'ix-push-card',
|
|
965
1084
|
properties: {
|
|
966
1085
|
icon: 'icon',
|
|
1086
|
+
ariaLabelIcon: 'aria-label-icon',
|
|
967
1087
|
notification: 'notification',
|
|
968
1088
|
heading: 'heading',
|
|
969
1089
|
subheading: 'subheading',
|
|
970
1090
|
variant: 'variant',
|
|
971
|
-
|
|
1091
|
+
expanded: 'expanded'
|
|
972
1092
|
},
|
|
973
1093
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
974
|
-
|
|
1094
|
+
clientModule: clientComponents.IxPushCard,
|
|
1095
|
+
serializeShadowRoot,
|
|
975
1096
|
});
|
|
976
1097
|
const IxRadio = /*@__PURE__*/ createComponent({
|
|
977
1098
|
tagName: 'ix-radio',
|
|
@@ -984,7 +1105,8 @@ const IxRadio = /*@__PURE__*/ createComponent({
|
|
|
984
1105
|
required: 'required'
|
|
985
1106
|
},
|
|
986
1107
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
987
|
-
|
|
1108
|
+
clientModule: clientComponents.IxRadio,
|
|
1109
|
+
serializeShadowRoot,
|
|
988
1110
|
});
|
|
989
1111
|
const IxRadioGroup = /*@__PURE__*/ createComponent({
|
|
990
1112
|
tagName: 'ix-radio-group',
|
|
@@ -1001,13 +1123,15 @@ const IxRadioGroup = /*@__PURE__*/ createComponent({
|
|
|
1001
1123
|
required: 'required'
|
|
1002
1124
|
},
|
|
1003
1125
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1004
|
-
|
|
1126
|
+
clientModule: clientComponents.IxRadioGroup,
|
|
1127
|
+
serializeShadowRoot,
|
|
1005
1128
|
});
|
|
1006
1129
|
const IxRow = /*@__PURE__*/ createComponent({
|
|
1007
1130
|
tagName: 'ix-row',
|
|
1008
1131
|
properties: {},
|
|
1009
1132
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1010
|
-
|
|
1133
|
+
clientModule: clientComponents.IxRow,
|
|
1134
|
+
serializeShadowRoot,
|
|
1011
1135
|
});
|
|
1012
1136
|
const IxSelect = /*@__PURE__*/ createComponent({
|
|
1013
1137
|
tagName: 'ix-select',
|
|
@@ -1015,6 +1139,8 @@ const IxSelect = /*@__PURE__*/ createComponent({
|
|
|
1015
1139
|
name: 'name',
|
|
1016
1140
|
required: 'required',
|
|
1017
1141
|
label: 'label',
|
|
1142
|
+
ariaLabelChevronDownIconButton: 'aria-label-chevron-down-icon-button',
|
|
1143
|
+
ariaLabelClearIconButton: 'aria-label-clear-icon-button',
|
|
1018
1144
|
warningText: 'warning-text',
|
|
1019
1145
|
infoText: 'info-text',
|
|
1020
1146
|
invalidText: 'invalid-text',
|
|
@@ -1027,16 +1153,17 @@ const IxSelect = /*@__PURE__*/ createComponent({
|
|
|
1027
1153
|
editable: 'editable',
|
|
1028
1154
|
disabled: 'disabled',
|
|
1029
1155
|
readonly: 'readonly',
|
|
1030
|
-
i18nPlaceholder: '
|
|
1031
|
-
i18nPlaceholderEditable: '
|
|
1032
|
-
i18nSelectListHeader: '
|
|
1033
|
-
i18nNoMatches: '
|
|
1156
|
+
i18nPlaceholder: 'i18n-placeholder',
|
|
1157
|
+
i18nPlaceholderEditable: 'i18n-placeholder-editable',
|
|
1158
|
+
i18nSelectListHeader: 'i18n-select-list-header',
|
|
1159
|
+
i18nNoMatches: 'i18n-no-matches',
|
|
1034
1160
|
hideListHeader: 'hide-list-header',
|
|
1035
1161
|
dropdownWidth: 'dropdown-width',
|
|
1036
1162
|
dropdownMaxWidth: 'dropdown-max-width'
|
|
1037
1163
|
},
|
|
1038
1164
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1039
|
-
|
|
1165
|
+
clientModule: clientComponents.IxSelect,
|
|
1166
|
+
serializeShadowRoot,
|
|
1040
1167
|
});
|
|
1041
1168
|
const IxSelectItem = /*@__PURE__*/ createComponent({
|
|
1042
1169
|
tagName: 'ix-select-item',
|
|
@@ -1047,7 +1174,8 @@ const IxSelectItem = /*@__PURE__*/ createComponent({
|
|
|
1047
1174
|
hover: 'hover'
|
|
1048
1175
|
},
|
|
1049
1176
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1050
|
-
|
|
1177
|
+
clientModule: clientComponents.IxSelectItem,
|
|
1178
|
+
serializeShadowRoot,
|
|
1051
1179
|
});
|
|
1052
1180
|
const IxSlider = /*@__PURE__*/ createComponent({
|
|
1053
1181
|
tagName: 'ix-slider',
|
|
@@ -1063,7 +1191,8 @@ const IxSlider = /*@__PURE__*/ createComponent({
|
|
|
1063
1191
|
error: 'error'
|
|
1064
1192
|
},
|
|
1065
1193
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1066
|
-
|
|
1194
|
+
clientModule: clientComponents.IxSlider,
|
|
1195
|
+
serializeShadowRoot,
|
|
1067
1196
|
});
|
|
1068
1197
|
const IxSpinner = /*@__PURE__*/ createComponent({
|
|
1069
1198
|
tagName: 'ix-spinner',
|
|
@@ -1073,23 +1202,25 @@ const IxSpinner = /*@__PURE__*/ createComponent({
|
|
|
1073
1202
|
hideTrack: 'hide-track'
|
|
1074
1203
|
},
|
|
1075
1204
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1076
|
-
|
|
1205
|
+
clientModule: clientComponents.IxSpinner,
|
|
1206
|
+
serializeShadowRoot,
|
|
1077
1207
|
});
|
|
1078
1208
|
const IxSplitButton = /*@__PURE__*/ createComponent({
|
|
1079
1209
|
tagName: 'ix-split-button',
|
|
1080
1210
|
properties: {
|
|
1081
1211
|
variant: 'variant',
|
|
1082
1212
|
closeBehavior: 'close-behavior',
|
|
1083
|
-
outline: 'outline',
|
|
1084
|
-
ghost: 'ghost',
|
|
1085
1213
|
label: 'label',
|
|
1214
|
+
ariaLabelButton: 'aria-label-button',
|
|
1086
1215
|
icon: 'icon',
|
|
1087
1216
|
splitIcon: 'split-icon',
|
|
1217
|
+
ariaLabelSplitIconButton: 'aria-label-split-icon-button',
|
|
1088
1218
|
disabled: 'disabled',
|
|
1089
1219
|
placement: 'placement'
|
|
1090
1220
|
},
|
|
1091
1221
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1092
|
-
|
|
1222
|
+
clientModule: clientComponents.IxSplitButton,
|
|
1223
|
+
serializeShadowRoot,
|
|
1093
1224
|
});
|
|
1094
1225
|
const IxTabItem = /*@__PURE__*/ createComponent({
|
|
1095
1226
|
tagName: 'ix-tab-item',
|
|
@@ -1104,7 +1235,8 @@ const IxTabItem = /*@__PURE__*/ createComponent({
|
|
|
1104
1235
|
placement: 'placement'
|
|
1105
1236
|
},
|
|
1106
1237
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1107
|
-
|
|
1238
|
+
clientModule: clientComponents.IxTabItem,
|
|
1239
|
+
serializeShadowRoot,
|
|
1108
1240
|
});
|
|
1109
1241
|
const IxTabs = /*@__PURE__*/ createComponent({
|
|
1110
1242
|
tagName: 'ix-tabs',
|
|
@@ -1113,10 +1245,13 @@ const IxTabs = /*@__PURE__*/ createComponent({
|
|
|
1113
1245
|
rounded: 'rounded',
|
|
1114
1246
|
selected: 'selected',
|
|
1115
1247
|
layout: 'layout',
|
|
1116
|
-
placement: 'placement'
|
|
1248
|
+
placement: 'placement',
|
|
1249
|
+
ariaLabelChevronLeftIconButton: 'aria-label-chevron-left-icon-button',
|
|
1250
|
+
ariaLabelChevronRightIconButton: 'aria-label-chevron-right-icon-button'
|
|
1117
1251
|
},
|
|
1118
1252
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1119
|
-
|
|
1253
|
+
clientModule: clientComponents.IxTabs,
|
|
1254
|
+
serializeShadowRoot,
|
|
1120
1255
|
});
|
|
1121
1256
|
const IxTextarea = /*@__PURE__*/ createComponent({
|
|
1122
1257
|
tagName: 'ix-textarea',
|
|
@@ -1143,30 +1278,73 @@ const IxTextarea = /*@__PURE__*/ createComponent({
|
|
|
1143
1278
|
minLength: 'min-length'
|
|
1144
1279
|
},
|
|
1145
1280
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1146
|
-
|
|
1281
|
+
clientModule: clientComponents.IxTextarea,
|
|
1282
|
+
serializeShadowRoot,
|
|
1147
1283
|
});
|
|
1148
1284
|
const IxTile = /*@__PURE__*/ createComponent({
|
|
1149
1285
|
tagName: 'ix-tile',
|
|
1150
1286
|
properties: { size: 'size' },
|
|
1151
1287
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1152
|
-
|
|
1288
|
+
clientModule: clientComponents.IxTile,
|
|
1289
|
+
serializeShadowRoot,
|
|
1290
|
+
});
|
|
1291
|
+
const IxTimeInput = /*@__PURE__*/ createComponent({
|
|
1292
|
+
tagName: 'ix-time-input',
|
|
1293
|
+
properties: {
|
|
1294
|
+
name: 'name',
|
|
1295
|
+
placeholder: 'placeholder',
|
|
1296
|
+
value: 'value',
|
|
1297
|
+
format: 'format',
|
|
1298
|
+
required: 'required',
|
|
1299
|
+
helperText: 'helper-text',
|
|
1300
|
+
label: 'label',
|
|
1301
|
+
invalidText: 'invalid-text',
|
|
1302
|
+
readonly: 'readonly',
|
|
1303
|
+
disabled: 'disabled',
|
|
1304
|
+
infoText: 'info-text',
|
|
1305
|
+
warningText: 'warning-text',
|
|
1306
|
+
validText: 'valid-text',
|
|
1307
|
+
showTextAsTooltip: 'show-text-as-tooltip',
|
|
1308
|
+
i18nErrorTimeUnparsable: 'i18n-error-time-unparsable',
|
|
1309
|
+
hourInterval: 'hour-interval',
|
|
1310
|
+
minuteInterval: 'minute-interval',
|
|
1311
|
+
secondInterval: 'second-interval',
|
|
1312
|
+
millisecondInterval: 'millisecond-interval',
|
|
1313
|
+
i18nSelectTime: 'i18n-select-time',
|
|
1314
|
+
i18nTime: 'i18n-time',
|
|
1315
|
+
i18nHourColumnHeader: 'i18n-hour-column-header',
|
|
1316
|
+
i18nMinuteColumnHeader: 'i18n-minute-column-header',
|
|
1317
|
+
i18nSecondColumnHeader: 'i18n-second-column-header',
|
|
1318
|
+
i18nMillisecondColumnHeader: 'i18n-millisecond-column-header',
|
|
1319
|
+
hideHeader: 'hide-header'
|
|
1320
|
+
},
|
|
1321
|
+
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1322
|
+
clientModule: clientComponents.IxTimeInput,
|
|
1323
|
+
serializeShadowRoot,
|
|
1153
1324
|
});
|
|
1154
1325
|
const IxTimePicker = /*@__PURE__*/ createComponent({
|
|
1155
1326
|
tagName: 'ix-time-picker',
|
|
1156
1327
|
properties: {
|
|
1157
1328
|
format: 'format',
|
|
1158
1329
|
corners: 'corners',
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1330
|
+
embedded: 'embedded',
|
|
1331
|
+
dateTimePickerAppearance: 'date-time-picker-appearance',
|
|
1332
|
+
hideHeader: 'hide-header',
|
|
1333
|
+
hourInterval: 'hour-interval',
|
|
1334
|
+
minuteInterval: 'minute-interval',
|
|
1335
|
+
secondInterval: 'second-interval',
|
|
1336
|
+
millisecondInterval: 'millisecond-interval',
|
|
1163
1337
|
time: 'time',
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1338
|
+
i18nConfirmTime: 'i18n-confirm-time',
|
|
1339
|
+
i18nHeader: 'i18n-header',
|
|
1340
|
+
i18nHourColumnHeader: 'i18n-column-header',
|
|
1341
|
+
i18nMinuteColumnHeader: 'i18n-minute-column-header',
|
|
1342
|
+
i18nSecondColumnHeader: 'i18n-second-column-header',
|
|
1343
|
+
i18nMillisecondColumnHeader: 'i18n-millisecond-column-header'
|
|
1167
1344
|
},
|
|
1168
1345
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1169
|
-
|
|
1346
|
+
clientModule: clientComponents.IxTimePicker,
|
|
1347
|
+
serializeShadowRoot,
|
|
1170
1348
|
});
|
|
1171
1349
|
const IxToast = /*@__PURE__*/ createComponent({
|
|
1172
1350
|
tagName: 'ix-toast',
|
|
@@ -1174,12 +1352,14 @@ const IxToast = /*@__PURE__*/ createComponent({
|
|
|
1174
1352
|
type: 'type',
|
|
1175
1353
|
toastTitle: 'toast-title',
|
|
1176
1354
|
autoCloseDelay: 'auto-close-delay',
|
|
1177
|
-
|
|
1355
|
+
preventAutoClose: 'prevent-auto-close',
|
|
1178
1356
|
icon: 'icon',
|
|
1179
|
-
iconColor: 'icon-color'
|
|
1357
|
+
iconColor: 'icon-color',
|
|
1358
|
+
ariaLabelCloseIconButton: 'aria-label-close-icon-button'
|
|
1180
1359
|
},
|
|
1181
1360
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1182
|
-
|
|
1361
|
+
clientModule: clientComponents.IxToast,
|
|
1362
|
+
serializeShadowRoot,
|
|
1183
1363
|
});
|
|
1184
1364
|
const IxToastContainer = /*@__PURE__*/ createComponent({
|
|
1185
1365
|
tagName: 'ix-toast-container',
|
|
@@ -1189,7 +1369,8 @@ const IxToastContainer = /*@__PURE__*/ createComponent({
|
|
|
1189
1369
|
position: 'position'
|
|
1190
1370
|
},
|
|
1191
1371
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1192
|
-
|
|
1372
|
+
clientModule: clientComponents.IxToastContainer,
|
|
1373
|
+
serializeShadowRoot,
|
|
1193
1374
|
});
|
|
1194
1375
|
const IxToggle = /*@__PURE__*/ createComponent({
|
|
1195
1376
|
tagName: 'ix-toggle',
|
|
@@ -1206,21 +1387,23 @@ const IxToggle = /*@__PURE__*/ createComponent({
|
|
|
1206
1387
|
required: 'required'
|
|
1207
1388
|
},
|
|
1208
1389
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1209
|
-
|
|
1390
|
+
clientModule: clientComponents.IxToggle,
|
|
1391
|
+
serializeShadowRoot,
|
|
1210
1392
|
});
|
|
1211
1393
|
const IxToggleButton = /*@__PURE__*/ createComponent({
|
|
1212
1394
|
tagName: 'ix-toggle-button',
|
|
1213
1395
|
properties: {
|
|
1214
1396
|
variant: 'variant',
|
|
1215
|
-
outline: 'outline',
|
|
1216
|
-
ghost: 'ghost',
|
|
1217
1397
|
disabled: 'disabled',
|
|
1218
1398
|
loading: 'loading',
|
|
1219
1399
|
icon: 'icon',
|
|
1220
|
-
|
|
1400
|
+
iconRight: 'icon-right',
|
|
1401
|
+
pressed: 'pressed',
|
|
1402
|
+
ariaLabelButton: 'aria-label-button'
|
|
1221
1403
|
},
|
|
1222
1404
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1223
|
-
|
|
1405
|
+
clientModule: clientComponents.IxToggleButton,
|
|
1406
|
+
serializeShadowRoot,
|
|
1224
1407
|
});
|
|
1225
1408
|
const IxTooltip = /*@__PURE__*/ createComponent({
|
|
1226
1409
|
tagName: 'ix-tooltip',
|
|
@@ -1234,7 +1417,8 @@ const IxTooltip = /*@__PURE__*/ createComponent({
|
|
|
1234
1417
|
animationFrame: 'animation-frame'
|
|
1235
1418
|
},
|
|
1236
1419
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1237
|
-
|
|
1420
|
+
clientModule: clientComponents.IxTooltip,
|
|
1421
|
+
serializeShadowRoot,
|
|
1238
1422
|
});
|
|
1239
1423
|
const IxTypography = /*@__PURE__*/ createComponent({
|
|
1240
1424
|
tagName: 'ix-typography',
|
|
@@ -1245,7 +1429,8 @@ const IxTypography = /*@__PURE__*/ createComponent({
|
|
|
1245
1429
|
textDecoration: 'text-decoration'
|
|
1246
1430
|
},
|
|
1247
1431
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1248
|
-
|
|
1432
|
+
clientModule: clientComponents.IxTypography,
|
|
1433
|
+
serializeShadowRoot,
|
|
1249
1434
|
});
|
|
1250
1435
|
const IxUpload = /*@__PURE__*/ createComponent({
|
|
1251
1436
|
tagName: 'ix-upload',
|
|
@@ -1259,11 +1444,12 @@ const IxUpload = /*@__PURE__*/ createComponent({
|
|
|
1259
1444
|
loadingText: 'loading-text',
|
|
1260
1445
|
uploadFailedText: 'upload-failed-text',
|
|
1261
1446
|
uploadSuccessText: 'upload-success-text',
|
|
1262
|
-
i18nUploadFile: '
|
|
1263
|
-
i18nUploadDisabled: '
|
|
1447
|
+
i18nUploadFile: 'i18n-upload-file',
|
|
1448
|
+
i18nUploadDisabled: 'i18n-upload-disabled'
|
|
1264
1449
|
},
|
|
1265
1450
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1266
|
-
|
|
1451
|
+
clientModule: clientComponents.IxUpload,
|
|
1452
|
+
serializeShadowRoot,
|
|
1267
1453
|
});
|
|
1268
1454
|
const IxValidationTooltip = /*@__PURE__*/ createComponent({
|
|
1269
1455
|
tagName: 'ix-validation-tooltip',
|
|
@@ -1273,7 +1459,8 @@ const IxValidationTooltip = /*@__PURE__*/ createComponent({
|
|
|
1273
1459
|
suppressAutomaticPlacement: 'suppress-automatic-placement'
|
|
1274
1460
|
},
|
|
1275
1461
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1276
|
-
|
|
1462
|
+
clientModule: clientComponents.IxValidationTooltip,
|
|
1463
|
+
serializeShadowRoot,
|
|
1277
1464
|
});
|
|
1278
1465
|
const IxWorkflowStep = /*@__PURE__*/ createComponent({
|
|
1279
1466
|
tagName: 'ix-workflow-step',
|
|
@@ -1286,7 +1473,8 @@ const IxWorkflowStep = /*@__PURE__*/ createComponent({
|
|
|
1286
1473
|
position: 'position'
|
|
1287
1474
|
},
|
|
1288
1475
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1289
|
-
|
|
1476
|
+
clientModule: clientComponents.IxWorkflowStep,
|
|
1477
|
+
serializeShadowRoot,
|
|
1290
1478
|
});
|
|
1291
1479
|
const IxWorkflowSteps = /*@__PURE__*/ createComponent({
|
|
1292
1480
|
tagName: 'ix-workflow-steps',
|
|
@@ -1296,8 +1484,9 @@ const IxWorkflowSteps = /*@__PURE__*/ createComponent({
|
|
|
1296
1484
|
selectedIndex: 'selected-index'
|
|
1297
1485
|
},
|
|
1298
1486
|
hydrateModule: import('@siemens/ix/hydrate'),
|
|
1299
|
-
|
|
1487
|
+
clientModule: clientComponents.IxWorkflowSteps,
|
|
1488
|
+
serializeShadowRoot,
|
|
1300
1489
|
});
|
|
1301
1490
|
|
|
1302
|
-
export { IxActionCard, IxApplication, IxApplicationHeader, IxAvatar,
|
|
1491
|
+
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 };
|
|
1303
1492
|
//# sourceMappingURL=components.server.js.map
|