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.umd.js CHANGED
@@ -1568,8 +1568,8 @@
1568
1568
  };
1569
1569
 
1570
1570
  return column.type === TYPES.ENTITY ? /*#__PURE__*/React__default["default"].createElement(EntityCellViewer, {
1571
- id: id,
1572
- item: item,
1571
+ id: column.id,
1572
+ item: column.item,
1573
1573
  value: cell
1574
1574
  }) : /*#__PURE__*/React__default["default"].createElement("td", {
1575
1575
  key: column.id,
@@ -1592,7 +1592,10 @@
1592
1592
  return field.column === true;
1593
1593
  });
1594
1594
  return fields.map(function (field) {
1595
- return /*#__PURE__*/React__default["default"].createElement("td", null, value[field.id]);
1595
+ return /*#__PURE__*/React__default["default"].createElement("td", {
1596
+ key: field.id,
1597
+ className: "entity-cell " + field.id
1598
+ }, value[field.id]);
1596
1599
  });
1597
1600
  };
1598
1601
  /**
@@ -4502,6 +4505,9 @@
4502
4505
  });
4503
4506
  var table = {
4504
4507
  columns: [{
4508
+ id: "id",
4509
+ label: "ID"
4510
+ }, {
4505
4511
  id: "idMatricula",
4506
4512
  label: "ID Matricula"
4507
4513
  }],