@siemens/ix-angular 2.6.1 → 2.7.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
@@ -46,6 +46,10 @@ export declare interface IxApplicationHeader extends Components.IxApplicationHea
46
46
  * Event emitted when the menu toggle button is clicked @since 2.5.0
47
47
  */
48
48
  menuToggle: EventEmitter<CustomEvent<boolean>>;
49
+ /**
50
+ * Event emitted when the app switch button is clicked @since 3.0.0
51
+ */
52
+ openAppSwitch: EventEmitter<CustomEvent<void>>;
49
53
  }
50
54
  export declare class IxAvatar {
51
55
  protected z: NgZone;
@@ -286,7 +290,7 @@ export declare class IxDateDropdown {
286
290
  protected el: HTMLElement;
287
291
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
288
292
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDateDropdown, never>;
289
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDateDropdown, "ix-date-dropdown", never, { "customRangeAllowed": "customRangeAllowed"; "dateRangeId": "dateRangeId"; "dateRangeOptions": "dateRangeOptions"; "disabled": "disabled"; "format": "format"; "from": "from"; "i18nCustomItem": "i18nCustomItem"; "i18nDone": "i18nDone"; "i18nNoRange": "i18nNoRange"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "range": "range"; "to": "to"; "weekStartIndex": "weekStartIndex"; }, {}, never, ["*"]>;
293
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDateDropdown, "ix-date-dropdown", never, { "customRangeAllowed": "customRangeAllowed"; "dateRangeId": "dateRangeId"; "dateRangeOptions": "dateRangeOptions"; "disabled": "disabled"; "format": "format"; "from": "from"; "ghost": "ghost"; "i18nCustomItem": "i18nCustomItem"; "i18nDone": "i18nDone"; "i18nNoRange": "i18nNoRange"; "loading": "loading"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "outline": "outline"; "range": "range"; "to": "to"; "variant": "variant"; "weekStartIndex": "weekStartIndex"; }, {}, never, ["*"]>;
290
294
  }
291
295
  export declare interface IxDateDropdown extends Components.IxDateDropdown {
292
296
  /**
@@ -483,7 +487,7 @@ export declare class IxExpandingSearch {
483
487
  protected el: HTMLElement;
484
488
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
485
489
  static ɵfac: i0.ɵɵFactoryDeclaration<IxExpandingSearch, never>;
486
- static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": "fullWidth"; "icon": "icon"; "placeholder": "placeholder"; "value": "value"; }, {}, never, ["*"]>;
490
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": "fullWidth"; "ghost": "ghost"; "icon": "icon"; "outline": "outline"; "placeholder": "placeholder"; "value": "value"; "variant": "variant"; }, {}, never, ["*"]>;
487
491
  }
488
492
  export declare interface IxExpandingSearch extends Components.IxExpandingSearch {
489
493
  /**
@@ -735,6 +739,10 @@ export declare interface IxMenu extends Components.IxMenu {
735
739
  * Map Sidebar expanded
736
740
  */
737
741
  mapExpandChange: EventEmitter<CustomEvent<boolean>>;
742
+ /**
743
+ * Event emitted when the app switch button is clicked @since 3.0.0
744
+ */
745
+ openAppSwitch: EventEmitter<CustomEvent<void>>;
738
746
  }
739
747
  export declare class IxMenuAbout {
740
748
  protected z: NgZone;
@@ -1041,7 +1049,7 @@ export declare class IxSelect {
1041
1049
  protected el: HTMLElement;
1042
1050
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1043
1051
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
1044
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "editable": "editable"; "helperText": "helperText"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "mode": "mode"; "name": "name"; "readonly": "readonly"; "required": "required"; "selectedIndices": "selectedIndices"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
1052
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "dropdownMaxWidth": "dropdownMaxWidth"; "dropdownWidth": "dropdownWidth"; "editable": "editable"; "helperText": "helperText"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "mode": "mode"; "name": "name"; "readonly": "readonly"; "required": "required"; "selectedIndices": "selectedIndices"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
1045
1053
  }
1046
1054
  export declare interface IxSelect extends Components.IxSelect {
1047
1055
  /**
@@ -1,5 +1,5 @@
1
1
  import { AfterViewInit, ElementRef, Injector, OnDestroy } from '@angular/core';
2
- import { ControlValueAccessor } from '@angular/forms';
2
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ValueAccessor implements ControlValueAccessor, AfterViewInit, OnDestroy {
5
5
  protected injector: Injector;
@@ -18,7 +18,9 @@ export declare class ValueAccessor implements ControlValueAccessor, AfterViewIni
18
18
  setDisabledState(isDisabled: boolean): void;
19
19
  ngOnDestroy(): void;
20
20
  ngAfterViewInit(): void;
21
+ getAssignedNgControl(): NgControl | null;
22
+ setClasses(): void;
21
23
  static ɵfac: i0.ɵɵFactoryDeclaration<ValueAccessor, never>;
22
24
  static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessor, never, never, {}, {}, never>;
23
25
  }
24
- export declare const mapNgToIxClassNames: (element: ElementRef) => void;
26
+ export declare const mapNgToIxClassNames: (element: ElementRef) => Promise<void>;