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.
@@ -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", null, value[field.id]);
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
  }],