@mui/x-data-grid-premium 8.0.0-beta.3 → 8.1.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 +388 -96
- package/DataGridPremium/DataGridPremium.js +165 -9
- package/DataGridPremium/useDataGridPremiumComponent.d.ts +2 -2
- package/DataGridPremium/useDataGridPremiumComponent.js +22 -3
- package/DataGridPremium/useDataGridPremiumProps.js +5 -1
- package/components/GridColumnMenuPivotItem.d.ts +3 -0
- package/components/GridColumnMenuPivotItem.js +33 -0
- package/components/GridEmptyPivotOverlay.d.ts +6 -0
- package/components/GridEmptyPivotOverlay.js +29 -0
- package/components/GridFooterCell.js +1 -2
- package/components/GridGroupingCriteriaCell.js +8 -3
- package/components/GridPremiumColumnMenu.d.ts +5 -0
- package/components/GridPremiumColumnMenu.js +6 -1
- package/components/GridPremiumToolbar.d.ts +1 -1
- package/components/GridPremiumToolbar.js +29 -1
- package/components/aiAssistantPanel/AiAssistantPanelTrigger.d.ts +33 -0
- package/components/aiAssistantPanel/AiAssistantPanelTrigger.js +107 -0
- package/components/aiAssistantPanel/GridAiAssistantPanel.d.ts +3 -0
- package/components/aiAssistantPanel/GridAiAssistantPanel.js +195 -0
- package/components/aiAssistantPanel/GridAiAssistantPanelConversation.d.ts +7 -0
- package/components/aiAssistantPanel/GridAiAssistantPanelConversation.js +71 -0
- package/components/aiAssistantPanel/GridAiAssistantPanelConversationsMenu.d.ts +3 -0
- package/components/aiAssistantPanel/GridAiAssistantPanelConversationsMenu.js +89 -0
- package/components/aiAssistantPanel/GridAiAssistantPanelSuggestions.d.ts +7 -0
- package/components/aiAssistantPanel/GridAiAssistantPanelSuggestions.js +86 -0
- package/components/aiAssistantPanel/index.d.ts +2 -0
- package/components/aiAssistantPanel/index.js +27 -0
- package/components/collapsible/Collapsible.d.ts +4 -0
- package/components/collapsible/Collapsible.js +70 -0
- package/components/collapsible/CollapsibleContext.d.ts +8 -0
- package/components/collapsible/CollapsibleContext.js +17 -0
- package/components/collapsible/CollapsiblePanel.d.ts +4 -0
- package/components/collapsible/CollapsiblePanel.js +64 -0
- package/components/collapsible/CollapsibleTrigger.d.ts +4 -0
- package/components/collapsible/CollapsibleTrigger.js +106 -0
- package/components/collapsible/index.d.ts +4 -0
- package/components/collapsible/index.js +49 -0
- package/components/index.d.ts +5 -2
- package/components/index.js +40 -4
- package/components/pivotPanel/GridPivotPanel.d.ts +3 -0
- package/components/pivotPanel/GridPivotPanel.js +22 -0
- package/components/pivotPanel/GridPivotPanelBody.d.ts +11 -0
- package/components/pivotPanel/GridPivotPanelBody.js +368 -0
- package/components/pivotPanel/GridPivotPanelField.d.ts +22 -0
- package/components/pivotPanel/GridPivotPanelField.js +338 -0
- package/components/pivotPanel/GridPivotPanelFieldMenu.d.ts +8 -0
- package/components/pivotPanel/GridPivotPanelFieldMenu.js +177 -0
- package/components/pivotPanel/GridPivotPanelHeader.d.ts +7 -0
- package/components/pivotPanel/GridPivotPanelHeader.js +101 -0
- package/components/pivotPanel/GridPivotPanelSearch.d.ts +7 -0
- package/components/pivotPanel/GridPivotPanelSearch.js +77 -0
- package/components/pivotPanel/PivotPanelTrigger.d.ts +37 -0
- package/components/pivotPanel/PivotPanelTrigger.js +93 -0
- package/components/pivotPanel/index.d.ts +2 -0
- package/components/pivotPanel/index.js +27 -0
- package/components/prompt/GridPrompt.d.ts +7 -0
- package/components/prompt/GridPrompt.js +364 -0
- package/components/prompt/index.d.ts +1 -0
- package/components/prompt/index.js +12 -0
- package/components/promptField/GridPromptField.d.ts +4 -0
- package/components/promptField/GridPromptField.js +86 -0
- package/components/promptField/PromptField.d.ts +66 -0
- package/components/promptField/PromptField.js +95 -0
- package/components/promptField/PromptFieldContext.d.ts +16 -0
- package/components/promptField/PromptFieldContext.js +17 -0
- package/components/promptField/PromptFieldControl.d.ts +27 -0
- package/components/promptField/PromptFieldControl.js +102 -0
- package/components/promptField/PromptFieldRecord.d.ts +27 -0
- package/components/promptField/PromptFieldRecord.js +158 -0
- package/components/promptField/PromptFieldSend.d.ts +27 -0
- package/components/promptField/PromptFieldSend.js +83 -0
- package/components/promptField/index.d.ts +4 -0
- package/components/promptField/index.js +49 -0
- package/components/resizablePanel/ResizablePanel.d.ts +10 -0
- package/components/resizablePanel/ResizablePanel.js +59 -0
- package/components/resizablePanel/ResizablePanelContext.d.ts +7 -0
- package/components/resizablePanel/ResizablePanelContext.js +17 -0
- package/components/resizablePanel/ResizablePanelHandle.d.ts +4 -0
- package/components/resizablePanel/ResizablePanelHandle.js +115 -0
- package/components/resizablePanel/index.d.ts +3 -0
- package/components/resizablePanel/index.js +38 -0
- package/components/sidebar/Sidebar.d.ts +4 -0
- package/components/sidebar/Sidebar.js +54 -0
- package/components/sidebar/SidebarHeader.d.ts +4 -0
- package/components/sidebar/SidebarHeader.js +51 -0
- package/components/sidebar/index.d.ts +2 -0
- package/components/sidebar/index.js +27 -0
- package/constants/dataGridPremiumDefaultSlotsComponents.js +3 -0
- package/esm/DataGridPremium/DataGridPremium.js +167 -11
- package/esm/DataGridPremium/useDataGridPremiumComponent.d.ts +2 -2
- package/esm/DataGridPremium/useDataGridPremiumComponent.js +20 -3
- package/esm/DataGridPremium/useDataGridPremiumProps.js +5 -1
- package/esm/components/GridColumnMenuPivotItem.d.ts +3 -0
- package/esm/components/GridColumnMenuPivotItem.js +26 -0
- package/esm/components/GridEmptyPivotOverlay.d.ts +6 -0
- package/esm/components/GridEmptyPivotOverlay.js +22 -0
- package/esm/components/GridFooterCell.js +1 -2
- package/esm/components/GridGroupingCriteriaCell.js +9 -4
- package/esm/components/GridPremiumColumnMenu.d.ts +5 -0
- package/esm/components/GridPremiumColumnMenu.js +6 -1
- package/esm/components/GridPremiumToolbar.d.ts +1 -1
- package/esm/components/GridPremiumToolbar.js +30 -2
- package/esm/components/aiAssistantPanel/AiAssistantPanelTrigger.d.ts +33 -0
- package/esm/components/aiAssistantPanel/AiAssistantPanelTrigger.js +100 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanel.d.ts +3 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanel.js +188 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanelConversation.d.ts +7 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanelConversation.js +64 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanelConversationsMenu.d.ts +3 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanelConversationsMenu.js +82 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanelSuggestions.d.ts +7 -0
- package/esm/components/aiAssistantPanel/GridAiAssistantPanelSuggestions.js +80 -0
- package/esm/components/aiAssistantPanel/index.d.ts +2 -0
- package/esm/components/aiAssistantPanel/index.js +2 -0
- package/esm/components/collapsible/Collapsible.d.ts +4 -0
- package/esm/components/collapsible/Collapsible.js +63 -0
- package/esm/components/collapsible/CollapsibleContext.d.ts +8 -0
- package/esm/components/collapsible/CollapsibleContext.js +9 -0
- package/esm/components/collapsible/CollapsiblePanel.d.ts +4 -0
- package/esm/components/collapsible/CollapsiblePanel.js +57 -0
- package/esm/components/collapsible/CollapsibleTrigger.d.ts +4 -0
- package/esm/components/collapsible/CollapsibleTrigger.js +99 -0
- package/esm/components/collapsible/index.d.ts +4 -0
- package/esm/components/collapsible/index.js +4 -0
- package/esm/components/index.d.ts +5 -2
- package/esm/components/index.js +5 -2
- package/esm/components/pivotPanel/GridPivotPanel.d.ts +3 -0
- package/esm/components/pivotPanel/GridPivotPanel.js +16 -0
- package/esm/components/pivotPanel/GridPivotPanelBody.d.ts +11 -0
- package/esm/components/pivotPanel/GridPivotPanelBody.js +361 -0
- package/esm/components/pivotPanel/GridPivotPanelField.d.ts +22 -0
- package/esm/components/pivotPanel/GridPivotPanelField.js +331 -0
- package/esm/components/pivotPanel/GridPivotPanelFieldMenu.d.ts +8 -0
- package/esm/components/pivotPanel/GridPivotPanelFieldMenu.js +170 -0
- package/esm/components/pivotPanel/GridPivotPanelHeader.d.ts +7 -0
- package/esm/components/pivotPanel/GridPivotPanelHeader.js +94 -0
- package/esm/components/pivotPanel/GridPivotPanelSearch.d.ts +7 -0
- package/esm/components/pivotPanel/GridPivotPanelSearch.js +70 -0
- package/esm/components/pivotPanel/PivotPanelTrigger.d.ts +37 -0
- package/esm/components/pivotPanel/PivotPanelTrigger.js +86 -0
- package/esm/components/pivotPanel/index.d.ts +2 -0
- package/esm/components/pivotPanel/index.js +2 -0
- package/esm/components/prompt/GridPrompt.d.ts +7 -0
- package/esm/components/prompt/GridPrompt.js +357 -0
- package/esm/components/prompt/index.d.ts +1 -0
- package/esm/components/prompt/index.js +1 -0
- package/esm/components/promptField/GridPromptField.d.ts +4 -0
- package/esm/components/promptField/GridPromptField.js +79 -0
- package/esm/components/promptField/PromptField.d.ts +66 -0
- package/esm/components/promptField/PromptField.js +88 -0
- package/esm/components/promptField/PromptFieldContext.d.ts +16 -0
- package/esm/components/promptField/PromptFieldContext.js +9 -0
- package/esm/components/promptField/PromptFieldControl.d.ts +27 -0
- package/esm/components/promptField/PromptFieldControl.js +95 -0
- package/esm/components/promptField/PromptFieldRecord.d.ts +27 -0
- package/esm/components/promptField/PromptFieldRecord.js +151 -0
- package/esm/components/promptField/PromptFieldSend.d.ts +27 -0
- package/{modern/components/export/ExportExcel.js → esm/components/promptField/PromptFieldSend.js} +30 -38
- package/esm/components/promptField/index.d.ts +4 -0
- package/esm/components/promptField/index.js +4 -0
- package/esm/components/resizablePanel/ResizablePanel.d.ts +10 -0
- package/esm/components/resizablePanel/ResizablePanel.js +52 -0
- package/esm/components/resizablePanel/ResizablePanelContext.d.ts +7 -0
- package/esm/components/resizablePanel/ResizablePanelContext.js +9 -0
- package/esm/components/resizablePanel/ResizablePanelHandle.d.ts +4 -0
- package/esm/components/resizablePanel/ResizablePanelHandle.js +108 -0
- package/esm/components/resizablePanel/index.d.ts +3 -0
- package/esm/components/resizablePanel/index.js +3 -0
- package/esm/components/sidebar/Sidebar.d.ts +4 -0
- package/esm/components/sidebar/Sidebar.js +47 -0
- package/esm/components/sidebar/SidebarHeader.d.ts +4 -0
- package/esm/components/sidebar/SidebarHeader.js +44 -0
- package/esm/components/sidebar/index.d.ts +2 -0
- package/esm/components/sidebar/index.js +2 -0
- package/esm/constants/dataGridPremiumDefaultSlotsComponents.js +3 -0
- package/esm/hooks/features/aggregation/gridAggregationFunctions.js +13 -0
- package/esm/hooks/features/aggregation/gridAggregationSelectors.d.ts +10 -1
- package/esm/hooks/features/aggregation/gridAggregationSelectors.js +28 -1
- package/esm/hooks/features/aggregation/gridAggregationUtils.d.ts +1 -1
- package/esm/hooks/features/aggregation/index.d.ts +1 -1
- package/esm/hooks/features/aggregation/index.js +1 -1
- package/esm/hooks/features/aggregation/useGridAggregation.js +3 -7
- package/esm/hooks/features/aggregation/useGridAggregationPreProcessors.js +2 -8
- package/esm/hooks/features/aggregation/wrapColumnWithAggregation.d.ts +5 -25
- package/esm/hooks/features/aggregation/wrapColumnWithAggregation.js +23 -10
- package/esm/hooks/features/aiAssistant/api.d.ts +12 -0
- package/esm/hooks/features/aiAssistant/api.js +31 -0
- package/esm/hooks/features/aiAssistant/gridAiAssistantInterfaces.d.ts +82 -0
- package/esm/hooks/features/aiAssistant/gridAiAssistantSelectors.d.ts +5 -0
- package/esm/hooks/features/aiAssistant/gridAiAssistantSelectors.js +5 -0
- package/esm/hooks/features/aiAssistant/index.d.ts +2 -0
- package/esm/hooks/features/aiAssistant/useGridAiAssistant.d.ts +6 -0
- package/esm/hooks/features/aiAssistant/useGridAiAssistant.js +293 -0
- package/esm/hooks/features/dataSource/useGridDataSourcePremium.js +4 -1
- package/esm/hooks/features/index.d.ts +1 -1
- package/esm/hooks/features/index.js +1 -1
- package/esm/hooks/features/pivoting/gridPivotingInterfaces.d.ts +69 -0
- package/esm/hooks/features/pivoting/gridPivotingSelectors.d.ts +4 -0
- package/esm/hooks/features/pivoting/gridPivotingSelectors.js +5 -0
- package/esm/hooks/features/pivoting/useGridPivoting.d.ts +7 -0
- package/esm/hooks/features/pivoting/useGridPivoting.js +339 -0
- package/esm/hooks/features/pivoting/utils.d.ts +21 -0
- package/esm/hooks/features/pivoting/utils.js +259 -0
- package/esm/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.js +1 -4
- package/esm/hooks/features/rowGrouping/useGridRowGrouping.js +0 -1
- package/esm/hooks/utils/useResize.d.ts +9 -0
- package/esm/hooks/utils/useResize.js +52 -0
- package/esm/index.d.ts +4 -1
- package/esm/index.js +4 -2
- package/esm/material/icons.d.ts +15 -15
- package/esm/material/icons.js +32 -5
- package/esm/material/index.d.ts +31 -5
- package/esm/material/index.js +31 -3
- package/esm/models/dataGridPremiumProps.d.ts +96 -2
- package/esm/models/gridApiPremium.d.ts +4 -2
- package/esm/models/gridPremiumIconSlotsComponent.d.ts +141 -8
- package/esm/models/gridPremiumSlotsComponent.d.ts +13 -1
- package/esm/models/gridStatePremium.d.ts +6 -0
- package/esm/package.json +1 -1
- package/esm/setupExcelExportWebWorker/index.d.ts +1 -0
- package/esm/setupExcelExportWebWorker/index.js +1 -0
- package/esm/typeOverloads/modules.d.ts +32 -1
- package/esm/utils/speechRecognition.d.ts +2 -0
- package/esm/utils/speechRecognition.js +2 -0
- package/hooks/features/aggregation/gridAggregationFunctions.js +13 -0
- package/hooks/features/aggregation/gridAggregationSelectors.d.ts +10 -1
- package/hooks/features/aggregation/gridAggregationSelectors.js +29 -2
- package/hooks/features/aggregation/gridAggregationUtils.d.ts +1 -1
- package/hooks/features/aggregation/index.d.ts +1 -1
- package/hooks/features/aggregation/index.js +21 -11
- package/hooks/features/aggregation/useGridAggregation.js +3 -7
- package/hooks/features/aggregation/useGridAggregationPreProcessors.js +2 -8
- package/hooks/features/aggregation/wrapColumnWithAggregation.d.ts +5 -25
- package/hooks/features/aggregation/wrapColumnWithAggregation.js +24 -11
- package/hooks/features/aiAssistant/api.d.ts +12 -0
- package/hooks/features/aiAssistant/api.js +37 -0
- package/hooks/features/aiAssistant/gridAiAssistantInterfaces.d.ts +82 -0
- package/hooks/features/aiAssistant/gridAiAssistantSelectors.d.ts +5 -0
- package/hooks/features/aiAssistant/gridAiAssistantSelectors.js +11 -0
- package/hooks/features/aiAssistant/index.d.ts +2 -0
- package/hooks/features/aiAssistant/useGridAiAssistant.d.ts +6 -0
- package/hooks/features/aiAssistant/useGridAiAssistant.js +303 -0
- package/hooks/features/dataSource/useGridDataSourcePremium.js +3 -0
- package/hooks/features/index.d.ts +1 -1
- package/hooks/features/index.js +4 -4
- package/hooks/features/pivoting/gridPivotingInterfaces.d.ts +69 -0
- package/hooks/features/pivoting/gridPivotingInterfaces.js +5 -0
- package/hooks/features/pivoting/gridPivotingSelectors.d.ts +4 -0
- package/hooks/features/pivoting/gridPivotingSelectors.js +30 -0
- package/hooks/features/pivoting/useGridPivoting.d.ts +7 -0
- package/hooks/features/pivoting/useGridPivoting.js +349 -0
- package/hooks/features/pivoting/utils.d.ts +21 -0
- package/hooks/features/pivoting/utils.js +270 -0
- package/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.js +1 -4
- package/hooks/features/rowGrouping/useGridRowGrouping.js +0 -1
- package/hooks/utils/useResize.d.ts +9 -0
- package/hooks/utils/useResize.js +60 -0
- package/index.d.ts +4 -1
- package/index.js +19 -3
- package/material/icons.d.ts +15 -15
- package/material/icons.js +36 -9
- package/material/index.d.ts +31 -5
- package/material/index.js +30 -2
- package/models/dataGridPremiumProps.d.ts +96 -2
- package/models/gridApiPremium.d.ts +4 -2
- package/models/gridPremiumIconSlotsComponent.d.ts +141 -8
- package/models/gridPremiumSlotsComponent.d.ts +13 -1
- package/models/gridStatePremium.d.ts +6 -0
- package/package.json +9 -15
- package/setupExcelExportWebWorker/index.d.ts +1 -0
- package/{setupExcelExportWebWorker.js → setupExcelExportWebWorker/index.js} +1 -1
- package/typeOverloads/modules.d.ts +32 -1
- package/utils/speechRecognition.d.ts +2 -0
- package/utils/speechRecognition.js +8 -0
- package/components/promptControl/GridToolbarPromptControl.d.ts +0 -26
- package/components/promptControl/GridToolbarPromptControl.js +0 -222
- package/components/promptControl/RecordButton.d.ts +0 -16
- package/components/promptControl/RecordButton.js +0 -119
- package/components/promptControl/index.d.ts +0 -1
- package/components/promptControl/index.js +0 -12
- package/esm/components/promptControl/GridToolbarPromptControl.d.ts +0 -26
- package/esm/components/promptControl/GridToolbarPromptControl.js +0 -215
- package/esm/components/promptControl/RecordButton.d.ts +0 -16
- package/esm/components/promptControl/RecordButton.js +0 -111
- package/esm/components/promptControl/index.d.ts +0 -1
- package/esm/components/promptControl/index.js +0 -1
- package/esm/hooks/features/promptControl/api.d.ts +0 -2
- package/esm/hooks/features/promptControl/api.js +0 -22
- package/esm/hooks/features/promptControl/index.d.ts +0 -2
- package/esm/hooks/features/promptControl/types.d.ts +0 -25
- package/esm/setupExcelExportWebWorker.d.ts +0 -1
- package/esm/setupExcelExportWebWorker.js +0 -1
- package/esm/utils/releaseInfo.d.ts +0 -1
- package/esm/utils/releaseInfo.js +0 -13
- package/hooks/features/promptControl/api.d.ts +0 -2
- package/hooks/features/promptControl/api.js +0 -28
- package/hooks/features/promptControl/index.d.ts +0 -2
- package/hooks/features/promptControl/types.d.ts +0 -25
- package/modern/DataGridPremium/DataGrid.d.ts +0 -8
- package/modern/DataGridPremium/DataGrid.js +0 -19
- package/modern/DataGridPremium/DataGridPremium.d.ts +0 -16
- package/modern/DataGridPremium/DataGridPremium.js +0 -1127
- package/modern/DataGridPremium/index.d.ts +0 -3
- package/modern/DataGridPremium/index.js +0 -3
- package/modern/DataGridPremium/useDataGridPremiumComponent.d.ts +0 -4
- package/modern/DataGridPremium/useDataGridPremiumComponent.js +0 -108
- package/modern/DataGridPremium/useDataGridPremiumProps.d.ts +0 -6
- package/modern/DataGridPremium/useDataGridPremiumProps.js +0 -54
- package/modern/components/GridAggregationHeader.d.ts +0 -7
- package/modern/components/GridAggregationHeader.js +0 -89
- package/modern/components/GridAggregationRowOverlay.d.ts +0 -3
- package/modern/components/GridAggregationRowOverlay.js +0 -37
- package/modern/components/GridBottomContainer.d.ts +0 -3
- package/modern/components/GridBottomContainer.js +0 -43
- package/modern/components/GridColumnMenuAggregationItem.d.ts +0 -7
- package/modern/components/GridColumnMenuAggregationItem.js +0 -124
- package/modern/components/GridColumnMenuRowGroupItem.d.ts +0 -3
- package/modern/components/GridColumnMenuRowGroupItem.js +0 -42
- package/modern/components/GridColumnMenuRowUngroupItem.d.ts +0 -3
- package/modern/components/GridColumnMenuRowUngroupItem.js +0 -44
- package/modern/components/GridDataSourceGroupingCriteriaCell.d.ts +0 -7
- package/modern/components/GridDataSourceGroupingCriteriaCell.js +0 -121
- package/modern/components/GridExcelExportMenuItem.d.ts +0 -9
- package/modern/components/GridExcelExportMenuItem.js +0 -48
- package/modern/components/GridFooterCell.d.ts +0 -9
- package/modern/components/GridFooterCell.js +0 -43
- package/modern/components/GridGroupingColumnFooterCell.d.ts +0 -4
- package/modern/components/GridGroupingColumnFooterCell.js +0 -23
- package/modern/components/GridGroupingColumnLeafCell.d.ts +0 -4
- package/modern/components/GridGroupingColumnLeafCell.js +0 -17
- package/modern/components/GridGroupingCriteriaCell.d.ts +0 -7
- package/modern/components/GridGroupingCriteriaCell.js +0 -87
- package/modern/components/GridPremiumColumnMenu.d.ts +0 -33
- package/modern/components/GridPremiumColumnMenu.js +0 -37
- package/modern/components/GridPremiumToolbar.d.ts +0 -3
- package/modern/components/GridPremiumToolbar.js +0 -23
- package/modern/components/export/ExportExcel.d.ts +0 -29
- package/modern/components/export/index.d.ts +0 -1
- package/modern/components/export/index.js +0 -1
- package/modern/components/index.d.ts +0 -6
- package/modern/components/index.js +0 -6
- package/modern/components/promptControl/GridToolbarPromptControl.d.ts +0 -26
- package/modern/components/promptControl/GridToolbarPromptControl.js +0 -215
- package/modern/components/promptControl/RecordButton.d.ts +0 -16
- package/modern/components/promptControl/RecordButton.js +0 -111
- package/modern/components/promptControl/index.d.ts +0 -1
- package/modern/components/promptControl/index.js +0 -1
- package/modern/components/reexports.d.ts +0 -1
- package/modern/components/reexports.js +0 -1
- package/modern/constants/dataGridPremiumDefaultSlotsComponents.d.ts +0 -2
- package/modern/constants/dataGridPremiumDefaultSlotsComponents.js +0 -11
- package/modern/hooks/features/aggregation/createAggregationLookup.d.ts +0 -17
- package/modern/hooks/features/aggregation/createAggregationLookup.js +0 -111
- package/modern/hooks/features/aggregation/gridAggregationFunctions.d.ts +0 -8
- package/modern/hooks/features/aggregation/gridAggregationFunctions.js +0 -93
- package/modern/hooks/features/aggregation/gridAggregationInterfaces.d.ts +0 -129
- package/modern/hooks/features/aggregation/gridAggregationSelectors.d.ts +0 -13
- package/modern/hooks/features/aggregation/gridAggregationSelectors.js +0 -15
- package/modern/hooks/features/aggregation/gridAggregationUtils.d.ts +0 -62
- package/modern/hooks/features/aggregation/gridAggregationUtils.js +0 -180
- package/modern/hooks/features/aggregation/index.d.ts +0 -4
- package/modern/hooks/features/aggregation/index.js +0 -3
- package/modern/hooks/features/aggregation/useGridAggregation.d.ts +0 -6
- package/modern/hooks/features/aggregation/useGridAggregation.js +0 -103
- package/modern/hooks/features/aggregation/useGridAggregationPreProcessors.d.ts +0 -4
- package/modern/hooks/features/aggregation/useGridAggregationPreProcessors.js +0 -96
- package/modern/hooks/features/aggregation/wrapColumnWithAggregation.d.ts +0 -81
- package/modern/hooks/features/aggregation/wrapColumnWithAggregation.js +0 -215
- package/modern/hooks/features/cellSelection/gridCellSelectionInterfaces.d.ts +0 -40
- package/modern/hooks/features/cellSelection/gridCellSelectionInterfaces.js +0 -1
- package/modern/hooks/features/cellSelection/gridCellSelectionSelector.d.ts +0 -2
- package/modern/hooks/features/cellSelection/gridCellSelectionSelector.js +0 -2
- package/modern/hooks/features/cellSelection/index.d.ts +0 -1
- package/modern/hooks/features/cellSelection/index.js +0 -1
- package/modern/hooks/features/cellSelection/useGridCellSelection.d.ts +0 -6
- package/modern/hooks/features/cellSelection/useGridCellSelection.js +0 -486
- package/modern/hooks/features/clipboard/useGridClipboardImport.d.ts +0 -4
- package/modern/hooks/features/clipboard/useGridClipboardImport.js +0 -335
- package/modern/hooks/features/dataSource/models.d.ts +0 -54
- package/modern/hooks/features/dataSource/models.js +0 -1
- package/modern/hooks/features/dataSource/useGridDataSourcePremium.d.ts +0 -4
- package/modern/hooks/features/dataSource/useGridDataSourcePremium.js +0 -59
- package/modern/hooks/features/export/gridExcelExportInterface.d.ts +0 -71
- package/modern/hooks/features/export/gridExcelExportInterface.js +0 -1
- package/modern/hooks/features/export/index.d.ts +0 -2
- package/modern/hooks/features/export/index.js +0 -2
- package/modern/hooks/features/export/serializer/excelSerializer.d.ts +0 -40
- package/modern/hooks/features/export/serializer/excelSerializer.js +0 -269
- package/modern/hooks/features/export/serializer/setupExcelExportWebWorker.d.ts +0 -2
- package/modern/hooks/features/export/serializer/setupExcelExportWebWorker.js +0 -53
- package/modern/hooks/features/export/serializer/utils.d.ts +0 -36
- package/modern/hooks/features/export/serializer/utils.js +0 -93
- package/modern/hooks/features/export/useGridExcelExport.d.ts +0 -11
- package/modern/hooks/features/export/useGridExcelExport.js +0 -139
- package/modern/hooks/features/index.d.ts +0 -5
- package/modern/hooks/features/index.js +0 -6
- package/modern/hooks/features/promptControl/api.d.ts +0 -2
- package/modern/hooks/features/promptControl/api.js +0 -22
- package/modern/hooks/features/promptControl/index.d.ts +0 -2
- package/modern/hooks/features/promptControl/index.js +0 -1
- package/modern/hooks/features/promptControl/types.d.ts +0 -25
- package/modern/hooks/features/promptControl/types.js +0 -1
- package/modern/hooks/features/rowGrouping/createGroupingColDef.d.ts +0 -57
- package/modern/hooks/features/rowGrouping/createGroupingColDef.js +0 -272
- package/modern/hooks/features/rowGrouping/gridRowGroupingInterfaces.d.ts +0 -44
- package/modern/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +0 -1
- package/modern/hooks/features/rowGrouping/gridRowGroupingSelector.d.ts +0 -3
- package/modern/hooks/features/rowGrouping/gridRowGroupingSelector.js +0 -5
- package/modern/hooks/features/rowGrouping/gridRowGroupingUtils.d.ts +0 -54
- package/modern/hooks/features/rowGrouping/gridRowGroupingUtils.js +0 -173
- package/modern/hooks/features/rowGrouping/index.d.ts +0 -3
- package/modern/hooks/features/rowGrouping/index.js +0 -3
- package/modern/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.d.ts +0 -4
- package/modern/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.js +0 -73
- package/modern/hooks/features/rowGrouping/useGridRowGrouping.d.ts +0 -11
- package/modern/hooks/features/rowGrouping/useGridRowGrouping.js +0 -182
- package/modern/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.d.ts +0 -4
- package/modern/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +0 -157
- package/modern/hooks/features/rows/index.d.ts +0 -1
- package/modern/hooks/features/rows/index.js +0 -1
- package/modern/hooks/features/rows/useGridRowAriaAttributes.d.ts +0 -1
- package/modern/hooks/features/rows/useGridRowAriaAttributes.js +0 -8
- package/modern/hooks/index.d.ts +0 -2
- package/modern/hooks/index.js +0 -3
- package/modern/hooks/utils/index.d.ts +0 -1
- package/modern/hooks/utils/index.js +0 -1
- package/modern/hooks/utils/useGridApiContext.d.ts +0 -4
- package/modern/hooks/utils/useGridApiContext.js +0 -2
- package/modern/hooks/utils/useGridApiRef.d.ts +0 -4
- package/modern/hooks/utils/useGridApiRef.js +0 -2
- package/modern/hooks/utils/useGridAriaAttributes.d.ts +0 -2
- package/modern/hooks/utils/useGridAriaAttributes.js +0 -13
- package/modern/hooks/utils/useGridPrivateApiContext.d.ts +0 -2
- package/modern/hooks/utils/useGridPrivateApiContext.js +0 -2
- package/modern/hooks/utils/useGridRootProps.d.ts +0 -2
- package/modern/hooks/utils/useGridRootProps.js +0 -2
- package/modern/hooks/utils/useKeepGroupedColumnsHidden.d.ts +0 -12
- package/modern/hooks/utils/useKeepGroupedColumnsHidden.js +0 -43
- package/modern/index.d.ts +0 -23
- package/modern/index.js +0 -26
- package/modern/locales.d.ts +0 -1
- package/modern/locales.js +0 -1
- package/modern/material/icons.d.ts +0 -15
- package/modern/material/icons.js +0 -20
- package/modern/material/index.d.ts +0 -8
- package/modern/material/index.js +0 -11
- package/modern/models/dataGridPremiumProps.d.ts +0 -162
- package/modern/models/dataGridPremiumProps.js +0 -1
- package/modern/models/gridApiPremium.d.ts +0 -14
- package/modern/models/gridApiPremium.js +0 -1
- package/modern/models/gridGroupingValueGetter.d.ts +0 -4
- package/modern/models/gridGroupingValueGetter.js +0 -1
- package/modern/models/gridPastedValueParser.d.ts +0 -4
- package/modern/models/gridPastedValueParser.js +0 -1
- package/modern/models/gridPremiumIconSlotsComponent.d.ts +0 -28
- package/modern/models/gridPremiumIconSlotsComponent.js +0 -1
- package/modern/models/gridPremiumSlotsComponent.d.ts +0 -7
- package/modern/models/gridPremiumSlotsComponent.js +0 -1
- package/modern/models/gridStatePremium.d.ts +0 -18
- package/modern/models/gridStatePremium.js +0 -1
- package/modern/models/index.d.ts +0 -4
- package/modern/models/index.js +0 -4
- package/modern/package.json +0 -1
- package/modern/setupExcelExportWebWorker.d.ts +0 -1
- package/modern/setupExcelExportWebWorker.js +0 -1
- package/modern/themeAugmentation/index.d.ts +0 -2
- package/modern/themeAugmentation/index.js +0 -4
- package/modern/themeAugmentation/overrides.d.ts +0 -7
- package/modern/themeAugmentation/overrides.js +0 -1
- package/modern/themeAugmentation/props.d.ts +0 -15
- package/modern/themeAugmentation/props.js +0 -1
- package/modern/typeOverloads/index.d.ts +0 -2
- package/modern/typeOverloads/index.js +0 -2
- package/modern/typeOverloads/modules.d.ts +0 -97
- package/modern/typeOverloads/modules.js +0 -1
- package/modern/typeOverloads/reexports.d.ts +0 -17
- package/modern/typeOverloads/reexports.js +0 -15
- package/modern/utils/releaseInfo.d.ts +0 -1
- package/modern/utils/releaseInfo.js +0 -13
- package/setupExcelExportWebWorker.d.ts +0 -1
- package/tsconfig.build.tsbuildinfo +0 -1
- package/utils/releaseInfo.d.ts +0 -1
- package/utils/releaseInfo.js +0 -20
- /package/esm/hooks/features/{promptControl/types.js → aiAssistant/gridAiAssistantInterfaces.js} +0 -0
- /package/esm/hooks/features/{promptControl → aiAssistant}/index.js +0 -0
- /package/{modern/hooks/features/aggregation/gridAggregationInterfaces.js → esm/hooks/features/pivoting/gridPivotingInterfaces.js} +0 -0
- /package/esm/{locales.d.ts → locales/index.d.ts} +0 -0
- /package/esm/{locales.js → locales/index.js} +0 -0
- /package/hooks/features/{promptControl/types.js → aiAssistant/gridAiAssistantInterfaces.js} +0 -0
- /package/hooks/features/{promptControl → aiAssistant}/index.js +0 -0
- /package/{locales.d.ts → locales/index.d.ts} +0 -0
- /package/{locales.js → locales/index.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,298 @@
|
|
|
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.1.0
|
|
9
|
+
|
|
10
|
+
_Apr 24, 2025_
|
|
11
|
+
|
|
12
|
+
We'd like to offer a big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
|
|
13
|
+
|
|
14
|
+
- 📊 Add API to print a chart or export it as PDF: `apiRef.exportAsPrint`.
|
|
15
|
+
- 📚 Documentation improvements
|
|
16
|
+
- 🐞 Bugfixes
|
|
17
|
+
|
|
18
|
+
Special thanks go out to the community members for their valuable contributions:
|
|
19
|
+
@lhilgert9, @ArturAghakaryan, @sai6855.
|
|
20
|
+
Following are all team members who have contributed to this release:
|
|
21
|
+
@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @JCQuintas, @joserodolfofreitas, @KenanYusuf, @LukasTy, @mapache-salvaje, @oliviertassinari, @romgrk.
|
|
22
|
+
|
|
23
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
24
|
+
|
|
25
|
+
### Data Grid
|
|
26
|
+
|
|
27
|
+
#### `@mui/x-data-grid@8.1.0`
|
|
28
|
+
|
|
29
|
+
- [DataGrid] Allow row deselection with multiple rows selected (#17473) @arminmeh
|
|
30
|
+
- [DataGrid] Fix column title truncation on touch devices (#17375) @KenanYusuf
|
|
31
|
+
- [DataGrid] Remove internal usage of `material` prop (#17513) @KenanYusuf
|
|
32
|
+
- [DataGrid] Fix apiRef not being passed on onCellClick params (#17335) @sai6855
|
|
33
|
+
- [DataGrid] Add Armenian (hy-AM) locale (#17527) @ArturAghakaryan
|
|
34
|
+
|
|
35
|
+
#### `@mui/x-data-grid-pro@8.1.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
36
|
+
|
|
37
|
+
Same changes as in `@mui/x-data-grid@8.1.0`, plus:
|
|
38
|
+
|
|
39
|
+
- [DataGridPro] Fix locales.ts export (#17433) @lhilgert9
|
|
40
|
+
- [DataGridPro] Avoid proptypes warnings with header filters in React 17 (#17482) @cherniavskii
|
|
41
|
+
- [DataGridPro] Fix expandable rows detail content height updates (#17394) @arminmeh
|
|
42
|
+
|
|
43
|
+
#### `@mui/x-data-grid-premium@8.1.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
44
|
+
|
|
45
|
+
Same changes as in `@mui/x-data-grid-pro@8.1.0`.
|
|
46
|
+
|
|
47
|
+
### Date and Time Pickers
|
|
48
|
+
|
|
49
|
+
#### `@mui/x-date-pickers@8.1.0`
|
|
50
|
+
|
|
51
|
+
- [pickers] Improve `PickersInputBase` owner state typing (#17478) @LukasTy
|
|
52
|
+
|
|
53
|
+
#### `@mui/x-date-pickers-pro@8.1.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
54
|
+
|
|
55
|
+
Same changes as in `@mui/x-date-pickers@8.1.0`.
|
|
56
|
+
|
|
57
|
+
### Charts
|
|
58
|
+
|
|
59
|
+
- Add API to print a chart or export it as PDF: `apiRef.exportAsPrint`.
|
|
60
|
+
|
|
61
|
+
#### `@mui/x-charts@8.1.0`
|
|
62
|
+
|
|
63
|
+
- [charts] Add a localization provider (#17325) @alexfauquette
|
|
64
|
+
- [charts] Add codemod for replacing legend's hidden slot prop (#17392) @bernardobelchior
|
|
65
|
+
- [charts] Fix chart visual tests flakiness (#17469) @bernardobelchior
|
|
66
|
+
- [charts] Fix tooltip position (#17440) @alexfauquette
|
|
67
|
+
- [charts] Improve axis tooltip performances (#17398) @alexfauquette
|
|
68
|
+
- [charts] Move radar from under development to preview (#17418) @alexfauquette
|
|
69
|
+
- [charts] Advance time in charts regression tests (#17420) @bernardobelchior
|
|
70
|
+
- [charts] Fix charts visuals flakiness (#17472) @bernardobelchior
|
|
71
|
+
- [charts] Move `rafThrottle` on event handlers instead of setter (#17489) @bernardobelchior
|
|
72
|
+
|
|
73
|
+
#### `@mui/x-charts-pro@8.1.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
74
|
+
|
|
75
|
+
Same changes as in `@mui/x-charts@8.1.0`, plus:
|
|
76
|
+
|
|
77
|
+
- [charts-pro] Add export as PDF/print functionality (#17285) @bernardobelchior
|
|
78
|
+
- [charts-pro] Fix axis zoom being disabled when not specified in `initialZoom` (#17500) @bernardobelchior
|
|
79
|
+
|
|
80
|
+
### Tree View
|
|
81
|
+
|
|
82
|
+
#### `@mui/x-tree-view@8.1.0`
|
|
83
|
+
|
|
84
|
+
Internal changes.
|
|
85
|
+
|
|
86
|
+
#### `@mui/x-tree-view-pro@8.1.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
87
|
+
|
|
88
|
+
Same changes as in `@mui/x-tree-view@8.1.0`.
|
|
89
|
+
|
|
90
|
+
### Docs
|
|
91
|
+
|
|
92
|
+
- [docs] Fix AI Assistant Panel Trigger demo (#17426) @KenanYusuf
|
|
93
|
+
- [docs] Fix DataGrid's master-detail demo for one expanded detail panel at a time (#17471) @arminmeh
|
|
94
|
+
- [docs] Improve StackOverflow links (#17483) @oliviertassinari
|
|
95
|
+
- [docs] Refine charts demos (#17417) @alexfauquette
|
|
96
|
+
- [docs] Remove ad on paid docs pages (#17373) @oliviertassinari
|
|
97
|
+
- [docs] Serve migration guides in raw markdown format (#17210) @cherniavskii
|
|
98
|
+
- [docs] Fix heading structure (#17495) @oliviertassinari
|
|
99
|
+
- [docs] Revise the Row Grouping doc (#16217) @mapache-salvaje
|
|
100
|
+
- [docs] Fix ellipsis in the demo (#17476) @oliviertassinari
|
|
101
|
+
- [docs] Add docs information for Legend HTML (#17502) @alexfauquette
|
|
102
|
+
- [docs] Refine charts demos (#17417) @alexfauquette
|
|
103
|
+
- [tree view][docs] Copyedit the Tree View Overview page (#17498) @mapache-salvaje
|
|
104
|
+
|
|
105
|
+
### Core
|
|
106
|
+
|
|
107
|
+
- [core] Bump `@types/node` (#17444) @LukasTy
|
|
108
|
+
- [core] Remove `react-is` dependency (#17470) @LukasTy
|
|
109
|
+
- [core] Remove redundant `overridesResolver` in `styled` components (#17466) @romgrk
|
|
110
|
+
- [core] Update support table (#17425) @joserodolfofreitas
|
|
111
|
+
- [code-infra] Ditch `@babel/node` (#17446) @LukasTy
|
|
112
|
+
- [code-infra] Further remove `clock=fake` from pickers (#17253) @JCQuintas
|
|
113
|
+
|
|
114
|
+
## 8.0.0
|
|
115
|
+
|
|
116
|
+
_Apr 17, 2025_
|
|
117
|
+
|
|
118
|
+
We're excited to [announce the first v8 stable release](https://mui.com/blog/mui-x-v8/)! 🎉🚀
|
|
119
|
+
|
|
120
|
+
This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements.
|
|
121
|
+
Migration guides are available with a complete list of the breaking changes:
|
|
122
|
+
|
|
123
|
+
- [Data Grid](https://mui.com/x/migration/migration-data-grid-v7/)
|
|
124
|
+
- [Date and Time Pickers](https://mui.com/x/migration/migration-pickers-v7/)
|
|
125
|
+
- [Tree View](https://mui.com/x/migration/migration-tree-view-v7/)
|
|
126
|
+
- [Charts](https://mui.com/x/migration/migration-charts-v7/)
|
|
127
|
+
- [Material UI v7](https://mui.com/material-ui/migration/upgrade-to-v7/)
|
|
128
|
+
|
|
129
|
+
Here are the highlights from alpha and beta releases included in this stable release:
|
|
130
|
+
|
|
131
|
+
- ⚛️ React 19 support.
|
|
132
|
+
- 🎁 `@mui/material@7` support – see the [Material UI v7 upgrade guide](https://mui.com/material-ui/migration/upgrade-to-v7/).
|
|
133
|
+
|
|
134
|
+
- 🔄 [Pivoting](https://mui.com/x/react-data-grid/pivoting/).
|
|
135
|
+
- 🤖 [AI Assistant](https://mui.com/x/react-data-grid/ai-assistant/).
|
|
136
|
+
- 🛠️ New and improved Data Grid [Toolbar component](https://mui.com/x/react-data-grid/components/toolbar/).
|
|
137
|
+
- 📦 Data Grid [data source](https://mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan.
|
|
138
|
+
- 🚫 Add ["No columns" overlay](https://mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid.
|
|
139
|
+
- 🍬 Improved design for Data Grid [Header filters](https://mui.com/x/react-data-grid/filtering/header-filters/).
|
|
140
|
+
- 🔄 Add Data Grid [Scroll restoration](https://mui.com/x/react-data-grid/scrolling/#scroll-restoration).
|
|
141
|
+
- 💫 Support [aggregation with server-side data](https://mui.com/x/react-data-grid/server-side-data/aggregation/).
|
|
142
|
+
- 🎁 Support [server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid.
|
|
143
|
+
- 📝 Support [editing with server-side Data Source](https://mui.com/x/react-data-grid/server-side-data/#updating-data).
|
|
144
|
+
- 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching).
|
|
145
|
+
- 🏎️ Improved Data Grid aggregation, Excel export serialization, mount, resize and scrolling performance.
|
|
146
|
+
- 🎨 Improved Data Grid theming and add default background color.
|
|
147
|
+
|
|
148
|
+
- 📊 New Pro chart: [Funnel](https://mui.com/x/react-charts/funnel/).
|
|
149
|
+
- 📊 New Community chart: [Radar](https://mui.com/x/react-charts/radar/) is available in preview for testing.
|
|
150
|
+
- 📊 Charts legend is now an HTML element which can be styled more easily.
|
|
151
|
+
- 📊 [Gauge charts](https://mui.com/x/react-charts/gauge/) animation.
|
|
152
|
+
- 📊 Create [custom HTML components](https://mui.com/x/react-charts/components/#html-components) using chart data.
|
|
153
|
+
- 📊 Refactor Charts [Tooltip customization](https://mui.com/x/react-charts/tooltip/#overriding-content).
|
|
154
|
+
- 📊 Improved Charts [composition](https://mui.com/x/react-charts/composition/#overview).
|
|
155
|
+
- 📊 Charts support server-side rendering under [some conditions](https://mui.com/x/react-charts/getting-started/#server-side-rendering).
|
|
156
|
+
- 📊 Add a new API to support multiple axes (decouple `margin` and `axis-size`).
|
|
157
|
+
- 🚫 Removed `react-spring` dependency from `@mui/x-charts`.
|
|
158
|
+
|
|
159
|
+
- 🚀 New [Time Range Picker](https://mui.com/x/react-date-pickers/time-range-picker/) component.
|
|
160
|
+
|
|
161
|
+
- 🔁 Support [automatic parents and children selection](https://mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
|
|
162
|
+
- 🎛️ New [customization APIs](https://mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item) for the Tree Item component.
|
|
163
|
+
|
|
164
|
+
Below are the changes since the last beta release:
|
|
165
|
+
|
|
166
|
+
### Data Grid
|
|
167
|
+
|
|
168
|
+
#### `@mui/x-data-grid@8.0.0`
|
|
169
|
+
|
|
170
|
+
- [DataGrid] Data source with editing (#16045) @MBilalShafi
|
|
171
|
+
- [DataGrid] Deprecate old toolbar components (#17294) @KenanYusuf
|
|
172
|
+
- [DataGrid] Refactor: add typings to icons (#17291) @romgrk
|
|
173
|
+
- [DataGrid] Prevent scrollbars from showing on top (#17405) @romgrk
|
|
174
|
+
- [l10n] Improve Polish (pl-PL) locale (#17336) (#17396) @sofortdagmbh
|
|
175
|
+
- [l10n] Improve Swedish (sv-SE) locale (#17293) @ptuukkan
|
|
176
|
+
|
|
177
|
+
#### `@mui/x-data-grid-pro@8.0.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
178
|
+
|
|
179
|
+
Same changes as in `@mui/x-data-grid@8.0.0`, plus:
|
|
180
|
+
|
|
181
|
+
- [DataGridPro] Fix row virtualization not working in list view (#17399) @cherniavskii
|
|
182
|
+
|
|
183
|
+
#### `@mui/x-data-grid-premium@8.0.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
184
|
+
|
|
185
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0`, plus:
|
|
186
|
+
|
|
187
|
+
- [DataGridPremium] AI Assistant (#16992) @arminmeh
|
|
188
|
+
- [DataGridPremium] Fix aggregated values sorting (#17326) @cherniavskii
|
|
189
|
+
- [DataGridPremium] Fix cell display with custom renderers in pivot mode (#17323) @cherniavskii
|
|
190
|
+
- [DataGridPremium] Fix stale aggregation results after filtering (#17296) @cherniavskii
|
|
191
|
+
- [DataGridPremium] Pivoting (#9877) @cherniavskii
|
|
192
|
+
- [DataGridPremium] Use `groupingValueGetter` for row grouping on the server (#17376) @cherniavskii
|
|
193
|
+
|
|
194
|
+
### Date and Time Pickers
|
|
195
|
+
|
|
196
|
+
#### Breaking changes
|
|
197
|
+
|
|
198
|
+
- The view selection process has been updated to make it clear across all Pickers.
|
|
199
|
+
Pickers no longer automatically switch between **date** and **time views** or **start** and **end positions**.
|
|
200
|
+
Moving between views and range positions is achieved using the new "Next" action button.
|
|
201
|
+
|
|
202
|
+
#### `@mui/x-date-pickers@8.0.0`
|
|
203
|
+
|
|
204
|
+
- [fields] Fix the error message when a custom field with an `<input />` but the field expects the accessible DOM structure (#17237) @flaviendelangle
|
|
205
|
+
- [fields] Fix to submit a form on `Enter` press with accessible DOM structure (#17328) @LukasTy
|
|
206
|
+
- [fields] Prevent focusing the field or any section when `disabled=true` (#17215) @flaviendelangle
|
|
207
|
+
- [l10n] Improve Czech (cs-CZ) locale (#17387) @lubka272
|
|
208
|
+
- [l10n] Improve Slovak (sk-SK) locale (#17249) @lubka272
|
|
209
|
+
- [pickers] Fix failing proptypes CI (#17413) @romgrk
|
|
210
|
+
- [pickers] Fix to not process default prevented propagated events (#17312) @LukasTy
|
|
211
|
+
- [pickers] Mark active range position field section with underline (#16938) @LukasTy
|
|
212
|
+
- [pickers] Remove automatic switch between date and time or between range positions (#17166) @flaviendelangle
|
|
213
|
+
|
|
214
|
+
#### `@mui/x-date-pickers-pro@8.0.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
215
|
+
|
|
216
|
+
Same changes as in `@mui/x-date-pickers@8.0.0`, plus:
|
|
217
|
+
|
|
218
|
+
- [DateTimeRangePicker] Fix focused view behavior (#17313) @LukasTy
|
|
219
|
+
|
|
220
|
+
### Charts
|
|
221
|
+
|
|
222
|
+
#### `@mui/x-charts@8.0.0`
|
|
223
|
+
|
|
224
|
+
- [charts] Add `slotProps.legend.hidden` to migration docs (#17379) @bernardobelchior
|
|
225
|
+
- [charts] Add labels above bars example (#16860) @bernardobelchior
|
|
226
|
+
- [charts] Add tooltip to the radar (#16950) @alexfauquette
|
|
227
|
+
- [charts] Add uncertainty area to line with forecast demo (#17355) @bernardobelchior
|
|
228
|
+
- [charts] Animate gauge chart (#17304) @bernardobelchior
|
|
229
|
+
- [charts] Convert `AnimationContext` into a plugin (#17299) @bernardobelchior
|
|
230
|
+
- [charts] Export 'series' class as part of `barElementClasses` (#17273) @10tacion
|
|
231
|
+
- [charts] Expose axes types (#17309) @bernardobelchior
|
|
232
|
+
- [charts] Expose higher level `useAnimate` hook (#17162) @bernardobelchior
|
|
233
|
+
- [charts] Fix axis types not narrowing (#17321) @bernardobelchior
|
|
234
|
+
- [charts] Fix bar chart with partial data (#17290) @alexfauquette
|
|
235
|
+
- [charts] Fix `useAnimate` test flakiness (#17372) @bernardobelchior
|
|
236
|
+
- [charts] Radar design refinement (#17165) @alexfauquette
|
|
237
|
+
- [charts] Remove unused code (#17310) @bernardobelchior
|
|
238
|
+
- [charts] Remove unused files (#17242) @JCQuintas
|
|
239
|
+
- [charts] Use `useEventCallback` to memoize `onZoomChange` without triggering a re-render (#17233) @JCQuintas
|
|
240
|
+
- [charts] Document series class name (#17362) @bernardobelchior
|
|
241
|
+
- [charts] Add default plugins in `ChartDataProvider` (#17403) @bernardobelchior
|
|
242
|
+
- [charts] Fix chart direction in docs (#17419) @bernardobelchior
|
|
243
|
+
|
|
244
|
+
#### `@mui/x-charts-pro@8.0.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
245
|
+
|
|
246
|
+
Same changes as in `@mui/x-charts@8.0.0`, plus:
|
|
247
|
+
|
|
248
|
+
- [charts-pro] Update zoom using `requestAnimationFrame` (#17137) @JCQuintas
|
|
249
|
+
|
|
250
|
+
### Tree View
|
|
251
|
+
|
|
252
|
+
#### `@mui/x-tree-view@8.0.0`
|
|
253
|
+
|
|
254
|
+
- [TreeView] Add React Compiler linting rules (#16357) @flaviendelangle
|
|
255
|
+
|
|
256
|
+
#### `@mui/x-tree-view-pro@8.0.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
257
|
+
|
|
258
|
+
Same changes as in `@mui/x-tree-view@8.0.0`.
|
|
259
|
+
|
|
260
|
+
### Docs
|
|
261
|
+
|
|
262
|
+
- [docs] Add intro section for Telemetry (#17244) @prakhargupta1
|
|
263
|
+
- [docs] Add migration guide for the picker's `ownerState` changes (#17151) @flaviendelangle
|
|
264
|
+
- [docs] Add What's new section for MUI X v8 (#17397) @joserodolfofreitas
|
|
265
|
+
- [docs] Fix ESM guide (#17280) @oliviertassinari
|
|
266
|
+
- [docs] Fix Vale errors (#17281) @oliviertassinari
|
|
267
|
+
- [docs] Fix country columns throwing on grouping (#17315) @cherniavskii
|
|
268
|
+
- [docs] Fix paths in `ResponsiveChartContainer` migration guide (#17364) @MonstraG
|
|
269
|
+
- [docs] Mention priority support on MUI X docs (#16467) @prakhargupta1
|
|
270
|
+
- [docs] Match title side nav @oliviertassinari
|
|
271
|
+
- [docs] Fix incorrect mention of PDF export (#17277) @oliviertassinari
|
|
272
|
+
- [docs] Fix row spanning lab icon (#17278) @oliviertassinari
|
|
273
|
+
- [docs] Fix header Sentence case consistency (#17274) @oliviertassinari
|
|
274
|
+
- [docs] Flag experimental API (#17279) @oliviertassinari
|
|
275
|
+
- [docs] Fix some 301 redirections @oliviertassinari
|
|
276
|
+
- [docs] Update supported versions table (#17287) @joserodolfofreitas
|
|
277
|
+
|
|
278
|
+
### Core
|
|
279
|
+
|
|
280
|
+
- [core] Always use the correct babel runtime (#17241) @alexfauquette
|
|
281
|
+
- [core] Document `TelemetryContextType` (#17282) @oliviertassinari
|
|
282
|
+
- [core] Fix proptypes (#17378) @cherniavskii
|
|
283
|
+
- [core] Remove modern bundles (#17359) @LukasTy
|
|
284
|
+
- [core] Setup testing to work with CSS imports (#17214) @romgrk
|
|
285
|
+
- [core] Testing setup fixes & lints (#17356) @romgrk
|
|
286
|
+
- [core] Simplify the way `__RELEASE_INFO__` is managed (#17416) @LukasTy
|
|
287
|
+
- [code-infra] Align build script with core to handle sideEffects (#17370) @Janpot
|
|
288
|
+
- [code-infra] CI optimization: re-use ffmpeg (#17333) @romgrk
|
|
289
|
+
- [code-infra] Charts `vitest` changes (#17247) @JCQuintas
|
|
290
|
+
- [code-infra] Further datagrid changes for `vitest` (#17251) @JCQuintas
|
|
291
|
+
- [code-infra] Prepare argos script call for required arg (#17371) @Janpot
|
|
292
|
+
- [code-infra] Remove more `clock=fake` from pickers tests (#17225) @JCQuintas
|
|
293
|
+
- [code-infra] Tentative fix for datagrid flaky test (#17289) @JCQuintas
|
|
294
|
+
- [code-infra] Update MUI Internal and slightly cleanup regressions test setup (#17182) @LukasTy
|
|
295
|
+
- [infra] Update support label from 'priority' to 'unknown' (#17288) @michelengelen
|
|
296
|
+
- [release] Major release preparation (#17319) @michelengelen
|
|
297
|
+
- [test] Fix flaky data source aggregation test (#17307, #17311, #17316) @KenanYusuf @cherniavskii @LukasTy
|
|
298
|
+
- [test] Skip flaky aggregation test (#17391) @MBilalShafi
|
|
299
|
+
|
|
8
300
|
## 8.0.0-beta.3
|
|
9
301
|
|
|
10
302
|
_Apr 3, 2025_
|
|
@@ -325,7 +617,7 @@ _Mar 18, 2025_
|
|
|
325
617
|
|
|
326
618
|
We'd like to offer a big thanks to the 21 contributors who made this release possible. Here are some highlights ✨:
|
|
327
619
|
|
|
328
|
-
- 🚀 Add [Time Range Picker](https://
|
|
620
|
+
- 🚀 Add [Time Range Picker](https://mui.com/x/react-date-pickers/time-range-picker/) component
|
|
329
621
|
- 🎁 Add support for `@mui/material` version 7 in all X packages
|
|
330
622
|
- 🐞 Bugfixes
|
|
331
623
|
- 🌍 Improve Chinese (zh-CN), (zh-HK), (zh-TW), Czech (cs-CZ), Korean (ko-KR) and Slovak (sk-Sk) locales on the Data Grid
|
|
@@ -350,27 +642,27 @@ Below are the highlights of the alpha releases leading up to this beta release:
|
|
|
350
642
|
|
|
351
643
|
- ⚛️ React 19 support.
|
|
352
644
|
|
|
353
|
-
- 🛠️ New and improved Data Grid [Toolbar component](https://
|
|
354
|
-
- 📦 Data Grid [data source](https://
|
|
355
|
-
- 🚫 Add ["No columns" overlay](https://
|
|
356
|
-
- 🍬 Improved design for Data Grid [Header filters](https://
|
|
357
|
-
- 🔄 Add Data Grid [Scroll restoration](https://
|
|
358
|
-
- 💫 Support [aggregation with server-side data](https://
|
|
359
|
-
- 🎁 Support [Server-side lazy loading](https://
|
|
360
|
-
- 🎯 Improved [data caching](https://
|
|
645
|
+
- 🛠️ New and improved Data Grid [Toolbar component](https://mui.com/x/react-data-grid/components/toolbar/).
|
|
646
|
+
- 📦 Data Grid [data source](https://mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan.
|
|
647
|
+
- 🚫 Add ["No columns" overlay](https://mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid.
|
|
648
|
+
- 🍬 Improved design for Data Grid [Header filters](https://mui.com/x/react-data-grid/filtering/header-filters/).
|
|
649
|
+
- 🔄 Add Data Grid [Scroll restoration](https://mui.com/x/react-data-grid/scrolling/#scroll-restoration).
|
|
650
|
+
- 💫 Support [aggregation with server-side data](https://mui.com/x/react-data-grid/server-side-data/aggregation/).
|
|
651
|
+
- 🎁 Support [Server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid.
|
|
652
|
+
- 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching).
|
|
361
653
|
- 🏎️ Improve Data Grid aggregation, Excel export serialization, mount, resize and scrolling performance.
|
|
362
654
|
- 🎨 Improve Data Grid theming and add default background color.
|
|
363
655
|
|
|
364
|
-
- 📊 New Pro chart: [Funnel](https://
|
|
365
|
-
- 📊 New Community chart: [Radar](https://
|
|
656
|
+
- 📊 New Pro chart: [Funnel](https://mui.com/x/react-charts/funnel/).
|
|
657
|
+
- 📊 New Community chart: [Radar](https://mui.com/x/react-charts/radar/) is available in preview for testing.
|
|
366
658
|
- 📊 Charts legend is now an HTML element which can be styled more easily.
|
|
367
|
-
- 📊 Create [custom HTML components](https://
|
|
368
|
-
- 📊 Refactor Charts [Tooltip customization](https://
|
|
369
|
-
- 📊 Improve Charts [composition](https://
|
|
370
|
-
- 📊 Charts support server-side rendering under [some conditions](https://
|
|
659
|
+
- 📊 Create [custom HTML components](https://mui.com/x/react-charts/components/#html-components) using chart data.
|
|
660
|
+
- 📊 Refactor Charts [Tooltip customization](https://mui.com/x/react-charts/tooltip/#overriding-content).
|
|
661
|
+
- 📊 Improve Charts [composition](https://mui.com/x/react-charts/composition/#overview).
|
|
662
|
+
- 📊 Charts support server-side rendering under [some conditions](https://mui.com/x/react-charts/getting-started/#server-side-rendering).
|
|
371
663
|
- 📊 Add a new API to support multiple axes (decouple `margin` and `axis-size`)
|
|
372
664
|
|
|
373
|
-
- 🔁 Support [automatic parents and children selection](https://
|
|
665
|
+
- 🔁 Support [automatic parents and children selection](https://mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
|
|
374
666
|
|
|
375
667
|
### Data Grid
|
|
376
668
|
|
|
@@ -412,8 +704,8 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-beta.0`, plus:
|
|
|
412
704
|
#### Breaking changes
|
|
413
705
|
|
|
414
706
|
- The `useClearableField` hook has been removed.
|
|
415
|
-
The custom field component now receives the `clearable` and `onClear` props — [Learn more](https://
|
|
416
|
-
- The `ExportedUseClearableFieldProps`, `UseClearableFieldSlots`, `UseClearableFieldSlotProps`, and `UseClearableFieldResponse` types have been removed — [Learn more](https://
|
|
707
|
+
The custom field component now receives the `clearable` and `onClear` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#useclearablefield).
|
|
708
|
+
- The `ExportedUseClearableFieldProps`, `UseClearableFieldSlots`, `UseClearableFieldSlotProps`, and `UseClearableFieldResponse` types have been removed — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#removed-types).
|
|
417
709
|
|
|
418
710
|
#### `@mui/x-date-pickers@8.0.0-beta.0`
|
|
419
711
|
|
|
@@ -508,7 +800,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
508
800
|
- 🚀📊 New Pro Chart: It is now possible to create Funnel charts—perfect for visualizing conversions, sales pipelines and more!
|
|
509
801
|
<img width="418" alt="Screenshot 2025-01-31 at 12 22 31" src="https://github.com/user-attachments/assets/8cd26821-5f11-46bf-a9bb-34d212880a47" />
|
|
510
802
|
- 🎁 The first iteration of the radar chart is available. Features and refinements will be added in the coming weeks.
|
|
511
|
-
- 🛠️ New and improved [Toolbar component](https://
|
|
803
|
+
- 🛠️ New and improved [Toolbar component](https://mui.com/x/react-data-grid/components/toolbar/) for the data grid
|
|
512
804
|
- 🐞 Bugfixes
|
|
513
805
|
|
|
514
806
|
Special thanks go out to the community member for their valuable contributions:
|
|
@@ -523,7 +815,7 @@ Following are all team members who have contributed to this release:
|
|
|
523
815
|
|
|
524
816
|
#### Breaking changes
|
|
525
817
|
|
|
526
|
-
- The density selector has been removed from the toolbar. It is still possible to set the density programmatically via the `density` prop. A density selector can be added to a custom toolbar passed to `slots.toolbar`. See [Toolbar component—Settings menu](https://
|
|
818
|
+
- The density selector has been removed from the toolbar. It is still possible to set the density programmatically via the `density` prop. A density selector can be added to a custom toolbar passed to `slots.toolbar`. See [Toolbar component—Settings menu](https://mui.com/x/react-data-grid/components/toolbar/#settings-menu) for an example.
|
|
527
819
|
- The quick filter is now shown in the toolbar by default. Use `slotProps={{ toolbar: { showQuickFilter: false } }}` to hide it.
|
|
528
820
|
- The `<GridSaveAltIcon />` icon is not exported anymore. Import `SaveAlt` from `@mui/icons-material` instead.
|
|
529
821
|
|
|
@@ -548,7 +840,7 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.14`.
|
|
|
548
840
|
#### Breaking changes
|
|
549
841
|
|
|
550
842
|
- All Date Time Picker variants now use Digital Clock for time editing.
|
|
551
|
-
- Stop passing invalid date to `onChange` when the date is partially filled — [Learn more](https://
|
|
843
|
+
- Stop passing invalid date to `onChange` when the date is partially filled — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#treat-partially-filled-date-as-null-in-onchange).
|
|
552
844
|
|
|
553
845
|
#### `@mui/x-date-pickers@8.0.0-alpha.14`
|
|
554
846
|
|
|
@@ -935,9 +1227,9 @@ _Feb 17, 2025_
|
|
|
935
1227
|
|
|
936
1228
|
We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
|
|
937
1229
|
|
|
938
|
-
- 📦 Data Grid [data source](https://
|
|
1230
|
+
- 📦 Data Grid [data source](https://mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan
|
|
939
1231
|
- ⚡ Improve Data Grid Excel export serialization performance
|
|
940
|
-
- 🚫 Add ["No columns" overlay](https://
|
|
1232
|
+
- 🚫 Add ["No columns" overlay](https://mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid
|
|
941
1233
|
- 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid
|
|
942
1234
|
- 🐞 Bugfixes
|
|
943
1235
|
|
|
@@ -1038,7 +1330,7 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.12`, plus:
|
|
|
1038
1330
|
|
|
1039
1331
|
#### Breaking changes
|
|
1040
1332
|
|
|
1041
|
-
- The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://
|
|
1333
|
+
- The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://mui.com/x/migration/migration-charts-v7/#stabilize-useseries-and-usexxxseries-hooks-✅)
|
|
1042
1334
|
|
|
1043
1335
|
#### `@mui/x-charts@8.0.0-alpha.12`
|
|
1044
1336
|
|
|
@@ -1280,8 +1572,8 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.10`.
|
|
|
1280
1572
|
|
|
1281
1573
|
#### Breaking changes
|
|
1282
1574
|
|
|
1283
|
-
- The component passed to the `field` slot no longer receives the `ref`, `disabled`, `className`, `sx`, `label`, `name`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections`, `onSelectedSectionsChange` and `inputRef` props — [Learn more](https://
|
|
1284
|
-
- The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://
|
|
1575
|
+
- The component passed to the `field` slot no longer receives the `ref`, `disabled`, `className`, `sx`, `label`, `name`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections`, `onSelectedSectionsChange` and `inputRef` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-field)
|
|
1576
|
+
- The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#muipickerspopper)
|
|
1285
1577
|
|
|
1286
1578
|
#### `@mui/x-date-pickers@8.0.0-alpha.10`
|
|
1287
1579
|
|
|
@@ -1434,12 +1726,12 @@ _Jan 16, 2025_
|
|
|
1434
1726
|
|
|
1435
1727
|
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
1436
1728
|
|
|
1437
|
-
- 🍬 Improved design for Data Grid [Header filters](https://
|
|
1729
|
+
- 🍬 Improved design for Data Grid [Header filters](https://mui.com/x/react-data-grid/filtering/header-filters/)
|
|
1438
1730
|
|
|
1439
1731
|
<img width="100%" alt="Data Grid Header filters" src="https://github.com/user-attachments/assets/74a50cd9-7a55-41fc-a2b8-f8a0d5b9120e" />
|
|
1440
1732
|
|
|
1441
|
-
- 🔄 Data Grid [Scroll restoration](https://
|
|
1442
|
-
- 📊 Charts support server-side rendering under [some conditions](https://
|
|
1733
|
+
- 🔄 Data Grid [Scroll restoration](https://mui.com/x/react-data-grid/scrolling/#scroll-restoration)
|
|
1734
|
+
- 📊 Charts support server-side rendering under [some conditions](https://mui.com/x/react-charts/getting-started/#server-side-rendering)
|
|
1443
1735
|
- 🐞 Bugfixes
|
|
1444
1736
|
|
|
1445
1737
|
Special thanks go out to the community contributors who have helped make this release possible:
|
|
@@ -1477,9 +1769,9 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.8`.
|
|
|
1477
1769
|
|
|
1478
1770
|
#### Breaking changes
|
|
1479
1771
|
|
|
1480
|
-
- The field is now editable if rendered inside a mobile Picker — [Learn more](https://
|
|
1481
|
-
- The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://
|
|
1482
|
-
- The component passed to the `field` slot no longer receives the `value`, `onChange`, `timezone`, `format`, `disabled`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections` and `onSelectedSectionsChange` props — [Learn more](https://
|
|
1772
|
+
- The field is now editable if rendered inside a mobile Picker — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#field-editing-on-mobile-pickers)
|
|
1773
|
+
- The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#usemultiinputdaterangefield)
|
|
1774
|
+
- The component passed to the `field` slot no longer receives the `value`, `onChange`, `timezone`, `format`, `disabled`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections` and `onSelectedSectionsChange` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-field)
|
|
1483
1775
|
|
|
1484
1776
|
#### `@mui/x-date-pickers@8.0.0-alpha.8`
|
|
1485
1777
|
|
|
@@ -1591,15 +1883,15 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.7`, plus:
|
|
|
1591
1883
|
|
|
1592
1884
|
#### Breaking changes
|
|
1593
1885
|
|
|
1594
|
-
- The `date-fns` and `date-fns-jalali` date library adapters have been renamed to better align with the current stable major versions — [Learn more](https://
|
|
1595
|
-
- Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://
|
|
1596
|
-
- The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://
|
|
1597
|
-
- The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://
|
|
1598
|
-
- The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://
|
|
1599
|
-
- The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://
|
|
1600
|
-
- The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://
|
|
1601
|
-
- The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://
|
|
1602
|
-
- The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://
|
|
1886
|
+
- The `date-fns` and `date-fns-jalali` date library adapters have been renamed to better align with the current stable major versions — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#✅-rename-date-fns-adapter-imports)
|
|
1887
|
+
- Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://mui.com/x/migration/migration-pickers-v7/#update-default-closeonselect-and-action-bar-actions-values)
|
|
1888
|
+
- The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-layout).
|
|
1889
|
+
- The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
|
|
1890
|
+
- The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-shortcuts).
|
|
1891
|
+
- The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
|
|
1892
|
+
- The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-layout).
|
|
1893
|
+
- The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
|
|
1894
|
+
- The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-tabs).
|
|
1603
1895
|
|
|
1604
1896
|
#### `@mui/x-date-pickers@8.0.0-alpha.7`
|
|
1605
1897
|
|
|
@@ -1626,11 +1918,11 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.7`.
|
|
|
1626
1918
|
|
|
1627
1919
|
#### Breaking changes
|
|
1628
1920
|
|
|
1629
|
-
- Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://
|
|
1921
|
+
- Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://mui.com/x/react-charts/components/#html-components).
|
|
1630
1922
|
- The default legend is now an HTML element and can be styled more easily.
|
|
1631
1923
|
- The `width` and `height` properties of the charts now only apply to the `svg` element, and not their wrappers, this might cause some layout shifts.
|
|
1632
|
-
- `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://
|
|
1633
|
-
- The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://
|
|
1924
|
+
- `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://mui.com/x/migration/migration-charts-v7/#legend-direction-value-change-✅).
|
|
1925
|
+
- The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://mui.com/x/migration/migration-charts-v7/#the-getseriestodisplay-function-was-removed).
|
|
1634
1926
|
|
|
1635
1927
|
#### `@mui/x-charts@8.0.0-alpha.7`
|
|
1636
1928
|
|
|
@@ -1812,9 +2104,9 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.5`.
|
|
|
1812
2104
|
|
|
1813
2105
|
#### Breaking changes
|
|
1814
2106
|
|
|
1815
|
-
- The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://
|
|
2107
|
+
- The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#month-calendar).
|
|
1816
2108
|
|
|
1817
|
-
- The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://
|
|
2109
|
+
- The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#year-calendar).
|
|
1818
2110
|
|
|
1819
2111
|
#### `@mui/x-date-pickers@8.0.0-alpha.5`
|
|
1820
2112
|
|
|
@@ -2035,7 +2327,7 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.3`, plus:
|
|
|
2035
2327
|
|
|
2036
2328
|
#### Breaking changes
|
|
2037
2329
|
|
|
2038
|
-
- The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://
|
|
2330
|
+
- The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#usepickercontext).
|
|
2039
2331
|
|
|
2040
2332
|
#### `@mui/x-date-pickers@8.0.0-alpha.3`
|
|
2041
2333
|
|
|
@@ -2087,8 +2379,8 @@ _Nov 29, 2024_
|
|
|
2087
2379
|
We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
|
|
2088
2380
|
|
|
2089
2381
|
- 👨🏽💻 Improve resize performance on the Data Gird.
|
|
2090
|
-
- `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://
|
|
2091
|
-
- Users can create their own HTML components using chart data — [Learn more](https://
|
|
2382
|
+
- `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://mui.com/x/react-charts/composition/#overview).
|
|
2383
|
+
- Users can create their own HTML components using chart data — [Learn more](https://mui.com/x/react-charts/components/#html-components).
|
|
2092
2384
|
- 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
|
|
2093
2385
|
- 🌍 Improve Dutch locale on the Date and Time Pickers components.
|
|
2094
2386
|
- 🐞 Bugfixes
|
|
@@ -2144,9 +2436,9 @@ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.2`.
|
|
|
2144
2436
|
|
|
2145
2437
|
#### Breaking changes
|
|
2146
2438
|
|
|
2147
|
-
- The props received by the `layout` and the `toolbar` slots have been reworked — [Learn more](https://
|
|
2439
|
+
- The props received by the `layout` and the `toolbar` slots have been reworked — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#do-not-pass-the-section-type-as-a-generic).
|
|
2148
2440
|
|
|
2149
|
-
- The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic — [Learn more](https://
|
|
2441
|
+
- The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
|
|
2150
2442
|
|
|
2151
2443
|
#### `@mui/x-date-pickers@v8.0.0-alpha.2`
|
|
2152
2444
|
|
|
@@ -2213,7 +2505,7 @@ _Nov 22, 2024_
|
|
|
2213
2505
|
|
|
2214
2506
|
We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
|
|
2215
2507
|
|
|
2216
|
-
- 🔧 Refactor Tooltip customisation for charts — [Learn more](https://
|
|
2508
|
+
- 🔧 Refactor Tooltip customisation for charts — [Learn more](https://mui.com/x/react-charts/tooltip/#overriding-content).
|
|
2217
2509
|
- ⚛️ React 19 support
|
|
2218
2510
|
- 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
|
|
2219
2511
|
- 🐞 Bugfixes
|
|
@@ -2255,8 +2547,8 @@ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
|
|
|
2255
2547
|
|
|
2256
2548
|
#### Breaking change
|
|
2257
2549
|
|
|
2258
|
-
- The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://
|
|
2259
|
-
- The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://
|
|
2550
|
+
- The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#renamed-variables).
|
|
2551
|
+
- The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
|
|
2260
2552
|
|
|
2261
2553
|
#### `@mui/x-date-pickers@v8.0.0-alpha.1`
|
|
2262
2554
|
|
|
@@ -2295,7 +2587,7 @@ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
|
|
|
2295
2587
|
- The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
|
|
2296
2588
|
You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
|
|
2297
2589
|
|
|
2298
|
-
- Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://
|
|
2590
|
+
- Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
|
|
2299
2591
|
- Removed `width` and `height` props from the `ChartsSurface` component.
|
|
2300
2592
|
- Removed the `viewport` prop from all charts.
|
|
2301
2593
|
|
|
@@ -2320,7 +2612,7 @@ Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
|
|
|
2320
2612
|
|
|
2321
2613
|
#### Breaking changes
|
|
2322
2614
|
|
|
2323
|
-
- The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://
|
|
2615
|
+
- The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#stop-using-publicapi-methods-in-the-render).
|
|
2324
2616
|
|
|
2325
2617
|
#### `@mui/x-tree-view@v8.0.0-alpha.1`
|
|
2326
2618
|
|
|
@@ -2357,7 +2649,7 @@ _Nov 14, 2024_
|
|
|
2357
2649
|
|
|
2358
2650
|
We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
|
|
2359
2651
|
|
|
2360
|
-
- 🔁 Support [automatic parents and children selection](https://
|
|
2652
|
+
- 🔁 Support [automatic parents and children selection](https://mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
|
|
2361
2653
|
- 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
|
|
2362
2654
|
- 🌍 Improve Polish (pl-PL) locale on the Data Grid component
|
|
2363
2655
|
- 🐞 Bugfixes
|
|
@@ -2398,14 +2690,14 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
|
|
|
2398
2690
|
|
|
2399
2691
|
#### Breaking changes
|
|
2400
2692
|
|
|
2401
|
-
- The default DOM structure of the field has changed [Learn more](https://
|
|
2693
|
+
- The default DOM structure of the field has changed [Learn more](https://mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
|
|
2402
2694
|
|
|
2403
2695
|
- Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
|
|
2404
2696
|
- Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
|
|
2405
2697
|
|
|
2406
|
-
- Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://
|
|
2698
|
+
- Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
|
|
2407
2699
|
|
|
2408
|
-
- The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://
|
|
2700
|
+
- The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#removed-types).
|
|
2409
2701
|
|
|
2410
2702
|
- `UseDateFieldComponentProps`
|
|
2411
2703
|
- `UseTimeFieldComponentProps`
|
|
@@ -2414,11 +2706,11 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
|
|
|
2414
2706
|
- `BaseMultiInputFieldProps`
|
|
2415
2707
|
- `BasePickersTextFieldProps`
|
|
2416
2708
|
|
|
2417
|
-
- The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://
|
|
2709
|
+
- The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
|
|
2418
2710
|
|
|
2419
|
-
- Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://
|
|
2711
|
+
- Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#renamed-variables).
|
|
2420
2712
|
|
|
2421
|
-
- The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://
|
|
2713
|
+
- The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
|
|
2422
2714
|
|
|
2423
2715
|
#### `@mui/x-date-pickers@8.0.0-alpha.0`
|
|
2424
2716
|
|
|
@@ -2449,17 +2741,17 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
|
|
|
2449
2741
|
|
|
2450
2742
|
#### Breaking changes
|
|
2451
2743
|
|
|
2452
|
-
- The `legend` prop has been removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://
|
|
2744
|
+
- The `legend` prop has been removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
|
|
2453
2745
|
|
|
2454
2746
|
- The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
|
|
2455
2747
|
|
|
2456
|
-
- Removed or renamed multiple props from Series — [Learn more](https://
|
|
2748
|
+
- Removed or renamed multiple props from Series — [Learn more](https://mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
|
|
2457
2749
|
|
|
2458
2750
|
- The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
|
|
2459
2751
|
The deprecated ones are now removed.
|
|
2460
2752
|
- The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
|
|
2461
2753
|
|
|
2462
|
-
- The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://
|
|
2754
|
+
- The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
|
|
2463
2755
|
|
|
2464
2756
|
#### `@mui/x-charts@8.0.0-alpha.0`
|
|
2465
2757
|
|
|
@@ -2482,15 +2774,15 @@ Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
|
|
|
2482
2774
|
|
|
2483
2775
|
#### Breaking changes
|
|
2484
2776
|
|
|
2485
|
-
- The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook — [Learn more](https://
|
|
2777
|
+
- The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
|
|
2486
2778
|
|
|
2487
|
-
- The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://
|
|
2779
|
+
- The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
|
|
2488
2780
|
|
|
2489
|
-
- Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://
|
|
2781
|
+
- Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
|
|
2490
2782
|
|
|
2491
|
-
- The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://
|
|
2783
|
+
- The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
|
|
2492
2784
|
|
|
2493
|
-
- The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://
|
|
2785
|
+
- The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
|
|
2494
2786
|
|
|
2495
2787
|
#### `@mui/x-tree-view@8.0.0-alpha.0`
|
|
2496
2788
|
|
|
@@ -3045,7 +3337,7 @@ _Jan 17, 2025_
|
|
|
3045
3337
|
|
|
3046
3338
|
We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
|
|
3047
3339
|
|
|
3048
|
-
- 🔄 Data Grid [Scroll restoration](https://
|
|
3340
|
+
- 🔄 Data Grid [Scroll restoration](https://v7.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
|
|
3049
3341
|
- 🐞 Bugfixes
|
|
3050
3342
|
|
|
3051
3343
|
Special thanks go out to the community contributors who have helped make this release possible:
|
|
@@ -6730,7 +7022,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
|
|
|
6730
7022
|
|
|
6731
7023
|
- The headless field hooks (e.g.: `useDateField`) now returns a new prop called `enableAccessibleFieldDOMStructure`.
|
|
6732
7024
|
This property is utilized to determine whether the anticipated UI is constructed using an accessible DOM structure.
|
|
6733
|
-
Learn more about this new accessible DOM structure in the [v8 migration guide](https://
|
|
7025
|
+
Learn more about this new accessible DOM structure in the [v8 migration guide](https://v7.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
|
|
6734
7026
|
|
|
6735
7027
|
When building a custom UI, you are most-likely only supporting one DOM structure, so you can remove `enableAccessibleFieldDOMStructure` before it is passed to the DOM:
|
|
6736
7028
|
|
|
@@ -6832,11 +7124,11 @@ _Feb 16, 2024_
|
|
|
6832
7124
|
|
|
6833
7125
|
We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
|
|
6834
7126
|
|
|
6835
|
-
- 🎁 Charts get a [built in grid](https://
|
|
7127
|
+
- 🎁 Charts get a [built in grid](https://v7.mui.com/x/react-charts/axis/#grid)
|
|
6836
7128
|
|
|
6837
7129
|
<img src="https://github.com/mui/mui-x/assets/45398769/74299f54-f020-4135-b38c-dc88a230db30" width="510" alt="Charts Grid" />
|
|
6838
7130
|
|
|
6839
|
-
- 🎛️ Charts get a [Gauge component](https://
|
|
7131
|
+
- 🎛️ Charts get a [Gauge component](https://v7.mui.com/x/react-charts/gauge/).
|
|
6840
7132
|
|
|
6841
7133
|
<img src="https://github.com/mui/mui-x/assets/45398769/fb7a94b5-bef6-4fc2-a0cd-d6ff5b60fa8b" width="510" alt="Guage Chart" />
|
|
6842
7134
|
|
|
@@ -6848,7 +7140,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
6848
7140
|
|
|
6849
7141
|
#### Breaking changes
|
|
6850
7142
|
|
|
6851
|
-
- The `rowEditCommit` event and the related prop `onRowEditCommit` was removed. The [`processRowUpdate`](https://
|
|
7143
|
+
- The `rowEditCommit` event and the related prop `onRowEditCommit` was removed. The [`processRowUpdate`](https://v7.mui.com/x/react-data-grid/editing/#the-processrowupdate-callback) prop can be used in place.
|
|
6852
7144
|
|
|
6853
7145
|
#### `@mui/x-data-grid@7.0.0-beta.3`
|
|
6854
7146
|
|
|
@@ -6951,7 +7243,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-beta.2`.
|
|
|
6951
7243
|
|
|
6952
7244
|
#### Breaking changes
|
|
6953
7245
|
|
|
6954
|
-
- If you're using the [commercial license](https://
|
|
7246
|
+
- If you're using the [commercial license](https://v7.mui.com/x/introduction/licensing), you need to update the import path:
|
|
6955
7247
|
|
|
6956
7248
|
```diff
|
|
6957
7249
|
-import { LicenseInfo } from '@mui/x-license-pro';
|
|
@@ -7003,10 +7295,10 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
7003
7295
|
- 🚀 All charts have click handlers (#11411) @alexfauquette
|
|
7004
7296
|
Test their respective documentation demonstrations to know more about the data format:
|
|
7005
7297
|
|
|
7006
|
-
- [Scatter Chart](https://
|
|
7007
|
-
- [Line Chart](https://
|
|
7008
|
-
- [Bar Chart](https://
|
|
7009
|
-
- [Pie Chart](https://
|
|
7298
|
+
- [Scatter Chart](https://v7.mui.com/x/react-charts/scatter/#click-event)
|
|
7299
|
+
- [Line Chart](https://v7.mui.com/x/react-charts/lines/#click-event)
|
|
7300
|
+
- [Bar Chart](https://v7.mui.com/x/react-charts/bars/#click-event)
|
|
7301
|
+
- [Pie Chart](https://v7.mui.com/x/react-charts/pie/#click-event)
|
|
7010
7302
|
|
|
7011
7303
|
Big thanks to @giladappsforce and @yaredtsy for their contribution on exploring this feature.
|
|
7012
7304
|
|
|
@@ -7128,7 +7420,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-beta.1`.
|
|
|
7128
7420
|
|
|
7129
7421
|
- The line chart now have animation by default.
|
|
7130
7422
|
You can disable it with `skipAnimation` prop.
|
|
7131
|
-
See [animation documentation](
|
|
7423
|
+
See [animation documentation](v7.mui.com/x/react-charts/lines/#animation) for more information.
|
|
7132
7424
|
|
|
7133
7425
|
- Pie charts `onClick` get renamed `onItemClick` for consistency with other charts click callback.
|
|
7134
7426
|
|
|
@@ -7163,7 +7455,7 @@ We are glad to announce MUI X v7 beta!
|
|
|
7163
7455
|
This version has several improvements, bug fixes, and exciting features 🎉.
|
|
7164
7456
|
We want to offer a big thanks to the 7 contributors who made this release possible ✨:
|
|
7165
7457
|
|
|
7166
|
-
- 🚀 Release the [Date Time Range Picker](https://
|
|
7458
|
+
- 🚀 Release the [Date Time Range Picker](https://v7.mui.com/x/react-date-pickers/date-time-range-picker/) component (#9528) @LukasTy
|
|
7167
7459
|
|
|
7168
7460
|
<img src="https://github.com/mui/mui-x/assets/4941090/122bb7bc-5e72-4e11-a8e5-96f3026de922" width="510" height="652" alt="Date Time Range Picker example" />
|
|
7169
7461
|
|
|
@@ -7178,7 +7470,7 @@ We want to offer a big thanks to the 7 contributors who made this release possib
|
|
|
7178
7470
|
|
|
7179
7471
|
#### Breaking changes
|
|
7180
7472
|
|
|
7181
|
-
- The columns management component has been redesigned and the component was extracted from the `ColumnsPanel` which now only serves as a wrapper to display the component above the headers as a panel. As a result, a new slot `columnsManagement` and the related prop `slotProps.columnsManagement` have been introduced. The props corresponding to the columns management component which were previously passed to the prop `slotProps.columnsPanel` should now be passed to `slotProps.columnsManagement`. `slotProps.columnsPanel` could still be used to override props corresponding to the `Panel` component used in `ColumnsPanel` which uses [`Popper`](https://
|
|
7473
|
+
- The columns management component has been redesigned and the component was extracted from the `ColumnsPanel` which now only serves as a wrapper to display the component above the headers as a panel. As a result, a new slot `columnsManagement` and the related prop `slotProps.columnsManagement` have been introduced. The props corresponding to the columns management component which were previously passed to the prop `slotProps.columnsPanel` should now be passed to `slotProps.columnsManagement`. `slotProps.columnsPanel` could still be used to override props corresponding to the `Panel` component used in `ColumnsPanel` which uses [`Popper`](https://v7.mui.com/material-ui/react-popper/) component under the hood.
|
|
7182
7474
|
|
|
7183
7475
|
```diff
|
|
7184
7476
|
<DataGrid
|
|
@@ -7262,7 +7554,7 @@ _Jan 19, 2024_
|
|
|
7262
7554
|
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
7263
7555
|
|
|
7264
7556
|
- 🎁 The Data Grid headers have been refactored to bring immense improvements to scrolling, state management, and overall performance of the grid.
|
|
7265
|
-
- ⚙️ The Data Grid disabled column-specific features like filtering, sorting, grouping, etc. could now be accessed programmatically. See the related [docs](https://
|
|
7557
|
+
- ⚙️ The Data Grid disabled column-specific features like filtering, sorting, grouping, etc. could now be accessed programmatically. See the related [docs](https://v7.mui.com/x/react-data-grid/api-object/#access-the-disabled-column-features) section.
|
|
7266
7558
|
- 🚀 Uplift the Simple Tree View customization examples (#11424) @noraleonte
|
|
7267
7559
|
- 🌍 Add Croatian (hr-HR), Portuguese (pt-PT), and Chinese (Hong Kong) (zh-HK) locales (#11668) on the Data Grid @BCaspari
|
|
7268
7560
|
- 🐞 Bugfixes
|
|
@@ -7295,10 +7587,10 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
7295
7587
|
</div>
|
|
7296
7588
|
```
|
|
7297
7589
|
|
|
7298
|
-
- When the [Tree data](https://
|
|
7590
|
+
- When the [Tree data](https://v7.mui.com/x/react-data-grid/tree-data/) feature is used, the grid role is now `role="treegrid"` instead of `role="grid"`.
|
|
7299
7591
|
- The Data Grid cells now have `role="gridcell"` instead of `role="cell"`.
|
|
7300
7592
|
|
|
7301
|
-
- The buttons in toolbar composable components `GridToolbarColumnsButton`, `GridToolbarFilterButton`, `GridToolbarDensity`, and `GridToolbarExport` are now wrapped with a tooltip component and have a consistent interface. To override some props corresponding to the toolbar buttons or their corresponding tooltips, you can use the `slotProps` prop. Following is an example diff. See [Toolbar section](https://
|
|
7593
|
+
- The buttons in toolbar composable components `GridToolbarColumnsButton`, `GridToolbarFilterButton`, `GridToolbarDensity`, and `GridToolbarExport` are now wrapped with a tooltip component and have a consistent interface. To override some props corresponding to the toolbar buttons or their corresponding tooltips, you can use the `slotProps` prop. Following is an example diff. See [Toolbar section](https://v7.mui.com/x/react-data-grid/components/#toolbar) for more details.
|
|
7302
7594
|
|
|
7303
7595
|
```diff
|
|
7304
7596
|
function CustomToolbar() {
|
|
@@ -7329,7 +7621,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
7329
7621
|
|
|
7330
7622
|
- The column grouping selectors `gridFocusColumnGroupHeaderSelector` and `gridTabIndexColumnGroupHeaderSelector` are no longer prefixed with `unstable_`.
|
|
7331
7623
|
|
|
7332
|
-
- The disabled column specific features like `hiding`, `sorting`, `filtering`, `pinning`, `row grouping`, etc could now be controlled programmatically using `initialState`, respective controlled models, or the [API object](https://
|
|
7624
|
+
- The disabled column specific features like `hiding`, `sorting`, `filtering`, `pinning`, `row grouping`, etc could now be controlled programmatically using `initialState`, respective controlled models, or the [API object](https://v7.mui.com/x/react-data-grid/api-object/). See the related [docs](https://v7.mui.com/x/react-data-grid/api-object/#access-the-disabled-column-features) section.
|
|
7333
7625
|
|
|
7334
7626
|
#### `@mui/x-data-grid@7.0.0-alpha.9`
|
|
7335
7627
|
|
|
@@ -7924,7 +8216,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
7924
8216
|
|
|
7925
8217
|
- The `instanceId` prop is now required for state selectors.
|
|
7926
8218
|
This prop is used to distinguish between multiple Data Grid instances on the same page.
|
|
7927
|
-
See [migration docs](https://
|
|
8219
|
+
See [migration docs](https://v7.mui.com/x/migration/migration-data-grid-v6/#instanceid-prop-is-required-for-state-selectors) for more details.
|
|
7928
8220
|
|
|
7929
8221
|
#### `@mui/x-data-grid@7.0.0-alpha.5`
|
|
7930
8222
|
|
|
@@ -8078,9 +8370,9 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
8078
8370
|
- 🚀 The scatter charts now use voronoi to trigger items
|
|
8079
8371
|
|
|
8080
8372
|
Users needed to hover the item to highlight the scatter item or show the tooltip.
|
|
8081
|
-
Now they can interact with data by triggering the closest element. See the [docs page](https://
|
|
8373
|
+
Now they can interact with data by triggering the closest element. See the [docs page](https://v7.mui.com/x/react-charts/scatter/#interaction) for more info.
|
|
8082
8374
|
|
|
8083
|
-
- 📚 Add [Pickers FAQ page](https://
|
|
8375
|
+
- 📚 Add [Pickers FAQ page](https://v7.mui.com/x/react-date-pickers/faq/)
|
|
8084
8376
|
- 🎉 The Data Grid Header filters feature is now stable
|
|
8085
8377
|
- 🌍 Improve Danish (da-DK) locale on Data Grid
|
|
8086
8378
|
- 🐞 Bugfixes
|
|
@@ -8090,7 +8382,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
8090
8382
|
#### Breaking changes
|
|
8091
8383
|
|
|
8092
8384
|
- The header filters feature is now stable. `unstable_` prefix is removed from prop `headerFilters` and related exports.
|
|
8093
|
-
See [migration docs](https://
|
|
8385
|
+
See [migration docs](https://v7.mui.com/x/migration/migration-data-grid-v6/#filtering) for more details.
|
|
8094
8386
|
|
|
8095
8387
|
- The `GridColDef['type']` has been narrowed down to only accept the built-in column types.
|
|
8096
8388
|
TypeScript users need to use the `GridColDef` interface when defining columns:
|
|
@@ -8160,7 +8452,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
8160
8452
|
|
|
8161
8453
|
- 🚀 Support localized start of the week on pickers' `AdapterLuxon`
|
|
8162
8454
|
|
|
8163
|
-
When using Luxon 3.4.4 or higher, the start of the week will be defined by the date locale (
|
|
8455
|
+
When using Luxon 3.4.4 or higher, the start of the week will be defined by the date locale (for example: Sunday for `en-US`, Monday for `fr-FR`).
|
|
8164
8456
|
|
|
8165
8457
|
- 📈 Fix a lot of Charts package issues
|
|
8166
8458
|
- 🎉 The Data Grid features Cell selection and Clipboard paste are now stable
|
|
@@ -8176,7 +8468,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
8176
8468
|
|
|
8177
8469
|
- The clipboard related exports `ignoreValueFormatterDuringExport` and `splitClipboardPastedText` are no longer prefixed with `unstable_`.
|
|
8178
8470
|
|
|
8179
|
-
- The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the Data Grid exports. Use the [`filterDebounceMs`](https://
|
|
8471
|
+
- The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the Data Grid exports. Use the [`filterDebounceMs`](https://v7.mui.com/x/api/data-grid/data-grid/#data-grid-prop-filterDebounceMs) prop to customize filter debounce time.
|
|
8180
8472
|
|
|
8181
8473
|
- The `slots.preferencesPanel` slot and the `slotProps.preferencesPanel` prop were removed. Use `slots.panel` and `slotProps.panel` instead.
|
|
8182
8474
|
|
|
@@ -8201,7 +8493,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
8201
8493
|
| `unstable_setCellSelectionModel` | `setCellSelectionModel` |
|
|
8202
8494
|
|
|
8203
8495
|
- The Quick Filter now ignores hidden columns by default.
|
|
8204
|
-
See [including hidden columns](https://
|
|
8496
|
+
See [including hidden columns](https://v7.mui.com/x/react-data-grid/filtering/quick-filter/#including-hidden-columns) section for more details.
|
|
8205
8497
|
|
|
8206
8498
|
#### `@mui/x-data-grid@7.0.0-alpha.3`
|
|
8207
8499
|
|
|
@@ -8370,7 +8662,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.2`.
|
|
|
8370
8662
|
The `shouldDisableClock` prop received `value` as a `number` of hours, minutes, or seconds.
|
|
8371
8663
|
Instead, the `shouldDisableTime` prop receives the date object (based on the used adapter).
|
|
8372
8664
|
|
|
8373
|
-
You can read more about the deprecation of this prop in [v6 migration guide](https://
|
|
8665
|
+
You can read more about the deprecation of this prop in [v6 migration guide](https://v7.mui.com/x/migration/migration-pickers-v5/#%E2%9C%85-rename-or-refactor-shoulddisabletime-prop).
|
|
8374
8666
|
|
|
8375
8667
|
```diff
|
|
8376
8668
|
<DateTimePicker
|