@theseam/ui-common 0.2.14 → 0.2.15
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/theseam-ui-common-datatable.umd.js +2 -1
- package/bundles/theseam-ui-common-datatable.umd.js.map +1 -1
- package/datatable/theseam-ui-common-datatable.metadata.json +1 -1
- package/esm2015/datatable/datatable-export-button/datatable-export-button.component.js +4 -2
- package/fesm2015/theseam-ui-common-datatable.js +2 -1
- package/fesm2015/theseam-ui-common-datatable.js.map +1 -1
- package/package.json +1 -1
|
@@ -2627,7 +2627,8 @@
|
|
|
2627
2627
|
this._toastr.error(msg, 'Data Export');
|
|
2628
2628
|
}
|
|
2629
2629
|
var export$ = rxjs.combineLatest([
|
|
2630
|
-
this._datatable.rows$,
|
|
2630
|
+
this._datatable.rows$,
|
|
2631
|
+
this._datatable.columns$.pipe(operators.map(function (cols) { return cols.filter(function (c) { return !isInternalColumn(c); }); }))
|
|
2631
2632
|
]).pipe(operators.take(1), operators.map(function (_a) {
|
|
2632
2633
|
var _b = __read(_a, 2), rows = _b[0], columns = _b[1];
|
|
2633
2634
|
if (exporter.skipDataMapping) {
|