@mui/x-data-grid-premium 5.17.9 → 5.17.11

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,60 @@
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.17.11
7
+
8
+ _Nov 10, 2022_
9
+
10
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 🐞 Bugfixes
13
+
14
+ ### `@mui/x-data-grid@v5.17.11` / `@mui/x-data-grid-pro@v5.17.11` / `@mui/x-data-grid-premium@v5.17.11`
15
+
16
+ #### Changes
17
+
18
+ - [DataGrid] Fix for cell focus preventing scroll when virtualization enabled (#6622) @yaredtsy
19
+ - [DataGridPro] Opt-out for column jump back on re-order (#6697) @gavbrennan
20
+
21
+ ### `@mui/x-date-pickers@v5.0.8` / `@mui/x-date-pickers-pro@v5.0.8`
22
+
23
+ #### Changes
24
+
25
+ - [pickers] Fix pickers toolbar styling (#6793) @LukasTy
26
+
27
+ ### Docs
28
+
29
+ - [docs] Fix link to localization page (#6766) @alexfauquette
30
+
31
+ ### Core
32
+
33
+ - [license] Add new license status 'Out of scope' (#6774) @oliviertassinari
34
+
35
+ ## 5.17.10
36
+
37
+ _Nov 4, 2022_
38
+
39
+ We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
40
+
41
+ - 🌍 Add Ukrainian (uk-UA) locale to pickers (#6661) @Dufran
42
+
43
+ ### `@mui/x-data-grid@v5.17.10` / `@mui/x-data-grid-pro@v5.17.10` / `@mui/x-data-grid-premium@v5.17.10`
44
+
45
+ #### Changes
46
+
47
+ - [DataGrid] Remove `React.memo` from `GridCellCheckboxRenderer` (#6688) @mattcorner
48
+
49
+ ### `@mui/x-date-pickers@v5.0.7` / `@mui/x-date-pickers-pro@v5.0.7`
50
+
51
+ #### Changes
52
+
53
+ - [DateRangePicker] Fix input focused style and mobile behaviour (#6645) (#6714) @LukasTy
54
+ - [pickers] Add Ukrainian (uk-UA) locale on the date picker (#6661) @Dufran
55
+
56
+ ### Docs
57
+
58
+ - [docs] Mark data grid column group available (#6659) @alexfauquette
59
+
6
60
  ## 5.17.9
7
61
 
8
62
  _Oct 28, 2022_
@@ -488,6 +488,13 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
488
488
  */
489
489
  isRowSelectable: PropTypes.func,
490
490
 
491
+ /**
492
+ * If `true`, moving the mouse pointer outside the grid before releasing the mouse button
493
+ * in a column re-order action will not cause the column to jump back to its original position.
494
+ * @default false
495
+ */
496
+ keepColumnPositionIfDraggedOutside: PropTypes.bool,
497
+
491
498
  /**
492
499
  * If `true`, the selection model will retain selected rows that do not exist.
493
500
  * Useful when using server side pagination and row selections need to be retained
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.9
1
+ /** @license MUI v5.17.11
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.
@@ -488,6 +488,13 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
488
488
  */
489
489
  isRowSelectable: PropTypes.func,
490
490
 
491
+ /**
492
+ * If `true`, moving the mouse pointer outside the grid before releasing the mouse button
493
+ * in a column re-order action will not cause the column to jump back to its original position.
494
+ * @default false
495
+ */
496
+ keepColumnPositionIfDraggedOutside: PropTypes.bool,
497
+
491
498
  /**
492
499
  * If `true`, the selection model will retain selected rows that do not exist.
493
500
  * Useful when using server side pagination and row selections need to be retained
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.9
1
+ /** @license MUI v5.17.11
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 = "MTY2NjkyNjAwMDAwMA==";
3
+ var releaseInfo = "MTY2ODAyMDQwMDAwMA==";
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).
@@ -488,6 +488,13 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
488
488
  */
489
489
  isRowSelectable: PropTypes.func,
490
490
 
491
+ /**
492
+ * If `true`, moving the mouse pointer outside the grid before releasing the mouse button
493
+ * in a column re-order action will not cause the column to jump back to its original position.
494
+ * @default false
495
+ */
496
+ keepColumnPositionIfDraggedOutside: PropTypes.bool,
497
+
491
498
  /**
492
499
  * If `true`, the selection model will retain selected rows that do not exist.
493
500
  * Useful when using server side pagination and row selections need to be retained
package/modern/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.9
1
+ /** @license MUI v5.17.11
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 = "MTY2NjkyNjAwMDAwMA==";
3
+ const releaseInfo = "MTY2ODAyMDQwMDAwMA==";
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).
@@ -511,6 +511,13 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
511
511
  */
512
512
  isRowSelectable: _propTypes.default.func,
513
513
 
514
+ /**
515
+ * If `true`, moving the mouse pointer outside the grid before releasing the mouse button
516
+ * in a column re-order action will not cause the column to jump back to its original position.
517
+ * @default false
518
+ */
519
+ keepColumnPositionIfDraggedOutside: _propTypes.default.bool,
520
+
514
521
  /**
515
522
  * If `true`, the selection model will retain selected rows that do not exist.
516
523
  * Useful when using server side pagination and row selections need to be retained
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.9
1
+ /** @license MUI v5.17.11
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 = "MTY2NjkyNjAwMDAwMA==";
11
+ const releaseInfo = "MTY2ODAyMDQwMDAwMA==";
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-premium",
3
- "version": "5.17.9",
3
+ "version": "5.17.11",
4
4
  "description": "The Premium plan edition of the data grid component (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./node/index.js",
@@ -33,9 +33,9 @@
33
33
  "dependencies": {
34
34
  "@babel/runtime": "^7.18.9",
35
35
  "@mui/utils": "^5.10.3",
36
- "@mui/x-data-grid": "5.17.9",
37
- "@mui/x-data-grid-pro": "5.17.9",
38
- "@mui/x-license-pro": "5.17.0",
36
+ "@mui/x-data-grid": "5.17.11",
37
+ "@mui/x-data-grid-pro": "5.17.11",
38
+ "@mui/x-license-pro": "5.17.11",
39
39
  "@types/format-util": "^1.0.2",
40
40
  "clsx": "^1.2.1",
41
41
  "exceljs": "^4.3.0",
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTY2NjkyNjAwMDAwMA==";
3
+ const releaseInfo = "MTY2ODAyMDQwMDAwMA==";
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).