@siemens/ix-react 4.2.0 → 4.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { showModal as showModal$1, showModalLoading as showModalLoading$1, dismissModal as dismissModal$1, closeModal as closeModal$1 } from '@siemens/ix';
1
+ import { closeModal as closeModal$1, dismissModal as dismissModal$1, showModal as showModal$1, showModalLoading as showModalLoading$1 } from '@siemens/ix';
2
2
  import { defineCustomElement } from '@siemens/ix/components/ix-modal.js';
3
3
  export { Modal } from './modal.js';
4
4
 
@@ -15,8 +15,10 @@ defineCustomElement();
15
15
  async function showModal(config) {
16
16
  return showModal$1(config);
17
17
  }
18
- function showModalLoading(message) {
19
- return showModalLoading$1(message);
18
+ function showModalLoading(messageOrOptions) {
19
+ return typeof messageOrOptions === 'string'
20
+ ? showModalLoading$1(messageOrOptions)
21
+ : showModalLoading$1(messageOrOptions);
20
22
  }
21
23
  function dismissModal(modalInstance) {
22
24
  if (modalInstance?.htmlElement) {
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../src/modal/index.ts"],"sourcesContent":["/*\n * SPDX-FileCopyrightText: 2024 Siemens AG\n *\n * SPDX-License-Identifier: MIT\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nimport {\n ModalConfig as IxModalConfig,\n showModal as _showModal,\n showModalLoading as _showModalLoading,\n dismissModal as _dismissModal,\n closeModal as _closeModal,\n ModalInstance as IxModalInstance,\n ModalLoadingContext,\n} from '@siemens/ix';\nimport { defineCustomElement } from '@siemens/ix/components/ix-modal.js';\n\n// call defineCustomElement once at module level\ndefineCustomElement();\n\nexport * from './modal';\n\nexport type ModalConfig = {\n content: React.ReactNode | string;\n};\n\nexport async function showModal(\n config: Omit<IxModalConfig, 'content'> & ModalConfig\n) {\n return _showModal(config);\n}\n\nexport function showModalLoading(message: string): ModalLoadingContext {\n return _showModalLoading(message);\n}\n\nexport function dismissModal(modalInstance: IxModalInstance) {\n if (modalInstance?.htmlElement) {\n _dismissModal(modalInstance.htmlElement);\n }\n}\n\nexport function closeModal<T = any>(\n modalInstance: IxModalInstance,\n reason?: T\n) {\n if (modalInstance?.htmlElement) {\n _closeModal(modalInstance.htmlElement, reason);\n }\n}\n"],"names":["_showModal","_showModalLoading","_dismissModal","_closeModal"],"mappings":";;;;AAAA;;;;;;;AAOG;AAaH;AACA,mBAAmB,EAAE;AAQd,eAAe,SAAS,CAC7B,MAAoD,EAAA;AAEpD,IAAA,OAAOA,WAAU,CAAC,MAAM,CAAC;AAC3B;AAEM,SAAU,gBAAgB,CAAC,OAAe,EAAA;AAC9C,IAAA,OAAOC,kBAAiB,CAAC,OAAO,CAAC;AACnC;AAEM,SAAU,YAAY,CAAC,aAA8B,EAAA;AACzD,IAAA,IAAI,aAAa,EAAE,WAAW,EAAE;AAC9B,QAAAC,cAAa,CAAC,aAAa,CAAC,WAAW,CAAC;IAC1C;AACF;AAEM,SAAU,UAAU,CACxB,aAA8B,EAC9B,MAAU,EAAA;AAEV,IAAA,IAAI,aAAa,EAAE,WAAW,EAAE;AAC9B,QAAAC,YAAW,CAAC,aAAa,CAAC,WAAW,EAAE,MAAM,CAAC;IAChD;AACF;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../../src/modal/index.ts"],"sourcesContent":["/*\n * SPDX-FileCopyrightText: 2024 Siemens AG\n *\n * SPDX-License-Identifier: MIT\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nimport {\n ModalConfig as IxModalConfig,\n showModal as _showModal,\n showModalLoading as _showModalLoading,\n dismissModal as _dismissModal,\n closeModal as _closeModal,\n ModalInstance as IxModalInstance,\n ModalLoadingContext,\n ModalLoadingOptions,\n} from '@siemens/ix';\nimport { defineCustomElement } from '@siemens/ix/components/ix-modal.js';\n\nexport type { ModalLoadingOptions } from '@siemens/ix';\n\n// call defineCustomElement once at module level\ndefineCustomElement();\n\nexport * from './modal';\n\nexport type ModalConfig = {\n content: React.ReactNode | string;\n};\n\nexport async function showModal(\n config: Omit<IxModalConfig, 'content'> & ModalConfig\n) {\n return _showModal(config);\n}\n\n/** @deprecated Use ModalLoadingOptions object form instead */\nexport function showModalLoading(message: string): ModalLoadingContext;\nexport function showModalLoading(\n options: ModalLoadingOptions\n): ModalLoadingContext;\nexport function showModalLoading(\n messageOrOptions: string | ModalLoadingOptions\n): ModalLoadingContext {\n return typeof messageOrOptions === 'string'\n ? _showModalLoading(messageOrOptions)\n : _showModalLoading(messageOrOptions);\n}\n\nexport function dismissModal(modalInstance: IxModalInstance) {\n if (modalInstance?.htmlElement) {\n _dismissModal(modalInstance.htmlElement);\n }\n}\n\nexport function closeModal<T = any>(\n modalInstance: IxModalInstance,\n reason?: T\n) {\n if (modalInstance?.htmlElement) {\n _closeModal(modalInstance.htmlElement, reason);\n }\n}\n"],"names":["_showModal","_showModalLoading","_dismissModal","_closeModal"],"mappings":";;;;AAAA;;;;;;;AAOG;AAgBH;AACA,mBAAmB,EAAE;AAQd,eAAe,SAAS,CAC7B,MAAoD,EAAA;AAEpD,IAAA,OAAOA,WAAU,CAAC,MAAM,CAAC;AAC3B;AAOM,SAAU,gBAAgB,CAC9B,gBAA8C,EAAA;IAE9C,OAAO,OAAO,gBAAgB,KAAK;AACjC,UAAEC,kBAAiB,CAAC,gBAAgB;AACpC,UAAEA,kBAAiB,CAAC,gBAAgB,CAAC;AACzC;AAEM,SAAU,YAAY,CAAC,aAA8B,EAAA;AACzD,IAAA,IAAI,aAAa,EAAE,WAAW,EAAE;AAC9B,QAAAC,cAAa,CAAC,aAAa,CAAC,WAAW,CAAC;IAC1C;AACF;AAEM,SAAU,UAAU,CACxB,aAA8B,EAC9B,MAAU,EAAA;AAEV,IAAA,IAAI,aAAa,EAAE,WAAW,EAAE;AAC9B,QAAAC,YAAW,CAAC,aAAa,CAAC,WAAW,EAAE,MAAM,CAAC;IAChD;AACF;;;;"}
package/dist/tree/tree.js CHANGED
@@ -39,5 +39,5 @@ const IxTree = React.forwardRef((props, ref) => {
39
39
  } }));
40
40
  });
41
41
 
42
- export { IxTree, IxTree as default };
42
+ export { IxTree };
43
43
  //# sourceMappingURL=tree.js.map
@@ -2,7 +2,7 @@
2
2
  * This file was automatically generated by the Stencil React Output Target.
3
3
  * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
4
  */
5
- import { type BorderlessChangedEvent, type CustomCloseEvent, type CustomLabelChangeEvent, type DateChangeEvent, type DateInputValidityState, type DateRangeChangeEvent, type DateTimeDateChangeEvent, type DateTimeSelectEvent, type ExpandedChangedEvent, type FilterState, type InputState, type IxBreadcrumbCustomEvent, type IxCardListCustomEvent, type IxCategoryFilterCustomEvent, type IxDateDropdownCustomEvent, type IxDateInputCustomEvent, type IxDatePickerCustomEvent, type IxDatetimePickerCustomEvent, type IxGroupItemCustomEvent, type IxInputCustomEvent, type IxMenuAboutCustomEvent, type IxMenuAboutItemCustomEvent, type IxMenuAboutNewsCustomEvent, type IxMenuAvatarItemCustomEvent, type IxMenuSettingsCustomEvent, type IxMenuSettingsItemCustomEvent, type IxModalHeaderCustomEvent, type IxNumberInputCustomEvent, type IxPaneCustomEvent, type IxSplitButtonCustomEvent, type IxTabItemCustomEvent, type IxTextareaCustomEvent, type IxTimeInputCustomEvent, type IxUploadCustomEvent, type TabClickDetail, type TimeInputValidityState, type VariantChangedEvent } from "@siemens/ix";
5
+ import { type BorderlessChangedEvent, type CustomCloseEvent, type CustomLabelChangeEvent, type DateChangeEvent, type DateInputValidityState, type DateRangeChangeEvent, type DateTimeDateChangeEvent, type DateTimeSelectEvent, type ExpandedChangedEvent, type FilterState, type InputState, type IxApplicationHeaderCustomEvent, type IxBlindCustomEvent, type IxBreadcrumbCustomEvent, type IxCardListCustomEvent, type IxCategoryFilterCustomEvent, type IxCheckboxCustomEvent, type IxChipCustomEvent, type IxContentHeaderCustomEvent, type IxDateDropdownCustomEvent, type IxDateInputCustomEvent, type IxDatePickerCustomEvent, type IxDatetimePickerCustomEvent, type IxDrawerCustomEvent, type IxDropdownCustomEvent, type IxEmptyStateCustomEvent, type IxEventListItemCustomEvent, type IxExpandingSearchCustomEvent, type IxFilterChipCustomEvent, type IxFlipTileCustomEvent, type IxGroupCustomEvent, type IxGroupItemCustomEvent, type IxIconToggleButtonCustomEvent, type IxInputCustomEvent, type IxMenuAboutCustomEvent, type IxMenuAboutItemCustomEvent, type IxMenuAboutNewsCustomEvent, type IxMenuAvatarCustomEvent, type IxMenuAvatarItemCustomEvent, type IxMenuCustomEvent, type IxMenuSettingsCustomEvent, type IxMenuSettingsItemCustomEvent, type IxMessageBarCustomEvent, type IxModalCustomEvent, type IxModalHeaderCustomEvent, type IxNumberInputCustomEvent, type IxPaginationCustomEvent, type IxPaneCustomEvent, type IxRadioCustomEvent, type IxRadioGroupCustomEvent, type IxSelectCustomEvent, type IxSelectItemCustomEvent, type IxSliderCustomEvent, type IxSplitButtonCustomEvent, type IxTabItemCustomEvent, type IxTabsCustomEvent, type IxTextareaCustomEvent, type IxTimeInputCustomEvent, type IxTimePickerCustomEvent, type IxToastCustomEvent, type IxToggleButtonCustomEvent, type IxToggleCustomEvent, type IxUploadCustomEvent, type IxWorkflowStepsCustomEvent, type TabClickDetail, type TimeInputValidityState, type VariantChangedEvent } from "@siemens/ix";
6
6
  import { IxActionCard as IxActionCardElement } from "@siemens/ix/components/ix-action-card.js";
7
7
  import { IxApplicationHeader as IxApplicationHeaderElement } from "@siemens/ix/components/ix-application-header.js";
8
8
  import { IxApplication as IxApplicationElement } from "@siemens/ix/components/ix-application.js";
@@ -109,18 +109,18 @@ export declare const IxActionCard: StencilReactComponent<IxActionCardElement, Ix
109
109
  export type IxApplicationEvents = NonNullable<unknown>;
110
110
  export declare const IxApplication: StencilReactComponent<IxApplicationElement, IxApplicationEvents>;
111
111
  export type IxApplicationHeaderEvents = {
112
- onMenuToggle: EventName<CustomEvent<boolean>>;
113
- onOpenAppSwitch: EventName<CustomEvent<void>>;
112
+ onMenuToggle: EventName<IxApplicationHeaderCustomEvent<boolean>>;
113
+ onOpenAppSwitch: EventName<IxApplicationHeaderCustomEvent<void>>;
114
114
  };
115
115
  export declare const IxApplicationHeader: StencilReactComponent<IxApplicationHeaderElement, IxApplicationHeaderEvents>;
116
116
  export type IxAvatarEvents = NonNullable<unknown>;
117
117
  export declare const IxAvatar: StencilReactComponent<IxAvatarElement, IxAvatarEvents>;
118
118
  export type IxBlindEvents = {
119
- onCollapsedChange: EventName<CustomEvent<boolean>>;
119
+ onCollapsedChange: EventName<IxBlindCustomEvent<boolean>>;
120
120
  };
121
121
  export declare const IxBlind: StencilReactComponent<IxBlindElement, IxBlindEvents>;
122
122
  export type IxBreadcrumbEvents = {
123
- onItemClick: EventName<CustomEvent<string>>;
123
+ onItemClick: EventName<IxBreadcrumbCustomEvent<string>>;
124
124
  onNextClick: EventName<IxBreadcrumbCustomEvent<{
125
125
  event: UIEvent;
126
126
  item: string;
@@ -138,7 +138,7 @@ export declare const IxCardAccordion: StencilReactComponent<IxCardAccordionEleme
138
138
  export type IxCardContentEvents = NonNullable<unknown>;
139
139
  export declare const IxCardContent: StencilReactComponent<IxCardContentElement, IxCardContentEvents>;
140
140
  export type IxCardListEvents = {
141
- onCollapseChanged: EventName<CustomEvent<boolean>>;
141
+ onCollapseChanged: EventName<IxCardListCustomEvent<boolean>>;
142
142
  onShowAllClick: EventName<IxCardListCustomEvent<{
143
143
  nativeEvent: MouseEvent;
144
144
  }>>;
@@ -150,22 +150,22 @@ export declare const IxCardList: StencilReactComponent<IxCardListElement, IxCard
150
150
  export type IxCardTitleEvents = NonNullable<unknown>;
151
151
  export declare const IxCardTitle: StencilReactComponent<IxCardTitleElement, IxCardTitleEvents>;
152
152
  export type IxCategoryFilterEvents = {
153
- onCategoryChanged: EventName<CustomEvent<string>>;
153
+ onCategoryChanged: EventName<IxCategoryFilterCustomEvent<string>>;
154
154
  onInputChanged: EventName<IxCategoryFilterCustomEvent<InputState>>;
155
155
  onFilterChanged: EventName<IxCategoryFilterCustomEvent<FilterState>>;
156
- onFilterCleared: EventName<CustomEvent<void>>;
156
+ onFilterCleared: EventName<IxCategoryFilterCustomEvent<void>>;
157
157
  };
158
158
  export declare const IxCategoryFilter: StencilReactComponent<IxCategoryFilterElement, IxCategoryFilterEvents>;
159
159
  export type IxCheckboxEvents = {
160
- onCheckedChange: EventName<CustomEvent<boolean>>;
161
- onValueChange: EventName<CustomEvent<string>>;
162
- onIxBlur: EventName<CustomEvent<void>>;
160
+ onCheckedChange: EventName<IxCheckboxCustomEvent<boolean>>;
161
+ onValueChange: EventName<IxCheckboxCustomEvent<string>>;
162
+ onIxBlur: EventName<IxCheckboxCustomEvent<void>>;
163
163
  };
164
164
  export declare const IxCheckbox: StencilReactComponent<IxCheckboxElement, IxCheckboxEvents>;
165
165
  export type IxCheckboxGroupEvents = NonNullable<unknown>;
166
166
  export declare const IxCheckboxGroup: StencilReactComponent<IxCheckboxGroupElement, IxCheckboxGroupEvents>;
167
167
  export type IxChipEvents = {
168
- onCloseChip: EventName<CustomEvent<any>>;
168
+ onCloseChip: EventName<IxChipCustomEvent<any>>;
169
169
  };
170
170
  export declare const IxChip: StencilReactComponent<IxChipElement, IxChipEvents>;
171
171
  export type IxColEvents = NonNullable<unknown>;
@@ -173,7 +173,7 @@ export declare const IxCol: StencilReactComponent<IxColElement, IxColEvents>;
173
173
  export type IxContentEvents = NonNullable<unknown>;
174
174
  export declare const IxContent: StencilReactComponent<IxContentElement, IxContentEvents>;
175
175
  export type IxContentHeaderEvents = {
176
- onBackButtonClick: EventName<CustomEvent<void>>;
176
+ onBackButtonClick: EventName<IxContentHeaderCustomEvent<void>>;
177
177
  };
178
178
  export declare const IxContentHeader: StencilReactComponent<IxContentHeaderElement, IxContentHeaderEvents>;
179
179
  export type IxCustomFieldEvents = NonNullable<unknown>;
@@ -183,8 +183,9 @@ export type IxDateDropdownEvents = {
183
183
  };
184
184
  export declare const IxDateDropdown: StencilReactComponent<IxDateDropdownElement, IxDateDropdownEvents>;
185
185
  export type IxDateInputEvents = {
186
- onValueChange: EventName<CustomEvent<string | undefined>>;
186
+ onValueChange: EventName<IxDateInputCustomEvent<string | undefined>>;
187
187
  onValidityStateChange: EventName<IxDateInputCustomEvent<DateInputValidityState>>;
188
+ onIxChange: EventName<IxDateInputCustomEvent<string | undefined>>;
188
189
  };
189
190
  export declare const IxDateInput: StencilReactComponent<IxDateInputElement, IxDateInputEvents>;
190
191
  export type IxDatePickerEvents = {
@@ -194,7 +195,7 @@ export type IxDatePickerEvents = {
194
195
  };
195
196
  export declare const IxDatePicker: StencilReactComponent<IxDatePickerElement, IxDatePickerEvents>;
196
197
  export type IxDatetimePickerEvents = {
197
- onTimeChange: EventName<CustomEvent<string>>;
198
+ onTimeChange: EventName<IxDatetimePickerCustomEvent<string>>;
198
199
  onDateChange: EventName<IxDatetimePickerCustomEvent<DateTimeDateChangeEvent>>;
199
200
  onDateSelect: EventName<IxDatetimePickerCustomEvent<DateTimeSelectEvent>>;
200
201
  };
@@ -202,12 +203,12 @@ export declare const IxDatetimePicker: StencilReactComponent<IxDatetimePickerEle
202
203
  export type IxDividerEvents = NonNullable<unknown>;
203
204
  export declare const IxDivider: StencilReactComponent<IxDividerElement, IxDividerEvents>;
204
205
  export type IxDrawerEvents = {
205
- onOpen: EventName<CustomEvent<any>>;
206
- onDrawerClose: EventName<CustomEvent<any>>;
206
+ onOpen: EventName<IxDrawerCustomEvent<any>>;
207
+ onDrawerClose: EventName<IxDrawerCustomEvent<any>>;
207
208
  };
208
209
  export declare const IxDrawer: StencilReactComponent<IxDrawerElement, IxDrawerEvents>;
209
210
  export type IxDropdownEvents = {
210
- onShowChanged: EventName<CustomEvent<boolean>>;
211
+ onShowChanged: EventName<IxDropdownCustomEvent<boolean>>;
211
212
  };
212
213
  export declare const IxDropdown: StencilReactComponent<IxDropdownElement, IxDropdownEvents>;
213
214
  export type IxDropdownButtonEvents = NonNullable<unknown>;
@@ -219,35 +220,35 @@ export declare const IxDropdownItem: StencilReactComponent<IxDropdownItemElement
219
220
  export type IxDropdownQuickActionsEvents = NonNullable<unknown>;
220
221
  export declare const IxDropdownQuickActions: StencilReactComponent<IxDropdownQuickActionsElement, IxDropdownQuickActionsEvents>;
221
222
  export type IxEmptyStateEvents = {
222
- onActionClick: EventName<CustomEvent<void>>;
223
+ onActionClick: EventName<IxEmptyStateCustomEvent<void>>;
223
224
  };
224
225
  export declare const IxEmptyState: StencilReactComponent<IxEmptyStateElement, IxEmptyStateEvents>;
225
226
  export type IxEventListEvents = NonNullable<unknown>;
226
227
  export declare const IxEventList: StencilReactComponent<IxEventListElement, IxEventListEvents>;
227
228
  export type IxEventListItemEvents = {
228
- onItemClick: EventName<CustomEvent<any>>;
229
+ onItemClick: EventName<IxEventListItemCustomEvent<any>>;
229
230
  };
230
231
  export declare const IxEventListItem: StencilReactComponent<IxEventListItemElement, IxEventListItemEvents>;
231
232
  export type IxExpandingSearchEvents = {
232
- onValueChange: EventName<CustomEvent<string>>;
233
+ onValueChange: EventName<IxExpandingSearchCustomEvent<string>>;
233
234
  };
234
235
  export declare const IxExpandingSearch: StencilReactComponent<IxExpandingSearchElement, IxExpandingSearchEvents>;
235
236
  export type IxFieldLabelEvents = NonNullable<unknown>;
236
237
  export declare const IxFieldLabel: StencilReactComponent<IxFieldLabelElement, IxFieldLabelEvents>;
237
238
  export type IxFilterChipEvents = {
238
- onCloseClick: EventName<CustomEvent<void>>;
239
+ onCloseClick: EventName<IxFilterChipCustomEvent<void>>;
239
240
  };
240
241
  export declare const IxFilterChip: StencilReactComponent<IxFilterChipElement, IxFilterChipEvents>;
241
242
  export type IxFlipTileEvents = {
242
- onToggle: EventName<CustomEvent<number>>;
243
+ onToggle: EventName<IxFlipTileCustomEvent<number>>;
243
244
  };
244
245
  export declare const IxFlipTile: StencilReactComponent<IxFlipTileElement, IxFlipTileEvents>;
245
246
  export type IxFlipTileContentEvents = NonNullable<unknown>;
246
247
  export declare const IxFlipTileContent: StencilReactComponent<IxFlipTileContentElement, IxFlipTileContentEvents>;
247
248
  export type IxGroupEvents = {
248
- onSelectGroup: EventName<CustomEvent<boolean>>;
249
- onSelectItem: EventName<CustomEvent<number>>;
250
- onExpandedChanged: EventName<CustomEvent<boolean>>;
249
+ onSelectGroup: EventName<IxGroupCustomEvent<boolean>>;
250
+ onSelectItem: EventName<IxGroupCustomEvent<number>>;
251
+ onExpandedChanged: EventName<IxGroupCustomEvent<boolean>>;
251
252
  };
252
253
  export declare const IxGroup: StencilReactComponent<IxGroupElement, IxGroupEvents>;
253
254
  export type IxGroupContextMenuEvents = NonNullable<unknown>;
@@ -261,13 +262,14 @@ export declare const IxHelperText: StencilReactComponent<IxHelperTextElement, Ix
261
262
  export type IxIconButtonEvents = NonNullable<unknown>;
262
263
  export declare const IxIconButton: StencilReactComponent<IxIconButtonElement, IxIconButtonEvents>;
263
264
  export type IxIconToggleButtonEvents = {
264
- onPressedChange: EventName<CustomEvent<boolean>>;
265
+ onPressedChange: EventName<IxIconToggleButtonCustomEvent<boolean>>;
265
266
  };
266
267
  export declare const IxIconToggleButton: StencilReactComponent<IxIconToggleButtonElement, IxIconToggleButtonEvents>;
267
268
  export type IxInputEvents = {
268
- onValueChange: EventName<CustomEvent<string>>;
269
+ onValueChange: EventName<IxInputCustomEvent<string>>;
269
270
  onValidityStateChange: EventName<IxInputCustomEvent<ValidityState>>;
270
- onIxBlur: EventName<CustomEvent<void>>;
271
+ onIxBlur: EventName<IxInputCustomEvent<void>>;
272
+ onIxChange: EventName<IxInputCustomEvent<string>>;
271
273
  };
272
274
  export declare const IxInput: StencilReactComponent<IxInputElement, IxInputEvents>;
273
275
  export type IxInputGroupEvents = NonNullable<unknown>;
@@ -285,15 +287,15 @@ export declare const IxLayoutGrid: StencilReactComponent<IxLayoutGridElement, Ix
285
287
  export type IxLinkButtonEvents = NonNullable<unknown>;
286
288
  export declare const IxLinkButton: StencilReactComponent<IxLinkButtonElement, IxLinkButtonEvents>;
287
289
  export type IxMenuEvents = {
288
- onExpandChange: EventName<CustomEvent<boolean>>;
289
- onMapExpandChange: EventName<CustomEvent<boolean>>;
290
- onOpenAppSwitch: EventName<CustomEvent<void>>;
291
- onOpenSettings: EventName<CustomEvent<void>>;
292
- onOpenAbout: EventName<CustomEvent<void>>;
290
+ onExpandChange: EventName<IxMenuCustomEvent<boolean>>;
291
+ onMapExpandChange: EventName<IxMenuCustomEvent<boolean>>;
292
+ onOpenAppSwitch: EventName<IxMenuCustomEvent<void>>;
293
+ onOpenSettings: EventName<IxMenuCustomEvent<void>>;
294
+ onOpenAbout: EventName<IxMenuCustomEvent<void>>;
293
295
  };
294
296
  export declare const IxMenu: StencilReactComponent<IxMenuElement, IxMenuEvents>;
295
297
  export type IxMenuAboutEvents = {
296
- onTabChange: EventName<CustomEvent<string>>;
298
+ onTabChange: EventName<IxMenuAboutCustomEvent<string>>;
297
299
  onClose: EventName<IxMenuAboutCustomEvent<CustomCloseEvent>>;
298
300
  };
299
301
  export declare const IxMenuAbout: StencilReactComponent<IxMenuAboutElement, IxMenuAboutEvents>;
@@ -303,11 +305,11 @@ export type IxMenuAboutItemEvents = {
303
305
  export declare const IxMenuAboutItem: StencilReactComponent<IxMenuAboutItemElement, IxMenuAboutItemEvents>;
304
306
  export type IxMenuAboutNewsEvents = {
305
307
  onShowMore: EventName<IxMenuAboutNewsCustomEvent<MouseEvent>>;
306
- onClosePopover: EventName<CustomEvent<void>>;
308
+ onClosePopover: EventName<IxMenuAboutNewsCustomEvent<void>>;
307
309
  };
308
310
  export declare const IxMenuAboutNews: StencilReactComponent<IxMenuAboutNewsElement, IxMenuAboutNewsEvents>;
309
311
  export type IxMenuAvatarEvents = {
310
- onLogoutClick: EventName<CustomEvent<any>>;
312
+ onLogoutClick: EventName<IxMenuAvatarCustomEvent<any>>;
311
313
  };
312
314
  export declare const IxMenuAvatar: StencilReactComponent<IxMenuAvatarElement, IxMenuAvatarEvents>;
313
315
  export type IxMenuAvatarItemEvents = {
@@ -319,7 +321,7 @@ export declare const IxMenuCategory: StencilReactComponent<IxMenuCategoryElement
319
321
  export type IxMenuItemEvents = NonNullable<unknown>;
320
322
  export declare const IxMenuItem: StencilReactComponent<IxMenuItemElement, IxMenuItemEvents>;
321
323
  export type IxMenuSettingsEvents = {
322
- onTabChange: EventName<CustomEvent<string>>;
324
+ onTabChange: EventName<IxMenuSettingsCustomEvent<string>>;
323
325
  onClose: EventName<IxMenuSettingsCustomEvent<CustomCloseEvent>>;
324
326
  };
325
327
  export declare const IxMenuSettings: StencilReactComponent<IxMenuSettingsElement, IxMenuSettingsEvents>;
@@ -328,13 +330,13 @@ export type IxMenuSettingsItemEvents = {
328
330
  };
329
331
  export declare const IxMenuSettingsItem: StencilReactComponent<IxMenuSettingsItemElement, IxMenuSettingsItemEvents>;
330
332
  export type IxMessageBarEvents = {
331
- onClosedChange: EventName<CustomEvent<any>>;
332
- onCloseAnimationCompleted: EventName<CustomEvent<any>>;
333
+ onClosedChange: EventName<IxMessageBarCustomEvent<any>>;
334
+ onCloseAnimationCompleted: EventName<IxMessageBarCustomEvent<any>>;
333
335
  };
334
336
  export declare const IxMessageBar: StencilReactComponent<IxMessageBarElement, IxMessageBarEvents>;
335
337
  export type IxModalEvents = {
336
- onDialogClose: EventName<CustomEvent<any>>;
337
- onDialogDismiss: EventName<CustomEvent<any>>;
338
+ onDialogClose: EventName<IxModalCustomEvent<any>>;
339
+ onDialogDismiss: EventName<IxModalCustomEvent<any>>;
338
340
  };
339
341
  export declare const IxModal: StencilReactComponent<IxModalElement, IxModalEvents>;
340
342
  export type IxModalContentEvents = NonNullable<unknown>;
@@ -346,14 +348,15 @@ export type IxModalHeaderEvents = {
346
348
  };
347
349
  export declare const IxModalHeader: StencilReactComponent<IxModalHeaderElement, IxModalHeaderEvents>;
348
350
  export type IxNumberInputEvents = {
349
- onValueChange: EventName<CustomEvent<number>>;
351
+ onValueChange: EventName<IxNumberInputCustomEvent<number>>;
350
352
  onValidityStateChange: EventName<IxNumberInputCustomEvent<ValidityState>>;
351
- onIxBlur: EventName<CustomEvent<void>>;
353
+ onIxBlur: EventName<IxNumberInputCustomEvent<void>>;
354
+ onIxChange: EventName<IxNumberInputCustomEvent<number>>;
352
355
  };
353
356
  export declare const IxNumberInput: StencilReactComponent<IxNumberInputElement, IxNumberInputEvents>;
354
357
  export type IxPaginationEvents = {
355
- onPageSelected: EventName<CustomEvent<number>>;
356
- onItemCountChanged: EventName<CustomEvent<number>>;
358
+ onPageSelected: EventName<IxPaginationCustomEvent<number>>;
359
+ onItemCountChanged: EventName<IxPaginationCustomEvent<number>>;
357
360
  };
358
361
  export declare const IxPagination: StencilReactComponent<IxPaginationElement, IxPaginationEvents>;
359
362
  export type IxPaneEvents = {
@@ -371,30 +374,30 @@ export declare const IxProgressIndicator: StencilReactComponent<IxProgressIndica
371
374
  export type IxPushCardEvents = NonNullable<unknown>;
372
375
  export declare const IxPushCard: StencilReactComponent<IxPushCardElement, IxPushCardEvents>;
373
376
  export type IxRadioEvents = {
374
- onCheckedChange: EventName<CustomEvent<boolean>>;
375
- onValueChange: EventName<CustomEvent<string>>;
376
- onIxBlur: EventName<CustomEvent<void>>;
377
+ onCheckedChange: EventName<IxRadioCustomEvent<boolean>>;
378
+ onValueChange: EventName<IxRadioCustomEvent<string>>;
379
+ onIxBlur: EventName<IxRadioCustomEvent<void>>;
377
380
  };
378
381
  export declare const IxRadio: StencilReactComponent<IxRadioElement, IxRadioEvents>;
379
382
  export type IxRadioGroupEvents = {
380
- onValueChange: EventName<CustomEvent<string>>;
383
+ onValueChange: EventName<IxRadioGroupCustomEvent<string>>;
381
384
  };
382
385
  export declare const IxRadioGroup: StencilReactComponent<IxRadioGroupElement, IxRadioGroupEvents>;
383
386
  export type IxRowEvents = NonNullable<unknown>;
384
387
  export declare const IxRow: StencilReactComponent<IxRowElement, IxRowEvents>;
385
388
  export type IxSelectEvents = {
386
- onValueChange: EventName<CustomEvent<string | string[]>>;
387
- onInputChange: EventName<CustomEvent<string>>;
388
- onAddItem: EventName<CustomEvent<string>>;
389
- onIxBlur: EventName<CustomEvent<void>>;
389
+ onValueChange: EventName<IxSelectCustomEvent<string | string[]>>;
390
+ onInputChange: EventName<IxSelectCustomEvent<string>>;
391
+ onAddItem: EventName<IxSelectCustomEvent<string>>;
392
+ onIxBlur: EventName<IxSelectCustomEvent<void>>;
390
393
  };
391
394
  export declare const IxSelect: StencilReactComponent<IxSelectElement, IxSelectEvents>;
392
395
  export type IxSelectItemEvents = {
393
- onItemClick: EventName<CustomEvent<string>>;
396
+ onItemClick: EventName<IxSelectItemCustomEvent<string>>;
394
397
  };
395
398
  export declare const IxSelectItem: StencilReactComponent<IxSelectItemElement, IxSelectItemEvents>;
396
399
  export type IxSliderEvents = {
397
- onValueChange: EventName<CustomEvent<number>>;
400
+ onValueChange: EventName<IxSliderCustomEvent<number>>;
398
401
  };
399
402
  export declare const IxSlider: StencilReactComponent<IxSliderElement, IxSliderEvents>;
400
403
  export type IxSpinnerEvents = NonNullable<unknown>;
@@ -408,40 +411,42 @@ export type IxTabItemEvents = {
408
411
  };
409
412
  export declare const IxTabItem: StencilReactComponent<IxTabItemElement, IxTabItemEvents>;
410
413
  export type IxTabsEvents = {
411
- onSelectedChange: EventName<CustomEvent<number>>;
414
+ onSelectedChange: EventName<IxTabsCustomEvent<number>>;
412
415
  };
413
416
  export declare const IxTabs: StencilReactComponent<IxTabsElement, IxTabsEvents>;
414
417
  export type IxTextareaEvents = {
415
- onValueChange: EventName<CustomEvent<string>>;
418
+ onValueChange: EventName<IxTextareaCustomEvent<string>>;
416
419
  onValidityStateChange: EventName<IxTextareaCustomEvent<ValidityState>>;
417
- onIxBlur: EventName<CustomEvent<void>>;
420
+ onIxBlur: EventName<IxTextareaCustomEvent<void>>;
421
+ onIxChange: EventName<IxTextareaCustomEvent<string>>;
418
422
  };
419
423
  export declare const IxTextarea: StencilReactComponent<IxTextareaElement, IxTextareaEvents>;
420
424
  export type IxTileEvents = NonNullable<unknown>;
421
425
  export declare const IxTile: StencilReactComponent<IxTileElement, IxTileEvents>;
422
426
  export type IxTimeInputEvents = {
423
- onValueChange: EventName<CustomEvent<string>>;
427
+ onValueChange: EventName<IxTimeInputCustomEvent<string>>;
424
428
  onValidityStateChange: EventName<IxTimeInputCustomEvent<TimeInputValidityState>>;
429
+ onIxChange: EventName<IxTimeInputCustomEvent<string>>;
425
430
  };
426
431
  export declare const IxTimeInput: StencilReactComponent<IxTimeInputElement, IxTimeInputEvents>;
427
432
  export type IxTimePickerEvents = {
428
- onTimeSelect: EventName<CustomEvent<string>>;
429
- onTimeChange: EventName<CustomEvent<string>>;
433
+ onTimeSelect: EventName<IxTimePickerCustomEvent<string>>;
434
+ onTimeChange: EventName<IxTimePickerCustomEvent<string>>;
430
435
  };
431
436
  export declare const IxTimePicker: StencilReactComponent<IxTimePickerElement, IxTimePickerEvents>;
432
437
  export type IxToastEvents = {
433
- onCloseToast: EventName<CustomEvent<any>>;
438
+ onCloseToast: EventName<IxToastCustomEvent<any>>;
434
439
  };
435
440
  export declare const IxToast: StencilReactComponent<IxToastElement, IxToastEvents>;
436
441
  export type IxToastContainerEvents = NonNullable<unknown>;
437
442
  export declare const IxToastContainer: StencilReactComponent<IxToastContainerElement, IxToastContainerEvents>;
438
443
  export type IxToggleEvents = {
439
- onCheckedChange: EventName<CustomEvent<boolean>>;
440
- onIxBlur: EventName<CustomEvent<void>>;
444
+ onCheckedChange: EventName<IxToggleCustomEvent<boolean>>;
445
+ onIxBlur: EventName<IxToggleCustomEvent<void>>;
441
446
  };
442
447
  export declare const IxToggle: StencilReactComponent<IxToggleElement, IxToggleEvents>;
443
448
  export type IxToggleButtonEvents = {
444
- onPressedChange: EventName<CustomEvent<boolean>>;
449
+ onPressedChange: EventName<IxToggleButtonCustomEvent<boolean>>;
445
450
  };
446
451
  export declare const IxToggleButton: StencilReactComponent<IxToggleButtonElement, IxToggleButtonEvents>;
447
452
  export type IxTooltipEvents = NonNullable<unknown>;
@@ -457,6 +462,6 @@ export declare const IxValidationTooltip: StencilReactComponent<IxValidationTool
457
462
  export type IxWorkflowStepEvents = NonNullable<unknown>;
458
463
  export declare const IxWorkflowStep: StencilReactComponent<IxWorkflowStepElement, IxWorkflowStepEvents>;
459
464
  export type IxWorkflowStepsEvents = {
460
- onStepSelected: EventName<CustomEvent<number>>;
465
+ onStepSelected: EventName<IxWorkflowStepsCustomEvent<number>>;
461
466
  };
462
467
  export declare const IxWorkflowSteps: StencilReactComponent<IxWorkflowStepsElement, IxWorkflowStepsEvents>;