material-react-table 0.36.0 → 0.36.1
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.
|
@@ -1943,14 +1943,22 @@ const MRT_TableBodyCell = ({ cell, enableHover, rowIndex, rowRef, table, }) => {
|
|
|
1943
1943
|
} }),
|
|
1944
1944
|
React.createElement(React.Fragment, null, cell.getIsPlaceholder() ? null : isLoading || showSkeletons ? (React.createElement(Skeleton, Object.assign({ animation: "wave", height: 20, width: skeletonWidth }, muiTableBodyCellSkeletonProps))) : enableRowNumbers &&
|
|
1945
1945
|
rowNumberMode === 'static' &&
|
|
1946
|
-
column.id === 'mrt-row-numbers' ? (rowIndex + 1) : column.id === 'mrt-row-drag' ? (React.createElement(MRT_TableBodyRowGrabHandle, { cell: cell, rowRef: rowRef, table: table })) : columnDefType === 'display'
|
|
1946
|
+
column.id === 'mrt-row-numbers' ? (rowIndex + 1) : column.id === 'mrt-row-drag' ? (React.createElement(MRT_TableBodyRowGrabHandle, { cell: cell, rowRef: rowRef, table: table })) : columnDefType === 'display' &&
|
|
1947
|
+
(column.id === 'mrt-row-select' ||
|
|
1948
|
+
column.id === 'mrt-row-expand' ||
|
|
1949
|
+
!row.getIsGrouped()) ? ((_a = columnDef.Cell) === null || _a === void 0 ? void 0 : _a.call(columnDef, { cell, column, table })) : isEditing ? (React.createElement(MRT_EditCellTextField, { cell: cell, table: table })) : (enableClickToCopy || columnDef.enableClickToCopy) &&
|
|
1947
1950
|
columnDef.enableClickToCopy !== false ? (React.createElement(React.Fragment, null,
|
|
1948
1951
|
React.createElement(MRT_CopyButton, { cell: cell, table: table },
|
|
1949
|
-
React.createElement(React.Fragment, null,
|
|
1952
|
+
React.createElement(React.Fragment, null, row.getIsGrouped() && !cell.getIsGrouped()
|
|
1953
|
+
? null
|
|
1954
|
+
: (_c = (_b = columnDef === null || columnDef === void 0 ? void 0 : columnDef.Cell) === null || _b === void 0 ? void 0 : _b.call(columnDef, { cell, column, table })) !== null && _c !== void 0 ? _c : cell.renderValue())),
|
|
1950
1955
|
cell.getIsGrouped() && React.createElement(React.Fragment, null,
|
|
1951
1956
|
" (", (_d = row.subRows) === null || _d === void 0 ? void 0 :
|
|
1952
1957
|
_d.length,
|
|
1953
|
-
")"))) : (React.createElement(React.Fragment, null,
|
|
1958
|
+
")"))) : (React.createElement(React.Fragment, null,
|
|
1959
|
+
row.getIsGrouped() && !cell.getIsGrouped()
|
|
1960
|
+
? null
|
|
1961
|
+
: (_g = (_f = columnDef === null || columnDef === void 0 ? void 0 : columnDef.Cell) === null || _f === void 0 ? void 0 : _f.call(columnDef, { cell, column, table })) !== null && _g !== void 0 ? _g : cell.renderValue(),
|
|
1954
1962
|
cell.getIsGrouped() && React.createElement(React.Fragment, null,
|
|
1955
1963
|
" (", (_j = (_h = row.subRows) === null || _h === void 0 ? void 0 : _h.length) !== null && _j !== void 0 ? _j : '',
|
|
1956
1964
|
")"))))));
|