@mui/system 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 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 -->
@@ -17,8 +17,8 @@ function sortContainerQueries(theme, css) {
17
17
  if (!theme.containerQueries) {
18
18
  return css;
19
19
  }
20
+ const regex = /min-width:\s*([0-9.]+)/;
20
21
  const sorted = Object.keys(css).filter(key => key.startsWith('@container')).sort((a, b) => {
21
- const regex = /min-width:\s*([0-9.]+)/;
22
22
  return +(a.match(regex)?.[1] || 0) - +(b.match(regex)?.[1] || 0);
23
23
  });
24
24
  if (!sorted.length) {
@@ -8,8 +8,8 @@ export function sortContainerQueries(theme, css) {
8
8
  if (!theme.containerQueries) {
9
9
  return css;
10
10
  }
11
+ const regex = /min-width:\s*([0-9.]+)/;
11
12
  const sorted = Object.keys(css).filter(key => key.startsWith('@container')).sort((a, b) => {
12
- const regex = /min-width:\s*([0-9.]+)/;
13
13
  return +(a.match(regex)?.[1] || 0) - +(b.match(regex)?.[1] || 0);
14
14
  });
15
15
  if (!sorted.length) {
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v9.0.0-alpha.1
2
+ * @mui/system v9.0.0-alpha.2
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-alpha.1
2
+ * @mui/system v9.0.0-alpha.2
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-alpha.1",
3
+ "version": "9.0.0-alpha.2",
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-alpha.1",
32
- "@mui/styled-engine": "9.0.0-alpha.1",
33
- "@mui/types": "^9.0.0-alpha.1",
34
- "@mui/utils": "9.0.0-alpha.1"
31
+ "@mui/private-theming": "9.0.0-alpha.2",
32
+ "@mui/styled-engine": "9.0.0-alpha.2",
33
+ "@mui/types": "^9.0.0-alpha.2",
34
+ "@mui/utils": "9.0.0-alpha.2"
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-alpha.1";
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.1";
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";
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.1";
5
+ export const prerelease = "alpha.2";
6
6
  export default version;