@mui/docs 9.0.0-beta.0 → 9.0.0-beta.1
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.
|
@@ -165,7 +165,7 @@ export default function PropertiesList(props) {
|
|
|
165
165
|
}
|
|
166
166
|
}), requiresRef && /*#__PURE__*/_jsx(ApiWarningAlert, {
|
|
167
167
|
className: "MuiApi-collapsible prop-list-alert",
|
|
168
|
-
children: /*#__PURE__*/_jsx("
|
|
168
|
+
children: /*#__PURE__*/_jsx("div", {
|
|
169
169
|
dangerouslySetInnerHTML: {
|
|
170
170
|
__html: t('api-docs.requires-ref')
|
|
171
171
|
}
|
|
@@ -66,7 +66,7 @@ export function ClassesSection(props) {
|
|
|
66
66
|
dangerouslySetInnerHTML: {
|
|
67
67
|
__html: t('api-docs.overrideStyles')
|
|
68
68
|
}
|
|
69
|
-
}), /*#__PURE__*/_jsx("
|
|
69
|
+
}), /*#__PURE__*/_jsx("div", {
|
|
70
70
|
dangerouslySetInnerHTML: {
|
|
71
71
|
__html: t('api-docs.overrideStylesStyledComponent').replace(/{{styleOverridesLink}}/, styleOverridesLink)
|
|
72
72
|
}
|
|
@@ -61,6 +61,9 @@ export function ToggleDisplayOption(props) {
|
|
|
61
61
|
setDisplayOption,
|
|
62
62
|
sectionType
|
|
63
63
|
} = props;
|
|
64
|
+
const id = React.useId();
|
|
65
|
+
const buttonId = `${id}-view-switching-button`;
|
|
66
|
+
const menuId = `${id}-view-options-menu`;
|
|
64
67
|
const [anchorEl, setAnchorEl] = React.useState(null);
|
|
65
68
|
const [open, setOpen] = React.useState(false);
|
|
66
69
|
const handleMenuClick = event => {
|
|
@@ -80,8 +83,8 @@ export function ToggleDisplayOption(props) {
|
|
|
80
83
|
size: "small",
|
|
81
84
|
variant: "outlined",
|
|
82
85
|
color: "secondary",
|
|
83
|
-
id:
|
|
84
|
-
"aria-controls": open ?
|
|
86
|
+
id: buttonId,
|
|
87
|
+
"aria-controls": open ? menuId : undefined,
|
|
85
88
|
"aria-haspopup": "true",
|
|
86
89
|
"aria-expanded": open ? 'true' : undefined,
|
|
87
90
|
onClick: handleMenuClick,
|
|
@@ -100,7 +103,7 @@ export function ToggleDisplayOption(props) {
|
|
|
100
103
|
children: 'View:'
|
|
101
104
|
}), displayOption]
|
|
102
105
|
}), /*#__PURE__*/_jsxs(Menu, {
|
|
103
|
-
id:
|
|
106
|
+
id: menuId,
|
|
104
107
|
anchorEl: anchorEl,
|
|
105
108
|
open: open,
|
|
106
109
|
onClose: handleClose,
|
|
@@ -217,7 +217,7 @@ export default function PropertiesTable(props) {
|
|
|
217
217
|
}
|
|
218
218
|
}, key)), requiresRef && /*#__PURE__*/_jsx(ApiWarningAlert, {
|
|
219
219
|
className: "prop-table-alert",
|
|
220
|
-
children: /*#__PURE__*/_jsx("
|
|
220
|
+
children: /*#__PURE__*/_jsx("div", {
|
|
221
221
|
dangerouslySetInnerHTML: {
|
|
222
222
|
__html: t('api-docs.requires-ref')
|
|
223
223
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 9.0.0-beta.1
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v9.0.0-beta.0..master -->
|
|
6
|
+
|
|
7
|
+
_Apr 2, 2026_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 11 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@9.0.0-beta.1`
|
|
12
|
+
|
|
13
|
+
#### Breaking Changes
|
|
14
|
+
|
|
15
|
+
- [grid] Remove 'column' and 'column-reverse' options from `direction` prop (#47564) @sai6855
|
|
16
|
+
- [icons] Remove legacy `*Outline` icons (#48116) @mj12albert
|
|
17
|
+
- [list-item-icon] Use theme spacing instead of hardcoded minWidth (#46597) @adiitxa
|
|
18
|
+
|
|
19
|
+
#### Changes
|
|
20
|
+
|
|
21
|
+
- [all components] Fix `slotProps.transition` types (#48153) @mj12albert
|
|
22
|
+
- [alert][dialog] Accessibility improvements (#48113) @silviuaavram
|
|
23
|
+
- [autocomplete] Fix helper text focusing input when clicked (#48156) @mj12albert
|
|
24
|
+
- [button-base] Add `nativeButton` prop (#47989) @mj12albert
|
|
25
|
+
- [input] Fix high contrast cutoff on first character (#48150) @silviuaavram
|
|
26
|
+
- [menu] Fix empty roving focus container (#48114) @mj12albert
|
|
27
|
+
- [utils] Explicitly register roving tab items with parent (#48122) @mj12albert
|
|
28
|
+
|
|
29
|
+
### Docs
|
|
30
|
+
|
|
31
|
+
- Fix HTML validation errors (#48107) @Janpot
|
|
32
|
+
- Fix duplicate IDs and HTML validation issues (#48095) @Janpot
|
|
33
|
+
- Fix the dark mode footer row shadow for the Data Grid on the advanced components page (#48149) @arminmeh
|
|
34
|
+
- Improve jsdom section (#48098) @oliviertassinari
|
|
35
|
+
- Update "Deprecated APIs removed" section to h2 in "Upgrade to v9" docs (#48115) @ZeeshanTamboli
|
|
36
|
+
- [docs][progress] Label all demo components (#48143) @mj12albert
|
|
37
|
+
- [docs-infra] Add x-scheduler to component API URL resolver (#48097) @rita-codes
|
|
38
|
+
- [docs-infra] Resolve some redirects (#48165) @Janpot
|
|
39
|
+
- [docs-infra] Update v9 Search Index (#48028) @dav-is
|
|
40
|
+
|
|
41
|
+
### Core
|
|
42
|
+
|
|
43
|
+
- [code-infra] Discover exports for bundle size report (#48170) @Janpot
|
|
44
|
+
- [internal] Fix use of ellipsis (#48096) @oliviertassinari
|
|
45
|
+
- [test] Add screenshot test for Virtualized Table (#47947) @mnajdova
|
|
46
|
+
- [test] Remove `componentsProp` from `describeConformance` tests (#48142) @ZeeshanTamboli
|
|
47
|
+
- [theme] Do not create channel tokens for custom colors when `nativeColor` is used (#47765) @ZeeshanTamboli
|
|
48
|
+
|
|
49
|
+
All contributors of this release in alphabetical order: @adiitxa, @arminmeh, @dav-is, @Janpot, @mj12albert, @mnajdova, @oliviertassinari, @rita-codes, @sai6855, @silviuaavram, @ZeeshanTamboli
|
|
50
|
+
|
|
3
51
|
## 9.0.0-beta.0
|
|
4
52
|
|
|
5
53
|
<!-- generated comparing v9.0.0-alpha.4..master -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/docs",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.1",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "MUI Docs - Documentation building blocks.",
|
|
6
6
|
"keywords": [
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"nprogress": "^0.2.0",
|
|
31
31
|
"prop-types": "^15.8.1",
|
|
32
32
|
"stylis": "4.2.0",
|
|
33
|
-
"@mui/internal-markdown": "^3.0.
|
|
33
|
+
"@mui/internal-markdown": "^3.0.6"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@emotion/cache": "^11.14.0",
|