@siemens/ix-angular 1.5.0-beta.0 → 1.5.0-beta.2
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 +27 -6
- package/declare-components.d.ts +1 -1
- package/esm2020/components.mjs +40 -14
- package/esm2020/declare-components.mjs +2 -1
- package/esm2020/module.mjs +2 -2
- package/esm2020/toast/toast.service.mjs +8 -2
- package/fesm2015/siemens-ix-angular.mjs +48 -16
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +48 -16
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/module.d.ts +1 -1
- package/package.json +2 -2
- package/toast/toast.service.d.ts +2 -0
package/components.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export declare class IxBlind {
|
|
|
52
52
|
protected el: HTMLElement;
|
|
53
53
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBlind, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "label": "label"; }, {}, never, ["*"]>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
56
56
|
}
|
|
57
57
|
export declare interface IxBlind extends Components.IxBlind {
|
|
58
58
|
/**
|
|
@@ -124,9 +124,13 @@ export declare class IxChip {
|
|
|
124
124
|
}
|
|
125
125
|
export declare interface IxChip extends Components.IxChip {
|
|
126
126
|
/**
|
|
127
|
-
* Fire event if close button is clicked
|
|
127
|
+
* Fire event if close button is clicked @deprecated Will be removed in 2.0.0. Use `closeChip`
|
|
128
128
|
*/
|
|
129
129
|
close: EventEmitter<CustomEvent<any>>;
|
|
130
|
+
/**
|
|
131
|
+
* Fire event if close button is clicked @since 1.5.0
|
|
132
|
+
*/
|
|
133
|
+
closeChip: EventEmitter<CustomEvent<any>>;
|
|
130
134
|
}
|
|
131
135
|
export declare class IxCounterPill {
|
|
132
136
|
protected z: NgZone;
|
|
@@ -149,7 +153,7 @@ export declare interface IxDatePicker extends Components.IxDatePicker {
|
|
|
149
153
|
* Date change event
|
|
150
154
|
|
|
151
155
|
If datepicker is in range mode the event detail will be sperated with a `-` e.g.
|
|
152
|
-
`2022/10/22 - 2022/10/24` (start and end). If range mode is
|
|
156
|
+
`2022/10/22 - 2022/10/24` (start and end). If range mode is chosen consider to use `dateRangeChange`. @deprecated String output will be removed. Set ´doneEventDelimiter´ to undefined or null to get date change object instead of a string
|
|
153
157
|
*/
|
|
154
158
|
dateChange: EventEmitter<CustomEvent<IIxDatePickerLegacyDateChangeEvent>>;
|
|
155
159
|
/**
|
|
@@ -316,7 +320,7 @@ export declare class IxFlipTile {
|
|
|
316
320
|
protected el: HTMLElement;
|
|
317
321
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
318
322
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
|
|
319
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "footer": "footer"; "state": "state"; }, {}, never, ["*"]>;
|
|
323
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "footer": "footer"; "height": "height"; "state": "state"; "width": "width"; }, {}, never, ["*"]>;
|
|
320
324
|
}
|
|
321
325
|
export declare interface IxFlipTile extends Components.IxFlipTile {
|
|
322
326
|
}
|
|
@@ -608,6 +612,23 @@ export declare class IxModalExample {
|
|
|
608
612
|
}
|
|
609
613
|
export declare interface IxModalExample extends Components.IxModalExample {
|
|
610
614
|
}
|
|
615
|
+
export declare class IxPagination {
|
|
616
|
+
protected z: NgZone;
|
|
617
|
+
protected el: HTMLElement;
|
|
618
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
619
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxPagination, never>;
|
|
620
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxPagination, "ix-pagination", never, { "advanced": "advanced"; "count": "count"; "i18nItems": "i18nItems"; "i18nOf": "i18nOf"; "i18nPage": "i18nPage"; "itemCount": "itemCount"; "selectedPage": "selectedPage"; "showItemCount": "showItemCount"; }, {}, never, ["*"]>;
|
|
621
|
+
}
|
|
622
|
+
export declare interface IxPagination extends Components.IxPagination {
|
|
623
|
+
/**
|
|
624
|
+
* Page selection event
|
|
625
|
+
*/
|
|
626
|
+
pageSelected: EventEmitter<CustomEvent<number>>;
|
|
627
|
+
/**
|
|
628
|
+
* Item count change event
|
|
629
|
+
*/
|
|
630
|
+
itemCountChanged: EventEmitter<CustomEvent<number>>;
|
|
631
|
+
}
|
|
611
632
|
export declare class IxPill {
|
|
612
633
|
protected z: NgZone;
|
|
613
634
|
protected el: HTMLElement;
|
|
@@ -622,7 +643,7 @@ export declare class IxSelect {
|
|
|
622
643
|
protected el: HTMLElement;
|
|
623
644
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
624
645
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
|
|
625
|
-
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, ["*"]>;
|
|
646
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "editable": "editable"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "mode": "mode"; "readonly": "readonly"; "selectedIndices": "selectedIndices"; }, {}, never, ["*"]>;
|
|
626
647
|
}
|
|
627
648
|
export declare interface IxSelect extends Components.IxSelect {
|
|
628
649
|
/**
|
|
@@ -766,7 +787,7 @@ export declare class IxTooltip {
|
|
|
766
787
|
protected el: HTMLElement;
|
|
767
788
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
768
789
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTooltip, never>;
|
|
769
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTooltip, "ix-tooltip", never, { "for": "for"; "interactive": "interactive"; "titleContent": "titleContent"; }, {}, never, ["*"]>;
|
|
790
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTooltip, "ix-tooltip", never, { "for": "for"; "interactive": "interactive"; "placement": "placement"; "titleContent": "titleContent"; }, {}, never, ["*"]>;
|
|
770
791
|
}
|
|
771
792
|
export declare interface IxTooltip extends Components.IxTooltip {
|
|
772
793
|
}
|
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.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.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)[];
|