@mui/x-data-grid-premium 8.6.0 → 8.7.0
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 +104 -1
- package/DataGridPremium/DataGridPremium.js +1 -1
- package/components/GridPremiumToolbar.js +0 -1
- package/components/aiAssistantPanel/GridAiAssistantPanelConversation.js +1 -0
- package/components/aiAssistantPanel/GridAiAssistantPanelConversationsMenu.js +1 -0
- package/components/collapsible/Collapsible.js +1 -0
- package/components/collapsible/CollapsibleContext.js +1 -0
- package/components/pivotPanel/GridPivotPanel.js +1 -0
- package/components/pivotPanel/GridPivotPanelBody.js +1 -0
- package/components/pivotPanel/GridPivotPanelField.js +1 -0
- package/components/pivotPanel/GridPivotPanelFieldMenu.js +1 -0
- package/components/prompt/GridPrompt.js +1 -0
- package/components/promptField/PromptField.js +1 -0
- package/components/promptField/PromptFieldContext.js +1 -0
- package/components/resizablePanel/ResizablePanelContext.js +1 -0
- package/esm/DataGridPremium/DataGridPremium.js +1 -1
- package/esm/components/GridPremiumToolbar.js +0 -1
- package/esm/components/aiAssistantPanel/GridAiAssistantPanelConversation.js +2 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanelConversationsMenu.js +2 -0
- package/esm/components/collapsible/Collapsible.js +2 -0
- package/esm/components/collapsible/CollapsibleContext.js +2 -0
- package/esm/components/pivotPanel/GridPivotPanel.js +2 -0
- package/esm/components/pivotPanel/GridPivotPanelBody.js +2 -0
- package/esm/components/pivotPanel/GridPivotPanelField.js +2 -0
- package/esm/components/pivotPanel/GridPivotPanelFieldMenu.js +2 -0
- package/esm/components/prompt/GridPrompt.js +2 -0
- package/esm/components/promptField/PromptField.js +2 -0
- package/esm/components/promptField/PromptFieldContext.js +2 -0
- package/esm/components/resizablePanel/ResizablePanelContext.js +2 -0
- package/esm/hooks/features/aggregation/useGridAggregation.js +2 -0
- package/esm/hooks/features/aiAssistant/useGridAiAssistant.js +2 -0
- package/esm/hooks/features/cellSelection/useGridCellSelection.js +2 -0
- package/esm/hooks/features/dataSource/useGridDataSourcePremium.js +2 -0
- package/esm/hooks/features/rowGrouping/useGridRowGrouping.js +2 -0
- package/esm/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +2 -0
- package/esm/hooks/utils/useKeepGroupedColumnsHidden.js +2 -0
- package/esm/hooks/utils/useResize.js +2 -0
- package/esm/index.js +1 -1
- package/hooks/features/aggregation/useGridAggregation.js +1 -0
- package/hooks/features/aiAssistant/useGridAiAssistant.js +1 -0
- package/hooks/features/cellSelection/useGridCellSelection.js +1 -0
- package/hooks/features/dataSource/useGridDataSourcePremium.js +1 -0
- package/hooks/features/rowGrouping/useGridRowGrouping.js +1 -0
- package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +1 -0
- package/hooks/utils/useKeepGroupedColumnsHidden.js +1 -0
- package/hooks/utils/useResize.js +1 -0
- package/index.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,109 @@
|
|
|
5
5
|
All notable changes to this project will be documented in this file.
|
|
6
6
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
7
7
|
|
|
8
|
+
## 8.7.0
|
|
9
|
+
|
|
10
|
+
_Jul 4, 2025_
|
|
11
|
+
|
|
12
|
+
We'd like to extend a big thank you to the 15 contributors who made this release possible. Here are some highlights ✨:
|
|
13
|
+
|
|
14
|
+
- 📊 Add `useChartProApiRef` for easier access to the API
|
|
15
|
+
- 📆 Support different start and end `referenceDate` props on range components
|
|
16
|
+
- 📚 Documentation improvements
|
|
17
|
+
- 🐞 Bugfixes
|
|
18
|
+
- 🌎 Improve Greek (el-GR) translations on the Charts
|
|
19
|
+
- 🌎 Improve Danish (da-DK) locale on the Data Grid
|
|
20
|
+
|
|
21
|
+
Special thanks go out to the community members for their valuable contributions:
|
|
22
|
+
@ShahrazH, @vadimkuragkovskiy, @whythecode
|
|
23
|
+
|
|
24
|
+
The following are all team members who have contributed to this release:
|
|
25
|
+
@alexfauquette, @brijeshb42, @mapache-salvaje, @arminmeh, @bernardobelchior, @bharatkashyap, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen, @rita-codes
|
|
26
|
+
|
|
27
|
+
### Data Grid
|
|
28
|
+
|
|
29
|
+
#### `@mui/x-data-grid@8.7.0`
|
|
30
|
+
|
|
31
|
+
- [DataGrid] Fix column state restore with controlled column visibility model (#18567) @arminmeh
|
|
32
|
+
- [DataGrid] Fix styling virtualized column headers (#18603) @KenanYusuf
|
|
33
|
+
- [l10n] Improve Danish (da-DK) locale (#18537) @ShahrazH
|
|
34
|
+
|
|
35
|
+
#### `@mui/x-data-grid-pro@8.7.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
36
|
+
|
|
37
|
+
Same changes as in `@mui/x-data-grid@8.7.0`.
|
|
38
|
+
|
|
39
|
+
#### `@mui/x-data-grid-premium@8.7.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
40
|
+
|
|
41
|
+
Same changes as in `@mui/x-data-grid-pro@8.7.0`.
|
|
42
|
+
|
|
43
|
+
### Date and Time Pickers
|
|
44
|
+
|
|
45
|
+
#### `@mui/x-date-pickers@8.7.0`
|
|
46
|
+
|
|
47
|
+
- [pickers] Support different `start` and `end` `referenceDate` props on range components (#18549) @LukasTy
|
|
48
|
+
|
|
49
|
+
#### `@mui/x-date-pickers-pro@8.7.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
50
|
+
|
|
51
|
+
Same changes as in `@mui/x-date-pickers@8.7.0`.
|
|
52
|
+
|
|
53
|
+
### Charts
|
|
54
|
+
|
|
55
|
+
#### `@mui/x-charts@8.7.0`
|
|
56
|
+
|
|
57
|
+
- [charts] Export `ChartsReferenceLineProps` (#18598) @bernardobelchior
|
|
58
|
+
- [charts] Extract bar and line plot logic into reusable hooks (#18541) @bernardobelchior
|
|
59
|
+
- [charts] Extract plot logic into separate files for reuse (#18522) @bernardobelchior
|
|
60
|
+
- [charts] Profile charts benchmarks using chromium (#18528) @bernardobelchior
|
|
61
|
+
- [l10n] Add Greek (el-GR) locale to charts (#18548) @whythecode
|
|
62
|
+
|
|
63
|
+
#### `@mui/x-charts-pro@8.7.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
64
|
+
|
|
65
|
+
Same changes as in `@mui/x-charts@8.7.0`, plus:
|
|
66
|
+
|
|
67
|
+
- [charts-pro] Add `useChartProApiRef` for easier refs (#18013) @JCQuintas
|
|
68
|
+
- [charts-pro] Add tests and classes to zoom slider (#18660) @JCQuintas
|
|
69
|
+
- [charts-pro] Fix geometry not handling gestures in specific scenarios (#18651) @JCQuintas
|
|
70
|
+
- [charts-pro] Rename `useChartApiContext` to `useChartProApiContext` (#18565) @JCQuintas
|
|
71
|
+
- [charts-pro] Zoom pointer improvements (#17480) @JCQuintas
|
|
72
|
+
|
|
73
|
+
### Tree View
|
|
74
|
+
|
|
75
|
+
#### `@mui/x-tree-view@8.7.0`
|
|
76
|
+
|
|
77
|
+
Internal changes.
|
|
78
|
+
|
|
79
|
+
#### `@mui/x-tree-view-pro@8.7.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
80
|
+
|
|
81
|
+
Same changes as in `@mui/x-tree-view@8.7.0`, plus:
|
|
82
|
+
|
|
83
|
+
- [tree view pro] Add missing `dataSource` JSDoc (#18650) @LukasTy
|
|
84
|
+
|
|
85
|
+
### Docs
|
|
86
|
+
|
|
87
|
+
- [docs] Add MCP stub (#18204) @bharatkashyap
|
|
88
|
+
- [docs] Fix AI Assistant proxy rewrite prefix (#18661) @arminmeh
|
|
89
|
+
- [docs] Improve test README.MD (#18634) @LukasTy
|
|
90
|
+
- [docs] Provide workaround for pie chart composition (#18600) @alexfauquette
|
|
91
|
+
- [docs][charts] Add donut chart as a special case of a pie chart (#18652) @bernardobelchior
|
|
92
|
+
- [docs][charts] Centralize country and continent data (#18604) @bernardobelchior
|
|
93
|
+
- [docs][data grid] Audit and revise the Pro row docs (#17926) @mapache-salvaje
|
|
94
|
+
- [docs][pickers] Add mention of theme augmentation in relevant migration section (#18608) @LukasTy
|
|
95
|
+
|
|
96
|
+
### Core
|
|
97
|
+
|
|
98
|
+
- [core] Avoid stringifying `document` object (#18657) @vadimkuragkovskiy
|
|
99
|
+
|
|
100
|
+
### Miscellaneous
|
|
101
|
+
|
|
102
|
+
- [code-infra] Bump code-infra version and fix breaking changes (#18653) @brijeshb42
|
|
103
|
+
- [code-infra] Ensure `material-ui/disallow-react-api-in-server-components` ESLint rule is applied (#18570) @LukasTy
|
|
104
|
+
- [code-infra] Migrate to flat eslint config (#18562) @brijeshb42
|
|
105
|
+
- [code-infra] Refactor eslint config (#18643) @LukasTy
|
|
106
|
+
- [infra] Add renovatebot rule for latest infra packages (#18609) @Janpot
|
|
107
|
+
- [infra] Move pushArgos script to code-infra (#18667) @Janpot
|
|
108
|
+
- [infra] Updates release script to fetch latest major version from upstream (#18552) @michelengelen
|
|
109
|
+
- [release] Add missing contributor to changelog (#18561) @bernardobelchior
|
|
110
|
+
|
|
8
111
|
## 8.6.0
|
|
9
112
|
|
|
10
113
|
_Jun 27, 2025_
|
|
@@ -19,7 +122,7 @@ We'd like to extend a big thank you to the 12 contributors who made this release
|
|
|
19
122
|
- 🌎 Improve German (de-DE) locale
|
|
20
123
|
|
|
21
124
|
Special thanks go out to the community members for their valuable contributions:
|
|
22
|
-
@ShahrazH, @vadimka123
|
|
125
|
+
@omalyutin, @ShahrazH, @vadimka123
|
|
23
126
|
|
|
24
127
|
The following are all team members who have contributed to this release:
|
|
25
128
|
@arminmeh, @bernardobelchior, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @rita-codes, @sai6855
|
|
@@ -40,7 +40,7 @@ const configuration = {
|
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
};
|
|
43
|
-
const releaseInfo = "
|
|
43
|
+
const releaseInfo = "MTc1MTU4MDAwMDAwMA==";
|
|
44
44
|
const watermark = /*#__PURE__*/(0, _jsxRuntime.jsx)(_xLicense.Watermark, {
|
|
45
45
|
packageName: "x-data-grid-premium",
|
|
46
46
|
releaseInfo: releaseInfo
|
|
@@ -52,7 +52,6 @@ function GridPremiumToolbar(props) {
|
|
|
52
52
|
onClick: onMenuItemClick,
|
|
53
53
|
children: apiRef.current.getLocaleText('toolbarExportExcel')
|
|
54
54
|
}) : undefined;
|
|
55
|
-
if (process.env.NODE_ENV !== "production") additionalExportMenuItems.displayName = "additionalExportMenuItems";
|
|
56
55
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_internals.GridToolbar, (0, _extends2.default)({}, other, {
|
|
57
56
|
additionalItems: additionalItems,
|
|
58
57
|
additionalExportMenuItems: additionalExportMenuItems
|
|
@@ -44,7 +44,6 @@ export function GridPremiumToolbar(props) {
|
|
|
44
44
|
onClick: onMenuItemClick,
|
|
45
45
|
children: apiRef.current.getLocaleText('toolbarExportExcel')
|
|
46
46
|
}) : undefined;
|
|
47
|
-
if (process.env.NODE_ENV !== "production") additionalExportMenuItems.displayName = "additionalExportMenuItems";
|
|
48
47
|
return /*#__PURE__*/_jsx(GridToolbar, _extends({}, other, {
|
|
49
48
|
additionalItems: additionalItems,
|
|
50
49
|
additionalExportMenuItems: additionalExportMenuItems
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
1
3
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
4
|
import * as React from 'react';
|
|
3
5
|
import { gridColumnLookupSelector, GridLogicOperator, gridRowsLookupSelector, useGridApiMethod, GRID_CHECKBOX_SELECTION_FIELD, GridPreferencePanelsValue } from '@mui/x-data-grid-pro';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
1
3
|
import * as React from 'react';
|
|
2
4
|
import { gridColumnLookupSelector, gridRowTreeSelector, useFirstRender } from '@mui/x-data-grid-pro';
|
|
3
5
|
import { useGridRegisterPipeProcessor, useGridRegisterStrategyProcessor, sortRowTree, createRowTree, updateRowTree, getVisibleRowsLookup } from '@mui/x-data-grid-pro/internals';
|
package/esm/index.js
CHANGED
package/hooks/utils/useResize.js
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid-premium",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "The Premium plan edition of the MUI X Data Grid Components.",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"clsx": "^2.1.1",
|
|
42
42
|
"exceljs": "^4.4.0",
|
|
43
43
|
"prop-types": "^15.8.1",
|
|
44
|
-
"@mui/x-data-grid": "8.
|
|
45
|
-
"@mui/x-
|
|
46
|
-
"@mui/x-
|
|
47
|
-
"@mui/x-
|
|
44
|
+
"@mui/x-data-grid": "8.7.0",
|
|
45
|
+
"@mui/x-internals": "8.7.0",
|
|
46
|
+
"@mui/x-data-grid-pro": "8.7.0",
|
|
47
|
+
"@mui/x-license": "8.7.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@emotion/react": "^11.9.0",
|