@mui/x-charts 6.18.4 → 6.18.7
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 +43 -1
- package/LineChart/formatter.js +1 -1
- package/esm/LineChart/formatter.js +1 -1
- package/index.js +1 -1
- package/legacy/LineChart/formatter.js +1 -1
- package/legacy/index.js +1 -1
- package/modern/LineChart/formatter.js +1 -1
- package/modern/index.js +1 -1
- package/package.json +1 -1
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
|
+
## 6.18.7
|
|
7
|
+
|
|
8
|
+
_Jan 5, 2024_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🌍 Improve Czech (cs-CZ) locale on Data Grid (#11429) @wensiet
|
|
13
|
+
- 🐞 Bugfixes
|
|
14
|
+
|
|
15
|
+
### Data Grid
|
|
16
|
+
|
|
17
|
+
#### `@mui/x-data-grid@6.18.7`
|
|
18
|
+
|
|
19
|
+
- [DataGrid] Don't evaluate `hasEval` when `disableEval` is set (#11553) @reihwald
|
|
20
|
+
- [l10n] Update Czech (cs-CZ) locale (#11498) @fdebef
|
|
21
|
+
|
|
22
|
+
#### `@mui/x-data-grid-pro@6.18.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
23
|
+
|
|
24
|
+
Same changes as in `@mui/x-data-grid@6.18.7`.
|
|
25
|
+
|
|
26
|
+
#### `@mui/x-data-grid-premium@6.18.7` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
27
|
+
|
|
28
|
+
Same changes as in `@mui/x-data-grid-pro@6.18.7`.
|
|
29
|
+
|
|
30
|
+
### Date Pickers
|
|
31
|
+
|
|
32
|
+
#### `@mui/x-date-pickers@6.18.7`
|
|
33
|
+
|
|
34
|
+
- [pickers] Fix views management (@LukasTy) (#11572)
|
|
35
|
+
|
|
36
|
+
#### `@mui/x-date-pickers-pro@6.18.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
37
|
+
|
|
38
|
+
Same changes as in `@mui/x-date-pickers@6.18.7`.
|
|
39
|
+
|
|
40
|
+
### Charts / `@mui/x-charts@6.18.7`
|
|
41
|
+
|
|
42
|
+
- [charts] Fix `null` in line chart using dataset (@alexfauquette) (#11561)
|
|
43
|
+
|
|
44
|
+
### Docs
|
|
45
|
+
|
|
46
|
+
- [docs] Clarify Pickers usage with Luxon (#11566) @LukasTy
|
|
47
|
+
|
|
6
48
|
## 6.18.6
|
|
7
49
|
|
|
8
50
|
_Dec 22, 2023_
|
|
@@ -37,7 +79,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.6`.
|
|
|
37
79
|
|
|
38
80
|
Same changes as in `@mui/x-date-pickers@6.18.6`.
|
|
39
81
|
|
|
40
|
-
### Charts / `@mui/x-charts@6.18.
|
|
82
|
+
### Charts / `@mui/x-charts@6.18.4`
|
|
41
83
|
|
|
42
84
|
- [charts] Allow percentage values for pie chart center and radius (#11464) @alexfauquette
|
|
43
85
|
- [charts] Make error message more explicit (#11457) @alexfauquette
|
package/LineChart/formatter.js
CHANGED
|
@@ -61,7 +61,7 @@ const formatter = (params, dataset) => {
|
|
|
61
61
|
warnedOnce = true;
|
|
62
62
|
console.error([`MUI-X charts: your dataset key "${dataKey}" is used for plotting line, but contains nonnumerical elements.`, 'Line plots only support numbers and null values.']);
|
|
63
63
|
}
|
|
64
|
-
return
|
|
64
|
+
return null;
|
|
65
65
|
}
|
|
66
66
|
return value;
|
|
67
67
|
}) : series[id].data,
|
|
@@ -58,7 +58,7 @@ const formatter = (params, dataset) => {
|
|
|
58
58
|
warnedOnce = true;
|
|
59
59
|
console.error([`MUI-X charts: your dataset key "${dataKey}" is used for plotting line, but contains nonnumerical elements.`, 'Line plots only support numbers and null values.']);
|
|
60
60
|
}
|
|
61
|
-
return
|
|
61
|
+
return null;
|
|
62
62
|
}
|
|
63
63
|
return value;
|
|
64
64
|
}) : series[id].data,
|
package/index.js
CHANGED
|
@@ -54,7 +54,7 @@ var formatter = function formatter(params, dataset) {
|
|
|
54
54
|
warnedOnce = true;
|
|
55
55
|
console.error(["MUI-X charts: your dataset key \"".concat(dataKey, "\" is used for plotting line, but contains nonnumerical elements."), 'Line plots only support numbers and null values.']);
|
|
56
56
|
}
|
|
57
|
-
return
|
|
57
|
+
return null;
|
|
58
58
|
}
|
|
59
59
|
return value;
|
|
60
60
|
}) : series[id].data,
|
package/legacy/index.js
CHANGED
|
@@ -54,7 +54,7 @@ const formatter = (params, dataset) => {
|
|
|
54
54
|
warnedOnce = true;
|
|
55
55
|
console.error([`MUI-X charts: your dataset key "${dataKey}" is used for plotting line, but contains nonnumerical elements.`, 'Line plots only support numbers and null values.']);
|
|
56
56
|
}
|
|
57
|
-
return
|
|
57
|
+
return null;
|
|
58
58
|
}
|
|
59
59
|
return value;
|
|
60
60
|
}) : series[id].data,
|
package/modern/index.js
CHANGED