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