@mui/x-data-grid-pro 5.17.2 → 5.17.4

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,74 @@
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
+ ## v5.17.4
7
+
8
+ _Sep 22, 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
+ - 🌍 Add Finnish (fi-FI) locale to the pickers (#6230) @PetroSilenius
13
+ - 🌍 Add Persian (fa-IR) locale to the pickers (#6181) @fakhamatia
14
+ - 🐞 Bugfixes
15
+
16
+ ### `@mui/x-data-grid@v5.17.4` / `@mui/x-data-grid-pro@v5.17.4` / `@mui/x-data-grid-premium@v5.17.4`
17
+
18
+ #### Changes
19
+
20
+ - [DataGrid] Do not publish `cellFocusOut` event if the row was removed (#6251) @cherniavskii
21
+ - [DataGrid] Improve Polish (pl-PL) locale on the data grid (#6245) @grzegorz-bach
22
+
23
+ ### `@mui/x-date-pickers@v5.0.3` / `@mui/x-date-pickers-pro@v5.0.3`
24
+
25
+ #### Changes
26
+
27
+ - [pickers] Add Finnish (fi-FI) locale to pickers (#6219) (#6230) @PetroSilenius
28
+ - [pickers] Add Persian (fa-IR) locale to the pickers (#6181) @fakhamatia
29
+ - [pickers] Fix usage with Typescript 4.8 (#6229) @flaviendelangle
30
+ - [YearPicker] Scroll to the current year even with `autoFocus=false` (#6224) @alexfauquette
31
+
32
+ ### Docs
33
+
34
+ - [docs] Fix 301 link (#6239) @oliviertassinari
35
+
36
+ ### Core
37
+
38
+ - [core] Use the official repository for `@mui/monorepo` instead of a fork (#6189) @oliviertassinari
39
+
40
+ ## 5.17.3
41
+
42
+ _Sep 16, 2022_
43
+
44
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
45
+
46
+ - 📝 Fix lost characters when typing into fields in the DataGrid (#5646) @m4theushw
47
+ - 🌏 New locale and improvements for pickers
48
+ - 🎁 Improve support to theme augmentation for pickers
49
+
50
+ ### `@mui/x-data-grid@v5.17.3` / `@mui/x-data-grid-pro@v5.17.3` / `@mui/x-data-grid-premium@v5.17.3`
51
+
52
+ #### Changes
53
+
54
+ - [DataGrid] Only update input with value prop if debounce is off (#5646) @m4theushw
55
+
56
+ ### `@mui/x-date-pickers@v5.0.2` / `@mui/x-date-pickers-pro@v5.0.2`
57
+
58
+ #### Changes
59
+
60
+ - [pickers] Add Icelandic (is-IS) locale (#6137) @elvatli
61
+ - [pickers] Fix `@mui/x-date-pickers` theme augmentation and style overriding (#6156) @LukasTy
62
+ - [pickers] Fix `@mui/x-date-pickers-pro` theme augmentation (#6096) @LukasTy
63
+ - [pickers] Improve German (de-DE) locale (#6138) @alexfauquette
64
+
65
+ ### Docs
66
+
67
+ - [docs] Improve main demo to show new functionalities (#5292) @joserodolfofreitas
68
+
69
+ ### Core
70
+
71
+ - [core] Update to typescript 4.8.3 (#6136) @flaviendelangle
72
+ - [core] Update RFC template (#6100) @bytasv
73
+
6
74
  ## 5.17.2
7
75
 
8
76
  _Sep 9, 2022_
@@ -11,7 +79,7 @@ This release will the last regular release for our `v5` packages.
11
79
  From now on, we'll be focusing on developing MUI X v6.
12
80
  You can check the [roadmap](https://github.com/mui/mui-x/projects/1) for more details on what's coming next.
13
81
 
14
- And if you'd like to help, please consider volunteering to give us a [user interview](https://docs.google.com/forms/d/11L_zxL7oD_B-ZrZDuSyIkUzJLzOTUU2M4vHXxMVtWhU/edit).
82
+ And if you'd like to help, please consider volunteering to give us a [user interview](https://forms.gle/vsBv6CLPz9h57xg8A).
15
83
  We'd love to know more about your use cases, pain points and expectations for the future.
16
84
 
17
85
  The `v5` packages will only get new versions to patch critical bug fixes.
@@ -67,7 +135,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss
67
135
 
68
136
  _Sep 2, 2022_
69
137
 
70
- 🎉 We are excited to finally introduce a stable release (v5.0.0) for the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages!
138
+ 🎉 We are excited to finally introduce a stable release (v5.0.0) for the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages!
71
139
 
72
140
  If you are still using picker components from the `lab`, take a look at the [migration guide](https://mui.com/x/react-date-pickers/migration-lab/).
73
141
 
@@ -1,5 +1,5 @@
1
- import { GridRowId, GridRowsLookup, GridRowsProp } from '@mui/x-data-grid';
2
- export interface GridPinnedRowsProp<R = any> {
1
+ import { GridRowId, GridRowsLookup, GridRowsProp, GridValidRowModel } from '@mui/x-data-grid';
2
+ export interface GridPinnedRowsProp<R extends GridValidRowModel = GridValidRowModel> {
3
3
  top?: GridRowsProp<R>;
4
4
  bottom?: GridRowsProp<R>;
5
5
  }
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.2
1
+ /** @license MUI v5.17.4
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.
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.2
1
+ /** @license MUI v5.17.4
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 = "MTY2MjY3NDQwMDAwMA==";
3
+ var releaseInfo = "MTY2Mzg4NDAwMDAwMA==";
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).
package/modern/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.2
1
+ /** @license MUI v5.17.4
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 = "MTY2MjY3NDQwMDAwMA==";
3
+ const releaseInfo = "MTY2Mzg4NDAwMDAwMA==";
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).
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.2
1
+ /** @license MUI v5.17.4
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 = "MTY2MjY3NDQwMDAwMA==";
11
+ const releaseInfo = "MTY2Mzg4NDAwMDAwMA==";
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.17.2",
3
+ "version": "5.17.4",
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",
@@ -32,8 +32,8 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@babel/runtime": "^7.18.9",
35
- "@mui/utils": "^5.9.3",
36
- "@mui/x-data-grid": "5.17.2",
35
+ "@mui/utils": "^5.10.3",
36
+ "@mui/x-data-grid": "5.17.4",
37
37
  "@mui/x-license-pro": "5.17.0",
38
38
  "@types/format-util": "^1.0.2",
39
39
  "clsx": "^1.2.1",
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTY2MjY3NDQwMDAwMA==";
3
+ const releaseInfo = "MTY2Mzg4NDAwMDAwMA==";
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).