@seniorsistemas/angular-components 14.16.30 → 14.16.31

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.
@@ -2743,7 +2743,10 @@ var ExportUtils = /** @class */ (function () {
2743
2743
  var cellData;
2744
2744
  if (Array.isArray(column.field)) {
2745
2745
  var fieldValues = column.field.map(function (col) { return _this.resolveFieldData(record, col); });
2746
- cellData = fieldValues.flat().join(column.separator);
2746
+ cellData = fieldValues
2747
+ .flat()
2748
+ .filter(function (value) { return value !== null && value !== undefined; })
2749
+ .join(column.separator);
2747
2750
  }
2748
2751
  else {
2749
2752
  cellData = _this.resolveFieldData(record, column.field);