ui-kit-ck-consultant 0.6.61 → 0.6.63

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/dist/index.js CHANGED
@@ -894,19 +894,14 @@ var Table = /*#__PURE__*/function (_React$Component) {
894
894
  var dataCSV = '';
895
895
 
896
896
  if (_this.props.data) {
897
- Object.keys(_this.props.data).forEach(function (key) {
898
- var rowData = _this.props.data[key].map(function (cell) {
899
- return cell ? _this.extractText(cell) : '';
900
- }).join(';');
897
+ var headers = Object.keys(_this.props.data[0]);
898
+ dataCSV += headers.join(';') + '\n';
901
899
 
902
- dataCSV += rowData + '\n';
903
- });
904
-
905
- _this.props.data.map(function (row) {
906
- var rowData = row.map(function (cell) {
907
- return cell ? _this.extractText(cell) : '';
908
- }).join(';');
909
- dataCSV += rowData + '\n';
900
+ _this.props.data.forEach(function (row) {
901
+ var values = headers.map(function (key) {
902
+ return row[key] !== undefined ? row[key] : '';
903
+ });
904
+ dataCSV += values.join(';') + '\n';
910
905
  });
911
906
  } else {
912
907
  console.log('this.props', _this.props);