@mui/lab 7.0.1-beta.23 → 7.0.1-beta.25

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,87 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 7.3.11
4
+
5
+ <!-- generated comparing v7.3.10..v7.x -->
6
+
7
+ _May 6, 2026_
8
+
9
+ A big thanks to the 5 contributors who made this release possible.
10
+
11
+ ### `@mui/material@7.3.11`
12
+
13
+ - [autocomplete] Fix highlight sync and scroll preservation (#48350) @mj12albert
14
+ - [autocomplete] Fix popper rendering issues (#48343) @mj12albert
15
+ - [autocomplete] Improve highlight tracking and selection state (#48318) @mj12albert
16
+ - [button] Fix `startIcon` alignment (#48339) @mj12albert
17
+ - [button] Remove duplicated className entries (#48284) @silviuaavram
18
+ - [checkbox] Set `aria-checked=mixed` when indeterminate (#48286) @mj12albert
19
+ - [dialog][drawer][focus trap] Fix initial focus target (#48324) @mj12albert
20
+ - [drawer] Fix transition jump (#48340) @mj12albert
21
+ - [input] Fix layout shift with display: flex (#48359) @oliviertassinari
22
+ - [inputs] Fix autofocus in SSR environment (#48307) @mj12albert
23
+ - [popper] Persist positioning styles when popperOptions changes reference (#48302) @mj12albert
24
+ - [switch] Fix incorrect `role` with `slotProps.input` (#48472) @mj12albert
25
+ - [utils] Add shadow dom utils (#48309) @mj12albert
26
+
27
+ ### Docs
28
+
29
+ - [docs] Update banner to announce v9 (#48299) @siriwatknp
30
+ - [docs] Add v9 in the versions select in v7.mui.com (#48233) @alexfauquette
31
+
32
+ ### Core
33
+
34
+ - [internal] Update some host-reference entries (#48225) @silviuaavram
35
+
36
+ All contributors of this release in alphabetical order: @alexfauquette, @mj12albert, @oliviertassinari, @silviuaavram, @siriwatknp
37
+
38
+ ## 7.3.10
39
+
40
+ <!-- generated comparing v7.3.9..v7.x -->
41
+
42
+ _Apr 8, 2026_
43
+
44
+ A big thanks to the 15 contributors who made this release possible. A few highlights ✨:
45
+
46
+ - 📖 Added the Menubar component page to the docs.
47
+
48
+ ### `@mui/material@7.3.10`
49
+
50
+ - [alert][dialog] Accessibility improvements (#48161) @silviuaavram
51
+ - [autocomplete] Add `root` slot (#47916) @GerardasB
52
+ - [autocomplete] Fix helper text focusing input when clicked (#48162) @mj12albert
53
+ - [autocomplete] Fix popup reopening on window focus regain with openOnFocus (#47914) @aman44444
54
+ - [autocomplete] Optimize selected option lookup (#48027) @anchmelev
55
+ - [autocomplete] Support full slots for clearIndicator and popupIndicator (#47913) @silviuaavram
56
+ - [button-base] Fix native button detection (#47994) @mj12albert
57
+ - [input] Fix high contrast cutoff on first character (#48160) @silviuaavram
58
+ - [list item text][card header] Revert cleanup of duplicated CSS rules (#47938) @sai6855
59
+ - [popper] Add missing classes export (#48033) @mj12albert
60
+ - [select] Fix focus visible always set on menu item (#48022) @silviuaavram
61
+ - [slider] Accept readonly array for the value prop (#47961) @pcorpet
62
+ - [switch] Add border to make it visible in high contrast mode (#48210) @silviuaavram
63
+ - [theme] Do not create channel tokens for custom colors when `nativeColor` is used (#48144) @ZeeshanTamboli
64
+ - [transitions] Performance improvements & misc fixes (#48217) @mj12albert
65
+
66
+ ### Docs
67
+
68
+ - [codemod] Add v7 migration docs for deprecated Autocomplete APIs and Autocomplete codemod (#47954) @ZeeshanTamboli
69
+ - [menubar] Add Menubar component page (#47942) @siriwatknp
70
+ - [progress] Label all demo components (#48168) @mj12albert
71
+ - [system] Update `styled` API docs for easier understanding (#47969) @olivier-lxo
72
+ - Fix the dark mode footer row shadow for the Data Grid on the advanced components page (#48152) @arminmeh
73
+ - Fix MUI X redirects (#47917) @cherniavskii
74
+ - Use direct palette vars in Tailwind v4 snippet (#47955) @Ahmad-Alaziz
75
+
76
+ ### Core
77
+
78
+ - [blog] Blogpost for upcoming price changes for MUI X (#47820) @DanailH
79
+ - [blog] Update the 2026 price changes blogpost (#47944) @DanailH
80
+ - [code-infra] Add pkg-pr-new as dev dependency (#48023) @silviuaavram
81
+ - [docs-infra] Update Release Instructions and Search Index v7 (#48109) @dav-is
82
+
83
+ All contributors of this release in alphabetical order: @Ahmad-Alaziz, @aman44444, @anchmelev, @arminmeh, @cherniavskii, @DanailH, @dav-is, @GerardasB, @mj12albert, @olivier-lxo, @pcorpet, @sai6855, @silviuaavram, @siriwatknp, @ZeeshanTamboli
84
+
3
85
  ## 7.3.9
4
86
 
5
87
  <!-- generated comparing v7.3.8..v7.x -->
@@ -51,11 +51,11 @@ export interface MasonryTypeMap<AdditionalProps = {}, RootComponent extends Reac
51
51
  *
52
52
  * Demos:
53
53
  *
54
- * - [Masonry](https://mui.com/material-ui/react-masonry/)
54
+ * - [Masonry](https://v7.mui.com/material-ui/react-masonry/)
55
55
  *
56
56
  * API:
57
57
  *
58
- * - [Masonry API](https://mui.com/material-ui/api/masonry/)
58
+ * - [Masonry API](https://v7.mui.com/material-ui/api/masonry/)
59
59
  */
60
60
  declare const Masonry: OverridableComponent<MasonryTypeMap>;
61
61
  export type MasonryProps<RootComponent extends React.ElementType = MasonryTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<MasonryTypeMap<AdditionalProps, RootComponent>, RootComponent>;
package/README.md CHANGED
@@ -9,7 +9,7 @@ Install the package in your project directory with:
9
9
  <!-- #npm-tag-reference -->
10
10
 
11
11
  ```bash
12
- npm install @mui/lab
12
+ npm install @mui/lab@^7.0.0-beta
13
13
  ```
14
14
 
15
15
  The lab has peer dependencies on the Material Design components and on the Emotion library.
@@ -18,11 +18,11 @@ If you are not already using them in your project, you can install with:
18
18
  <!-- #npm-tag-reference -->
19
19
 
20
20
  ```bash
21
- npm install @mui/material @emotion/react @emotion/styled
21
+ npm install @mui/material@^7.0.0 @emotion/react @emotion/styled
22
22
  ```
23
23
 
24
24
  ## Documentation
25
25
 
26
26
  <!-- #host-reference -->
27
27
 
28
- Visit [https://mui.com/material-ui/about-the-lab/](https://mui.com/material-ui/about-the-lab/) to view the full documentation.
28
+ Visit [https://v7.mui.com/material-ui/about-the-lab/](https://v7.mui.com/material-ui/about-the-lab/) to view the full documentation.
@@ -17,11 +17,11 @@ export interface TabContextProps {
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://v7.mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabContext API](https://mui.com/material-ui/api/tab-context/)
24
+ * - [TabContext API](https://v7.mui.com/material-ui/api/tab-context/)
25
25
  */
26
26
  export default function TabContext(props: TabContextProps): React.JSX.Element;
27
27
  export function useTabContext(): TabContextValue | null;
@@ -17,12 +17,12 @@ export interface TabListTypeMap<AdditionalProps = {}, RootComponent extends Reac
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://v7.mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabList API](https://mui.com/material-ui/api/tab-list/)
25
- * - inherits [Tabs API](https://mui.com/material-ui/api/tabs/)
24
+ * - [TabList API](https://v7.mui.com/material-ui/api/tab-list/)
25
+ * - inherits [Tabs API](https://v7.mui.com/material-ui/api/tabs/)
26
26
  */
27
27
  declare const TabList: OverridableComponent<TabListTypeMap>;
28
28
  export type TabListClassKey = keyof NonNullable<TabListTypeMap['props']['classes']>;
@@ -32,10 +32,10 @@ export interface TabPanelProps extends StandardProps<React.HTMLAttributes<HTMLDi
32
32
  *
33
33
  * Demos:
34
34
  *
35
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
35
+ * - [Tabs](https://v7.mui.com/material-ui/react-tabs/)
36
36
  *
37
37
  * API:
38
38
  *
39
- * - [TabPanel API](https://mui.com/material-ui/api/tab-panel/)
39
+ * - [TabPanel API](https://v7.mui.com/material-ui/api/tab-panel/)
40
40
  */
41
41
  export default function TabPanel(props: TabPanelProps): React.JSX.Element;
@@ -4,11 +4,11 @@ import { TimelineProps } from "./Timeline.types.js";
4
4
  *
5
5
  * Demos:
6
6
  *
7
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
7
+ * - [Timeline](https://v7.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://v7.mui.com/material-ui/api/timeline/)
12
12
  */
13
13
  declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
14
14
  /**
@@ -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://v7.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://v7.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)({
@@ -22,10 +22,10 @@ export interface TimelineConnectorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://v7.mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineConnector API](https://mui.com/material-ui/api/timeline-connector/)
29
+ * - [TimelineConnector API](https://v7.mui.com/material-ui/api/timeline-connector/)
30
30
  */
31
31
  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://v7.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://v7.mui.com/material-ui/api/timeline-content/)
31
+ * - inherits [Typography API](https://v7.mui.com/material-ui/api/typography/)
32
32
  */
33
33
  export default function TimelineContent(props: TimelineContentProps): React.JSX.Element;
@@ -35,10 +35,10 @@ export interface TimelineDotProps extends StandardProps<React.HTMLAttributes<HTM
35
35
  *
36
36
  * Demos:
37
37
  *
38
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
38
+ * - [Timeline](https://v7.mui.com/material-ui/react-timeline/)
39
39
  *
40
40
  * API:
41
41
  *
42
- * - [TimelineDot API](https://mui.com/material-ui/api/timeline-dot/)
42
+ * - [TimelineDot API](https://v7.mui.com/material-ui/api/timeline-dot/)
43
43
  */
44
44
  export default function TimelineDot(props: TimelineDotProps): React.JSX.Element;
@@ -26,10 +26,10 @@ export interface TimelineItemProps extends StandardProps<React.HTMLAttributes<HT
26
26
  *
27
27
  * Demos:
28
28
  *
29
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
29
+ * - [Timeline](https://v7.mui.com/material-ui/react-timeline/)
30
30
  *
31
31
  * API:
32
32
  *
33
- * - [TimelineItem API](https://mui.com/material-ui/api/timeline-item/)
33
+ * - [TimelineItem API](https://v7.mui.com/material-ui/api/timeline-item/)
34
34
  */
35
35
  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://v7.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://v7.mui.com/material-ui/api/timeline-opposite-content/)
31
+ * - inherits [Typography API](https://v7.mui.com/material-ui/api/typography/)
32
32
  */
33
33
  declare const TimelineOppositeContent: ((props: TimelineOppositeContentProps) => React.JSX.Element) & {
34
34
  muiName: string;
@@ -22,10 +22,10 @@ export interface TimelineSeparatorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://v7.mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineSeparator API](https://mui.com/material-ui/api/timeline-separator/)
29
+ * - [TimelineSeparator API](https://v7.mui.com/material-ui/api/timeline-separator/)
30
30
  */
31
31
  export default function TimelineSeparator(props: TimelineSeparatorProps): React.JSX.Element;
@@ -51,11 +51,11 @@ export interface MasonryTypeMap<AdditionalProps = {}, RootComponent extends Reac
51
51
  *
52
52
  * Demos:
53
53
  *
54
- * - [Masonry](https://mui.com/material-ui/react-masonry/)
54
+ * - [Masonry](https://v7.mui.com/material-ui/react-masonry/)
55
55
  *
56
56
  * API:
57
57
  *
58
- * - [Masonry API](https://mui.com/material-ui/api/masonry/)
58
+ * - [Masonry API](https://v7.mui.com/material-ui/api/masonry/)
59
59
  */
60
60
  declare const Masonry: OverridableComponent<MasonryTypeMap>;
61
61
  export type MasonryProps<RootComponent extends React.ElementType = MasonryTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<MasonryTypeMap<AdditionalProps, RootComponent>, RootComponent>;
@@ -17,11 +17,11 @@ export interface TabContextProps {
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://v7.mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabContext API](https://mui.com/material-ui/api/tab-context/)
24
+ * - [TabContext API](https://v7.mui.com/material-ui/api/tab-context/)
25
25
  */
26
26
  export default function TabContext(props: TabContextProps): React.JSX.Element;
27
27
  export function useTabContext(): TabContextValue | null;
@@ -17,12 +17,12 @@ export interface TabListTypeMap<AdditionalProps = {}, RootComponent extends Reac
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://v7.mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabList API](https://mui.com/material-ui/api/tab-list/)
25
- * - inherits [Tabs API](https://mui.com/material-ui/api/tabs/)
24
+ * - [TabList API](https://v7.mui.com/material-ui/api/tab-list/)
25
+ * - inherits [Tabs API](https://v7.mui.com/material-ui/api/tabs/)
26
26
  */
27
27
  declare const TabList: OverridableComponent<TabListTypeMap>;
28
28
  export type TabListClassKey = keyof NonNullable<TabListTypeMap['props']['classes']>;
@@ -32,10 +32,10 @@ export interface TabPanelProps extends StandardProps<React.HTMLAttributes<HTMLDi
32
32
  *
33
33
  * Demos:
34
34
  *
35
- * - [Tabs](https://mui.com/material-ui/react-tabs/)
35
+ * - [Tabs](https://v7.mui.com/material-ui/react-tabs/)
36
36
  *
37
37
  * API:
38
38
  *
39
- * - [TabPanel API](https://mui.com/material-ui/api/tab-panel/)
39
+ * - [TabPanel API](https://v7.mui.com/material-ui/api/tab-panel/)
40
40
  */
41
41
  export default function TabPanel(props: TabPanelProps): React.JSX.Element;
@@ -4,11 +4,11 @@ import { TimelineProps } from "./Timeline.types.js";
4
4
  *
5
5
  * Demos:
6
6
  *
7
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
7
+ * - [Timeline](https://v7.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://v7.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://v7.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://v7.mui.com/material-ui/api/timeline/)
47
47
  */
48
48
  const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
49
49
  const props = useThemeProps({
@@ -22,10 +22,10 @@ export interface TimelineConnectorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://v7.mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineConnector API](https://mui.com/material-ui/api/timeline-connector/)
29
+ * - [TimelineConnector API](https://v7.mui.com/material-ui/api/timeline-connector/)
30
30
  */
31
31
  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://v7.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://v7.mui.com/material-ui/api/timeline-content/)
31
+ * - inherits [Typography API](https://v7.mui.com/material-ui/api/typography/)
32
32
  */
33
33
  export default function TimelineContent(props: TimelineContentProps): React.JSX.Element;
@@ -35,10 +35,10 @@ export interface TimelineDotProps extends StandardProps<React.HTMLAttributes<HTM
35
35
  *
36
36
  * Demos:
37
37
  *
38
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
38
+ * - [Timeline](https://v7.mui.com/material-ui/react-timeline/)
39
39
  *
40
40
  * API:
41
41
  *
42
- * - [TimelineDot API](https://mui.com/material-ui/api/timeline-dot/)
42
+ * - [TimelineDot API](https://v7.mui.com/material-ui/api/timeline-dot/)
43
43
  */
44
44
  export default function TimelineDot(props: TimelineDotProps): React.JSX.Element;
@@ -26,10 +26,10 @@ export interface TimelineItemProps extends StandardProps<React.HTMLAttributes<HT
26
26
  *
27
27
  * Demos:
28
28
  *
29
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
29
+ * - [Timeline](https://v7.mui.com/material-ui/react-timeline/)
30
30
  *
31
31
  * API:
32
32
  *
33
- * - [TimelineItem API](https://mui.com/material-ui/api/timeline-item/)
33
+ * - [TimelineItem API](https://v7.mui.com/material-ui/api/timeline-item/)
34
34
  */
35
35
  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://v7.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://v7.mui.com/material-ui/api/timeline-opposite-content/)
31
+ * - inherits [Typography API](https://v7.mui.com/material-ui/api/typography/)
32
32
  */
33
33
  declare const TimelineOppositeContent: ((props: TimelineOppositeContentProps) => React.JSX.Element) & {
34
34
  muiName: string;
@@ -22,10 +22,10 @@ export interface TimelineSeparatorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://v7.mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineSeparator API](https://mui.com/material-ui/api/timeline-separator/)
29
+ * - [TimelineSeparator API](https://v7.mui.com/material-ui/api/timeline-separator/)
30
30
  */
31
31
  export default function TimelineSeparator(props: TimelineSeparatorProps): React.JSX.Element;
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/lab v7.0.1-beta.23
2
+ * @mui/lab v7.0.1-beta.25
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/lab v7.0.1-beta.23
2
+ * @mui/lab v7.0.1-beta.25
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,7 +1,7 @@
1
1
  {
2
2
  "name": "@mui/lab",
3
- "//": "version should be 'alpha' at all time",
4
- "version": "7.0.1-beta.23",
3
+ "//": "version should be 'beta' at all time",
4
+ "version": "7.0.1-beta.25",
5
5
  "author": "MUI Team",
6
6
  "description": "Laboratory for new Material UI modules.",
7
7
  "keywords": [
@@ -30,8 +30,8 @@
30
30
  "@babel/runtime": "^7.28.6",
31
31
  "clsx": "^2.1.1",
32
32
  "prop-types": "^15.8.1",
33
- "@mui/system": "^7.3.9",
34
- "@mui/utils": "^7.3.9",
33
+ "@mui/utils": "^7.3.11",
34
+ "@mui/system": "^7.3.11",
35
35
  "@mui/types": "^7.4.12"
36
36
  },
37
37
  "peerDependencies": {
@@ -40,8 +40,8 @@
40
40
  "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
41
41
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
42
42
  "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
43
- "@mui/material": "^7.3.9",
44
- "@mui/material-pigment-css": "^7.3.9"
43
+ "@mui/material-pigment-css": "^7.3.11",
44
+ "@mui/material": "^7.3.11"
45
45
  },
46
46
  "peerDependenciesMeta": {
47
47
  "@types/react": {