You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Better position: sticky support (not limited to td?)
Support position: sticky with overflow?
Better support for table borders not being scrolled off
Should support better responsive layouts, even without media queries
Concerns
Limited use of built-in Material-UI styles
To support still using TableHead, TableBody, TableRow, need to use display: contents which has similar support as grid, but not perfect. Using display: contents also causes some styling issues itself since it makes these elements "pass through". For example, no height is passed from TableRow, and using rowProps, bodyRowProps, headerRowProps doesn't really do anything in this fashion
No support for row hovering using :hover but should be able to support isCellHovered or leverage display: contents solution
Since we're back to just individual cells, feels a little like react-virtualized-table, although we can still leverage CSS more (grid is more flexible for layout than getWidth function from before, position: sticky, etc).
Hopefully will allow support for
maxHeight
use cases, and should also improve rendering ofposition: sticky
(borderBottom
, etc)The text was updated successfully, but these errors were encountered: