ywana-core8 0.0.208 → 0.0.209
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 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -2
- 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
@@ -1356,8 +1356,10 @@ var DataTable = function DataTable(props) {
|
|
1356
1356
|
var type = _ref3.type;
|
1357
1357
|
return type === TYPES.ENTITY;
|
1358
1358
|
}).map(function (_ref4) {
|
1359
|
-
var
|
1360
|
-
return
|
1359
|
+
var subcolumns = _ref4.subcolumns;
|
1360
|
+
return subcolumns.map(function (subcolumn) {
|
1361
|
+
return /*#__PURE__*/React.createElement("th", null, subcolumn.label);
|
1362
|
+
});
|
1361
1363
|
}))), /*#__PURE__*/React.createElement("tbody", null, multiSort(rows, sortDir).map(function (row) {
|
1362
1364
|
return /*#__PURE__*/React.createElement(DataTableRow, {
|
1363
1365
|
key: row.id,
|