@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.
@@ -2627,7 +2627,8 @@
2627
2627
  this._toastr.error(msg, 'Data Export');
2628
2628
  }
2629
2629
  var export$ = rxjs.combineLatest([
2630
- this._datatable.rows$, this._datatable.columns$
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) {