@mui/x-data-grid-premium 6.0.0-beta.1 → 6.0.0-beta.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 +80 -3
- package/index.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/utils/releaseInfo.js +1 -1
- package/modern/index.js +1 -1
- package/modern/utils/releaseInfo.js +1 -1
- package/node/index.js +1 -1
- package/node/utils/releaseInfo.js +1 -1
- package/package.json +3 -3
- package/utils/releaseInfo.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,58 @@
|
|
|
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.2
|
|
7
|
+
|
|
8
|
+
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
9
|
+
|
|
10
|
+
- 🚀 Support week day formats in the field components
|
|
11
|
+
- 🌍 Add Hungarian (hu-HU) and Urdu (ur-PK) locales
|
|
12
|
+
- 🌍 Improve French (fr-FR) and Italian (it-IT) locales
|
|
13
|
+
- ✨ New codemods for migrating to v6
|
|
14
|
+
- 📚 Documentation improvements
|
|
15
|
+
- 🐞 Bug fixes
|
|
16
|
+
|
|
17
|
+
### `@mui/x-data-grid@v6.0.0-beta.2` / `@mui/x-data-grid-pro@v6.0.0-beta.2` / `@mui/x-data-grid-premium@v6.0.0-beta.2`
|
|
18
|
+
|
|
19
|
+
#### Changes
|
|
20
|
+
|
|
21
|
+
- [DataGrid] Handle non-numeric values returned by `getRowHeight` prop (#7703) @cherniavskii
|
|
22
|
+
- [DataGrid] Merge row styles with `componentsProps.row.style` (#7641) @marktoman
|
|
23
|
+
- [l10n] Add Hungarian (hu-HU) locale (#7776) @noherczeg
|
|
24
|
+
- [l10n] Add Urdu (ur-PK) locale (#6866) @MBilalShafi
|
|
25
|
+
- [l10n] Improve French (fr-FR) locale (#7777) @Vivek-Prajapatii
|
|
26
|
+
- [l10n] Improve Italian (it-IT) locale (#7761) @simonecervini
|
|
27
|
+
|
|
28
|
+
### `@mui/x-date-pickers@v6.0.0-beta.2` / `@mui/x-date-pickers-pro@v6.0.0-beta.2`
|
|
29
|
+
|
|
30
|
+
#### Changes
|
|
31
|
+
|
|
32
|
+
- [fields] Support week day formats (#7392) @flaviendelangle
|
|
33
|
+
- [pickers] Allow to initialize and control the `rangePosition` on all range components (#7764) @flaviendelangle
|
|
34
|
+
- [pickers] Fix theme augmentation (#7800) @LukasTy
|
|
35
|
+
- [pickers] Hide scrollbars in the date calendar container (#7766) @Vivek-Prajapatii
|
|
36
|
+
- [pickers] Remove the dependency on `rifm` (#7785) @alexfauquette
|
|
37
|
+
|
|
38
|
+
### `@mui/x-codemod@v6.0.0-beta.2`
|
|
39
|
+
|
|
40
|
+
#### Changes
|
|
41
|
+
|
|
42
|
+
- [codemod] Add pickers `rename-default-toolbar-title-localeText` codemod (#7752) @LukasTy
|
|
43
|
+
- [codemod] Add pickers `rename-inputFormat-prop` codemod (#7736) @LukasTy
|
|
44
|
+
|
|
45
|
+
### Docs
|
|
46
|
+
|
|
47
|
+
- [docs] Fix a typo in data grid layout page (#7113) @sfbaker7
|
|
48
|
+
- [docs] Fix require context path to avoid duplicate key creation (#7781) @LukasTy
|
|
49
|
+
- [docs] Polish pickers migration docs (#7737) @LukasTy
|
|
50
|
+
- [docs] Rename `next` translation docs and remove duplicates with `-next` (#7729) @LukasTy
|
|
51
|
+
|
|
52
|
+
### Core
|
|
53
|
+
|
|
54
|
+
- [core] Fix l10n data file (#7804) @flaviendelangle
|
|
55
|
+
- [core] Fix Next.js warning (#7754) @oliviertassinari
|
|
56
|
+
- [core] Remove unused demos (#7758) @flaviendelangle
|
|
57
|
+
|
|
6
58
|
## 6.0.0-beta.1
|
|
7
59
|
|
|
8
60
|
_Jan 27, 2023_
|
|
@@ -1368,8 +1420,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
1368
1420
|
- The toolbar related translation keys have been renamed to better fit their usage:
|
|
1369
1421
|
|
|
1370
1422
|
```diff
|
|
1371
|
-
|
|
1372
|
-
<DatePicker
|
|
1423
|
+
<LocalizationProvider
|
|
1373
1424
|
localeText={{
|
|
1374
1425
|
- datePickerDefaultToolbarTitle: 'Date Picker',
|
|
1375
1426
|
+ datePickerToolbarTitle: 'Date Picker',
|
|
@@ -2022,7 +2073,33 @@ You can find more information about the new api, including how to set those tran
|
|
|
2022
2073
|
- [test] Skip tests for column pinning and dynamic row height (#5997) @m4theushw
|
|
2023
2074
|
- [website] Improve security header @oliviertassinari
|
|
2024
2075
|
|
|
2025
|
-
##
|
|
2076
|
+
## 5.17.22
|
|
2077
|
+
|
|
2078
|
+
_Feb 2, 2023_
|
|
2079
|
+
|
|
2080
|
+
We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
|
|
2081
|
+
|
|
2082
|
+
- 🌍 Add Urdu (ur-PK) locale
|
|
2083
|
+
- 🌍 Improve French (fr-FR) and Italian (it-IT) locales
|
|
2084
|
+
- 🐞 Bugfixes
|
|
2085
|
+
|
|
2086
|
+
### `@mui/x-data-grid@v5.17.22` / `@mui/x-data-grid-pro@v5.17.22` / `@mui/x-data-grid-premium@v5.17.22`
|
|
2087
|
+
|
|
2088
|
+
#### Changes
|
|
2089
|
+
|
|
2090
|
+
- [DataGrid] Fix an error when deleting pinned row using the buttons in the `actions` column (#7767) @cherniavskii
|
|
2091
|
+
- [DataGrid] Fix print preview regression in Chrome browser (#7405) @cherniavskii
|
|
2092
|
+
- [l10n] Add Urdu (ur-PK) locale (#7778) @MBilalShafi
|
|
2093
|
+
- [l10n] Improve French (fr-FR) locale (#7795) @Vivek-Prajapatii
|
|
2094
|
+
|
|
2095
|
+
### `@mui/x-date-pickers@v5.0.17` / `@mui/x-date-pickers-pro@v5.0.17`
|
|
2096
|
+
|
|
2097
|
+
#### Changes
|
|
2098
|
+
|
|
2099
|
+
- [TimePicker] Add missing `themeAugmentation` entry (#7732) @LukasTy
|
|
2100
|
+
- [l10n] Improve Italian (it-IT) locale (#7761) @simonecervini
|
|
2101
|
+
|
|
2102
|
+
## 5.17.21
|
|
2026
2103
|
|
|
2027
2104
|
_Jan 27, 2023_
|
|
2028
2105
|
|
package/index.js
CHANGED
package/legacy/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export var getReleaseInfo = function getReleaseInfo() {
|
|
3
|
-
var releaseInfo = "
|
|
3
|
+
var releaseInfo = "MTY3NTI5MjQwMDAwMA==";
|
|
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,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export const getReleaseInfo = () => {
|
|
3
|
-
const releaseInfo = "
|
|
3
|
+
const releaseInfo = "MTY3NTI5MjQwMDAwMA==";
|
|
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
|
@@ -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 = "
|
|
9
|
+
const releaseInfo = "MTY3NTI5MjQwMDAwMA==";
|
|
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-premium",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.2",
|
|
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,8 +33,8 @@
|
|
|
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.
|
|
37
|
-
"@mui/x-data-grid-pro": "6.0.0-beta.
|
|
36
|
+
"@mui/x-data-grid": "6.0.0-beta.2",
|
|
37
|
+
"@mui/x-data-grid-pro": "6.0.0-beta.2",
|
|
38
38
|
"@mui/x-license-pro": "6.0.0-beta.0",
|
|
39
39
|
"@types/format-util": "^1.0.2",
|
|
40
40
|
"clsx": "^1.2.1",
|
package/utils/releaseInfo.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ponyfillGlobal } from '@mui/utils';
|
|
2
2
|
export const getReleaseInfo = () => {
|
|
3
|
-
const releaseInfo = "
|
|
3
|
+
const releaseInfo = "MTY3NTI5MjQwMDAwMA==";
|
|
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
|