Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -24,6 +24,10 @@ This list is a work in progress.
Expect updates as new breaking changes are introduced.
:::

### Backdrop

The Backdrop component no longer adds the `aria-hidden="true"` attribute to the Root slot by default.

### Dialog & Modal

The `disableEscapeKeyDown` prop has been removed. The same behavior could be achieved
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-material/src/Backdrop/Backdrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const Backdrop = React.forwardRef(function Backdrop(inProps, ref) {

return (
<TransitionSlot in={open} timeout={transitionDuration} {...other} {...transitionProps}>
<RootSlot aria-hidden {...rootProps} ref={ref}>
<RootSlot {...rootProps} ref={ref}>
Comment thread
silviuaavram marked this conversation as resolved.
{children}
Comment thread
silviuaavram marked this conversation as resolved.
</RootSlot>
</TransitionSlot>
Expand Down
Loading