@siemens/ix-angular 1.1.0-beta.4 → 1.1.0-beta.6

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.
@@ -0,0 +1,796 @@
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
2
+ import { Components } from '@siemens/ix';
3
+ import type { InputState as ICategoryFilterInputState } from '@siemens/ix';
4
+ import type { FilterState as ICategoryFilterFilterState } from '@siemens/ix';
5
+ import type { LegacyDateChangeEvent as IDatePickerLegacyDateChangeEvent } from '@siemens/ix';
6
+ import type { DateChangeEvent as IDatePickerDateChangeEvent } from '@siemens/ix';
7
+ import type { DateTimeSelectEvent as IDatePickerDateTimeSelectEvent } from '@siemens/ix';
8
+ import * as i0 from "@angular/core";
9
+ export declare interface IxAnimatedTab extends Components.IxAnimatedTab {
10
+ }
11
+ export declare class IxAnimatedTab {
12
+ protected z: NgZone;
13
+ protected el: HTMLElement;
14
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxAnimatedTab, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxAnimatedTab, "ix-animated-tab", never, { "count": "count"; "icon": "icon"; }, {}, never, ["*"], false>;
17
+ }
18
+ export declare interface IxAnimatedTabs extends Components.IxAnimatedTabs {
19
+ /**
20
+ * Tab navigated
21
+ */
22
+ tabClick: EventEmitter<CustomEvent<any>>;
23
+ }
24
+ export declare class IxAnimatedTabs {
25
+ protected z: NgZone;
26
+ protected el: HTMLElement;
27
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxAnimatedTabs, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxAnimatedTabs, "ix-animated-tabs", never, { "disableAnimations": "disableAnimations"; "selectedIndex": "selectedIndex"; "tabPlacement": "tabPlacement"; }, {}, never, ["*"], false>;
30
+ }
31
+ export declare interface IxApplicationHeader extends Components.IxApplicationHeader {
32
+ }
33
+ export declare class IxApplicationHeader {
34
+ protected z: NgZone;
35
+ protected el: HTMLElement;
36
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxApplicationHeader, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": "name"; }, {}, never, ["*"], false>;
39
+ }
40
+ export declare interface IxBasicNavigation extends Components.IxBasicNavigation {
41
+ }
42
+ export declare class IxBasicNavigation {
43
+ protected z: NgZone;
44
+ protected el: HTMLElement;
45
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxBasicNavigation, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": "applicationName"; "hideHeader": "hideHeader"; }, {}, never, ["*"], false>;
48
+ }
49
+ export declare interface IxBlind extends Components.IxBlind {
50
+ /**
51
+ * Collapsed state changed
52
+ */
53
+ collapsedChange: EventEmitter<CustomEvent<boolean>>;
54
+ }
55
+ export declare class IxBlind {
56
+ protected z: NgZone;
57
+ protected el: HTMLElement;
58
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxBlind, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "label": "label"; }, {}, never, ["*"], false>;
61
+ }
62
+ export declare interface IxBreadcrumb extends Components.IxBreadcrumb {
63
+ /**
64
+ * Crumb item clicked event
65
+ */
66
+ itemClick: EventEmitter<CustomEvent<string>>;
67
+ /**
68
+ * Next item clicked event
69
+ */
70
+ nextClick: EventEmitter<CustomEvent<{
71
+ event: UIEvent;
72
+ item: string;
73
+ }>>;
74
+ }
75
+ export declare class IxBreadcrumb {
76
+ protected z: NgZone;
77
+ protected el: HTMLElement;
78
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
79
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumb, never>;
80
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumb, "ix-breadcrumb", never, { "ghost": "ghost"; "nextItems": "nextItems"; "visibleItemCount": "visibleItemCount"; }, {}, never, ["*"], false>;
81
+ }
82
+ export declare interface IxBreadcrumbItem extends Components.IxBreadcrumbItem {
83
+ }
84
+ export declare class IxBreadcrumbItem {
85
+ protected z: NgZone;
86
+ protected el: HTMLElement;
87
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
88
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumbItem, never>;
89
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumbItem, "ix-breadcrumb-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"], false>;
90
+ }
91
+ export declare interface IxButton extends Components.IxButton {
92
+ }
93
+ export declare class IxButton {
94
+ protected z: NgZone;
95
+ protected el: HTMLElement;
96
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
97
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxButton, never>;
98
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": "disabled"; "ghost": "ghost"; "invisible": "invisible"; "outline": "outline"; "selected": "selected"; "type": "type"; "variant": "variant"; }, {}, never, ["*"], false>;
99
+ }
100
+ export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
101
+ /**
102
+ * Event dispatched whenever the text input changes.
103
+ */
104
+ inputChanged: EventEmitter<CustomEvent<ICategoryFilterInputState>>;
105
+ /**
106
+ * Event dispatched whenever the filter state changes.
107
+ */
108
+ filterChanged: EventEmitter<CustomEvent<ICategoryFilterFilterState>>;
109
+ }
110
+ export declare class IxCategoryFilter {
111
+ protected z: NgZone;
112
+ protected el: HTMLElement;
113
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
114
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxCategoryFilter, never>;
115
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCategoryFilter, "ix-category-filter", never, { "categories": "categories"; "filterState": "filterState"; "hideIcon": "hideIcon"; "i18nPlainText": "i18nPlainText"; "icon": "icon"; "initialState": "initialState"; "labelCategories": "labelCategories"; "nonSelectableCategories": "nonSelectableCategories"; "placeholder": "placeholder"; "repeatCategories": "repeatCategories"; "suggestions": "suggestions"; "tmpDisableScrollIntoView": "tmpDisableScrollIntoView"; }, {}, never, ["*"], false>;
116
+ }
117
+ export declare interface IxChip extends Components.IxChip {
118
+ /**
119
+ * Fire event if close button is clicked
120
+ */
121
+ close: EventEmitter<CustomEvent<any>>;
122
+ }
123
+ export declare class IxChip {
124
+ protected z: NgZone;
125
+ protected el: HTMLElement;
126
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
127
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxChip, never>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxChip, "ix-chip", never, { "active": "active"; "background": "background"; "closable": "closable"; "color": "color"; "icon": "icon"; "outline": "outline"; "variant": "variant"; }, {}, never, ["*"], false>;
129
+ }
130
+ export declare interface IxCounterPill extends Components.IxCounterPill {
131
+ }
132
+ export declare class IxCounterPill {
133
+ protected z: NgZone;
134
+ protected el: HTMLElement;
135
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
136
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxCounterPill, never>;
137
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCounterPill, "ix-counter-pill", never, { "alignLeft": "alignLeft"; "background": "background"; "color": "color"; "outline": "outline"; "variant": "variant"; }, {}, never, ["*"], false>;
138
+ }
139
+ export declare interface IxDatePicker extends Components.IxDatePicker {
140
+ /**
141
+ * Date change event
142
+
143
+ If datepicker is in range mode the event detail will be sperated with a `-` e.g.
144
+ `2022/10/22 - 2022/10/24` (start and end). If range mode is choosen consider to use `dateRangeChange`. @depracted String output will be removed. Set ´doneEventDelimiter´ to undefined or null to get date change object instead of a string
145
+ */
146
+ dateChange: EventEmitter<CustomEvent<IDatePickerLegacyDateChangeEvent>>;
147
+ /**
148
+ * Date range change.
149
+ Only triggered if datepicker is in range mode @since 1.1.0
150
+ */
151
+ dateRangeChange: EventEmitter<CustomEvent<IDatePickerDateChangeEvent>>;
152
+ /**
153
+ * Date selection confirmed via button action @deprecated Use `dateSelect`
154
+ */
155
+ done: EventEmitter<CustomEvent<string>>;
156
+ /**
157
+ * Date selection confirmed via button action @since 1.1.0
158
+ */
159
+ dateSelect: EventEmitter<CustomEvent<IDatePickerDateChangeEvent>>;
160
+ }
161
+ export declare class IxDatePicker {
162
+ protected z: NgZone;
163
+ protected el: HTMLElement;
164
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
165
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxDatePicker, never>;
166
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDatePicker, "ix-date-picker", never, { "corners": "corners"; "eventDelimiter": "eventDelimiter"; "format": "format"; "from": "from"; "individual": "individual"; "maxDate": "maxDate"; "minDate": "minDate"; "range": "range"; "textSelectDate": "textSelectDate"; "to": "to"; }, {}, never, ["*"], false>;
167
+ }
168
+ export declare interface IxDateTimeCard extends Components.IxDateTimeCard {
169
+ }
170
+ export declare class IxDateTimeCard {
171
+ protected z: NgZone;
172
+ protected el: HTMLElement;
173
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
174
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxDateTimeCard, never>;
175
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDateTimeCard, "ix-date-time-card", never, { "corners": "corners"; "individual": "individual"; }, {}, never, ["*"], false>;
176
+ }
177
+ export declare interface IxDatetimePicker extends Components.IxDatetimePicker {
178
+ /**
179
+ * Done event
180
+
181
+ Set `doneEventDelimiter` to null or undefine to get the typed event
182
+ */
183
+ done: EventEmitter<CustomEvent<string>>;
184
+ /**
185
+ * Time change @since 1.1.0
186
+ */
187
+ timeChange: EventEmitter<CustomEvent<string>>;
188
+ /**
189
+ * Date change @since 1.1.0
190
+ */
191
+ dateChange: EventEmitter<CustomEvent<string | Omit<IDatePickerDateTimeSelectEvent, 'time'>>>;
192
+ /**
193
+ * Date selection event is fired after confirm button is pressend @since 1.1.0
194
+ */
195
+ dateSelect: EventEmitter<CustomEvent<IDatePickerDateTimeSelectEvent>>;
196
+ }
197
+ export declare class IxDatetimePicker {
198
+ protected z: NgZone;
199
+ protected el: HTMLElement;
200
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
201
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxDatetimePicker, never>;
202
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDatetimePicker, "ix-datetime-picker", never, { "dateFormat": "dateFormat"; "eventDelimiter": "eventDelimiter"; "from": "from"; "maxDate": "maxDate"; "minDate": "minDate"; "range": "range"; "showHour": "showHour"; "showMinutes": "showMinutes"; "showSeconds": "showSeconds"; "showTimeReference": "showTimeReference"; "textSelectDate": "textSelectDate"; "time": "time"; "timeFormat": "timeFormat"; "timeReference": "timeReference"; "to": "to"; }, {}, never, ["*"], false>;
203
+ }
204
+ export declare interface IxDrawer extends Components.IxDrawer {
205
+ /**
206
+ * Fire event after drawer is open
207
+ */
208
+ open: EventEmitter<CustomEvent<any>>;
209
+ /**
210
+ * Fire event after drawer is close
211
+ */
212
+ drawerClose: EventEmitter<CustomEvent<any>>;
213
+ }
214
+ export declare class IxDrawer {
215
+ protected z: NgZone;
216
+ protected el: HTMLElement;
217
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
218
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxDrawer, never>;
219
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDrawer, "ix-drawer", never, { "closeOnClickOutside": "closeOnClickOutside"; "fullHeight": "fullHeight"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "show": "show"; "width": "width"; }, {}, never, ["*"], false>;
220
+ }
221
+ export declare interface IxDropdown extends Components.IxDropdown {
222
+ /**
223
+ * Fire event after visibility of dropdown has changed
224
+ */
225
+ showChanged: EventEmitter<CustomEvent<boolean>>;
226
+ }
227
+ export declare class IxDropdown {
228
+ protected z: NgZone;
229
+ protected el: HTMLElement;
230
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
231
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdown, never>;
232
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdown, "ix-dropdown", never, { "adjustDropdownWidthToReferenceWidth": "adjustDropdownWidthToReferenceWidth"; "adjustDropdownWidthToReferenceWith": "adjustDropdownWidthToReferenceWith"; "anchor": "anchor"; "closeBehavior": "closeBehavior"; "header": "header"; "placement": "placement"; "positioningStrategy": "positioningStrategy"; "show": "show"; "trigger": "trigger"; }, {}, never, ["*"], false>;
233
+ }
234
+ export declare interface IxDropdownItem extends Components.IxDropdownItem {
235
+ /**
236
+ * Click on item
237
+ */
238
+ itemClick: EventEmitter<CustomEvent<HTMLIxDropdownItemElement>>;
239
+ }
240
+ export declare class IxDropdownItem {
241
+ protected z: NgZone;
242
+ protected el: HTMLElement;
243
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
244
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownItem, never>;
245
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownItem, "ix-dropdown-item", never, { "checked": "checked"; "disabled": "disabled"; "hover": "hover"; "icon": "icon"; "label": "label"; }, {}, never, ["*"], false>;
246
+ }
247
+ export declare interface IxEventList extends Components.IxEventList {
248
+ }
249
+ export declare class IxEventList {
250
+ protected z: NgZone;
251
+ protected el: HTMLElement;
252
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
253
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxEventList, never>;
254
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxEventList, "ix-event-list", never, { "animated": "animated"; "chevron": "chevron"; "compact": "compact"; "itemHeight": "itemHeight"; }, {}, never, ["*"], false>;
255
+ }
256
+ export declare interface IxEventListItem extends Components.IxEventListItem {
257
+ /**
258
+ * Event list item click
259
+ */
260
+ itemClick: EventEmitter<CustomEvent<any>>;
261
+ }
262
+ export declare class IxEventListItem {
263
+ protected z: NgZone;
264
+ protected el: HTMLElement;
265
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
266
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxEventListItem, never>;
267
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxEventListItem, "ix-event-list-item", never, { "chevron": "chevron"; "color": "color"; "disabled": "disabled"; "opacity": "opacity"; "selected": "selected"; }, {}, never, ["*"], false>;
268
+ }
269
+ export declare interface IxExpandingSearch extends Components.IxExpandingSearch {
270
+ /**
271
+ * Value changed
272
+ */
273
+ valueChange: EventEmitter<CustomEvent<string>>;
274
+ }
275
+ export declare class IxExpandingSearch {
276
+ protected z: NgZone;
277
+ protected el: HTMLElement;
278
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
279
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxExpandingSearch, never>;
280
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "icon": "icon"; "placeholder": "placeholder"; "value": "value"; }, {}, never, ["*"], false>;
281
+ }
282
+ export declare interface IxFilterChip extends Components.IxFilterChip {
283
+ /**
284
+ * Close clicked
285
+ */
286
+ closeClick: EventEmitter<CustomEvent<void>>;
287
+ }
288
+ export declare class IxFilterChip {
289
+ protected z: NgZone;
290
+ protected el: HTMLElement;
291
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
292
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxFilterChip, never>;
293
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": "disabled"; }, {}, never, ["*"], false>;
294
+ }
295
+ export declare interface IxFlipTile extends Components.IxFlipTile {
296
+ }
297
+ export declare class IxFlipTile {
298
+ protected z: NgZone;
299
+ protected el: HTMLElement;
300
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
301
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
302
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "footer": "footer"; "state": "state"; }, {}, never, ["*"], false>;
303
+ }
304
+ export declare interface IxFlipTileContent extends Components.IxFlipTileContent {
305
+ }
306
+ export declare class IxFlipTileContent {
307
+ protected z: NgZone;
308
+ protected el: HTMLElement;
309
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
310
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTileContent, never>;
311
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTileContent, "ix-flip-tile-content", never, {}, {}, never, ["*"], false>;
312
+ }
313
+ export declare interface IxGroup extends Components.IxGroup {
314
+ /**
315
+ * Emits when whole group gets selected.
316
+ */
317
+ selectGroup: EventEmitter<CustomEvent<boolean>>;
318
+ /**
319
+ * Emits when group item gets selected.
320
+ */
321
+ selectItem: EventEmitter<CustomEvent<number>>;
322
+ /**
323
+ * Group collapsed
324
+ */
325
+ collapsedChanged: EventEmitter<CustomEvent<boolean>>;
326
+ }
327
+ export declare class IxGroup {
328
+ protected z: NgZone;
329
+ protected el: HTMLElement;
330
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
331
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxGroup, never>;
332
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxGroup, "ix-group", never, { "collapsed": "collapsed"; "expandOnHeaderClick": "expandOnHeaderClick"; "header": "header"; "index": "index"; "selected": "selected"; "subHeader": "subHeader"; "suppressHeaderSelection": "suppressHeaderSelection"; }, {}, never, ["*"], false>;
333
+ }
334
+ export declare interface IxGroupDropdownItem extends Components.IxGroupDropdownItem {
335
+ }
336
+ export declare class IxGroupDropdownItem {
337
+ protected z: NgZone;
338
+ protected el: HTMLElement;
339
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
340
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupDropdownItem, never>;
341
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupDropdownItem, "ix-group-dropdown-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"], false>;
342
+ }
343
+ export declare interface IxGroupItem extends Components.IxGroupItem {
344
+ /**
345
+ * Selection changed
346
+ */
347
+ selectedChanged: EventEmitter<CustomEvent<HTMLIxGroupItemElement>>;
348
+ }
349
+ export declare class IxGroupItem {
350
+ protected z: NgZone;
351
+ protected el: HTMLElement;
352
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
353
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupItem, never>;
354
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupItem, "ix-group-item", never, { "focusable": "focusable"; "icon": "icon"; "index": "index"; "secondaryText": "secondaryText"; "selected": "selected"; "suppressSelection": "suppressSelection"; "text": "text"; }, {}, never, ["*"], false>;
355
+ }
356
+ export declare interface IxIcon extends Components.IxIcon {
357
+ }
358
+ export declare class IxIcon {
359
+ protected z: NgZone;
360
+ protected el: HTMLElement;
361
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
362
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxIcon, never>;
363
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxIcon, "ix-icon", never, { "color": "color"; "name": "name"; "size": "size"; }, {}, never, ["*"], false>;
364
+ }
365
+ export declare interface IxIconButton extends Components.IxIconButton {
366
+ }
367
+ export declare class IxIconButton {
368
+ protected z: NgZone;
369
+ protected el: HTMLElement;
370
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
371
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxIconButton, never>;
372
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxIconButton, "ix-icon-button", never, { "color": "color"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "invisible": "invisible"; "outline": "outline"; "oval": "oval"; "selected": "selected"; "size": "size"; "type": "type"; "variant": "variant"; }, {}, never, ["*"], false>;
373
+ }
374
+ export declare interface IxInputGroup extends Components.IxInputGroup {
375
+ }
376
+ export declare class IxInputGroup {
377
+ protected z: NgZone;
378
+ protected el: HTMLElement;
379
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
380
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxInputGroup, never>;
381
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"], false>;
382
+ }
383
+ export declare interface IxKpi extends Components.IxKpi {
384
+ }
385
+ export declare class IxKpi {
386
+ protected z: NgZone;
387
+ protected el: HTMLElement;
388
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
389
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxKpi, never>;
390
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxKpi, "ix-kpi", never, { "label": "label"; "orientation": "orientation"; "state": "state"; "unit": "unit"; "value": "value"; }, {}, never, ["*"], false>;
391
+ }
392
+ export declare interface IxMapNavigation extends Components.IxMapNavigation {
393
+ /**
394
+ * Navigation toggled
395
+ */
396
+ navigationToggled: EventEmitter<CustomEvent<boolean>>;
397
+ /**
398
+ * Context menu clicked
399
+ */
400
+ contextMenuClick: EventEmitter<CustomEvent<void>>;
401
+ }
402
+ export declare class IxMapNavigation {
403
+ protected z: NgZone;
404
+ protected el: HTMLElement;
405
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
406
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigation, never>;
407
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigation, "ix-map-navigation", never, { "applicationName": "applicationName"; "hideContextMenu": "hideContextMenu"; "navigationTitle": "navigationTitle"; }, {}, never, ["*"], false>;
408
+ }
409
+ export declare interface IxMapNavigationOverlay extends Components.IxMapNavigationOverlay {
410
+ /**
411
+ * Event closed
412
+ */
413
+ closeClick: EventEmitter<CustomEvent<any>>;
414
+ }
415
+ export declare class IxMapNavigationOverlay {
416
+ protected z: NgZone;
417
+ protected el: HTMLElement;
418
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
419
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigationOverlay, never>;
420
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigationOverlay, "ix-map-navigation-overlay", never, { "color": "color"; "icon": "icon"; "name": "name"; }, {}, never, ["*"], false>;
421
+ }
422
+ export declare interface IxMenu extends Components.IxMenu {
423
+ /**
424
+ * Menu expanded
425
+ */
426
+ expandChange: EventEmitter<CustomEvent<boolean>>;
427
+ /**
428
+ * Map Sidebar expanded
429
+ */
430
+ mapExpandChange: EventEmitter<CustomEvent<boolean>>;
431
+ }
432
+ export declare class IxMenu {
433
+ protected z: NgZone;
434
+ protected el: HTMLElement;
435
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
436
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenu, never>;
437
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "applicationDescription": "applicationDescription"; "applicationName": "applicationName"; "enableMapExpand": "enableMapExpand"; "enableSettings": "enableSettings"; "enableToggleTheme": "enableToggleTheme"; "expand": "expand"; "i18nCollapse": "i18nCollapse"; "i18nExpand": "i18nExpand"; "i18nLegal": "i18nLegal"; "i18nMore": "i18nMore"; "i18nSettings": "i18nSettings"; "i18nToggleTheme": "i18nToggleTheme"; "maxVisibleMenuItems": "maxVisibleMenuItems"; "showAbout": "showAbout"; "showSettings": "showSettings"; }, {}, never, ["*"], false>;
438
+ }
439
+ export declare interface IxMenuAbout extends Components.IxMenuAbout {
440
+ /**
441
+ * About and Legal closed
442
+ */
443
+ close: EventEmitter<CustomEvent<MouseEvent>>;
444
+ }
445
+ export declare class IxMenuAbout {
446
+ protected z: NgZone;
447
+ protected el: HTMLElement;
448
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
449
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAbout, never>;
450
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAbout, "ix-menu-about", never, { "activeTabLabel": "activeTabLabel"; "label": "label"; "show": "show"; }, {}, never, ["*"], false>;
451
+ }
452
+ export declare interface IxMenuAboutItem extends Components.IxMenuAboutItem {
453
+ }
454
+ export declare class IxMenuAboutItem {
455
+ protected z: NgZone;
456
+ protected el: HTMLElement;
457
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
458
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutItem, never>;
459
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutItem, "ix-menu-about-item", never, { "label": "label"; }, {}, never, ["*"], false>;
460
+ }
461
+ export declare interface IxMenuAboutNews extends Components.IxMenuAboutNews {
462
+ /**
463
+ * Show More button is pressed
464
+ */
465
+ showMore: EventEmitter<CustomEvent<MouseEvent>>;
466
+ /**
467
+ * Popover closed
468
+ */
469
+ closePopover: EventEmitter<CustomEvent<void>>;
470
+ }
471
+ export declare class IxMenuAboutNews {
472
+ protected z: NgZone;
473
+ protected el: HTMLElement;
474
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
475
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutNews, never>;
476
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutNews, "ix-menu-about-news", never, { "aboutItemLabel": "aboutItemLabel"; "expanded": "expanded"; "i18nShowMore": "i18nShowMore"; "label": "label"; "offsetBottom": "offsetBottom"; "show": "show"; }, {}, never, ["*"], false>;
477
+ }
478
+ export declare interface IxMenuAvatar extends Components.IxMenuAvatar {
479
+ /**
480
+ * Logout click
481
+ */
482
+ logoutClick: EventEmitter<CustomEvent<any>>;
483
+ }
484
+ export declare class IxMenuAvatar {
485
+ protected z: NgZone;
486
+ protected el: HTMLElement;
487
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
488
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatar, never>;
489
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatar, "ix-menu-avatar", never, { "bottom": "bottom"; "i18nLogout": "i18nLogout"; "top": "top"; }, {}, never, ["*"], false>;
490
+ }
491
+ export declare interface IxMenuAvatarItem extends Components.IxMenuAvatarItem {
492
+ /**
493
+ * Avatar dropdown item clicked
494
+ */
495
+ itemClick: EventEmitter<CustomEvent<MouseEvent>>;
496
+ }
497
+ export declare class IxMenuAvatarItem {
498
+ protected z: NgZone;
499
+ protected el: HTMLElement;
500
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
501
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatarItem, never>;
502
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatarItem, "ix-menu-avatar-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"], false>;
503
+ }
504
+ export declare interface IxMenuItem extends Components.IxMenuItem {
505
+ }
506
+ export declare class IxMenuItem {
507
+ protected z: NgZone;
508
+ protected el: HTMLElement;
509
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
510
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuItem, never>;
511
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuItem, "ix-menu-item", never, { "active": "active"; "bottom": "bottom"; "disabled": "disabled"; "home": "home"; "notifications": "notifications"; "tabIcon": "tabIcon"; }, {}, never, ["*"], false>;
512
+ }
513
+ export declare interface IxMenuSettings extends Components.IxMenuSettings {
514
+ /**
515
+ * Popover closed
516
+ */
517
+ close: EventEmitter<CustomEvent<MouseEvent>>;
518
+ }
519
+ export declare class IxMenuSettings {
520
+ protected z: NgZone;
521
+ protected el: HTMLElement;
522
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
523
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettings, never>;
524
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettings, "ix-menu-settings", never, { "activeTabLabel": "activeTabLabel"; "label": "label"; "show": "show"; }, {}, never, ["*"], false>;
525
+ }
526
+ export declare interface IxMenuSettingsItem extends Components.IxMenuSettingsItem {
527
+ }
528
+ export declare class IxMenuSettingsItem {
529
+ protected z: NgZone;
530
+ protected el: HTMLElement;
531
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
532
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettingsItem, never>;
533
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettingsItem, "ix-menu-settings-item", never, { "label": "label"; }, {}, never, ["*"], false>;
534
+ }
535
+ export declare interface IxMessageBar extends Components.IxMessageBar {
536
+ /**
537
+ * An event emitted when the close button is clicked
538
+ */
539
+ closedChange: EventEmitter<CustomEvent<any>>;
540
+ }
541
+ export declare class IxMessageBar {
542
+ protected z: NgZone;
543
+ protected el: HTMLElement;
544
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
545
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxMessageBar, never>;
546
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMessageBar, "ix-message-bar", never, { "dismissible": "dismissible"; "type": "type"; }, {}, never, ["*"], false>;
547
+ }
548
+ export declare interface IxModal extends Components.IxModal {
549
+ /**
550
+ * Modal closed
551
+ */
552
+ closed: EventEmitter<CustomEvent<any>>;
553
+ /**
554
+ * Modal dismissed
555
+ */
556
+ dismissed: EventEmitter<CustomEvent<any>>;
557
+ }
558
+ export declare class IxModal {
559
+ protected z: NgZone;
560
+ protected el: HTMLElement;
561
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
562
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxModal, never>;
563
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModal, "ix-modal", never, { "animation": "animation"; "ariaDescribedBy": "ariaDescribedBy"; "ariaLabelledBy": "ariaLabelledBy"; "backdrop": "backdrop"; "backdropClass": "backdropClass"; "beforeDismiss": "beforeDismiss"; "centered": "centered"; "content": "content"; "headerTitle": "headerTitle"; "icon": "icon"; "iconColor": "iconColor"; "keyboard": "keyboard"; "modalDialogClass": "modalDialogClass"; "scrollable": "scrollable"; "size": "size"; "windowClass": "windowClass"; }, {}, never, ["*"], false>;
564
+ }
565
+ export declare interface IxModalContainer extends Components.IxModalContainer {
566
+ }
567
+ export declare class IxModalContainer {
568
+ protected z: NgZone;
569
+ protected el: HTMLElement;
570
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
571
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxModalContainer, never>;
572
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContainer, "ix-modal-container", never, {}, {}, never, ["*"], false>;
573
+ }
574
+ export declare interface IxModalExample extends Components.IxModalExample {
575
+ }
576
+ export declare class IxModalExample {
577
+ protected z: NgZone;
578
+ protected el: HTMLElement;
579
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
580
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxModalExample, never>;
581
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalExample, "ix-modal-example", never, {}, {}, never, ["*"], false>;
582
+ }
583
+ export declare interface IxPill extends Components.IxPill {
584
+ }
585
+ export declare class IxPill {
586
+ protected z: NgZone;
587
+ protected el: HTMLElement;
588
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
589
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxPill, never>;
590
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxPill, "ix-pill", never, { "alignLeft": "alignLeft"; "background": "background"; "color": "color"; "icon": "icon"; "outline": "outline"; "variant": "variant"; }, {}, never, ["*"], false>;
591
+ }
592
+ export declare interface IxSelect extends Components.IxSelect {
593
+ /**
594
+ * Item selection changed
595
+ */
596
+ itemSelectionChange: EventEmitter<CustomEvent<string | string[]>>;
597
+ /**
598
+ * Item added to selection
599
+ */
600
+ addItem: EventEmitter<CustomEvent<string>>;
601
+ }
602
+ export declare class IxSelect {
603
+ protected z: NgZone;
604
+ protected el: HTMLElement;
605
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
606
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
607
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "editable": "editable"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "mode": "mode"; "readonly": "readonly"; "selectedIndices": "selectedIndices"; }, {}, never, ["*"], false>;
608
+ }
609
+ export declare interface IxSelectItem extends Components.IxSelectItem {
610
+ /**
611
+ * Item clicked
612
+ */
613
+ itemClick: EventEmitter<CustomEvent<string>>;
614
+ }
615
+ export declare class IxSelectItem {
616
+ protected z: NgZone;
617
+ protected el: HTMLElement;
618
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
619
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxSelectItem, never>;
620
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSelectItem, "ix-select-item", never, { "hover": "hover"; "label": "label"; "selected": "selected"; "value": "value"; }, {}, never, ["*"], false>;
621
+ }
622
+ export declare interface IxSpinner extends Components.IxSpinner {
623
+ }
624
+ export declare class IxSpinner {
625
+ protected z: NgZone;
626
+ protected el: HTMLElement;
627
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
628
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxSpinner, never>;
629
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSpinner, "ix-spinner", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
630
+ }
631
+ export declare interface IxSplitButton extends Components.IxSplitButton {
632
+ /**
633
+ * Button clicked
634
+ */
635
+ buttonClick: EventEmitter<CustomEvent<MouseEvent>>;
636
+ }
637
+ export declare class IxSplitButton {
638
+ protected z: NgZone;
639
+ protected el: HTMLElement;
640
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
641
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButton, never>;
642
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButton, "ix-split-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "invisible": "invisible"; "label": "label"; "outline": "outline"; "placement": "placement"; "splitIcon": "splitIcon"; "variant": "variant"; }, {}, never, ["*"], false>;
643
+ }
644
+ export declare interface IxSplitButtonItem extends Components.IxSplitButtonItem {
645
+ /**
646
+ * Dropdown item clicked
647
+ */
648
+ itemClick: EventEmitter<CustomEvent<MouseEvent>>;
649
+ }
650
+ export declare class IxSplitButtonItem {
651
+ protected z: NgZone;
652
+ protected el: HTMLElement;
653
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
654
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButtonItem, never>;
655
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButtonItem, "ix-split-button-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"], false>;
656
+ }
657
+ export declare interface IxTabItem extends Components.IxTabItem {
658
+ }
659
+ export declare class IxTabItem {
660
+ protected z: NgZone;
661
+ protected el: HTMLElement;
662
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
663
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxTabItem, never>;
664
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTabItem, "ix-tab-item", never, { "counter": "counter"; "disabled": "disabled"; "icon": "icon"; "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"], false>;
665
+ }
666
+ export declare interface IxTabs extends Components.IxTabs {
667
+ }
668
+ export declare class IxTabs {
669
+ protected z: NgZone;
670
+ protected el: HTMLElement;
671
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
672
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxTabs, never>;
673
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTabs, "ix-tabs", never, { "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"], false>;
674
+ }
675
+ export declare interface IxTile extends Components.IxTile {
676
+ }
677
+ export declare class IxTile {
678
+ protected z: NgZone;
679
+ protected el: HTMLElement;
680
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
681
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxTile, never>;
682
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTile, "ix-tile", never, { "size": "size"; }, {}, never, ["*"], false>;
683
+ }
684
+ export declare interface IxTimePicker extends Components.IxTimePicker {
685
+ /**
686
+ * Time event
687
+ */
688
+ done: EventEmitter<CustomEvent<string>>;
689
+ /**
690
+ * Time change event
691
+ */
692
+ timeChange: EventEmitter<CustomEvent<string>>;
693
+ }
694
+ export declare class IxTimePicker {
695
+ protected z: NgZone;
696
+ protected el: HTMLElement;
697
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
698
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxTimePicker, never>;
699
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTimePicker, "ix-time-picker", never, { "corners": "corners"; "format": "format"; "individual": "individual"; "showHour": "showHour"; "showMinutes": "showMinutes"; "showSeconds": "showSeconds"; "showTimeReference": "showTimeReference"; "textSelectTime": "textSelectTime"; "time": "time"; "timeReference": "timeReference"; }, {}, never, ["*"], false>;
700
+ }
701
+ export declare interface IxToast extends Components.IxToast {
702
+ /**
703
+ * Toast closed
704
+ */
705
+ closeToast: EventEmitter<CustomEvent<any>>;
706
+ }
707
+ export declare class IxToast {
708
+ protected z: NgZone;
709
+ protected el: HTMLElement;
710
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
711
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxToast, never>;
712
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxToast, "ix-toast", never, { "autoClose": "autoClose"; "autoCloseDelay": "autoCloseDelay"; "icon": "icon"; "iconColor": "iconColor"; "toastTitle": "toastTitle"; "type": "type"; }, {}, never, ["*"], false>;
713
+ }
714
+ export declare interface IxToastContainer extends Components.IxToastContainer {
715
+ }
716
+ export declare class IxToastContainer {
717
+ protected z: NgZone;
718
+ protected el: HTMLElement;
719
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
720
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxToastContainer, never>;
721
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxToastContainer, "ix-toast-container", never, { "containerClass": "containerClass"; "containerId": "containerId"; "position": "position"; }, {}, never, ["*"], false>;
722
+ }
723
+ export declare interface IxToggle extends Components.IxToggle {
724
+ /**
725
+ * An event will be dispatched each time the slide-toggle changes its value.
726
+ */
727
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
728
+ }
729
+ export declare class IxToggle {
730
+ protected z: NgZone;
731
+ protected el: HTMLElement;
732
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
733
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxToggle, never>;
734
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": "checked"; "color": "color"; "disabled": "disabled"; "hideText": "hideText"; "indeterminate": "indeterminate"; "textIndeterminate": "textIndeterminate"; "textOff": "textOff"; "textOn": "textOn"; }, {}, never, ["*"], false>;
735
+ }
736
+ export declare interface IxTreeItem extends Components.IxTreeItem {
737
+ /**
738
+ * Expand/Collapsed toggled
739
+ */
740
+ toggle: EventEmitter<CustomEvent<void>>;
741
+ /**
742
+ * Clicked
743
+ */
744
+ itemClick: EventEmitter<CustomEvent<void>>;
745
+ }
746
+ export declare class IxTreeItem {
747
+ protected z: NgZone;
748
+ protected el: HTMLElement;
749
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
750
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxTreeItem, never>;
751
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTreeItem, "ix-tree-item", never, { "context": "context"; "hasChildren": "hasChildren"; "text": "text"; }, {}, never, ["*"], false>;
752
+ }
753
+ export declare interface IxUpload extends Components.IxUpload {
754
+ /**
755
+ * You get an array of Files after drop-action or browse action is finished
756
+ */
757
+ filesChanged: EventEmitter<CustomEvent<Array<File>>>;
758
+ }
759
+ export declare class IxUpload {
760
+ protected z: NgZone;
761
+ protected el: HTMLElement;
762
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
763
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxUpload, never>;
764
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxUpload, "ix-upload", never, { "accept": "accept"; "disabled": "disabled"; "i18nUploadDisabled": "i18nUploadDisabled"; "i18nUploadFile": "i18nUploadFile"; "loadingText": "loadingText"; "multiline": "multiline"; "multiple": "multiple"; "selectFileText": "selectFileText"; "state": "state"; "uploadFailedText": "uploadFailedText"; "uploadSuccessText": "uploadSuccessText"; }, {}, never, ["*"], false>;
765
+ }
766
+ export declare interface IxValidationTooltip extends Components.IxValidationTooltip {
767
+ }
768
+ export declare class IxValidationTooltip {
769
+ protected z: NgZone;
770
+ protected el: HTMLElement;
771
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
772
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxValidationTooltip, never>;
773
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxValidationTooltip, "ix-validation-tooltip", never, { "message": "message"; "placement": "placement"; }, {}, never, ["*"], false>;
774
+ }
775
+ export declare interface IxWorkflowStep extends Components.IxWorkflowStep {
776
+ }
777
+ export declare class IxWorkflowStep {
778
+ protected z: NgZone;
779
+ protected el: HTMLElement;
780
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
781
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowStep, never>;
782
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": "clickable"; "disabled": "disabled"; "position": "position"; "selected": "selected"; "status": "status"; "vertical": "vertical"; }, {}, never, ["*"], false>;
783
+ }
784
+ export declare interface IxWorkflowSteps extends Components.IxWorkflowSteps {
785
+ /**
786
+ * On step selected event
787
+ */
788
+ stepSelected: EventEmitter<CustomEvent<number>>;
789
+ }
790
+ export declare class IxWorkflowSteps {
791
+ protected z: NgZone;
792
+ protected el: HTMLElement;
793
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
794
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowSteps, never>;
795
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": "clickable"; "linear": "linear"; "selectedIndex": "selectedIndex"; "vertical": "vertical"; }, {}, never, ["*"], false>;
796
+ }