@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.
- package/esm2020/layout-builder/section/section.component.mjs +4 -4
- package/fesm2015/pepperi-addons-ngx-composite-lib-layout-builder.mjs +3 -3
- package/fesm2015/pepperi-addons-ngx-composite-lib-layout-builder.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-layout-builder.mjs +3 -3
- package/fesm2020/pepperi-addons-ngx-composite-lib-layout-builder.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1047,13 +1047,13 @@ class SectionComponent extends BaseDestroyerDirective {
|
|
|
1047
1047
|
}
|
|
1048
1048
|
return res;
|
|
1049
1049
|
}
|
|
1050
|
-
setSectionColumnStyle(
|
|
1050
|
+
setSectionColumnStyle(sectionColumnElement, columnIndex, isHorizontalView) {
|
|
1051
1051
|
if (isHorizontalView) {
|
|
1052
1052
|
const gridColumnValue = this.getCssGridColumn(columnIndex);
|
|
1053
|
-
this.renderer.setStyle(
|
|
1053
|
+
this.renderer.setStyle(sectionColumnElement, 'grid-column', gridColumnValue);
|
|
1054
1054
|
}
|
|
1055
1055
|
else {
|
|
1056
|
-
this.renderer.setStyle(
|
|
1056
|
+
this.renderer.setStyle(sectionColumnElement, 'grid-column', 'unset');
|
|
1057
1057
|
}
|
|
1058
1058
|
}
|
|
1059
1059
|
refreshSplit() {
|