ywana-core8 0.0.215 → 0.0.219
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 +9 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +9 -3
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +9 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +2 -1
- package/src/html/table.js +2 -2
package/dist/index.cjs
CHANGED
@@ -1571,8 +1571,8 @@ var DataTableCell = function DataTableCell(_ref4) {
|
|
1571
1571
|
};
|
1572
1572
|
|
1573
1573
|
return column.type === TYPES.ENTITY ? /*#__PURE__*/React__default["default"].createElement(EntityCellViewer, {
|
1574
|
-
id: id,
|
1575
|
-
item: item,
|
1574
|
+
id: column.id,
|
1575
|
+
item: column.item,
|
1576
1576
|
value: cell
|
1577
1577
|
}) : /*#__PURE__*/React__default["default"].createElement("td", {
|
1578
1578
|
key: column.id,
|
@@ -1595,7 +1595,10 @@ var EntityCellViewer = function EntityCellViewer(_ref5) {
|
|
1595
1595
|
return field.column === true;
|
1596
1596
|
});
|
1597
1597
|
return fields.map(function (field) {
|
1598
|
-
return /*#__PURE__*/React__default["default"].createElement("td",
|
1598
|
+
return /*#__PURE__*/React__default["default"].createElement("td", {
|
1599
|
+
key: field.id,
|
1600
|
+
className: "entity-cell " + field.id
|
1601
|
+
}, value[field.id]);
|
1599
1602
|
});
|
1600
1603
|
};
|
1601
1604
|
/**
|
@@ -4505,6 +4508,9 @@ var TableSelector = function TableSelector(props) {
|
|
4505
4508
|
});
|
4506
4509
|
var table = {
|
4507
4510
|
columns: [{
|
4511
|
+
id: "id",
|
4512
|
+
label: "ID"
|
4513
|
+
}, {
|
4508
4514
|
id: "idMatricula",
|
4509
4515
|
label: "ID Matricula"
|
4510
4516
|
}],
|