@mui/system 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.
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/Grid/Grid.js CHANGED
@@ -45,11 +45,16 @@ process.env.NODE_ENV !== "production" ? Grid.propTypes /* remove-proptypes */ =
45
45
  */
46
46
  container: _propTypes.default.bool,
47
47
  /**
48
- * Defines the `flex-direction` style property.
49
- * It is applied for all screen sizes.
48
+ * Defines the `flex-direction` style property for the container.
49
+ *
50
+ * ⚠️ Only `row` and `row-reverse` are supported. `column` and `column-reverse` are not supported,
51
+ * because the Grid component is designed to subdivide layouts into **columns**, not rows.
52
+ *
53
+ * For vertical layouts, use `Stack` instead.
54
+ *
50
55
  * @default 'row'
51
56
  */
52
- direction: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['column-reverse', 'column', 'row-reverse', 'row']), _propTypes.default.arrayOf(_propTypes.default.oneOf(['column-reverse', 'column', 'row-reverse', 'row'])), _propTypes.default.object]),
57
+ direction: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['row-reverse', 'row']), _propTypes.default.arrayOf(_propTypes.default.oneOf(['row-reverse', 'row'])), _propTypes.default.object]),
53
58
  /**
54
59
  * Defines the offset value for the type `item` components.
55
60
  */
package/Grid/Grid.mjs CHANGED
@@ -39,11 +39,16 @@ process.env.NODE_ENV !== "production" ? Grid.propTypes /* remove-proptypes */ =
39
39
  */
40
40
  container: PropTypes.bool,
41
41
  /**
42
- * Defines the `flex-direction` style property.
43
- * It is applied for all screen sizes.
42
+ * Defines the `flex-direction` style property for the container.
43
+ *
44
+ * ⚠️ Only `row` and `row-reverse` are supported. `column` and `column-reverse` are not supported,
45
+ * because the Grid component is designed to subdivide layouts into **columns**, not rows.
46
+ *
47
+ * For vertical layouts, use `Stack` instead.
48
+ *
44
49
  * @default 'row'
45
50
  */
46
- direction: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['column-reverse', 'column', 'row-reverse', 'row']), PropTypes.arrayOf(PropTypes.oneOf(['column-reverse', 'column', 'row-reverse', 'row'])), PropTypes.object]),
51
+ direction: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['row-reverse', 'row']), PropTypes.arrayOf(PropTypes.oneOf(['row-reverse', 'row'])), PropTypes.object]),
47
52
  /**
48
53
  * Defines the offset value for the type `item` components.
49
54
  */
@@ -3,7 +3,7 @@ import { OverrideProps, PartiallyRequired } from '@mui/types';
3
3
  import { SxProps } from "../styleFunctionSx/index.mjs";
4
4
  import { Theme, Breakpoint } from "../createTheme/index.mjs";
5
5
  type ResponsiveStyleValue<T> = T | Array<T | null> | { [key in Breakpoint]?: T | null };
6
- export type GridDirection = 'row' | 'row-reverse' | 'column' | 'column-reverse';
6
+ export type GridDirection = 'row' | 'row-reverse';
7
7
  export type GridSpacing = number | string;
8
8
  export type GridWrap = 'nowrap' | 'wrap' | 'wrap-reverse';
9
9
  export type GridSize = 'auto' | 'grow' | number | false;
@@ -30,8 +30,13 @@ export interface GridBaseProps {
30
30
  */
31
31
  container?: boolean | undefined;
32
32
  /**
33
- * Defines the `flex-direction` style property.
34
- * It is applied for all screen sizes.
33
+ * Defines the `flex-direction` style property for the container.
34
+ *
35
+ * ⚠️ Only `row` and `row-reverse` are supported. `column` and `column-reverse` are not supported,
36
+ * because the Grid component is designed to subdivide layouts into **columns**, not rows.
37
+ *
38
+ * For vertical layouts, use `Stack` instead.
39
+ *
35
40
  * @default 'row'
36
41
  */
37
42
  direction?: ResponsiveStyleValue<GridDirection> | undefined;
@@ -3,7 +3,7 @@ import { OverrideProps, PartiallyRequired } from '@mui/types';
3
3
  import { SxProps } from "../styleFunctionSx/index.js";
4
4
  import { Theme, Breakpoint } from "../createTheme/index.js";
5
5
  type ResponsiveStyleValue<T> = T | Array<T | null> | { [key in Breakpoint]?: T | null };
6
- export type GridDirection = 'row' | 'row-reverse' | 'column' | 'column-reverse';
6
+ export type GridDirection = 'row' | 'row-reverse';
7
7
  export type GridSpacing = number | string;
8
8
  export type GridWrap = 'nowrap' | 'wrap' | 'wrap-reverse';
9
9
  export type GridSize = 'auto' | 'grow' | number | false;
@@ -30,8 +30,13 @@ export interface GridBaseProps {
30
30
  */
31
31
  container?: boolean | undefined;
32
32
  /**
33
- * Defines the `flex-direction` style property.
34
- * It is applied for all screen sizes.
33
+ * Defines the `flex-direction` style property for the container.
34
+ *
35
+ * ⚠️ Only `row` and `row-reverse` are supported. `column` and `column-reverse` are not supported,
36
+ * because the Grid component is designed to subdivide layouts into **columns**, not rows.
37
+ *
38
+ * For vertical layouts, use `Stack` instead.
39
+ *
35
40
  * @default 'row'
36
41
  */
37
42
  direction?: ResponsiveStyleValue<GridDirection> | undefined;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v9.0.0-beta.0
2
+ * @mui/system v9.0.0-beta.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v9.0.0-beta.0
2
+ * @mui/system v9.0.0-beta.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/system",
3
- "version": "9.0.0-beta.0",
3
+ "version": "9.0.0-beta.1",
4
4
  "author": "MUI Team",
5
5
  "description": "MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.",
6
6
  "keywords": [
@@ -28,10 +28,10 @@
28
28
  "clsx": "^2.1.1",
29
29
  "csstype": "^3.2.3",
30
30
  "prop-types": "^15.8.1",
31
- "@mui/private-theming": "9.0.0-beta.0",
32
- "@mui/styled-engine": "9.0.0-beta.0",
31
+ "@mui/private-theming": "9.0.0-beta.1",
33
32
  "@mui/types": "^9.0.0-beta.0",
34
- "@mui/utils": "9.0.0-beta.0"
33
+ "@mui/styled-engine": "9.0.0-beta.0",
34
+ "@mui/utils": "9.0.0-beta.1"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@emotion/react": "^11.5.0",
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-beta.0";
7
+ const version = exports.version = "9.0.0-beta.1";
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 = "beta.0";
11
+ const prerelease = exports.prerelease = "beta.1";
12
12
  var _default = exports.default = version;
package/version/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
- export const version = "9.0.0-beta.0";
1
+ export const version = "9.0.0-beta.1";
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 = "beta.0";
5
+ export const prerelease = "beta.1";
6
6
  export default version;