Jaanus Sellin
233b882c7b
feat: merge feature toggle details with feature meta info box ( #6977 )
...
![image](https://github.com/Unleash/unleash/assets/964450/5286eb36-311d-42f9-90da-832724cc41d0 )
---------
Signed-off-by: andreas-unleash <andreas@getunleash.ai>
Co-authored-by: andreas-unleash <andreas@getunleash.ai>
2024-05-06 12:17:54 +03:00
Thomas Heartman
bd0cd018c9
support setting mode and stickiness in new project form ( #6972 )
...
This PR is a combination of two PRs:
This PR adds a functioning environment selection button to the new project creation form. Selected environments are added to the payload and to the API preview.
The implementation is mostly lifted from the existing FilterItem component we have for search filters. However, our need here is less complex, so I've removed some of the things we don't need. There is still more cleanup to be done, however, but I'd like to implement the rest of the submenus first, to see what we really do need in the end.
---
This PR adds support for stickiness and project mode in the new project
creation form.
Achieve this, it does a few things:
1. Moves `resolveStickinessOptions` from
`frontend/src/component/feature/StrategyTypes/FlexibleStrategy/StickinessSelect/StickinessSelect.tsx`
and into a separate hook. This component was used by the old project
creation form. Because the new form has a different input, but needs the
same option, moved that code into a reusable hook.
2. It adds functioning buttons for project stickiness and mode.
3. It adds labels to the search inputs for the dropdowns. Inputs *must*
have labels to meet a11y requirements. However, the designs don't have
labels, so we can hide them visually. Though that leads to another issue
(refer to the screen shot below).
4. It updates the `SelectionButton` component to handle both single- and
multiselect cases. It instead exports these two subcomponents. These are
currently in one file, but I'll split them out into their separate files
in a later PR.
As a side effect of working with the selection buttons, it also improves
how we handle keyboard interaction for these buttons.
Here's what it looks like for single-select lists. Notice the missing
part of the input's border around the top (where the label *would* be if
we showed it). We should figure out how best to handle it. I've done
like this for now, but we can sort it out later.
![image](https://github.com/Unleash/unleash/assets/17786332/5af979c2-6635-481e-8d3e-5aad1c0ab46f )
2024-05-03 07:27:13 +02:00
Thomas Heartman
44e86fc068
chore: fix failing test; don't rely on a single item only ( #6974 )
...
This test is breaking right now because it tests a date picker, week 21
is approaching, and `findByText` only expects a single element. Checking
that we have *at least* one element fixes that breakage and I don't
think it should cause any issues.
Of course, that means that right now, this test would also pass even if
the expected button wasn't there, but it would stop passing in about
four weeks time.
2024-05-02 15:03:49 +02:00
Tymoteusz Czech
0bacd60caf
refactor: badge icon spacing ( #6962 )
...
Simplified after previous modifications
2024-04-30 14:14:04 +02:00
Thomas Heartman
4fea198d6c
chore: add project icon to new form ( #6965 )
...
Imports and uses the same project icon used on the project cards. Also
aligns the header better and makes the text lighter.
![image](https://github.com/Unleash/unleash/assets/17786332/bf5082b0-1f00-45bb-a639-864963b6fe77 )
2024-04-30 13:18:27 +02:00
Thomas Heartman
cdbe26330e
feat: enable project creation through new form ( #6961 )
...
This PR allows very simple project creation. You can add a name and
description. The ID is generated for you at the moment (we'll fix this
later). Nothing else works, but the project is created successfully.
2024-04-30 13:00:58 +02:00
Thomas Heartman
f77f8a71f8
rough layout of the new form ( #6960 )
...
This PR adds a very rough first implementation of the look of the new
project form. *It is not final and does not work yet*.
The important part here is that the layout is roughly right (we'll
adjust spacing etc later) and that we've got all the basic elements
present.
I'll hook it up to actually work in an upcoming PR.
![image](https://github.com/Unleash/unleash/assets/17786332/b941702f-ec1b-4d16-9628-ba560b0919f2 )
The missing icon, text alignment, etc, will also be solved later.
2024-04-30 08:09:07 +02:00
Thomas Heartman
a66b3c65c1
chore: add flag for the new project creation form layout ( #6959 )
...
Add a flag to enable/disable the new UI for project creation.
This flag is separate from the impl on the back end so that we can
enable one without the other (but uses flag dependencies in Unleash, so
that we can never enable the new UI without the new back end).
I have not set the flag to `true` in server startup because the form
doesn't work yet, so it's a manual step for now.
2024-04-29 13:52:56 +02:00
David Leek
c048156e19
fix: disable SCIM for OIDC, nothing to test it on ( #6937 )
...
disable SCIM for OIDC, nothing to test it on
Also checks scim enabled before saving
2024-04-29 13:14:39 +02:00
Tymoteusz Czech
b6865a5a9d
feat: Project owners UI ( #6949 )
...
---------
Co-authored-by: Thomas Heartman <thomas@getunleash.io>
2024-04-29 11:51:44 +02:00
Ivar Conradi Østhus
3978c690e0
fix: Data usage metrics chart included per day annotion ( #6941 )
...
Added a small annotation to the chart on how much data is included in
the pro plan on average per day to make it easier to spot when a
customer average above the included threshold.
![image](https://github.com/Unleash/unleash/assets/158948/c3105f87-03e0-4b27-9e3f-53c749c78078 )
2024-04-29 10:35:01 +02:00
David Leek
0ac9624caf
fix: fix UI issues with SCIM new token button ( #6948 )
...
Makes the regenerate token button in SCIM settings behave like the rest
of the grid (remove margin left, add margin bottom)
![image](https://github.com/Unleash/unleash/assets/707867/ff3ac26e-87b3-4862-aebd-cdba0011ddad )
2024-04-26 14:31:53 +02:00
Jaanus Sellin
9f6badf5df
feat: add ui test for mark completed button ( #6953 )
...
Co-authored-by: kwasniew <kwasniewski.mateusz@gmail.com>
2024-04-26 14:31:20 +02:00
Tymoteusz Czech
514a18bf93
Update OpenAPI generated types for frontend ( #6950 )
2024-04-26 13:31:15 +02:00
Jaanus Sellin
7022ce8afb
feat: rever to live connected to backend ( #6951 )
...
![Screenshot from 2024-04-26
13-30-48](https://github.com/Unleash/unleash/assets/964450/03c57c62-bf51-440b-935d-46da729e3157 )
![Screenshot from 2024-04-26
13-15-45](https://github.com/Unleash/unleash/assets/964450/c5ac44be-39dc-4b6c-97ec-5fc56b0cc111 )
2024-04-26 13:43:38 +03:00
Jaanus Sellin
7d01dbb748
feat: feature completed connected to backend ( #6947 )
...
Connects feature complete to backend
2024-04-26 12:20:34 +03:00
Mateusz Kwasniewski
675e1a9f8b
feat: archive feature from lifecycle ( #6938 )
2024-04-26 09:29:07 +02:00
David Leek
d1bb65bebd
feat: scim assume control UI - move scim into sso configs ( #6929 )
...
- Adds support for the configuration option for SCIM taking over control
of users and groups
- Moves SCIM settings into SSO config pages (OIDC and SAML). SCIM
registers a callback to be invoked when saving in a parent SSO config
page
2024-04-25 15:39:56 +02:00
Mateusz Kwasniewski
19055b1e33
test: lifecycle tooltip ( #6932 )
2024-04-25 15:22:59 +02:00
Mateusz Kwasniewski
0eaf725e82
feat: lifecycle stage dates ( #6926 )
2024-04-25 13:30:00 +02:00
Mateusz Kwasniewski
44521c1c74
chore: remove variant dependencies flag ( #6896 )
2024-04-25 11:07:16 +02:00
Mateusz Kwasniewski
e6355f4676
feat: connect feature lifecycle to real API ( #6921 )
2024-04-25 09:18:05 +02:00
Ivar Conradi Østhus
1b2f983974
fix: improve traffic messaging summary ( #6922 )
...
Minor tweaks to traffic messaging summary.
2024-04-24 15:59:18 +02:00
Jaanus Sellin
143327844d
chore: clean up feedback component ( #6918 )
...
Removing the time based feedback
2024-04-24 14:22:18 +03:00
Mateusz Kwasniewski
9c883ca37d
feat: Completed stage UI ( #6917 )
2024-04-24 11:00:21 +02:00
Mateusz Kwasniewski
e91d471d17
feat: completed stage button ( #6914 )
2024-04-24 10:30:50 +02:00
Mateusz Kwasniewski
f63bae21f5
feat: live and pre-live stages UI ( #6913 )
2024-04-24 08:29:52 +02:00
Mateusz Kwasniewski
bf3366434c
feat: improve feature overview styling ( #6910 )
2024-04-23 15:08:59 +02:00
Mateusz Kwasniewski
18d317f1ff
feat: pass lifecycle stage to tooltip ( #6904 )
2024-04-23 11:19:24 +02:00
Mateusz Kwasniewski
d59f1adfe5
feat: Stage timeline styling ( #6903 )
2024-04-23 10:15:01 +02:00
Mateusz Kwasniewski
131e9dd6d6
feat: initial sketch for the lifecycle tooltip ( #6899 )
2024-04-23 08:56:18 +02:00
00Chaotic
13aa58e0e9
feat: allow admin login using demo auth ( #6808 )
...
This PR introduces a configuration option (`authentication.demoAllowAdminLogin`) that allows you to log in as admin when using demo authentication. To do this, use the username `admin`.
## About the changes
The `admin` user currently cannot be accessed in `demo` authentication
mode, as the auth mode requires only an email to log in, and the admin
user is not created with an email. This change allows for logging in as
the admin user only if an `AUTH_DEMO_ALLOW_ADMIN_LOGIN` is set to `true`
(or the corresponding `authDemoAllowAdminLogin` config is enabled).
<!-- Does it close an issue? Multiple? -->
Closes #6398
### Important files
[demo-authentication.ts](https://github.com/Unleash/unleash/compare/main...00Chaotic:unleash:feat/allow_admin_login_using_demo_auth?expand=1#diff-c166f00f0a8ca4425236b3bcba40a8a3bd07a98d067495a0a092eec26866c9f1R25 )
## Discussion points
Can continue discussion of [this
comment](https://github.com/Unleash/unleash/pull/6447#issuecomment-2042405647 )
in this PR.
---------
Co-authored-by: Thomas Heartman <thomasheartman+github@gmail.com>
2024-04-23 08:39:33 +02:00
Thomas Heartman
b6833d92aa
feat: split projects view into "my projects" and "other projects" ( #6886 )
...
This PR removes the previous "my projects" filter in favor always
splitting projects, but showing both on the main screen.
To make it a bit easier to work with, it also moves the project group
component into its own file, causing some extra lines of code change. My
apologies 🙇🏼
2024-04-22 13:16:53 +02:00
David Leek
2cb9ceaa72
feat: add selected month summary card for data usage ( #6891 )
...
## About the changes
Adds a summary card that sums up data usage for selected month, and for
Pro shows monthly quota and badge color according to monthly quota
2024-04-19 09:33:19 +02:00
Simon Hornby
6b5cdc2d24
fix: archive toggle no longer respects change request ( #6882 )
2024-04-18 13:10:22 +02:00
Tymoteusz Czech
fd4bcfffa5
Feat: new projects list ( #6873 )
...
New card view for list of projects.
Co-authored-by: Thomas Heartman <thomas@getunleash.io>
2024-04-18 11:20:01 +02:00
Jaanus Sellin
0572d37181
feat: restyle the project meta box ( #6880 )
...
Old:
![image](https://github.com/Unleash/unleash/assets/964450/14b1b2d4-ab54-4027-902c-f1a3028e7ab4 )
New:
![image](https://github.com/Unleash/unleash/assets/964450/8eb07085-e253-4fb4-acf0-2ace2cc4ad2f )
2024-04-18 11:55:15 +03:00
Jaanus Sellin
f0ef7a6f31
feat: feature lifecycle getter hook ( #6876 )
2024-04-18 09:02:03 +03:00
Nuno Góis
bc0704581b
chore: UI SCIM guard for groups ( #6866 )
...
https://linear.app/unleash/issue/2-2113/ui-should-not-allow-manual-management-of-scim-managed-groups-in
Adds a UI SCIM guard when trying to manage groups.
The condition for the guard is:
- Enterprise
- SCIM flag enabled
- SCIM setting enabled
- SCIM group
Similar to https://github.com/Unleash/unleash/pull/6859
2024-04-17 08:27:56 +01:00
renovate[bot]
fbe4babc15
chore(deps): update dependency @types/node to v18.19.31 ( #6875 )
...
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`18.19.30` ->
`18.19.31`](https://renovatebot.com/diffs/npm/@types%2fnode/18.19.30/18.19.31 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.19.31?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.19.31?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.19.30/18.19.31?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.19.30/18.19.31?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMwMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-16 18:13:48 +00:00
Jaanus Sellin
30ea2d91bd
chore: generate orval types ( #6871 )
2024-04-16 21:07:37 +03:00
Thomas Heartman
ef23cc0cc1
chore: add flag for improved project creation ( #6870 )
...
This PR adds the flag for the improved project creation flag to Unleash.
2024-04-16 14:57:52 +02:00
Nuno Góis
279d3431eb
chore: UI SCIM guard for users ( #6859 )
...
https://linear.app/unleash/issue/2-2092/ui-should-not-allow-manual-management-of-scim-managed-users-in-unleash
Adds a UI SCIM guard when trying to manage users.
The condition for the guard is:
- Enterprise
- SCIM flag enabled
- SCIM setting enabled
- SCIM user
![image](https://github.com/Unleash/unleash/assets/14320932/8a5451f1-0d6e-48ba-b090-bb5832c0e9ec )
2024-04-15 14:04:41 +01:00
Thomas Heartman
3d60c2acd0
feat: allow you to filter for "my projects" ( #6855 )
...
This change adds filtering functionality to the project list filter
buttons.
In this case, "my projects" is defined as any project that is marked as
a favorite OR (inclusive or) that you are a part of, as defined by your
user profile.
2024-04-15 11:17:53 +00:00
Jaanus Sellin
9aee1a7c42
feat: change time based feedback to button ( #6837 )
...
![image](https://github.com/Unleash/unleash/assets/964450/34070916-880d-41b6-809a-4046e3a1312f )
2024-04-15 12:44:35 +03:00
Tymoteusz Czech
e10ad7257f
Fix: insights loading ( #6834 )
...
Loading state for
- charts (placeholder data, animation)
- user stats - loading skeleton animation
- empty flags stats
- kept other "stat" widgets as-is, usually not visible
2024-04-15 09:46:56 +02:00
renovate[bot]
1f4febbd3c
chore(deps): update dependency @types/node to v18.19.30 ( #6853 )
...
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node )
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ))
| [`18.19.29` ->
`18.19.30`](https://renovatebot.com/diffs/npm/@types%2fnode/18.19.29/18.19.30 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.19.30?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.19.30?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.19.29/18.19.30?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.19.29/18.19.30?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-15 02:44:46 +00:00
renovate[bot]
d8a4a0cff2
chore(deps): update material-ui monorepo ( #6722 )
...
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@mui/icons-material](https://mui.com/material-ui/material-icons/ )
([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-icons-material ))
| [`5.15.3` ->
`5.15.15`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.15.3/5.15.15 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2ficons-material/5.15.15?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2ficons-material/5.15.15?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2ficons-material/5.15.3/5.15.15?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2ficons-material/5.15.3/5.15.15?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
| [@mui/lab](https://mui.com/material-ui/about-the-lab/ )
([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-lab ))
| [`5.0.0-alpha.159` ->
`5.0.0-alpha.170`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.159/5.0.0-alpha.170 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2flab/5.0.0-alpha.170?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2flab/5.0.0-alpha.170?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2flab/5.0.0-alpha.159/5.0.0-alpha.170?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2flab/5.0.0-alpha.159/5.0.0-alpha.170?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
| [@mui/material](https://mui.com/material-ui/ )
([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-material ))
| [`5.15.3` ->
`5.15.15`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.15.3/5.15.15 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.15.15?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.15.15?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fmaterial/5.15.3/5.15.15?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fmaterial/5.15.3/5.15.15?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
| [@mui/x-date-pickers](https://mui.com/x/react-date-pickers/ )
([source](https://togithub.com/mui/mui-x/tree/HEAD/packages/x-date-pickers ))
| [`6.19.8` ->
`6.19.9`](https://renovatebot.com/diffs/npm/@mui%2fx-date-pickers/6.19.8/6.19.9 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fx-date-pickers/6.19.9?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fx-date-pickers/6.19.9?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fx-date-pickers/6.19.8/6.19.9?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fx-date-pickers/6.19.8/6.19.9?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>mui/material-ui (@​mui/icons-material)</summary>
###
[`v5.15.15`](https://togithub.com/mui/material-ui/releases/tag/v5.15.15 )
[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.15.14...v5.15.15 )
A big thanks to the 7 contributors who made this release possible. Here
are some highlights ✨ :
This release was mostly about 🐛 bug fixes and 📚 documentation
improvements.
##### `@mui/material@5.15.15`
- \[Autocomplete] Display options provided to the `options` prop even if
loading is true
([#​41677](https://togithub.com/mui/material-ui/issues/41677 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
- \[RadioGroup] Apply classnames
([#​41681](https://togithub.com/mui/material-ui/issues/41681 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
##### `@mui/system@5.15.15`
- Fix typo to avoid infinite recursion in function call
([#​41678](https://togithub.com/mui/material-ui/issues/41678 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
##### Docs
- \[material-ui]\[Slider] Remove `valueLabelFormat` from restricted
values demo so that the tooltip thumb label displays the same as the
value text
([#​41679](https://togithub.com/mui/material-ui/issues/41679 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
- \[material-ui] Remove deleted page from the sidenav
([#​41594](https://togithub.com/mui/material-ui/issues/41594 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[material-ui] Fix typo in CSS theme variables customization
([#​41680](https://togithub.com/mui/material-ui/issues/41680 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
- Continue migration of Base UI to sperate repository
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Add notification for MUI X v7 blog post
([#​41587](https://togithub.com/mui/material-ui/issues/41587 ))
([#​41605](https://togithub.com/mui/material-ui/issues/41605 ))
[@​cherniavskii](https://togithub.com/cherniavskii )
- Update the versions dropdown to show v6
([#​41557](https://togithub.com/mui/material-ui/issues/41557 ))
[@​mnajdova](https://togithub.com/mnajdova )
##### Core
- \[blog] Link to Romain's blog post in MUI X v7 announcement post
([#​41641](https://togithub.com/mui/material-ui/issues/41641 ))
[@​cherniavskii](https://togithub.com/cherniavskii )
- \[blog] Blog post with MUI X v7.0.0 annoucement
([#​41563](https://togithub.com/mui/material-ui/issues/41563 ))
([#​41604](https://togithub.com/mui/material-ui/issues/41604 ))
[@​cherniavskii](https://togithub.com/cherniavskii )
- \[blog] Add post about remote
([#​41565](https://togithub.com/mui/material-ui/issues/41565 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[core] Continue rename of Toolpad
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[docs-infra] Add Toolpad product/category IDs to types
([#​41551](https://togithub.com/mui/material-ui/issues/41551 ))
[@​bharatkashyap](https://togithub.com/bharatkashyap )
- \[website] Add Aarón to About Us
([#​41747](https://togithub.com/mui/material-ui/issues/41747 ))
[@​aarongarciah](https://togithub.com/aarongarciah )
- \[website] Add stray design adjustments throughout the site
([#​41642](https://togithub.com/mui/material-ui/issues/41642 ))
[@​mnajdova](https://togithub.com/mnajdova )
- \[website] Update pricing table
([#​41606](https://togithub.com/mui/material-ui/issues/41606 ))
[@​cherniavskii](https://togithub.com/cherniavskii )
All contributors of this release in alphabetical order:
[@​aarongarciah](https://togithub.com/aarongarciah ),
[@​bharatkashyap](https://togithub.com/bharatkashyap ),
[@​cherniavskii](https://togithub.com/cherniavskii ),
[@​danilo-leal](https://togithub.com/danilo-leal ),
[@​mnajdova](https://togithub.com/mnajdova ),
[@​oliviertassinari](https://togithub.com/oliviertassinari ),
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
###
[`v5.15.14`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51514 )
[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.15.13...v5.15.14 )
<!-- generated comparing v5.15.13..master -->
*Mar 18, 2024*
A big thanks to the 15 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation
improvements.
##### `@mui/material@5.15.13`
- \[Accordion] Convert to support CSS extraction
([#​41221](https://togithub.com/mui/material-ui/issues/41221 ))
[@​mnajdova](https://togithub.com/mnajdova )
- <!-- 24 -->\[Autocomplete] Convert to support CSS extraction
([#​40330](https://togithub.com/mui/material-ui/issues/40330 ))
[@​mnajdova](https://togithub.com/mnajdova )
- <!-- 06 -->\[Slider] Convert to support CSS extraction
([#​41201](https://togithub.com/mui/material-ui/issues/41201 ))
[@​mnajdova](https://togithub.com/mnajdova )
- <!-- 07 -->\[Select] Fix variant type
([#​41405](https://togithub.com/mui/material-ui/issues/41405 ))
[@​sai6855](https://togithub.com/sai6855 )
- <!-- 09 -->\[typescript] Use interface instead of type for props
([#​41500](https://togithub.com/mui/material-ui/issues/41500 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
##### `@pigment-css/react@0.0.3`
- <!-- 03 -->Add Box component
([#​41451](https://togithub.com/mui/material-ui/issues/41451 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
##### `pigment-css/nextjs-plugin@0.0.3`
- <!-- 04 -->Fix alias resolver
([#​41494](https://togithub.com/mui/material-ui/issues/41494 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- <!-- 05 -->Follow-up to
[#​41494](https://togithub.com/mui/material-ui/issues/41494 )
([#​41502](https://togithub.com/mui/material-ui/issues/41502 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
##### Docs
- <!-- 12 -->\[joy-ui] Add UI improvements to the side navigation demo
([#​41461](https://togithub.com/mui/material-ui/issues/41461 ))
[@​cipherlogs](https://togithub.com/cipherlogs )
- <!-- 11 -->\[pigment-css] Add media query guide
([#​41473](https://togithub.com/mui/material-ui/issues/41473 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- <!-- 10 -->\[pigment-css] Fixing location of the ExtendTheme type in
the docs
([#​41499](https://togithub.com/mui/material-ui/issues/41499 ))
[@​jherr](https://togithub.com/jherr )
- <!-- 08 -->\[material-ui]\[Progress] Add Circular progress gradient
demo from Github comment
([#​40559](https://togithub.com/mui/material-ui/issues/40559 ))
[@​DiegoAndai](https://togithub.com/DiegoAndai )
##### Core
- <!-- 23 -->\[blog] Bringing consistency to Material UI customization
APIs
([#​41040](https://togithub.com/mui/material-ui/issues/41040 ))
[@​DiegoAndai](https://togithub.com/DiegoAndai )
- <!-- 22 -->\[code-infra] Rename
[@​mui-internal/docs-utils](https://togithub.com/mui-internal/docs-utils )
to
[@​mui/internal-docs-utils](https://togithub.com/mui/internal-docs-utils )
([#​41498](https://togithub.com/mui/material-ui/issues/41498 ))
[@​michaldudak](https://togithub.com/michaldudak )
- <!-- 21 -->\[code-infra] Copy translations.json to
[@​mui/docs](https://togithub.com/mui/docs ) build folder
([#​41472](https://togithub.com/mui/material-ui/issues/41472 ))
[@​Janpot](https://togithub.com/Janpot )
- <!-- 20 -->\[core] Use Circle CI context
([#​41532](https://togithub.com/mui/material-ui/issues/41532 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 19 -->\[core] Fix CHANGELOG format and update date
([#​41481](https://togithub.com/mui/material-ui/issues/41481 ))
[@​DiegoAndai](https://togithub.com/DiegoAndai )
- <!-- 18 -->\[docs] Fix useStorageState regressions
([#​41223](https://togithub.com/mui/material-ui/issues/41223 ))
[@​Janpot](https://togithub.com/Janpot )
- <!-- 17 -->\[docs] Fix some Vale errors
([#​41516](https://togithub.com/mui/material-ui/issues/41516 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 15 -->\[material-ui]\[docs] Fix landing page template's h1 size
([#​41543](https://togithub.com/mui/material-ui/issues/41543 ))
[@​zanivan](https://togithub.com/zanivan )
- <!-- 14 -->\[material-ui]\[docs] Apply new code header docs feature
([#​41508](https://togithub.com/mui/material-ui/issues/41508 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 11 -->\[material-next] Drop the package
([#​41544](https://togithub.com/mui/material-ui/issues/41544 ))
[@​mnajdova](https://togithub.com/mnajdova )
- <!-- 16 -->\[docs-infra] Fail CI on Vale error
([#​40944](https://togithub.com/mui/material-ui/issues/40944 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 15 -->\[docs-infra] Improve Vale config
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 14 -->\[docs-infra] Add a feature list "component"
([#​41484](https://togithub.com/mui/material-ui/issues/41484 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 13 -->\[docs-infra] Add code block header classes
([#​41487](https://togithub.com/mui/material-ui/issues/41487 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 21 -->\[docs-infra] Make the Algolia search input label
invisible
([#​41542](https://togithub.com/mui/material-ui/issues/41542 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 03 -->\[website] Improve navbar's items hover state
([#​41535](https://togithub.com/mui/material-ui/issues/41535 ))
[@​EyaOuenniche](https://togithub.com/EyaOuenniche )
- <!-- 02 -->\[website] Split Toolpad documentation
([#​41316](https://togithub.com/mui/material-ui/issues/41316 ))
[@​bharatkashyap](https://togithub.com/bharatkashyap )
- <!-- 01 -->\[website] Use MUI X Data Grid v7-beta
([#​41276](https://togithub.com/mui/material-ui/issues/41276 ))
[@​cherniavskii](https://togithub.com/cherniavskii )
All contributors of this release in alphabetical order:
[@​bharatkashyap](https://togithub.com/bharatkashyap ),
[@​brijeshb42](https://togithub.com/brijeshb42 ),
[@​cherniavskii](https://togithub.com/cherniavskii ),
[@​cipherlogs](https://togithub.com/cipherlogs ),
[@​danilo-leal](https://togithub.com/danilo-leal ),
[@​DiegoAndai](https://togithub.com/DiegoAndai ),
[@​EyaOuenniche](https://togithub.com/EyaOuenniche ),
[@​Janpot](https://togithub.com/Janpot ),
[@​jherr](https://togithub.com/jherr ),
[@​michaldudak](https://togithub.com/michaldudak ),
[@​mnajdova](https://togithub.com/mnajdova ),
[@​oliviertassinari](https://togithub.com/oliviertassinari ),
[@​sai6855](https://togithub.com/sai6855 ),
[@​siriwatknp](https://togithub.com/siriwatknp ),
[@​zanivan](https://togithub.com/zanivan )
###
[`v5.15.13`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51513 )
[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.15.12...v5.15.13 )
<!-- generated comparing v5.15.12..master -->
*Mar 12, 2024*
A big thanks to the 15 contributors who made this release possible. Here
are some highights ✨
- The Material UI free Checkout template got a design uplift
([#​41447](https://togithub.com/mui/material-ui/issues/41447 ))
[@​zanivan](https://togithub.com/zanivan )
##### `@mui/material@5.15.13`
- \[Alert] Add `slots` and `slotProps` type to theme
([#​41324](https://togithub.com/mui/material-ui/issues/41324 ))
[@​sai6855](https://togithub.com/sai6855 )
- \[Autocomplete] Fix the options list being added to the DOM in
`freeSolo` mode even when there are no options, causing style problems
([#​41300](https://togithub.com/mui/material-ui/issues/41300 ))
[@​rakeshmusturi](https://togithub.com/rakeshmusturi )
- Add `paperChannel` token
([#​41447](https://togithub.com/mui/material-ui/issues/41447 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- \[Switch] Convert to support CSS extraction
([#​41367](https://togithub.com/mui/material-ui/issues/41367 ))
[@​alexfauquette](https://togithub.com/alexfauquette )
- \[Tooltip] Support event handlers with extra parameters
([#​41320](https://togithub.com/mui/material-ui/issues/41320 ))
[@​LukasTy](https://togithub.com/LukasTy )
##### `@mui/system@5.15.13`
- \[RtlProvider] Add component & hook
([#​41241](https://togithub.com/mui/material-ui/issues/41241 ))
[@​mnajdova](https://togithub.com/mnajdova )
##### `@mui/utils@5.15.13`
- \[utils] Fix visually hidden styles' margin unit
([#​41477](https://togithub.com/mui/material-ui/issues/41477 ))
[@​michaldudak](https://togithub.com/michaldudak )
##### `@mui/codemod@5.15.13`
- Fix merging of slotProps and componentProps
([#​41323](https://togithub.com/mui/material-ui/issues/41323 ))
[@​sai6855](https://togithub.com/sai6855 )
##### `@mui/base@5.0.0-beta.39`
- \[material-ui]\[joy-ui]\[Autocomplete] Keep in sync highlighted index
when the option still exists
([#​41306](https://togithub.com/mui/material-ui/issues/41306 ))
[@​CGNonofr](https://togithub.com/CGNonofr )
- \[FormControl] Export `FormControlOwnerState` type from index
([#​41287](https://togithub.com/mui/material-ui/issues/41287 ))
[@​michaeldfoley](https://togithub.com/michaeldfoley )
- \[material-ui]\[TextareaAutosize] Fix inline style not getting applied
([#​41369](https://togithub.com/mui/material-ui/issues/41369 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
##### `@pigment-css/react@0.0.2`
- Handle more scenarios while transforming sx prop
([#​41372](https://togithub.com/mui/material-ui/issues/41372 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- Improve testing of fixtures
([#​41389](https://togithub.com/mui/material-ui/issues/41389 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- Fix `keyframes` serialize styles error
([#​41395](https://togithub.com/mui/material-ui/issues/41395 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- Use class selector instead of class value
([#​41442](https://togithub.com/mui/material-ui/issues/41442 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- \[next] Warn about unsupported turbo mode in Next.js
([#​41445](https://togithub.com/mui/material-ui/issues/41445 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
##### Docs
- \[material-ui] Refine checkout template
([#​40967](https://togithub.com/mui/material-ui/issues/40967 ))
[@​zanivan](https://togithub.com/zanivan )
- \[material-ui] Add docs for complementary List components
([#​41329](https://togithub.com/mui/material-ui/issues/41329 ))
[@​anle9650](https://togithub.com/anle9650 )
- \[material-ui] Add docs for complementary Dialog components
([#​41313](https://togithub.com/mui/material-ui/issues/41313 ))
[@​jwithington](https://togithub.com/jwithington )
- \[material-ui] Fix Templates live preview link
([#​41467](https://togithub.com/mui/material-ui/issues/41467 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[material-ui] Polish out the templates page
([#​41468](https://togithub.com/mui/material-ui/issues/41468 ))
[@​zanivan](https://togithub.com/zanivan )
- \[material-ui] Adjust the Templates card design
([#​41450](https://togithub.com/mui/material-ui/issues/41450 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[joy-ui] Remove unnecessary styles in color inversion footer demo
([#​41419](https://togithub.com/mui/material-ui/issues/41419 ))
[@​cipherlogs](https://togithub.com/cipherlogs )
- \[joy-ui] Update case studies chip background color
([#​41413](https://togithub.com/mui/material-ui/issues/41413 ))
[@​cipherlogs](https://togithub.com/cipherlogs )
- \[joy-ui] Remove wrong CSS prop from the Sign-in-side template
([#​41383](https://togithub.com/mui/material-ui/issues/41383 ))
[@​cipherlogs](https://togithub.com/cipherlogs )
- \[joy-ui] Fix broken link on the Color Inversion page
([#​41407](https://togithub.com/mui/material-ui/issues/41407 ))
[@​cipherlogs](https://togithub.com/cipherlogs )
- \[pigment] Add example and guide section
([#​41249](https://togithub.com/mui/material-ui/issues/41249 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- \[pigment-css] Brand name nonbreaking space
([#​41438](https://togithub.com/mui/material-ui/issues/41438 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[pigment-css] Fix import on the README
([#​41411](https://togithub.com/mui/material-ui/issues/41411 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[pigment-css] Edit starter template links on README
([#​41409](https://togithub.com/mui/material-ui/issues/41409 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[pigment-css] Tweak the examples and edit READMEs
([#​41408](https://togithub.com/mui/material-ui/issues/41408 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[pigment-css] Adjust the bit about CSS vars on the README
([#​41463](https://togithub.com/mui/material-ui/issues/41463 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- Finish brand name fixes
[#​41438](https://togithub.com/mui/material-ui/issues/41438 )
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Remove noreferrer
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Fix v4 docs <b> appearing in notifications
([#​41390](https://togithub.com/mui/material-ui/issues/41390 ))
[@​peterwangsc](https://togithub.com/peterwangsc )
- Update GitHub project links
([#​41370](https://togithub.com/mui/material-ui/issues/41370 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
##### Core
- \[pigment] Make all Pigment CSS packages public
([#​41404](https://togithub.com/mui/material-ui/issues/41404 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- \[pigment] Rename directories to match package names
([#​41453](https://togithub.com/mui/material-ui/issues/41453 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- \[pigment-css] Example fix leading spaces
([#​41439](https://togithub.com/mui/material-ui/issues/41439 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[code-infra] Add short note about e2e-website workflow schedule
([#​41355](https://togithub.com/mui/material-ui/issues/41355 ))
[@​Janpot](https://togithub.com/Janpot )
- \[code-infra] Add alias for icon types
([#​41248](https://togithub.com/mui/material-ui/issues/41248 ))
[@​Janpot](https://togithub.com/Janpot )
- \[code-infra] Reduce concurrency of typescript:ci further
([#​41392](https://togithub.com/mui/material-ui/issues/41392 ))
[@​Janpot](https://togithub.com/Janpot )
- \[code-infra] Reduce concurrency for test_types ci job
([#​41385](https://togithub.com/mui/material-ui/issues/41385 ))
[@​Janpot](https://togithub.com/Janpot )
- \[code-infra] Adapt API code generator to Base UI repo needs
([#​41475](https://togithub.com/mui/material-ui/issues/41475 ))
[@​michaldudak](https://togithub.com/michaldudak )
- \[docs-infra] Don't generate preview files for the templates
([#​41379](https://togithub.com/mui/material-ui/issues/41379 ))
[@​mnajdova](https://togithub.com/mnajdova )
- \[docs-infra] Fix pigment css apps path in the render mui demos script
([#​41476](https://togithub.com/mui/material-ui/issues/41476 ))
[@​mnajdova](https://togithub.com/mnajdova )
- \[docs-infra] move feedback to ESM
([#​41381](https://togithub.com/mui/material-ui/issues/41381 ))
[@​alexfauquette](https://togithub.com/alexfauquette )
- \[docs-infra] Improve color contrast throughout
([#​41387](https://togithub.com/mui/material-ui/issues/41387 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[docs-infra] Simplify Algolia crawler config
([#​41312](https://togithub.com/mui/material-ui/issues/41312 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[docs-infra] Adjust the tabs and layout selection design
([#​41084](https://togithub.com/mui/material-ui/issues/41084 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[blog] Update the Base UI post with links to dedicated repo
([#​41358](https://togithub.com/mui/material-ui/issues/41358 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[website] Update the Careers page role
([#​41384](https://togithub.com/mui/material-ui/issues/41384 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[website] Compress about images
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[website] Improve color contrast on the homepage
([#​41465](https://togithub.com/mui/material-ui/issues/41465 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[examples] Add pigment-css-vite-ts starter example
([#​41196](https://togithub.com/mui/material-ui/issues/41196 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- \[examples] Add pigment-css-nextjs-ts starter project
([#​41105](https://togithub.com/mui/material-ui/issues/41105 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
All contributors of this release in alphabetical order:
[@​alexfauquette](https://togithub.com/alexfauquette ),
[@​brijeshb42](https://togithub.com/brijeshb42 ),
[@​CGNonofr](https://togithub.com/CGNonofr ),
[@​cipherlogs](https://togithub.com/cipherlogs ),
[@​danilo-leal](https://togithub.com/danilo-leal ),
[@​Janpot](https://togithub.com/Janpot ),
[@​michaeldfoley](https://togithub.com/michaeldfoley ),
[@​mnajdova](https://togithub.com/mnajdova ),
[@​oliviertassinari](https://togithub.com/oliviertassinari ),
[@​peterwangsc](https://togithub.com/peterwangsc ),
[@​rakeshmusturi](https://togithub.com/rakeshmusturi ),
[@​sai6855](https://togithub.com/sai6855 ),
[@​siriwatknp](https://togithub.com/siriwatknp ),
[@​zanivan](https://togithub.com/zanivan ),
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
###
[`v5.15.12`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51512 )
[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.15.11...v5.15.12 )
<!-- generated comparing v5.15.11..master -->
*Mar 5, 2024*
A big thanks to the 21 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation
improvements.
##### `@mui/material@5.15.12`
- <!-- 52 -->Support props callback type in theme variants
([#​40946](https://togithub.com/mui/material-ui/issues/40946 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
- <!-- 50 -->\[Alert] Convert to support zero runtime
([#​41230](https://togithub.com/mui/material-ui/issues/41230 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- <!-- 49 -->\[Alert] Deprecate composed classes
([#​40688](https://togithub.com/mui/material-ui/issues/40688 ))
[@​DiegoAndai](https://togithub.com/DiegoAndai )
- <!-- 44 -->\[Button] Deprecate classes for v6
([#​40675](https://togithub.com/mui/material-ui/issues/40675 ))
[@​sai6855](https://togithub.com/sai6855 )
- <!-- 43 -->\[Checkbox] `large` size added in type
([#​34909](https://togithub.com/mui/material-ui/issues/34909 ))
[@​smox](https://togithub.com/smox )
- <!-- 42 -->\[Chip] Deprecate composed classes
([#​41235](https://togithub.com/mui/material-ui/issues/41235 ))
[@​sai6855](https://togithub.com/sai6855 )
- <!-- 41 -->\[Chip] Correct `deleteIconColorPrimary` and
`deleteIconColorSecondary` class descriptions
([#​41231](https://togithub.com/mui/material-ui/issues/41231 ))
[@​sai6855](https://togithub.com/sai6855 )
- <!-- 17 -->Remove unused dev dependency on
[@​mui/lab](https://togithub.com/mui/lab )
([#​41198](https://togithub.com/mui/material-ui/issues/41198 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- <!-- 15 -->\[Slider] Deprecate components and componentProps props
for v6
([#​40777](https://togithub.com/mui/material-ui/issues/40777 ))
[@​lhilgert9](https://togithub.com/lhilgert9 )
##### `@mui/system@5.15.12`
- <!-- 16 -->\[pigment-css]\[material-ui] Render badge demos
([#​41353](https://togithub.com/mui/material-ui/issues/41353 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- <!-- 14 -->\[pigment-css] Update to latest wyw version
([#​41363](https://togithub.com/mui/material-ui/issues/41363 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- <!-- 13 -->\[pigment-css] Rename scope to
[@​pigment-css](https://togithub.com/pigment-css )
([#​41354](https://togithub.com/mui/material-ui/issues/41354 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- <!-- 12 -->\[pigment-css] Rename zero-runtime to pigmentcss
([#​41317](https://togithub.com/mui/material-ui/issues/41317 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- <!-- 11 -->Fix createSpacing return type
([#​41318](https://togithub.com/mui/material-ui/issues/41318 ))
[@​matystroia](https://togithub.com/matystroia )
- <!-- 06 -->\[zero] Add support for styled tagged-template literals
([#​41268](https://togithub.com/mui/material-ui/issues/41268 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- <!-- 05 -->\[zero] Set up Material UI migration demos
([#​41267](https://togithub.com/mui/material-ui/issues/41267 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- <!-- 04 -->\[zero] Move extendTheme to already existing
@​mui/zero-runtime/utils
([#​41254](https://togithub.com/mui/material-ui/issues/41254 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- <!-- 03 -->\[zero] Remove `object` intersection from CSS Fallback
([#​41271](https://togithub.com/mui/material-ui/issues/41271 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- <!-- 02 -->\[zero] Minor wording changes in README
([#​41253](https://togithub.com/mui/material-ui/issues/41253 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- <!-- 01 -->\[zero] Prepare zero-runtime packages for public release
([#​41226](https://togithub.com/mui/material-ui/issues/41226 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
##### `@mui/joy@5.0.0-beta.30`
- <!-- 48 -->\[joy-ui]\[Autocomplete] Fix text overflow in Chip
([#​40229](https://togithub.com/mui/material-ui/issues/40229 ))
[@​PunitSoniME](https://togithub.com/PunitSoniME )
##### Docs
- <!-- 47 -->\[base-ui] Update the docs post repo separation
([#​41328](https://togithub.com/mui/material-ui/issues/41328 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 34 -->Fix missing partner link
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 33 -->Update links to GitHub projects
([#​41297](https://togithub.com/mui/material-ui/issues/41297 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 32 -->Standardize WAI-ARIA referencest
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 31 -->Fix image layout shift when loading
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 23 -->\[joy-ui] Add stray adjustments throughout the docs
([#​41211](https://togithub.com/mui/material-ui/issues/41211 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 22 -->\[material-ui] Remove duplicated text at FAQ page
([#​41326](https://togithub.com/mui/material-ui/issues/41326 ))
[@​zanivan](https://togithub.com/zanivan )
- <!-- 21 -->\[material-ui] Fix color mode toggle of the landing page
template
([#​41293](https://togithub.com/mui/material-ui/issues/41293 ))
[@​zanivan](https://togithub.com/zanivan )
- <!-- 20 -->\[system] Tweak the Usage demos
([#​41242](https://togithub.com/mui/material-ui/issues/41242 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 19 -->\[zero] Add a Why section on the README
([#​41284](https://togithub.com/mui/material-ui/issues/41284 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
##### Core
- <!-- 51 -->Revert "\[utils] Port `useLocalStorageState` hook from
Toolpad
([#​41096](https://togithub.com/mui/material-ui/issues/41096 ))"
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 46 -->\[blog] Add post about how MUI uses Toolpad
([#​40172](https://togithub.com/mui/material-ui/issues/40172 ))
[@​prakhargupta1](https://togithub.com/prakhargupta1 )
- <!-- 45 -->\[blog] No bundled demos in blog posts
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 40 -->\[code-infra] Embed translations in the
[@​mui/docs](https://togithub.com/mui/docs ) package
([#​41246](https://togithub.com/mui/material-ui/issues/41246 ))
[@​Janpot](https://togithub.com/Janpot )
- <!-- 39 -->\[code-infra] Prepare the markdown package for publishing
([#​41240](https://togithub.com/mui/material-ui/issues/41240 ))
[@​michaldudak](https://togithub.com/michaldudak )
- <!-- 38 -->\[code-infra] Unpin the version of docs-utils in scripts
([#​41232](https://togithub.com/mui/material-ui/issues/41232 ))
[@​michaldudak](https://togithub.com/michaldudak )
- <!-- 37 -->\[core] Use runtime agnostic setTimeout type
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 36 -->\[core] Remove window. reference for common globals
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 35 -->\[core] Add a script to build all packages
([#​40631](https://togithub.com/mui/material-ui/issues/40631 ))
[@​michaldudak](https://togithub.com/michaldudak )
- <!-- 30 -->\[docs-infra] Fix missing non breaking spaces
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 29 -->\[docs-infra] Add design customizations to the disclosure
element
([#​41285](https://togithub.com/mui/material-ui/issues/41285 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 28 -->\[docs-infra] Adjust headings dark mode color
([#​41292](https://togithub.com/mui/material-ui/issues/41292 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- <!-- 27 -->\[docs-infra] Fix Stack Overflow breaking space
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 26 -->\[docs-infra] Fix product selector popup not closing on
route change
([#​41166](https://togithub.com/mui/material-ui/issues/41166 ))
[@​divyammadhok](https://togithub.com/divyammadhok )
- <!-- 25 -->\[docs-infra] Improve fix blank links ad
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 24 -->\[docs-infra] Support interfaces for X docs
([#​41069](https://togithub.com/mui/material-ui/issues/41069 ))
[@​alexfauquette](https://togithub.com/alexfauquette )
- <!-- 18 -->\[infra] Adjust the links to search for issues
([#​41008](https://togithub.com/mui/material-ui/issues/41008 ))
[@​michelengelen](https://togithub.com/michelengelen )
- <!-- 10 -->\[website] Move the `React Engineer - xCharts` to `Next
roles` section
([#​41368](https://togithub.com/mui/material-ui/issues/41368 ))
[@​DanailH](https://togithub.com/DanailH )
- <!-- 09 -->\[website] Add James to About Us
([#​41362](https://togithub.com/mui/material-ui/issues/41362 ))
[@​atomiks](https://togithub.com/atomiks )
- <!-- 08 -->\[website] Polish Button outline primary medium
([#​41298](https://togithub.com/mui/material-ui/issues/41298 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 07 -->\[website] Remove Heatmap chart from community plan on
pricing table
([#​41081](https://togithub.com/mui/material-ui/issues/41081 ))
[@​alexfauquette](https://togithub.com/alexfauquette )
All contributors of this release in alphabetical order:
[@​alexfauquette](https://togithub.com/alexfauquette ),
[@​atomiks](https://togithub.com/atomiks ),
[@​brijeshb42](https://togithub.com/brijeshb42 ),
[@​DanailH](https://togithub.com/DanailH ),
[@​danilo-leal](https://togithub.com/danilo-leal ),
[@​DiegoAndai](https://togithub.com/DiegoAndai ),
[@​divyammadhok](https://togithub.com/divyammadhok ),
[@​Janpot](https://togithub.com/Janpot ),
[@​lhilgert9](https://togithub.com/lhilgert9 ),
[@​matystroia](https://togithub.com/matystroia ),
[@​michaldudak](https://togithub.com/michaldudak ),
[@​michelengelen](https://togithub.com/michelengelen ),
[@​mj12albert](https://togithub.com/mj12albert ),
[@​oliviertassinari](https://togithub.com/oliviertassinari ),
[@​prakhargupta1](https://togithub.com/prakhargupta1 ),
[@​PunitSoniME](https://togithub.com/PunitSoniME ),
[@​sai6855](https://togithub.com/sai6855 ),
[@​siriwatknp](https://togithub.com/siriwatknp ),
[@​smox](https://togithub.com/smox ),
[@​zanivan](https://togithub.com/zanivan ),
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
###
[`v5.15.11`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51511 )
[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.15.10...v5.15.11 )
<!-- generated comparing v5.15.10..master -->
*Feb 21, 2024*
A big thanks to the 26 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation
improvements.
##### `@mui/material@5.15.11`
- \[Alert] Deprecate components and componentsProps props
([#​40681](https://togithub.com/mui/material-ui/issues/40681 ))
[@​DiegoAndai](https://togithub.com/DiegoAndai )
- \[Autocomplete] Caret transformation issue with font size change
([#​41066](https://togithub.com/mui/material-ui/issues/41066 ))
[@​dpertsin](https://togithub.com/dpertsin )
- \[StepLabel] Add type for StepIconComponent
([#​41082](https://togithub.com/mui/material-ui/issues/41082 ))
[@​harrydigos](https://togithub.com/harrydigos )
- \[TablePagination] Fix type error in Select props
([#​39137](https://togithub.com/mui/material-ui/issues/39137 ))
[@​PaulKristoffersson](https://togithub.com/PaulKristoffersson )
- \[Transitions] External ownerState is incorrectly forwarded to inner
components
([#​41187](https://togithub.com/mui/material-ui/issues/41187 ))
[@​gitstart](https://togithub.com/gitstart )
- Use direct import
([#​40851](https://togithub.com/mui/material-ui/issues/40851 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
##### `@mui/material-nextjs@5.15.11`
- Fix missing babel/runtime dependency in material-ui-nextjs
([#​41077](https://togithub.com/mui/material-ui/issues/41077 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
##### `@mui/system@5.15.11`
- Use direct import
([#​40851](https://togithub.com/mui/material-ui/issues/40851 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- Move useMediaQuery to system
([#​39463](https://togithub.com/mui/material-ui/issues/39463 ))
[@​justintoman](https://togithub.com/justintoman )
- Consolidate the variants props callback arguments
([#​41222](https://togithub.com/mui/material-ui/issues/41222 ))
[@​mnajdova](https://togithub.com/mnajdova )
- Merge props and ownerState in the variants props callback
([#​41219](https://togithub.com/mui/material-ui/issues/41219 ))
[@​mnajdova](https://togithub.com/mnajdova )
##### `@mui/codemod@5.15.11`
- \[AccordionSummary] Add contentGutters deprecation codemods
([#​41006](https://togithub.com/mui/material-ui/issues/41006 ))
[@​DiegoAndai](https://togithub.com/DiegoAndai )
- \[PaginationItem] Add codemod for deprecated classes
([#​41145](https://togithub.com/mui/material-ui/issues/41145 ))
[@​sai6855](https://togithub.com/sai6855 )
##### `@mui/utils@5.15.11`
- Port `useLocalStorageState` hook from Toolpad
([#​41096](https://togithub.com/mui/material-ui/issues/41096 ))
[@​Janpot](https://togithub.com/Janpot )
##### `@mui/base@5.0.0-beta.37`
- \[Switch] Add missing role attribute
([#​40907](https://togithub.com/mui/material-ui/issues/40907 ))
[@​KirankumarAmbati](https://togithub.com/KirankumarAmbati )
- \[TextareaAutosize] Improve implementation
([#​40789](https://togithub.com/mui/material-ui/issues/40789 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
##### `@mui/lab@5.0.0-alpha.164`
- \[Masonry] Ability to sort elements from left to right
([#​39904](https://togithub.com/mui/material-ui/issues/39904 ))
[@​Rishi556](https://togithub.com/Rishi556 )
##### Docs
- \[base-ui] Fix focus state demo in Base UI autocomplete
([#​41104](https://togithub.com/mui/material-ui/issues/41104 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[base-ui] Update the Accessibility page demos design
([#​40995](https://togithub.com/mui/material-ui/issues/40995 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[joy-ui] Fix LinearProgressWithLabel example
([#​41194](https://togithub.com/mui/material-ui/issues/41194 ))
[@​khgiddon](https://togithub.com/khgiddon )
- \[joy-ui] Fix 404 image on the docs
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[material-ui] Add a "start now" section on the Overview page
([#​41137](https://togithub.com/mui/material-ui/issues/41137 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[material-ui] Inform about deprecated TablePagination SelectProps
usage
([#​41186](https://togithub.com/mui/material-ui/issues/41186 ))
[@​gitstart](https://togithub.com/gitstart )
- \[material-ui] Update the Testing page's Argos link
([#​41170](https://togithub.com/mui/material-ui/issues/41170 ))
[@​gregberge](https://togithub.com/gregberge )
- \[material-ui] Remove Masonry component and Material Design icon from
the landing page template
([#​41080](https://togithub.com/mui/material-ui/issues/41080 ))
[@​zanivan](https://togithub.com/zanivan )
- \[material-ui] Standardize all references to Material Design 3 (M3)
([#​40903](https://togithub.com/mui/material-ui/issues/40903 ))
[@​samuelsycamore](https://togithub.com/samuelsycamore )
- \[material-ui] Add stray fixes around a few pages
([#​41038](https://togithub.com/mui/material-ui/issues/41038 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[material-ui]\[joy-ui]\[system] Restore and revise the Box docs
([#​40622](https://togithub.com/mui/material-ui/issues/40622 ))
[@​samuelsycamore](https://togithub.com/samuelsycamore )
- \[material-ui] Add simpler demo for default behavior
([#​40980](https://togithub.com/mui/material-ui/issues/40980 ))
[@​zanivan](https://togithub.com/zanivan )
- \[system] Explain why AppRouterCacheProvider
([#​40909](https://togithub.com/mui/material-ui/issues/40909 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Link to react-transition group with https
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Update broken URL hashes
([#​41185](https://togithub.com/mui/material-ui/issues/41185 ))
[@​LukasTy](https://togithub.com/LukasTy )
- Prefer https links
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Fix MUI Treasury link
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Migrate the last > quotes to ::: callouts
[@​oliviertassinari](https://togithub.com/oliviertassinari )
##### Core
- \[blog] Add new product tags and stray adjustments
([#​41193](https://togithub.com/mui/material-ui/issues/41193 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[blog] Simplify `/base-ui-2024-plans/` page
([#​41171](https://togithub.com/mui/material-ui/issues/41171 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[blog] Add link to Base UI API changes RFC
([#​41089](https://togithub.com/mui/material-ui/issues/41089 ))
[@​michaldudak](https://togithub.com/michaldudak )
- \[blog] Remove the "News" tag
([#​41208](https://togithub.com/mui/material-ui/issues/41208 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[changelog] Remove
[@​mui/system](https://togithub.com/mui/system )[@​5](https://togithub.com/5 ).15.10
([#​41093](https://togithub.com/mui/material-ui/issues/41093 ))
[@​michaldudak](https://togithub.com/michaldudak )
- \[code-infra] Move typescript-to-proptypes to internal-scripts package
([#​41079](https://togithub.com/mui/material-ui/issues/41079 ))
[@​michaldudak](https://togithub.com/michaldudak )
- \[code-infra] Move Link to
[@​mui/docs](https://togithub.com/mui/docs )
([#​40889](https://togithub.com/mui/material-ui/issues/40889 ))
[@​Janpot](https://togithub.com/Janpot )
- \[code-infra] Use `experimental.cpus` to control amount of export
workers in Next.js
([#​41132](https://togithub.com/mui/material-ui/issues/41132 ))
[@​Janpot](https://togithub.com/Janpot )
- \[code-infra] Load commonjs files in next.config.mjs with require
([#​41108](https://togithub.com/mui/material-ui/issues/41108 ))
[@​Janpot](https://togithub.com/Janpot )
- \[code-infra] Prepare babel macros package for publishing to npm
([#​41178](https://togithub.com/mui/material-ui/issues/41178 ))
[@​michaldudak](https://togithub.com/michaldudak )
- \[code-infra] Build internal packages before publishing
([#​41210](https://togithub.com/mui/material-ui/issues/41210 ))
[@​michaldudak](https://togithub.com/michaldudak )
- \[core] Improve the release instructions
([#​40973](https://togithub.com/mui/material-ui/issues/40973 ))
[@​mnajdova](https://togithub.com/mnajdova )
- \[core] Simplify Next.js Demo Zero Runtime guide
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[core] Fix TypeScript spelling in changelog
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[core] Fix small detail in the autocomplete demo
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[core] Increase node memory limit on Netlify build
([#​41111](https://togithub.com/mui/material-ui/issues/41111 ))
[@​michaldudak](https://togithub.com/michaldudak )
- \[core]\[Tooltip] Remove incorrect code comment
([#​41179](https://togithub.com/mui/material-ui/issues/41179 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
- \[core] Fix missing context display names
([#​41168](https://togithub.com/mui/material-ui/issues/41168 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[core]\[base-ui] Remove `@mui/base` dev dependency from Base UI
workspace
([#​41216](https://togithub.com/mui/material-ui/issues/41216 ))
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
- \[zero]\[demo] Fix sample next app build
([#​41197](https://togithub.com/mui/material-ui/issues/41197 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- \[docs-infra] Simplify copy logic
([#​41167](https://togithub.com/mui/material-ui/issues/41167 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[docs-infra] New way of providing API layout config
([#​41106](https://togithub.com/mui/material-ui/issues/41106 ))
[@​alexfauquette](https://togithub.com/alexfauquette )
- \[docs-infra] Reduce scrollbar width on ROC
([#​41148](https://togithub.com/mui/material-ui/issues/41148 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[docs-infra] Add external link arrow
([#​41129](https://togithub.com/mui/material-ui/issues/41129 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- \[docs-infra] Fix external link arrow
([#​41181](https://togithub.com/mui/material-ui/issues/41181 ))
[@​alexfauquette](https://togithub.com/alexfauquette )
- \[docs-infra] Flag NPM and Github as wrong spellings
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[docs-infra] Fix display when the default props is undefined
([#​41114](https://togithub.com/mui/material-ui/issues/41114 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[docs-infra] Remove random layout assignment
([#​40862](https://togithub.com/mui/material-ui/issues/40862 ))
[@​alexfauquette](https://togithub.com/alexfauquette )
- \[docs-infra] Add spacing and contrast improvements
([#​41191](https://togithub.com/mui/material-ui/issues/41191 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[docs-infra] Share vale-config
([#​41176](https://togithub.com/mui/material-ui/issues/41176 ))
[@​alexfauquette](https://togithub.com/alexfauquette )
- \[test] Generalize test utils
([#​41175](https://togithub.com/mui/material-ui/issues/41175 ))
[@​michaldudak](https://togithub.com/michaldudak )
- \[typescript-to-proptypes] Support using `Omit` on types with
conditional properties
([#​41033](https://togithub.com/mui/material-ui/issues/41033 ))
[@​flaviendelangle](https://togithub.com/flaviendelangle )
- \[website] Match chart component names
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[website] Add Marblism diamond sponsor
([#​41097](https://togithub.com/mui/material-ui/issues/41097 ))
[@​rluzists1](https://togithub.com/rluzists1 )
- \[website] Add overall improvements to the Material UI page
([#​41075](https://togithub.com/mui/material-ui/issues/41075 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[website] Fix responsive breakpoints
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[website] Fix overloading of footer JS files
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[website] Improve the footer's chip contrast
([#​41209](https://togithub.com/mui/material-ui/issues/41209 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[zero] Update to latest version of wyw-in-js
([#​41182](https://togithub.com/mui/material-ui/issues/41182 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- \[zero] Setup basic testing framework
([#​40986](https://togithub.com/mui/material-ui/issues/40986 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
- \[zero] Fix wrong CSS order by moving import to last
([#​41002](https://togithub.com/mui/material-ui/issues/41002 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- \[zero] Export `extendTheme` for creating a zero-runtime theme
([#​40897](https://togithub.com/mui/material-ui/issues/40897 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
- \[zero] Move extendTheme to its own subpath
([#​41204](https://togithub.com/mui/material-ui/issues/41204 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
All contributors of this release in alphabetical order:
[@​alexfauquette](https://togithub.com/alexfauquette ),
[@​brijeshb42](https://togithub.com/brijeshb42 ),
[@​danilo-leal](https://togithub.com/danilo-leal ),
[@​DiegoAndai](https://togithub.com/DiegoAndai ),
[@​dpertsin](https://togithub.com/dpertsin ),
[@​flaviendelangle](https://togithub.com/flaviendelangle ),
[@​gitstart](https://togithub.com/gitstart ),
[@​gregberge](https://togithub.com/gregberge ),
[@​harrydigos](https://togithub.com/harrydigos ),
[@​Janpot](https://togithub.com/Janpot ),
[@​justintoman](https://togithub.com/justintoman ),
[@​khgiddon](https://togithub.com/khgiddon ),
[@​KirankumarAmbati](https://togithub.com/KirankumarAmbati ),
[@​LukasTy](https://togithub.com/LukasTy ),
[@​michaldudak](https://togithub.com/michaldudak ),
[@​mnajdova](https://togithub.com/mnajdova ),
[@​nikosgavalas](https://togithub.com/nikosgavalas ),
[@​oliviertassinari](https://togithub.com/oliviertassinari ),
[@​PaulKristoffersson](https://togithub.com/PaulKristoffersson ),
[@​Rishi556](https://togithub.com/Rishi556 ),
[@​rluzists1](https://togithub.com/rluzists1 ),
[@​sai6855](https://togithub.com/sai6855 ),
[@​samuelsycamore](https://togithub.com/samuelsycamore ),
[@​siriwatknp](https://togithub.com/siriwatknp ),
[@​zanivan](https://togithub.com/zanivan ),
[@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli )
###
[`v5.15.10`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51510 )
[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.15.9...v5.15.10 )
<!-- generated comparing v5.15.9..master -->
*Feb 12, 2024*
A big thanks to the 8 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation
improvements.
##### `@mui/material@5.15.10`
- \[Avatar] Add props deprecation with a codemod
([#​40853](https://togithub.com/mui/material-ui/issues/40853 ))
[@​siriwatknp](https://togithub.com/siriwatknp )
##### `@mui/system@5.15.10`
- \[Stack] Update import statement for Stack component
([#​41032](https://togithub.com/mui/material-ui/issues/41032 ))
[@​sai6855](https://togithub.com/sai6855 )
##### `@mui/joy@5.0.0-beta.28`
- \[Button] Fix `disabled` prop priority when inside button group
([#​41000](https://togithub.com/mui/material-ui/issues/41000 ))
[@​Smileek](https://togithub.com/Smileek )
- \[IconButton] Support loading prop
([#​40949](https://togithub.com/mui/material-ui/issues/40949 ))
[@​Smileek](https://togithub.com/Smileek )
##### Docs
- \[Button]\[material-ui] Fix 'File upload' demo a11y
([#​40943](https://togithub.com/mui/material-ui/issues/40943 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[TableRow]\[material-ui] Escape markup in `children` prop so docgen
tools don't parse it as HTML
([#​40992](https://togithub.com/mui/material-ui/issues/40992 ))
[@​millerized](https://togithub.com/millerized )
- \[material-ui] Remove outdated example projects link (it uses Joy UI
now)
([#​40913](https://togithub.com/mui/material-ui/issues/40913 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[material-ui] Fix the "Intro to the MUI ecosystem" link placement
([#​40988](https://togithub.com/mui/material-ui/issues/40988 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- Fix 301 redirection to StackBlitz
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Fix h1 on Joy UI templates
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Have MUI workspace own the CodeSandbox
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Add notification for mui x v7 beta
([#​41001](https://togithub.com/mui/material-ui/issues/41001 ))
[@​joserodolfofreitas](https://togithub.com/joserodolfofreitas )
- Fix 301 links
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Fix Next.js v13.5.1 <title> SEO regression
([#​40302](https://togithub.com/mui/material-ui/issues/40302 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- Add a 404 page
([#​40884](https://togithub.com/mui/material-ui/issues/40884 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- Fix missing GitHub label when opening new issue
[@​oliviertassinari](https://togithub.com/oliviertassinari )
##### Core
- \[blog] Add post about upcoming plans for Base UI
([#​40882](https://togithub.com/mui/material-ui/issues/40882 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[core] Simplify CodeSandbox reproduction
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[core] Missing redirection
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[core] Export functions from `copyFiles` script to reuse in MUI X
repo
([#​40970](https://togithub.com/mui/material-ui/issues/40970 ))
[@​cherniavskii](https://togithub.com/cherniavskii )
- \[core] Avoid variable shorthands
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[docs-infra] Fix search icon issue
([#​40957](https://togithub.com/mui/material-ui/issues/40957 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- \[docs-infra] Ignore classes tagged with `@ignore`
([#​41009](https://togithub.com/mui/material-ui/issues/41009 ))
[@​cherniavskii](https://togithub.com/cherniavskii )
- \[docs-infra] Fix selected tab on codeblocks
([#​41036](https://togithub.com/mui/material-ui/issues/41036 ))
[@​danilo-leal](https://togithub.com/danilo-leal )
- \[website] Polish Customer Support Agent role
[@​oliviertassinari](https://togithub.com/oliviertassinari )
All contributors of this release in alphabetical order:
[@​cherniavskii](https://togithub.com/cherniavskii ),
[@​danilo-leal](https://togithub.com/danilo-leal ),
[@​joserodolfofreitas](https://togithub.com/joserodolfofreitas ),
[@​millerized](https://togithub.com/millerized ),
[@​oliviertassinari](https://togithub.com/oliviertassinari ),
[@​sai6855](https://togithub.com/sai6855 ),
[@​siriwatknp](https://togithub.com/siriwatknp ),
[@​Smileek](https://togithub.com/Smileek )
###
[`v5.15.9`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v5159---generated-comparing-v5158master--- )
[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.15.8...v5.15.9 )
*Feb 8, 2024*
A big thanks to the 7 contributors who made this release possible. Here
are some highlights ✨ :
- 🐛 A critical fix to remove non-published library usage in
`@mui/material` peerDependencies.
##### `@mui/material@5.15.9`
- <!-- 11 -->\[autocomplete] Avoid spread operator
([#​40968](https://togithub.com/mui/material-ui/issues/40968 ))
[@​oliviertassinari](https://togithub.com/oliviertassinari )
- <!-- 05 -->\[material] Remove zero-runtime from peer dep
([#​41003](https://togithub.com/mui/material-ui/issues/41003 ))
[@​brijeshb42](https://togithub.com/brijeshb42 )
##### `@mui/base@5.0.0-beta.36`
- <!-- 10 -->\[base-ui] Update props using Array to ReadonlyArray type
([#​40754](https://togithub.com/mui/material-ui/issues/40754 ))
[@​RaghavenderSingh](https://togithub.com/RaghavenderSingh )
##### `@mui/system@5.15.9`
- <!-- 02 -->\[system] use `ReadonlyArray` for CSS related types
([#​40972](https://togithub.com/mui/material-ui/issues/40972 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions ) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-14 09:12:52 +00:00
renovate[bot]
334709f7b1
chore(deps): update dependency sass to v1.74.1 ( #6851 )
...
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [sass](https://togithub.com/sass/dart-sass ) | [`1.72.0` ->
`1.74.1`](https://renovatebot.com/diffs/npm/sass/1.72.0/1.74.1 ) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.74.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sass/1.74.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sass/1.72.0/1.74.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.72.0/1.74.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>sass/dart-sass (sass)</summary>
###
[`v1.74.1`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1741 )
[Compare
Source](https://togithub.com/sass/dart-sass/compare/1.72.0...1.74.1 )
- No user-visible changes.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-12 18:24:01 +00:00
renovate[bot]
a797198fcf
chore(deps): update dependency orval to v6.26.0 ( #6849 )
...
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [orval](https://togithub.com/anymaniax/orval ) | [`6.25.0` ->
`6.26.0`](https://renovatebot.com/diffs/npm/orval/6.25.0/6.26.0 ) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/orval/6.26.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/orval/6.26.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/orval/6.25.0/6.26.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/orval/6.25.0/6.26.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>anymaniax/orval (orval)</summary>
###
[`v6.26.0`](https://togithub.com/anymaniax/orval/releases/tag/v6.26.0 ):
Release 6.26.0
[Compare
Source](https://togithub.com/anymaniax/orval/compare/v6.25.0...v6.26.0 )
##### Bug Fixes
- **core/src/types.ts:** operatations option mock data now supports
array ([#​1283](https://togithub.com/anymaniax/orval/issues/1283 ))
([e990899](e99089989c
))
- **core:** distinguish the value when it is blank only in `interface`
([#​1228](https://togithub.com/anymaniax/orval/issues/1228 ))
([dfa076a](dfa076aa54
))
- **core:** improve NonReadonly type
([#​1237](https://togithub.com/anymaniax/orval/issues/1237 ))
([5b76e3b](5b76e3b612
)),
closes [#​1236](https://togithub.com/anymaniax/orval/issues/1236 )
- **core:** NPE check in validator
([#​1238](https://togithub.com/anymaniax/orval/issues/1238 ))
([cf66f3f](cf66f3f5a8
))
- fixes [#​1253](https://togithub.com/anymaniax/orval/issues/1253 )
removing resolver for \`null\` type
([#​1255](https://togithub.com/anymaniax/orval/issues/1255 ))
([b63ffe6](b63ffe671e
))
- **msw:** make sure to not try to include error type in mock
implementation
([#​1274](https://togithub.com/anymaniax/orval/issues/1274 ))
([5fe09c3](5fe09c3a09
))
- **msw:** mock blobs as blobs instead of strings
([#​1269](https://togithub.com/anymaniax/orval/issues/1269 ))
([54df332](54df3321a7
))
- **msw:** return mock as array of enums if array is the correct type
([#​1272](https://togithub.com/anymaniax/orval/issues/1272 ))
([150f49e](150f49e737
))
- name param \__ in case of no body arg
([#​1263](https://togithub.com/anymaniax/orval/issues/1263 ))
([77d10b4](77d10b448c
))
- overridden non-GET queries not generating hooks
([#​1251](https://togithub.com/anymaniax/orval/issues/1251 ))
([05bb15b](05bb15b572
))
- **query:** type return of useMutation query
([#​1215](https://togithub.com/anymaniax/orval/issues/1215 ))
([9c13f1f](9c13f1f00b
))
- **query:** usePrefetch should only work for Query/Infinite types
([#​1235](https://togithub.com/anymaniax/orval/issues/1235 ))
([4fecbb2](4fecbb222d
)),
closes [#​1234](https://togithub.com/anymaniax/orval/issues/1234 )
- request bodies should take required property into account
([#​1277](https://togithub.com/anymaniax/orval/issues/1277 ))
([661a6ad](661a6ada37
))
- **swr:** error type is correct even when it's the same type as success
type ([#​1276](https://togithub.com/anymaniax/orval/issues/1276 ))
([6e521b5](6e521b5cdd
))
- **swr:** make sure to not include comma when not valid while
generating swrMutationFetcher
([#​1271](https://togithub.com/anymaniax/orval/issues/1271 ))
([ee01104](ee011044fd
))
- TypeError custom override
([#​1229](https://togithub.com/anymaniax/orval/issues/1229 ))
([4f95efb](4f95efbef0
))
- **vue:** update samples to v5 and fix type issue
([#​1268](https://togithub.com/anymaniax/orval/issues/1268 ))
([c9834b6](c9834b6b14
))
##### Features
- jsdoc block tags
([#​1231](https://togithub.com/anymaniax/orval/issues/1231 ))
([15e9033](15e9033209
))
- **swr:** add `swrInfiniteOptions` property to `output.override.swr`
([#​1245](https://togithub.com/anymaniax/orval/issues/1245 ))
([3ee6904](3ee690422e
))
- **swr:** add `swrMutationOptions` property to `output.override.swr`
([#​1225](https://togithub.com/anymaniax/orval/issues/1225 ))
([d5ccc8c](d5ccc8cf3b
))
- **swr:** remove `output.orverride.swr.options` property
([#​1246](https://togithub.com/anymaniax/orval/issues/1246 ))
([d94d15d](d94d15d8a4
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "after 7pm every weekday,before 5am
every weekday" in timezone Europe/Madrid, Automerge - At any time (no
schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-12 18:23:04 +00:00