material-react-table 1.5.11 → 1.5.12

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,5 +1,5 @@
1
1
  {
2
- "version": "1.5.11",
2
+ "version": "1.5.12",
3
3
  "license": "MIT",
4
4
  "name": "material-react-table",
5
5
  "description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
@@ -186,6 +186,8 @@ export const MRT_TableBodyCell: FC<Props> = ({
186
186
  sx={(theme) => ({
187
187
  alignItems: layoutMode === 'grid' ? 'center' : undefined,
188
188
  cursor: isEditable && editingMode === 'cell' ? 'pointer' : 'inherit',
189
+ justifyContent:
190
+ layoutMode === 'grid' ? tableCellProps.align : undefined,
189
191
  overflow: 'hidden',
190
192
  p:
191
193
  density === 'compact'