@mui/x-data-grid-premium 6.18.4 → 6.18.6

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,97 @@
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.6
7
+
8
+ _Dec 22, 2023_
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
+ - 🌍 Improve Russian (ru-RU) locale (#11429) @wensiet
13
+ - 🐞 Bugfixes
14
+
15
+ ### Data Grid
16
+
17
+ #### `@mui/x-data-grid@6.18.6`
18
+
19
+ - [DataGrid] Fix typos in the JSDoc (#11475) @flaviendelangle
20
+ - [l10n] Improve Russian (ru-RU) locale (#11429) @wensiet
21
+
22
+ #### `@mui/x-data-grid-pro@6.18.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
23
+
24
+ Same changes as in `@mui/x-data-grid@6.18.6`.
25
+
26
+ #### `@mui/x-data-grid-premium@6.18.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
27
+
28
+ Same changes as in `@mui/x-data-grid-pro@6.18.6`.
29
+
30
+ ### Date Pickers
31
+
32
+ #### `@mui/x-date-pickers@6.18.6`
33
+
34
+ - [fields] Fix section pasting (#11467) @LukasTy
35
+
36
+ #### `@mui/x-date-pickers-pro@6.18.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
37
+
38
+ Same changes as in `@mui/x-date-pickers@6.18.6`.
39
+
40
+ ### Charts / `@mui/x-charts@6.18.6`
41
+
42
+ - [charts] Allow percentage values for pie chart center and radius (#11464) @alexfauquette
43
+ - [charts] Make error message more explicit (#11457) @alexfauquette
44
+ - [charts] Make the helper `ChartsText` component public (#11370) @alexfauquette
45
+ - [charts] Improve dataset typing (#11372) @alexfauquette
46
+ - [charts] Fix size overflow (#11385) @alexfauquette
47
+
48
+ ### Docs
49
+
50
+ - [docs] Document false default values for boolean props (#11489) @cherniavskii
51
+ - [docs] Improve Pickers `name` prop examples (#11442) @LukasTy
52
+ - [docs] Limit `date-fns` package to v2 in codesandbox (#11478) @LukasTy
53
+ - [test] Reload the page if its blank and there are no links to the remaining tests (#11471) @cherniavskii
54
+
55
+ ## 6.18.5
56
+
57
+ _Dec 14, 2023_
58
+
59
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
60
+
61
+ - 🌍 Improve Swedish (sv-SE) and Urdu (ur-PK) locales on the Data Grid
62
+ - 🐞 Bugfixes
63
+
64
+ ### Data Grid
65
+
66
+ #### `@mui/x-data-grid@6.18.5`
67
+
68
+ - [l10n] Improve Swedish (sv-SE) locale (#11379) @fredrikcarlbom
69
+ - [l10n] Improve Urdu (ur-PK) locale for data grid (#11409) @MBilalShafi
70
+
71
+ #### `@mui/x-data-grid-pro@6.18.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
72
+
73
+ Same changes as in `@mui/x-data-grid@6.18.5`.
74
+
75
+ #### `@mui/x-data-grid-premium@6.18.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
76
+
77
+ Same changes as in `@mui/x-data-grid-pro@6.18.5`.
78
+
79
+ ### Date Pickers
80
+
81
+ #### `@mui/x-date-pickers@6.18.5`
82
+
83
+ - [pickers] Fix field types to avoid error on latest `@types/react` version (#11398) @LukasTy
84
+ - [pickers] Support name prop (#11380) @gitstart
85
+
86
+ #### `@mui/x-date-pickers-pro@6.18.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
87
+
88
+ Same changes as in `@mui/x-date-pickers@6.18.5`, plus:
89
+
90
+ - [DateRangePicker] Fix `autoFocus` behavior (#11376) @kealjones-wk
91
+
92
+ ### Docs
93
+
94
+ - [docs] Respect GoT books (#11294) @janoma
95
+ - [test] Fix flaky screenshots (#11391) @cherniavskii
96
+
6
97
  ## 6.18.4
7
98
 
8
99
  _Dec 8, 2023_
@@ -74,15 +74,15 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
74
74
  current: PropTypes.object.isRequired
75
75
  }),
76
76
  /**
77
- * The label of the grid.
77
+ * The label of the Data Grid.
78
78
  */
79
79
  'aria-label': PropTypes.string,
80
80
  /**
81
- * The id of the element containing a label for the grid.
81
+ * The id of the element containing a label for the Data Grid.
82
82
  */
83
83
  'aria-labelledby': PropTypes.string,
84
84
  /**
85
- * If `true`, the grid height is dynamic and follow the number of rows in the grid.
85
+ * If `true`, the Data Grid height is dynamic and follow the number of rows in the Data Grid.
86
86
  * @default false
87
87
  */
88
88
  autoHeight: PropTypes.bool,
@@ -111,7 +111,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
111
111
  */
112
112
  cellModesModel: PropTypes.object,
113
113
  /**
114
- * If `true`, the grid get a first column with a checkbox that allows to select rows.
114
+ * If `true`, the Data Grid will display an extra column with checkboxes for selecting rows.
115
115
  * @default false
116
116
  */
117
117
  checkboxSelection: PropTypes.bool,
@@ -142,7 +142,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
142
142
  columnBuffer: PropTypes.number,
143
143
  columnGroupingModel: PropTypes.arrayOf(PropTypes.object),
144
144
  /**
145
- * Sets the height in pixel of the column headers in the grid.
145
+ * Sets the height in pixel of the column headers in the Data Grid.
146
146
  * @default 56
147
147
  */
148
148
  columnHeaderHeight: PropTypes.number,
@@ -156,8 +156,8 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
156
156
  */
157
157
  columnThreshold: PropTypes.number,
158
158
  /**
159
- * Set the column visibility model of the grid.
160
- * If defined, the grid will ignore the `hide` property in [[GridColDef]].
159
+ * Set the column visibility model of the Data Grid.
160
+ * If defined, the Data Grid will ignore the `hide` property in [[GridColDef]].
161
161
  */
162
162
  columnVisibilityModel: PropTypes.object,
163
163
  /**
@@ -177,7 +177,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
177
177
  */
178
178
  defaultGroupingExpansionDepth: PropTypes.number,
179
179
  /**
180
- * Set the density of the grid.
180
+ * Set the density of the Data Grid.
181
181
  * @default "standard"
182
182
  */
183
183
  density: PropTypes.oneOf(['comfortable', 'compact', 'standard']),
@@ -314,7 +314,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
314
314
  return null;
315
315
  }),
316
316
  /**
317
- * Set the filter model of the grid.
317
+ * Set the filter model of the Data Grid.
318
318
  */
319
319
  filterModel: PropTypes.shape({
320
320
  items: PropTypes.arrayOf(PropTypes.shape({
@@ -329,7 +329,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
329
329
  quickFilterValues: PropTypes.array
330
330
  }),
331
331
  /**
332
- * Forwarded props for the grid root element.
332
+ * Forwarded props for the Data Grid root element.
333
333
  * @ignore - do not document.
334
334
  */
335
335
  forwardedProps: PropTypes.object,
@@ -477,7 +477,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
477
477
  */
478
478
  loading: PropTypes.bool,
479
479
  /**
480
- * Set the locale text of the grid.
480
+ * Set the locale text of the Data Grid.
481
481
  * You can find all the translation keys supported in [the source](https://github.com/mui/mui-x/blob/HEAD/packages/grid/x-data-grid/src/constants/localeTextConstants.ts) in the GitHub repository.
482
482
  */
483
483
  localeText: PropTypes.object,
@@ -697,7 +697,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
697
697
  */
698
698
  onProcessRowUpdateError: PropTypes.func,
699
699
  /**
700
- * Callback fired when the grid is resized.
700
+ * Callback fired when the Data Grid is resized.
701
701
  * @param {ElementSize} containerSize With all properties from [[ElementSize]].
702
702
  * @param {MuiEvent<{}>} event The event object.
703
703
  * @param {GridCallbackDetails} details Additional details for this callback.
@@ -775,7 +775,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
775
775
  */
776
776
  onSortModelChange: PropTypes.func,
777
777
  /**
778
- * Callback fired when the state of the grid is updated.
778
+ * Callback fired when the state of the Data Grid is updated.
779
779
  * @param {GridState} state The new state.
780
780
  * @param {MuiEvent<{}>} event The event object.
781
781
  * @param {GridCallbackDetails} details Additional details for this callback.
@@ -852,7 +852,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
852
852
  */
853
853
  rowGroupingModel: PropTypes.arrayOf(PropTypes.string),
854
854
  /**
855
- * Sets the height in pixel of a row in the grid.
855
+ * Sets the height in pixel of a row in the Data Grid.
856
856
  * @default 52
857
857
  */
858
858
  rowHeight: PropTypes.number,
@@ -882,7 +882,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
882
882
  */
883
883
  rowSelection: PropTypes.bool,
884
884
  /**
885
- * Sets the row selection model of the grid.
885
+ * Sets the row selection model of the Data Grid.
886
886
  */
887
887
  rowSelectionModel: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired), PropTypes.number, PropTypes.string]),
888
888
  /**
@@ -903,7 +903,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
903
903
  */
904
904
  rowThreshold: PropTypes.number,
905
905
  /**
906
- * Override the height/width of the grid inner scrollbar.
906
+ * Override the height/width of the Data Grid inner scrollbar.
907
907
  */
908
908
  scrollbarSize: PropTypes.number,
909
909
  /**
@@ -942,7 +942,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
942
942
  */
943
943
  sortingOrder: PropTypes.arrayOf(PropTypes.oneOf(['asc', 'desc'])),
944
944
  /**
945
- * Set the sort model of the grid.
945
+ * Set the sort model of the Data Grid.
946
946
  */
947
947
  sortModel: PropTypes.arrayOf(PropTypes.shape({
948
948
  field: PropTypes.string.isRequired,
@@ -953,7 +953,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
953
953
  */
954
954
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
955
955
  /**
956
- * If positive, the Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
956
+ * If positive, the Data Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
957
957
  * It can be useful if you have a high update rate but do not want to do heavy work like filtering / sorting or rendering on each individual update.
958
958
  * @default 0
959
959
  */
@@ -978,7 +978,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
978
978
  */
979
979
  unstable_headerFilters: PropTypes.bool,
980
980
  /**
981
- * If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
981
+ * If `true`, the Data Grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
982
982
  * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
983
983
  * @default false
984
984
  */
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v6.18.4
2
+ * @mui/x-data-grid-premium v6.18.6
3
3
  *
4
4
  * @license MUI X Commercial
5
5
  * This source code is licensed under the commercial license found in the
@@ -74,15 +74,15 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
74
74
  current: PropTypes.object.isRequired
75
75
  }),
76
76
  /**
77
- * The label of the grid.
77
+ * The label of the Data Grid.
78
78
  */
79
79
  'aria-label': PropTypes.string,
80
80
  /**
81
- * The id of the element containing a label for the grid.
81
+ * The id of the element containing a label for the Data Grid.
82
82
  */
83
83
  'aria-labelledby': PropTypes.string,
84
84
  /**
85
- * If `true`, the grid height is dynamic and follow the number of rows in the grid.
85
+ * If `true`, the Data Grid height is dynamic and follow the number of rows in the Data Grid.
86
86
  * @default false
87
87
  */
88
88
  autoHeight: PropTypes.bool,
@@ -111,7 +111,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
111
111
  */
112
112
  cellModesModel: PropTypes.object,
113
113
  /**
114
- * If `true`, the grid get a first column with a checkbox that allows to select rows.
114
+ * If `true`, the Data Grid will display an extra column with checkboxes for selecting rows.
115
115
  * @default false
116
116
  */
117
117
  checkboxSelection: PropTypes.bool,
@@ -142,7 +142,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
142
142
  columnBuffer: PropTypes.number,
143
143
  columnGroupingModel: PropTypes.arrayOf(PropTypes.object),
144
144
  /**
145
- * Sets the height in pixel of the column headers in the grid.
145
+ * Sets the height in pixel of the column headers in the Data Grid.
146
146
  * @default 56
147
147
  */
148
148
  columnHeaderHeight: PropTypes.number,
@@ -156,8 +156,8 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
156
156
  */
157
157
  columnThreshold: PropTypes.number,
158
158
  /**
159
- * Set the column visibility model of the grid.
160
- * If defined, the grid will ignore the `hide` property in [[GridColDef]].
159
+ * Set the column visibility model of the Data Grid.
160
+ * If defined, the Data Grid will ignore the `hide` property in [[GridColDef]].
161
161
  */
162
162
  columnVisibilityModel: PropTypes.object,
163
163
  /**
@@ -177,7 +177,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
177
177
  */
178
178
  defaultGroupingExpansionDepth: PropTypes.number,
179
179
  /**
180
- * Set the density of the grid.
180
+ * Set the density of the Data Grid.
181
181
  * @default "standard"
182
182
  */
183
183
  density: PropTypes.oneOf(['comfortable', 'compact', 'standard']),
@@ -314,7 +314,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
314
314
  return null;
315
315
  }),
316
316
  /**
317
- * Set the filter model of the grid.
317
+ * Set the filter model of the Data Grid.
318
318
  */
319
319
  filterModel: PropTypes.shape({
320
320
  items: PropTypes.arrayOf(PropTypes.shape({
@@ -329,7 +329,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
329
329
  quickFilterValues: PropTypes.array
330
330
  }),
331
331
  /**
332
- * Forwarded props for the grid root element.
332
+ * Forwarded props for the Data Grid root element.
333
333
  * @ignore - do not document.
334
334
  */
335
335
  forwardedProps: PropTypes.object,
@@ -477,7 +477,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
477
477
  */
478
478
  loading: PropTypes.bool,
479
479
  /**
480
- * Set the locale text of the grid.
480
+ * Set the locale text of the Data Grid.
481
481
  * You can find all the translation keys supported in [the source](https://github.com/mui/mui-x/blob/HEAD/packages/grid/x-data-grid/src/constants/localeTextConstants.ts) in the GitHub repository.
482
482
  */
483
483
  localeText: PropTypes.object,
@@ -697,7 +697,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
697
697
  */
698
698
  onProcessRowUpdateError: PropTypes.func,
699
699
  /**
700
- * Callback fired when the grid is resized.
700
+ * Callback fired when the Data Grid is resized.
701
701
  * @param {ElementSize} containerSize With all properties from [[ElementSize]].
702
702
  * @param {MuiEvent<{}>} event The event object.
703
703
  * @param {GridCallbackDetails} details Additional details for this callback.
@@ -775,7 +775,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
775
775
  */
776
776
  onSortModelChange: PropTypes.func,
777
777
  /**
778
- * Callback fired when the state of the grid is updated.
778
+ * Callback fired when the state of the Data Grid is updated.
779
779
  * @param {GridState} state The new state.
780
780
  * @param {MuiEvent<{}>} event The event object.
781
781
  * @param {GridCallbackDetails} details Additional details for this callback.
@@ -852,7 +852,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
852
852
  */
853
853
  rowGroupingModel: PropTypes.arrayOf(PropTypes.string),
854
854
  /**
855
- * Sets the height in pixel of a row in the grid.
855
+ * Sets the height in pixel of a row in the Data Grid.
856
856
  * @default 52
857
857
  */
858
858
  rowHeight: PropTypes.number,
@@ -882,7 +882,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
882
882
  */
883
883
  rowSelection: PropTypes.bool,
884
884
  /**
885
- * Sets the row selection model of the grid.
885
+ * Sets the row selection model of the Data Grid.
886
886
  */
887
887
  rowSelectionModel: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired), PropTypes.number, PropTypes.string]),
888
888
  /**
@@ -903,7 +903,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
903
903
  */
904
904
  rowThreshold: PropTypes.number,
905
905
  /**
906
- * Override the height/width of the grid inner scrollbar.
906
+ * Override the height/width of the Data Grid inner scrollbar.
907
907
  */
908
908
  scrollbarSize: PropTypes.number,
909
909
  /**
@@ -942,7 +942,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
942
942
  */
943
943
  sortingOrder: PropTypes.arrayOf(PropTypes.oneOf(['asc', 'desc'])),
944
944
  /**
945
- * Set the sort model of the grid.
945
+ * Set the sort model of the Data Grid.
946
946
  */
947
947
  sortModel: PropTypes.arrayOf(PropTypes.shape({
948
948
  field: PropTypes.string.isRequired,
@@ -953,7 +953,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
953
953
  */
954
954
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
955
955
  /**
956
- * If positive, the Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
956
+ * If positive, the Data Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
957
957
  * It can be useful if you have a high update rate but do not want to do heavy work like filtering / sorting or rendering on each individual update.
958
958
  * @default 0
959
959
  */
@@ -978,7 +978,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
978
978
  */
979
979
  unstable_headerFilters: PropTypes.bool,
980
980
  /**
981
- * If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
981
+ * If `true`, the Data Grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
982
982
  * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
983
983
  * @default false
984
984
  */
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v6.18.4
2
+ * @mui/x-data-grid-premium v6.18.6
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 = "MTcwMTk5MDAwMDAwMA==";
3
+ var releaseInfo = "MTcwMzIyMTIwMDAwMA==";
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
@@ -74,15 +74,15 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
74
74
  current: PropTypes.object.isRequired
75
75
  }),
76
76
  /**
77
- * The label of the grid.
77
+ * The label of the Data Grid.
78
78
  */
79
79
  'aria-label': PropTypes.string,
80
80
  /**
81
- * The id of the element containing a label for the grid.
81
+ * The id of the element containing a label for the Data Grid.
82
82
  */
83
83
  'aria-labelledby': PropTypes.string,
84
84
  /**
85
- * If `true`, the grid height is dynamic and follow the number of rows in the grid.
85
+ * If `true`, the Data Grid height is dynamic and follow the number of rows in the Data Grid.
86
86
  * @default false
87
87
  */
88
88
  autoHeight: PropTypes.bool,
@@ -111,7 +111,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
111
111
  */
112
112
  cellModesModel: PropTypes.object,
113
113
  /**
114
- * If `true`, the grid get a first column with a checkbox that allows to select rows.
114
+ * If `true`, the Data Grid will display an extra column with checkboxes for selecting rows.
115
115
  * @default false
116
116
  */
117
117
  checkboxSelection: PropTypes.bool,
@@ -142,7 +142,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
142
142
  columnBuffer: PropTypes.number,
143
143
  columnGroupingModel: PropTypes.arrayOf(PropTypes.object),
144
144
  /**
145
- * Sets the height in pixel of the column headers in the grid.
145
+ * Sets the height in pixel of the column headers in the Data Grid.
146
146
  * @default 56
147
147
  */
148
148
  columnHeaderHeight: PropTypes.number,
@@ -156,8 +156,8 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
156
156
  */
157
157
  columnThreshold: PropTypes.number,
158
158
  /**
159
- * Set the column visibility model of the grid.
160
- * If defined, the grid will ignore the `hide` property in [[GridColDef]].
159
+ * Set the column visibility model of the Data Grid.
160
+ * If defined, the Data Grid will ignore the `hide` property in [[GridColDef]].
161
161
  */
162
162
  columnVisibilityModel: PropTypes.object,
163
163
  /**
@@ -177,7 +177,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
177
177
  */
178
178
  defaultGroupingExpansionDepth: PropTypes.number,
179
179
  /**
180
- * Set the density of the grid.
180
+ * Set the density of the Data Grid.
181
181
  * @default "standard"
182
182
  */
183
183
  density: PropTypes.oneOf(['comfortable', 'compact', 'standard']),
@@ -314,7 +314,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
314
314
  return null;
315
315
  }),
316
316
  /**
317
- * Set the filter model of the grid.
317
+ * Set the filter model of the Data Grid.
318
318
  */
319
319
  filterModel: PropTypes.shape({
320
320
  items: PropTypes.arrayOf(PropTypes.shape({
@@ -329,7 +329,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
329
329
  quickFilterValues: PropTypes.array
330
330
  }),
331
331
  /**
332
- * Forwarded props for the grid root element.
332
+ * Forwarded props for the Data Grid root element.
333
333
  * @ignore - do not document.
334
334
  */
335
335
  forwardedProps: PropTypes.object,
@@ -477,7 +477,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
477
477
  */
478
478
  loading: PropTypes.bool,
479
479
  /**
480
- * Set the locale text of the grid.
480
+ * Set the locale text of the Data Grid.
481
481
  * You can find all the translation keys supported in [the source](https://github.com/mui/mui-x/blob/HEAD/packages/grid/x-data-grid/src/constants/localeTextConstants.ts) in the GitHub repository.
482
482
  */
483
483
  localeText: PropTypes.object,
@@ -697,7 +697,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
697
697
  */
698
698
  onProcessRowUpdateError: PropTypes.func,
699
699
  /**
700
- * Callback fired when the grid is resized.
700
+ * Callback fired when the Data Grid is resized.
701
701
  * @param {ElementSize} containerSize With all properties from [[ElementSize]].
702
702
  * @param {MuiEvent<{}>} event The event object.
703
703
  * @param {GridCallbackDetails} details Additional details for this callback.
@@ -775,7 +775,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
775
775
  */
776
776
  onSortModelChange: PropTypes.func,
777
777
  /**
778
- * Callback fired when the state of the grid is updated.
778
+ * Callback fired when the state of the Data Grid is updated.
779
779
  * @param {GridState} state The new state.
780
780
  * @param {MuiEvent<{}>} event The event object.
781
781
  * @param {GridCallbackDetails} details Additional details for this callback.
@@ -852,7 +852,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
852
852
  */
853
853
  rowGroupingModel: PropTypes.arrayOf(PropTypes.string),
854
854
  /**
855
- * Sets the height in pixel of a row in the grid.
855
+ * Sets the height in pixel of a row in the Data Grid.
856
856
  * @default 52
857
857
  */
858
858
  rowHeight: PropTypes.number,
@@ -882,7 +882,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
882
882
  */
883
883
  rowSelection: PropTypes.bool,
884
884
  /**
885
- * Sets the row selection model of the grid.
885
+ * Sets the row selection model of the Data Grid.
886
886
  */
887
887
  rowSelectionModel: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired), PropTypes.number, PropTypes.string]),
888
888
  /**
@@ -903,7 +903,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
903
903
  */
904
904
  rowThreshold: PropTypes.number,
905
905
  /**
906
- * Override the height/width of the grid inner scrollbar.
906
+ * Override the height/width of the Data Grid inner scrollbar.
907
907
  */
908
908
  scrollbarSize: PropTypes.number,
909
909
  /**
@@ -942,7 +942,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
942
942
  */
943
943
  sortingOrder: PropTypes.arrayOf(PropTypes.oneOf(['asc', 'desc'])),
944
944
  /**
945
- * Set the sort model of the grid.
945
+ * Set the sort model of the Data Grid.
946
946
  */
947
947
  sortModel: PropTypes.arrayOf(PropTypes.shape({
948
948
  field: PropTypes.string.isRequired,
@@ -953,7 +953,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
953
953
  */
954
954
  sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
955
955
  /**
956
- * If positive, the Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
956
+ * If positive, the Data Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
957
957
  * It can be useful if you have a high update rate but do not want to do heavy work like filtering / sorting or rendering on each individual update.
958
958
  * @default 0
959
959
  */
@@ -978,7 +978,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
978
978
  */
979
979
  unstable_headerFilters: PropTypes.bool,
980
980
  /**
981
- * If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
981
+ * If `true`, the Data Grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
982
982
  * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
983
983
  * @default false
984
984
  */
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v6.18.4
2
+ * @mui/x-data-grid-premium v6.18.6
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 = "MTcwMTk5MDAwMDAwMA==";
3
+ const releaseInfo = "MTcwMzIyMTIwMDAwMA==";
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
@@ -82,15 +82,15 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
82
82
  current: _propTypes.default.object.isRequired
83
83
  }),
84
84
  /**
85
- * The label of the grid.
85
+ * The label of the Data Grid.
86
86
  */
87
87
  'aria-label': _propTypes.default.string,
88
88
  /**
89
- * The id of the element containing a label for the grid.
89
+ * The id of the element containing a label for the Data Grid.
90
90
  */
91
91
  'aria-labelledby': _propTypes.default.string,
92
92
  /**
93
- * If `true`, the grid height is dynamic and follow the number of rows in the grid.
93
+ * If `true`, the Data Grid height is dynamic and follow the number of rows in the Data Grid.
94
94
  * @default false
95
95
  */
96
96
  autoHeight: _propTypes.default.bool,
@@ -119,7 +119,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
119
119
  */
120
120
  cellModesModel: _propTypes.default.object,
121
121
  /**
122
- * If `true`, the grid get a first column with a checkbox that allows to select rows.
122
+ * If `true`, the Data Grid will display an extra column with checkboxes for selecting rows.
123
123
  * @default false
124
124
  */
125
125
  checkboxSelection: _propTypes.default.bool,
@@ -150,7 +150,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
150
150
  columnBuffer: _propTypes.default.number,
151
151
  columnGroupingModel: _propTypes.default.arrayOf(_propTypes.default.object),
152
152
  /**
153
- * Sets the height in pixel of the column headers in the grid.
153
+ * Sets the height in pixel of the column headers in the Data Grid.
154
154
  * @default 56
155
155
  */
156
156
  columnHeaderHeight: _propTypes.default.number,
@@ -164,8 +164,8 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
164
164
  */
165
165
  columnThreshold: _propTypes.default.number,
166
166
  /**
167
- * Set the column visibility model of the grid.
168
- * If defined, the grid will ignore the `hide` property in [[GridColDef]].
167
+ * Set the column visibility model of the Data Grid.
168
+ * If defined, the Data Grid will ignore the `hide` property in [[GridColDef]].
169
169
  */
170
170
  columnVisibilityModel: _propTypes.default.object,
171
171
  /**
@@ -185,7 +185,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
185
185
  */
186
186
  defaultGroupingExpansionDepth: _propTypes.default.number,
187
187
  /**
188
- * Set the density of the grid.
188
+ * Set the density of the Data Grid.
189
189
  * @default "standard"
190
190
  */
191
191
  density: _propTypes.default.oneOf(['comfortable', 'compact', 'standard']),
@@ -322,7 +322,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
322
322
  return null;
323
323
  }),
324
324
  /**
325
- * Set the filter model of the grid.
325
+ * Set the filter model of the Data Grid.
326
326
  */
327
327
  filterModel: _propTypes.default.shape({
328
328
  items: _propTypes.default.arrayOf(_propTypes.default.shape({
@@ -337,7 +337,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
337
337
  quickFilterValues: _propTypes.default.array
338
338
  }),
339
339
  /**
340
- * Forwarded props for the grid root element.
340
+ * Forwarded props for the Data Grid root element.
341
341
  * @ignore - do not document.
342
342
  */
343
343
  forwardedProps: _propTypes.default.object,
@@ -485,7 +485,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
485
485
  */
486
486
  loading: _propTypes.default.bool,
487
487
  /**
488
- * Set the locale text of the grid.
488
+ * Set the locale text of the Data Grid.
489
489
  * You can find all the translation keys supported in [the source](https://github.com/mui/mui-x/blob/HEAD/packages/grid/x-data-grid/src/constants/localeTextConstants.ts) in the GitHub repository.
490
490
  */
491
491
  localeText: _propTypes.default.object,
@@ -705,7 +705,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
705
705
  */
706
706
  onProcessRowUpdateError: _propTypes.default.func,
707
707
  /**
708
- * Callback fired when the grid is resized.
708
+ * Callback fired when the Data Grid is resized.
709
709
  * @param {ElementSize} containerSize With all properties from [[ElementSize]].
710
710
  * @param {MuiEvent<{}>} event The event object.
711
711
  * @param {GridCallbackDetails} details Additional details for this callback.
@@ -783,7 +783,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
783
783
  */
784
784
  onSortModelChange: _propTypes.default.func,
785
785
  /**
786
- * Callback fired when the state of the grid is updated.
786
+ * Callback fired when the state of the Data Grid is updated.
787
787
  * @param {GridState} state The new state.
788
788
  * @param {MuiEvent<{}>} event The event object.
789
789
  * @param {GridCallbackDetails} details Additional details for this callback.
@@ -860,7 +860,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
860
860
  */
861
861
  rowGroupingModel: _propTypes.default.arrayOf(_propTypes.default.string),
862
862
  /**
863
- * Sets the height in pixel of a row in the grid.
863
+ * Sets the height in pixel of a row in the Data Grid.
864
864
  * @default 52
865
865
  */
866
866
  rowHeight: _propTypes.default.number,
@@ -890,7 +890,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
890
890
  */
891
891
  rowSelection: _propTypes.default.bool,
892
892
  /**
893
- * Sets the row selection model of the grid.
893
+ * Sets the row selection model of the Data Grid.
894
894
  */
895
895
  rowSelectionModel: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]).isRequired), _propTypes.default.number, _propTypes.default.string]),
896
896
  /**
@@ -911,7 +911,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
911
911
  */
912
912
  rowThreshold: _propTypes.default.number,
913
913
  /**
914
- * Override the height/width of the grid inner scrollbar.
914
+ * Override the height/width of the Data Grid inner scrollbar.
915
915
  */
916
916
  scrollbarSize: _propTypes.default.number,
917
917
  /**
@@ -950,7 +950,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
950
950
  */
951
951
  sortingOrder: _propTypes.default.arrayOf(_propTypes.default.oneOf(['asc', 'desc'])),
952
952
  /**
953
- * Set the sort model of the grid.
953
+ * Set the sort model of the Data Grid.
954
954
  */
955
955
  sortModel: _propTypes.default.arrayOf(_propTypes.default.shape({
956
956
  field: _propTypes.default.string.isRequired,
@@ -961,7 +961,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
961
961
  */
962
962
  sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]),
963
963
  /**
964
- * If positive, the Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
964
+ * If positive, the Data Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
965
965
  * It can be useful if you have a high update rate but do not want to do heavy work like filtering / sorting or rendering on each individual update.
966
966
  * @default 0
967
967
  */
@@ -986,7 +986,7 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
986
986
  */
987
987
  unstable_headerFilters: _propTypes.default.bool,
988
988
  /**
989
- * If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
989
+ * If `true`, the Data Grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
990
990
  * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
991
991
  * @default false
992
992
  */
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v6.18.4
2
+ * @mui/x-data-grid-premium v6.18.6
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 = "MTcwMTk5MDAwMDAwMA==";
9
+ const releaseInfo = "MTcwMzIyMTIwMDAwMA==";
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.18.4",
3
+ "version": "6.18.6",
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.2",
35
35
  "@mui/utils": "^5.14.16",
36
- "@mui/x-data-grid": "6.18.4",
37
- "@mui/x-data-grid-pro": "6.18.4",
36
+ "@mui/x-data-grid": "6.18.6",
37
+ "@mui/x-data-grid-pro": "6.18.6",
38
38
  "@mui/x-license-pro": "6.10.2",
39
39
  "@types/format-util": "^1.0.3",
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 = "MTcwMTk5MDAwMDAwMA==";
3
+ const releaseInfo = "MTcwMzIyMTIwMDAwMA==";
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