ui-kit-ck-consultant 0.6.53 → 0.6.55
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 +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -6
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -900,21 +900,21 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
900
900
|
var _section$props;
|
901
901
|
|
902
902
|
return _this.getArray((_section$props = section.props) === null || _section$props === void 0 ? void 0 : _section$props.children).filter(function (child) {
|
903
|
-
var _child$type;
|
903
|
+
var _child$type, _child$type2;
|
904
904
|
|
905
|
-
return (child === null || child === void 0 ? void 0 : (_child$type = child.type) === null || _child$type === void 0 ? void 0 : _child$type.name) === 'Tr';
|
905
|
+
return (child === null || child === void 0 ? void 0 : (_child$type = child.type) === null || _child$type === void 0 ? void 0 : _child$type.name) === 'Tr' || (child === null || child === void 0 ? void 0 : (_child$type2 = child.type) === null || _child$type2 === void 0 ? void 0 : _child$type2.name) === 'tr';
|
906
906
|
});
|
907
907
|
});
|
908
908
|
console.log('Toutes les lignes (Tr) trouvées:', allRows);
|
909
909
|
|
910
910
|
if (allRows.length > 0) {
|
911
911
|
allRows.forEach(function (row, rowIndex) {
|
912
|
-
console.log(row.props.children.length, row.props.children.length !== 2, row.props.children.
|
912
|
+
console.log(row.props.children.length, row.props.children.length !== 2, row.props.children.type, row.props.children.type === React__default.Fragment, row);
|
913
913
|
|
914
|
-
var cells = _this.getArray(row.props.children.length !== 2 ? row.props.children.
|
915
|
-
var _cell$type, _cell$type2;
|
914
|
+
var cells = _this.getArray(row.props.children.length !== 2 ? row.props.children.type === React__default.Fragment ? row.props.children.props.children[0] : row.props.children : row.props.children[0]).filter(function (cell) {
|
915
|
+
var _cell$type, _cell$type2, _cell$type3, _cell$type4;
|
916
916
|
|
917
|
-
return (cell === null || cell === void 0 ? void 0 : (_cell$type = cell.type) === null || _cell$type === void 0 ? void 0 : _cell$type.name) === 'Th' || (cell === null || cell === void 0 ? void 0 : (_cell$type2 = cell.type) === null || _cell$type2 === void 0 ? void 0 : _cell$type2.name) === 'Td';
|
917
|
+
return (cell === null || cell === void 0 ? void 0 : (_cell$type = cell.type) === null || _cell$type === void 0 ? void 0 : _cell$type.name) === 'Th' || (cell === null || cell === void 0 ? void 0 : (_cell$type2 = cell.type) === null || _cell$type2 === void 0 ? void 0 : _cell$type2.name) === 'Td' || (cell === null || cell === void 0 ? void 0 : (_cell$type3 = cell.type) === null || _cell$type3 === void 0 ? void 0 : _cell$type3.name) === 'th' || (cell === null || cell === void 0 ? void 0 : (_cell$type4 = cell.type) === null || _cell$type4 === void 0 ? void 0 : _cell$type4.name) === 'td';
|
918
918
|
});
|
919
919
|
|
920
920
|
var rowData = cells.map(function (cell) {
|