ywana-core8 0.0.952 → 0.0.953

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.952",
3
+ "version": "0.0.953",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
package/src/html/table.js CHANGED
@@ -244,6 +244,7 @@ const DataTableCell = ({ index, row, column, cell, editable }) => {
244
244
  case "Boolean": return <BooleanCellViewer id={id} value={cell} />
245
245
  case "String": return <StringCellViewer id={id} value={cell} format={format} options={options} action={action} />
246
246
  case "Number": return <NumberCellViewer id={id} value={cell} format={format} maxDecimals={maxDecimals} />
247
+ case "Image": return <img src={cell} />
247
248
  default: return cell
248
249
  }
249
250
  }