-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-roboto-import-nextjs
- Loading branch information
Showing
143 changed files
with
2,528 additions
and
1,735 deletions.
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Create cherry-pick PR | ||
on: | ||
pull_request_target: | ||
branches: | ||
- 'next' | ||
- 'v*.x' | ||
- 'master' | ||
types: ['closed'] | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
create_pr: | ||
name: Create cherry-pick PR | ||
uses: mui/mui-public/.github/workflows/prs_create-cherry-pick-pr.yml@master | ||
permissions: | ||
contents: write | ||
pull-requests: write |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,56 @@ | ||
# [Versions](https://mui.com/versions/) | ||
|
||
## v6.1.8 | ||
|
||
<!-- generated comparing v6.1.7..master --> | ||
|
||
_Nov 20, 2024_ | ||
|
||
A big thanks to the 10 contributors who made this release possible. | ||
|
||
### `@mui/[email protected]` | ||
|
||
- [Autocomplete] Use `ul` element for the listbox (#44422) @DiegoAndai | ||
- [Grid2] Remove item and zeroMinWidth classes from grid2Classes (#44419) @sai6855 | ||
- [StepIcon] Add SvgIconOwnProps type to StepIcon props (#44337) @sai6855 | ||
- Add generic back to `useMediaQuery` to prevent a breaking change (#44455) @siriwatknp | ||
- [Tooltip] Deprecate `*Component` and `*Props` for v6 (#44350) @siriwatknp | ||
|
||
### `@mui/[email protected]` | ||
|
||
- Warn when calling `setMode` without configuring `colorSchemeSelector` (#43783) @siriwatknp | ||
|
||
### `@mui/[email protected]` | ||
|
||
- Add back removed internal function (#44421) @mnajdova | ||
|
||
### `@mui/[email protected]` | ||
|
||
- Skip deep clone React element (#44400) @siriwatknp | ||
- Add documentation to `useForkRef` (#44410) @JCQuintas | ||
|
||
### Docs | ||
|
||
- [Accordion] Replace hardcoded classes with constants in demos (#44453) @ZeeshanTamboli | ||
- [material-ui][Autocomplete] Fix virtualization demo (#44382) @DiegoAndai | ||
- Revert #44388 (#44454) @prakhargupta1 | ||
- Add App starters in related-projects.md (#44315) @oliviertassinari | ||
- Bring back `*Component` and `*Props` codemods and deprecation messages (#44383) @DiegoAndai | ||
- [docs] Copyedit Templates page (#44461) @samuelsycamore | ||
|
||
### Core | ||
|
||
- Remove `stylis-plugin-rtl-sc` (#44447) @renovate[bot] | ||
- [test][Autocomplete] Make virtualize regression screenshots deterministic (#44425) @DiegoAndai | ||
- [blog] Fix reference to subdomain on MUI X v8 alpha zero post (#44416) @joserodolfofreitas | ||
- [blog] MUI X v8 alpha zero blog post (#44377) @joserodolfofreitas | ||
- [code-infra] Use vitest-compatible skip in `describeConformance` (#44412) @JCQuintas | ||
- Keep OpenSSF badge up-to-date (aef2bf2) @oliviertassinari | ||
- Polish useForkRef docs (#44424) @oliviertassinari | ||
- [infra] Upgrade Cherry-pick workflow to latest (#44448) @oliviertassinari | ||
|
||
All contributors of this release in alphabetical order: @DiegoAndai, @JCQuintas, @joserodolfofreitas, @mnajdova, @oliviertassinari, @prakhargupta1, @sai6855, samuelsycamore, @siriwatknp, @ZeeshanTamboli | ||
|
||
## v6.1.7 | ||
|
||
<!-- generated comparing v6.1.6..master --> | ||
|
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
7 changes: 4 additions & 3 deletions
7
docs/data/material/components/button-group/LoadingButtonGroup.js
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
import * as React from 'react'; | ||
import ButtonGroup from '@mui/material/ButtonGroup'; | ||
import Button from '@mui/material/Button'; | ||
import LoadingButton from '@mui/lab/LoadingButton'; | ||
import SaveIcon from '@mui/icons-material/Save'; | ||
|
||
export default function LoadingButtonGroup() { | ||
return ( | ||
<ButtonGroup variant="outlined" aria-label="Loading button group"> | ||
<Button>Submit</Button> | ||
<Button>Fetch data</Button> | ||
<Button loading loadingPosition="start" startIcon={<SaveIcon />}> | ||
<LoadingButton>Fetch data</LoadingButton> | ||
<LoadingButton loading loadingPosition="start" startIcon={<SaveIcon />}> | ||
Save | ||
</Button> | ||
</LoadingButton> | ||
</ButtonGroup> | ||
); | ||
} |
7 changes: 4 additions & 3 deletions
7
docs/data/material/components/button-group/LoadingButtonGroup.tsx
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
import * as React from 'react'; | ||
import ButtonGroup from '@mui/material/ButtonGroup'; | ||
import Button from '@mui/material/Button'; | ||
import LoadingButton from '@mui/lab/LoadingButton'; | ||
import SaveIcon from '@mui/icons-material/Save'; | ||
|
||
export default function LoadingButtonGroup() { | ||
return ( | ||
<ButtonGroup variant="outlined" aria-label="Loading button group"> | ||
<Button>Submit</Button> | ||
<Button>Fetch data</Button> | ||
<Button loading loadingPosition="start" startIcon={<SaveIcon />}> | ||
<LoadingButton>Fetch data</LoadingButton> | ||
<LoadingButton loading loadingPosition="start" startIcon={<SaveIcon />}> | ||
Save | ||
</Button> | ||
</LoadingButton> | ||
</ButtonGroup> | ||
); | ||
} |
6 changes: 3 additions & 3 deletions
6
docs/data/material/components/button-group/LoadingButtonGroup.tsx.preview
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<ButtonGroup variant="outlined" aria-label="Loading button group"> | ||
<Button>Submit</Button> | ||
<Button>Fetch data</Button> | ||
<Button loading loadingPosition="start" startIcon={<SaveIcon />}> | ||
<LoadingButton>Fetch data</LoadingButton> | ||
<LoadingButton loading loadingPosition="start" startIcon={<SaveIcon />}> | ||
Save | ||
</Button> | ||
</LoadingButton> | ||
</ButtonGroup> |
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
37 changes: 0 additions & 37 deletions
37
docs/data/material/components/buttons/IconButtonWithBadge.js
This file was deleted.
Oops, something went wrong.
37 changes: 0 additions & 37 deletions
37
docs/data/material/components/buttons/IconButtonWithBadge.tsx
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
docs/data/material/components/buttons/IconButtonWithBadge.tsx.preview
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.