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