Skip to content
Merged
Changes from 1 commit
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
24 changes: 24 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 @@ -1277,6 +1277,12 @@ If you were using these deprecated class names as `styleOverrides` keys in your

#### SpeedDial deprecated props removed

Use the [speed-dial-props codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#speed-dial-props) below to migrate the code as described in the following section:
Comment thread
silviuaavram marked this conversation as resolved.

```bash
npx @mui/codemod@latest deprecations/speed-dial-props <path>
```

The deprecated `SpeedDial` props have been removed.
Use the `slots` and `slotProps` props instead:

Expand All @@ -1291,6 +1297,12 @@ Use the `slots` and `slotProps` props instead:

#### SpeedDialAction deprecated props removed

Use the [speed-dial-action-props codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#speed-dial-action-props) below to migrate the code as described in the following section:
Comment thread
silviuaavram marked this conversation as resolved.

```bash
npx @mui/codemod@latest deprecations/speed-dial-action-props <path>
```

The deprecated `SpeedDialAction` props have been removed.
Use the `slotProps` prop instead:

Expand All @@ -1313,6 +1325,12 @@ Use the `slotProps` prop instead:

#### Menu deprecated props removed

Use the [menu-props codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#menu-props) below to migrate the code as described in the following section:
Comment thread
silviuaavram marked this conversation as resolved.

```bash
npx @mui/codemod@latest deprecations/menu-props <path>
```

The following deprecated props have been removed:

- `MenuListProps` — use `slotProps.list` instead
Expand Down Expand Up @@ -1370,6 +1388,12 @@ The following deprecated props have been removed:

#### Popover deprecated props removed

Use the [popover-props codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#popover-props) below to migrate the code as described in the following section:
Comment thread
silviuaavram marked this conversation as resolved.

```bash
npx @mui/codemod@latest deprecations/popover-props <path>
```

The following deprecated props have been removed:

- `BackdropComponent` — use `slots.backdrop` instead
Expand Down
Loading