@pepperi-addons/ngx-lib 0.4.2-beta.70 → 0.4.2-beta.71
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/list/list.component.mjs +3 -3
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs +2 -1
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs +2 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1565,7 +1565,7 @@ class PepListComponent {
|
|
|
1565
1565
|
const uiControlField = this._layout.ControlFields[index];
|
|
1566
1566
|
uiControlField.calcTitleColumnWidthString = this.lastColumnsWidth[index].calcTitleColumnWidthString;
|
|
1567
1567
|
uiControlField.calcColumnWidthString = this.lastColumnsWidth[index].calcColumnWidthString;
|
|
1568
|
-
totalCalcColsWidth +=
|
|
1568
|
+
totalCalcColsWidth += this.lastColumnsWidth[index].calcColumnWidth;
|
|
1569
1569
|
}
|
|
1570
1570
|
widthToSet = (totalCalcColsWidth + this.getSelectionCheckBoxWidth()) + 'px';
|
|
1571
1571
|
this.setColumnsWidth(widthToSet);
|
|
@@ -2227,6 +2227,7 @@ class PepListComponent {
|
|
|
2227
2227
|
const uiControlField = this._layout.ControlFields[index];
|
|
2228
2228
|
this.lastColumnsWidth.push({
|
|
2229
2229
|
columnAPIName: uiControlField.ApiName,
|
|
2230
|
+
calcColumnWidth: uiControlField.calcColumnWidth,
|
|
2230
2231
|
calcTitleColumnWidthString: uiControlField.calcTitleColumnWidthString,
|
|
2231
2232
|
calcColumnWidthString: uiControlField.calcColumnWidthString
|
|
2232
2233
|
});
|