@mui/x-data-grid-pro 5.15.2 → 5.15.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
@@ -3,6 +3,48 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 5.15.3
7
+
8
+ _Aug 18, 2022_
9
+
10
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 📚 Documentation improvements
13
+ - 🐞 Bugfixes
14
+
15
+ ### `@mui/x-data-grid@v5.15.3` / `@mui/x-data-grid-pro@v5.15.3` / `@mui/x-data-grid-premium@v5.15.3`
16
+
17
+ #### Changes
18
+
19
+ - [DataGrid] Fix <kbd>Enter</kbd> causing Select to re-open when commiting value (#5756) @m4theushw
20
+ - [DataGrid] Fix `GridOverlays` bypassing pointer events (#5674) @philjones88
21
+
22
+ ### `@mui/x-date-pickers@v5.0.0-beta.6` / `@mui/x-date-picker-pro@v5.0.0-beta.6`
23
+
24
+ #### Changes
25
+
26
+ - [DatePicker] Support click on day outside of current month (#5768) @alexfauquette
27
+ - [pickers] Extend `PickersActionBarProps` with `DialogActionProps` (#5798) @LukasTy
28
+
29
+ ### Docs
30
+
31
+ - [docs] Fix API anchor link scroll top (#5795) @oliviertassinari
32
+ - [docs] Fix contradiction in the free trial clause (#5732) @oliviertassinari
33
+ - [docs] Fix default value of the DataGrid `logLevel` prop to false (#5784) @HwangTaehyun
34
+ - [docs] Fix typo on the row height page (#5772) @flaviendelangle
35
+ - [docs] Improve "upgrading plans" documentation. (#5683) @joserodolfofreitas
36
+ - [docs] Link the license docs before pricing (#5726) @oliviertassinari
37
+ - [docs] Update packages README files (#5835) @cherniavskii
38
+ - [docs] Use `InputBase` for pickers inputs (#5597) @cherniavskii
39
+
40
+ ### Core
41
+
42
+ - [core] Upgrade monorepo (#5771, #5797) @cherniavskii
43
+ - [core] Various TS improvements (#5556) @flaviendelangle
44
+ - [license] Give more context in the missing license (#5731) @oliviertassinari
45
+ - [license] Only log an error type once (#5730) @oliviertassinari
46
+ - [test] Increase timeout to take print screenshot (#5799) @m4theushw
47
+
6
48
  ## 5.15.2
7
49
 
8
50
  _Aug 11, 2022_
@@ -13,7 +55,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
13
55
  - 📚 Documentation improvements
14
56
  - 🐞 Bugfixes
15
57
 
16
- ### `@mui/x-data-grid@5.15.2` / `@mui/x-data-grid-pro@5.15.2` / `@mui/x-data-grid-premium@5.15.2`
58
+ ### `@mui/x-data-grid@v5.15.2` / `@mui/x-data-grid-pro@v5.15.2` / `@mui/x-data-grid-premium@v5.15.2`
17
59
 
18
60
  #### Changes
19
61
 
@@ -478,7 +478,7 @@ DataGridProRaw.propTypes = {
478
478
 
479
479
  /**
480
480
  * Allows to pass the logging level or false to turn off logging.
481
- * @default "debug"
481
+ * @default "error" ("warn" in dev mode)
482
482
  */
483
483
  logLevel: PropTypes.oneOf(['debug', 'error', 'info', 'warn', false]),
484
484
 
package/README.md CHANGED
@@ -21,7 +21,8 @@ This component has the following peer dependencies that you will need to install
21
21
  "peerDependencies": {
22
22
  "@mui/material": "^5.4.1",
23
23
  "@mui/system": "^5.4.1",
24
- "react": "^17.0.2 || ^18.0.0"
24
+ "react": "^17.0.2 || ^18.0.0",
25
+ "react-dom": "^17.0.2 || ^18.0.0"
25
26
  },
26
27
  ```
27
28
 
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.15.2
1
+ /** @license MUI v5.15.3
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -478,7 +478,7 @@ DataGridProRaw.propTypes = {
478
478
 
479
479
  /**
480
480
  * Allows to pass the logging level or false to turn off logging.
481
- * @default "debug"
481
+ * @default "error" ("warn" in dev mode)
482
482
  */
483
483
  logLevel: PropTypes.oneOf(['debug', 'error', 'info', 'warn', false]),
484
484
 
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.15.2
1
+ /** @license MUI v5.15.3
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export var getReleaseInfo = function getReleaseInfo() {
3
- var releaseInfo = "MTY2MDE2NTIwMDAwMA==";
3
+ var releaseInfo = "MTY2MDc5MTYwMDAwMA==";
4
4
 
5
5
  if (process.env.NODE_ENV !== 'production') {
6
6
  // A simple hack to set the value in the test environment (has no build step).
@@ -478,7 +478,7 @@ DataGridProRaw.propTypes = {
478
478
 
479
479
  /**
480
480
  * Allows to pass the logging level or false to turn off logging.
481
- * @default "debug"
481
+ * @default "error" ("warn" in dev mode)
482
482
  */
483
483
  logLevel: PropTypes.oneOf(['debug', 'error', 'info', 'warn', false]),
484
484
 
package/modern/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.15.2
1
+ /** @license MUI v5.15.3
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTY2MDE2NTIwMDAwMA==";
3
+ const releaseInfo = "MTY2MDc5MTYwMDAwMA==";
4
4
 
5
5
  if (process.env.NODE_ENV !== 'production') {
6
6
  // A simple hack to set the value in the test environment (has no build step).
@@ -502,7 +502,7 @@ DataGridProRaw.propTypes = {
502
502
 
503
503
  /**
504
504
  * Allows to pass the logging level or false to turn off logging.
505
- * @default "debug"
505
+ * @default "error" ("warn" in dev mode)
506
506
  */
507
507
  logLevel: _propTypes.default.oneOf(['debug', 'error', 'info', 'warn', false]),
508
508
 
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.15.2
1
+ /** @license MUI v5.15.3
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -8,7 +8,7 @@ exports.getReleaseInfo = void 0;
8
8
  var _utils = require("@mui/utils");
9
9
 
10
10
  const getReleaseInfo = () => {
11
- const releaseInfo = "MTY2MDE2NTIwMDAwMA==";
11
+ const releaseInfo = "MTY2MDc5MTYwMDAwMA==";
12
12
 
13
13
  if (process.env.NODE_ENV !== 'production') {
14
14
  // A simple hack to set the value in the test environment (has no build step).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid-pro",
3
- "version": "5.15.2",
3
+ "version": "5.15.3",
4
4
  "description": "The Pro plan edition of the data grid component (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./node/index.js",
@@ -33,8 +33,8 @@
33
33
  "dependencies": {
34
34
  "@babel/runtime": "^7.18.6",
35
35
  "@mui/utils": "^5.4.1",
36
- "@mui/x-data-grid": "5.15.2",
37
- "@mui/x-license-pro": "5.15.0",
36
+ "@mui/x-data-grid": "5.15.3",
37
+ "@mui/x-license-pro": "5.15.3",
38
38
  "@types/format-util": "^1.0.2",
39
39
  "clsx": "^1.2.1",
40
40
  "prop-types": "^15.8.1",
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTY2MDE2NTIwMDAwMA==";
3
+ const releaseInfo = "MTY2MDc5MTYwMDAwMA==";
4
4
 
5
5
  if (process.env.NODE_ENV !== 'production') {
6
6
  // A simple hack to set the value in the test environment (has no build step).