ui-kit-ck-consultant 0.6.57 → 0.6.59
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 +11 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +11 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -892,8 +892,11 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
892
892
|
|
893
893
|
_this.getCSV = function (callback) {
|
894
894
|
var dataCSV = '';
|
895
|
+
console.log('this.props', _this.props);
|
895
896
|
|
896
897
|
if (_this.props && _this.props.children) {
|
898
|
+
console.log('this.props.children', _this.props.children);
|
899
|
+
|
897
900
|
var tableChildren = _this.getArray(_this.props.children);
|
898
901
|
|
899
902
|
var allRows = tableChildren.flatMap(function (section) {
|
@@ -1089,6 +1092,8 @@ var Th = /*#__PURE__*/function (_React$Component) {
|
|
1089
1092
|
return Th;
|
1090
1093
|
}(React__default.Component);
|
1091
1094
|
|
1095
|
+
Tr.displayName = 'Th';
|
1096
|
+
|
1092
1097
|
var Td = /*#__PURE__*/function (_React$Component) {
|
1093
1098
|
_inheritsLoose(Td, _React$Component);
|
1094
1099
|
|
@@ -1115,7 +1120,9 @@ var Td = /*#__PURE__*/function (_React$Component) {
|
|
1115
1120
|
return Td;
|
1116
1121
|
}(React__default.Component);
|
1117
1122
|
|
1118
|
-
|
1123
|
+
Tr.displayName = 'Td';
|
1124
|
+
|
1125
|
+
var Tr$1 = /*#__PURE__*/function (_React$Component) {
|
1119
1126
|
_inheritsLoose(Tr, _React$Component);
|
1120
1127
|
|
1121
1128
|
function Tr() {
|
@@ -1135,6 +1142,8 @@ var Tr = /*#__PURE__*/function (_React$Component) {
|
|
1135
1142
|
return Tr;
|
1136
1143
|
}(React__default.Component);
|
1137
1144
|
|
1145
|
+
Tr$1.displayName = 'Tr';
|
1146
|
+
|
1138
1147
|
var style$a = {"nav":"_JJyUj","nav_left":"_3kuw-","nav_right":"_3vpQT","nav_back":"_HJHB0","nav_text":"_1pO70"};
|
1139
1148
|
|
1140
1149
|
var Nav = /*#__PURE__*/function (_React$Component) {
|
@@ -10672,5 +10681,5 @@ exports.Tbody = Tbody;
|
|
10672
10681
|
exports.Td = Td;
|
10673
10682
|
exports.Th = Th;
|
10674
10683
|
exports.Thead = Thead;
|
10675
|
-
exports.Tr = Tr;
|
10684
|
+
exports.Tr = Tr$1;
|
10676
10685
|
//# sourceMappingURL=index.js.map
|