@siemens/ix-angular 1.5.0-beta.4 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components.d.ts +124 -1
- package/declare-components.d.ts +1 -1
- package/esm2020/components.mjs +277 -5
- package/esm2020/declare-components.mjs +12 -1
- package/esm2020/module.mjs +2 -2
- package/fesm2015/siemens-ix-angular.mjs +278 -6
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +278 -6
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/module.d.ts +1 -1
- package/package.json +3 -3
package/components.d.ts
CHANGED
|
@@ -7,6 +7,15 @@ import type { DateChangeEvent as IIxDatePickerDateChangeEvent } from '@siemens/i
|
|
|
7
7
|
import type { DateTimeDateChangeEvent as IIxDatetimePickerDateTimeDateChangeEvent } from '@siemens/ix';
|
|
8
8
|
import type { DateTimeSelectEvent as IIxDatetimePickerDateTimeSelectEvent } from '@siemens/ix';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class IxActionCard {
|
|
11
|
+
protected z: NgZone;
|
|
12
|
+
protected el: HTMLElement;
|
|
13
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxActionCard, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxActionCard, "ix-action-card", never, { "heading": "heading"; "icon": "icon"; "selected": "selected"; "subheading": "subheading"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
16
|
+
}
|
|
17
|
+
export declare interface IxActionCard extends Components.IxActionCard {
|
|
18
|
+
}
|
|
10
19
|
export declare class IxAnimatedTab {
|
|
11
20
|
protected z: NgZone;
|
|
12
21
|
protected el: HTMLElement;
|
|
@@ -98,6 +107,67 @@ export declare class IxButton {
|
|
|
98
107
|
}
|
|
99
108
|
export declare interface IxButton extends Components.IxButton {
|
|
100
109
|
}
|
|
110
|
+
export declare class IxCard {
|
|
111
|
+
protected z: NgZone;
|
|
112
|
+
protected el: HTMLElement;
|
|
113
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxCard, never>;
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCard, "ix-card", never, { "variant": "variant"; }, {}, never, ["*"]>;
|
|
116
|
+
}
|
|
117
|
+
export declare interface IxCard extends Components.IxCard {
|
|
118
|
+
}
|
|
119
|
+
export declare class IxCardAccordion {
|
|
120
|
+
protected z: NgZone;
|
|
121
|
+
protected el: HTMLElement;
|
|
122
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
123
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxCardAccordion, never>;
|
|
124
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardAccordion, "ix-card-accordion", never, {}, {}, never, ["*"]>;
|
|
125
|
+
}
|
|
126
|
+
export declare interface IxCardAccordion extends Components.IxCardAccordion {
|
|
127
|
+
}
|
|
128
|
+
export declare class IxCardContent {
|
|
129
|
+
protected z: NgZone;
|
|
130
|
+
protected el: HTMLElement;
|
|
131
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
132
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxCardContent, never>;
|
|
133
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardContent, "ix-card-content", never, {}, {}, never, ["*"]>;
|
|
134
|
+
}
|
|
135
|
+
export declare interface IxCardContent extends Components.IxCardContent {
|
|
136
|
+
}
|
|
137
|
+
export declare class IxCardList {
|
|
138
|
+
protected z: NgZone;
|
|
139
|
+
protected el: HTMLElement;
|
|
140
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
141
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxCardList, never>;
|
|
142
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardList, "ix-card-list", never, { "collapse": "collapse"; "i18nMoreCards": "i18nMoreCards"; "i18nShowAll": "i18nShowAll"; "label": "label"; "listStyle": "listStyle"; "showAllCount": "showAllCount"; "suppressOverflowHandling": "suppressOverflowHandling"; }, {}, never, ["*"]>;
|
|
143
|
+
}
|
|
144
|
+
export declare interface IxCardList extends Components.IxCardList {
|
|
145
|
+
/**
|
|
146
|
+
* Fire event when the collapse state is changed by the user
|
|
147
|
+
*/
|
|
148
|
+
collapseChanged: EventEmitter<CustomEvent<boolean>>;
|
|
149
|
+
/**
|
|
150
|
+
* Fire event when the collapse state is changed by the user
|
|
151
|
+
*/
|
|
152
|
+
showAllClick: EventEmitter<CustomEvent<{
|
|
153
|
+
nativeEvent: MouseEvent;
|
|
154
|
+
}>>;
|
|
155
|
+
/**
|
|
156
|
+
* Fire event when the show more card is clicked.
|
|
157
|
+
*/
|
|
158
|
+
showMoreCardClick: EventEmitter<CustomEvent<{
|
|
159
|
+
nativeEvent: MouseEvent;
|
|
160
|
+
}>>;
|
|
161
|
+
}
|
|
162
|
+
export declare class IxCardTitle {
|
|
163
|
+
protected z: NgZone;
|
|
164
|
+
protected el: HTMLElement;
|
|
165
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
166
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxCardTitle, never>;
|
|
167
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardTitle, "ix-card-title", never, {}, {}, never, ["*"]>;
|
|
168
|
+
}
|
|
169
|
+
export declare interface IxCardTitle extends Components.IxCardTitle {
|
|
170
|
+
}
|
|
101
171
|
export declare class IxCategoryFilter {
|
|
102
172
|
protected z: NgZone;
|
|
103
173
|
protected el: HTMLElement;
|
|
@@ -132,6 +202,19 @@ export declare interface IxChip extends Components.IxChip {
|
|
|
132
202
|
*/
|
|
133
203
|
closeChip: EventEmitter<CustomEvent<any>>;
|
|
134
204
|
}
|
|
205
|
+
export declare class IxContentHeader {
|
|
206
|
+
protected z: NgZone;
|
|
207
|
+
protected el: HTMLElement;
|
|
208
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
209
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxContentHeader, never>;
|
|
210
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxContentHeader, "ix-content-header", never, { "hasBackButton": "hasBackButton"; "headerSubtitle": "headerSubtitle"; "headerTitle": "headerTitle"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
211
|
+
}
|
|
212
|
+
export declare interface IxContentHeader extends Components.IxContentHeader {
|
|
213
|
+
/**
|
|
214
|
+
* Triggered when back button is clicked
|
|
215
|
+
*/
|
|
216
|
+
backButtonClick: EventEmitter<CustomEvent<void>>;
|
|
217
|
+
}
|
|
135
218
|
export declare class IxCounterPill {
|
|
136
219
|
protected z: NgZone;
|
|
137
220
|
protected el: HTMLElement;
|
|
@@ -267,6 +350,19 @@ export declare class IxDropdownQuickActions {
|
|
|
267
350
|
}
|
|
268
351
|
export declare interface IxDropdownQuickActions extends Components.IxDropdownQuickActions {
|
|
269
352
|
}
|
|
353
|
+
export declare class IxEmptyState {
|
|
354
|
+
protected z: NgZone;
|
|
355
|
+
protected el: HTMLElement;
|
|
356
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
357
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxEmptyState, never>;
|
|
358
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxEmptyState, "ix-empty-state", never, { "action": "action"; "header": "header"; "icon": "icon"; "layout": "layout"; "subHeader": "subHeader"; }, {}, never, ["*"]>;
|
|
359
|
+
}
|
|
360
|
+
export declare interface IxEmptyState extends Components.IxEmptyState {
|
|
361
|
+
/**
|
|
362
|
+
* Empty state action click event
|
|
363
|
+
*/
|
|
364
|
+
actionClick: EventEmitter<CustomEvent<void>>;
|
|
365
|
+
}
|
|
270
366
|
export declare class IxEventList {
|
|
271
367
|
protected z: NgZone;
|
|
272
368
|
protected el: HTMLElement;
|
|
@@ -294,7 +390,7 @@ export declare class IxExpandingSearch {
|
|
|
294
390
|
protected el: HTMLElement;
|
|
295
391
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
296
392
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxExpandingSearch, never>;
|
|
297
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "icon": "icon"; "placeholder": "placeholder"; "value": "value"; }, {}, never, ["*"]>;
|
|
393
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": "fullWidth"; "icon": "icon"; "placeholder": "placeholder"; "value": "value"; }, {}, never, ["*"]>;
|
|
298
394
|
}
|
|
299
395
|
export declare interface IxExpandingSearch extends Components.IxExpandingSearch {
|
|
300
396
|
/**
|
|
@@ -412,6 +508,24 @@ export declare class IxInputGroup {
|
|
|
412
508
|
}
|
|
413
509
|
export declare interface IxInputGroup extends Components.IxInputGroup {
|
|
414
510
|
}
|
|
511
|
+
export declare class IxKeyValue {
|
|
512
|
+
protected z: NgZone;
|
|
513
|
+
protected el: HTMLElement;
|
|
514
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
515
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValue, never>;
|
|
516
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValue, "ix-key-value", never, { "icon": "icon"; "label": "label"; "labelPosition": "labelPosition"; "value": "value"; }, {}, never, ["*"]>;
|
|
517
|
+
}
|
|
518
|
+
export declare interface IxKeyValue extends Components.IxKeyValue {
|
|
519
|
+
}
|
|
520
|
+
export declare class IxKeyValueList {
|
|
521
|
+
protected z: NgZone;
|
|
522
|
+
protected el: HTMLElement;
|
|
523
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
524
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValueList, never>;
|
|
525
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValueList, "ix-key-value-list", never, { "striped": "striped"; }, {}, never, ["*"]>;
|
|
526
|
+
}
|
|
527
|
+
export declare interface IxKeyValueList extends Components.IxKeyValueList {
|
|
528
|
+
}
|
|
415
529
|
export declare class IxKpi {
|
|
416
530
|
protected z: NgZone;
|
|
417
531
|
protected el: HTMLElement;
|
|
@@ -638,6 +752,15 @@ export declare class IxPill {
|
|
|
638
752
|
}
|
|
639
753
|
export declare interface IxPill extends Components.IxPill {
|
|
640
754
|
}
|
|
755
|
+
export declare class IxPushCard {
|
|
756
|
+
protected z: NgZone;
|
|
757
|
+
protected el: HTMLElement;
|
|
758
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
759
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxPushCard, never>;
|
|
760
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxPushCard, "ix-push-card", never, { "heading": "heading"; "icon": "icon"; "notification": "notification"; "subheading": "subheading"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
761
|
+
}
|
|
762
|
+
export declare interface IxPushCard extends Components.IxPushCard {
|
|
763
|
+
}
|
|
641
764
|
export declare class IxSelect {
|
|
642
765
|
protected z: NgZone;
|
|
643
766
|
protected el: HTMLElement;
|
package/declare-components.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.IxAnimatedTab | typeof d.IxAnimatedTabs | typeof d.IxApplicationHeader | typeof d.IxBasicNavigation | typeof d.IxBlind | typeof d.IxBreadcrumb | typeof d.IxBreadcrumbItem | typeof d.IxButton | typeof d.IxCategoryFilter | typeof d.IxChip | typeof d.IxCounterPill | typeof d.IxDatePicker | typeof d.IxDatetimePicker | typeof d.IxDivider | typeof d.IxDrawer | typeof d.IxDropdown | typeof d.IxDropdownButton | typeof d.IxDropdownItem | typeof d.IxDropdownQuickActions | typeof d.IxEventList | typeof d.IxEventListItem | typeof d.IxExpandingSearch | typeof d.IxFilterChip | typeof d.IxFlipTile | typeof d.IxFlipTileContent | typeof d.IxGroup | typeof d.IxGroupContextMenu | typeof d.IxGroupDropdownItem | typeof d.IxGroupItem | typeof d.IxIcon | typeof d.IxIconButton | typeof d.IxInputGroup | typeof d.IxKpi | typeof d.IxMapNavigation | typeof d.IxMapNavigationOverlay | typeof d.IxMenu | typeof d.IxMenuAbout | typeof d.IxMenuAboutItem | typeof d.IxMenuAboutNews | typeof d.IxMenuAvatar | typeof d.IxMenuAvatarItem | typeof d.IxMenuItem | typeof d.IxMenuSettings | typeof d.IxMenuSettingsItem | typeof d.IxMessageBar | typeof d.IxModal | typeof d.IxModalContainer | typeof d.IxModalExample | typeof d.IxPagination | typeof d.IxPill | typeof d.IxSelect | typeof d.IxSelectItem | typeof d.IxSpinner | typeof d.IxSplitButton | typeof d.IxSplitButtonItem | typeof d.IxTabItem | typeof d.IxTabs | typeof d.IxTile | typeof d.IxTimePicker | typeof d.IxToast | typeof d.IxToastContainer | typeof d.IxToggle | typeof d.IxTooltip | typeof d.IxTreeItem | typeof d.IxUpload | typeof d.IxValidationTooltip | typeof d.IxWorkflowStep | typeof d.IxWorkflowSteps)[];
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.IxActionCard | typeof d.IxAnimatedTab | typeof d.IxAnimatedTabs | typeof d.IxApplicationHeader | typeof d.IxBasicNavigation | typeof d.IxBlind | typeof d.IxBreadcrumb | typeof d.IxBreadcrumbItem | typeof d.IxButton | typeof d.IxCard | typeof d.IxCardAccordion | typeof d.IxCardContent | typeof d.IxCardList | typeof d.IxCardTitle | typeof d.IxCategoryFilter | typeof d.IxChip | typeof d.IxContentHeader | typeof d.IxCounterPill | typeof d.IxDatePicker | typeof d.IxDatetimePicker | typeof d.IxDivider | typeof d.IxDrawer | typeof d.IxDropdown | typeof d.IxDropdownButton | typeof d.IxDropdownItem | typeof d.IxDropdownQuickActions | typeof d.IxEmptyState | typeof d.IxEventList | typeof d.IxEventListItem | typeof d.IxExpandingSearch | typeof d.IxFilterChip | typeof d.IxFlipTile | typeof d.IxFlipTileContent | typeof d.IxGroup | typeof d.IxGroupContextMenu | typeof d.IxGroupDropdownItem | typeof d.IxGroupItem | typeof d.IxIcon | typeof d.IxIconButton | typeof d.IxInputGroup | typeof d.IxKeyValue | typeof d.IxKeyValueList | typeof d.IxKpi | typeof d.IxMapNavigation | typeof d.IxMapNavigationOverlay | typeof d.IxMenu | typeof d.IxMenuAbout | typeof d.IxMenuAboutItem | typeof d.IxMenuAboutNews | typeof d.IxMenuAvatar | typeof d.IxMenuAvatarItem | typeof d.IxMenuItem | typeof d.IxMenuSettings | typeof d.IxMenuSettingsItem | typeof d.IxMessageBar | typeof d.IxModal | typeof d.IxModalContainer | typeof d.IxModalExample | typeof d.IxPagination | typeof d.IxPill | typeof d.IxPushCard | typeof d.IxSelect | typeof d.IxSelectItem | typeof d.IxSpinner | typeof d.IxSplitButton | typeof d.IxSplitButtonItem | typeof d.IxTabItem | typeof d.IxTabs | typeof d.IxTile | typeof d.IxTimePicker | typeof d.IxToast | typeof d.IxToastContainer | typeof d.IxToggle | typeof d.IxTooltip | typeof d.IxTreeItem | typeof d.IxUpload | typeof d.IxValidationTooltip | typeof d.IxWorkflowStep | typeof d.IxWorkflowSteps)[];
|