ui-kit-ck-consultant 0.6.23 → 0.6.25

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.
@@ -897,11 +897,8 @@ var Table = /*#__PURE__*/function (_React$Component) {
897
897
 
898
898
  _this.getCSV = function (callback) {
899
899
  var dataCSV = '';
900
- console.log(_this.props);
901
900
 
902
901
  if (_this.props && _this.props.children) {
903
- console.log(_assertThisInitialized(_this));
904
-
905
902
  var table = _assertThisInitialized(_this);
906
903
 
907
904
  if (table) {
@@ -918,8 +915,11 @@ var Table = /*#__PURE__*/function (_React$Component) {
918
915
  return row.type.name === 'Tr';
919
916
  });
920
917
 
918
+ console.log(headerRow);
919
+
921
920
  if (headerRow) {
922
921
  var headers = _this.getArray(headerRow.props.children).map(function (th) {
922
+ console.log(_this.extractText(th.props.children), th.props.children);
923
923
  return th.props && th.props.children ? _this.extractText(th.props.children) : '';
924
924
  }).join(';');
925
925