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.umd.js
CHANGED
@@ -1360,8 +1360,10 @@
|
|
1360
1360
|
var type = _ref3.type;
|
1361
1361
|
return type === TYPES.ENTITY;
|
1362
1362
|
}).map(function (_ref4) {
|
1363
|
-
var
|
1364
|
-
return
|
1363
|
+
var subcolumns = _ref4.subcolumns;
|
1364
|
+
return subcolumns.map(function (subcolumn) {
|
1365
|
+
return /*#__PURE__*/React__default["default"].createElement("th", null, subcolumn.label);
|
1366
|
+
});
|
1365
1367
|
}))), /*#__PURE__*/React__default["default"].createElement("tbody", null, multiSort(rows, sortDir).map(function (row) {
|
1366
1368
|
return /*#__PURE__*/React__default["default"].createElement(DataTableRow, {
|
1367
1369
|
key: row.id,
|