@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
|
@@ -1566,9 +1566,10 @@ class PepListComponent {
|
|
|
1566
1566
|
if (uiControlsAreTheSame) {
|
|
1567
1567
|
for (let index = 0; index < this._layout.ControlFields.length; index++) {
|
|
1568
1568
|
const uiControlField = this._layout.ControlFields[index];
|
|
1569
|
+
uiControlField.calcColumnWidth = this.lastColumnsWidth[index].calcColumnWidth;
|
|
1569
1570
|
uiControlField.calcTitleColumnWidthString = this.lastColumnsWidth[index].calcTitleColumnWidthString;
|
|
1570
1571
|
uiControlField.calcColumnWidthString = this.lastColumnsWidth[index].calcColumnWidthString;
|
|
1571
|
-
totalCalcColsWidth +=
|
|
1572
|
+
totalCalcColsWidth += this.lastColumnsWidth[index].calcColumnWidth;
|
|
1572
1573
|
}
|
|
1573
1574
|
widthToSet = (totalCalcColsWidth + this.getSelectionCheckBoxWidth()) + 'px';
|
|
1574
1575
|
this.setColumnsWidth(widthToSet);
|
|
@@ -2236,6 +2237,7 @@ class PepListComponent {
|
|
|
2236
2237
|
const uiControlField = this._layout.ControlFields[index];
|
|
2237
2238
|
this.lastColumnsWidth.push({
|
|
2238
2239
|
columnAPIName: uiControlField.ApiName,
|
|
2240
|
+
calcColumnWidth: uiControlField.calcColumnWidth,
|
|
2239
2241
|
calcTitleColumnWidthString: uiControlField.calcTitleColumnWidthString,
|
|
2240
2242
|
calcColumnWidthString: uiControlField.calcColumnWidthString
|
|
2241
2243
|
});
|