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.
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -900,11 +900,8 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
900
900
|
|
901
901
|
_this.getCSV = function (callback) {
|
902
902
|
var dataCSV = '';
|
903
|
-
console.log(_this.props);
|
904
903
|
|
905
904
|
if (_this.props && _this.props.children) {
|
906
|
-
console.log(_assertThisInitialized(_this));
|
907
|
-
|
908
905
|
var table = _assertThisInitialized(_this);
|
909
906
|
|
910
907
|
if (table) {
|
@@ -921,8 +918,11 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
921
918
|
return row.type.name === 'Tr';
|
922
919
|
});
|
923
920
|
|
921
|
+
console.log(headerRow);
|
922
|
+
|
924
923
|
if (headerRow) {
|
925
924
|
var headers = _this.getArray(headerRow.props.children).map(function (th) {
|
925
|
+
console.log(_this.extractText(th.props.children), th.props.children);
|
926
926
|
return th.props && th.props.children ? _this.extractText(th.props.children) : '';
|
927
927
|
}).join(';');
|
928
928
|
|