@yelon/bis 15.0.0-beta.6 → 15.1.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.
@@ -1174,7 +1174,7 @@ class YunzaiLayoutBasicComponent {
1174
1174
  if (!this.state.display.nav) {
1175
1175
  cascadingStyleSheet = {
1176
1176
  ...cascadingStyleSheet,
1177
- top: 0
1177
+ top: '0px'
1178
1178
  };
1179
1179
  }
1180
1180
  if (!this.state.display.aside) {
@@ -1257,6 +1257,12 @@ class YunzaiLayoutBasicComponent {
1257
1257
  this.layoutDisplayService.listen('reuseTab', (display) => {
1258
1258
  this.state.display.reusetab = display;
1259
1259
  });
1260
+ this.layoutDisplayService.listen('nav', (display) => {
1261
+ this.state.display.nav = display;
1262
+ });
1263
+ this.layoutDisplayService.listen('aside', (display) => {
1264
+ this.state.display.aside = display;
1265
+ });
1260
1266
  }
1261
1267
  ngOnDestroy() {
1262
1268
  this.state.destroy$.complete();