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