@mui/material 7.1.1 → 7.1.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,21 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 7.1.2
4
+
5
+ _Jun 18, 2025_
6
+
7
+ A big thanks to the 2 contributors who made this release possible.
8
+
9
+ ### `@mui/material@7.1.2`
10
+
11
+ - [Chip] Fix handling on event handlers (#46263) @sai6855
12
+
13
+ ### Docs
14
+
15
+ - Fix fade modal demo (#46271) @brijeshb42
16
+
17
+ All contributors of this release in alphabetical order: @brijeshb42, @sai6855
18
+
3
19
  ## 7.1.1
4
20
 
5
21
  <!-- generated comparing v7.1.0..master -->
package/Chip/Chip.js CHANGED
@@ -486,15 +486,15 @@ const Chip = /*#__PURE__*/React.forwardRef(function Chip(inProps, ref) {
486
486
  ...handlers,
487
487
  onClick: event => {
488
488
  handlers.onClick?.(event);
489
- onClick(event);
489
+ onClick?.(event);
490
490
  },
491
491
  onKeyDown: event => {
492
492
  handlers.onKeyDown?.(event);
493
- handleKeyDown(event);
493
+ handleKeyDown?.(event);
494
494
  },
495
495
  onKeyUp: event => {
496
496
  handlers.onKeyUp?.(event);
497
- handleKeyUp(event);
497
+ handleKeyUp?.(event);
498
498
  }
499
499
  })
500
500
  });
package/esm/Chip/Chip.js CHANGED
@@ -479,15 +479,15 @@ const Chip = /*#__PURE__*/React.forwardRef(function Chip(inProps, ref) {
479
479
  ...handlers,
480
480
  onClick: event => {
481
481
  handlers.onClick?.(event);
482
- onClick(event);
482
+ onClick?.(event);
483
483
  },
484
484
  onKeyDown: event => {
485
485
  handlers.onKeyDown?.(event);
486
- handleKeyDown(event);
486
+ handleKeyDown?.(event);
487
487
  },
488
488
  onKeyUp: event => {
489
489
  handlers.onKeyUp?.(event);
490
- handleKeyUp(event);
490
+ handleKeyUp?.(event);
491
491
  }
492
492
  })
493
493
  });
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v7.1.1
2
+ * @mui/material v7.1.2
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 = "7.1.1";
1
+ export const version = "7.1.2";
2
2
  export const major = Number("7");
3
3
  export const minor = Number("1");
4
- export const patch = Number("1");
4
+ export const patch = Number("2");
5
5
  export const prerelease = undefined;
6
6
  export default version;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v7.1.1
2
+ * @mui/material v7.1.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/material",
3
- "version": "7.1.1",
3
+ "version": "7.1.2",
4
4
  "author": "MUI Team",
5
5
  "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.",
6
6
  "main": "./index.js",
@@ -34,7 +34,7 @@
34
34
  "prop-types": "^15.8.1",
35
35
  "react-is": "^19.1.0",
36
36
  "react-transition-group": "^4.4.5",
37
- "@mui/core-downloads-tracker": "^7.1.1",
37
+ "@mui/core-downloads-tracker": "^7.1.2",
38
38
  "@mui/types": "^7.4.3",
39
39
  "@mui/system": "^7.1.1",
40
40
  "@mui/utils": "^7.1.1"
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 = "7.1.1";
7
+ const version = exports.version = "7.1.2";
8
8
  const major = exports.major = Number("7");
9
9
  const minor = exports.minor = Number("1");
10
- const patch = exports.patch = Number("1");
10
+ const patch = exports.patch = Number("2");
11
11
  const prerelease = exports.prerelease = undefined;
12
12
  var _default = exports.default = version;