@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.
- package/bundles/seniorsistemas-angular-components.umd.js +4 -1
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/utils/export-utils.js +5 -2
- package/esm5/components/utils/export-utils.js +5 -2
- package/fesm2015/seniorsistemas-angular-components.js +4 -1
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +4 -1
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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);
|