diff --git a/docs/data/material/migration/migrating-from-deprecated-apis/migrating-from-deprecated-apis.md b/docs/data/material/migration/migrating-from-deprecated-apis/migrating-from-deprecated-apis.md index 8778a6ce580b41..d9a640fb667a6e 100644 --- a/docs/data/material/migration/migrating-from-deprecated-apis/migrating-from-deprecated-apis.md +++ b/docs/data/material/migration/migrating-from-deprecated-apis/migrating-from-deprecated-apis.md @@ -872,6 +872,36 @@ The Divider's `light` prop was deprecated, Use `sx={{ opacity : "0.6" }}` (or an /> ``` +## FilledInput + +Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#filled-input-props) below to migrate the code as described in the following sections: + +```bash +npx @mui/codemod@latest deprecations/filled-input-props +``` + +### components + +The Input's `components` was deprecated in favor of `slots`: + +```diff + +``` + +### componentsProps + +The Input's `componentsProps` was deprecated in favor of `slotProps`: + +```diff + +``` + ## FormControlLabel Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#form-control-label-props) below to migrate the code as described in the following sections: @@ -891,6 +921,96 @@ The FormControlLabel's `componentsProps` was deprecated in favor of `slotProps`: /> ``` +## Input + +Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#input-props) below to migrate the code as described in the following sections: + +```bash +npx @mui/codemod@latest deprecations/input-props +``` + +### components + +The Input's `components` was deprecated in favor of `slots`: + +```diff + +``` + +### componentsProps + +The Input's `componentsProps` was deprecated in favor of `slotProps`: + +```diff + +``` + +## InputBase + +Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#input-base-props) below to migrate the code as described in the following sections: + +```bash +npx @mui/codemod@latest deprecations/input-base-props +``` + +### components + +The InputBase's `components` was deprecated in favor of `slots`: + +```diff + +``` + +### componentsProps + +The InputBase's `componentsProps` was deprecated in favor of `slotProps`: + +```diff + +``` + +## OutlinedInput + +Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#outlined-input-props) below to migrate the code as described in the following sections: + +```bash +npx @mui/codemod@latest deprecations/outlined-input-props +``` + +### components + +The Input's `components` was deprecated in favor of `slots`: + +```diff + +``` + +### componentsProps + +The Input's `componentsProps` was deprecated in favor of `slotProps`: + +```diff + +``` + ## PaginationItem Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#pagination-item-classes) below to migrate the code as described in the following sections: @@ -1133,123 +1253,3 @@ The SpeedDial's `TransitionProps` was deprecated in favor of `slotProps.transiti + slotProps={{ transition: { unmountOnExit: true } }} /> ``` - -## InputBase - -Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#input-base-props) below to migrate the code as described in the following sections: - -```bash -npx @mui/codemod@latest deprecations/input-base-props -``` - -### components - -The InputBase's `components` was deprecated in favor of `slots`: - -```diff - -``` - -### componentsProps - -The InputBase's `componentsProps` was deprecated in favor of `slotProps`: - -```diff - -``` - -## Input - -Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#input-props) below to migrate the code as described in the following sections: - -```bash -npx @mui/codemod@latest deprecations/input-props -``` - -### components - -The Input's `components` was deprecated in favor of `slots`: - -```diff - -``` - -### componentsProps - -The Input's `componentsProps` was deprecated in favor of `slotProps`: - -```diff - -``` - -## FilledInput - -Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#filled-input-props) below to migrate the code as described in the following sections: - -```bash -npx @mui/codemod@latest deprecations/filled-input-props -``` - -### components - -The Input's `components` was deprecated in favor of `slots`: - -```diff - -``` - -### componentsProps - -The Input's `componentsProps` was deprecated in favor of `slotProps`: - -```diff - -``` - -## OutlinedInput - -Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#outlined-input-props) below to migrate the code as described in the following sections: - -```bash -npx @mui/codemod@latest deprecations/outlined-input-props -``` - -### components - -The Input's `components` was deprecated in favor of `slots`: - -```diff - -``` - -### componentsProps - -The Input's `componentsProps` was deprecated in favor of `slotProps`: - -```diff - -```