@mui/docs 6.4.1 → 6.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 6.4.2
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v6.4.1..v6.x -->
|
|
6
|
+
|
|
7
|
+
_Jan 29, 2025_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 5 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@6.4.2`
|
|
12
|
+
|
|
13
|
+
- [Autocomplete] Prevent shrink animation in uncontrolled Autocomplete when default value is set (#44873) @ZeeshanTamboli
|
|
14
|
+
- [Slider] Fix arrow keys past the end for Slider with custom marks (#45050) @joshkel
|
|
15
|
+
- [TextareaAutosize] Temporarily disconnect ResizeObserver to avoid loop error (#44540) @mj12albert
|
|
16
|
+
|
|
17
|
+
### Core
|
|
18
|
+
|
|
19
|
+
- [code-infra] a few fixes uncovered during ESM updates (@Janpot) (#45100) @Janpot
|
|
20
|
+
- [code-infra] Remove rsc-builder (#45079) @Janpot
|
|
21
|
+
- [code-infra] Remove commonjs imports in docs (#44976) @Janpot
|
|
22
|
+
- Prepare stable release from the `v6.x` branch (#45133) @DiegoAndai
|
|
23
|
+
|
|
24
|
+
### Docs
|
|
25
|
+
|
|
26
|
+
- Fix `/base-ui` redirect and prune links (#45083) @mj12albert
|
|
27
|
+
|
|
28
|
+
All contributors of this release in alphabetical order: @DiegoAndai, @Janpot, @joshkel, @mj12albert, @ZeeshanTamboli
|
|
29
|
+
|
|
3
30
|
## 6.4.1
|
|
4
31
|
|
|
5
32
|
<!-- generated comparing v6.4.0..master -->
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export declare const CodeTabList: import("@
|
|
2
|
+
export declare const CodeTabList: import("@emotion/styled").StyledComponent<import("@mui/base/TabsList").TabsListOwnProps & Omit<any, keyof import("@mui/base/TabsList").TabsListOwnProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
3
3
|
ownerState: {
|
|
4
4
|
mounted: boolean;
|
|
5
5
|
contained?: boolean;
|
|
6
6
|
};
|
|
7
7
|
}, {}, {}>;
|
|
8
|
-
export declare const CodeTabPanel: import("@
|
|
8
|
+
export declare const CodeTabPanel: import("@emotion/styled").StyledComponent<import("@mui/base/TabPanel").TabPanelOwnProps & Omit<any, keyof import("@mui/base/TabPanel").TabPanelOwnProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
9
9
|
ownerState: {
|
|
10
10
|
mounted: boolean;
|
|
11
11
|
contained?: boolean;
|
|
12
12
|
};
|
|
13
13
|
}, {}, {}>;
|
|
14
|
-
export declare const CodeTab: import("@
|
|
14
|
+
export declare const CodeTab: import("@emotion/styled").StyledComponent<import("@mui/base/Tab").TabOwnProps & Omit<any, keyof import("@mui/base/Tab").TabOwnProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
15
15
|
ownerState: {
|
|
16
16
|
mounted: boolean;
|
|
17
17
|
contained?: boolean;
|