@pepperi-addons/ngx-composite-lib 0.4.2-beta.87 → 0.4.2-beta.88

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.
@@ -1047,13 +1047,13 @@ class SectionComponent extends BaseDestroyerDirective {
1047
1047
  }
1048
1048
  return res;
1049
1049
  }
1050
- setSectionColumnStyle(sectionColumn, columnIndex, isHorizontalView) {
1050
+ setSectionColumnStyle(sectionColumnElement, columnIndex, isHorizontalView) {
1051
1051
  if (isHorizontalView) {
1052
1052
  const gridColumnValue = this.getCssGridColumn(columnIndex);
1053
- this.renderer.setStyle(sectionColumn.nativeElement, 'grid-column', gridColumnValue);
1053
+ this.renderer.setStyle(sectionColumnElement, 'grid-column', gridColumnValue);
1054
1054
  }
1055
1055
  else {
1056
- this.renderer.setStyle(sectionColumn.nativeElement, 'grid-column', 'unset');
1056
+ this.renderer.setStyle(sectionColumnElement, 'grid-column', 'unset');
1057
1057
  }
1058
1058
  }
1059
1059
  refreshSplit() {