ui-kit-ck-consultant 0.6.9 → 0.6.11

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
@@ -892,21 +892,14 @@ var Table = /*#__PURE__*/function (_React$Component) {
892
892
  _this.getArray(children.props.children).forEach(function (line) {
893
893
  if (line.props && line.props.children) {
894
894
  _this.getArray(line.props.children).forEach(function (column) {
895
- if (column && column.props && column.props.children && column.props.children.props && column.props.children.props.text) {
896
- console.log('t1', column.props.children.props.text);
895
+ if (column && column.props && column.props.children && column.props.children.props && column.props.children.props.children && column.props.children.props.children.props && column.props.children.props.children.props.children && column.props.children.props.children.props.children.props && column.props.children.props.children.props.children.props.text) {
896
+ dataCSV += column.props.children.props.text + ";";
897
+ } else if (column && column.props && column.props.children && column.props.children.props && column.props.children.props.children && column.props.children.props.children.props && column.props.children.props.children.props.text) {
898
+ dataCSV += column.props.children.props.text + ";";
899
+ } else if (column && column.props && column.props.children && column.props.children.props && column.props.children.props.text) {
897
900
  dataCSV += column.props.children.props.text + ";";
898
901
  } else if (column && column.props && column.props.children) {
899
- var child = column.props.children;
900
-
901
- if (typeof child === 'string' || typeof child === 'number') {
902
- console.log('t12', child);
903
- dataCSV += child + ";";
904
- } else if (React__default.isValidElement(child) && child.props && child.props.children) {
905
- console.log('t13', "" + child.props.children.toString());
906
- dataCSV += child.props.children.toString() + ";";
907
- } else {
908
- dataCSV += ';';
909
- }
902
+ dataCSV += column.props.children.toString() + ";";
910
903
  } else {
911
904
  dataCSV += ';';
912
905
  }