Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/data/material/migration/upgrade-to-v9/upgrade-to-v9.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ See the [Grid v2 migration guide](/material-ui/migration/upgrade-to-grid-v2/) fo

`MuiGridLegacy` has also been removed from the theme `components` types (`ComponentsProps`, `ComponentsOverrides`, and `ComponentsVariants`).

### List

`ListItemIcon` uses theme spacing values for `min-width` instead of a hardcoded number.
Comment thread
siriwatknp marked this conversation as resolved.
Outdated

### TablePagination numbers are formatted by default

Pagination numbers in `TablePagination` are now formatted using `Intl.NumberFormat` according to the locale.
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-material/src/ListItemIcon/ListItemIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const ListItemIconRoot = styled('div', {
},
})(
memoTheme(({ theme }) => ({
minWidth: 56,
minWidth: theme.spacing(4.5),
color: (theme.vars || theme).palette.action.active,
flexShrink: 0,
display: 'inline-flex',
Expand Down
Loading