@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.
@@ -191,13 +191,14 @@ let IxApplicationHeader = class IxApplicationHeader {
191
191
  this.z = z;
192
192
  c.detach();
193
193
  this.el = r.nativeElement;
194
+ proxyOutputs(this, this.el, ['menuToggle']);
194
195
  }
195
196
  };
196
197
  /** @nocollapse */ IxApplicationHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplicationHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
197
- /** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
198
+ /** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name", showMenu: "showMenu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
198
199
  IxApplicationHeader = __decorate([
199
200
  ProxyCmp({
200
- inputs: ['name']
201
+ inputs: ['name', 'showMenu']
201
202
  })
202
203
  ], IxApplicationHeader);
203
204
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplicationHeader, decorators: [{
@@ -207,7 +208,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
207
208
  changeDetection: ChangeDetectionStrategy.OnPush,
208
209
  template: '<ng-content></ng-content>',
209
210
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
210
- inputs: ['name'],
211
+ inputs: ['name', 'showMenu'],
211
212
  }]
212
213
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
213
214
  let IxAvatar = class IxAvatar {