@mui/lab 9.0.0-beta.1 → 9.0.0-beta.3
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 +160 -1245
- package/Masonry/Masonry.d.mts +2 -2
- package/Masonry/Masonry.d.ts +2 -2
- package/README.md +3 -3
- package/TabContext/TabContext.d.mts +2 -2
- package/TabContext/TabContext.d.ts +2 -2
- package/TabList/TabList.d.mts +3 -3
- package/TabList/TabList.d.ts +3 -3
- package/TabPanel/TabPanel.d.mts +2 -2
- package/TabPanel/TabPanel.d.ts +2 -2
- package/Timeline/Timeline.d.mts +2 -2
- package/Timeline/Timeline.d.ts +2 -2
- package/Timeline/Timeline.js +2 -2
- package/Timeline/Timeline.mjs +2 -2
- package/TimelineConnector/TimelineConnector.d.mts +2 -2
- package/TimelineConnector/TimelineConnector.d.ts +2 -2
- package/TimelineContent/TimelineContent.d.mts +3 -3
- package/TimelineContent/TimelineContent.d.ts +3 -3
- package/TimelineDot/TimelineDot.d.mts +2 -2
- package/TimelineDot/TimelineDot.d.ts +2 -2
- package/TimelineItem/TimelineItem.d.mts +2 -2
- package/TimelineItem/TimelineItem.d.ts +2 -2
- package/TimelineOppositeContent/TimelineOppositeContent.d.mts +3 -3
- package/TimelineOppositeContent/TimelineOppositeContent.d.ts +3 -3
- package/TimelineSeparator/TimelineSeparator.d.mts +2 -2
- package/TimelineSeparator/TimelineSeparator.d.ts +2 -2
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +7 -7
package/Masonry/Masonry.d.mts
CHANGED
|
@@ -51,11 +51,11 @@ export interface MasonryTypeMap<AdditionalProps = {}, RootComponent extends Reac
|
|
|
51
51
|
*
|
|
52
52
|
* Demos:
|
|
53
53
|
*
|
|
54
|
-
* - [Masonry](https://
|
|
54
|
+
* - [Masonry](https://mui.com/material-ui/react-masonry/)
|
|
55
55
|
*
|
|
56
56
|
* API:
|
|
57
57
|
*
|
|
58
|
-
* - [Masonry API](https://
|
|
58
|
+
* - [Masonry API](https://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/Masonry/Masonry.d.ts
CHANGED
|
@@ -51,11 +51,11 @@ export interface MasonryTypeMap<AdditionalProps = {}, RootComponent extends Reac
|
|
|
51
51
|
*
|
|
52
52
|
* Demos:
|
|
53
53
|
*
|
|
54
|
-
* - [Masonry](https://
|
|
54
|
+
* - [Masonry](https://mui.com/material-ui/react-masonry/)
|
|
55
55
|
*
|
|
56
56
|
* API:
|
|
57
57
|
*
|
|
58
|
-
* - [Masonry API](https://
|
|
58
|
+
* - [Masonry API](https://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
|
|
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
|
|
21
|
+
npm install @mui/material @emotion/react @emotion/styled
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Documentation
|
|
25
25
|
|
|
26
26
|
<!-- #host-reference -->
|
|
27
27
|
|
|
28
|
-
Visit [https://
|
|
28
|
+
Visit [https://mui.com/material-ui/about-the-lab/](https://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://
|
|
20
|
+
* - [Tabs](https://mui.com/material-ui/react-tabs/)
|
|
21
21
|
*
|
|
22
22
|
* API:
|
|
23
23
|
*
|
|
24
|
-
* - [TabContext API](https://
|
|
24
|
+
* - [TabContext API](https://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,11 +17,11 @@ export interface TabContextProps {
|
|
|
17
17
|
*
|
|
18
18
|
* Demos:
|
|
19
19
|
*
|
|
20
|
-
* - [Tabs](https://
|
|
20
|
+
* - [Tabs](https://mui.com/material-ui/react-tabs/)
|
|
21
21
|
*
|
|
22
22
|
* API:
|
|
23
23
|
*
|
|
24
|
-
* - [TabContext API](https://
|
|
24
|
+
* - [TabContext API](https://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;
|
package/TabList/TabList.d.mts
CHANGED
|
@@ -17,12 +17,12 @@ export interface TabListTypeMap<AdditionalProps = {}, RootComponent extends Reac
|
|
|
17
17
|
*
|
|
18
18
|
* Demos:
|
|
19
19
|
*
|
|
20
|
-
* - [Tabs](https://
|
|
20
|
+
* - [Tabs](https://mui.com/material-ui/react-tabs/)
|
|
21
21
|
*
|
|
22
22
|
* API:
|
|
23
23
|
*
|
|
24
|
-
* - [TabList API](https://
|
|
25
|
-
* - inherits [Tabs API](https://
|
|
24
|
+
* - [TabList API](https://mui.com/material-ui/api/tab-list/)
|
|
25
|
+
* - inherits [Tabs API](https://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']>;
|
package/TabList/TabList.d.ts
CHANGED
|
@@ -17,12 +17,12 @@ export interface TabListTypeMap<AdditionalProps = {}, RootComponent extends Reac
|
|
|
17
17
|
*
|
|
18
18
|
* Demos:
|
|
19
19
|
*
|
|
20
|
-
* - [Tabs](https://
|
|
20
|
+
* - [Tabs](https://mui.com/material-ui/react-tabs/)
|
|
21
21
|
*
|
|
22
22
|
* API:
|
|
23
23
|
*
|
|
24
|
-
* - [TabList API](https://
|
|
25
|
-
* - inherits [Tabs API](https://
|
|
24
|
+
* - [TabList API](https://mui.com/material-ui/api/tab-list/)
|
|
25
|
+
* - inherits [Tabs API](https://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']>;
|
package/TabPanel/TabPanel.d.mts
CHANGED
|
@@ -32,10 +32,10 @@ export interface TabPanelProps extends StandardProps<React.HTMLAttributes<HTMLDi
|
|
|
32
32
|
*
|
|
33
33
|
* Demos:
|
|
34
34
|
*
|
|
35
|
-
* - [Tabs](https://
|
|
35
|
+
* - [Tabs](https://mui.com/material-ui/react-tabs/)
|
|
36
36
|
*
|
|
37
37
|
* API:
|
|
38
38
|
*
|
|
39
|
-
* - [TabPanel API](https://
|
|
39
|
+
* - [TabPanel API](https://mui.com/material-ui/api/tab-panel/)
|
|
40
40
|
*/
|
|
41
41
|
export default function TabPanel(props: TabPanelProps): React.JSX.Element;
|
package/TabPanel/TabPanel.d.ts
CHANGED
|
@@ -32,10 +32,10 @@ export interface TabPanelProps extends StandardProps<React.HTMLAttributes<HTMLDi
|
|
|
32
32
|
*
|
|
33
33
|
* Demos:
|
|
34
34
|
*
|
|
35
|
-
* - [Tabs](https://
|
|
35
|
+
* - [Tabs](https://mui.com/material-ui/react-tabs/)
|
|
36
36
|
*
|
|
37
37
|
* API:
|
|
38
38
|
*
|
|
39
|
-
* - [TabPanel API](https://
|
|
39
|
+
* - [TabPanel API](https://mui.com/material-ui/api/tab-panel/)
|
|
40
40
|
*/
|
|
41
41
|
export default function TabPanel(props: TabPanelProps): React.JSX.Element;
|
package/Timeline/Timeline.d.mts
CHANGED
|
@@ -4,11 +4,11 @@ import { TimelineProps } from "./Timeline.types.mjs";
|
|
|
4
4
|
*
|
|
5
5
|
* Demos:
|
|
6
6
|
*
|
|
7
|
-
* - [Timeline](https://
|
|
7
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
8
8
|
*
|
|
9
9
|
* API:
|
|
10
10
|
*
|
|
11
|
-
* - [Timeline API](https://
|
|
11
|
+
* - [Timeline API](https://mui.com/material-ui/api/timeline/)
|
|
12
12
|
*/
|
|
13
13
|
declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
|
|
14
14
|
/**
|
package/Timeline/Timeline.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ import { TimelineProps } from "./Timeline.types.js";
|
|
|
4
4
|
*
|
|
5
5
|
* Demos:
|
|
6
6
|
*
|
|
7
|
-
* - [Timeline](https://
|
|
7
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
8
8
|
*
|
|
9
9
|
* API:
|
|
10
10
|
*
|
|
11
|
-
* - [Timeline API](https://
|
|
11
|
+
* - [Timeline API](https://mui.com/material-ui/api/timeline/)
|
|
12
12
|
*/
|
|
13
13
|
declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
|
|
14
14
|
/**
|
package/Timeline/Timeline.js
CHANGED
|
@@ -46,11 +46,11 @@ const TimelineRoot = (0, _styles.styled)('ul', {
|
|
|
46
46
|
*
|
|
47
47
|
* Demos:
|
|
48
48
|
*
|
|
49
|
-
* - [Timeline](https://
|
|
49
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
50
50
|
*
|
|
51
51
|
* API:
|
|
52
52
|
*
|
|
53
|
-
* - [Timeline API](https://
|
|
53
|
+
* - [Timeline API](https://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/Timeline/Timeline.mjs
CHANGED
|
@@ -39,11 +39,11 @@ const TimelineRoot = styled('ul', {
|
|
|
39
39
|
*
|
|
40
40
|
* Demos:
|
|
41
41
|
*
|
|
42
|
-
* - [Timeline](https://
|
|
42
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
43
43
|
*
|
|
44
44
|
* API:
|
|
45
45
|
*
|
|
46
|
-
* - [Timeline API](https://
|
|
46
|
+
* - [Timeline API](https://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://
|
|
25
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
26
26
|
*
|
|
27
27
|
* API:
|
|
28
28
|
*
|
|
29
|
-
* - [TimelineConnector API](https://
|
|
29
|
+
* - [TimelineConnector API](https://mui.com/material-ui/api/timeline-connector/)
|
|
30
30
|
*/
|
|
31
31
|
export default function TimelineConnector(props: TimelineConnectorProps): React.JSX.Element;
|
|
@@ -22,10 +22,10 @@ export interface TimelineConnectorProps extends StandardProps<React.HTMLAttribut
|
|
|
22
22
|
*
|
|
23
23
|
* Demos:
|
|
24
24
|
*
|
|
25
|
-
* - [Timeline](https://
|
|
25
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
26
26
|
*
|
|
27
27
|
* API:
|
|
28
28
|
*
|
|
29
|
-
* - [TimelineConnector API](https://
|
|
29
|
+
* - [TimelineConnector API](https://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://
|
|
26
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
27
27
|
*
|
|
28
28
|
* API:
|
|
29
29
|
*
|
|
30
|
-
* - [TimelineContent API](https://
|
|
31
|
-
* - inherits [Typography API](https://
|
|
30
|
+
* - [TimelineContent API](https://mui.com/material-ui/api/timeline-content/)
|
|
31
|
+
* - inherits [Typography API](https://mui.com/material-ui/api/typography/)
|
|
32
32
|
*/
|
|
33
33
|
export default function TimelineContent(props: TimelineContentProps): React.JSX.Element;
|
|
@@ -23,11 +23,11 @@ export interface TimelineContentProps extends StandardProps<TypographyProps> {
|
|
|
23
23
|
*
|
|
24
24
|
* Demos:
|
|
25
25
|
*
|
|
26
|
-
* - [Timeline](https://
|
|
26
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
27
27
|
*
|
|
28
28
|
* API:
|
|
29
29
|
*
|
|
30
|
-
* - [TimelineContent API](https://
|
|
31
|
-
* - inherits [Typography API](https://
|
|
30
|
+
* - [TimelineContent API](https://mui.com/material-ui/api/timeline-content/)
|
|
31
|
+
* - inherits [Typography API](https://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://
|
|
38
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
39
39
|
*
|
|
40
40
|
* API:
|
|
41
41
|
*
|
|
42
|
-
* - [TimelineDot API](https://
|
|
42
|
+
* - [TimelineDot API](https://mui.com/material-ui/api/timeline-dot/)
|
|
43
43
|
*/
|
|
44
44
|
export default function TimelineDot(props: TimelineDotProps): 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://
|
|
38
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
39
39
|
*
|
|
40
40
|
* API:
|
|
41
41
|
*
|
|
42
|
-
* - [TimelineDot API](https://
|
|
42
|
+
* - [TimelineDot API](https://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://
|
|
29
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
30
30
|
*
|
|
31
31
|
* API:
|
|
32
32
|
*
|
|
33
|
-
* - [TimelineItem API](https://
|
|
33
|
+
* - [TimelineItem API](https://mui.com/material-ui/api/timeline-item/)
|
|
34
34
|
*/
|
|
35
35
|
export default function TimelineItem(props: TimelineItemProps): 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://
|
|
29
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
30
30
|
*
|
|
31
31
|
* API:
|
|
32
32
|
*
|
|
33
|
-
* - [TimelineItem API](https://
|
|
33
|
+
* - [TimelineItem API](https://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://
|
|
26
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
27
27
|
*
|
|
28
28
|
* API:
|
|
29
29
|
*
|
|
30
|
-
* - [TimelineOppositeContent API](https://
|
|
31
|
-
* - inherits [Typography API](https://
|
|
30
|
+
* - [TimelineOppositeContent API](https://mui.com/material-ui/api/timeline-opposite-content/)
|
|
31
|
+
* - inherits [Typography API](https://mui.com/material-ui/api/typography/)
|
|
32
32
|
*/
|
|
33
33
|
declare const TimelineOppositeContent: ((props: TimelineOppositeContentProps) => React.JSX.Element) & {
|
|
34
34
|
muiName: string;
|
|
@@ -23,12 +23,12 @@ export interface TimelineOppositeContentProps extends StandardProps<TypographyPr
|
|
|
23
23
|
*
|
|
24
24
|
* Demos:
|
|
25
25
|
*
|
|
26
|
-
* - [Timeline](https://
|
|
26
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
27
27
|
*
|
|
28
28
|
* API:
|
|
29
29
|
*
|
|
30
|
-
* - [TimelineOppositeContent API](https://
|
|
31
|
-
* - inherits [Typography API](https://
|
|
30
|
+
* - [TimelineOppositeContent API](https://mui.com/material-ui/api/timeline-opposite-content/)
|
|
31
|
+
* - inherits [Typography API](https://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://
|
|
25
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
26
26
|
*
|
|
27
27
|
* API:
|
|
28
28
|
*
|
|
29
|
-
* - [TimelineSeparator API](https://
|
|
29
|
+
* - [TimelineSeparator API](https://mui.com/material-ui/api/timeline-separator/)
|
|
30
30
|
*/
|
|
31
31
|
export default function TimelineSeparator(props: TimelineSeparatorProps): React.JSX.Element;
|
|
@@ -22,10 +22,10 @@ export interface TimelineSeparatorProps extends StandardProps<React.HTMLAttribut
|
|
|
22
22
|
*
|
|
23
23
|
* Demos:
|
|
24
24
|
*
|
|
25
|
-
* - [Timeline](https://
|
|
25
|
+
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
26
26
|
*
|
|
27
27
|
* API:
|
|
28
28
|
*
|
|
29
|
-
* - [TimelineSeparator API](https://
|
|
29
|
+
* - [TimelineSeparator API](https://mui.com/material-ui/api/timeline-separator/)
|
|
30
30
|
*/
|
|
31
31
|
export default function TimelineSeparator(props: TimelineSeparatorProps): React.JSX.Element;
|
package/index.js
CHANGED
package/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/lab",
|
|
3
3
|
"//": "version should be 'alpha' at all time",
|
|
4
|
-
"version": "9.0.0-beta.
|
|
4
|
+
"version": "9.0.0-beta.3",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Laboratory for new Material UI modules.",
|
|
7
|
+
"license": "MIT",
|
|
7
8
|
"keywords": [
|
|
8
9
|
"react",
|
|
9
10
|
"react-component",
|
|
@@ -17,7 +18,6 @@
|
|
|
17
18
|
"url": "git+https://github.com/mui/material-ui.git",
|
|
18
19
|
"directory": "packages/mui-lab"
|
|
19
20
|
},
|
|
20
|
-
"license": "MIT",
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/mui/material-ui/issues"
|
|
23
23
|
},
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"@babel/runtime": "^7.29.2",
|
|
31
31
|
"clsx": "^2.1.1",
|
|
32
32
|
"prop-types": "^15.8.1",
|
|
33
|
-
"@mui/
|
|
34
|
-
"@mui/
|
|
35
|
-
"@mui/
|
|
33
|
+
"@mui/types": "^9.0.0",
|
|
34
|
+
"@mui/utils": "^9.0.1",
|
|
35
|
+
"@mui/system": "^9.0.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@emotion/react": "^11.5.0",
|
|
@@ -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": "9.0.
|
|
44
|
-
"@mui/material
|
|
43
|
+
"@mui/material-pigment-css": "^9.0.1",
|
|
44
|
+
"@mui/material": "^9.0.1"
|
|
45
45
|
},
|
|
46
46
|
"peerDependenciesMeta": {
|
|
47
47
|
"@types/react": {
|