@economic/taco 2.58.2-EC-64961.10 → 2.58.2-EC-64961.11
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/taco.cjs +6 -1
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.js +6 -1
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.js
CHANGED
@@ -36670,7 +36670,12 @@ function DisplayCell(props) {
|
|
36670
36670
|
const columnMeta = cell.column.columnDef.meta;
|
36671
36671
|
const attributes = getCellAttributes(cell, index2, isHighlighted);
|
36672
36672
|
const isTruncated = !!columnMeta.enableTruncate;
|
36673
|
-
|
36673
|
+
let content;
|
36674
|
+
if (isInternalColumn(cell.column.id)) {
|
36675
|
+
content = flexRender(cell.column.columnDef.cell, cell.getContext());
|
36676
|
+
} else {
|
36677
|
+
content = typeof cell.column.columnDef.cell === "function" ? cell.column.columnDef.cell(cell.getContext()) : cell.getValue();
|
36678
|
+
}
|
36674
36679
|
return /* @__PURE__ */ React__default.createElement(MemoedDisplayCell, { ...cellAttributes, ...attributes, cellRef, isTruncated }, content);
|
36675
36680
|
}
|
36676
36681
|
const MemoedDisplayCell = React__default.memo(function MemoedDisplayCell2(props) {
|