@mui/x-data-grid-premium 6.16.1 → 6.16.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 CHANGED
@@ -3,6 +3,110 @@
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.16.2
7
+
8
+ _Oct 12, 2023_
9
+
10
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 📊 Chart's legend text management has been reworked and contains breaking changes (#10138) @alexfauquette
13
+ - 📝 Add [Bulk editing](https://mui.com/x/react-data-grid/recipes-editing/#bulk-editing) demo (#10333) @cherniavskii
14
+ - 🚀 Column grouping now works smoothly with column pinning (#10518) @MBilalShafi
15
+ - 🌍 Improve Arabic (ar-SD) and Spanish (es-ES) locales
16
+ - 🐞 Bugfixes
17
+ - 📚 Documentation improvements
18
+
19
+ ### Data Grid
20
+
21
+ #### `@mui/x-data-grid@6.16.2`
22
+
23
+ - [DataGrid] Fix `LazyLoading` demo crash (#10621) @MBilalShafi
24
+ - [DataGrid] Fix cells overlapping the scrollbar in iOS Safari (#10633) @cherniavskii
25
+ - [DataGrid] Fix `getRowId is not defined` error (#10613) @romgrk
26
+ - [DataGrid] Get quick filter to work OOTB with `date` and `dateTime` fields (#10636) @MBilalShafi
27
+ - [DataGrid] Make cursor for selectable cells to be `default` unless editable (#9997) @gitstart
28
+ - [DataGrid] Remove unnecessary syntax in JSDoc (#10567) @Lev-Shapiro
29
+ - [DataGrid] Update row hover behavior to match native hover (#10623) @cherniavskii
30
+ - [l10n] Improve Arabic (ar-SD) locale (#10625) @alabenyahia
31
+
32
+ #### `@mui/x-data-grid-pro@6.16.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
33
+
34
+ Same changes as in `@mui/x-data-grid@6.16.2`, plus:
35
+
36
+ - [DataGridPro] Improve column grouping and column pinning friendship (#10518) @MBilalShafi
37
+
38
+ #### `@mui/x-data-grid-premium@6.16.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
39
+
40
+ Same changes as in `@mui/x-data-grid-pro@6.16.2`.
41
+
42
+ ### Date Pickers
43
+
44
+ #### `@mui/x-date-pickers@6.16.2`
45
+
46
+ - [DateTimePicker] Add support for `DigitalClock` view renderer (#10624) @LukasTy
47
+ - [fields] Bootstrap the multi-HTML input component (#10638) @flaviendelangle
48
+ - [pickers] Fix timezone `UTC` false positive (#10586) @alexfauquette
49
+ - [l10n] Improve Spanish (es-ES) locale (#10588) @eduardodallmann
50
+
51
+ #### `@mui/x-date-pickers-pro@6.16.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
52
+
53
+ Same changes as in `@mui/x-date-pickers@6.16.2`.
54
+
55
+ ### Charts / `@mui/x-charts@6.0.0-alpha.15`
56
+
57
+ #### Breaking changes
58
+
59
+ The charts have a new text display mechanism.
60
+ It adds line break support and avoids overlapping text in the legend.
61
+ This comes with some breaking changes.
62
+
63
+ - The DOM structure is modified. An intermediary `<tspan />` element has been added. This can impact how your style is applied.
64
+ ```diff
65
+ - <text>The label</text>
66
+ + <text><tspan>The label</tspan></text>
67
+ ```
68
+
69
+ - The top margin has been reduced from 100 to 50 to benefit from the denser legend.
70
+
71
+ - To accurately compute the text size and then place it, styling should be provided as a JS object. For example, to set the legend font size, you should do:
72
+ ```jsx
73
+ <PieChart
74
+ {/** ... */}
75
+ slotProps={{
76
+ legend: {
77
+ labelStyle: {
78
+ fontSize: 16,
79
+ },
80
+ },
81
+ }}
82
+ />
83
+ ```
84
+ Support for other text elements (axis labels and tick labels) will be implemented in follow-up PR.
85
+
86
+ #### Changes
87
+
88
+ - [charts] Fix typo between internal/external variable (#10640) @alexfauquette
89
+ - [charts] Improve the management of the text (#10138) @alexfauquette
90
+
91
+ ### Docs
92
+
93
+ - [docs] Add bulk editing demo (#10333) @cherniavskii
94
+ - [docs] Add reference links to DateRangePicker components (#10629) @michelengelen
95
+ - [docs] Add reference links to DateTimePicker components (#10628) @michelengelen
96
+ - [docs] Add reference links to picker field components (#10631) @michelengelen
97
+ - [docs] Added reference links to TimePicker components (#10627) @michelengelen
98
+ - [docs] Avoid Pickers playground error due to empty views (#10654) @LukasTy
99
+ - [docs] Fix DataGrid[Pro/Premium] reference links (#10620) @michelengelen
100
+
101
+ ### Core
102
+
103
+ - [core] Bump monorepo (#10619) @alexfauquette
104
+ - [core] Update `no-response` workflow (#10491) @MBilalShafi
105
+ - [core] Update the issue templates to reflect the new support workflow (#10651) @MBilalShafi
106
+ - [test] Fix `testEval` not invoking test assertions (#10587) @cherniavskii
107
+ - [test] Fix dev mode warning (#10610) @oliviertassinari
108
+ - [test] Set UUID chance seed in visual tests (#10609) @oliviertassinari
109
+
6
110
  ## 6.16.1
7
111
 
8
112
  _Oct 6, 2023_
@@ -5,5 +5,12 @@ interface DataGridPremiumComponent {
5
5
  <R extends GridValidRowModel = any>(props: DataGridPremiumProps<R> & React.RefAttributes<HTMLDivElement>): React.JSX.Element;
6
6
  propTypes?: any;
7
7
  }
8
+ /**
9
+ * Demos:
10
+ * - [DataGridPremium](https://mui.com/x/react-data-grid/demo/)
11
+ *
12
+ * API:
13
+ * - [DataGridPremium API](https://mui.com/x/api/data-grid/data-grid-premium/)
14
+ */
8
15
  export declare const DataGridPremium: DataGridPremiumComponent;
9
16
  export {};
@@ -38,6 +38,13 @@ const DataGridPremiumRaw = /*#__PURE__*/React.forwardRef(function DataGridPremiu
38
38
  }))
39
39
  });
40
40
  });
41
+ /**
42
+ * Demos:
43
+ * - [DataGridPremium](https://mui.com/x/react-data-grid/demo/)
44
+ *
45
+ * API:
46
+ * - [DataGridPremium API](https://mui.com/x/api/data-grid/data-grid-premium/)
47
+ */
41
48
  export const DataGridPremium = /*#__PURE__*/React.memo(DataGridPremiumRaw);
42
49
  process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
43
50
  // ----------------------------- Warning --------------------------------
@@ -960,7 +967,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
960
967
  /**
961
968
  * If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
962
969
  * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
963
- * @default: false
970
+ * @default false
964
971
  */
965
972
  unstable_ignoreValueFormatterDuringExport: PropTypes.oneOfType([PropTypes.shape({
966
973
  clipboardExport: PropTypes.bool,
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v6.16.1
2
+ * @mui/x-data-grid-premium v6.16.2
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -38,6 +38,13 @@ var DataGridPremiumRaw = /*#__PURE__*/React.forwardRef(function DataGridPremium(
38
38
  }))
39
39
  });
40
40
  });
41
+ /**
42
+ * Demos:
43
+ * - [DataGridPremium](https://mui.com/x/react-data-grid/demo/)
44
+ *
45
+ * API:
46
+ * - [DataGridPremium API](https://mui.com/x/api/data-grid/data-grid-premium/)
47
+ */
41
48
  export var DataGridPremium = /*#__PURE__*/React.memo(DataGridPremiumRaw);
42
49
  process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
43
50
  // ----------------------------- Warning --------------------------------
@@ -960,7 +967,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
960
967
  /**
961
968
  * If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
962
969
  * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
963
- * @default: false
970
+ * @default false
964
971
  */
965
972
  unstable_ignoreValueFormatterDuringExport: PropTypes.oneOfType([PropTypes.shape({
966
973
  clipboardExport: PropTypes.bool,
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v6.16.1
2
+ * @mui/x-data-grid-premium v6.16.2
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 = "MTY5NjU0MzIwMDAwMA==";
3
+ var releaseInfo = "MTY5NzA1MDgwMDAwMA==";
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
@@ -38,6 +38,13 @@ const DataGridPremiumRaw = /*#__PURE__*/React.forwardRef(function DataGridPremiu
38
38
  }))
39
39
  });
40
40
  });
41
+ /**
42
+ * Demos:
43
+ * - [DataGridPremium](https://mui.com/x/react-data-grid/demo/)
44
+ *
45
+ * API:
46
+ * - [DataGridPremium API](https://mui.com/x/api/data-grid/data-grid-premium/)
47
+ */
41
48
  export const DataGridPremium = /*#__PURE__*/React.memo(DataGridPremiumRaw);
42
49
  process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
43
50
  // ----------------------------- Warning --------------------------------
@@ -960,7 +967,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
960
967
  /**
961
968
  * If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
962
969
  * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
963
- * @default: false
970
+ * @default false
964
971
  */
965
972
  unstable_ignoreValueFormatterDuringExport: PropTypes.oneOfType([PropTypes.shape({
966
973
  clipboardExport: PropTypes.bool,
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v6.16.1
2
+ * @mui/x-data-grid-premium v6.16.2
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 = "MTY5NjU0MzIwMDAwMA==";
3
+ const releaseInfo = "MTY5NzA1MDgwMDAwMA==";
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
@@ -46,6 +46,13 @@ const DataGridPremiumRaw = /*#__PURE__*/React.forwardRef(function DataGridPremiu
46
46
  }))
47
47
  });
48
48
  });
49
+ /**
50
+ * Demos:
51
+ * - [DataGridPremium](https://mui.com/x/react-data-grid/demo/)
52
+ *
53
+ * API:
54
+ * - [DataGridPremium API](https://mui.com/x/api/data-grid/data-grid-premium/)
55
+ */
49
56
  const DataGridPremium = exports.DataGridPremium = /*#__PURE__*/React.memo(DataGridPremiumRaw);
50
57
  process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
51
58
  // ----------------------------- Warning --------------------------------
@@ -968,7 +975,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
968
975
  /**
969
976
  * If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
970
977
  * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
971
- * @default: false
978
+ * @default false
972
979
  */
973
980
  unstable_ignoreValueFormatterDuringExport: _propTypes.default.oneOfType([_propTypes.default.shape({
974
981
  clipboardExport: _propTypes.default.bool,
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v6.16.1
2
+ * @mui/x-data-grid-premium v6.16.2
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 = "MTY5NjU0MzIwMDAwMA==";
9
+ const releaseInfo = "MTY5NzA1MDgwMDAwMA==";
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.16.1",
3
+ "version": "6.16.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.23.1",
35
35
  "@mui/utils": "^5.14.11",
36
- "@mui/x-data-grid": "6.16.1",
37
- "@mui/x-data-grid-pro": "6.16.1",
36
+ "@mui/x-data-grid": "6.16.2",
37
+ "@mui/x-data-grid-pro": "6.16.2",
38
38
  "@mui/x-license-pro": "6.10.2",
39
39
  "@types/format-util": "^1.0.2",
40
40
  "clsx": "^2.0.0",
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTY5NjU0MzIwMDAwMA==";
3
+ const releaseInfo = "MTY5NzA1MDgwMDAwMA==";
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