-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs] Bring back *Component
and *Props
codemods and deprecation messages
#44383
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -87,6 +87,36 @@ You can also manually update your theme as shown in the snippet below: | |||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
This reduces the API surface and lets you define variants in other slots of the component. | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
## Accordion | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#accordion-props) below to migrate the code as described in the following sections: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```bash | ||||||||||||||||||||||||||||||||||||||||||||||||||
npx @mui/codemod@latest deprecations/accordion-props <path> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### TransitionComponent | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The Accordion's `TransitionComponent` prop was deprecated in favor of `slots.transition`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<Accordion | ||||||||||||||||||||||||||||||||||||||||||||||||||
- TransitionComponent={CustomTransition} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slots={{ transition: CustomTransition }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### TransitionProps | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The Accordion's `TransitionProps` prop was deprecated in favor of `slotProps.transition`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<Accordion | ||||||||||||||||||||||||||||||||||||||||||||||||||
- TransitionProps={{ unmountOnExit: true }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slotProps={{ transition: { unmountOnExit: true } }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
## AccordionSummary | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#accordion-summary-classes) below to migrate the code as described in the following sections: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -251,6 +281,47 @@ Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-code | |||||||||||||||||||||||||||||||||||||||||||||||||
npx @mui/codemod@latest deprecations/autocomplete-props <path> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### \*Component props | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
All of the Autocomplete's slot (`*Component`) props were deprecated in favor of equivalent `slots` and `slotProps` entries: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<Autocomplete | ||||||||||||||||||||||||||||||||||||||||||||||||||
- PaperComponent={CustomPaperComponent} | ||||||||||||||||||||||||||||||||||||||||||||||||||
- PopperComponent={CustomPopperComponent} | ||||||||||||||||||||||||||||||||||||||||||||||||||
- ListboxComponent={CustomListboxComponent} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slots={{ | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ paper: CustomPaperComponent, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ popper: CustomPopperComponent, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slotProps={{ | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ listbox: { | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ component: CustomListboxComponent, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ }, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+290
to
+301
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct spacing coding style
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
:::warning | ||||||||||||||||||||||||||||||||||||||||||||||||||
The listbox slot is a special case because `ListboxComponent` was implemented differently from the other `*Component` props, behaving similar to the `component` and `as` props. | ||||||||||||||||||||||||||||||||||||||||||||||||||
The `slots.listbox` entry exists and you can use it to replace the component entirely, but if you want to keep `ListboxComponent`'s behavior which maintains the original listbox styles, you should use the `slotProps.listbox.component` entry. | ||||||||||||||||||||||||||||||||||||||||||||||||||
::: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### \*Props props | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
All of the Autocomplete's slot props (`*Props`) props were deprecated in favor of equivalent `slotProps` entries: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<Autocomplete | ||||||||||||||||||||||||||||||||||||||||||||||||||
- ChipProps={CustomChipProps} | ||||||||||||||||||||||||||||||||||||||||||||||||||
- ListboxProps={CustomListboxProps} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slotProps={{ | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ chip: CustomChipProps, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ listbox: CustomListboxProps, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+316
to
+321
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### componentsProps | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The Autocomplete's `componentsProps` prop was deprecated in favor of `slotProps`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -271,6 +342,32 @@ The Autocomplete's `componentsProps` prop was deprecated in favor of `slotProps` | |||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
## Avatar | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#avatar-props) below to migrate the code as described in the following sections: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```bash | ||||||||||||||||||||||||||||||||||||||||||||||||||
npx @mui/codemod@latest deprecations/avatar-props <path> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### imgProps | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The Avatar's `imgProps` prop was deprecated in favor of `slotProps.img`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<Avatar | ||||||||||||||||||||||||||||||||||||||||||||||||||
- imgProps={{ | ||||||||||||||||||||||||||||||||||||||||||||||||||
- onError: () => {}, | ||||||||||||||||||||||||||||||||||||||||||||||||||
- onLoad: () => {}, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slotProps={{ | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ img: { | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ onError: () => {}, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ onLoad: () => {}, | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ } | ||||||||||||||||||||||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||||||||||||||||||||||
/>; | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
## AvatarGroup | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#avatar-group-props) below to migrate the code as described in the following sections: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -359,6 +456,16 @@ The Backdrop's `componentsProps` prop was deprecated in favor of `slotProps`: | |||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### TransitionComponent | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The Backdrop's `TransitionComponent` prop was deprecated in favor of `slots.transition`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<Slider | ||||||||||||||||||||||||||||||||||||||||||||||||||
- TransitionComponent={CustomTransition} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slots={{ transition: CustomTransition }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
## Badge | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#badge-props) below to migrate the code as described in the following sections: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -1625,6 +1732,28 @@ The StepLabel's `componentsProps` prop was deprecated in favor of `slotProps`: | |||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### StepIconComponent | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The StepLabel's `StepIconComponent` prop was deprecated in favor of `slots.stepIcon`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<StepLabel | ||||||||||||||||||||||||||||||||||||||||||||||||||
- StepIconComponent={StepIconComponent} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slots={{ stepIcon: StepIconComponent }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### StepIconProps | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The StepLabel's `StepIconProps` prop was deprecated in favor of `slotProps.stepIcon`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<StepLabel | ||||||||||||||||||||||||||||||||||||||||||||||||||
- StepIconProps={StepIconProps} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slotProps={{ stepIcon: StepIconProps }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
## StepConnector | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Use the [codemod](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod#step-connector-classes) below to migrate the code as described in the following sections: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -1664,3 +1793,32 @@ Here's how to migrate: | |||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
## SpeedDial | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Use the [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 sections: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```bash | ||||||||||||||||||||||||||||||||||||||||||||||||||
npx @mui/codemod@next deprecations/speed-dial-props <path> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### TransitionComponent | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The SpeedDial's `TransitionComponent` prop was deprecated in favor of `slots.transition`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<SpeedDial | ||||||||||||||||||||||||||||||||||||||||||||||||||
- TransitionComponent={CustomTransition} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slots={{ transition: CustomTransition }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
### TransitionProps | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The SpeedDial's `TransitionProps` prop was deprecated in favor of `slotProps.transition`: | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
```diff | ||||||||||||||||||||||||||||||||||||||||||||||||||
<SpeedDial | ||||||||||||||||||||||||||||||||||||||||||||||||||
- TransitionProps={{ unmountOnExit: true }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ slotProps={{ transition: { unmountOnExit: true } }} | ||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This page could become confusing. If we plan to continue to add these sections here, we should include the version in which the new API was introduced. Otherwise people may run the codemod while installing an older version (e.g. 6.0.0).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll look into how to do this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mnajdova what do you think about this approach:
If you agree, this PR doesn't need any change, as these APIs were introduced in 6.0.0. The deprecation messages were omitted while we discussed the direction of the slot pattern, which is why we are bringing them back now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree, ok I see, I thought the APIs were introduced later.