@mui/system 6.4.8 → 6.4.9

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,36 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 6.4.9
4
+
5
+ <!-- generated comparing v6.4.8..v6.x -->
6
+
7
+ _Mar 25, 2025_
8
+
9
+ A big thanks to the 7 contributors who made this release possible.
10
+
11
+ ### `@mui/material@6.4.9`
12
+
13
+ - [Autocomplete] Fix when `onHighlightChange` is called (@ZeeshanTamboli) (#45635) @ZeeshanTamboli
14
+ - [StepLabel] Add missing root slot (#45607) @sai6855
15
+ - [Switch] Add slots and slotProps (#45628) @siriwatknp
16
+ - [TextField] Add `root` slot (#45616) @sai6855
17
+ - [Tabs] Fix modifier keys + Left/Right Arrow key from being consumed by tab navigation (#45620) @mushfiqbh
18
+
19
+ ### `@mui/codemon@6.4.9`
20
+
21
+ - Add missing deprecations in deprecations-all file (#45508) @sai6855
22
+
23
+ ### Docs
24
+
25
+ - [docs] Fix grammatical errors in support.md (#45636) @letianpailove
26
+ - [docs] Restore utility component docs from MUI Base to Material UI (#45240) @mapache-salvaje
27
+
28
+ ### Core
29
+
30
+ - [core] Prepare v6 branch for v7 stable release (#45668) @DiegoAndai
31
+
32
+ All contributors of this release in alphabetical order: @DiegoAndai, @letianpailove, @mapache-salvaje, @mushfiqbh, @sai6855, @siriwatknp, @ZeeshanTamboli
33
+
3
34
  ## 6.4.8
4
35
 
5
36
  <!-- generated comparing v6.4.7..v6.x -->
@@ -10,7 +10,7 @@ const getLegacyGridWarning = propName => {
10
10
  }
11
11
 
12
12
  // #host-reference
13
- return `The \`${propName}\` prop has been removed. See https://mui.com/material-ui/migration/upgrade-to-grid-v2/ for migration instructions.`;
13
+ return `The \`${propName}\` prop has been removed. See https://v6.mui.com/material-ui/migration/upgrade-to-grid-v2/ for migration instructions.`;
14
14
  };
15
15
  const warnedAboutProps = [];
16
16
 
package/README.md CHANGED
@@ -6,14 +6,16 @@ MUI System is a set of CSS utilities to help you build custom designs more effi
6
6
 
7
7
  Install the package in your project directory with:
8
8
 
9
- <!-- #default-branch-switch -->
9
+ <!-- #npm-tag-reference -->
10
10
 
11
11
  ```bash
12
- npm install @mui/system @emotion/react @emotion/styled
12
+ npm install @mui/system@^6.0.0 @emotion/react @emotion/styled
13
13
  ```
14
14
 
15
+ If you wish to use the latest version, remove the `@^6.0.0` suffix.
16
+
15
17
  ## Documentation
16
18
 
17
- <!-- #default-branch-switch -->
19
+ <!-- #host-reference -->
18
20
 
19
- Visit [https://mui.com/system/getting-started/](https://mui.com/system/getting-started/) to view the full documentation.
21
+ Visit [https://v6.mui.com/system/getting-started/](https://v6.mui.com/system/getting-started/) to view the full documentation.
@@ -9,7 +9,7 @@ export type Breakpoint = OverridableStringUnion<
9
9
  export const keys: Breakpoint[];
10
10
 
11
11
  // Keep in sync with docs/src/pages/customization/breakpoints/breakpoints.md
12
- // #default-branch-switch
12
+ // #host-reference
13
13
  export interface Breakpoints {
14
14
  keys: Breakpoint[];
15
15
  /**
@@ -31,13 +31,13 @@ export interface Breakpoints {
31
31
  /**
32
32
  * @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
33
33
  * @returns A media query string ready to be used with most styling solutions, which matches screen widths greater than the screen size given by the breakpoint key (inclusive).
34
- * @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-up-key-media-query)
34
+ * @see [API documentation](https://v6.mui.com/material-ui/customization/breakpoints/#theme-breakpoints-up-key-media-query)
35
35
  */
36
36
  up: (key: Breakpoint | number) => string;
37
37
  /**
38
38
  * @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
39
39
  * @returns A media query string ready to be used with most styling solutions, which matches screen widths less than the screen size given by the breakpoint key (exclusive).
40
- * @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-down-key-media-query)
40
+ * @see [API documentation](https://v6.mui.com/material-ui/customization/breakpoints/#theme-breakpoints-down-key-media-query)
41
41
  */
42
42
  down: (key: Breakpoint | number) => string;
43
43
  /**
@@ -45,14 +45,14 @@ export interface Breakpoints {
45
45
  * @param end - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
46
46
  * @returns A media query string ready to be used with most styling solutions, which matches screen widths greater than
47
47
  * the screen size given by the breakpoint key in the first argument (inclusive) and less than the screen size given by the breakpoint key in the second argument (exclusive).
48
- * @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-between-start-end-media-query)
48
+ * @see [API documentation](https://v6.mui.com/material-ui/customization/breakpoints/#theme-breakpoints-between-start-end-media-query)
49
49
  */
50
50
  between: (start: Breakpoint | number, end: Breakpoint | number) => string;
51
51
  /**
52
52
  * @param key - A breakpoint key (`xs`, `sm`, etc.) or a screen width number in px.
53
53
  * @returns A media query string ready to be used with most styling solutions, which matches screen widths starting from
54
54
  * the screen size given by the breakpoint key (inclusive) and stopping at the screen size given by the next breakpoint key (exclusive).
55
- * @see [API documentation](https://mui.com/material-ui/customization/breakpoints/#theme-breakpoints-only-key-media-query)
55
+ * @see [API documentation](https://v6.mui.com/material-ui/customization/breakpoints/#theme-breakpoints-only-key-media-query)
56
56
  */
57
57
  only: (key: Breakpoint) => string;
58
58
  /**
@@ -4,7 +4,7 @@ const getLegacyGridWarning = propName => {
4
4
  }
5
5
 
6
6
  // #host-reference
7
- return `The \`${propName}\` prop has been removed. See https://mui.com/material-ui/migration/upgrade-to-grid-v2/ for migration instructions.`;
7
+ return `The \`${propName}\` prop has been removed. See https://v6.mui.com/material-ui/migration/upgrade-to-grid-v2/ for migration instructions.`;
8
8
  };
9
9
  const warnedAboutProps = [];
10
10
 
@@ -1,6 +1,6 @@
1
- export const version = "6.4.8";
1
+ export const version = "6.4.9";
2
2
  export const major = Number("6");
3
3
  export const minor = Number("4");
4
- export const patch = Number("8");
4
+ export const patch = Number("9");
5
5
  export const prerelease = undefined;
6
6
  export default version;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v6.4.8
2
+ * @mui/system v6.4.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -4,7 +4,7 @@ const getLegacyGridWarning = propName => {
4
4
  }
5
5
 
6
6
  // #host-reference
7
- return `The \`${propName}\` prop has been removed. See https://mui.com/material-ui/migration/upgrade-to-grid-v2/ for migration instructions.`;
7
+ return `The \`${propName}\` prop has been removed. See https://v6.mui.com/material-ui/migration/upgrade-to-grid-v2/ for migration instructions.`;
8
8
  };
9
9
  const warnedAboutProps = [];
10
10
 
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/system v6.4.8
2
+ * @mui/system v6.4.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -1,6 +1,6 @@
1
- export const version = "6.4.8";
1
+ export const version = "6.4.9";
2
2
  export const major = Number("6");
3
3
  export const minor = Number("4");
4
- export const patch = Number("8");
4
+ export const patch = Number("9");
5
5
  export const prerelease = undefined;
6
6
  export default version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/system",
3
- "version": "6.4.8",
3
+ "version": "6.4.9",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "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.",
@@ -30,10 +30,10 @@
30
30
  "clsx": "^2.1.1",
31
31
  "csstype": "^3.1.3",
32
32
  "prop-types": "^15.8.1",
33
- "@mui/private-theming": "^6.4.8",
34
- "@mui/styled-engine": "^6.4.8",
33
+ "@mui/styled-engine": "^6.4.9",
35
34
  "@mui/utils": "^6.4.8",
36
- "@mui/types": "~7.2.24"
35
+ "@mui/types": "~7.2.24",
36
+ "@mui/private-theming": "^6.4.8"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@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 = "6.4.8";
7
+ const version = exports.version = "6.4.9";
8
8
  const major = exports.major = Number("6");
9
9
  const minor = exports.minor = Number("4");
10
- const patch = exports.patch = Number("8");
10
+ const patch = exports.patch = Number("9");
11
11
  const prerelease = exports.prerelease = undefined;
12
12
  var _default = exports.default = version;