material-react-table 1.4.0-beta.3 → 1.4.0-beta.4

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.4.0-beta.3",
2
+ "version": "1.4.0-beta.4",
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.",
@@ -93,6 +93,7 @@ export const MRT_TableBodyRow: FC<Props> = ({
93
93
  ? `translateY(${virtualRow?.start}px)`
94
94
  : undefined,
95
95
  transition: virtualRow ? 'none' : 'all 150ms ease-in-out',
96
+ width: '100%',
96
97
  '&:hover td': {
97
98
  backgroundColor:
98
99
  tableRowProps?.hover !== false && getIsSomeColumnsPinned()
@@ -338,7 +338,7 @@ export const MRT_TableRoot = <TData extends Record<string, any> = {}>(
338
338
  <>
339
339
  <Dialog
340
340
  PaperComponent={Box}
341
- TransitionComponent={Grow}
341
+ TransitionComponent={!props.enableRowVirtualization ? Grow : undefined}
342
342
  disablePortal
343
343
  fullScreen
344
344
  keepMounted={false}