@breadstone/mosaik-elements-angular 0.0.39 → 0.0.40

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.
@@ -854,6 +854,26 @@ let AppComponent = class AppComponent {
854
854
  this._element.isMobile = value;
855
855
  });
856
856
  }
857
+ get hasHeader() {
858
+ // @ts-ignore - temporary fix for the type error
859
+ return this._element.hasHeader;
860
+ }
861
+ set hasHeader(value) {
862
+ this._zone.runOutsideAngular(() => {
863
+ // @ts-ignore - temporary fix for the type error
864
+ this._element.hasHeader = value;
865
+ });
866
+ }
867
+ get hasNav() {
868
+ // @ts-ignore - temporary fix for the type error
869
+ return this._element.hasNav;
870
+ }
871
+ set hasNav(value) {
872
+ this._zone.runOutsideAngular(() => {
873
+ // @ts-ignore - temporary fix for the type error
874
+ this._element.hasNav = value;
875
+ });
876
+ }
857
877
  get themeName() {
858
878
  // @ts-ignore - temporary fix for the type error
859
879
  return this._element.themeName;
@@ -905,12 +925,12 @@ let AppComponent = class AppComponent {
905
925
  }
906
926
  }
907
927
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: AppComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
908
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: AppComponent, isStandalone: true, selector: "mosaik-app", inputs: { theme: "theme", isNavOpen: "isNavOpen", isMobile: "isMobile", themeName: "themeName", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
928
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: AppComponent, isStandalone: true, selector: "mosaik-app", inputs: { theme: "theme", isNavOpen: "isNavOpen", isMobile: "isMobile", hasHeader: "hasHeader", hasNav: "hasNav", themeName: "themeName", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
909
929
  };
910
930
  AppComponent = __decorate$3l([
911
931
  ProxyCmp({
912
932
  defineCustomElementFn: () => customElements.define('mosaik-app', AppElement),
913
- inputs: ['theme', 'isNavOpen', 'isMobile', 'themeName', 'dir', 'lang'],
933
+ inputs: ['theme', 'isNavOpen', 'isMobile', 'hasHeader', 'hasNav', 'themeName', 'dir', 'lang'],
914
934
  methods: ['adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
915
935
  }),
916
936
  __metadata$3l("design:paramtypes", [])
@@ -922,7 +942,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImpor
922
942
  standalone: true,
923
943
  changeDetection: ChangeDetectionStrategy.OnPush,
924
944
  template: '<ng-content></ng-content>',
925
- inputs: ['theme', 'isNavOpen', 'isMobile', 'themeName', 'dir', 'lang'],
945
+ inputs: ['theme', 'isNavOpen', 'isMobile', 'hasHeader', 'hasNav', 'themeName', 'dir', 'lang'],
926
946
  outputs: ['connected', 'disconnected', 'changed']
927
947
  }]
928
948
  }], ctorParameters: () => [], propDecorators: { theme: [{
@@ -931,6 +951,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImpor
931
951
  type: Input
932
952
  }], isMobile: [{
933
953
  type: Input
954
+ }], hasHeader: [{
955
+ type: Input
956
+ }], hasNav: [{
957
+ type: Input
934
958
  }], themeName: [{
935
959
  type: Input
936
960
  }], dir: [{