@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
|
@@ -2916,7 +2916,10 @@
|
|
|
2916
2916
|
var cellData;
|
|
2917
2917
|
if (Array.isArray(column.field)) {
|
|
2918
2918
|
var fieldValues = column.field.map(function (col) { return _this.resolveFieldData(record, col); });
|
|
2919
|
-
cellData = fieldValues
|
|
2919
|
+
cellData = fieldValues
|
|
2920
|
+
.flat()
|
|
2921
|
+
.filter(function (value) { return value !== null && value !== undefined; })
|
|
2922
|
+
.join(column.separator);
|
|
2920
2923
|
}
|
|
2921
2924
|
else {
|
|
2922
2925
|
cellData = _this.resolveFieldData(record, column.field);
|