@mui/material 6.4.2 → 6.4.3

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,24 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 6.4.3
4
+
5
+ <!-- generated comparing v6.4.2..v6.x -->
6
+
7
+ _Feb 4, 2025_
8
+
9
+ A big thanks to the 3 contributors who made this release possible.
10
+
11
+ ### `@mui/material@6.4.3`
12
+
13
+ - [LinearProgress][CircularProgress] Add variant overrides for module augmentation (#45191) @ZeeshanTamboli
14
+ - [TextField] Remove deprecated props from documentation (#45200) @sai6855
15
+
16
+ ### Core
17
+
18
+ - Fix corepack and pnpm installation in CircleCI (#45194) @DiegoAndai
19
+
20
+ All contributors of this release in alphabetical order: @DiegoAndai, @sai6855, @ZeeshanTamboli
21
+
3
22
  ## 6.4.2
4
23
 
5
24
  <!-- generated comparing v6.4.1..v6.x -->
@@ -5,6 +5,7 @@ import { InternalStandardProps as StandardProps, Theme } from '..';
5
5
  import { CircularProgressClasses } from './circularProgressClasses';
6
6
 
7
7
  export interface CircularProgressPropsColorOverrides {}
8
+ export interface CircularProgressPropsVariantOverrides {}
8
9
 
9
10
  export interface CircularProgressProps
10
11
  extends StandardProps<React.HTMLAttributes<HTMLSpanElement>, 'children'> {
@@ -55,7 +56,10 @@ export interface CircularProgressProps
55
56
  * Use indeterminate when there is no progress value.
56
57
  * @default 'indeterminate'
57
58
  */
58
- variant?: 'determinate' | 'indeterminate';
59
+ variant?: OverridableStringUnion<
60
+ 'determinate' | 'indeterminate',
61
+ CircularProgressPropsVariantOverrides
62
+ >;
59
63
  }
60
64
 
61
65
  /**
@@ -5,6 +5,7 @@ import { InternalStandardProps as StandardProps, Theme } from '..';
5
5
  import { LinearProgressClasses } from './linearProgressClasses';
6
6
 
7
7
  export interface LinearProgressPropsColorOverrides {}
8
+ export interface LinearProgressPropsVariantOverrides {}
8
9
 
9
10
  export interface LinearProgressProps
10
11
  extends StandardProps<React.HTMLAttributes<HTMLSpanElement>, 'children'> {
@@ -41,7 +42,10 @@ export interface LinearProgressProps
41
42
  * Use indeterminate or query when there is no progress value.
42
43
  * @default 'indeterminate'
43
44
  */
44
- variant?: 'determinate' | 'indeterminate' | 'buffer' | 'query';
45
+ variant?: OverridableStringUnion<
46
+ 'determinate' | 'indeterminate' | 'buffer' | 'query',
47
+ LinearProgressPropsVariantOverrides
48
+ >;
45
49
  }
46
50
 
47
51
  /**
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.4.2
2
+ * @mui/material v6.4.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.4.2
2
+ * @mui/material v6.4.3
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.2";
1
+ export const version = "6.4.3";
2
2
  export const major = Number("6");
3
3
  export const minor = Number("4");
4
- export const patch = Number("2");
4
+ export const patch = Number("3");
5
5
  export const prerelease = undefined;
6
6
  export default version;
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.4.2
2
+ * @mui/material v6.4.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -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.2";
7
+ const version = exports.version = "6.4.3";
8
8
  const major = exports.major = Number("6");
9
9
  const minor = exports.minor = Number("4");
10
- const patch = exports.patch = Number("2");
10
+ const patch = exports.patch = Number("3");
11
11
  const prerelease = exports.prerelease = undefined;
12
12
  var _default = exports.default = version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/material",
3
- "version": "6.4.2",
3
+ "version": "6.4.3",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "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.",
@@ -35,10 +35,10 @@
35
35
  "prop-types": "^15.8.1",
36
36
  "react-is": "^19.0.0",
37
37
  "react-transition-group": "^4.4.5",
38
- "@mui/core-downloads-tracker": "^6.4.2",
39
- "@mui/system": "^6.4.2",
38
+ "@mui/system": "^6.4.3",
39
+ "@mui/core-downloads-tracker": "^6.4.3",
40
40
  "@mui/types": "^7.2.21",
41
- "@mui/utils": "^6.4.2"
41
+ "@mui/utils": "^6.4.3"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@emotion/react": "^11.5.0",
@@ -46,7 +46,7 @@
46
46
  "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
47
47
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
48
48
  "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
49
- "@mui/material-pigment-css": "^6.4.2"
49
+ "@mui/material-pigment-css": "^6.4.3"
50
50
  },
51
51
  "peerDependenciesMeta": {
52
52
  "@types/react": {
package/version/index.js CHANGED
@@ -1,6 +1,6 @@
1
- export const version = "6.4.2";
1
+ export const version = "6.4.3";
2
2
  export const major = Number("6");
3
3
  export const minor = Number("4");
4
- export const patch = Number("2");
4
+ export const patch = Number("3");
5
5
  export const prerelease = undefined;
6
6
  export default version;