ywana-core8 0.0.206 → 0.0.207
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.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +1 -1
package/dist/index.modern.js
CHANGED
@@ -1349,7 +1349,10 @@ var DataTable = function DataTable(props) {
|
|
1349
1349
|
size: "small",
|
1350
1350
|
clickable: true
|
1351
1351
|
}) : null);
|
1352
|
-
}), /*#__PURE__*/React.createElement("th",
|
1352
|
+
}), /*#__PURE__*/React.createElement("th", {
|
1353
|
+
rowSpan: rowSpan,
|
1354
|
+
colSpan: colSpan
|
1355
|
+
})), /*#__PURE__*/React.createElement("tr", null, columns.filter(function (_ref3) {
|
1353
1356
|
var type = _ref3.type;
|
1354
1357
|
return type === TYPES.ENTITY;
|
1355
1358
|
}).map(function (_ref4) {
|