@mui/lab 6.0.0-beta.31 → 6.0.0-beta.32

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,36 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 6.4.9
4
+
5
+ <!-- generated comparing v6.4.8..v6.x -->
6
+
7
+ _Mar 25, 2025_
8
+
9
+ A big thanks to the 7 contributors who made this release possible.
10
+
11
+ ### `@mui/material@6.4.9`
12
+
13
+ - [Autocomplete] Fix when `onHighlightChange` is called (@ZeeshanTamboli) (#45635) @ZeeshanTamboli
14
+ - [StepLabel] Add missing root slot (#45607) @sai6855
15
+ - [Switch] Add slots and slotProps (#45628) @siriwatknp
16
+ - [TextField] Add `root` slot (#45616) @sai6855
17
+ - [Tabs] Fix modifier keys + Left/Right Arrow key from being consumed by tab navigation (#45620) @mushfiqbh
18
+
19
+ ### `@mui/codemon@6.4.9`
20
+
21
+ - Add missing deprecations in deprecations-all file (#45508) @sai6855
22
+
23
+ ### Docs
24
+
25
+ - [docs] Fix grammatical errors in support.md (#45636) @letianpailove
26
+ - [docs] Restore utility component docs from MUI Base to Material UI (#45240) @mapache-salvaje
27
+
28
+ ### Core
29
+
30
+ - [core] Prepare v6 branch for v7 stable release (#45668) @DiegoAndai
31
+
32
+ All contributors of this release in alphabetical order: @DiegoAndai, @letianpailove, @mapache-salvaje, @mushfiqbh, @sai6855, @siriwatknp, @ZeeshanTamboli
33
+
3
34
  ## 6.4.8
4
35
 
5
36
  <!-- generated comparing v6.4.7..v6.x -->
@@ -56,11 +56,11 @@ export interface MasonryTypeMap<
56
56
  *
57
57
  * Demos:
58
58
  *
59
- * - [Masonry](https://mui.com/material-ui/react-masonry/)
59
+ * - [Masonry](https://v6.mui.com/material-ui/react-masonry/)
60
60
  *
61
61
  * API:
62
62
  *
63
- * - [Masonry API](https://mui.com/material-ui/api/masonry/)
63
+ * - [Masonry API](https://v6.mui.com/material-ui/api/masonry/)
64
64
  */
65
65
  declare const Masonry: OverridableComponent<MasonryTypeMap>;
66
66
 
package/README.md CHANGED
@@ -6,23 +6,25 @@ This package hosts the incubator components that are not yet ready to move to `c
6
6
 
7
7
  Install the package in your project directory with:
8
8
 
9
- <!-- #default-branch-switch -->
9
+ <!-- #npm-tag-reference -->
10
10
 
11
11
  ```bash
12
- npm install @mui/lab
12
+ npm install @mui/lab@^6.0.0
13
13
  ```
14
14
 
15
15
  The lab has peer dependencies on the Material Design components and on the Emotion library.
16
16
  If you are not already using them in your project, you can install with:
17
17
 
18
- <!-- #default-branch-switch -->
18
+ <!-- #npm-tag-reference -->
19
19
 
20
20
  ```bash
21
- npm install @mui/material @emotion/react @emotion/styled
21
+ npm install @mui/material@^6.0.0 @emotion/react @emotion/styled
22
22
  ```
23
23
 
24
+ If you wish to use the latest version, remove the `@^6.0.0` suffix.
25
+
24
26
  ## Documentation
25
27
 
26
- <!-- #default-branch-switch -->
28
+ <!-- #host-reference -->
27
29
 
28
- Visit [https://mui.com/material-ui/about-the-lab/](https://mui.com/material-ui/about-the-lab/) to view the full documentation.
30
+ Visit [https://v6.mui.com/material-ui/about-the-lab/](https://v6.mui.com/material-ui/about-the-lab/) to view the full documentation.
@@ -19,11 +19,11 @@ export interface TabContextProps {
19
19
  *
20
20
  * Demos:
21
21
  *
22
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
22
+ * - [Tabs](https://v6.mui.com/material-ui/react-tabs/)
23
23
  *
24
24
  * API:
25
25
  *
26
- * - [TabContext API](https://mui.com/material-ui/api/tab-context/)
26
+ * - [TabContext API](https://v6.mui.com/material-ui/api/tab-context/)
27
27
  */
28
28
  export default function TabContext(props: TabContextProps): React.JSX.Element;
29
29
  export function useTabContext(): TabContextValue | null;
@@ -22,12 +22,12 @@ export interface TabListTypeMap<
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
25
+ * - [Tabs](https://v6.mui.com/material-ui/react-tabs/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TabList API](https://mui.com/material-ui/api/tab-list/)
30
- * - inherits [Tabs API](https://mui.com/material-ui/api/tabs/)
29
+ * - [TabList API](https://v6.mui.com/material-ui/api/tab-list/)
30
+ * - inherits [Tabs API](https://v6.mui.com/material-ui/api/tabs/)
31
31
  */
32
32
  declare const TabList: OverridableComponent<TabListTypeMap>;
33
33
 
@@ -33,10 +33,10 @@ export interface TabPanelProps extends StandardProps<React.HTMLAttributes<HTMLDi
33
33
  *
34
34
  * Demos:
35
35
  *
36
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
36
+ * - [Tabs](https://v6.mui.com/material-ui/react-tabs/)
37
37
  *
38
38
  * API:
39
39
  *
40
- * - [TabPanel API](https://mui.com/material-ui/api/tab-panel/)
40
+ * - [TabPanel API](https://v6.mui.com/material-ui/api/tab-panel/)
41
41
  */
42
42
  export default function TabPanel(props: TabPanelProps): React.JSX.Element;
@@ -4,11 +4,11 @@ import { TimelineProps } from './Timeline.types';
4
4
  *
5
5
  * Demos:
6
6
  *
7
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
7
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
8
8
  *
9
9
  * API:
10
10
  *
11
- * - [Timeline API](https://mui.com/material-ui/api/timeline/)
11
+ * - [Timeline API](https://v6.mui.com/material-ui/api/timeline/)
12
12
  */
13
13
  declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
14
14
  /**
@@ -39,11 +39,11 @@ const TimelineRoot = styled('ul', {
39
39
  *
40
40
  * Demos:
41
41
  *
42
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
42
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
43
43
  *
44
44
  * API:
45
45
  *
46
- * - [Timeline API](https://mui.com/material-ui/api/timeline/)
46
+ * - [Timeline API](https://v6.mui.com/material-ui/api/timeline/)
47
47
  */
48
48
  const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
49
49
  const props = useThemeProps({
@@ -24,10 +24,10 @@ export interface TimelineConnectorProps
24
24
  *
25
25
  * Demos:
26
26
  *
27
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
27
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
28
28
  *
29
29
  * API:
30
30
  *
31
- * - [TimelineConnector API](https://mui.com/material-ui/api/timeline-connector/)
31
+ * - [TimelineConnector API](https://v6.mui.com/material-ui/api/timeline-connector/)
32
32
  */
33
33
  export default function TimelineConnector(props: TimelineConnectorProps): React.JSX.Element;
@@ -23,11 +23,11 @@ export interface TimelineContentProps extends StandardProps<TypographyProps> {
23
23
  *
24
24
  * Demos:
25
25
  *
26
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
27
27
  *
28
28
  * API:
29
29
  *
30
- * - [TimelineContent API](https://mui.com/material-ui/api/timeline-content/)
31
- * - inherits [Typography API](https://mui.com/material-ui/api/typography/)
30
+ * - [TimelineContent API](https://v6.mui.com/material-ui/api/timeline-content/)
31
+ * - inherits [Typography API](https://v6.mui.com/material-ui/api/typography/)
32
32
  */
33
33
  export default function TimelineContent(props: TimelineContentProps): React.JSX.Element;
@@ -41,10 +41,10 @@ export interface TimelineDotProps extends StandardProps<React.HTMLAttributes<HTM
41
41
  *
42
42
  * Demos:
43
43
  *
44
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
44
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
45
45
  *
46
46
  * API:
47
47
  *
48
- * - [TimelineDot API](https://mui.com/material-ui/api/timeline-dot/)
48
+ * - [TimelineDot API](https://v6.mui.com/material-ui/api/timeline-dot/)
49
49
  */
50
50
  export default function TimelineDot(props: TimelineDotProps): React.JSX.Element;
@@ -27,10 +27,10 @@ export interface TimelineItemProps extends StandardProps<React.HTMLAttributes<HT
27
27
  *
28
28
  * Demos:
29
29
  *
30
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
30
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
31
31
  *
32
32
  * API:
33
33
  *
34
- * - [TimelineItem API](https://mui.com/material-ui/api/timeline-item/)
34
+ * - [TimelineItem API](https://v6.mui.com/material-ui/api/timeline-item/)
35
35
  */
36
36
  export default function TimelineItem(props: TimelineItemProps): React.JSX.Element;
@@ -23,12 +23,12 @@ export interface TimelineOppositeContentProps extends StandardProps<TypographyPr
23
23
  *
24
24
  * Demos:
25
25
  *
26
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
27
27
  *
28
28
  * API:
29
29
  *
30
- * - [TimelineOppositeContent API](https://mui.com/material-ui/api/timeline-opposite-content/)
31
- * - inherits [Typography API](https://mui.com/material-ui/api/typography/)
30
+ * - [TimelineOppositeContent API](https://v6.mui.com/material-ui/api/timeline-opposite-content/)
31
+ * - inherits [Typography API](https://v6.mui.com/material-ui/api/typography/)
32
32
  */
33
33
  declare const TimelineOppositeContent: ((
34
34
  props: TimelineOppositeContentProps,
@@ -24,10 +24,10 @@ export interface TimelineSeparatorProps
24
24
  *
25
25
  * Demos:
26
26
  *
27
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
27
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
28
28
  *
29
29
  * API:
30
30
  *
31
- * - [TimelineSeparator API](https://mui.com/material-ui/api/timeline-separator/)
31
+ * - [TimelineSeparator API](https://v6.mui.com/material-ui/api/timeline-separator/)
32
32
  */
33
33
  export default function TimelineSeparator(props: TimelineSeparatorProps): React.JSX.Element;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/lab v6.0.0-beta.31
2
+ * @mui/lab v6.0.0-beta.32
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -39,11 +39,11 @@ const TimelineRoot = styled('ul', {
39
39
  *
40
40
  * Demos:
41
41
  *
42
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
42
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
43
43
  *
44
44
  * API:
45
45
  *
46
- * - [Timeline API](https://mui.com/material-ui/api/timeline/)
46
+ * - [Timeline API](https://v6.mui.com/material-ui/api/timeline/)
47
47
  */
48
48
  const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
49
49
  const props = useThemeProps({
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/lab v6.0.0-beta.31
2
+ * @mui/lab v6.0.0-beta.32
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -46,11 +46,11 @@ const TimelineRoot = (0, _styles.styled)('ul', {
46
46
  *
47
47
  * Demos:
48
48
  *
49
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
49
+ * - [Timeline](https://v6.mui.com/material-ui/react-timeline/)
50
50
  *
51
51
  * API:
52
52
  *
53
- * - [Timeline API](https://mui.com/material-ui/api/timeline/)
53
+ * - [Timeline API](https://v6.mui.com/material-ui/api/timeline/)
54
54
  */
55
55
  const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
56
56
  const props = (0, _styles.useThemeProps)({
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/lab v6.0.0-beta.31
2
+ * @mui/lab v6.0.0-beta.32
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/lab",
3
- "version": "6.0.0-beta.31",
3
+ "version": "6.0.0-beta.32",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Laboratory for new MUI modules.",
@@ -31,10 +31,10 @@
31
31
  "@babel/runtime": "^7.26.0",
32
32
  "clsx": "^2.1.1",
33
33
  "prop-types": "^15.8.1",
34
- "@mui/base": "5.0.0-beta.70",
35
- "@mui/system": "^6.4.8",
34
+ "@mui/system": "^6.4.9",
35
+ "@mui/types": "~7.2.24",
36
36
  "@mui/utils": "^6.4.8",
37
- "@mui/types": "~7.2.24"
37
+ "@mui/base": "5.0.0-beta.70"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@emotion/react": "^11.5.0",
@@ -42,8 +42,8 @@
42
42
  "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
43
43
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
44
44
  "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
45
- "@mui/material-pigment-css": "^6.4.8",
46
- "@mui/material": "^6.4.8"
45
+ "@mui/material-pigment-css": "^6.4.9",
46
+ "@mui/material": "^6.4.9"
47
47
  },
48
48
  "peerDependenciesMeta": {
49
49
  "@types/react": {