-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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 renovate/babel
- Loading branch information
Showing
727 changed files
with
18,464 additions
and
8,240 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,130 @@ | ||
# [Versions](https://mui.com/versions/) | ||
|
||
## 5.12.1 | ||
|
||
<!-- generated comparing v5.12.0..master --> | ||
|
||
_Apr 17, 2023_ | ||
|
||
A big thanks to the 16 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements. | ||
|
||
### `@mui/[email protected]` | ||
|
||
- ​<!-- 24 -->[Autocomplete] Fix autocomplete left padding (#36649) @mj12albert | ||
- ​<!-- 17 -->[Button] Fix contained with inherit prop not adapting on dark mode (#34508) @jesrodri | ||
- ​<!-- 07 -->[FormControlLabel] Add `required` prop (#34207) @emlai | ||
- ​<!-- 04 -->[Tabs] Fix null reference in ScrollbarSize after unmounting (#36485) @rkdrnf | ||
- ​<!-- 03 -->[TextField] Fix type error when using `inputTypeSearch` class for `outlined` and `filled` inputs (#36740) @sai6855 | ||
- ​<!-- 02 -->[ThemeProvider] Fix theme proptypes (#36852) @siriwatknp | ||
|
||
### `@mui/[email protected]` | ||
|
||
#### Breaking changes | ||
|
||
- ​<!-- 06 -->[Grid2] Replace context with `cloneElement` (#36399) @siriwatknp | ||
|
||
`Grid2` now uses `React.cloneElement` instead of React context for passing the spacing and columns to the next container. The change is close to how CSS flexbox behaves. | ||
|
||
#### Changes | ||
|
||
- ​<!-- 14 -->[CssVarsProvider] Always generate new `css` object (#36853) @siriwatknp | ||
|
||
### `@mui/[email protected]` | ||
|
||
#### Breaking changes | ||
|
||
- ​<!-- 23 -->[base] Refactor the compound components building blocks (#36400) @michaldudak | ||
Components affected by the changes are: | ||
- Menu | ||
- `MenuUnstyledContext` is replaced by `MenuProvider`. The value to pass to the provider is returned by the `useMenu` hook. | ||
- MenuUnstyled's `onClose` prop is replaced by `onOpenChange`. It has the `open` parameter and is called when a menu is opened or closed | ||
- Select | ||
- `SelectUnstyledContext` is replaced by `SelectProvider`. The value to pass to the provider is returned by the `useSelect` hook. | ||
- `SelectUnstyled`'s popup is permanently mounted. | ||
- The `defaultOpen` prop was added to the SelectUnstyled. The open/close state can now be controlled or uncontrolled, as a `value`. | ||
- Tabs | ||
- `TabsContext` is replaced by `TabsProvider`. The value to pass to the provider is returned by the `useTabs` hook. | ||
- To deselect all tabs, pass in `null` to Tabs' `value` prop, instead of `false`. This is consistent with how Select works. | ||
- The `value` prop is still technically not mandatory on TabUnstyled and TabPanel, but when omitted, the contents of the selected tab panel will not be rendered during SSR. | ||
|
||
### `@mui/[email protected]` | ||
|
||
- ​<!-- 05 -->[Table][Joy] Replace uses of css selector `*-child` to `*-of-type` (#36839) @keyvanm | ||
|
||
### Docs | ||
|
||
- ​<!-- 25 --> [docs][base] Move styles to the bottom of demos code for `BadgeUnstyled` (#36723) @varunmulay22 | ||
- ​<!-- 22 -->[docs][base] Mention that the hook does not accept any parameters in the `Parameters` section of the API docs (#36773) @ZeeshanTamboli | ||
- ​<!-- 21 -->[docs][base] Move styles to the bottom of demos code for `ModalUnstyled` (#36580) @gitstart | ||
- ​<!-- 20 -->[docs][base] Move styles to the bottom of demos code for `Tabs` (#36577) @gitstart | ||
- ​<!-- 19 -->[docs][base] Move styles to the bottom of demos code for `Popper` (#36578) @gitstart | ||
- ​<!-- 18 -->[docs][base] Move styles to the bottom of demos code for `TablePagination` (#36593) @gitstart | ||
- ​<!-- 13 -->[docs] Remove the incorrect info about useButton's ref parameter (#36883) @michaldudak | ||
- ​<!-- 12 -->[docs] Sync <Stack> between projects (#36785) @oliviertassinari | ||
- ​<!-- 11 -->[docs] Add guides to overriding component structure in Base UI and Joy UI docs (#34990) @samuelsycamore | ||
- ​<!-- 10 -->[docs] Content changed from 'row' to 'orientation=horizontal' (#36858) @navedqb | ||
- ​<!-- 09 -->[docs][Joy] `component`, `slots`, `slotProps` must be visible in Prop table in API docs (#36666) @hbjORbj | ||
- ​<!-- 08 -->[docs][Select] Fix duplicate ID in small size Select demo (#36792) @sai6855 | ||
|
||
### Core | ||
|
||
- ​<!-- 16 -->[core] Use glob to find the test files in parseTest (#36305) @flaviendelangle | ||
- ​<!-- 15 -->[core] Fix minor SEO issues @oliviertassinari | ||
- ​<!-- 01 -->[website] Fix visual bug appbar (#36875) @oliviertassinari | ||
|
||
All contributors of this release in alphabetical order: @emlai, @flaviendelangle, @gitstart, @hbjORbj, @jesrodri, @keyvanm, @michaldudak, @mj12albert, @navedqb, @oliviertassinari, @rkdrnf, @sai6855, @samuelsycamore, @siriwatknp, @varunmulay22, @ZeeshanTamboli | ||
|
||
## 5.12.0 | ||
|
||
<!-- generated comparing v5.11.16..master --> | ||
|
||
_Apr 11, 2023_ | ||
|
||
A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 💫 Added [theme scope](https://mui.com/material-ui/guides/styled-engine/#theme-scoping) for using multiple design systems (#36664) @siriwatknp | ||
- 🐛 bug fixes and 📚 documentation improvements. | ||
|
||
### `@mui/[email protected]` | ||
|
||
- ​<!-- 05 -->[system] Introduce theme scope for using multiple design systems (#36664) @siriwatknp | ||
|
||
### `@mui/[email protected]` | ||
|
||
- ​<!-- 06 -->[PopperUnstyled] Do not merge internal `ownerState` with `ownerState` from props (#36599) @hbjORbj | ||
|
||
### `@mui/[email protected]` | ||
|
||
- ​<!-- 08 -->[Joy] Add tests for slots/slotProps for all components (#36828) @hbjORbj | ||
- ​<!-- 07 -->[Joy] Support `slots`/`slotsProps` for every component (components with only root slot too) (#36540) @hbjORbj | ||
|
||
### Docs | ||
|
||
- ​<!-- 23 -->[docs][Backdrop] Improvements to the docs (#34244) @alirezahekmati | ||
- ​<!-- 20 -->[docs] Fix base API redirects (#36833) @mnajdova | ||
- ​<!-- 19 -->[docs] Improve perf on tab APIs (#36832) @mnajdova | ||
- ​<!-- 18 -->[docs] Revert CircularProgress component text to be proper noun instead (#36837) @ZeeshanTamboli | ||
- ​<!-- 17 -->[docs] Simplify language redirection @oliviertassinari | ||
- ​<!-- 16 -->[docs] Add missing `readOnly` state class in the list (#36788) @ZeeshanTamboli | ||
- ​<!-- 15 -->[docs] Improve side nav scroll into view (#36732) @oliviertassinari | ||
- ​<!-- 14 -->[docs][base & joy] Display "Classes" Section in API docs (#36589) @hbjORbj | ||
- ​<!-- 13 -->[docs] Fix 100+ typos throughout the Material UI docs (#36194) @Lioness100 | ||
- ​<!-- 12 -->[docs] Change "coming soon" chip color (#36786) @danilo-leal | ||
- ​<!-- 11 -->[docs][Joy] Fix wrong prop descriptions (#36826) @hbjORbj | ||
- ​<!-- 10 -->[docs][material] Highlight global state classes in CSS table in API docs (#36633) @hbjORbj | ||
- ​<!-- 09 -->[examples] Fix `SliderUnstyled` slots `key` name (#36830) @sai6855 | ||
- ​<!-- 04 -->[Tabs] Improve useTab() API page (#36725) @oliviertassinari | ||
|
||
### Core | ||
|
||
- ​<!-- 22 -->[core] Increase margin to scroll @oliviertassinari | ||
- ​<!-- 21 -->[core] Replace MUI Base with Base UI (#36716) @mnajdova | ||
- ​<!-- 03 -->[website] Fix broken career website links @oliviertassinari | ||
- ​<!-- 02 -->[website] Fix backlinks to homepage (#36801) @oliviertassinari | ||
- ​<!-- 01 -->[website] Tweaks to the Designer position ad (#36771) @danilo-leal | ||
|
||
All contributors of this release in alphabetical order: @alirezahekmati, @danilo-leal, @hbjORbj, @Lioness100, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @ZeeshanTamboli | ||
|
||
## 5.11.16 | ||
|
||
<!-- generated comparing v5.11.15..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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
Broken links found by `yarn docs:link-check` that exist: | ||
|
||
- https://mui.com/base/react-portal/components-api/#portal | ||
- https://mui.com/blog/material-ui-v4-is-out/#premium-themes-store-✨ | ||
- https://mui.com/material-ui/guides/minimizing-bundle-size/#legacy-bundle | ||
- https://mui.com/size-snapshot |
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.