ui-kit-ck-consultant 0.6.27 → 0.6.28
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 +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -923,6 +923,11 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
923
923
|
console.log(headerRow);
|
924
924
|
|
925
925
|
if (headerRow) {
|
926
|
+
console.log('headers', _this.getArray(headerRow.props.children).find(function (row) {
|
927
|
+
console.log(row.type.name);
|
928
|
+
return ['Th', 'Td'].includes(row.type.name);
|
929
|
+
}));
|
930
|
+
|
926
931
|
var headers = _this.getArray(headerRow.props.children).find(function (row) {
|
927
932
|
return ['Th', 'Td'].includes(row.type.name);
|
928
933
|
}).map(function (th) {
|