@siemens/ix-react 4.1.0 → 4.3.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.
@@ -17,7 +17,8 @@ const IxActionCard = /*@__PURE__*/ createComponent({
17
17
  heading: 'heading',
18
18
  subheading: 'subheading',
19
19
  selected: 'selected',
20
- ariaLabelCard: 'aria-label-card'
20
+ ariaLabelCard: 'aria-label-card',
21
+ passive: 'passive'
21
22
  },
22
23
  hydrateModule: import('@siemens/ix/hydrate'),
23
24
  clientModule: clientComponents.IxActionCard,
@@ -50,7 +51,8 @@ const IxApplicationHeader = /*@__PURE__*/ createComponent({
50
51
  showMenu: 'show-menu',
51
52
  ariaLabelMenuExpandIconButton: 'aria-label-menu-expand-icon-button',
52
53
  ariaLabelAppSwitchIconButton: 'aria-label-app-switch-icon-button',
53
- ariaLabelMoreMenuIconButton: 'aria-label-more-menu-icon-button'
54
+ ariaLabelMoreMenuIconButton: 'aria-label-more-menu-icon-button',
55
+ enableTopLayer: 'enable-top-layer'
54
56
  },
55
57
  hydrateModule: import('@siemens/ix/hydrate'),
56
58
  clientModule: clientComponents.IxApplicationHeader,
@@ -90,7 +92,8 @@ const IxBreadcrumb = /*@__PURE__*/ createComponent({
90
92
  visibleItemCount: 'visible-item-count',
91
93
  nextItems: 'next-items',
92
94
  subtle: 'subtle',
93
- ariaLabelPreviousButton: 'aria-label-previous-button'
95
+ ariaLabelPreviousButton: 'aria-label-previous-button',
96
+ enableTopLayer: 'enable-top-layer'
94
97
  },
95
98
  hydrateModule: import('@siemens/ix/hydrate'),
96
99
  clientModule: clientComponents.IxBreadcrumb,
@@ -139,7 +142,8 @@ const IxCard = /*@__PURE__*/ createComponent({
139
142
  tagName: 'ix-card',
140
143
  properties: {
141
144
  variant: 'variant',
142
- selected: 'selected'
145
+ selected: 'selected',
146
+ passive: 'passive'
143
147
  },
144
148
  hydrateModule: import('@siemens/ix/hydrate'),
145
149
  clientModule: clientComponents.IxCard,
@@ -206,7 +210,8 @@ const IxCategoryFilter = /*@__PURE__*/ createComponent({
206
210
  i18nPlainText: 'i18n-plain-text',
207
211
  ariaLabelResetButton: 'aria-label-reset-button',
208
212
  ariaLabelOperatorButton: 'aria-label-operator-button',
209
- ariaLabelFilterInput: 'aria-label-filter-input'
213
+ ariaLabelFilterInput: 'aria-label-filter-input',
214
+ enableTopLayer: 'enable-top-layer'
210
215
  },
211
216
  hydrateModule: import('@siemens/ix/hydrate'),
212
217
  clientModule: clientComponents.IxCategoryFilter,
@@ -331,7 +336,8 @@ const IxDateDropdown = /*@__PURE__*/ createComponent({
331
336
  i18nCustomItem: 'i18n-custom-item',
332
337
  i18nDone: 'i18n-done',
333
338
  i18nNoRange: 'i18n-no-range',
334
- today: 'today'
339
+ today: 'today',
340
+ enableTopLayer: 'enable-top-layer'
335
341
  },
336
342
  hydrateModule: import('@siemens/ix/hydrate'),
337
343
  clientModule: clientComponents.IxDateDropdown,
@@ -364,7 +370,8 @@ const IxDateInput = /*@__PURE__*/ createComponent({
364
370
  ariaLabelPreviousMonthButton: 'aria-label-previous-month-button',
365
371
  ariaLabelNextMonthButton: 'aria-label-next-month-button',
366
372
  suppressSubmitOnEnter: 'suppress-submit-on-enter',
367
- textAlignment: 'text-alignment'
373
+ textAlignment: 'text-alignment',
374
+ enableTopLayer: 'enable-top-layer'
368
375
  },
369
376
  hydrateModule: import('@siemens/ix/hydrate'),
370
377
  clientModule: clientComponents.IxDateInput,
@@ -387,7 +394,8 @@ const IxDatePicker = /*@__PURE__*/ createComponent({
387
394
  locale: 'locale',
388
395
  showWeekNumbers: 'show-week-numbers',
389
396
  embedded: 'embedded',
390
- today: 'today'
397
+ today: 'today',
398
+ enableTopLayer: 'enable-top-layer'
391
399
  },
392
400
  hydrateModule: import('@siemens/ix/hydrate'),
393
401
  clientModule: clientComponents.IxDatePicker,
@@ -455,7 +463,8 @@ const IxDropdown = /*@__PURE__*/ createComponent({
455
463
  overwriteDropdownStyle: 'overwrite-dropdown-style',
456
464
  discoverAllSubmenus: 'discover-all-submenus',
457
465
  ignoreRelatedSubmenu: 'ignore-related-submenu',
458
- suppressOverflowBehavior: 'suppress-overflow-behavior'
466
+ suppressOverflowBehavior: 'suppress-overflow-behavior',
467
+ enableTopLayer: 'enable-top-layer'
459
468
  },
460
469
  hydrateModule: import('@siemens/ix/hydrate'),
461
470
  clientModule: clientComponents.IxDropdown,
@@ -470,7 +479,8 @@ const IxDropdownButton = /*@__PURE__*/ createComponent({
470
479
  icon: 'icon',
471
480
  closeBehavior: 'close-behavior',
472
481
  placement: 'placement',
473
- ariaLabelDropdownButton: 'aria-label-dropdown-button'
482
+ ariaLabelDropdownButton: 'aria-label-dropdown-button',
483
+ enableTopLayer: 'enable-top-layer'
474
484
  },
475
485
  hydrateModule: import('@siemens/ix/hydrate'),
476
486
  clientModule: clientComponents.IxDropdownButton,
@@ -820,6 +830,7 @@ const IxMenuAbout = /*@__PURE__*/ createComponent({
820
830
  properties: {
821
831
  activeTabLabel: 'active-tab-label',
822
832
  label: 'label',
833
+ ariaLabelCloseButton: 'aria-label-close-button',
823
834
  show: 'show'
824
835
  },
825
836
  hydrateModule: import('@siemens/ix/hydrate'),
@@ -853,8 +864,11 @@ const IxMenuAvatar = /*@__PURE__*/ createComponent({
853
864
  bottom: 'bottom',
854
865
  image: 'image',
855
866
  initials: 'initials',
867
+ tooltipText: 'tooltip-text',
868
+ ariaLabelTooltip: 'aria-label-tooltip',
856
869
  i18nLogout: 'i18n-logout',
857
- hideLogoutButton: 'hide-logout-button'
870
+ hideLogoutButton: 'hide-logout-button',
871
+ enableTopLayer: 'enable-top-layer'
858
872
  },
859
873
  hydrateModule: import('@siemens/ix/hydrate'),
860
874
  clientModule: clientComponents.IxMenuAvatar,
@@ -907,6 +921,7 @@ const IxMenuSettings = /*@__PURE__*/ createComponent({
907
921
  properties: {
908
922
  activeTabLabel: 'active-tab-label',
909
923
  label: 'label',
924
+ ariaLabelCloseButton: 'aria-label-close-button',
910
925
  show: 'show'
911
926
  },
912
927
  hydrateModule: import('@siemens/ix/hydrate'),
@@ -1096,7 +1111,8 @@ const IxPushCard = /*@__PURE__*/ createComponent({
1096
1111
  heading: 'heading',
1097
1112
  subheading: 'subheading',
1098
1113
  variant: 'variant',
1099
- expanded: 'expanded'
1114
+ expanded: 'expanded',
1115
+ passive: 'passive'
1100
1116
  },
1101
1117
  hydrateModule: import('@siemens/ix/hydrate'),
1102
1118
  clientModule: clientComponents.IxPushCard,
@@ -1169,7 +1185,8 @@ const IxSelect = /*@__PURE__*/ createComponent({
1169
1185
  hideListHeader: 'hide-list-header',
1170
1186
  dropdownWidth: 'dropdown-width',
1171
1187
  dropdownMaxWidth: 'dropdown-max-width',
1172
- collapseMultipleSelection: 'collapse-multiple-selection'
1188
+ collapseMultipleSelection: 'collapse-multiple-selection',
1189
+ enableTopLayer: 'enable-top-layer'
1173
1190
  },
1174
1191
  hydrateModule: import('@siemens/ix/hydrate'),
1175
1192
  clientModule: clientComponents.IxSelect,
@@ -1190,6 +1207,13 @@ const IxSelectItem = /*@__PURE__*/ createComponent({
1190
1207
  const IxSlider = /*@__PURE__*/ createComponent({
1191
1208
  tagName: 'ix-slider',
1192
1209
  properties: {
1210
+ helperText: 'helper-text',
1211
+ label: 'label',
1212
+ invalidText: 'invalid-text',
1213
+ infoText: 'info-text',
1214
+ warningText: 'warning-text',
1215
+ validText: 'valid-text',
1216
+ showTextAsTooltip: 'show-text-as-tooltip',
1193
1217
  step: 'step',
1194
1218
  min: 'min',
1195
1219
  max: 'max',
@@ -1228,7 +1252,8 @@ const IxSplitButton = /*@__PURE__*/ createComponent({
1228
1252
  disabled: 'disabled',
1229
1253
  disableButton: 'disable-button',
1230
1254
  disableDropdownButton: 'disable-dropdown-button',
1231
- placement: 'placement'
1255
+ placement: 'placement',
1256
+ enableTopLayer: 'enable-top-layer'
1232
1257
  },
1233
1258
  hydrateModule: import('@siemens/ix/hydrate'),
1234
1259
  clientModule: clientComponents.IxSplitButton,
@@ -1330,7 +1355,8 @@ const IxTimeInput = /*@__PURE__*/ createComponent({
1330
1355
  i18nMillisecondColumnHeader: 'i18n-millisecond-column-header',
1331
1356
  suppressSubmitOnEnter: 'suppress-submit-on-enter',
1332
1357
  hideHeader: 'hide-header',
1333
- textAlignment: 'text-alignment'
1358
+ textAlignment: 'text-alignment',
1359
+ enableTopLayer: 'enable-top-layer'
1334
1360
  },
1335
1361
  hydrateModule: import('@siemens/ix/hydrate'),
1336
1362
  clientModule: clientComponents.IxTimeInput,
@@ -1369,6 +1395,7 @@ const IxToast = /*@__PURE__*/ createComponent({
1369
1395
  preventAutoClose: 'prevent-auto-close',
1370
1396
  icon: 'icon',
1371
1397
  iconColor: 'icon-color',
1398
+ hideIcon: 'hide-icon',
1372
1399
  ariaLabelCloseIconButton: 'aria-label-close-icon-button'
1373
1400
  },
1374
1401
  hydrateModule: import('@siemens/ix/hydrate'),