@mui/material 9.0.0-alpha.1 → 9.0.0-alpha.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 +28 -0
- package/CardHeader/CardHeader.js +1 -4
- package/CardHeader/CardHeader.mjs +1 -4
- package/ListItemText/ListItemText.js +1 -4
- package/ListItemText/ListItemText.mjs +1 -4
- package/SpeedDialIcon/SpeedDialIcon.js +4 -10
- package/SpeedDialIcon/SpeedDialIcon.mjs +4 -10
- package/StepIcon/StepIcon.js +1 -4
- package/StepIcon/StepIcon.mjs +1 -4
- package/StepLabel/StepLabel.js +1 -5
- package/StepLabel/StepLabel.mjs +1 -5
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +222 -222
- package/version/index.js +2 -2
- package/version/index.mjs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 9.0.0-alpha.2
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v9.0.0-alpha.1..master -->
|
|
6
|
+
|
|
7
|
+
_Mar 5, 2026_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 4 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### @mui/material@9.0.0-alpha.2
|
|
12
|
+
|
|
13
|
+
- Clean up duplicated CSS rules (#47838) @sai6855
|
|
14
|
+
|
|
15
|
+
### @mui/system@9.0.0-alpha.2
|
|
16
|
+
|
|
17
|
+
- Refactor sortContainerQueries to define regex outside of sort function (#47817) @sai6855
|
|
18
|
+
|
|
19
|
+
### Docs
|
|
20
|
+
|
|
21
|
+
- Move shared components to @mui/docs package (#47672) @Janpot
|
|
22
|
+
- Fix small typo in NumberField page (#47877) @arthur-plazanet
|
|
23
|
+
|
|
24
|
+
### Core
|
|
25
|
+
|
|
26
|
+
- [code-infra] Reduce paths for attw checks (#47896) @brijeshb42
|
|
27
|
+
- [docs-infra] Run syncTeamMembers (#47900) @Janpot
|
|
28
|
+
|
|
29
|
+
All contributors of this release in alphabetical order: @arthur-plazanet, @brijeshb42, @Janpot, @sai6855
|
|
30
|
+
|
|
3
31
|
## 9.0.0-alpha.1
|
|
4
32
|
|
|
5
33
|
<!-- generated comparing v9.0.0-alpha.0..master -->
|
package/CardHeader/CardHeader.js
CHANGED
|
@@ -68,10 +68,7 @@ const CardHeaderContent = (0, _zeroStyled.styled)('div', {
|
|
|
68
68
|
slot: 'Content'
|
|
69
69
|
})({
|
|
70
70
|
flex: '1 1 auto',
|
|
71
|
-
[`.${_Typography.typographyClasses.root}:where(& .${_cardHeaderClasses.default.title})`]: {
|
|
72
|
-
display: 'block'
|
|
73
|
-
},
|
|
74
|
-
[`.${_Typography.typographyClasses.root}:where(& .${_cardHeaderClasses.default.subheader})`]: {
|
|
71
|
+
[`.${_Typography.typographyClasses.root}:where(& .${_cardHeaderClasses.default.title}), .${_Typography.typographyClasses.root}:where(& .${_cardHeaderClasses.default.subheader})`]: {
|
|
75
72
|
display: 'block'
|
|
76
73
|
}
|
|
77
74
|
});
|
|
@@ -61,10 +61,7 @@ const CardHeaderContent = styled('div', {
|
|
|
61
61
|
slot: 'Content'
|
|
62
62
|
})({
|
|
63
63
|
flex: '1 1 auto',
|
|
64
|
-
[`.${typographyClasses.root}:where(& .${cardHeaderClasses.title})`]: {
|
|
65
|
-
display: 'block'
|
|
66
|
-
},
|
|
67
|
-
[`.${typographyClasses.root}:where(& .${cardHeaderClasses.subheader})`]: {
|
|
64
|
+
[`.${typographyClasses.root}:where(& .${cardHeaderClasses.title}), .${typographyClasses.root}:where(& .${cardHeaderClasses.subheader})`]: {
|
|
68
65
|
display: 'block'
|
|
69
66
|
}
|
|
70
67
|
});
|
|
@@ -51,10 +51,7 @@ const ListItemTextRoot = (0, _zeroStyled.styled)('div', {
|
|
|
51
51
|
minWidth: 0,
|
|
52
52
|
marginTop: 4,
|
|
53
53
|
marginBottom: 4,
|
|
54
|
-
[`.${_Typography.typographyClasses.root}:where(& .${_listItemTextClasses.default.primary})`]: {
|
|
55
|
-
display: 'block'
|
|
56
|
-
},
|
|
57
|
-
[`.${_Typography.typographyClasses.root}:where(& .${_listItemTextClasses.default.secondary})`]: {
|
|
54
|
+
[`.${_Typography.typographyClasses.root}:where(& .${_listItemTextClasses.default.primary}), .${_Typography.typographyClasses.root}:where(& .${_listItemTextClasses.default.secondary})`]: {
|
|
58
55
|
display: 'block'
|
|
59
56
|
},
|
|
60
57
|
variants: [{
|
|
@@ -44,10 +44,7 @@ const ListItemTextRoot = styled('div', {
|
|
|
44
44
|
minWidth: 0,
|
|
45
45
|
marginTop: 4,
|
|
46
46
|
marginBottom: 4,
|
|
47
|
-
[`.${typographyClasses.root}:where(& .${listItemTextClasses.primary})`]: {
|
|
48
|
-
display: 'block'
|
|
49
|
-
},
|
|
50
|
-
[`.${typographyClasses.root}:where(& .${listItemTextClasses.secondary})`]: {
|
|
47
|
+
[`.${typographyClasses.root}:where(& .${listItemTextClasses.primary}), .${typographyClasses.root}:where(& .${listItemTextClasses.secondary})`]: {
|
|
51
48
|
display: 'block'
|
|
52
49
|
},
|
|
53
50
|
variants: [{
|
|
@@ -73,6 +73,10 @@ const SpeedDialIconRoot = (0, _zeroStyled.styled)('span', {
|
|
|
73
73
|
style: {
|
|
74
74
|
[`& .${_speedDialIconClasses.default.icon}`]: {
|
|
75
75
|
transform: 'rotate(45deg)'
|
|
76
|
+
},
|
|
77
|
+
[`& .${_speedDialIconClasses.default.openIcon}`]: {
|
|
78
|
+
transform: 'rotate(0deg)',
|
|
79
|
+
opacity: 1
|
|
76
80
|
}
|
|
77
81
|
}
|
|
78
82
|
}, {
|
|
@@ -84,16 +88,6 @@ const SpeedDialIconRoot = (0, _zeroStyled.styled)('span', {
|
|
|
84
88
|
opacity: 0
|
|
85
89
|
}
|
|
86
90
|
}
|
|
87
|
-
}, {
|
|
88
|
-
props: ({
|
|
89
|
-
ownerState
|
|
90
|
-
}) => ownerState.open,
|
|
91
|
-
style: {
|
|
92
|
-
[`& .${_speedDialIconClasses.default.openIcon}`]: {
|
|
93
|
-
transform: 'rotate(0deg)',
|
|
94
|
-
opacity: 1
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
91
|
}]
|
|
98
92
|
})));
|
|
99
93
|
const SpeedDialIcon = /*#__PURE__*/React.forwardRef(function SpeedDialIcon(inProps, ref) {
|
|
@@ -66,6 +66,10 @@ const SpeedDialIconRoot = styled('span', {
|
|
|
66
66
|
style: {
|
|
67
67
|
[`& .${speedDialIconClasses.icon}`]: {
|
|
68
68
|
transform: 'rotate(45deg)'
|
|
69
|
+
},
|
|
70
|
+
[`& .${speedDialIconClasses.openIcon}`]: {
|
|
71
|
+
transform: 'rotate(0deg)',
|
|
72
|
+
opacity: 1
|
|
69
73
|
}
|
|
70
74
|
}
|
|
71
75
|
}, {
|
|
@@ -77,16 +81,6 @@ const SpeedDialIconRoot = styled('span', {
|
|
|
77
81
|
opacity: 0
|
|
78
82
|
}
|
|
79
83
|
}
|
|
80
|
-
}, {
|
|
81
|
-
props: ({
|
|
82
|
-
ownerState
|
|
83
|
-
}) => ownerState.open,
|
|
84
|
-
style: {
|
|
85
|
-
[`& .${speedDialIconClasses.openIcon}`]: {
|
|
86
|
-
transform: 'rotate(0deg)',
|
|
87
|
-
opacity: 1
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
84
|
}]
|
|
91
85
|
})));
|
|
92
86
|
const SpeedDialIcon = /*#__PURE__*/React.forwardRef(function SpeedDialIcon(inProps, ref) {
|
package/StepIcon/StepIcon.js
CHANGED
|
@@ -44,10 +44,7 @@ const StepIconRoot = (0, _zeroStyled.styled)(_SvgIcon.default, {
|
|
|
44
44
|
duration: theme.transitions.duration.shortest
|
|
45
45
|
}),
|
|
46
46
|
color: (theme.vars || theme).palette.text.disabled,
|
|
47
|
-
[`&.${_stepIconClasses.default.completed}`]: {
|
|
48
|
-
color: (theme.vars || theme).palette.primary.main
|
|
49
|
-
},
|
|
50
|
-
[`&.${_stepIconClasses.default.active}`]: {
|
|
47
|
+
[`&.${_stepIconClasses.default.completed}, &.${_stepIconClasses.default.active}`]: {
|
|
51
48
|
color: (theme.vars || theme).palette.primary.main
|
|
52
49
|
},
|
|
53
50
|
[`&.${_stepIconClasses.default.error}`]: {
|
package/StepIcon/StepIcon.mjs
CHANGED
|
@@ -37,10 +37,7 @@ const StepIconRoot = styled(SvgIcon, {
|
|
|
37
37
|
duration: theme.transitions.duration.shortest
|
|
38
38
|
}),
|
|
39
39
|
color: (theme.vars || theme).palette.text.disabled,
|
|
40
|
-
[`&.${stepIconClasses.completed}`]: {
|
|
41
|
-
color: (theme.vars || theme).palette.primary.main
|
|
42
|
-
},
|
|
43
|
-
[`&.${stepIconClasses.active}`]: {
|
|
40
|
+
[`&.${stepIconClasses.completed}, &.${stepIconClasses.active}`]: {
|
|
44
41
|
color: (theme.vars || theme).palette.primary.main
|
|
45
42
|
},
|
|
46
43
|
[`&.${stepIconClasses.error}`]: {
|
package/StepLabel/StepLabel.js
CHANGED
|
@@ -77,11 +77,7 @@ const StepLabelLabel = (0, _zeroStyled.styled)('span', {
|
|
|
77
77
|
transition: theme.transitions.create('color', {
|
|
78
78
|
duration: theme.transitions.duration.shortest
|
|
79
79
|
}),
|
|
80
|
-
[`&.${_stepLabelClasses.default.active}`]: {
|
|
81
|
-
color: (theme.vars || theme).palette.text.primary,
|
|
82
|
-
fontWeight: 500
|
|
83
|
-
},
|
|
84
|
-
[`&.${_stepLabelClasses.default.completed}`]: {
|
|
80
|
+
[`&.${_stepLabelClasses.default.active}, &.${_stepLabelClasses.default.completed}`]: {
|
|
85
81
|
color: (theme.vars || theme).palette.text.primary,
|
|
86
82
|
fontWeight: 500
|
|
87
83
|
},
|
package/StepLabel/StepLabel.mjs
CHANGED
|
@@ -70,11 +70,7 @@ const StepLabelLabel = styled('span', {
|
|
|
70
70
|
transition: theme.transitions.create('color', {
|
|
71
71
|
duration: theme.transitions.duration.shortest
|
|
72
72
|
}),
|
|
73
|
-
[`&.${stepLabelClasses.active}`]: {
|
|
74
|
-
color: (theme.vars || theme).palette.text.primary,
|
|
75
|
-
fontWeight: 500
|
|
76
|
-
},
|
|
77
|
-
[`&.${stepLabelClasses.completed}`]: {
|
|
73
|
+
[`&.${stepLabelClasses.active}, &.${stepLabelClasses.completed}`]: {
|
|
78
74
|
color: (theme.vars || theme).palette.text.primary,
|
|
79
75
|
fontWeight: 500
|
|
80
76
|
},
|
package/index.js
CHANGED
package/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/material",
|
|
3
|
-
"version": "9.0.0-alpha.
|
|
3
|
+
"version": "9.0.0-alpha.2",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.",
|
|
6
6
|
"keywords": [
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"prop-types": "^15.8.1",
|
|
34
34
|
"react-is": "^19.2.4",
|
|
35
35
|
"react-transition-group": "^4.4.5",
|
|
36
|
-
"@mui/core-downloads-tracker": "^9.0.0-alpha.
|
|
37
|
-
"@mui/
|
|
38
|
-
"@mui/
|
|
39
|
-
"@mui/system": "9.0.0-alpha.
|
|
36
|
+
"@mui/core-downloads-tracker": "^9.0.0-alpha.2",
|
|
37
|
+
"@mui/utils": "9.0.0-alpha.2",
|
|
38
|
+
"@mui/types": "^9.0.0-alpha.2",
|
|
39
|
+
"@mui/system": "9.0.0-alpha.2"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@emotion/react": "^11.5.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
45
45
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
46
46
|
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
47
|
-
"@mui/material-pigment-css": "9.0.0-alpha.
|
|
47
|
+
"@mui/material-pigment-css": "9.0.0-alpha.2"
|
|
48
48
|
},
|
|
49
49
|
"peerDependenciesMeta": {
|
|
50
50
|
"@types/react": {
|
|
@@ -1497,756 +1497,756 @@
|
|
|
1497
1497
|
}
|
|
1498
1498
|
},
|
|
1499
1499
|
"./Portal": {
|
|
1500
|
-
"import": {
|
|
1501
|
-
"types": "./Portal/index.d.mts",
|
|
1502
|
-
"default": "./Portal/index.mjs"
|
|
1503
|
-
},
|
|
1504
1500
|
"require": {
|
|
1505
1501
|
"types": "./Portal/index.d.ts",
|
|
1506
1502
|
"default": "./Portal/index.js"
|
|
1507
1503
|
},
|
|
1504
|
+
"import": {
|
|
1505
|
+
"types": "./Portal/index.d.mts",
|
|
1506
|
+
"default": "./Portal/index.mjs"
|
|
1507
|
+
},
|
|
1508
1508
|
"default": {
|
|
1509
1509
|
"types": "./Portal/index.d.mts",
|
|
1510
1510
|
"default": "./Portal/index.mjs"
|
|
1511
1511
|
}
|
|
1512
1512
|
},
|
|
1513
1513
|
"./Radio": {
|
|
1514
|
-
"import": {
|
|
1515
|
-
"types": "./Radio/index.d.mts",
|
|
1516
|
-
"default": "./Radio/index.mjs"
|
|
1517
|
-
},
|
|
1518
1514
|
"require": {
|
|
1519
1515
|
"types": "./Radio/index.d.ts",
|
|
1520
1516
|
"default": "./Radio/index.js"
|
|
1521
1517
|
},
|
|
1518
|
+
"import": {
|
|
1519
|
+
"types": "./Radio/index.d.mts",
|
|
1520
|
+
"default": "./Radio/index.mjs"
|
|
1521
|
+
},
|
|
1522
1522
|
"default": {
|
|
1523
1523
|
"types": "./Radio/index.d.mts",
|
|
1524
1524
|
"default": "./Radio/index.mjs"
|
|
1525
1525
|
}
|
|
1526
1526
|
},
|
|
1527
1527
|
"./RadioGroup": {
|
|
1528
|
-
"import": {
|
|
1529
|
-
"types": "./RadioGroup/index.d.mts",
|
|
1530
|
-
"default": "./RadioGroup/index.mjs"
|
|
1531
|
-
},
|
|
1532
1528
|
"require": {
|
|
1533
1529
|
"types": "./RadioGroup/index.d.ts",
|
|
1534
1530
|
"default": "./RadioGroup/index.js"
|
|
1535
1531
|
},
|
|
1532
|
+
"import": {
|
|
1533
|
+
"types": "./RadioGroup/index.d.mts",
|
|
1534
|
+
"default": "./RadioGroup/index.mjs"
|
|
1535
|
+
},
|
|
1536
1536
|
"default": {
|
|
1537
1537
|
"types": "./RadioGroup/index.d.mts",
|
|
1538
1538
|
"default": "./RadioGroup/index.mjs"
|
|
1539
1539
|
}
|
|
1540
1540
|
},
|
|
1541
1541
|
"./Rating": {
|
|
1542
|
-
"import": {
|
|
1543
|
-
"types": "./Rating/index.d.mts",
|
|
1544
|
-
"default": "./Rating/index.mjs"
|
|
1545
|
-
},
|
|
1546
1542
|
"require": {
|
|
1547
1543
|
"types": "./Rating/index.d.ts",
|
|
1548
1544
|
"default": "./Rating/index.js"
|
|
1549
1545
|
},
|
|
1546
|
+
"import": {
|
|
1547
|
+
"types": "./Rating/index.d.mts",
|
|
1548
|
+
"default": "./Rating/index.mjs"
|
|
1549
|
+
},
|
|
1550
1550
|
"default": {
|
|
1551
1551
|
"types": "./Rating/index.d.mts",
|
|
1552
1552
|
"default": "./Rating/index.mjs"
|
|
1553
1553
|
}
|
|
1554
1554
|
},
|
|
1555
1555
|
"./ScopedCssBaseline": {
|
|
1556
|
-
"import": {
|
|
1557
|
-
"types": "./ScopedCssBaseline/index.d.mts",
|
|
1558
|
-
"default": "./ScopedCssBaseline/index.mjs"
|
|
1559
|
-
},
|
|
1560
1556
|
"require": {
|
|
1561
1557
|
"types": "./ScopedCssBaseline/index.d.ts",
|
|
1562
1558
|
"default": "./ScopedCssBaseline/index.js"
|
|
1563
1559
|
},
|
|
1560
|
+
"import": {
|
|
1561
|
+
"types": "./ScopedCssBaseline/index.d.mts",
|
|
1562
|
+
"default": "./ScopedCssBaseline/index.mjs"
|
|
1563
|
+
},
|
|
1564
1564
|
"default": {
|
|
1565
1565
|
"types": "./ScopedCssBaseline/index.d.mts",
|
|
1566
1566
|
"default": "./ScopedCssBaseline/index.mjs"
|
|
1567
1567
|
}
|
|
1568
1568
|
},
|
|
1569
1569
|
"./Select": {
|
|
1570
|
-
"import": {
|
|
1571
|
-
"types": "./Select/index.d.mts",
|
|
1572
|
-
"default": "./Select/index.mjs"
|
|
1573
|
-
},
|
|
1574
1570
|
"require": {
|
|
1575
1571
|
"types": "./Select/index.d.ts",
|
|
1576
1572
|
"default": "./Select/index.js"
|
|
1577
1573
|
},
|
|
1574
|
+
"import": {
|
|
1575
|
+
"types": "./Select/index.d.mts",
|
|
1576
|
+
"default": "./Select/index.mjs"
|
|
1577
|
+
},
|
|
1578
1578
|
"default": {
|
|
1579
1579
|
"types": "./Select/index.d.mts",
|
|
1580
1580
|
"default": "./Select/index.mjs"
|
|
1581
1581
|
}
|
|
1582
1582
|
},
|
|
1583
1583
|
"./Skeleton": {
|
|
1584
|
-
"import": {
|
|
1585
|
-
"types": "./Skeleton/index.d.mts",
|
|
1586
|
-
"default": "./Skeleton/index.mjs"
|
|
1587
|
-
},
|
|
1588
1584
|
"require": {
|
|
1589
1585
|
"types": "./Skeleton/index.d.ts",
|
|
1590
1586
|
"default": "./Skeleton/index.js"
|
|
1591
1587
|
},
|
|
1588
|
+
"import": {
|
|
1589
|
+
"types": "./Skeleton/index.d.mts",
|
|
1590
|
+
"default": "./Skeleton/index.mjs"
|
|
1591
|
+
},
|
|
1592
1592
|
"default": {
|
|
1593
1593
|
"types": "./Skeleton/index.d.mts",
|
|
1594
1594
|
"default": "./Skeleton/index.mjs"
|
|
1595
1595
|
}
|
|
1596
1596
|
},
|
|
1597
1597
|
"./Slide": {
|
|
1598
|
-
"import": {
|
|
1599
|
-
"types": "./Slide/index.d.mts",
|
|
1600
|
-
"default": "./Slide/index.mjs"
|
|
1601
|
-
},
|
|
1602
1598
|
"require": {
|
|
1603
1599
|
"types": "./Slide/index.d.ts",
|
|
1604
1600
|
"default": "./Slide/index.js"
|
|
1605
1601
|
},
|
|
1602
|
+
"import": {
|
|
1603
|
+
"types": "./Slide/index.d.mts",
|
|
1604
|
+
"default": "./Slide/index.mjs"
|
|
1605
|
+
},
|
|
1606
1606
|
"default": {
|
|
1607
1607
|
"types": "./Slide/index.d.mts",
|
|
1608
1608
|
"default": "./Slide/index.mjs"
|
|
1609
1609
|
}
|
|
1610
1610
|
},
|
|
1611
1611
|
"./Slider": {
|
|
1612
|
-
"import": {
|
|
1613
|
-
"types": "./Slider/index.d.mts",
|
|
1614
|
-
"default": "./Slider/index.mjs"
|
|
1615
|
-
},
|
|
1616
1612
|
"require": {
|
|
1617
1613
|
"types": "./Slider/index.d.ts",
|
|
1618
1614
|
"default": "./Slider/index.js"
|
|
1619
1615
|
},
|
|
1616
|
+
"import": {
|
|
1617
|
+
"types": "./Slider/index.d.mts",
|
|
1618
|
+
"default": "./Slider/index.mjs"
|
|
1619
|
+
},
|
|
1620
1620
|
"default": {
|
|
1621
1621
|
"types": "./Slider/index.d.mts",
|
|
1622
1622
|
"default": "./Slider/index.mjs"
|
|
1623
1623
|
}
|
|
1624
1624
|
},
|
|
1625
1625
|
"./Snackbar": {
|
|
1626
|
-
"import": {
|
|
1627
|
-
"types": "./Snackbar/index.d.mts",
|
|
1628
|
-
"default": "./Snackbar/index.mjs"
|
|
1629
|
-
},
|
|
1630
1626
|
"require": {
|
|
1631
1627
|
"types": "./Snackbar/index.d.ts",
|
|
1632
1628
|
"default": "./Snackbar/index.js"
|
|
1633
1629
|
},
|
|
1630
|
+
"import": {
|
|
1631
|
+
"types": "./Snackbar/index.d.mts",
|
|
1632
|
+
"default": "./Snackbar/index.mjs"
|
|
1633
|
+
},
|
|
1634
1634
|
"default": {
|
|
1635
1635
|
"types": "./Snackbar/index.d.mts",
|
|
1636
1636
|
"default": "./Snackbar/index.mjs"
|
|
1637
1637
|
}
|
|
1638
1638
|
},
|
|
1639
1639
|
"./SnackbarContent": {
|
|
1640
|
-
"import": {
|
|
1641
|
-
"types": "./SnackbarContent/index.d.mts",
|
|
1642
|
-
"default": "./SnackbarContent/index.mjs"
|
|
1643
|
-
},
|
|
1644
1640
|
"require": {
|
|
1645
1641
|
"types": "./SnackbarContent/index.d.ts",
|
|
1646
1642
|
"default": "./SnackbarContent/index.js"
|
|
1647
1643
|
},
|
|
1644
|
+
"import": {
|
|
1645
|
+
"types": "./SnackbarContent/index.d.mts",
|
|
1646
|
+
"default": "./SnackbarContent/index.mjs"
|
|
1647
|
+
},
|
|
1648
1648
|
"default": {
|
|
1649
1649
|
"types": "./SnackbarContent/index.d.mts",
|
|
1650
1650
|
"default": "./SnackbarContent/index.mjs"
|
|
1651
1651
|
}
|
|
1652
1652
|
},
|
|
1653
1653
|
"./SpeedDial": {
|
|
1654
|
-
"import": {
|
|
1655
|
-
"types": "./SpeedDial/index.d.mts",
|
|
1656
|
-
"default": "./SpeedDial/index.mjs"
|
|
1657
|
-
},
|
|
1658
1654
|
"require": {
|
|
1659
1655
|
"types": "./SpeedDial/index.d.ts",
|
|
1660
1656
|
"default": "./SpeedDial/index.js"
|
|
1661
1657
|
},
|
|
1658
|
+
"import": {
|
|
1659
|
+
"types": "./SpeedDial/index.d.mts",
|
|
1660
|
+
"default": "./SpeedDial/index.mjs"
|
|
1661
|
+
},
|
|
1662
1662
|
"default": {
|
|
1663
1663
|
"types": "./SpeedDial/index.d.mts",
|
|
1664
1664
|
"default": "./SpeedDial/index.mjs"
|
|
1665
1665
|
}
|
|
1666
1666
|
},
|
|
1667
1667
|
"./SpeedDialAction": {
|
|
1668
|
-
"import": {
|
|
1669
|
-
"types": "./SpeedDialAction/index.d.mts",
|
|
1670
|
-
"default": "./SpeedDialAction/index.mjs"
|
|
1671
|
-
},
|
|
1672
1668
|
"require": {
|
|
1673
1669
|
"types": "./SpeedDialAction/index.d.ts",
|
|
1674
1670
|
"default": "./SpeedDialAction/index.js"
|
|
1675
1671
|
},
|
|
1672
|
+
"import": {
|
|
1673
|
+
"types": "./SpeedDialAction/index.d.mts",
|
|
1674
|
+
"default": "./SpeedDialAction/index.mjs"
|
|
1675
|
+
},
|
|
1676
1676
|
"default": {
|
|
1677
1677
|
"types": "./SpeedDialAction/index.d.mts",
|
|
1678
1678
|
"default": "./SpeedDialAction/index.mjs"
|
|
1679
1679
|
}
|
|
1680
1680
|
},
|
|
1681
1681
|
"./SpeedDialIcon": {
|
|
1682
|
-
"import": {
|
|
1683
|
-
"types": "./SpeedDialIcon/index.d.mts",
|
|
1684
|
-
"default": "./SpeedDialIcon/index.mjs"
|
|
1685
|
-
},
|
|
1686
1682
|
"require": {
|
|
1687
1683
|
"types": "./SpeedDialIcon/index.d.ts",
|
|
1688
1684
|
"default": "./SpeedDialIcon/index.js"
|
|
1689
1685
|
},
|
|
1686
|
+
"import": {
|
|
1687
|
+
"types": "./SpeedDialIcon/index.d.mts",
|
|
1688
|
+
"default": "./SpeedDialIcon/index.mjs"
|
|
1689
|
+
},
|
|
1690
1690
|
"default": {
|
|
1691
1691
|
"types": "./SpeedDialIcon/index.d.mts",
|
|
1692
1692
|
"default": "./SpeedDialIcon/index.mjs"
|
|
1693
1693
|
}
|
|
1694
1694
|
},
|
|
1695
1695
|
"./Stack": {
|
|
1696
|
-
"import": {
|
|
1697
|
-
"types": "./Stack/index.d.mts",
|
|
1698
|
-
"default": "./Stack/index.mjs"
|
|
1699
|
-
},
|
|
1700
1696
|
"require": {
|
|
1701
1697
|
"types": "./Stack/index.d.ts",
|
|
1702
1698
|
"default": "./Stack/index.js"
|
|
1703
1699
|
},
|
|
1700
|
+
"import": {
|
|
1701
|
+
"types": "./Stack/index.d.mts",
|
|
1702
|
+
"default": "./Stack/index.mjs"
|
|
1703
|
+
},
|
|
1704
1704
|
"default": {
|
|
1705
1705
|
"types": "./Stack/index.d.mts",
|
|
1706
1706
|
"default": "./Stack/index.mjs"
|
|
1707
1707
|
}
|
|
1708
1708
|
},
|
|
1709
1709
|
"./Step": {
|
|
1710
|
-
"import": {
|
|
1711
|
-
"types": "./Step/index.d.mts",
|
|
1712
|
-
"default": "./Step/index.mjs"
|
|
1713
|
-
},
|
|
1714
1710
|
"require": {
|
|
1715
1711
|
"types": "./Step/index.d.ts",
|
|
1716
1712
|
"default": "./Step/index.js"
|
|
1717
1713
|
},
|
|
1714
|
+
"import": {
|
|
1715
|
+
"types": "./Step/index.d.mts",
|
|
1716
|
+
"default": "./Step/index.mjs"
|
|
1717
|
+
},
|
|
1718
1718
|
"default": {
|
|
1719
1719
|
"types": "./Step/index.d.mts",
|
|
1720
1720
|
"default": "./Step/index.mjs"
|
|
1721
1721
|
}
|
|
1722
1722
|
},
|
|
1723
1723
|
"./StepButton": {
|
|
1724
|
-
"import": {
|
|
1725
|
-
"types": "./StepButton/index.d.mts",
|
|
1726
|
-
"default": "./StepButton/index.mjs"
|
|
1727
|
-
},
|
|
1728
1724
|
"require": {
|
|
1729
1725
|
"types": "./StepButton/index.d.ts",
|
|
1730
1726
|
"default": "./StepButton/index.js"
|
|
1731
1727
|
},
|
|
1728
|
+
"import": {
|
|
1729
|
+
"types": "./StepButton/index.d.mts",
|
|
1730
|
+
"default": "./StepButton/index.mjs"
|
|
1731
|
+
},
|
|
1732
1732
|
"default": {
|
|
1733
1733
|
"types": "./StepButton/index.d.mts",
|
|
1734
1734
|
"default": "./StepButton/index.mjs"
|
|
1735
1735
|
}
|
|
1736
1736
|
},
|
|
1737
1737
|
"./StepConnector": {
|
|
1738
|
-
"import": {
|
|
1739
|
-
"types": "./StepConnector/index.d.mts",
|
|
1740
|
-
"default": "./StepConnector/index.mjs"
|
|
1741
|
-
},
|
|
1742
1738
|
"require": {
|
|
1743
1739
|
"types": "./StepConnector/index.d.ts",
|
|
1744
1740
|
"default": "./StepConnector/index.js"
|
|
1745
1741
|
},
|
|
1742
|
+
"import": {
|
|
1743
|
+
"types": "./StepConnector/index.d.mts",
|
|
1744
|
+
"default": "./StepConnector/index.mjs"
|
|
1745
|
+
},
|
|
1746
1746
|
"default": {
|
|
1747
1747
|
"types": "./StepConnector/index.d.mts",
|
|
1748
1748
|
"default": "./StepConnector/index.mjs"
|
|
1749
1749
|
}
|
|
1750
1750
|
},
|
|
1751
1751
|
"./StepContent": {
|
|
1752
|
-
"import": {
|
|
1753
|
-
"types": "./StepContent/index.d.mts",
|
|
1754
|
-
"default": "./StepContent/index.mjs"
|
|
1755
|
-
},
|
|
1756
1752
|
"require": {
|
|
1757
1753
|
"types": "./StepContent/index.d.ts",
|
|
1758
1754
|
"default": "./StepContent/index.js"
|
|
1759
1755
|
},
|
|
1756
|
+
"import": {
|
|
1757
|
+
"types": "./StepContent/index.d.mts",
|
|
1758
|
+
"default": "./StepContent/index.mjs"
|
|
1759
|
+
},
|
|
1760
1760
|
"default": {
|
|
1761
1761
|
"types": "./StepContent/index.d.mts",
|
|
1762
1762
|
"default": "./StepContent/index.mjs"
|
|
1763
1763
|
}
|
|
1764
1764
|
},
|
|
1765
1765
|
"./StepIcon": {
|
|
1766
|
-
"import": {
|
|
1767
|
-
"types": "./StepIcon/index.d.mts",
|
|
1768
|
-
"default": "./StepIcon/index.mjs"
|
|
1769
|
-
},
|
|
1770
1766
|
"require": {
|
|
1771
1767
|
"types": "./StepIcon/index.d.ts",
|
|
1772
1768
|
"default": "./StepIcon/index.js"
|
|
1773
1769
|
},
|
|
1770
|
+
"import": {
|
|
1771
|
+
"types": "./StepIcon/index.d.mts",
|
|
1772
|
+
"default": "./StepIcon/index.mjs"
|
|
1773
|
+
},
|
|
1774
1774
|
"default": {
|
|
1775
1775
|
"types": "./StepIcon/index.d.mts",
|
|
1776
1776
|
"default": "./StepIcon/index.mjs"
|
|
1777
1777
|
}
|
|
1778
1778
|
},
|
|
1779
1779
|
"./StepLabel": {
|
|
1780
|
-
"import": {
|
|
1781
|
-
"types": "./StepLabel/index.d.mts",
|
|
1782
|
-
"default": "./StepLabel/index.mjs"
|
|
1783
|
-
},
|
|
1784
1780
|
"require": {
|
|
1785
1781
|
"types": "./StepLabel/index.d.ts",
|
|
1786
1782
|
"default": "./StepLabel/index.js"
|
|
1787
1783
|
},
|
|
1784
|
+
"import": {
|
|
1785
|
+
"types": "./StepLabel/index.d.mts",
|
|
1786
|
+
"default": "./StepLabel/index.mjs"
|
|
1787
|
+
},
|
|
1788
1788
|
"default": {
|
|
1789
1789
|
"types": "./StepLabel/index.d.mts",
|
|
1790
1790
|
"default": "./StepLabel/index.mjs"
|
|
1791
1791
|
}
|
|
1792
1792
|
},
|
|
1793
1793
|
"./Stepper": {
|
|
1794
|
-
"import": {
|
|
1795
|
-
"types": "./Stepper/index.d.mts",
|
|
1796
|
-
"default": "./Stepper/index.mjs"
|
|
1797
|
-
},
|
|
1798
1794
|
"require": {
|
|
1799
1795
|
"types": "./Stepper/index.d.ts",
|
|
1800
1796
|
"default": "./Stepper/index.js"
|
|
1801
1797
|
},
|
|
1798
|
+
"import": {
|
|
1799
|
+
"types": "./Stepper/index.d.mts",
|
|
1800
|
+
"default": "./Stepper/index.mjs"
|
|
1801
|
+
},
|
|
1802
1802
|
"default": {
|
|
1803
1803
|
"types": "./Stepper/index.d.mts",
|
|
1804
1804
|
"default": "./Stepper/index.mjs"
|
|
1805
1805
|
}
|
|
1806
1806
|
},
|
|
1807
1807
|
"./SvgIcon": {
|
|
1808
|
-
"import": {
|
|
1809
|
-
"types": "./SvgIcon/index.d.mts",
|
|
1810
|
-
"default": "./SvgIcon/index.mjs"
|
|
1811
|
-
},
|
|
1812
1808
|
"require": {
|
|
1813
1809
|
"types": "./SvgIcon/index.d.ts",
|
|
1814
1810
|
"default": "./SvgIcon/index.js"
|
|
1815
1811
|
},
|
|
1812
|
+
"import": {
|
|
1813
|
+
"types": "./SvgIcon/index.d.mts",
|
|
1814
|
+
"default": "./SvgIcon/index.mjs"
|
|
1815
|
+
},
|
|
1816
1816
|
"default": {
|
|
1817
1817
|
"types": "./SvgIcon/index.d.mts",
|
|
1818
1818
|
"default": "./SvgIcon/index.mjs"
|
|
1819
1819
|
}
|
|
1820
1820
|
},
|
|
1821
1821
|
"./SwipeableDrawer": {
|
|
1822
|
-
"import": {
|
|
1823
|
-
"types": "./SwipeableDrawer/index.d.mts",
|
|
1824
|
-
"default": "./SwipeableDrawer/index.mjs"
|
|
1825
|
-
},
|
|
1826
1822
|
"require": {
|
|
1827
1823
|
"types": "./SwipeableDrawer/index.d.ts",
|
|
1828
1824
|
"default": "./SwipeableDrawer/index.js"
|
|
1829
1825
|
},
|
|
1826
|
+
"import": {
|
|
1827
|
+
"types": "./SwipeableDrawer/index.d.mts",
|
|
1828
|
+
"default": "./SwipeableDrawer/index.mjs"
|
|
1829
|
+
},
|
|
1830
1830
|
"default": {
|
|
1831
1831
|
"types": "./SwipeableDrawer/index.d.mts",
|
|
1832
1832
|
"default": "./SwipeableDrawer/index.mjs"
|
|
1833
1833
|
}
|
|
1834
1834
|
},
|
|
1835
1835
|
"./Switch": {
|
|
1836
|
-
"import": {
|
|
1837
|
-
"types": "./Switch/index.d.mts",
|
|
1838
|
-
"default": "./Switch/index.mjs"
|
|
1839
|
-
},
|
|
1840
1836
|
"require": {
|
|
1841
1837
|
"types": "./Switch/index.d.ts",
|
|
1842
1838
|
"default": "./Switch/index.js"
|
|
1843
1839
|
},
|
|
1840
|
+
"import": {
|
|
1841
|
+
"types": "./Switch/index.d.mts",
|
|
1842
|
+
"default": "./Switch/index.mjs"
|
|
1843
|
+
},
|
|
1844
1844
|
"default": {
|
|
1845
1845
|
"types": "./Switch/index.d.mts",
|
|
1846
1846
|
"default": "./Switch/index.mjs"
|
|
1847
1847
|
}
|
|
1848
1848
|
},
|
|
1849
1849
|
"./Tab": {
|
|
1850
|
-
"import": {
|
|
1851
|
-
"types": "./Tab/index.d.mts",
|
|
1852
|
-
"default": "./Tab/index.mjs"
|
|
1853
|
-
},
|
|
1854
1850
|
"require": {
|
|
1855
1851
|
"types": "./Tab/index.d.ts",
|
|
1856
1852
|
"default": "./Tab/index.js"
|
|
1857
1853
|
},
|
|
1854
|
+
"import": {
|
|
1855
|
+
"types": "./Tab/index.d.mts",
|
|
1856
|
+
"default": "./Tab/index.mjs"
|
|
1857
|
+
},
|
|
1858
1858
|
"default": {
|
|
1859
1859
|
"types": "./Tab/index.d.mts",
|
|
1860
1860
|
"default": "./Tab/index.mjs"
|
|
1861
1861
|
}
|
|
1862
1862
|
},
|
|
1863
1863
|
"./TabScrollButton": {
|
|
1864
|
-
"import": {
|
|
1865
|
-
"types": "./TabScrollButton/index.d.mts",
|
|
1866
|
-
"default": "./TabScrollButton/index.mjs"
|
|
1867
|
-
},
|
|
1868
1864
|
"require": {
|
|
1869
1865
|
"types": "./TabScrollButton/index.d.ts",
|
|
1870
1866
|
"default": "./TabScrollButton/index.js"
|
|
1871
1867
|
},
|
|
1868
|
+
"import": {
|
|
1869
|
+
"types": "./TabScrollButton/index.d.mts",
|
|
1870
|
+
"default": "./TabScrollButton/index.mjs"
|
|
1871
|
+
},
|
|
1872
1872
|
"default": {
|
|
1873
1873
|
"types": "./TabScrollButton/index.d.mts",
|
|
1874
1874
|
"default": "./TabScrollButton/index.mjs"
|
|
1875
1875
|
}
|
|
1876
1876
|
},
|
|
1877
1877
|
"./Table": {
|
|
1878
|
-
"import": {
|
|
1879
|
-
"types": "./Table/index.d.mts",
|
|
1880
|
-
"default": "./Table/index.mjs"
|
|
1881
|
-
},
|
|
1882
1878
|
"require": {
|
|
1883
1879
|
"types": "./Table/index.d.ts",
|
|
1884
1880
|
"default": "./Table/index.js"
|
|
1885
1881
|
},
|
|
1882
|
+
"import": {
|
|
1883
|
+
"types": "./Table/index.d.mts",
|
|
1884
|
+
"default": "./Table/index.mjs"
|
|
1885
|
+
},
|
|
1886
1886
|
"default": {
|
|
1887
1887
|
"types": "./Table/index.d.mts",
|
|
1888
1888
|
"default": "./Table/index.mjs"
|
|
1889
1889
|
}
|
|
1890
1890
|
},
|
|
1891
1891
|
"./TableBody": {
|
|
1892
|
-
"import": {
|
|
1893
|
-
"types": "./TableBody/index.d.mts",
|
|
1894
|
-
"default": "./TableBody/index.mjs"
|
|
1895
|
-
},
|
|
1896
1892
|
"require": {
|
|
1897
1893
|
"types": "./TableBody/index.d.ts",
|
|
1898
1894
|
"default": "./TableBody/index.js"
|
|
1899
1895
|
},
|
|
1896
|
+
"import": {
|
|
1897
|
+
"types": "./TableBody/index.d.mts",
|
|
1898
|
+
"default": "./TableBody/index.mjs"
|
|
1899
|
+
},
|
|
1900
1900
|
"default": {
|
|
1901
1901
|
"types": "./TableBody/index.d.mts",
|
|
1902
1902
|
"default": "./TableBody/index.mjs"
|
|
1903
1903
|
}
|
|
1904
1904
|
},
|
|
1905
1905
|
"./TableCell": {
|
|
1906
|
-
"import": {
|
|
1907
|
-
"types": "./TableCell/index.d.mts",
|
|
1908
|
-
"default": "./TableCell/index.mjs"
|
|
1909
|
-
},
|
|
1910
1906
|
"require": {
|
|
1911
1907
|
"types": "./TableCell/index.d.ts",
|
|
1912
1908
|
"default": "./TableCell/index.js"
|
|
1913
1909
|
},
|
|
1910
|
+
"import": {
|
|
1911
|
+
"types": "./TableCell/index.d.mts",
|
|
1912
|
+
"default": "./TableCell/index.mjs"
|
|
1913
|
+
},
|
|
1914
1914
|
"default": {
|
|
1915
1915
|
"types": "./TableCell/index.d.mts",
|
|
1916
1916
|
"default": "./TableCell/index.mjs"
|
|
1917
1917
|
}
|
|
1918
1918
|
},
|
|
1919
1919
|
"./TableContainer": {
|
|
1920
|
-
"import": {
|
|
1921
|
-
"types": "./TableContainer/index.d.mts",
|
|
1922
|
-
"default": "./TableContainer/index.mjs"
|
|
1923
|
-
},
|
|
1924
1920
|
"require": {
|
|
1925
1921
|
"types": "./TableContainer/index.d.ts",
|
|
1926
1922
|
"default": "./TableContainer/index.js"
|
|
1927
1923
|
},
|
|
1924
|
+
"import": {
|
|
1925
|
+
"types": "./TableContainer/index.d.mts",
|
|
1926
|
+
"default": "./TableContainer/index.mjs"
|
|
1927
|
+
},
|
|
1928
1928
|
"default": {
|
|
1929
1929
|
"types": "./TableContainer/index.d.mts",
|
|
1930
1930
|
"default": "./TableContainer/index.mjs"
|
|
1931
1931
|
}
|
|
1932
1932
|
},
|
|
1933
1933
|
"./TableFooter": {
|
|
1934
|
-
"import": {
|
|
1935
|
-
"types": "./TableFooter/index.d.mts",
|
|
1936
|
-
"default": "./TableFooter/index.mjs"
|
|
1937
|
-
},
|
|
1938
1934
|
"require": {
|
|
1939
1935
|
"types": "./TableFooter/index.d.ts",
|
|
1940
1936
|
"default": "./TableFooter/index.js"
|
|
1941
1937
|
},
|
|
1938
|
+
"import": {
|
|
1939
|
+
"types": "./TableFooter/index.d.mts",
|
|
1940
|
+
"default": "./TableFooter/index.mjs"
|
|
1941
|
+
},
|
|
1942
1942
|
"default": {
|
|
1943
1943
|
"types": "./TableFooter/index.d.mts",
|
|
1944
1944
|
"default": "./TableFooter/index.mjs"
|
|
1945
1945
|
}
|
|
1946
1946
|
},
|
|
1947
1947
|
"./TableHead": {
|
|
1948
|
-
"import": {
|
|
1949
|
-
"types": "./TableHead/index.d.mts",
|
|
1950
|
-
"default": "./TableHead/index.mjs"
|
|
1951
|
-
},
|
|
1952
1948
|
"require": {
|
|
1953
1949
|
"types": "./TableHead/index.d.ts",
|
|
1954
1950
|
"default": "./TableHead/index.js"
|
|
1955
1951
|
},
|
|
1952
|
+
"import": {
|
|
1953
|
+
"types": "./TableHead/index.d.mts",
|
|
1954
|
+
"default": "./TableHead/index.mjs"
|
|
1955
|
+
},
|
|
1956
1956
|
"default": {
|
|
1957
1957
|
"types": "./TableHead/index.d.mts",
|
|
1958
1958
|
"default": "./TableHead/index.mjs"
|
|
1959
1959
|
}
|
|
1960
1960
|
},
|
|
1961
1961
|
"./TablePagination": {
|
|
1962
|
-
"import": {
|
|
1963
|
-
"types": "./TablePagination/index.d.mts",
|
|
1964
|
-
"default": "./TablePagination/index.mjs"
|
|
1965
|
-
},
|
|
1966
1962
|
"require": {
|
|
1967
1963
|
"types": "./TablePagination/index.d.ts",
|
|
1968
1964
|
"default": "./TablePagination/index.js"
|
|
1969
1965
|
},
|
|
1966
|
+
"import": {
|
|
1967
|
+
"types": "./TablePagination/index.d.mts",
|
|
1968
|
+
"default": "./TablePagination/index.mjs"
|
|
1969
|
+
},
|
|
1970
1970
|
"default": {
|
|
1971
1971
|
"types": "./TablePagination/index.d.mts",
|
|
1972
1972
|
"default": "./TablePagination/index.mjs"
|
|
1973
1973
|
}
|
|
1974
1974
|
},
|
|
1975
1975
|
"./TablePaginationActions": {
|
|
1976
|
-
"import": {
|
|
1977
|
-
"types": "./TablePaginationActions/index.d.mts",
|
|
1978
|
-
"default": "./TablePaginationActions/index.mjs"
|
|
1979
|
-
},
|
|
1980
1976
|
"require": {
|
|
1981
1977
|
"types": "./TablePaginationActions/index.d.ts",
|
|
1982
1978
|
"default": "./TablePaginationActions/index.js"
|
|
1983
1979
|
},
|
|
1980
|
+
"import": {
|
|
1981
|
+
"types": "./TablePaginationActions/index.d.mts",
|
|
1982
|
+
"default": "./TablePaginationActions/index.mjs"
|
|
1983
|
+
},
|
|
1984
1984
|
"default": {
|
|
1985
1985
|
"types": "./TablePaginationActions/index.d.mts",
|
|
1986
1986
|
"default": "./TablePaginationActions/index.mjs"
|
|
1987
1987
|
}
|
|
1988
1988
|
},
|
|
1989
1989
|
"./TableRow": {
|
|
1990
|
-
"import": {
|
|
1991
|
-
"types": "./TableRow/index.d.mts",
|
|
1992
|
-
"default": "./TableRow/index.mjs"
|
|
1993
|
-
},
|
|
1994
1990
|
"require": {
|
|
1995
1991
|
"types": "./TableRow/index.d.ts",
|
|
1996
1992
|
"default": "./TableRow/index.js"
|
|
1997
1993
|
},
|
|
1994
|
+
"import": {
|
|
1995
|
+
"types": "./TableRow/index.d.mts",
|
|
1996
|
+
"default": "./TableRow/index.mjs"
|
|
1997
|
+
},
|
|
1998
1998
|
"default": {
|
|
1999
1999
|
"types": "./TableRow/index.d.mts",
|
|
2000
2000
|
"default": "./TableRow/index.mjs"
|
|
2001
2001
|
}
|
|
2002
2002
|
},
|
|
2003
2003
|
"./TableSortLabel": {
|
|
2004
|
-
"import": {
|
|
2005
|
-
"types": "./TableSortLabel/index.d.mts",
|
|
2006
|
-
"default": "./TableSortLabel/index.mjs"
|
|
2007
|
-
},
|
|
2008
2004
|
"require": {
|
|
2009
2005
|
"types": "./TableSortLabel/index.d.ts",
|
|
2010
2006
|
"default": "./TableSortLabel/index.js"
|
|
2011
2007
|
},
|
|
2008
|
+
"import": {
|
|
2009
|
+
"types": "./TableSortLabel/index.d.mts",
|
|
2010
|
+
"default": "./TableSortLabel/index.mjs"
|
|
2011
|
+
},
|
|
2012
2012
|
"default": {
|
|
2013
2013
|
"types": "./TableSortLabel/index.d.mts",
|
|
2014
2014
|
"default": "./TableSortLabel/index.mjs"
|
|
2015
2015
|
}
|
|
2016
2016
|
},
|
|
2017
2017
|
"./Tabs": {
|
|
2018
|
-
"import": {
|
|
2019
|
-
"types": "./Tabs/index.d.mts",
|
|
2020
|
-
"default": "./Tabs/index.mjs"
|
|
2021
|
-
},
|
|
2022
2018
|
"require": {
|
|
2023
2019
|
"types": "./Tabs/index.d.ts",
|
|
2024
2020
|
"default": "./Tabs/index.js"
|
|
2025
2021
|
},
|
|
2022
|
+
"import": {
|
|
2023
|
+
"types": "./Tabs/index.d.mts",
|
|
2024
|
+
"default": "./Tabs/index.mjs"
|
|
2025
|
+
},
|
|
2026
2026
|
"default": {
|
|
2027
2027
|
"types": "./Tabs/index.d.mts",
|
|
2028
2028
|
"default": "./Tabs/index.mjs"
|
|
2029
2029
|
}
|
|
2030
2030
|
},
|
|
2031
2031
|
"./TextField": {
|
|
2032
|
-
"import": {
|
|
2033
|
-
"types": "./TextField/index.d.mts",
|
|
2034
|
-
"default": "./TextField/index.mjs"
|
|
2035
|
-
},
|
|
2036
2032
|
"require": {
|
|
2037
2033
|
"types": "./TextField/index.d.ts",
|
|
2038
2034
|
"default": "./TextField/index.js"
|
|
2039
2035
|
},
|
|
2036
|
+
"import": {
|
|
2037
|
+
"types": "./TextField/index.d.mts",
|
|
2038
|
+
"default": "./TextField/index.mjs"
|
|
2039
|
+
},
|
|
2040
2040
|
"default": {
|
|
2041
2041
|
"types": "./TextField/index.d.mts",
|
|
2042
2042
|
"default": "./TextField/index.mjs"
|
|
2043
2043
|
}
|
|
2044
2044
|
},
|
|
2045
2045
|
"./TextareaAutosize": {
|
|
2046
|
-
"import": {
|
|
2047
|
-
"types": "./TextareaAutosize/index.d.mts",
|
|
2048
|
-
"default": "./TextareaAutosize/index.mjs"
|
|
2049
|
-
},
|
|
2050
2046
|
"require": {
|
|
2051
2047
|
"types": "./TextareaAutosize/index.d.ts",
|
|
2052
2048
|
"default": "./TextareaAutosize/index.js"
|
|
2053
2049
|
},
|
|
2050
|
+
"import": {
|
|
2051
|
+
"types": "./TextareaAutosize/index.d.mts",
|
|
2052
|
+
"default": "./TextareaAutosize/index.mjs"
|
|
2053
|
+
},
|
|
2054
2054
|
"default": {
|
|
2055
2055
|
"types": "./TextareaAutosize/index.d.mts",
|
|
2056
2056
|
"default": "./TextareaAutosize/index.mjs"
|
|
2057
2057
|
}
|
|
2058
2058
|
},
|
|
2059
2059
|
"./ToggleButton": {
|
|
2060
|
-
"import": {
|
|
2061
|
-
"types": "./ToggleButton/index.d.mts",
|
|
2062
|
-
"default": "./ToggleButton/index.mjs"
|
|
2063
|
-
},
|
|
2064
2060
|
"require": {
|
|
2065
2061
|
"types": "./ToggleButton/index.d.ts",
|
|
2066
2062
|
"default": "./ToggleButton/index.js"
|
|
2067
2063
|
},
|
|
2064
|
+
"import": {
|
|
2065
|
+
"types": "./ToggleButton/index.d.mts",
|
|
2066
|
+
"default": "./ToggleButton/index.mjs"
|
|
2067
|
+
},
|
|
2068
2068
|
"default": {
|
|
2069
2069
|
"types": "./ToggleButton/index.d.mts",
|
|
2070
2070
|
"default": "./ToggleButton/index.mjs"
|
|
2071
2071
|
}
|
|
2072
2072
|
},
|
|
2073
2073
|
"./ToggleButtonGroup": {
|
|
2074
|
-
"import": {
|
|
2075
|
-
"types": "./ToggleButtonGroup/index.d.mts",
|
|
2076
|
-
"default": "./ToggleButtonGroup/index.mjs"
|
|
2077
|
-
},
|
|
2078
2074
|
"require": {
|
|
2079
2075
|
"types": "./ToggleButtonGroup/index.d.ts",
|
|
2080
2076
|
"default": "./ToggleButtonGroup/index.js"
|
|
2081
2077
|
},
|
|
2078
|
+
"import": {
|
|
2079
|
+
"types": "./ToggleButtonGroup/index.d.mts",
|
|
2080
|
+
"default": "./ToggleButtonGroup/index.mjs"
|
|
2081
|
+
},
|
|
2082
2082
|
"default": {
|
|
2083
2083
|
"types": "./ToggleButtonGroup/index.d.mts",
|
|
2084
2084
|
"default": "./ToggleButtonGroup/index.mjs"
|
|
2085
2085
|
}
|
|
2086
2086
|
},
|
|
2087
2087
|
"./Toolbar": {
|
|
2088
|
-
"import": {
|
|
2089
|
-
"types": "./Toolbar/index.d.mts",
|
|
2090
|
-
"default": "./Toolbar/index.mjs"
|
|
2091
|
-
},
|
|
2092
2088
|
"require": {
|
|
2093
2089
|
"types": "./Toolbar/index.d.ts",
|
|
2094
2090
|
"default": "./Toolbar/index.js"
|
|
2095
2091
|
},
|
|
2092
|
+
"import": {
|
|
2093
|
+
"types": "./Toolbar/index.d.mts",
|
|
2094
|
+
"default": "./Toolbar/index.mjs"
|
|
2095
|
+
},
|
|
2096
2096
|
"default": {
|
|
2097
2097
|
"types": "./Toolbar/index.d.mts",
|
|
2098
2098
|
"default": "./Toolbar/index.mjs"
|
|
2099
2099
|
}
|
|
2100
2100
|
},
|
|
2101
2101
|
"./Tooltip": {
|
|
2102
|
-
"import": {
|
|
2103
|
-
"types": "./Tooltip/index.d.mts",
|
|
2104
|
-
"default": "./Tooltip/index.mjs"
|
|
2105
|
-
},
|
|
2106
2102
|
"require": {
|
|
2107
2103
|
"types": "./Tooltip/index.d.ts",
|
|
2108
2104
|
"default": "./Tooltip/index.js"
|
|
2109
2105
|
},
|
|
2106
|
+
"import": {
|
|
2107
|
+
"types": "./Tooltip/index.d.mts",
|
|
2108
|
+
"default": "./Tooltip/index.mjs"
|
|
2109
|
+
},
|
|
2110
2110
|
"default": {
|
|
2111
2111
|
"types": "./Tooltip/index.d.mts",
|
|
2112
2112
|
"default": "./Tooltip/index.mjs"
|
|
2113
2113
|
}
|
|
2114
2114
|
},
|
|
2115
2115
|
"./Typography": {
|
|
2116
|
-
"import": {
|
|
2117
|
-
"types": "./Typography/index.d.mts",
|
|
2118
|
-
"default": "./Typography/index.mjs"
|
|
2119
|
-
},
|
|
2120
2116
|
"require": {
|
|
2121
2117
|
"types": "./Typography/index.d.ts",
|
|
2122
2118
|
"default": "./Typography/index.js"
|
|
2123
2119
|
},
|
|
2120
|
+
"import": {
|
|
2121
|
+
"types": "./Typography/index.d.mts",
|
|
2122
|
+
"default": "./Typography/index.mjs"
|
|
2123
|
+
},
|
|
2124
2124
|
"default": {
|
|
2125
2125
|
"types": "./Typography/index.d.mts",
|
|
2126
2126
|
"default": "./Typography/index.mjs"
|
|
2127
2127
|
}
|
|
2128
2128
|
},
|
|
2129
2129
|
"./Unstable_TrapFocus": {
|
|
2130
|
-
"import": {
|
|
2131
|
-
"types": "./Unstable_TrapFocus/index.d.mts",
|
|
2132
|
-
"default": "./Unstable_TrapFocus/index.mjs"
|
|
2133
|
-
},
|
|
2134
2130
|
"require": {
|
|
2135
2131
|
"types": "./Unstable_TrapFocus/index.d.ts",
|
|
2136
2132
|
"default": "./Unstable_TrapFocus/index.js"
|
|
2137
2133
|
},
|
|
2134
|
+
"import": {
|
|
2135
|
+
"types": "./Unstable_TrapFocus/index.d.mts",
|
|
2136
|
+
"default": "./Unstable_TrapFocus/index.mjs"
|
|
2137
|
+
},
|
|
2138
2138
|
"default": {
|
|
2139
2139
|
"types": "./Unstable_TrapFocus/index.d.mts",
|
|
2140
2140
|
"default": "./Unstable_TrapFocus/index.mjs"
|
|
2141
2141
|
}
|
|
2142
2142
|
},
|
|
2143
2143
|
"./Zoom": {
|
|
2144
|
-
"import": {
|
|
2145
|
-
"types": "./Zoom/index.d.mts",
|
|
2146
|
-
"default": "./Zoom/index.mjs"
|
|
2147
|
-
},
|
|
2148
2144
|
"require": {
|
|
2149
2145
|
"types": "./Zoom/index.d.ts",
|
|
2150
2146
|
"default": "./Zoom/index.js"
|
|
2151
2147
|
},
|
|
2148
|
+
"import": {
|
|
2149
|
+
"types": "./Zoom/index.d.mts",
|
|
2150
|
+
"default": "./Zoom/index.mjs"
|
|
2151
|
+
},
|
|
2152
2152
|
"default": {
|
|
2153
2153
|
"types": "./Zoom/index.d.mts",
|
|
2154
2154
|
"default": "./Zoom/index.mjs"
|
|
2155
2155
|
}
|
|
2156
2156
|
},
|
|
2157
2157
|
"./colors": {
|
|
2158
|
-
"import": {
|
|
2159
|
-
"types": "./colors/index.d.mts",
|
|
2160
|
-
"default": "./colors/index.mjs"
|
|
2161
|
-
},
|
|
2162
2158
|
"require": {
|
|
2163
2159
|
"types": "./colors/index.d.ts",
|
|
2164
2160
|
"default": "./colors/index.js"
|
|
2165
2161
|
},
|
|
2162
|
+
"import": {
|
|
2163
|
+
"types": "./colors/index.d.mts",
|
|
2164
|
+
"default": "./colors/index.mjs"
|
|
2165
|
+
},
|
|
2166
2166
|
"default": {
|
|
2167
2167
|
"types": "./colors/index.d.mts",
|
|
2168
2168
|
"default": "./colors/index.mjs"
|
|
2169
2169
|
}
|
|
2170
2170
|
},
|
|
2171
2171
|
"./styles": {
|
|
2172
|
-
"import": {
|
|
2173
|
-
"types": "./styles/index.d.mts",
|
|
2174
|
-
"default": "./styles/index.mjs"
|
|
2175
|
-
},
|
|
2176
2172
|
"require": {
|
|
2177
2173
|
"types": "./styles/index.d.ts",
|
|
2178
2174
|
"default": "./styles/index.js"
|
|
2179
2175
|
},
|
|
2176
|
+
"import": {
|
|
2177
|
+
"types": "./styles/index.d.mts",
|
|
2178
|
+
"default": "./styles/index.mjs"
|
|
2179
|
+
},
|
|
2180
2180
|
"default": {
|
|
2181
2181
|
"types": "./styles/index.d.mts",
|
|
2182
2182
|
"default": "./styles/index.mjs"
|
|
2183
2183
|
}
|
|
2184
2184
|
},
|
|
2185
2185
|
"./useAutocomplete": {
|
|
2186
|
-
"import": {
|
|
2187
|
-
"types": "./useAutocomplete/index.d.mts",
|
|
2188
|
-
"default": "./useAutocomplete/index.mjs"
|
|
2189
|
-
},
|
|
2190
2186
|
"require": {
|
|
2191
2187
|
"types": "./useAutocomplete/index.d.ts",
|
|
2192
2188
|
"default": "./useAutocomplete/index.js"
|
|
2193
2189
|
},
|
|
2190
|
+
"import": {
|
|
2191
|
+
"types": "./useAutocomplete/index.d.mts",
|
|
2192
|
+
"default": "./useAutocomplete/index.mjs"
|
|
2193
|
+
},
|
|
2194
2194
|
"default": {
|
|
2195
2195
|
"types": "./useAutocomplete/index.d.mts",
|
|
2196
2196
|
"default": "./useAutocomplete/index.mjs"
|
|
2197
2197
|
}
|
|
2198
2198
|
},
|
|
2199
2199
|
"./useMediaQuery": {
|
|
2200
|
-
"import": {
|
|
2201
|
-
"types": "./useMediaQuery/index.d.mts",
|
|
2202
|
-
"default": "./useMediaQuery/index.mjs"
|
|
2203
|
-
},
|
|
2204
2200
|
"require": {
|
|
2205
2201
|
"types": "./useMediaQuery/index.d.ts",
|
|
2206
2202
|
"default": "./useMediaQuery/index.js"
|
|
2207
2203
|
},
|
|
2204
|
+
"import": {
|
|
2205
|
+
"types": "./useMediaQuery/index.d.mts",
|
|
2206
|
+
"default": "./useMediaQuery/index.mjs"
|
|
2207
|
+
},
|
|
2208
2208
|
"default": {
|
|
2209
2209
|
"types": "./useMediaQuery/index.d.mts",
|
|
2210
2210
|
"default": "./useMediaQuery/index.mjs"
|
|
2211
2211
|
}
|
|
2212
2212
|
},
|
|
2213
2213
|
"./usePagination": {
|
|
2214
|
-
"import": {
|
|
2215
|
-
"types": "./usePagination/index.d.mts",
|
|
2216
|
-
"default": "./usePagination/index.mjs"
|
|
2217
|
-
},
|
|
2218
2214
|
"require": {
|
|
2219
2215
|
"types": "./usePagination/index.d.ts",
|
|
2220
2216
|
"default": "./usePagination/index.js"
|
|
2221
2217
|
},
|
|
2218
|
+
"import": {
|
|
2219
|
+
"types": "./usePagination/index.d.mts",
|
|
2220
|
+
"default": "./usePagination/index.mjs"
|
|
2221
|
+
},
|
|
2222
2222
|
"default": {
|
|
2223
2223
|
"types": "./usePagination/index.d.mts",
|
|
2224
2224
|
"default": "./usePagination/index.mjs"
|
|
2225
2225
|
}
|
|
2226
2226
|
},
|
|
2227
2227
|
"./useScrollTrigger": {
|
|
2228
|
-
"import": {
|
|
2229
|
-
"types": "./useScrollTrigger/index.d.mts",
|
|
2230
|
-
"default": "./useScrollTrigger/index.mjs"
|
|
2231
|
-
},
|
|
2232
2228
|
"require": {
|
|
2233
2229
|
"types": "./useScrollTrigger/index.d.ts",
|
|
2234
2230
|
"default": "./useScrollTrigger/index.js"
|
|
2235
2231
|
},
|
|
2232
|
+
"import": {
|
|
2233
|
+
"types": "./useScrollTrigger/index.d.mts",
|
|
2234
|
+
"default": "./useScrollTrigger/index.mjs"
|
|
2235
|
+
},
|
|
2236
2236
|
"default": {
|
|
2237
2237
|
"types": "./useScrollTrigger/index.d.mts",
|
|
2238
2238
|
"default": "./useScrollTrigger/index.mjs"
|
|
2239
2239
|
}
|
|
2240
2240
|
},
|
|
2241
2241
|
"./utils": {
|
|
2242
|
-
"import": {
|
|
2243
|
-
"types": "./utils/index.d.mts",
|
|
2244
|
-
"default": "./utils/index.mjs"
|
|
2245
|
-
},
|
|
2246
2242
|
"require": {
|
|
2247
2243
|
"types": "./utils/index.d.ts",
|
|
2248
2244
|
"default": "./utils/index.js"
|
|
2249
2245
|
},
|
|
2246
|
+
"import": {
|
|
2247
|
+
"types": "./utils/index.d.mts",
|
|
2248
|
+
"default": "./utils/index.mjs"
|
|
2249
|
+
},
|
|
2250
2250
|
"default": {
|
|
2251
2251
|
"types": "./utils/index.d.mts",
|
|
2252
2252
|
"default": "./utils/index.mjs"
|
package/version/index.js
CHANGED
|
@@ -4,9 +4,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.version = exports.prerelease = exports.patch = exports.minor = exports.major = exports.default = void 0;
|
|
7
|
-
const version = exports.version = "9.0.0-alpha.
|
|
7
|
+
const version = exports.version = "9.0.0-alpha.2";
|
|
8
8
|
const major = exports.major = Number("9");
|
|
9
9
|
const minor = exports.minor = Number("0");
|
|
10
10
|
const patch = exports.patch = Number("0");
|
|
11
|
-
const prerelease = exports.prerelease = "alpha.
|
|
11
|
+
const prerelease = exports.prerelease = "alpha.2";
|
|
12
12
|
var _default = exports.default = version;
|
package/version/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export const version = "9.0.0-alpha.
|
|
1
|
+
export const version = "9.0.0-alpha.2";
|
|
2
2
|
export const major = Number("9");
|
|
3
3
|
export const minor = Number("0");
|
|
4
4
|
export const patch = Number("0");
|
|
5
|
-
export const prerelease = "alpha.
|
|
5
|
+
export const prerelease = "alpha.2";
|
|
6
6
|
export default version;
|