@mui/x-data-grid-pro 6.0.0-beta.0 → 6.0.0-beta.1

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,72 @@
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
+ ## 6.0.0-beta.1
7
+
8
+ _Jan 27, 2023_
9
+
10
+ We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 🚀 New shortcuts component for the date pickers (#7154) @alexfauquette
13
+ - 🌍 Add Belarusian (be-BY), Czech (cs-CZ) and Russian (ru-RU) locales
14
+ - 🌍 Improve Spanish (es-ES), Japanese (ja-JP), Slovak (sk-SK), and Vietnamese (vi-VN) locales
15
+ - ✨ New codemods for migrating to v6
16
+ - 📚 Documentation improvements
17
+ - 🐞 Bug fixes
18
+
19
+ ### `@mui/x-data-grid@v6.0.0-beta.1` / `@mui/x-data-grid-pro@v6.0.0-beta.1` / `@mui/x-data-grid-premium@v6.0.0-beta.1`
20
+
21
+ #### Changes
22
+
23
+ - [DataGrid] Add `title` attribute to cells (#7682) @thupi
24
+ - [DataGrid] Fix `autoHeight` not working properly inside of a flex container (#7701) @cherniavskii
25
+ - [DataGrid] Fix grid state not being updated after print preview is closed (#7642) @cherniavskii
26
+ - [DataGrid] Fix non-hideable columns visibility toggling (#7637) @cherniavskii
27
+ - [DataGrid] Fix scrolling on resize for data grids inside shadow root (#7298) @akiradev
28
+ - [l10n] Add Slovak (sk-SK) translation for aggregation functions (#7702) @msidlo
29
+ - [l10n] Add missing core locales for `MuiTablePagination` (#7717) @MBilalShafi
30
+ - [l10n] Improve Spanish (es-ES) and Vietnamese (vi-VN) locale (#7634) @WiXSL and @SpacerZ
31
+ - [l10n] Add Belarusian (be-BY) locale (#7646) @volhalink
32
+
33
+ ### `@mui/x-date-pickers@v6.0.0-beta.1` / `@mui/x-date-pickers-pro@v6.0.0-beta.1`
34
+
35
+ #### Changes
36
+
37
+ - [pickers] Fix `aria-labelledby` assignment to dialog (#7608) @LukasTy
38
+ - [pickers] Support `UTC` with `dayjs` (#7610) @flaviendelangle
39
+ - [pickers] Update focus when opening a UI view (#7620) @alexfauquette
40
+ - [DateRangePickers] Add shortcuts component (#7154) @alexfauquette
41
+ - [l10n] Add Czech (cs-CZ) locale (#7645) @OndrejHj04
42
+ - [l10n] Add Russian (ru-RU) locale (#7706) @rstmzh
43
+ - [l10n] Improve Japanese (ja-JP) locale (#7624) @makoto14
44
+
45
+ ### `@mui/x-codemod@v6.0.0-beta.1`
46
+
47
+ #### Changes
48
+
49
+ - [codemod] Add pickers `replace-toolbar-props-by-slot` codemod (#7687) @alexfauquette
50
+ - [codemod] Add `GridColumnMenuItemProps` to `column-menu-components-rename` codemod (#7710) @MBilalShafi
51
+ - [codemod] Add `headerHeight` prop update to `row-selection-props-rename` codemod (#7711) @MBilalShafi
52
+ - [codemod] Add pickers codemod for `components` to `slots` renaming (#7533) @alexfauquette
53
+ - [codemod] Add pickers `migrate-to-components-componentsProps` and `replace-arrows-button-slot` codemods (#7698) @alexfauquette
54
+ - [codemod] Add data grid codemod renaming `rowsPerPageOptions` prop to `pageSizeOptions` (#7603) @MBilalShafi
55
+ - [codemod] Add pickers `rename-should-disable-time` codemod (#7709) @alexfauquette
56
+ - [codemod] Add data grid `row-selection-props-rename` codemod (#7485) @MBilalShafi
57
+ - [codemod] Add data grid `rename-selectors-and-events` codemod (#7699) @MBilalShafi
58
+ - [codemod] Add pickers `replace-tabs-props` codemod (#7639) @alexfauquette
59
+
60
+ ### Docs
61
+
62
+ - [docs] Add info callout about available component `slots` (#7714) @Vivek-Prajapatii
63
+ - [docs] Add recipe for pinning grouped column (#7712) @MBilalShafi
64
+ - [docs] Fix 404 links to picker API page @oliviertassinari
65
+ - [docs] Update `DemoContainer` `components` prop using a codemod (#7574) @alexfauquette
66
+
67
+ ### Core
68
+
69
+ - [core] Fix `innerslotProps` typo (#7697) @LukasTy
70
+ - [core] Upgrade monorepo (#7676) @cherniavskii
71
+
6
72
  ## 6.0.0-beta.0
7
73
 
8
74
  _Jan 19, 2023_
@@ -342,7 +408,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
342
408
  ```diff
343
409
  <DateTimePicker
344
410
  - shouldDisableTime={(timeValue, view) => view === 'hours' && timeValue < 12}
345
- + shouldDisableTime={(time, view) => view === 'hours' && value.hour() < 12}
411
+ + shouldDisableTime={(value, view) => view === 'hours' && value.hour() < 12}
346
412
  />
347
413
  ```
348
414
 
@@ -1426,7 +1492,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1426
1492
  // TimePicker, MobileTimePicker, DateRangePicker and MobileDateRangePicker.
1427
1493
  <DatePicker
1428
1494
  - DialogProps={{ backgroundColor: 'red' }}
1429
- + componentsProps={{ dialog: { backgroundColor: 'red }}}
1495
+ + componentsProps={{ dialog: { backgroundColor: 'red' }}}
1430
1496
  />
1431
1497
  ```
1432
1498
 
@@ -1437,7 +1503,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
1437
1503
  // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
1438
1504
  <DatePicker
1439
1505
  - PaperProps={{ backgroundColor: 'red' }}
1440
- + componentsProps={{ desktopPaper: { backgroundColor: 'red }}}
1506
+ + componentsProps={{ desktopPaper: { backgroundColor: 'red' }}}
1441
1507
  />
1442
1508
  ```
1443
1509
 
@@ -1956,6 +2022,44 @@ You can find more information about the new api, including how to set those tran
1956
2022
  - [test] Skip tests for column pinning and dynamic row height (#5997) @m4theushw
1957
2023
  - [website] Improve security header @oliviertassinari
1958
2024
 
2025
+ ## v5.17.21
2026
+
2027
+ _Jan 27, 2023_
2028
+
2029
+ We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
2030
+
2031
+ - 🌍 Add Belarusian (be-BY), Czech (cs-CZ), and Russian (ru-RU) locales
2032
+ - 🌍 Improve Slovak (sk-SK), Japanese (ja-JP), Vietnamese (vi-VN), and Spanish (es-ES) locales
2033
+ - 🐞 Bugfixes
2034
+
2035
+ ### `@mui/x-data-grid@v5.17.21` / `@mui/x-data-grid-pro@v5.17.21` / `@mui/x-data-grid-premium@v5.17.21`
2036
+
2037
+ #### Changes
2038
+
2039
+ - [DataGrid] Add `title` attribute to cells (#7695) @thupi
2040
+ - [DataGrid] Fix grid state not being updated after print preview is closed (#7680) @cherniavskii
2041
+ - [DataGrid] Fix non-hideable columns visibility toggling (#7716) @cherniavskii
2042
+ - [DataGrid] Fix scrolling on resize for data grids inside shadow root (#7722) @cherniavskii
2043
+ - [DataGridPremium] Create aggregation footer row with `isAutoGenerated: true` (#7681) @m4theushw
2044
+ - [l10n] Add Belarusian (be-BY) locale (#7718) @volhalink
2045
+ - [l10n] Add Slovak (sk-SK) translation for aggregation functions (#7690) @msidlo
2046
+ - [l10n] Add missing core locales for `MuiTablePagination` (#7719) @MBilalShafi
2047
+ - [l10n] Improve Japanese (ja-JP) locale (#7627) @makoto14
2048
+ - [l10n] Improve Vietnamese (vi-VN) locale (#7601) @SpacerZ
2049
+
2050
+ ### `@mui/x-date-pickers@v5.0.16` / `@mui/x-date-pickers-pro@v5.0.16`
2051
+
2052
+ #### Changes
2053
+
2054
+ - [pickers] Add missing components to `themeAugmentation` (#7677) @LukasTy
2055
+ - [l10n] Add Czech (cs-CZ) locale (#7666) @OndrejHj04
2056
+ - [l10n] Add Russian (ru-RU) locale (#7708) @rstmzh
2057
+ - [l10n] Improve Spanish (es-ES) locale (#7614) @WiXSL
2058
+
2059
+ ### Docs
2060
+
2061
+ - [docs] Add info callout about available component `slots` (#7723) @Vivek-Prajapatii
2062
+
1959
2063
  ## 5.17.20
1960
2064
 
1961
2065
  _Jan 19, 2023_
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v6.0.0-beta.0
2
+ * @mui/x-data-grid-pro v6.0.0-beta.1
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v6.0.0-beta.0
2
+ * @mui/x-data-grid-pro v6.0.0-beta.1
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export var getReleaseInfo = function getReleaseInfo() {
3
- var releaseInfo = "MTY3NDE2OTIwMDAwMA==";
3
+ var releaseInfo = "MTY3NDc1OTYwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v6.0.0-beta.0
2
+ * @mui/x-data-grid-pro v6.0.0-beta.1
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTY3NDE2OTIwMDAwMA==";
3
+ const releaseInfo = "MTY3NDc1OTYwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-pro v6.0.0-beta.0
2
+ * @mui/x-data-grid-pro v6.0.0-beta.1
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.getReleaseInfo = void 0;
7
7
  var _utils = require("@mui/utils");
8
8
  const getReleaseInfo = () => {
9
- const releaseInfo = "MTY3NDE2OTIwMDAwMA==";
9
+ const releaseInfo = "MTY3NDc1OTYwMDAwMA==";
10
10
  if (process.env.NODE_ENV !== 'production') {
11
11
  // A simple hack to set the value in the test environment (has no build step).
12
12
  // eslint-disable-next-line no-useless-concat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid-pro",
3
- "version": "6.0.0-beta.0",
3
+ "version": "6.0.0-beta.1",
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,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@babel/runtime": "^7.20.7",
35
35
  "@mui/utils": "^5.11.2",
36
- "@mui/x-data-grid": "6.0.0-beta.0",
36
+ "@mui/x-data-grid": "6.0.0-beta.1",
37
37
  "@mui/x-license-pro": "6.0.0-beta.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 = "MTY3NDE2OTIwMDAwMA==";
3
+ const releaseInfo = "MTY3NDc1OTYwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat