Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RFC] Avoid or "prefer not to use" default exports #21862

Open
dmtrKovalenko opened this issue Jul 20, 2020 · 31 comments
Open

[RFC] Avoid or "prefer not to use" default exports #21862

dmtrKovalenko opened this issue Jul 20, 2020 · 31 comments
Labels
discussion RFC Request For Comments v6.x

Comments

@dmtrKovalenko
Copy link
Member

dmtrKovalenko commented Jul 20, 2020

Introduction

This discussion was initiated during the migration of eslint configs of material-ui/pickers and convention and code style consolidation. (mui/material-ui-pickers#2004)

The problem

The core repository is using export default everywhere as a primary way to export React components. This RFC is about why it is not the best approach – the main problem of the default exports is implicit renames. And this unexpected renames leads to the following problems:

Consistent naming between all files

When export default is used it allows anonymous renames on the importing side:

export default function Modal() {
... 
}

// importing file
import Dialog from '../..'

Here it appeared that the component that has displayName="Modal" and actually is a Modal in the code reads like Dialog which is weird because it has its own defined name. This can also lead to the discrepancy between the component name in the component and display name in the dev tools.

Problems with refactoring

If we have an allowed implicit rename it could be tricky to find all the places when the component is used. And automated refactoring will also do nothing because rename is totally allowed

Make sure that for named exports there is a strong AST link for the rename import { Modal as Dialog } which is simplifying refactoring and make any rename explicit

Poor importing experience

Discoverability is very poor for default exports. You cannot explore a module with IntelliSense to see if it has a default export or not. With export default, you get nothing here (maybe it does export default / maybe it doesn't (¯_(ツ)_/¯). And also it doesn't autocomplete by the component name, while for named exports – it does.

import /* here */ from 'something';

Without export default you get a nice intellisense here:

import { /* here */ } from 'something';

More solid imports section

When there are no default exports through the codebase

import * as React from 'react'; 
import Typography from './somewhere' 
import { util } from './somewhereElse'
import Default, { andSomething } from '../'

Without

import * as React from 'react'; 
import { Typography }  from './somewhere' 
import { util } from './somewhereElse'
import { Default, andSomething } from '../'

And as huge bonus for typescript users: Props importing experience will be much clearer

import { Typography, TypographyProps } from '@material-ui/core'

For now, the only way to import props is:

import Typography { TypographyProps } from '@material-ui/core'

Normal flow of things

Originally the goal of export default (I am 99% sure) was intended to export something when we don't really know what we exporting. The best case of default export power is dynamic examples – when we don't really know which component we need to import and render. Or for example next.js's page loader – when it also doesn't know which pages it needs to process exactly.

When we have a specific object that we need to export – we should name it and use this name consistently through the codebase.

Potential problems

Default exports were loved by react community because of HOC. It was really useful to do

export default withStyles(Component)

It is not possible with named exports, but we could have a convention about naming private components in the file

function _Component() { 

}

export const Component = withStyles(_Component)
@dmtrKovalenko dmtrKovalenko added the status: waiting for maintainer These issues haven't been looked at yet by a maintainer label Jul 20, 2020
@eps1lon
Copy link
Member

eps1lon commented Jul 20, 2020

the main problem of the default exports is implicit renames.

This is not a problem. It causes problem you later describe:

If we have an allowed implicit rename it could be tricky to find all the places when the component is used. And automated refactoring will also do nothing because rename is totally allowed

Types solve this.

Q: Why is renaming not a problem?

There's a boundary between interface and implementation that default exports naturally expose. Let's say I have a file where I need some list. How this list is implemented does not matter when reading the code (i.e. understand what it does). So what I do is pick one list implementation e.g. a linked list. At the call sites it doesn't matter so default imports solve this easily: import List from 'linked-list'. Even better: I can pick an arbitrary package later and don't have to rename all the callsites: import List from 'some-blazing-fast-list'

The package that exports a function never decides the name for the importee. If I import a Select from react-select I'm already omitting naming information. The correct name (following your logic) would be ReactSelectSelect. The point is that we (as an importee) already make arbitrary decisions about the naming boundary. Default or named exports have nothing to do with it.

This issue is later repeated:

When we have a specific object that we need to export – we should name it and use this name consistently through the codebase.

I don't agree. Implementation (code) and interface (name) are separate. I don't want to change every call site just because I switch to a different implementation.

And as huge bonus for typescript users: Props importing experience will be much clearer

import { Typography, TypographyProps } from '@material-ui/core'

For now, the only way to import props is:

That is already the current state of affairs? If not then we can change this without having to forbid default exports.

Discoverability is very poor for default exports. You cannot explore a module with IntelliSense to see if it has a default export or not. With export default, you get nothing here (maybe it does export default / maybe it doesn't (¯_(ツ)_/¯).

In what editor? vscode does this just fine. If I type Typography I get the completion for the module containing Typography by the name of the module: @material-ui/core/Typography.

Originally the goal of export default (I am 99% sure) was intended to export something when we don't really know what we exporting.

I don't think that thought ever came into my mind. If I export default function FancyComponent() {} I know very well what I'm exporting.

Potential problems

You should add that React.lazy "just" works without default exports. For named exports I need to wrap it in an extra promise that doesn't actually resolve to a module but object with a default key. That is not intuitive.

And ultimately: What concrete, current problem are you addressing here?

@eps1lon eps1lon added discussion and removed status: waiting for maintainer These issues haven't been looked at yet by a maintainer labels Jul 20, 2020
@dmtrKovalenko
Copy link
Member Author

dmtrKovalenko commented Jul 20, 2020

Exactly this problem:

I don't agree. Implementation (code) and interface (name) are separate. I don't want to change every call site just because I switch to a different implementation.

It is not about interface and implementation it is different. There is nothing about interface and abstractions at all here, the only name – and this name should be consistent through the codebase.

I don't think that thought ever came into my mind. If I export default function FancyComponent() {} I know very well what I'm exporting.

You don't. And a developer who is working with your file – don't know as well. If you have a function DoX and you are using it as DoY – isn't it a problem?

@oliviertassinari
Copy link
Member

oliviertassinari commented Jul 20, 2020

@dmtrKovalenko Thanks for taking the time to write this detailed RFC!

From my perspective the current filename and export convention on the codebase is free from the problems mentioned for components. For non-components modules, I believe we encourage named exports, but I'm not sure, I have never put it a lot of thoughts as opposed to the components:

Consistent naming between all files

We solve this by enforcing the name of the file to match the name of the export and import. It's strict equality between these 3 items, nothing else is allowed. For developers consuming the library, they have the choice to use the barrel index or nested import. We also have an eslint rule that forbids the default export to match the name of a named export.

Problems with refactoring

Implicit rename isn't allowed, so free from this problem, regex works.

Poor importing experience

We solve this problem by forcing each component to be hosted on a single file. There is only the default export that is relevant.

More solid imports section

This argument seems to be a matter of taste, I don't see any pros or cons in any direction?


Reading on Twitter a thread on this matter, I find myself to agree with the vision of Jordan Harband: https://twitter.com/ljharb/status/1084131812559843328, which isn't surprising considering he's behind the eslint rules we use (airbnb). These rules ask for a default export when there is only one named export.

@dmtrKovalenko
Copy link
Member Author

My question is: why we need to invent some conventions, create rules -- if we have an already name for that. And we don't need anything more?

Regarding imports section:

Doesn't this feel strange for you

import Typography, { TypographyProps } from "."

And this?:

import Text, { TypographyProps } from "."

@oliviertassinari
Copy link
Member

oliviertassinari commented Jul 20, 2020

@dmtrKovalenko I think that it's worth taking a step back into the history and see why the current structure of the repository. The current structure is designed so developers can find components and navigate the code as easily as possible. We achieved it with a couple of choices:

  1. All the modules are flattened, one exported module, one file or one folder at the root of the src. The only leverage for organizing is the default ASC sorting of the file system. In the past, we used to nest modules. Treating each module is it could be its own package was one of the best changes of v1.
    For instance, this means that we need to move https://github.com/mui-org/material-ui-pickers/blob/dfbbe65d7ba4f858a2e660c19d49ab12f5e4fe87/lib/src/views/Calendar/Day.tsx under /src.
  2. We organize the files so it can be easily deleted. In order to achieve this, we keep the test, source, types at the same location.
    For instance, this means that we need to move https://github.com/mui-org/material-ui-pickers/blob/next/lib/src/__tests__/DatePickerTestingLib.test.tsx right next to DatePicker.tsx. So for far, we have been using a folder for the components as we have 4 files. When we have only 2 files, so far, we don't create folders.
  3. We export one and only one component per file. We name the file after the name of the public component, this ensures developers can find the source easily, without guessing.
    For instance, this means that we need to move https://github.com/mui-org/material-ui-pickers/blob/dfbbe65d7ba4f858a2e660c19d49ab12f5e4fe87/lib/src/DatePicker/DatePicker.tsx#L69 into its own file.
  4. We forbid all circular dependencies.
    For instance, this means that we need to break this cycle: https://github.com/mui-org/material-ui-pickers/blob/dfbbe65d7ba4f858a2e660c19d49ab12f5e4fe87/lib/src/LocalizationProvider.tsx#L4 <-> https://github.com/mui-org/material-ui-pickers/blob/dfbbe65d7ba4f858a2e660c19d49ab12f5e4fe87/lib/src/_shared/hooks/useUtils.ts#L3.

Regarding the named export vs default exports, in your example, a. vs b.

a.

import Typography from '@material-ui/core/Typography';
import Typography, { TypographyProps } from '@material-ui/core/Typography';

b.

import { Typography } from '@material-ui/core/Typography';
import { Typography, TypographyProps } from '@material-ui/core/Typography';

Things I find valuable from a.:

  • There is no room for mistake, you can only import one component from the location. It creates a healthy constraint.
  • Unless you want to extend the component (10% of the cases?) and you use TypeScript (50% of the user base), so in 95% of the time, you will only use the default export, it's saving you the need for the developers to write {}, which adds visual noise. It also communicates that there isn't anything else to pay attention to, take the default export, you are done.
  • When you need to rename the file (e.g. you are going to write your own wrapper, for instance to MuiTypograpgy) you don't need to duplicate Typography twice. Here is how it looks like with b.
import { Typography as MuiTypography } from '@material-ui/core/Typography';

and a.

import MuiTypography from '@material-ui/core/Typography';

Things I find valuable from b.:

  • You don't need to rewrite the import if you swap the target between '@material-ui/core' and '@material-ui/core/Typograpghy'. But is it something we should care about?
  • Else?

This was for the public API of components. For internal usage and non components, I like how the current eslint rule is pragmatic. If you have a single export: default export. If you have multiple exports, you choose. If one export accounts for 80% of the value of the file, keep a default export, otherwise, flatten it with named exports, no default exports.
I believe it's what we do so far. In the case of components, 80% of the value is with the exported component, anything else is secondary.

@eps1lon
Copy link
Member

eps1lon commented Jul 20, 2020

I don't see any concrete problems in this issue. I can only see hypotheticals that I don't agree with.

@dtassone
Copy link
Member

  1. Let's say you have a filename something.tsx

then 2 files app.tsx and component.tsx, that imports it.

import something from 'something';

At a later stage you decide to refactor something and it becomes another.tsx, then you introduce another something.tsx that you need to use in app.tsx only.

As you use the refactoring feature of your IDE, your import in app.tsx becomes

import something from 'another';

So you rename something manually and add your other import, so app.tsx ends up like

import another from 'another';
import something from 'something';

But then components.tsx would still look like

import something from 'another';

So you would have to go and rename the variable manually. As everything works and compiles without error, you forget and when you come back to the body of components.tsx, you don't understand what is happening with something, until you realise that something is actually another.

if you use named imports, the issue above will not happen as your refactoring tool will automatically rename the variable used in in the import

import {another} from 'another.tsx' all done and no discrepencies.

Thus Default import would allow more discrepancies in the code. Named import is more strict and is more reliable with refactoring tools and IDE.

  1. Using default to re-export a component is bit useless as you would have to name it anyway.
export {default as something} from 'something'
vs
export {something} from 'something'
export * from 'something'

If you rename something, to another, you will still export it as something.

export {default as something} from 'another'
vs
export {another } from 'another'
export * from 'another'

I'm in favor of using a really limited amount of default for the reason described above.
That said, it can be valuable to use it, in the highest level of exports
import XGrid from 'material-ui/x-grid'

  • If I rename my exported component in the library then it won't create a breaking change for the consumer.

default exports were popular in CommonJs with module.exports = something and with require
const something = require(something) instead of const something = require(something).something

@oliviertassinari
Copy link
Member

In my previous comment, I was trying to cover why the public API looks like what's now. It's the public API that has influenced the current eslint rules. These constraints are quite aligned with Airbnb's rule, so we kept it for internal usage too, so we don't have special treatments. I don't think that we have put special thoughts into using Airbnb's rule outside of the realization that we could trust them and offload the need to have discussions like this one (same value proposition as prettier).

Considering that the discussion, at its root, is about the eslint rule that fails (If a file has a single named export, it tells to move to a default export. If you have multiple exports, it's then up to you.). We can look at why this rule exists in the first place, from their creators:

Why? To encourage more files that only ever export one thing, which is better for readability and maintainability.

https://github.com/airbnb/javascript#modules--prefer-default-export

I have to admit that I still struggle to navigate the codebase of the pickers repository, and I think it's one of the reasons why (different conventions that have the potential to be marginally better but can kill productivity when you are not used to them). I think that we should keep this rule to encourage purposed files, no kitchen sinks by mistake, to ease the exploration of a codebase you don't know (e.g. code you wrote 2 months ago).

@dtassone Interesting consideration, I have never used a refactoring tool, and probably why I'm not fully in empathy with the concern. I think that code review can solve the problem.

This makes me think of a different file name convention that we need to update: name casing. For instance: https://github.com/mui-org/material-ui-x/blob/master/packages/grid/x-grid-modules/src/components/column-headers.tsx should be ColumnHeaders.tsx. The filename should match the default export name if there is one, or be snackCase if has a bunch of named exports.


So, I think that the rule should be:

If you have a single export: default export. If you have multiple exports, you choose. If one export accounts for 80% of the value of the file, keep a default export, otherwise, flatten it with named exports with no default exports.

@oliviertassinari
Copy link
Member

oliviertassinari commented Jul 22, 2020

Still, I think that we should ask everybody as it impacts the whole codebase, across components (we would need to migrate the main repository if we forbid default exports) cc @mui-org/core-team, @DanailH, @PaulSavignano.

The vote is between:

@dtassone
Copy link
Member

@dtassone Interesting consideration, I have never used a refactoring tool, and probably why I'm not fully in empathy with the concern. I think that code review can solve the problem.

Refactoring tools are great and are very helpful, that's why I use webstorm :)
Renaming something across all the repo takes 5 secs, and has no errors.
If you do it manually, time for each build, a few code review iterations, and it's not even guaranteed to be perfect.

To encourage more files that only ever export one thing, which is better for readability and maintainability.

it's not the case if you allow 🤔

import Typography, { TypographyProps } from '@material-ui/core/Typography';

If we just want to encourage 1 component per file. Then it can be a practice.
And enforcing the practice, can be done differently.

A rule could be to default export components that will be consumed by users to avoid breaking changes if we rename them.

IMHO inside the component unit of work, exporting as default, hooks or types could result in a big mess for the reasons mentioned in my first comment. This obviously depends on the complexity of the component.

@rosskevin
Copy link
Member

We refactored all of our internal code and removed default exports almost two years ago. It was a positive change and identified export name conflicts easily (coupled with export * from).

@ryancogswell
Copy link
Contributor

The arguments for this related to refactoring/renaming don't seem very relevant. The vast majority of the components with default exports are part of the public API which means they can only be renamed with the release of a major version -- and even then it is rare. Doesn't seem like something worth optimizing for.

@ryancogswell
Copy link
Contributor

@dtassone I can understand how renaming considerations would be more important in an application codebase, but given the requirement of stability of names in Material-UI, can you explain more why this would be important in this case. The main time when renaming may have some importance is when developing new components, and even then it would only add much value for complex components with many sub-components. I suppose your current work on the data grid would fall into this category and maybe the future work for enterprise components would have additional things like this, I just don't see it adding value (from a refactoring standpoint) for the existing components and even for new components it only adds value during their initial development stages. Once an initial release of components is in use, I would expect only rare name changes.

@eps1lon
Copy link
Member

eps1lon commented Jul 22, 2020

Can somebody explain to me why I have to rename every callsite if I rename the implementation? Doesn't the vscode refactor also keep the import name i.e.

// components.tsx
-export function Button() {}
+export function FancyButton() {}
// app.tsx
-import { Button } from './components' 
+import { FancyButton as Button } from './components' 

?

@dmtrKovalenko
Copy link
Member Author

@eps1lon Because when you read the code

<FancyButton /> 

You probably would like to search "FancyButton" and open the component source, right?

But with default exports, you are doing exactly the same, but 2 times. Default exports work exactly like this

// component.js
export const default = FancyButton

import { default as Button } from './component'

@eps1lon
Copy link
Member

eps1lon commented Jul 22, 2020

You probably would like to search "FancyButton" and open the component source, right?

99% of the time the answer is no. The remaining 1% I do CTRL+Click in vscode and it goes to the declaration.

@dmtrKovalenko
Copy link
Member Author

99% of the time the answer is no. The remaining 1% I do CTRL+Click in vscode and it goes to the declaration.

I have nothing to answer here... 99% of developers would like to have this ability because they are reading code not only in the editor. Moreover, core repo is written in typescript so ctrl+click follows to the typescript declaration file 🤷‍♂️

@eps1lon
Copy link
Member

eps1lon commented Jul 22, 2020

reading code not only in the editor

What other methods are you trying to optimize?

@dmtrKovalenko
Copy link
Member Author

I have described everything in RFC – I`d like to get rid of unnecessary implicit rename of the exported component in each file in favor of defined, unique, and easy for search/debugging component name.

@eps1lon
Copy link
Member

eps1lon commented Jul 22, 2020

I have described everything in RFC

I've read it again and I can't find mentions of the way you consume and work with code. Maybe I missed it. Could you explain it again or link/quote it?

I`d like to get rid of unnecessary implicit rename of the exported component in each file in favor of defined, unique, and easy for search/debugging component name.

I don't understand how named exports ensure a unique name across the codebase. Even with named exports I could still do import { FancyButton as Button } from './FancyButton' which would lead to the same problems as import Button from './FancyButton'. That's why editors implement "goto definition" and "find all references"

Moreover, core repo is written in typescript so ctrl+click follows to the typescript declaration file 🤷‍♂️

Could you explain more about your workflow where checking out the component source is so important to you? Seems like we can improve some areas of our documentation.

@rosskevin
Copy link
Member

I don't understand how named exports ensure a unique name across the codebase

Try exporting duplicate names, your tooling will pick it up and fail the build e.g. tsc or roll-up.

Using export * from ensures consistency of the public API and the source code. I think we can agree that is a positive attribute for beginners and experts alike

@ryancogswell
Copy link
Contributor

What this seems to come down to is that we are split fairly evenly between developers who work in ways where we don’t experience the problems this is trying to solve and therefore don’t see any benefit to the change, and another group using different habits, tools, refactoring approaches, etc. that see a clear benefit to the change.

I don’t think the 🎉 group has much chance of convincing the 👍 group that it will provide these same benefits to the 👍 group who have different work habits than the 🎉 group. So I think the main question should be “are there enough downsides to this change to deny the benefits of this change to the 🎉 group?”

My biggest concern is the impact outside of Material-UI. This is a change that would affect every single Material-UI import in many codebases. Obviously there would need to be a codemod to help with the change, but it still will seem — to a large portion of library users — like an arbitrary change with no benefit that forces slightly more verbose syntax. There will also be a portion of users that are pleased with the change (based on the sampling here), but I suspect the annoyed group will be significantly louder than the pleased group. Code samples on hundreds of stackoverflow questions will no longer work in v5 without changing the imports.

These aren’t massive problems, but it will be a nuisance to a large number of people and it will be a barrier to upgrading. Upgrading will feel a lot riskier if you have to change nearly every file that uses Material-UI (even if that change is automated).

@DanailH
Copy link
Member

DanailH commented Jul 24, 2020

I agree with @ryancogswell . If I look at the problem from a user/dev point of view I would like to have as staying forward migration from major to major version as possible. Having to change my exports would definitely be a pain especially if the reason why I'm migration from major to major is to use a specific feature, I would like to deal with the additional hassle of trying to figure out why my code isn't compiling.

I'm not saying that this change isn't worth it but rather that we should keep in mind that we will introduce additional effort when migrating.

PS: In my current company we solved a similar problem by having a specific file that exposes the public API for our npm modules. In addition, we have an npm barrow collection that combines all those components with their exported public APIs and puts them at the same level basically so you aways export everything from the same location. I'm not saying that this is good but that it can be solved on a packaging level. Basically we have an adaptor that sits between the codebase and the users and ensures that whenever we change something the public API is always respected and we don't introduce breaking changes by renaming files or changing exports.

@oliviertassinari oliviertassinari added this to the v5 milestone Sep 19, 2020
@oliviertassinari oliviertassinari modified the milestones: v5-beta, v6 May 9, 2021
@hbroer

This comment was marked as off-topic.

@michaldudak
Copy link
Member

michaldudak commented Jul 24, 2023

@hbroer you are touching a different subject: https://mui.com/material-ui/guides/minimizing-bundle-size

I'm returning to this issue as the @mui/core team leans toward named exports. Additionally, based on the number of votes on the original comment, it's apparent that the community would also prefer it.

Screenshot 2023-07-24 at 23 46 03

We recently came across guidance from esbuild suggesting not to use default exports: https://esbuild.github.io/content-types/#default-interop

Having that in mind, we're considering introducing named exports only in our new, not-yet-stable packages, Base UI and Joy UI, and listening to community feedback. If we go this route, we'll provide a codemod to update the imports in your codebases automatically.

@siriwatknp
Copy link
Member

siriwatknp commented Jul 25, 2023

Here is the issue I found with default export (I have the same issue) codler/react-ga4#23.

the library react-ga4 exports the module as default but when I try to import it my project (with type: 'module' in the root package.json), I have to access ReactGA4.default.*

@michaldudak
Copy link
Member

I wonder if #31835 is also related to default exports.

@GideonMax
Copy link

I wonder if #31835 is also related to default exports.

it is

@mnajdova
Copy link
Member

I wonder if #31835 is also related to default exports.

Partially yes, but there are other issues there as well I think, for e.g. #31835 (comment) seems like it's not only about default imports.

mergify bot pushed a commit to SvenKirschbaum/share.kirschbaum.cloud that referenced this issue Aug 13, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
|  |  | lockFileMaintenance | All locks refreshed | [![age](https://developer.mend.io/api/mc/badges/age///?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption///?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility////?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence////?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-cdk/aws-apigatewayv2-alpha](https://togithub.com/aws/aws-cdk) | dependencies | minor | [`2.90.0-alpha.0` -> `2.91.0-alpha.0`](https://renovatebot.com/diffs/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.90.0-alpha.0/2.91.0-alpha.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.90.0-alpha.0/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-cdk%2faws-apigatewayv2-alpha/2.90.0-alpha.0/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-cdk/aws-apigatewayv2-authorizers-alpha](https://togithub.com/aws/aws-cdk) | dependencies | minor | [`2.90.0-alpha.0` -> `2.91.0-alpha.0`](https://renovatebot.com/diffs/npm/@aws-cdk%2faws-apigatewayv2-authorizers-alpha/2.90.0-alpha.0/2.91.0-alpha.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-cdk%2faws-apigatewayv2-authorizers-alpha/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-cdk%2faws-apigatewayv2-authorizers-alpha/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-cdk%2faws-apigatewayv2-authorizers-alpha/2.90.0-alpha.0/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-cdk%2faws-apigatewayv2-authorizers-alpha/2.90.0-alpha.0/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-cdk/aws-apigatewayv2-integrations-alpha](https://togithub.com/aws/aws-cdk) | dependencies | minor | [`2.90.0-alpha.0` -> `2.91.0-alpha.0`](https://renovatebot.com/diffs/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.90.0-alpha.0/2.91.0-alpha.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.90.0-alpha.0/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-cdk%2faws-apigatewayv2-integrations-alpha/2.90.0-alpha.0/2.91.0-alpha.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-dynamodb](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | dependencies | minor | [`3.385.0` -> `3.388.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-dynamodb/3.385.0/3.388.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-dynamodb/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-dynamodb/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-dynamodb/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-dynamodb/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | dependencies | minor | [`3.385.0` -> `3.388.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.385.0/3.388.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-sesv2](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-sesv2) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | dependencies | minor | [`3.385.0` -> `3.388.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sesv2/3.385.0/3.388.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sesv2/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sesv2/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sesv2/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sesv2/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-sfn](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-sfn) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | dependencies | minor | [`3.385.0` -> `3.388.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-sfn/3.385.0/3.388.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-sfn/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-sfn/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-sfn/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-sfn/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/s3-request-presigner](https://togithub.com/aws/aws-sdk-js-v3/tree/main/packages/s3-request-presigner) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | dependencies | minor | [`3.385.0` -> `3.388.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fs3-request-presigner/3.385.0/3.388.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fs3-request-presigner/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fs3-request-presigner/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fs3-request-presigner/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fs3-request-presigner/3.385.0/3.388.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mui/material](https://mui.com/material-ui/getting-started/) ([source](https://togithub.com/mui/material-ui)) | dependencies | patch | [`5.14.3` -> `5.14.4`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.14.3/5.14.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.14.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.14.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fmaterial/5.14.3/5.14.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fmaterial/5.14.3/5.14.4?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)) | dependencies | patch | [`6.11.0` -> `6.11.1`](https://renovatebot.com/diffs/npm/@mui%2fx-date-pickers/6.11.0/6.11.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fx-date-pickers/6.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fx-date-pickers/6.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fx-date-pickers/6.11.0/6.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fx-date-pickers/6.11.0/6.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`18.17.3` -> `18.17.5`](https://renovatebot.com/diffs/npm/@types%2fnode/18.17.3/18.17.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.17.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.17.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.17.3/18.17.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.17.3/18.17.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`18.2.18` -> `18.2.20`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.18/18.2.20) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.18/18.2.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.18/18.2.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk](https://togithub.com/aws/aws-cdk) | devDependencies | minor | [`2.90.0` -> `2.91.0`](https://renovatebot.com/diffs/npm/aws-cdk/2.90.0/2.91.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk/2.91.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk/2.91.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk/2.90.0/2.91.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk/2.90.0/2.91.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-cdk-lib](https://togithub.com/aws/aws-cdk) | dependencies | minor | [`2.90.0` -> `2.91.0`](https://renovatebot.com/diffs/npm/aws-cdk-lib/2.90.0/2.91.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-cdk-lib/2.91.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-cdk-lib/2.91.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-cdk-lib/2.90.0/2.91.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-cdk-lib/2.90.0/2.91.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [aws-sdk](https://togithub.com/aws/aws-sdk-js) | dependencies | minor | [`2.1430.0` -> `2.1435.0`](https://renovatebot.com/diffs/npm/aws-sdk/2.1430.0/2.1435.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/aws-sdk/2.1435.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/aws-sdk/2.1435.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/aws-sdk/2.1430.0/2.1435.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/aws-sdk/2.1430.0/2.1435.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [esbuild](https://togithub.com/evanw/esbuild) | dependencies | minor | [`0.18.18` -> `0.19.1`](https://renovatebot.com/diffs/npm/esbuild/0.18.18/0.19.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/esbuild/0.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/esbuild/0.18.18/0.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.18.18/0.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint](https://eslint.org) ([source](https://togithub.com/eslint/eslint)) | devDependencies | minor | [`8.46.0` -> `8.47.0`](https://renovatebot.com/diffs/npm/eslint/8.46.0/8.47.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/8.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint/8.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint/8.46.0/8.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/8.46.0/8.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [luxon](https://togithub.com/moment/luxon) | dependencies | minor | [`3.3.0` -> `3.4.0`](https://renovatebot.com/diffs/npm/luxon/3.3.0/3.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/luxon/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/luxon/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/luxon/3.3.0/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/luxon/3.3.0/3.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [react-router](https://togithub.com/remix-run/react-router) | dependencies | minor | [`6.14.2` -> `6.15.0`](https://renovatebot.com/diffs/npm/react-router/6.14.2/6.15.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-router/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-router/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-router/6.14.2/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-router/6.14.2/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [react-router-dom](https://togithub.com/remix-run/react-router) | dependencies | minor | [`6.14.2` -> `6.15.0`](https://renovatebot.com/diffs/npm/react-router-dom/6.14.2/6.15.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-router-dom/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-router-dom/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-router-dom/6.14.2/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-router-dom/6.14.2/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [vite](https://togithub.com/vitejs/vite/tree/main/#readme) ([source](https://togithub.com/vitejs/vite)) | devDependencies | patch | [`4.4.8` -> `4.4.9`](https://renovatebot.com/diffs/npm/vite/4.4.8/4.4.9) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/4.4.8/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/4.4.8/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

🔧 This Pull Request updates lock files to use the latest dependency versions.

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-dynamodb)</summary>

### [`v3.388.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#33880-2023-08-09)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.387.0...v3.388.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)

### [`v3.387.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#33870-2023-08-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.386.0...v3.387.0)

##### Features

-   **clients:** allow client creation without configuration ([#&#8203;5060](https://togithub.com/aws/aws-sdk-js-v3/issues/5060)) ([a9723dc](https://togithub.com/aws/aws-sdk-js-v3/commit/a9723dcbbf970402a3131a8ff79153a04b2cfb89))

### [`v3.386.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-dynamodb/CHANGELOG.md#33860-2023-08-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.385.0...v3.386.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-dynamodb](https://togithub.com/aws-sdk/client-dynamodb)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-s3)</summary>

### [`v3.388.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#33880-2023-08-09)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.387.0...v3.388.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)

### [`v3.387.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#33870-2023-08-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.386.0...v3.387.0)

##### Features

-   **clients:** allow client creation without configuration ([#&#8203;5060](https://togithub.com/aws/aws-sdk-js-v3/issues/5060)) ([a9723dc](https://togithub.com/aws/aws-sdk-js-v3/commit/a9723dcbbf970402a3131a8ff79153a04b2cfb89))

### [`v3.386.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#33860-2023-08-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.385.0...v3.386.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-sesv2)</summary>

### [`v3.388.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sesv2/CHANGELOG.md#33880-2023-08-09)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.387.0...v3.388.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sesv2](https://togithub.com/aws-sdk/client-sesv2)

### [`v3.387.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sesv2/CHANGELOG.md#33870-2023-08-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.386.0...v3.387.0)

##### Features

-   **clients:** allow client creation without configuration ([#&#8203;5060](https://togithub.com/aws/aws-sdk-js-v3/issues/5060)) ([a9723dc](https://togithub.com/aws/aws-sdk-js-v3/commit/a9723dcbbf970402a3131a8ff79153a04b2cfb89))

### [`v3.386.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sesv2/CHANGELOG.md#33860-2023-08-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.385.0...v3.386.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sesv2](https://togithub.com/aws-sdk/client-sesv2)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-sfn)</summary>

### [`v3.388.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sfn/CHANGELOG.md#33880-2023-08-09)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.387.0...v3.388.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sfn](https://togithub.com/aws-sdk/client-sfn)

### [`v3.387.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sfn/CHANGELOG.md#33870-2023-08-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.386.0...v3.387.0)

##### Features

-   **clients:** allow client creation without configuration ([#&#8203;5060](https://togithub.com/aws/aws-sdk-js-v3/issues/5060)) ([a9723dc](https://togithub.com/aws/aws-sdk-js-v3/commit/a9723dcbbf970402a3131a8ff79153a04b2cfb89))

### [`v3.386.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-sfn/CHANGELOG.md#33860-2023-08-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.385.0...v3.386.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-sfn](https://togithub.com/aws-sdk/client-sfn)

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/s3-request-presigner)</summary>

### [`v3.388.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/s3-request-presigner/CHANGELOG.md#33880-2023-08-09)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.387.0...v3.388.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

### [`v3.387.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/s3-request-presigner/CHANGELOG.md#33870-2023-08-08)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.386.0...v3.387.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

### [`v3.386.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/s3-request-presigner/CHANGELOG.md#33860-2023-08-07)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.385.0...v3.386.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/s3-request-presigner](https://togithub.com/aws-sdk/s3-request-presigner)

</details>

<details>
<summary>mui/material-ui (@&#8203;mui/material)</summary>

### [`v5.14.4`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5144)

[Compare Source](https://togithub.com/mui/material-ui/compare/v5.14.3...v5.14.4)



*Aug 8, 2023*

A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:

-   🎉 Added [Number input](https://mui.com/base-ui/react-number-input) component & [useNumberInput](https://mui.com/base-ui/react-number-input#hook) hook in [Base UI](https://mui.com/base-ui/getting-started/) [@&#8203;mj12albert](https://togithub.com/mj12albert)

##### `@mui/[email protected]`

-   ​\[Checkbox]\[material] Add size classes ([#&#8203;38182](https://togithub.com/mui/material-ui/issues/38182)) [@&#8203;michaldudak](https://togithub.com/michaldudak)
-   ​\[Typography] Improve inherit variant logic ([#&#8203;38123](https://togithub.com/mui/material-ui/issues/38123)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

##### `@mui/[email protected]`

-   ​Revert "\[Box] Remove `component` from TypeMap ([#&#8203;38168](https://togithub.com/mui/material-ui/issues/38168))" ([#&#8203;38356](https://togithub.com/mui/material-ui/issues/38356)) [@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/[email protected]`

##### Breaking changes

-   ​\[base] Ban default exports ([#&#8203;38200](https://togithub.com/mui/material-ui/issues/38200)) [@&#8203;michaldudak](https://togithub.com/michaldudak)

    Base UI default exports were changed to named ones. Previously we had a mix of default and named ones.
    This was changed to improve consistency and avoid problems some bundlers have with default exports.
[https://github.com/mui/material-ui/issues/21862](https://togithub.com/mui/material-ui/issues/21862)es/21862 for more context.

    ```diff
    - import Button, { buttonClasses } from '@&#8203;mui/base/Button';
    + import { Button, buttonClasses } from '@&#8203;mui/base/Button';
    - import BaseMenu from '@&#8203;mui/base/Menu';
    + import { Menu as BaseMenu } from '@&#8203;mui/base/Menu';
    ```

    Additionally, the `ClassNameGenerator` has been moved to the directory matching its name:

    ```diff
    - import ClassNameGenerator from '@&#8203;mui/base/className';
    + import { ClassNameGenerator } from '@&#8203;mui/base/ClassNameGenerator';
    ```

    A codemod is provided to help with the migration:

    ```bash
    npx @&#8203;mui/codemod v5.0.0/base-use-named-imports <path>
    ```

##### Changes

-   ​\[base] Create useNumberInput and NumberInput ([#&#8203;36119](https://togithub.com/mui/material-ui/issues/36119)) [@&#8203;mj12albert](https://togithub.com/mj12albert)
-   ​\[Select]\[base] Fix flicker on click of controlled Select button ([#&#8203;37855](https://togithub.com/mui/material-ui/issues/37855)) [@&#8203;VishruthR](https://togithub.com/VishruthR)
-   ​\[Dropdown] Fix imports of types ([#&#8203;38296](https://togithub.com/mui/material-ui/issues/38296)) [@&#8203;yash-thakur](https://togithub.com/yash-thakur)

##### `@mui/[email protected]`

-   ​\[joy-ui]\[MenuButton] Fix disable of `MenuButton` ([#&#8203;38342](https://togithub.com/mui/material-ui/issues/38342)) [@&#8203;sai6855](https://togithub.com/sai6855)

##### Docs

-   ​\[docs]\[AppBar] Fix `ResponsiveAppBar` demo logo href ([#&#8203;38346](https://togithub.com/mui/material-ui/issues/38346)) [@&#8203;iownthegame](https://togithub.com/iownthegame)

-   ​\[docs]\[base] Add Tailwind CSS + plain CSS demo on the Button page ([#&#8203;38240](https://togithub.com/mui/material-ui/issues/38240)) [@&#8203;alisasanib](https://togithub.com/alisasanib)

-   ​\[docs]\[Menu]\[base] Remove `Unstyled` prefix from demos' function names ([#&#8203;38270](https://togithub.com/mui/material-ui/issues/38270)) [@&#8203;sai6855](https://togithub.com/sai6855)

-   ​\[docs] Add themeable component guide ([#&#8203;37908](https://togithub.com/mui/material-ui/issues/37908)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp)

-   ​\[docs] Fix Joy UI demo background color ([#&#8203;38307](https://togithub.com/mui/material-ui/issues/38307)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

-   ​\[docs] Update API docs for Number Input component ([#&#8203;38301](https://togithub.com/mui/material-ui/issues/38301)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

-   ​\[docs]\[joy-ui] Revise the theme typography page ([#&#8203;38285](https://togithub.com/mui/material-ui/issues/38285)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)

-   ​\[docs]\[joy-ui] Add TS demo for Menu Bar ([#&#8203;38308](https://togithub.com/mui/material-ui/issues/38308)) [@&#8203;sai6855](https://togithub.com/sai6855)

-   ​\[docs]\[joy-ui] Updated Typography callout at getting started ([#&#8203;38289](https://togithub.com/mui/material-ui/issues/38289)) [@&#8203;zanivan](https://togithub.com/zanivan)

-   ​\[docs]\[joy-ui] Fix the Inter font installation instructions ([#&#8203;38284](https://togithub.com/mui/material-ui/issues/38284)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)

-   ​\[docs]\[material] Add note to Autocomplete about ref forwarding ([#&#8203;38305](https://togithub.com/mui/material-ui/issues/38305)) [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)

-   ​\[docs]\[Skeleton] Make the demos feel more realistic ([#&#8203;38212](https://togithub.com/mui/material-ui/issues/38212)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

-   ​\[examples] Swap Next.js examples between App Router and Pages Router; update naming convention ([#&#8203;38204](https://togithub.com/mui/material-ui/issues/38204)) [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)

-   ​\[examples]\[material-ui] Add Material UI + Next.js (App Router) example in JS ([#&#8203;38323](https://togithub.com/mui/material-ui/issues/38323)) [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)

-   ​\[blog] Discord announcement blog ([#&#8203;38258](https://togithub.com/mui/material-ui/issues/38258)) [@&#8203;richbustos](https://togithub.com/richbustos)

-   ​\[blog] Fix 301 links to Toolpad [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

-   ​\[website] Updating Charts demo with real charts usage for MUI X marketing page ([#&#8203;38317](https://togithub.com/mui/material-ui/issues/38317)) [@&#8203;richbustos](https://togithub.com/richbustos)

-   ​\[website] Adjust styles of the Product section on the homepage ([#&#8203;38366](https://togithub.com/mui/material-ui/issues/38366)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)

-   ​\[website] Add Nora teamMember card to 'About' ([#&#8203;38358](https://togithub.com/mui/material-ui/issues/38358)) [@&#8203;noraleonte](https://togithub.com/noraleonte)

-   ​\[website] Fix image layout shift ([#&#8203;38326](https://togithub.com/mui/material-ui/issues/38326)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

##### Core

-   ​\[core] Fix docs demo export function consistency ([#&#8203;38191](https://togithub.com/mui/material-ui/issues/38191)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[core] Fix the link-check script on Windows ([#&#8203;38276](https://togithub.com/mui/material-ui/issues/38276)) [@&#8203;michaldudak](https://togithub.com/michaldudak)
-   ​\[core] Use [@&#8203;testing-library/user-event](https://togithub.com/testing-library/user-event) direct API ([#&#8203;38325](https://togithub.com/mui/material-ui/issues/38325)) [@&#8203;mj12albert](https://togithub.com/mj12albert)
-   ​\[core] Port GitHub workflow for ensuring triage label is present ([#&#8203;38312](https://togithub.com/mui/material-ui/issues/38312)) [@&#8203;DanailH](https://togithub.com/DanailH)
-   ​\[docs-infra] Consider files ending with .types.ts as props files ([#&#8203;37533](https://togithub.com/mui/material-ui/issues/37533)) [@&#8203;mnajdova](https://togithub.com/mnajdova)
-   ​\[docs-infra] Fix skip to content design ([#&#8203;38304](https://togithub.com/mui/material-ui/issues/38304)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
-   ​\[docs-infra] Add a general round of polish to the API content display ([#&#8203;38282](https://togithub.com/mui/material-ui/issues/38282)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   ​\[docs-infra] Make the side nav collapse animation snappier ([#&#8203;38259](https://togithub.com/mui/material-ui/issues/38259)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal)
-   ​\[docs-infra] New Component API design followup ([#&#8203;38183](https://togithub.com/mui/material-ui/issues/38183)) [@&#8203;cherniavskii](https://togithub.com/cherniavskii)
-   ​\[test] Remove unnecessary `async` keyword from test ([#&#8203;38373](https://togithub.com/mui/material-ui/issues/38373)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

All contributors of this release in alphabetical order: [@&#8203;alisasanib](https://togithub.com/alisasanib), [@&#8203;cherniavskii](https://togithub.com/cherniavskii), [@&#8203;DanailH](https://togithub.com/DanailH), [@&#8203;danilo-leal](https://togithub.com/danilo-leal), [@&#8203;iownthegame](https://togithub.com/iownthegame), [@&#8203;michaldudak](https://togithub.com/michaldudak), [@&#8203;mj12albert](https://togithub.com/mj12albert), [@&#8203;mnajdova](https://togithub.com/mnajdova), [@&#8203;noraleonte](https://togithub.com/noraleonte), [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari), [@&#8203;richbustos](https://togithub.com/richbustos), [@&#8203;sai6855](https://togithub.com/sai6855), [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore), [@&#8203;siriwatknp](https://togithub.com/siriwatknp), [@&#8203;VishruthR](https://togithub.com/VishruthR), [@&#8203;yash-thakur](https://togithub.com/yash-thakur), [@&#8203;zanivan](https://togithub.com/zanivan), [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

</details>

<details>
<summary>mui/mui-x (@&#8203;mui/x-date-pickers)</summary>

### [`v6.11.1`](https://togithub.com/mui/mui-x/blob/HEAD/CHANGELOG.md#6111)

[Compare Source](https://togithub.com/mui/mui-x/compare/v6.11.0...v6.11.1)

*Aug 11, 2023*

We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:

-   💫 Add theme augmentation to `@mui/x-tree-view`
-   📈 Enable charts customization using `slot` and `slotProps` props
-   🌍 Improve Finnish (fi-FI) and Icelandic (is-IS) locales on the pickers
-   🐞 Bugfixes
-   📚 Documentation improvements

##### Data Grid

##### `@mui/[email protected]`

-   \[DataGrid] `getCellAggregationResult`: Handle `null` `rowNode` case ([#&#8203;9915](https://togithub.com/mui/mui-x/issues/9915)) [@&#8203;romgrk](https://togithub.com/romgrk)

##### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)

Same changes as in `@mui/[email protected]`.

##### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link)

Same changes as in `@mui/[email protected]`.

##### Date Pickers

##### `@mui/[email protected]`

-   \[fields] Use `numeric` `inputmode` instead of `tel` ([#&#8203;9918](https://togithub.com/mui/mui-x/issues/9918)) [@&#8203;LukasTy](https://togithub.com/LukasTy)
-   \[pickers] Always respect locale when formatting meridiem ([#&#8203;9979](https://togithub.com/mui/mui-x/issues/9979)) [@&#8203;flaviendelangle](https://togithub.com/flaviendelangle)
-   \[pickers] Call `onChange` when selecting a shortcut with `changeImportance="set"` ([#&#8203;9974](https://togithub.com/mui/mui-x/issues/9974)) [@&#8203;flaviendelangle](https://togithub.com/flaviendelangle)
-   \[pickers] Refactor `themeAugmentation` `styleOverrides` ([#&#8203;9978](https://togithub.com/mui/mui-x/issues/9978)) [@&#8203;LukasTy](https://togithub.com/LukasTy)
-   \[l10n] Improve Finnish (fi-FI) locale ([#&#8203;9795](https://togithub.com/mui/mui-x/issues/9795)) [@&#8203;kurkle](https://togithub.com/kurkle)
-   \[l10n] Improve Icelandic (is-IS) locale ([#&#8203;9639](https://togithub.com/mui/mui-x/issues/9639)) [@&#8203;magnimarels](https://togithub.com/magnimarels)

##### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link)

Same changes as in `@mui/[email protected]`.

##### Charts / `@mui/[email protected]`

-   \[charts] Fix label and tick alignment ([#&#8203;9952](https://togithub.com/mui/mui-x/issues/9952)) [@&#8203;LukasTy](https://togithub.com/LukasTy)
-   \[charts] Remove not functional component `styleOverrides` ([#&#8203;9996](https://togithub.com/mui/mui-x/issues/9996)) [@&#8203;LukasTy](https://togithub.com/LukasTy)
-   \[charts] Set custom ticks number ([#&#8203;9922](https://togithub.com/mui/mui-x/issues/9922)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)
-   \[charts] Use `slot`/`slotProps` for customization ([#&#8203;9744](https://togithub.com/mui/mui-x/issues/9744)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)
-   \[charts] Extend cheerful fiesta palette ([#&#8203;9980](https://togithub.com/mui/mui-x/issues/9980)) [@&#8203;noraleonte](https://togithub.com/noraleonte)

##### Tree View / `@mui/[email protected]`

-   \[TreeView] Add theme augmentation ([#&#8203;9967](https://togithub.com/mui/mui-x/issues/9967)) [@&#8203;flaviendelangle](https://togithub.com/flaviendelangle)

##### Docs

-   \[docs] Clarify the `shouldDisableClock` migration code options ([#&#8203;9920](https://togithub.com/mui/mui-x/issues/9920)) [@&#8203;LukasTy](https://togithub.com/LukasTy)

##### Core

-   \[core] Port GitHub workflow for ensuring triage label is present ([#&#8203;9924](https://togithub.com/mui/mui-x/issues/9924)) [@&#8203;DanailH](https://togithub.com/DanailH)
-   \[docs-infra] Fix the import samples in Api pages ([#&#8203;9898](https://togithub.com/mui/mui-x/issues/9898)) [@&#8203;alexfauquette](https://togithub.com/alexfauquette)

</details>

<details>
<summary>aws/aws-cdk (aws-cdk)</summary>

### [`v2.91.0`](https://togithub.com/aws/aws-cdk/releases/tag/v2.91.0)

[Compare Source](https://togithub.com/aws/aws-cdk/compare/v2.90.0...v2.91.0)

##### Features

-   **cdk:** `cdk diff --quiet` suppresses progress messages ([#&#8203;26652](https://togithub.com/aws/aws-cdk/issues/26652)) ([5777c88](https://togithub.com/aws/aws-cdk/commit/5777c88394e2834bd56d6a20ace41e8d317a0d85)), closes [#&#8203;26526](https://togithub.com/aws/aws-cdk/issues/26526) [#&#8203;26526](https://togithub.com/aws/aws-cdk/issues/26526)
-   **core:** Fn.findInMap supports default value ([#&#8203;26543](https://togithub.com/aws/aws-cdk/issues/26543)) ([8526feb](https://togithub.com/aws/aws-cdk/commit/8526febc8f4b6bf6b21d80b3acc3fc3a932401a4)), closes [#&#8203;26125](https://togithub.com/aws/aws-cdk/issues/26125)
-   **rds:** support aurora mysql 3.04.0 ([#&#8203;26651](https://togithub.com/aws/aws-cdk/issues/26651)) ([6de3344](https://togithub.com/aws/aws-cdk/commit/6de3344a6292daf402d920480961ee6e920fbdca))
-   update AWS Service Spec ([#&#8203;26658](https://togithub.com/aws/aws-cdk/issues/26658)) ([d865d6c](https://togithub.com/aws/aws-cdk/commit/d865d6ce896b36210aeabdd3f465bbaf4bfa6201))

##### Bug Fixes

-   **apigateway:** allowedOrigins are incorrectly interpreted as regexes ([#&#8203;26648](https://togithub.com/aws/aws-cdk/issues/26648)) ([cc52e2d](https://togithub.com/aws/aws-cdk/commit/cc52e2dc22df1434d27c38073bcd60421d2ec39e)), closes [#&#8203;26623](https://togithub.com/aws/aws-cdk/issues/26623)
-   **lambda:** Lambda Insights Layer ARN 1.0.229 in us-west-1 on ARM64 incorrect ([#&#8203;26626](https://togithub.com/aws/aws-cdk/issues/26626)) ([dabf868](https://togithub.com/aws/aws-cdk/commit/dabf868ed81235174b59d4990157b777ed23be64)), closes [/docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Lambda-Insights-extension-versionsARM.html#Lambda-Insights-extension-ARM-1](https://togithub.com/aws//docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Lambda-Insights-extension-versionsARM.html/issues/Lambda-Insights-extension-ARM-1) [#&#8203;26615](https://togithub.com/aws/aws-cdk/issues/26615)
-   **rds:** `grantConnect` fails to deploy when no user is specified for instances with secret credentials ([#&#8203;26647](https://togithub.com/aws/aws-cdk/issues/26647)) ([112b861](https://togithub.com/aws/aws-cdk/commit/112b8619d60dd9082be92cb811cc5c7f36f05fe1)), closes [#&#8203;26603](https://togithub.com/aws/aws-cdk/issues/26603)
-   **sam:** CfnFunction events are not rendered ([#&#8203;26679](https://togithub.com/aws/aws-cdk/issues/26679)) ([305a9cc](https://togithub.com/aws/aws-cdk/commit/305a9cc9a5cb18db0c2660c5354a2c43e8d36cf6)), closes [#&#8203;26637](https://togithub.com/aws/aws-cdk/issues/26637)
-   **triggers:** executed on update even when executeOnHandlerChange is false ([#&#8203;26676](https://togithub.com/aws/aws-cdk/issues/26676)) ([ed3aaf7](https://togithub.com/aws/aws-cdk/commit/ed3aaf7826884d3fdafd667fe7816fc57772632c)), closes [#&#8203;25939](https://togithub.com/aws/aws-cdk/issues/25939)
-   broken cross-region reference in aws-route53 ([#&#8203;26666](https://togithub.com/aws/aws-cdk/issues/26666)) ([ec61b09](https://togithub.com/aws/aws-cdk/commit/ec61b09f6f3f49ace109ec150064fb948635eee1))

***

#### Alpha modules (2.91.0-alpha.0)

##### Features

-   **appconfig:** L2 constructs ([#&#8203;26639](https://togithub.com/aws/aws-cdk/issues/26639)) ([e479bd4](https://togithub.com/aws/aws-cdk/commit/e479bd4353aefa5e48189d2c71f6067489afe141))
-   **glue:** Job construct does not honor SparkUIProps S3 prefix when granting S3 access ([#&#8203;26696](https://togithub.com/aws/aws-cdk/issues/26696)) ([42250f1](https://togithub.com/aws/aws-cdk/commit/42250f1df04b7c2ffb637c8943444ed8c0dab2df)), closes [#&#8203;19862](https://togithub.com/aws/aws-cdk/issues/19862)

##### Bug Fixes

-   **glue:** synth time validation does not work in Python/Java/C#/Go ([#&#8203;26650](https://togithub.com/aws/aws-cdk/issues/26650)) ([dba8cf3](https://togithub.com/aws/aws-cdk/commit/dba8cf3877663b3911c6da724f2cc5906ea60159)), closes [#&#8203;26620](https://togithub.com/aws/aws-cdk/issues/26620)

</details>

<details>
<summary>aws/aws-sdk-js (aws-sdk)</summary>

### [`v2.1435.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#214350)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1434.0...v2.1435.0)

-   feature: AmplifyBackend: Adds sensitive trait to required input shapes.
-   feature: ConfigService: Updated ResourceType enum with new resource types onboarded by AWS Config in July 2023.
-   feature: EC2: Amazon EC2 P5 instances, powered by the latest NVIDIA H100 Tensor Core GPUs, deliver the highest performance in EC2 for deep learning (DL) and HPC applications. M7i-flex and M7i instances are next-generation general purpose instances powered by custom 4th Generation Intel Xeon Scalable processors.
-   feature: QuickSight: New Authentication method for Account subscription - IAM Identity Center. Hierarchy layout support, default column width support and related style properties for pivot table visuals. Non-additive topic field aggregations for Topic API
-   feature: SWF: This release adds new API parameters to override workflow task list for workflow executions.

### [`v2.1434.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#214340)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1433.0...v2.1434.0)

-   feature: Connect: This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.
-   feature: ELBv2: This release enables configuring security groups for Network Load Balancers
-   feature: Omics: This release adds instanceType to GetRunTask & ListRunTasks responses.
-   feature: SecretsManager: Add additional InvalidRequestException to list of possible exceptions for ListSecret.

### [`v2.1433.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#214330)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1432.0...v2.1433.0)

-   feature: ChimeSDKVoice: Updating CreatePhoneNumberOrder, UpdatePhoneNumber and BatchUpdatePhoneNumbers APIs, adding phone number name
-   feature: FSx: For FSx for Lustre, add new data repository task type, RELEASE_DATA_FROM_FILESYSTEM, to release files that have been archived to S3. For FSx for Windows, enable support for configuring and updating SSD IOPS, and for updating storage type. For FSx for OpenZFS, add new deployment type, MULTI_AZ\_1.
-   feature: GuardDuty: Added autoEnable ALL to UpdateOrganizationConfiguration and DescribeOrganizationConfiguration APIs.
-   feature: SageMaker: This release adds support for cross account access for SageMaker Model Cards through AWS RAM.

### [`v2.1432.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#214320)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1431.0...v2.1432.0)

-   feature: Backup: This release introduces a new logically air-gapped vault (Preview) in AWS Backup that stores immutable backup copies, which are locked by default and isolated with encryption using AWS owned keys. Logically air-gapped vault (Preview) allows secure recovery of application data across accounts.
-   feature: ElastiCache: Added support for cluster mode in online migration and test migration API
-   feature: ServiceCatalog: Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.

### [`v2.1431.0`](https://togithub.com/aws/aws-sdk-js/blob/HEAD/CHANGELOG.md#214310)

[Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.1430.0...v2.1431.0)

-   feature: Detective: Updated the email validation regex to be in line with the TLD name specifications.
-   feature: IVSRealTime: Add QUOTA_EXCEEDED and PUBLISHER_NOT_FOUND to EventErrorCode for stage health events.
-   feature: KinesisVideo: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.
-   feature: KinesisVideoArchivedMedia: This release enables minimum of Images SamplingInterval to be as low as 200 milliseconds in Kinesis Video Stream Image feature.

</details>

<details>
<summary>evanw/esbuild (esbuild)</summary>

### [`v0.19.1`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0191)

[Compare Source](https://togithub.com/evanw/esbuild/compare/v0.19.0...v0.19.1)

-   Fix a regression with `baseURL` in `tsconfig.json` ([#&#8203;3307](https://togithub.com/evanw/esbuild/issues/3307))

    The previous release moved `tsconfig.json` path resolution before `--packages=external` checks to allow the [`paths` field](https://www.typescriptlang.org/tsconfig#paths) in `tsconfig.json` to avoid a package being marked as external. However, that reordering accidentally broke the behavior of the `baseURL` field from `tsconfig.json`. This release moves these path resolution rules around again in an attempt to allow both of these cases to work.

-   Parse TypeScript type arguments for JavaScript decorators ([#&#8203;3308](https://togithub.com/evanw/esbuild/issues/3308))

    When parsing JavaScript decorators in TypeScript (i.e. with `experimentalDecorators` disabled), esbuild previously didn't parse type arguments. Type arguments will now be parsed starting with this release. For example:

    ```ts
    @&#8203;foo<number>
    @&#8203;bar<number, string>()
    class Foo {}
    ```

-   Fix glob patterns matching extra stuff at the end ([#&#8203;3306](https://togithub.com/evanw/esbuild/issues/3306))

    Previously glob patterns such as `./*.js` would incorrectly behave like `./*.js*` during path matching (also matching `.js.map` files, for example). This was never intentional behavior, and has now been fixed.

-   Change the permissions of esbuild's generated output files ([#&#8203;3285](https://togithub.com/evanw/esbuild/issues/3285))

    This release changes the permissions of the output files that esbuild generates to align with the default behavior of node's [`fs.writeFileSync`](https://nodejs.org/api/fs.html#fswritefilesyncfile-data-options) function. Since most tools written in JavaScript use `fs.writeFileSync`, this should make esbuild more consistent with how other JavaScript build tools behave.

    The full Unix-y details: Unix permissions use three-digit octal notation where the three digits mean "user, group, other" in that order. Within a digit, 4 means "read" and 2 means "write" and 1 means "execute". So 6 == 4 + 2 == read + write. Previously esbuild uses 0644 permissions (the leading 0 means octal notation) but the permissions for `fs.writeFileSync` defaults to 0666, so esbuild will now use 0666 permissions. This does not necessarily mean that the files esbuild generates will end up having 0666 permissions, however, as there is another Unix feature called "umask" where the operating system masks out some of these bits. If your umask is set to 0022 then the generated files will have 0644 permissions, and if your umask is set to 0002 then the generated files will have 0664 permissions.

-   Fix a subtle CSS ordering issue with `@import` and `@layer`

    With this release, esbuild may now introduce additional `@layer` rules when bundling CSS to better preserve the layer ordering of the input code. Here's an example of an edge case where this matters:

    ```css
    /* entry.css */
    @&#8203;import "a.css";
    @&#8203;import "b.css";
    @&#8203;import "a.css";
    ```

    ```css
    /* a.css */
    @&#8203;layer a {
      body {
        background: red;
      }
    }
    ```

    ```css
    /* b.css */
    @&#8203;layer b {
      body {
        background: green;
      }
    }
    ```

    This CSS should set the body background to `green`, which is what happens in the browser. Previously esbuild generated the following output which incorrectly sets the body background to `red`:

    ```css
    /* b.css */
    @&#8203;layer b {
      body {
        background: green;
      }
    }

    /* a.css */
    @&#8203;layer a {
      body {
        background: red;
      }
    }
    ```

    This difference in behavior is because the browser evaluates `a.css` + `b.css` + `a.css` (in CSS, each `@import` is replaced with a copy of the imported file) while esbuild was only writing out `b.css` + `a.css`. The first copy of `a.css` wasn't being written out by esbuild for two reasons: 1) bundlers care about code size and try to avoid emitting duplicate CSS and 2) when there are multiple copies of a CSS file, normally only the *last* copy matters since the last declaration with equal specificity wins in CSS.

    However, `@layer` was recently added to CSS and for `@layer` the *first* copy matters because layers are ordered using their first location in source code order. This introduction of `@layer` means esbuild needs to change its bundling algorithm. An easy solution would be for esbuild to write out `a.css` twice, but that would be inefficient. So what I'm going to try to have esbuild do with this release is to write out an abbreviated form of the first copy of a CSS file that only includes the `@layer` information, and then still only write out the full CSS file once for the last copy. So esbuild's output for this edge case now looks like this:

    ```css
    /* a.css */
    @&#8203;layer a;

    /* b.css */
    @&#8203;layer b {
      body {
        background: green;
      }
    }

    /* a.css */
    @&#8203;layer a {
      body {
        background: red;
      }
    }
    ```

    The behavior of the bundled CSS now matches the behavior of the unbundled CSS. You may be wondering why esbuild doesn't just write out `a.css` first followed by `b.css`. That would work in this case but it doesn't work in general because for any rules outside of a `@layer` rule, the last copy shold still win instead of the first copy.

-   Fix a bug with esbuild's TypeScript type definitions ([#&#8203;3299](https://togithub.com/evanw/esbuild/pull/3299))

    This release fixes a copy/paste error with the TypeScript type definitions for esbuild's JS API:

    ```diff
     export interface TsconfigRaw {
       compilerOptions?: {
    -    baseUrl?: boolean
    +    baseUrl?: string
         ...
       }
     }
    ```

    This fix was contributed by [@&#8203;privatenumber](https://togithub.com/privatenumber).

### [`v0.19.0`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0190)

[Compare Source](https://togithub.com/evanw/esbuild/compare/v0.18.20...v0.19.0)

**This release deliberately contains backwards-incompatible changes.** To avoid automatically picking up releases like this, you should either be pinning the exact version of `esbuild` in your `package.json` file (recommended) or be using a version range syntax that only accepts patch upgrades such as `^0.18.0` or `~0.18.0`. See npm's documentation about [semver](https://docs.npmjs.com/cli/v6/using-npm/semver/) for more information.

-   Handle import paths containing wildcards ([#&#8203;56](https://togithub.com/evanw/esbuild/issues/56), [#&#8203;700](https://togithub.com/evanw/esbuild/issues/700), [#&#8203;875](https://togithub.com/evanw/esbuild/issues/875), [#&#8203;976](https://togithub.com/evanw/esbuild/issues/976), [#&#8203;2221](https://togithub.com/evanw/esbuild/issues/2221), [#&#8203;2515](https://togithub.com/evanw/esbuild/issues/2515))

    This release introduces wildcards in import paths in two places:

    -   **Entry points**

        You can now pass a string containing glob-style wildcards such as `./src/*.ts` as an entry point and esbuild will search the file system for files that match the pattern. This can be used to easily pass esbuild all files with a certain extension on the command line in a cross-platform way. Previously you had to rely on the shell to perform glob expansion, but that is obviously shell-dependent and didn't work at all on Windows. Note that to use this feature on the command line you will have to quote the pattern so it's passed verbatim to esbuild without any expansion by the shell. Here's an example:

        ```sh
        esbuild --minify "./src/*.ts" --outdir=out
        ```

        Specifically the `*` character will match any character except for the `/` character, and the `/**/` character sequence will match a path separator followed by zero or more path elements. Other wildcard operators found in glob patterns such as `?` and `[...]` are not supported.

    -   **Run-time import paths**

        Import paths that are evaluated at run-time can now be bundled in certain limited situations. The import path expression must be a form of string concatenation and must start with either `./` or `../`. Each non-string expression in the string concatenation chain becomes a wildcard. The `*` wildcard is chosen unless the previous character is a `/`, in which case the `/**/*` character sequence is used. Some examples:

        ```js
        // These two forms are equivalent
        const json1 = await import('./data/' + kind + '.json')
        const json2 = await import(`./data/${kind}.json`)
        ```

        This feature works with `require(...)` and `import(...)` because these can all accept run-time expressions. It does not work with `import` and `export` statements because these cannot accept run-time expressions. If you want to prevent esbuild from trying to bundle these imports, you should move the string concatenation expression outside of the `require(...)` or `import(...)`. For example:

        ```js
        // This will be bundled
        const json1 = await import('./data/' + kind + '.json')

        // This will not be bundled
        const path = './data/' + kind + '.json'
        const json2 = await import(path)
        ```

        Note that using this feature means esbuild will potentially do a lot of file system I/O to find all possible files that might match the pattern. This is by design, and is not a bug. If this is a concern, I recommend either avoiding the `/**/` pattern (e.g. by not putting a `/` before a wildcard) or using this feature only in directory subtrees which do not have many files that don't match the pattern (e.g. making a subdirectory for your JSON files and explicitly including that subdirectory in the pattern).

-   Path aliases in `tsconfig.json` no longer count as packages ([#&#8203;2792](https://togithub.com/evanw/esbuild/issues/2792), [#&#8203;3003](https://togithub.com/evanw/esbuild/issues/3003), [#&#8203;3160](https://togithub.com/evanw/esbuild/issues/3160), [#&#8203;3238](https://togithub.com/evanw/esbuild/issues/3238))

    Setting `--packages=external` tells esbuild to make all import paths external when they look like a package path. For example, an import of `./foo/bar` is not a package path and won't be external while an import of `foo/bar` is a package path and will be external. However, the [`paths` field](https://www.typescriptlang.org/tsconfig#paths) in `tsconfig.json` allows you to create import paths that look like package paths but that do not resolve to packages. People do not want these paths to count as package paths. So with this release, the behavior of `--packages=external` has been changed to happen after the `tsconfig.json` path remapping step.

-   Use the `local-css` loader for `.module.css` files by default ([#&#8203;20](https://togithub.com/evanw/esbuild/issues/20))

    With this release the `css` loader is still used for `.css` files except that `.module.css` files now use the `local-css` loader. This is a common convention in the web development community. 

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **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.

---

 - [ ] 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/SvenKirschbaum/share.kirschbaum.cloud).
@GideonMax
Copy link

I wonder if #31835 is also related to default exports.

Partially yes, but there are other issues there as well I think, for e.g. #31835 (comment) seems like it's not only about default imports.

That comment might actually be related to a different problem with imports.
When importing from a module (i.e. import { createTheme } from '@mui/material';), bundlers will use the module's main and module fields in package.json to resolve the correct entrypoint (either esm or commonjs).
But when importing from a specific file (i.e. import { createTheme } from '@mui/material/styles';), since there is no exports field in the module's package.json, bundlers will just import the file by path, regardless of the module type they want.
I personally had this be a problem in some older versions of vite.

rparini added a commit to rparini/cxroots-app that referenced this issue Aug 29, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| [@mui/lab](https://mui.com/material-ui/about-the-lab/)
([source](https://togithub.com/mui/material-ui)) | [`5.0.0-alpha.134` ->
`5.0.0-alpha.142`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.134/5.0.0-alpha.142)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2flab/5.0.0-alpha.142?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2flab/5.0.0-alpha.142?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2flab/5.0.0-alpha.134/5.0.0-alpha.142?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2flab/5.0.0-alpha.134/5.0.0-alpha.142?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@mui/material](https://mui.com/material-ui/getting-started/)
([source](https://togithub.com/mui/material-ui)) | [`5.13.6` ->
`5.14.7`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.13.6/5.14.7)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2fmaterial/5.14.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2fmaterial/5.14.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2fmaterial/5.13.6/5.14.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2fmaterial/5.13.6/5.14.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
|
[@testing-library/jest-dom](https://togithub.com/testing-library/jest-dom)
| [`6.0.1` ->
`6.1.2`](https://renovatebot.com/diffs/npm/@testing-library%2fjest-dom/6.0.1/6.1.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@testing-library%2fjest-dom/6.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@testing-library%2fjest-dom/6.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@testing-library%2fjest-dom/6.0.1/6.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@testing-library%2fjest-dom/6.0.1/6.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[@types/jest](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`29.5.2` ->
`29.5.4`](https://renovatebot.com/diffs/npm/@types%2fjest/29.5.2/29.5.4)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fjest/29.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fjest/29.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fjest/29.5.2/29.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fjest/29.5.2/29.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/plotly.js](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/plotly.js)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`2.12.18` ->
`2.12.26`](https://renovatebot.com/diffs/npm/@types%2fplotly.js/2.12.18/2.12.26)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fplotly.js/2.12.26?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fplotly.js/2.12.26?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fplotly.js/2.12.18/2.12.26?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fplotly.js/2.12.18/2.12.26?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`18.2.14` ->
`18.2.21`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.14/18.2.21)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.21?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.21?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.14/18.2.21?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.14/18.2.21?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`18.2.6` ->
`18.2.7`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.6/18.2.7)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.6/18.2.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.6/18.2.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [jest-canvas-mock](https://togithub.com/hustcc/jest-canvas-mock) |
[`2.5.1` ->
`2.5.2`](https://renovatebot.com/diffs/npm/jest-canvas-mock/2.5.1/2.5.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/jest-canvas-mock/2.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jest-canvas-mock/2.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jest-canvas-mock/2.5.1/2.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jest-canvas-mock/2.5.1/2.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [katex](https://katex.org)
([source](https://togithub.com/KaTeX/KaTeX)) | [`0.16.7` ->
`0.16.8`](https://renovatebot.com/diffs/npm/katex/0.16.7/0.16.8) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/katex/0.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/katex/0.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/katex/0.16.7/0.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/katex/0.16.7/0.16.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [mathjs](https://mathjs.org)
([source](https://togithub.com/josdejong/mathjs)) | [`11.8.2` ->
`11.10.0`](https://renovatebot.com/diffs/npm/mathjs/11.8.2/11.10.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/mathjs/11.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/mathjs/11.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/mathjs/11.8.2/11.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/mathjs/11.8.2/11.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [node](https://togithub.com/nodejs/node) | `18.16.1` -> `18.17.1` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/node/v18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/node/v18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/node/18.16.1/v18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/node/18.16.1/v18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| | minor |
| [plotly.js](https://togithub.com/plotly/plotly.js) | [`2.24.2` ->
`2.26.0`](https://renovatebot.com/diffs/npm/plotly.js/2.24.2/2.26.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/plotly.js/2.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/plotly.js/2.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/plotly.js/2.24.2/2.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/plotly.js/2.24.2/2.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [typescript](https://www.typescriptlang.org/)
([source](https://togithub.com/Microsoft/TypeScript)) | [`5.1.3` ->
`5.2.2`](https://renovatebot.com/diffs/npm/typescript/5.1.3/5.2.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript/5.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript/5.1.3/5.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.1.3/5.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |

---

### Release Notes

<details>
<summary>mui/material-ui (@&#8203;mui/lab)</summary>

###
[`v5.0.0-alpha.142`](https://togithub.com/mui/material-ui/compare/a1f511dd6ed9adba561e2ba00e1348136ed656db...8a09d535f101aac98935f82b76345ca9691b5e2b)

[Compare
Source](https://togithub.com/mui/material-ui/compare/a1f511dd6ed9adba561e2ba00e1348136ed656db...8a09d535f101aac98935f82b76345ca9691b5e2b)

###
[`v5.0.0-alpha.139`](https://togithub.com/mui/material-ui/compare/2deea341c9abfb640f22520e0c277027f3f91cd0...40f4b275022f03e48cf4809cd53d0d0dabb40424)

[Compare
Source](https://togithub.com/mui/material-ui/compare/2deea341c9abfb640f22520e0c277027f3f91cd0...40f4b275022f03e48cf4809cd53d0d0dabb40424)

###
[`v5.0.0-alpha.138`](https://togithub.com/mui/material-ui/compare/f2e5ded80e94407f63a27eadb018139d6f967313...2deea341c9abfb640f22520e0c277027f3f91cd0)

[Compare
Source](https://togithub.com/mui/material-ui/compare/f2e5ded80e94407f63a27eadb018139d6f967313...2deea341c9abfb640f22520e0c277027f3f91cd0)

###
[`v5.0.0-alpha.137`](https://togithub.com/mui/material-ui/compare/2529e3aaaaec2c9f8e8cf669e58bb9c81db5a6d8...f2e5ded80e94407f63a27eadb018139d6f967313)

[Compare
Source](https://togithub.com/mui/material-ui/compare/2529e3aaaaec2c9f8e8cf669e58bb9c81db5a6d8...f2e5ded80e94407f63a27eadb018139d6f967313)

###
[`v5.0.0-alpha.135`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muilab500-alpha135)

- \[Timeline] Fix position `alternate-reverse` generated classname
([#&#8203;37678](https://togithub.com/mui/material-ui/issues/37678))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

</details>

<details>
<summary>mui/material-ui (@&#8203;mui/material)</summary>

###
[`v5.14.7`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5147)

[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.14.6...v5.14.7)

<!-- generated comparing v5.14.6..master -->

*Aug 29, 2023*

A big thanks to the 11 contributors who made this release possible. This
release focuses primarily on 🐛 bug fixes, 📚 documentation, and ⚙️
infrastructure improvements.

##### `@mui/[email protected]`

- ​<!-- 17 -->\[Autocomplete] Fix listbox opened unexpectedly when
component is `disabled`
([#&#8203;38611](https://togithub.com/mui/material-ui/issues/38611))
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- ​<!-- 03 -->\[Select]\[material-ui] Fix select menu moving on scroll
when disableScrollLock is true
([#&#8203;37773](https://togithub.com/mui/material-ui/issues/37773))
[@&#8203;VishruthR](https://togithub.com/VishruthR)

##### `@mui/[email protected]`

- ​<!-- 16 -->\[useButton]\[base-ui] Accept arbitrary props in
getRootProps and forward them
([#&#8203;38475](https://togithub.com/mui/material-ui/issues/38475))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)

##### `@mui/[email protected]`

- ​<!-- 02 -->\[system]\[zero]\[tag] Add support for sx prop
([#&#8203;38535](https://togithub.com/mui/material-ui/issues/38535))
[@&#8203;brijeshb42](https://togithub.com/brijeshb42)

##### Docs

- ​<!-- 10 -->\[docs] Number Input docs fixes
([#&#8203;38521](https://togithub.com/mui/material-ui/issues/38521))
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- ​<!-- 09 -->\[docs] Show all the code in the usage section
([#&#8203;38691](https://togithub.com/mui/material-ui/issues/38691))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 06 -->\[docs]\[joy-ui] Change the customization and how-to
guides docs tree
([#&#8203;38396](https://togithub.com/mui/material-ui/issues/38396))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 05 -->\[docs]\[lab]\[LoadingButton] Improve `loading` prop
documentation
([#&#8203;38625](https://togithub.com/mui/material-ui/issues/38625))
[@&#8203;sai6855](https://togithub.com/sai6855)
- ​<!-- 04 -->\[docs]\[material-ui] Format `key` prop JSDoc description
in `Snackbar` component code correctly
([#&#8203;38603](https://togithub.com/mui/material-ui/issues/38603))
[@&#8203;jaydenseric](https://togithub.com/jaydenseric)

##### Core

- ​<!-- 15 -->\[core] Add use-client to custom icons
([#&#8203;38132](https://togithub.com/mui/material-ui/issues/38132))
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- ​<!-- 14 -->\[core] Remove unnecessary `@types/jsdom`
([#&#8203;38657](https://togithub.com/mui/material-ui/issues/38657))
[@&#8203;renovate](https://togithub.com/renovate)\[bot]
- ​<!-- 13 -->\[core] Improve sponsors GA labels
([#&#8203;38649](https://togithub.com/mui/material-ui/issues/38649))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 12 -->\[core] Fix ESM issues with regression tests
([#&#8203;37963](https://togithub.com/mui/material-ui/issues/37963))
[@&#8203;Janpot](https://togithub.com/Janpot)
- ​<!-- 11 -->\[core] Potential fix for intermittent ci crashes in e2e
test
([#&#8203;38614](https://togithub.com/mui/material-ui/issues/38614))
[@&#8203;Janpot](https://togithub.com/Janpot)
- ​<!-- 08 -->\[docs-infra] Adjust the Material You playground demo
design
([#&#8203;38636](https://togithub.com/mui/material-ui/issues/38636))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 07 -->\[docs-infra] Hide the SkipLink button if user prefers
reduced motion
([#&#8203;38632](https://togithub.com/mui/material-ui/issues/38632))
[@&#8203;DerTimonius](https://togithub.com/DerTimonius)
- ​<!-- 01 -->\[website] Add tiny fixes the homepage Sponsors section
([#&#8203;38635](https://togithub.com/mui/material-ui/issues/38635))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)

All contributors of this release in alphabetical order:
[@&#8203;brijeshb42](https://togithub.com/brijeshb42),
[@&#8203;danilo-leal](https://togithub.com/danilo-leal),
[@&#8203;DerTimonius](https://togithub.com/DerTimonius),
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai),
[@&#8203;Janpot](https://togithub.com/Janpot),
[@&#8203;jaydenseric](https://togithub.com/jaydenseric),
[@&#8203;mj12albert](https://togithub.com/mj12albert),
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari),
[@&#8203;renovate](https://togithub.com/renovate)\[bot],
[@&#8203;sai6855](https://togithub.com/sai6855),
[@&#8203;VishruthR](https://togithub.com/VishruthR)

###
[`v5.14.6`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5146)

[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.14.5...v5.14.6)

<!-- generated comparing v5.14.5..master -->

*Aug 23, 2023*

A big thanks to the 21 contributors who made this release possible. Here
are some highlights ✨:

- 🚀 Added the [Popup](https://mui.com/base-ui/react-popup/) component to
Base UI
([#&#8203;37960](https://togithub.com/mui/material-ui/issues/37960))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
It's intended to replace the Popper component, which uses the deprecated
Popper JS library. The Popup is built on top of Floating UI and has a
similar API to the Popper.
- 🚀 Added the [Accordion](https://mui.com/joy-ui/react-accordion/)
component to Joy UI
([#&#8203;38164](https://togithub.com/mui/material-ui/issues/38164))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- 🚀 Added InputBase and ButtonBase components to `material-next`
([#&#8203;38319](https://togithub.com/mui/material-ui/issues/38319))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- 🔋 First iteration on the zero-runtime styling engine compatible with
Server Components
([#&#8203;38378](https://togithub.com/mui/material-ui/issues/38378))
[@&#8203;brijeshb42](https://togithub.com/brijeshb42)

##### `@mui/[email protected]`

- \[Modal] Update it to use the useModal hook
([#&#8203;38498](https://togithub.com/mui/material-ui/issues/38498))
[@&#8203;mnajdova](https://togithub.com/mnajdova)
- \[Select] Add `root` class to `SelectClasses`
([#&#8203;38424](https://togithub.com/mui/material-ui/issues/38424))
[@&#8203;sai6855](https://togithub.com/sai6855)
- \[Skeleton] Soften the pulse animation
([#&#8203;38506](https://togithub.com/mui/material-ui/issues/38506))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[TextField] Fix onClick regressions handling changes
([#&#8203;38474](https://togithub.com/mui/material-ui/issues/38474))
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- \[TextField] Fix TextField onClick test
([#&#8203;38597](https://togithub.com/mui/material-ui/issues/38597))
[@&#8203;mj12albert](https://togithub.com/mj12albert)

##### `@mui/[email protected]`

- \[Popup] New component
([#&#8203;37960](https://togithub.com/mui/material-ui/issues/37960))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/[email protected]`

- \[Accordion] Add Joy UI Accordion components
([#&#8203;38164](https://togithub.com/mui/material-ui/issues/38164))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[Select] Add `required` prop
([#&#8203;38167](https://togithub.com/mui/material-ui/issues/38167))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- Miscellaneous fixes
([#&#8203;38462](https://togithub.com/mui/material-ui/issues/38462))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)

##### `@mui/[email protected]`

- \[ButtonBase] Add ButtonBase component
([#&#8203;38319](https://togithub.com/mui/material-ui/issues/38319))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)
- \[Input] Add InputBase component
([#&#8203;38392](https://togithub.com/mui/material-ui/issues/38392))
[@&#8203;mj12albert](https://togithub.com/mj12albert)

##### `@mui/[email protected]`

- Implementation of styled tag processor for linaria
([#&#8203;38378](https://togithub.com/mui/material-ui/issues/38378))
[@&#8203;brijeshb42](https://togithub.com/brijeshb42)

##### Docs

- \[blog] Clarify tree view move
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Improve the "Understanding MUI packages" page images
([#&#8203;38619](https://togithub.com/mui/material-ui/issues/38619))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs]\[base-ui] Revise the structure of the Component docs
([#&#8203;38529](https://togithub.com/mui/material-ui/issues/38529))
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)
- \[docs]\[base-ui] Fix Menu Hooks demo
([#&#8203;38479](https://togithub.com/mui/material-ui/issues/38479))
[@&#8203;homerchen19](https://togithub.com/homerchen19)
- \[docs]\[base-ui] Correct the MUI System quickstart example
([#&#8203;38496](https://togithub.com/mui/material-ui/issues/38496))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- \[docs]\[base-ui] Add Tailwind & plain CSS demos for Autocomplete page
([#&#8203;38157](https://togithub.com/mui/material-ui/issues/38157))
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- \[docs]\[base-ui] Add Tailwind CSS + plain CSS demo on the Input page
([#&#8203;38302](https://togithub.com/mui/material-ui/issues/38302))
[@&#8203;alisasanib](https://togithub.com/alisasanib)
- \[docs]\[base-ui] Add Tailwind CSS + plain CSS demo on the Snackbar,
Badge, Switch pages
([#&#8203;38425](https://togithub.com/mui/material-ui/issues/38425))
[@&#8203;alisasanib](https://togithub.com/alisasanib)
- \[docs]\[base-ui] Add Tailwind CSS + plain CSS demo on the Slider page
([#&#8203;38413](https://togithub.com/mui/material-ui/issues/38413))
[@&#8203;alisasanib](https://togithub.com/alisasanib)
- \[docs]\[base-ui] Add Tailwind CSS + plain CSS demo on the Select page
([#&#8203;38367](https://togithub.com/mui/material-ui/issues/38367))
[@&#8203;alisasanib](https://togithub.com/alisasanib)
- \[docs]\[joy-ui] Fix typo: Classname -> Class name for consistency
([#&#8203;38510](https://togithub.com/mui/material-ui/issues/38510))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[docs]\[joy-ui] Revise the theme color page
([#&#8203;38402](https://togithub.com/mui/material-ui/issues/38402))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs]\[joy-ui] Sort templates by popularity
([#&#8203;38490](https://togithub.com/mui/material-ui/issues/38490))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs]\[joy-ui] Fix the `fullWidth` prop description for the Input
([#&#8203;38545](https://togithub.com/mui/material-ui/issues/38545))
[@&#8203;0xturner](https://togithub.com/0xturner)
- \[docs]\[joy-ui] Updated the List playground demo
([#&#8203;38499](https://togithub.com/mui/material-ui/issues/38499))
[@&#8203;zanivan](https://togithub.com/zanivan)
- \[docs]\[joy-ui] Changed bgcolor of the Playground demo
([#&#8203;38502](https://togithub.com/mui/material-ui/issues/38502))
[@&#8203;zanivan](https://togithub.com/zanivan)
- \[docs]\[material-ui] Fix key warning in SimpleDialog demo
([#&#8203;38580](https://togithub.com/mui/material-ui/issues/38580))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)
- \[docs]\[material-ui] Fixed Google Fonts link for material two-tone
icons in CodeSandbox and Stackblitz
([#&#8203;38247](https://togithub.com/mui/material-ui/issues/38247))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)
- \[docs]\[material-ui] Fix the Drawer's `onClose` API docs
([#&#8203;38273](https://togithub.com/mui/material-ui/issues/38273))
[@&#8203;johnmatthiggins](https://togithub.com/johnmatthiggins)
- \[docs]\[material-ui] Improve nav link tab example
([#&#8203;38315](https://togithub.com/mui/material-ui/issues/38315))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs]\[material-ui] Fix missing import in the styled engine guide
([#&#8203;38450](https://togithub.com/mui/material-ui/issues/38450))
[@&#8203;codersjj](https://togithub.com/codersjj)
- \[docs]\[material-ui]\[Dialog] Improve screen reader announcement of
Customized Dialog
([#&#8203;38592](https://togithub.com/mui/material-ui/issues/38592))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)
- \[docs] Add 3rd party libraries integration examples for Joy Input
([#&#8203;38541](https://togithub.com/mui/material-ui/issues/38541))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)
- \[docs] Hide translation call to action
([#&#8203;38449](https://togithub.com/mui/material-ui/issues/38449))
[@&#8203;cristianmacedo](https://togithub.com/cristianmacedo)
- \[docs] Fix codemod name in changelog of v5.14.4
([#&#8203;38593](https://togithub.com/mui/material-ui/issues/38593))
[@&#8203;GresilleSiffle](https://togithub.com/GresilleSiffle)
- \[docs] More space for theme builder
([#&#8203;38532](https://togithub.com/mui/material-ui/issues/38532))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Fix the math symbol of the width sx prop range
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Fix typo on a11y section of Tabs
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Clarify System peer dependencies
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Fix horizontal scrollbar
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Code style convention
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Fix typo in Base UI
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs] Update the backers page
([#&#8203;38505](https://togithub.com/mui/material-ui/issues/38505))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs] Add stray design adjustments to the docs
([#&#8203;38501](https://togithub.com/mui/material-ui/issues/38501))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs] Use IBM Plex Sans in Tailwind CSS demos
([#&#8203;38464](https://togithub.com/mui/material-ui/issues/38464))
[@&#8203;mnajdova](https://togithub.com/mnajdova)
- \[docs] Fix SEO issues reported by ahrefs
([#&#8203;38423](https://togithub.com/mui/material-ui/issues/38423))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

##### Examples

- \[examples] Start to remove Gatsby
([#&#8203;38567](https://togithub.com/mui/material-ui/issues/38567))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[examples]\[joy-ui] Fix Joy UI example CLI
([#&#8203;38531](https://togithub.com/mui/material-ui/issues/38531))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[examples]\[joy-ui] Improve example when using Next Font
([#&#8203;38540](https://togithub.com/mui/material-ui/issues/38540))
[@&#8203;mwskwong](https://togithub.com/mwskwong)

##### Core

- \[CHANGELOG] Fix issues in highlight
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[core] Remove redundant `@material-ui/` aliases from regression test
webpack config
([#&#8203;38574](https://togithub.com/mui/material-ui/issues/38574))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)
- \[core] Fix CI error
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[core] Remove unnecessary Box
([#&#8203;38461](https://togithub.com/mui/material-ui/issues/38461))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[core] Set GitHub Action top level permission
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs-infra]\[joy-ui] Polish the usage and CSS vars playgrounds
([#&#8203;38600](https://togithub.com/mui/material-ui/issues/38600))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs-infra] Support link title
([#&#8203;38579](https://togithub.com/mui/material-ui/issues/38579))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs-infra] Fix ad layout shift
([#&#8203;38622](https://togithub.com/mui/material-ui/issues/38622))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs-infra] Add light tweaks to the ad container
([#&#8203;38504](https://togithub.com/mui/material-ui/issues/38504))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs-infra] Fix anchor scroll without tabs
([#&#8203;38586](https://togithub.com/mui/material-ui/issues/38586))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs-infra] Retain velocity animation speed
([#&#8203;38470](https://togithub.com/mui/material-ui/issues/38470))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs-infra] Follow import and CSS token standard
([#&#8203;38508](https://togithub.com/mui/material-ui/issues/38508))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[docs-infra] Add icon to callouts
([#&#8203;38525](https://togithub.com/mui/material-ui/issues/38525))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[docs-infra] Fix the anchor link on headings
([#&#8203;38528](https://togithub.com/mui/material-ui/issues/38528))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs-infra] Cleanup code on demo code block expansion
([#&#8203;38522](https://togithub.com/mui/material-ui/issues/38522))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)
- \[docs-infra] Improve the heading buttons positioning
([#&#8203;38428](https://togithub.com/mui/material-ui/issues/38428))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs-infra] Customize the blockquote design
([#&#8203;38503](https://togithub.com/mui/material-ui/issues/38503))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs-infra] Improve the alert before a negative feedback
([#&#8203;38500](https://togithub.com/mui/material-ui/issues/38500))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[docs-infra] Fix GoogleAnalytics missing event for code copy
([#&#8203;38469](https://togithub.com/mui/material-ui/issues/38469))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- \[docs-infra] Improve affordance on the code block expansion
([#&#8203;38421](https://togithub.com/mui/material-ui/issues/38421))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[website] Fine-tune the branding theme buttons
([#&#8203;38588](https://togithub.com/mui/material-ui/issues/38588))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[website] Improve the Base UI hero section demo
([#&#8203;38585](https://togithub.com/mui/material-ui/issues/38585))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[website] Add stray design improvements to the Material UI page
([#&#8203;38590](https://togithub.com/mui/material-ui/issues/38590))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- \[website] Fix mobile view Material UI page
([#&#8203;38568](https://togithub.com/mui/material-ui/issues/38568))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[website] Fix reference to the data grid
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[website] Configure Apple Pay
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- \[website] Fix template link on the homepage
([#&#8203;38471](https://togithub.com/mui/material-ui/issues/38471))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)

All contributors of this release in alphabetical order:
[@&#8203;0xturner](https://togithub.com/0xturner),
[@&#8203;alexfauquette](https://togithub.com/alexfauquette),
[@&#8203;alisasanib](https://togithub.com/alisasanib),
[@&#8203;brijeshb42](https://togithub.com/brijeshb42),
[@&#8203;codersjj](https://togithub.com/codersjj),
[@&#8203;cristianmacedo](https://togithub.com/cristianmacedo),
[@&#8203;danilo-leal](https://togithub.com/danilo-leal),
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai),
[@&#8203;GresilleSiffle](https://togithub.com/GresilleSiffle),
[@&#8203;homerchen19](https://togithub.com/homerchen19),
[@&#8203;johnmatthiggins](https://togithub.com/johnmatthiggins),
[@&#8203;michaldudak](https://togithub.com/michaldudak),
[@&#8203;mj12albert](https://togithub.com/mj12albert),
[@&#8203;mnajdova](https://togithub.com/mnajdova),
[@&#8203;mwskwong](https://togithub.com/mwskwong),
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari),
[@&#8203;sai6855](https://togithub.com/sai6855),
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore),
[@&#8203;siriwatknp](https://togithub.com/siriwatknp),
[@&#8203;zanivan](https://togithub.com/zanivan),
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

###
[`v5.14.5`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5145)

[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.14.4...v5.14.5)

<!-- generated comparing v5.14.4..master -->

*Aug 14, 2023*

A big thanks to the 17 contributors who made this release possible. Here
are some highlights ✨:

- [@&#8203;mnajdova](https://togithub.com/mnajdova) [made it easier to
use third-party components in Base UI
slots](https://mui.com/base-ui/getting-started/customization/#overriding-subcomponent-slots)
with the introduction of the `prepareForSlot` utility
([#&#8203;38138](https://togithub.com/mui/material-ui/issues/38138))

##### `@mui/[email protected]`

- ​<!-- 04 -->\[TextField] Fix to handle `onClick` on root element
([#&#8203;38072](https://togithub.com/mui/material-ui/issues/38072))
[@&#8203;LukasTy](https://togithub.com/LukasTy)

##### `@mui/[email protected]`

- ​<!-- 31 -->\[codemod] Add v5.0.0/tree-view-moved-to-x codemod
([#&#8203;38248](https://togithub.com/mui/material-ui/issues/38248))
[@&#8203;flaviendelangle](https://togithub.com/flaviendelangle)

##### `@mui/[email protected]`

- ​<!-- 07 -->\[Input]\[joy-ui] Fix the `FormHelperText` icon color
([#&#8203;38387](https://togithub.com/mui/material-ui/issues/38387))
[@&#8203;TheNatkat](https://togithub.com/TheNatkat)
- ​<!-- 06 -->\[Skeleton]\[joy-ui] Soften the pulse animation
([#&#8203;38384](https://togithub.com/mui/material-ui/issues/38384))
[@&#8203;zanivan](https://togithub.com/zanivan)
- ​<!-- 05 -->\[TabPanel]\[joy-ui] Add `keepMounted` prop
([#&#8203;38293](https://togithub.com/mui/material-ui/issues/38293))
[@&#8203;decadef20](https://togithub.com/decadef20)

##### `@mui/[email protected]`

- ​<!-- 30 -->\[base-ui] Remove the legacy Extend\* types
([#&#8203;38184](https://togithub.com/mui/material-ui/issues/38184))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- ​<!-- 29 -->\[base-ui] Add `useModal` hook
([#&#8203;38187](https://togithub.com/mui/material-ui/issues/38187))
[@&#8203;mnajdova](https://togithub.com/mnajdova)
- ​<!-- 28 -->\[base-ui] Add `prepareForSlot` util
([#&#8203;38138](https://togithub.com/mui/material-ui/issues/38138))
[@&#8203;mnajdova](https://togithub.com/mnajdova)
- ​<!-- 26 -->\[useButton]\[base-ui] Fix tabIndex not being forwarded
([#&#8203;38417](https://togithub.com/mui/material-ui/issues/38417))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)
- ​<!-- 25 -->\[useButton]\[base-ui] Fix onFocusVisible not being
handled
([#&#8203;38399](https://togithub.com/mui/material-ui/issues/38399))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)

##### Docs

- ​<!-- 32 -->\[blog] Blog post for MUI X mid v6. Date Pickers, Data
Grid, and Charts
([#&#8203;38241](https://togithub.com/mui/material-ui/issues/38241))
[@&#8203;richbustos](https://togithub.com/richbustos)
- ​<!-- 35 -->\[docs]\[base-ui] Update number input API docs
([#&#8203;38363](https://togithub.com/mui/material-ui/issues/38363))
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- ​<!-- 29 -->\[docs] Improve page transition speed
([#&#8203;38394](https://togithub.com/mui/material-ui/issues/38394))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 28 -->\[docs] Improve examples
([#&#8203;38398](https://togithub.com/mui/material-ui/issues/38398))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 19 -->\[docs]\[docs] Add `FileUpload` demo
([#&#8203;38420](https://togithub.com/mui/material-ui/issues/38420))
[@&#8203;sai6855](https://togithub.com/sai6855)
- ​<!-- 18 -->\[docs]\[joy-ui] Refine the Order Dashboard template
design
([#&#8203;38395](https://togithub.com/mui/material-ui/issues/38395))
[@&#8203;zanivan](https://togithub.com/zanivan)
- ​<!-- 17 -->\[docs]\[material-ui]\[joy-ui] Simplify the Quickstart
section on the Usage page
([#&#8203;38385](https://togithub.com/mui/material-ui/issues/38385))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 16 -->\[docs]\[Menu]\[joy] Explain how to control the open state
([#&#8203;38355](https://togithub.com/mui/material-ui/issues/38355))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- ​<!-- 15 -->\[docs]\[material] Revise the Support page
([#&#8203;38207](https://togithub.com/mui/material-ui/issues/38207))
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)
- ​<!-- 14 -->\[docs]\[material-ui] Remove incorrect `aria-label`s in
extended variant examples of Floating Action Button
([#&#8203;37170](https://togithub.com/mui/material-ui/issues/37170))
[@&#8203;ashleykolodziej](https://togithub.com/ashleykolodziej)
- ​<!-- 13 -->\[docs]\[material-ui] Adjust slightly the installation
page content
([#&#8203;38380](https://togithub.com/mui/material-ui/issues/38380))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 12 -->\[docs]\[Switch] Fix the readOnly class name in docs
([#&#8203;38277](https://togithub.com/mui/material-ui/issues/38277))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- ​<!-- 11 -->\[docs]\[TablePagination] Add Tailwind CSS & plain CSS
introduction demo
([#&#8203;38286](https://togithub.com/mui/material-ui/issues/38286))
[@&#8203;mnajdova](https://togithub.com/mnajdova)

##### Examples

- ​<!-- 10 -->\[examples] Add Joy UI + Vite.js + TypeScript example app
([#&#8203;37406](https://togithub.com/mui/material-ui/issues/37406))
[@&#8203;nithins1](https://togithub.com/nithins1)

##### Core

- ​<!-- 30 -->\[core] Consistent URL add leading /
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 27 -->\[docs-infra] Fix rebase issue
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 26 -->\[docs-infra] Fix typo in docs infra docs
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 25 -->\[docs-infra] Fix nested list margin
([#&#8203;38456](https://togithub.com/mui/material-ui/issues/38456))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 24 -->\[docs-infra] Move the Diamond Sponsors to the TOC
([#&#8203;38410](https://togithub.com/mui/material-ui/issues/38410))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 22 -->\[docs-infra] Move imports into page data
([#&#8203;38297](https://togithub.com/mui/material-ui/issues/38297))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- ​<!-- 21 -->\[docs-infra] Adjust heading styles
([#&#8203;38365](https://togithub.com/mui/material-ui/issues/38365))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 20 -->\[docs-infra] Fix info callout border color
([#&#8203;38370](https://togithub.com/mui/material-ui/issues/38370))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 05 -->\[website] Upgrade the homepage hero demos design
([#&#8203;38388](https://togithub.com/mui/material-ui/issues/38388))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 04 -->\[website] Improve Base UI hero section demo
([#&#8203;38255](https://togithub.com/mui/material-ui/issues/38255))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 03 -->\[website] Fix EmailSubscribe look
([#&#8203;38429](https://togithub.com/mui/material-ui/issues/38429))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 02 -->\[website] Link Discord in footer
([#&#8203;38369](https://togithub.com/mui/material-ui/issues/38369))
[@&#8203;richbustos](https://togithub.com/richbustos)
- ​<!-- 01 -->\[website] Clean up the `GetStartedButtons` component
([#&#8203;38256](https://togithub.com/mui/material-ui/issues/38256))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)

All contributors of this release in alphabetical order:
[@&#8203;alexfauquette](https://togithub.com/alexfauquette),
[@&#8203;ashleykolodziej](https://togithub.com/ashleykolodziej),
[@&#8203;danilo-leal](https://togithub.com/danilo-leal),
[@&#8203;decadef20](https://togithub.com/decadef20),
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai),
[@&#8203;flaviendelangle](https://togithub.com/flaviendelangle),
[@&#8203;LukasTy](https://togithub.com/LukasTy),
[@&#8203;michaldudak](https://togithub.com/michaldudak),
[@&#8203;mj12albert](https://togithub.com/mj12albert),
[@&#8203;mnajdova](https://togithub.com/mnajdova),
[@&#8203;nithins1](https://togithub.com/nithins1),
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari),
[@&#8203;richbustos](https://togithub.com/richbustos),
[@&#8203;sai6855](https://togithub.com/sai6855),
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore),
[@&#8203;TheNatkat](https://togithub.com/TheNatkat),
[@&#8203;zanivan](https://togithub.com/zanivan)

###
[`v5.14.4`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5144)

[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.14.3...v5.14.4)

<!-- generated comparing v5.14.3..master -->

*Aug 8, 2023*

A big thanks to the 18 contributors who made this release possible. Here
are some highlights ✨:

- 🎉 Added [Number Input](https://mui.com/base-ui/react-number-input/)
component &
[useNumberInput](https://mui.com/base-ui/react-number-input/#hook) hook
in [Base UI](https://mui.com/base-ui/getting-started/)
[@&#8203;mj12albert](https://togithub.com/mj12albert)

##### `@mui/[email protected]`

- ​<!-- 25 -->\[Checkbox]\[material] Add size classes
([#&#8203;38182](https://togithub.com/mui/material-ui/issues/38182))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- ​<!-- 03 -->\[Typography] Improve inherit variant logic
([#&#8203;38123](https://togithub.com/mui/material-ui/issues/38123))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

##### `@mui/[email protected]`

- ​<!-- 34 -->Revert "\[Box] Remove `component` from TypeMap
([#&#8203;38168](https://togithub.com/mui/material-ui/issues/38168))"
([#&#8203;38356](https://togithub.com/mui/material-ui/issues/38356))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/[email protected]`

##### Breaking changes

- ​<!-- 32 -->\[base] Ban default exports
([#&#8203;38200](https://togithub.com/mui/material-ui/issues/38200))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

Base UI default exports were changed to named ones. Previously we had a
mix of default and named ones.
This was changed to improve consistency and avoid problems some bundlers
have with default exports.

[https://github.com/mui/material-ui/issues/21862](https://togithub.com/mui/material-ui/issues/21862)es/21862
for more context.

    ```diff
    - import Button, { buttonClasses } from '@&#8203;mui/base/Button';
    + import { Button, buttonClasses } from '@&#8203;mui/base/Button';
    - import BaseMenu from '@&#8203;mui/base/Menu';
    + import { Menu as BaseMenu } from '@&#8203;mui/base/Menu';
    ```

Additionally, the `ClassNameGenerator` has been moved to the directory
matching its name:

    ```diff
    - import ClassNameGenerator from '@&#8203;mui/base/className';
+ import { ClassNameGenerator } from
'@&#8203;mui/base/ClassNameGenerator';
    ```

    A codemod is provided to help with the migration:

    ```bash
    npx @&#8203;mui/codemod v5.0.0/base-use-named-exports <path>
    ```

##### Changes

- ​<!-- 31 -->\[base] Create useNumberInput and NumberInput
([#&#8203;36119](https://togithub.com/mui/material-ui/issues/36119))
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- ​<!-- 28 -->\[Select]\[base] Fix flicker on click of controlled Select
button
([#&#8203;37855](https://togithub.com/mui/material-ui/issues/37855))
[@&#8203;VishruthR](https://togithub.com/VishruthR)
- ​<!-- 09 -->\[Dropdown] Fix imports of types
([#&#8203;38296](https://togithub.com/mui/material-ui/issues/38296))
[@&#8203;yash-thakur](https://togithub.com/yash-thakur)

##### `@mui/[email protected]`

- ​<!-- 06 -->\[joy-ui]\[MenuButton] Fix disable of `MenuButton`
([#&#8203;38342](https://togithub.com/mui/material-ui/issues/38342))
[@&#8203;sai6855](https://togithub.com/sai6855)

##### Docs

- ​<!-- 33 -->\[docs]\[AppBar] Fix `ResponsiveAppBar` demo logo href
([#&#8203;38346](https://togithub.com/mui/material-ui/issues/38346))
[@&#8203;iownthegame](https://togithub.com/iownthegame)

- ​<!-- 30 -->\[docs]\[base] Add Tailwind CSS + plain CSS demo on the
Button page
([#&#8203;38240](https://togithub.com/mui/material-ui/issues/38240))
[@&#8203;alisasanib](https://togithub.com/alisasanib)

- ​<!-- 29 -->\[docs]\[Menu]\[base] Remove `Unstyled` prefix from demos'
function names
([#&#8203;38270](https://togithub.com/mui/material-ui/issues/38270))
[@&#8203;sai6855](https://togithub.com/sai6855)

- ​<!-- 22 -->\[docs] Add themeable component guide
([#&#8203;37908](https://togithub.com/mui/material-ui/issues/37908))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)

- ​<!-- 21 -->\[docs] Fix Joy UI demo background color
([#&#8203;38307](https://togithub.com/mui/material-ui/issues/38307))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

- ​<!-- 20 -->\[docs] Update API docs for Number Input component
([#&#8203;38301](https://togithub.com/mui/material-ui/issues/38301))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

- ​<!-- 14 -->\[docs]\[joy-ui] Revise the theme typography page
([#&#8203;38285](https://togithub.com/mui/material-ui/issues/38285))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)

- ​<!-- 13 -->\[docs]\[joy-ui] Add TS demo for Menu Bar
([#&#8203;38308](https://togithub.com/mui/material-ui/issues/38308))
[@&#8203;sai6855](https://togithub.com/sai6855)

- ​<!-- 10 -->\[docs]\[joy-ui] Updated Typography callout at getting
started
([#&#8203;38289](https://togithub.com/mui/material-ui/issues/38289))
[@&#8203;zanivan](https://togithub.com/zanivan)

- ​<!-- 12 -->\[docs]\[joy-ui] Fix the Inter font installation
instructions
([#&#8203;38284](https://togithub.com/mui/material-ui/issues/38284))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)

- ​<!-- 11 -->\[docs]\[material] Add note to Autocomplete about ref
forwarding
([#&#8203;38305](https://togithub.com/mui/material-ui/issues/38305))
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)

- ​<!-- 05 -->\[docs]\[Skeleton] Make the demos feel more realistic
([#&#8203;38212](https://togithub.com/mui/material-ui/issues/38212))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

- ​<!-- 08 -->\[examples] Swap Next.js examples between App Router and
Pages Router; update naming convention
([#&#8203;38204](https://togithub.com/mui/material-ui/issues/38204))
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)

- ​<!-- 07 -->\[examples]\[material-ui] Add Material UI + Next.js (App
Router) example in JS
([#&#8203;38323](https://togithub.com/mui/material-ui/issues/38323))
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)

- ​<!-- 27 -->\[blog] Discord announcement blog
([#&#8203;38258](https://togithub.com/mui/material-ui/issues/38258))
[@&#8203;richbustos](https://togithub.com/richbustos)

- ​<!-- 26 -->\[blog] Fix 301 links to Toolpad
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

- ​<!-- 04 -->\[website] Updating Charts demo with real charts usage for
MUI X marketing page
([#&#8203;38317](https://togithub.com/mui/material-ui/issues/38317))
[@&#8203;richbustos](https://togithub.com/richbustos)

- ​<!-- 03 -->\[website] Adjust styles of the Product section on the
homepage
([#&#8203;38366](https://togithub.com/mui/material-ui/issues/38366))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)

- ​<!-- 02 -->\[website] Add Nora teamMember card to 'About'
([#&#8203;38358](https://togithub.com/mui/material-ui/issues/38358))
[@&#8203;noraleonte](https://togithub.com/noraleonte)

- ​<!-- 01 -->\[website] Fix image layout shift
([#&#8203;38326](https://togithub.com/mui/material-ui/issues/38326))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)

##### Core

- ​<!-- 24 -->\[core] Fix docs demo export function consistency
([#&#8203;38191](https://togithub.com/mui/material-ui/issues/38191))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 23 -->\[core] Fix the link-check script on Windows
([#&#8203;38276](https://togithub.com/mui/material-ui/issues/38276))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- ​<!-- 26 -->\[core] Use
[@&#8203;testing-library/user-event](https://togithub.com/testing-library/user-event)
direct API
([#&#8203;38325](https://togithub.com/mui/material-ui/issues/38325))
[@&#8203;mj12albert](https://togithub.com/mj12albert)
- ​<!-- 29 -->\[core] Port GitHub workflow for ensuring triage label is
present
([#&#8203;38312](https://togithub.com/mui/material-ui/issues/38312))
[@&#8203;DanailH](https://togithub.com/DanailH)
- ​<!-- 19 -->\[docs-infra] Consider files ending with .types.ts as
props files
([#&#8203;37533](https://togithub.com/mui/material-ui/issues/37533))
[@&#8203;mnajdova](https://togithub.com/mnajdova)
- ​<!-- 18 -->\[docs-infra] Fix skip to content design
([#&#8203;38304](https://togithub.com/mui/material-ui/issues/38304))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 17 -->\[docs-infra] Add a general round of polish to the API
content display
([#&#8203;38282](https://togithub.com/mui/material-ui/issues/38282))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 16 -->\[docs-infra] Make the side nav collapse animation
snappier
([#&#8203;38259](https://togithub.com/mui/material-ui/issues/38259))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 15 -->\[docs-infra] New Component API design followup
([#&#8203;38183](https://togithub.com/mui/material-ui/issues/38183))
[@&#8203;cherniavskii](https://togithub.com/cherniavskii)
- ​<!-- 06 -->\[test] Remove unnecessary `async` keyword from test
([#&#8203;38373](https://togithub.com/mui/material-ui/issues/38373))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

All contributors of this release in alphabetical order:
[@&#8203;alisasanib](https://togithub.com/alisasanib),
[@&#8203;cherniavskii](https://togithub.com/cherniavskii),
[@&#8203;DanailH](https://togithub.com/DanailH),
[@&#8203;danilo-leal](https://togithub.com/danilo-leal),
[@&#8203;iownthegame](https://togithub.com/iownthegame),
[@&#8203;michaldudak](https://togithub.com/michaldudak),
[@&#8203;mj12albert](https://togithub.com/mj12albert),
[@&#8203;mnajdova](https://togithub.com/mnajdova),
[@&#8203;noraleonte](https://togithub.com/noraleonte),
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari),
[@&#8203;richbustos](https://togithub.com/richbustos),
[@&#8203;sai6855](https://togithub.com/sai6855),
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore),
[@&#8203;siriwatknp](https://togithub.com/siriwatknp),
[@&#8203;VishruthR](https://togithub.com/VishruthR),
[@&#8203;yash-thakur](https://togithub.com/yash-thakur),
[@&#8203;zanivan](https://togithub.com/zanivan),
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)

###
[`v5.14.3`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5143)

[Compare
Source](https://togithub.com/mui/material-ui/compare/v5.14.2...v5.14.3)

<!-- generated comparing v5.14.2..master -->

*Jul 31, 2023*

A big thanks to the 17 contributors who made this release possible. Here
are some highlights ✨:

-   🚀 [Joy UI](https://mui.com/joy-ui/getting-started/) is now in Beta
- ✨ Refine [Joy UI](https://mui.com/joy-ui/getting-started/)'s default
theme [@&#8203;siriwatknp](https://togithub.com/siriwatknp)
[@&#8203;zanivan](https://togithub.com/zanivan)
- 🎉 Added Dropdown higher-level menu component [Base
UI](https://mui.com/base-ui/getting-started/)
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- 💫 Added Material You
[Badge](https://mui.com/material-ui/react-badge/#material-you-version)
to `material-next`
([#&#8203;37850](https://togithub.com/mui/material-ui/issues/37850))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)

##### `@mui/[email protected]`

- ​<!-- 36 -->\[Autocomplete]\[material]\[joy] Add default
`getOptionLabel` prop in ownerState
([#&#8203;38100](https://togithub.com/mui/material-ui/issues/38100))
[@&#8203;DSK9012](https://togithub.com/DSK9012)
- ​<!-- 26 -->\[Menu]\[Divider]\[material] Do not allow focus on Divider
when inside Menu list
([#&#8203;38102](https://togithub.com/mui/material-ui/issues/38102))
[@&#8203;divyammadhok](https://togithub.com/divyammadhok)
- ​<!-- 06 -->\[typescript]\[material] Rename one letter type parameters
([#&#8203;38155](https://togithub.com/mui/material-ui/issues/38155))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- ​<!-- 08 -->\[Menu]\[material] Fixes slots and slotProps overriding
defaults completely
([#&#8203;37902](https://togithub.com/mui/material-ui/issues/37902))
[@&#8203;gitstart](https://togithub.com/gitstart)
- ​<!-- 07 -->\[Theme]\[material] Add missing styleOverrides type for
theme MuiStack
([#&#8203;38189](https://togithub.com/mui/material-ui/issues/38189))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)
- ​<!-- 04 -->\[typescript]\[material] Add `component` field to `*Props`
types
([#&#8203;38084](https://togithub.com/mui/material-ui/issues/38084))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/[email protected]`

##### Breaking changes

- ​<!-- 11 -->\[Dropdown]\[base]\[joy] Introduce higher-level menu
component
([#&#8203;37667](https://togithub.com/mui/material-ui/issues/37667))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

##### Other changes

- ​<!-- 33 -->\[typescript]\[base] Rename one letter type parameters
([#&#8203;38171](https://togithub.com/mui/material-ui/issues/38171))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/[email protected]`

- ​<!-- 10 -->\[joy] Refine the default theme
([#&#8203;36843](https://togithub.com/mui/material-ui/issues/36843))
[@&#8203;siriwatknp](https://togithub.com/siriwatknp)

##### `@mui/[email protected]`

- ​<!-- 35 -->\[Badge]\[material-next] Add Badge component
([#&#8203;37850](https://togithub.com/mui/material-ui/issues/37850))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)
- ​<!-- 30 -->\[Chip]\[material-next] Copy chip component from material
([#&#8203;38053](https://togithub.com/mui/material-ui/issues/38053))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)
- ​<!-- 09 -->\[typescript]\[material-next] Rename one letter type
parameters
([#&#8203;38172](https://togithub.com/mui/material-ui/issues/38172))
[@&#8203;michaldudak](https://togithub.com/michaldudak)

##### `@mui/[email protected]`

- ​<!-- 32 -->\[Box]\[system] Remove `component` from TypeMap
([#&#8203;38168](https://togithub.com/mui/material-ui/issues/38168))
[@&#8203;michaldudak](https://togithub.com/michaldudak)
- ​<!-- 05 -->\[Stack]\[system] Fix CSS selector
([#&#8203;37525](https://togithub.com/mui/material-ui/issues/37525))
[@&#8203;sai6855](https://togithub.com/sai6855)

##### Docs

- ​<!-- 49 -->\[docs] Update Joy UI's package README
([#&#8203;38262](https://togithub.com/mui/material-ui/issues/38262))
[@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)
- ​<!-- 48 -->\[docs]\[base-ui] Add new batch of coming soon pages
([#&#8203;38025](https://togithub.com/mui/material-ui/issues/38025))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 44 -->\[docs] fix links to standardized examples
([#&#8203;38193](https://togithub.com/mui/material-ui/issues/38193))
[@&#8203;emmanuel-ferdman](https://togithub.com/emmanuel-ferdman)
- ​<!-- 43 -->\[docs-infra] Small design polish to the Diamond Sponsor
container
([#&#8203;38257](https://togithub.com/mui/material-ui/issues/38257))
[@&#8203;danilo-leal](https://togithub.com/danilo-leal)
- ​<!-- 42 -->\[docs-infra] Show props in the table of content
([#&#8203;38173](https://togithub.com/mui/material-ui/issues/38173))
[@&#8203;alexfauquette](https://togithub.com/alexfauquette)
- ​<!-- 41 -->\[docs-infra] Polish API page design
([#&#8203;38196](https://togithub.com/mui/material-ui/issues/38196))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 40 -->\[docs-infra] Search with productCategory when product is
missing
([#&#8203;38239](https://togithub.com/mui/material-ui/issues/38239))
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari)
- ​<!-- 39 -->\[docs]\[material] Revise and update Examples doc
([#&#8203;38205](https://togithub.com/mui/material-ui/issues/38205))
[@&#8203;samuelsycamore](https://togithub.com/samuelsycamore)
- ​<!-- 38 -->\[docs] Fix typo in notifications.json
[@&#8203;mbrookes](https://togithub.com/mbrookes)
- ​<!-- 37 -->\[docs-infra] Remove leftover standardNavIcon
([#&#8203;38252](https://togithub.com/mui/material-ui/issues/38252))
[@&#8203;DiegoAndai](https://togithub.com/DiegoAndai)
- ​<!-- 34 -->\[docs]\[base] Add Tailwind CSS & plain CSS demos on the
Popper page
([#&#8203;37953](https://togithub.com/mui/material-ui/issues/37953))
[@&#8203;zanivan](https://togithub.com/zanivan)
- ​<!-- 31 -->\[docs]\[Button]\[joy] Improve `loading` prop
documentation
([#&#8203;38156](https://togithub.com/mui/material-ui/issues/38156))
[@&#8203;sai6855](https://togithub.com/sai6855)
- ​<!-- 25 -->\[docs] Prepare docs infra for Tree View migration to X
([#&#8203;38202](https://togithub.com/mui/material-ui/issues/38202))
[@&#8203;flaviendelangle](https://togithub.com/flaviendelangle)
- ​<!-- 24 -->\[docs] Fix SEO issues reported by ahrefs
[@&#8203;oliviertassinari](https://togithub.com/oliviertassinari

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 3am on Saturday" (UTC),
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/rparini/cxroots-app).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuNjguMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Robert Parini <[email protected]>
@DiegoAndai
Copy link
Member

DiegoAndai commented Feb 26, 2024

The current plan to deal with this is:

  1. Add missing named exports
  2. Update the docs to replace all default exports with named imports
  3. Deprecate the default exports providing codemods
  4. When people have had enough time to migrate, remove default exports (e.g. Material UI v7, v8?)

Whoever starts to work on this, please create separate issues for each step.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
discussion RFC Request For Comments v6.x
Projects
Status: Backlog
Development

No branches or pull requests