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