@siemens/ix-angular 2.4.1 → 2.5.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 CHANGED
@@ -38,9 +38,13 @@ export declare class IxApplicationHeader {
38
38
  protected el: HTMLElement;
39
39
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<IxApplicationHeader, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": "name"; }, {}, never, ["*"]>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": "name"; "showMenu": "showMenu"; }, {}, never, ["*"]>;
42
42
  }
43
43
  export declare interface IxApplicationHeader extends Components.IxApplicationHeader {
44
+ /**
45
+ * Event emitted when the menu toggle button is clicked @since 2.5.0
46
+ */
47
+ menuToggle: EventEmitter<CustomEvent<boolean>>;
44
48
  }
45
49
  export declare class IxAvatar {
46
50
  protected z: NgZone;
@@ -181,7 +185,7 @@ export declare class IxCategoryFilter {
181
185
  }
182
186
  export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
183
187
  /**
184
- * Event dispatched whenever the a category gets selected in the dropdown
188
+ * Event dispatched whenever a category gets selected in the dropdown
185
189
  */
186
190
  categoryChanged: EventEmitter<CustomEvent<string>>;
187
191
  /**
@@ -1103,7 +1107,7 @@ export declare interface IxTreeItem extends Components.IxTreeItem {
1103
1107
  */
1104
1108
  toggle: EventEmitter<CustomEvent<void>>;
1105
1109
  /**
1106
- * Clicked
1110
+ * Click on item not on the expand/collapse icon
1107
1111
  */
1108
1112
  itemClick: EventEmitter<CustomEvent<void>>;
1109
1113
  }