Skip to content

Commit

Permalink
Feat 41279 Update input compoenent docs with missed words
Browse files Browse the repository at this point in the history
  • Loading branch information
ChronicusUA committed May 6, 2024
1 parent fccd3b8 commit 08ce047
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -877,12 +877,12 @@ The Divider's `light` prop was deprecated, Use `sx={{ opacity : "0.6" }}` (or an
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 <path>
npx @mui/codemod@next deprecations/filled-input-props <path>
```

### components

The Input's `components` was deprecated in favor of `slots`:
The Input's prop `components` was deprecated in favor of `slots`:

```diff
<FilledInput
Expand All @@ -893,7 +893,7 @@ The Input's `components` was deprecated in favor of `slots`:

### componentsProps

The Input's `componentsProps` was deprecated in favor of `slotProps`:
The Input's prop `componentsProps` was deprecated in favor of `slotProps`:

```diff
<FilledInput
Expand Down Expand Up @@ -926,12 +926,12 @@ The FormControlLabel's `componentsProps` was deprecated in favor of `slotProps`:
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 <path>
npx @mui/codemod@next deprecations/input-props <path>
```

### components

The Input's `components` was deprecated in favor of `slots`:
The Input's prop `components` was deprecated in favor of `slots`:

```diff
<Input
Expand All @@ -942,7 +942,7 @@ The Input's `components` was deprecated in favor of `slots`:

### componentsProps

The Input's `componentsProps` was deprecated in favor of `slotProps`:
The Input's prop `componentsProps` was deprecated in favor of `slotProps`:

```diff
<Input
Expand All @@ -956,12 +956,12 @@ The Input's `componentsProps` was deprecated in favor of `slotProps`:
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 <path>
npx @mui/codemod@next deprecations/input-base-props <path>
```

### components

The InputBase's `components` was deprecated in favor of `slots`:
The InputBase's prop `components` was deprecated in favor of `slots`:

```diff
<InputBase
Expand All @@ -972,7 +972,7 @@ The InputBase's `components` was deprecated in favor of `slots`:

### componentsProps

The InputBase's `componentsProps` was deprecated in favor of `slotProps`:
The InputBase's prop `componentsProps` was deprecated in favor of `slotProps`:

```diff
<Input
Expand All @@ -986,12 +986,12 @@ The InputBase's `componentsProps` was deprecated in favor of `slotProps`:
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 <path>
npx @mui/codemod@next deprecations/outlined-input-props <path>
```

### components

The Input's `components` was deprecated in favor of `slots`:
The Input's prop `components` was deprecated in favor of `slots`:

```diff
<OutlinedInput
Expand All @@ -1002,7 +1002,7 @@ The Input's `components` was deprecated in favor of `slots`:

### componentsProps

The Input's `componentsProps` was deprecated in favor of `slotProps`:
The Input's prop `componentsProps` was deprecated in favor of `slotProps`:

```diff
<OutlinedInput
Expand All @@ -1016,7 +1016,7 @@ The Input's `componentsProps` was deprecated in favor of `slotProps`:
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:

```bash
npx @mui/codemod@latest deprecations/pagination-item-classes <path>
npx @mui/codemod@next deprecations/pagination-item-classes <path>
```

### Composed CSS classes
Expand Down

0 comments on commit 08ce047

Please sign in to comment.