@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.cjs
CHANGED
@@ -36688,7 +36688,12 @@ function DisplayCell(props) {
|
|
36688
36688
|
const columnMeta = cell.column.columnDef.meta;
|
36689
36689
|
const attributes = getCellAttributes(cell, index2, isHighlighted);
|
36690
36690
|
const isTruncated = !!columnMeta.enableTruncate;
|
36691
|
-
|
36691
|
+
let content;
|
36692
|
+
if (isInternalColumn(cell.column.id)) {
|
36693
|
+
content = flexRender(cell.column.columnDef.cell, cell.getContext());
|
36694
|
+
} else {
|
36695
|
+
content = typeof cell.column.columnDef.cell === "function" ? cell.column.columnDef.cell(cell.getContext()) : cell.getValue();
|
36696
|
+
}
|
36692
36697
|
return /* @__PURE__ */ React.createElement(MemoedDisplayCell, { ...cellAttributes, ...attributes, cellRef, isTruncated }, content);
|
36693
36698
|
}
|
36694
36699
|
const MemoedDisplayCell = React.memo(function MemoedDisplayCell2(props) {
|