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.modern.js
CHANGED
@@ -1564,8 +1564,8 @@ var DataTableCell = function DataTableCell(_ref4) {
|
|
1564
1564
|
};
|
1565
1565
|
|
1566
1566
|
return column.type === TYPES.ENTITY ? /*#__PURE__*/React.createElement(EntityCellViewer, {
|
1567
|
-
id: id,
|
1568
|
-
item: item,
|
1567
|
+
id: column.id,
|
1568
|
+
item: column.item,
|
1569
1569
|
value: cell
|
1570
1570
|
}) : /*#__PURE__*/React.createElement("td", {
|
1571
1571
|
key: column.id,
|
@@ -1588,7 +1588,10 @@ var EntityCellViewer = function EntityCellViewer(_ref5) {
|
|
1588
1588
|
return field.column === true;
|
1589
1589
|
});
|
1590
1590
|
return fields.map(function (field) {
|
1591
|
-
return /*#__PURE__*/React.createElement("td",
|
1591
|
+
return /*#__PURE__*/React.createElement("td", {
|
1592
|
+
key: field.id,
|
1593
|
+
className: "entity-cell " + field.id
|
1594
|
+
}, value[field.id]);
|
1592
1595
|
});
|
1593
1596
|
};
|
1594
1597
|
/**
|
@@ -4498,6 +4501,9 @@ var TableSelector = function TableSelector(props) {
|
|
4498
4501
|
});
|
4499
4502
|
var table = {
|
4500
4503
|
columns: [{
|
4504
|
+
id: "id",
|
4505
|
+
label: "ID"
|
4506
|
+
}, {
|
4501
4507
|
id: "idMatricula",
|
4502
4508
|
label: "ID Matricula"
|
4503
4509
|
}],
|