@mui/x-data-grid 8.0.0-alpha.8 → 8.0.0-beta.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 +2566 -687
- package/DataGrid/DataGrid.d.ts +7 -7
- package/DataGrid/DataGrid.js +212 -179
- package/DataGrid/index.d.ts +1 -1
- package/DataGrid/index.js +16 -1
- package/DataGrid/useDataGridComponent.d.ts +4 -3
- package/DataGrid/useDataGridComponent.js +92 -81
- package/DataGrid/useDataGridProps.d.ts +3 -3
- package/DataGrid/useDataGridProps.js +31 -17
- package/README.md +1 -1
- package/colDef/gridActionsColDef.d.ts +2 -2
- package/colDef/gridActionsColDef.js +14 -7
- package/colDef/gridBooleanColDef.d.ts +2 -2
- package/colDef/gridBooleanColDef.js +19 -12
- package/colDef/gridBooleanOperators.d.ts +2 -2
- package/colDef/gridBooleanOperators.js +12 -5
- package/colDef/gridCheckboxSelectionColDef.d.ts +2 -2
- package/colDef/gridCheckboxSelectionColDef.js +22 -15
- package/colDef/gridDateColDef.d.ts +2 -2
- package/colDef/gridDateColDef.js +27 -17
- package/colDef/gridDateOperators.d.ts +3 -2
- package/colDef/gridDateOperators.js +16 -9
- package/colDef/gridDefaultColumnTypes.d.ts +1 -1
- package/colDef/gridDefaultColumnTypes.js +24 -17
- package/colDef/gridNumericColDef.d.ts +2 -2
- package/colDef/gridNumericColDef.js +17 -10
- package/colDef/gridNumericOperators.d.ts +5 -2
- package/colDef/gridNumericOperators.js +20 -12
- package/colDef/gridSingleSelectColDef.d.ts +2 -2
- package/colDef/gridSingleSelectColDef.js +23 -16
- package/colDef/gridSingleSelectOperators.d.ts +2 -2
- package/colDef/gridSingleSelectOperators.js +16 -9
- package/colDef/gridStringColDef.d.ts +2 -2
- package/colDef/gridStringColDef.js +13 -8
- package/colDef/gridStringOperators.d.ts +2 -2
- package/colDef/gridStringOperators.js +27 -19
- package/colDef/index.d.ts +13 -13
- package/colDef/index.js +148 -13
- package/components/GridApiContext.d.ts +1 -1
- package/components/GridApiContext.js +10 -2
- package/components/GridColumnHeaders.d.ts +3 -3
- package/components/GridColumnHeaders.js +44 -37
- package/components/GridConfigurationContext.d.ts +1 -1
- package/components/GridConfigurationContext.js +10 -2
- package/components/GridDetailPanels.d.ts +2 -2
- package/components/GridDetailPanels.js +7 -1
- package/components/GridFooter.d.ts +3 -3
- package/components/GridFooter.js +34 -27
- package/components/GridHeader.d.ts +1 -1
- package/components/GridHeader.js +17 -9
- package/components/GridHeaders.d.ts +1 -1
- package/components/GridHeaders.js +37 -30
- package/components/GridLoadingOverlay.d.ts +12 -12
- package/components/GridLoadingOverlay.js +32 -25
- package/components/GridNoColumnsOverlay.d.ts +6 -0
- package/components/GridNoColumnsOverlay.js +43 -0
- package/components/GridNoResultsOverlay.d.ts +3 -3
- package/components/GridNoResultsOverlay.js +17 -9
- package/components/GridNoRowsOverlay.d.ts +3 -3
- package/components/GridNoRowsOverlay.js +20 -13
- package/components/GridPagination.d.ts +4 -8
- package/components/GridPagination.js +38 -99
- package/components/GridPinnedRows.d.ts +3 -3
- package/components/GridPinnedRows.js +7 -1
- package/components/GridRow.d.ts +34 -35
- package/components/GridRow.js +126 -108
- package/components/GridRowCount.d.ts +5 -5
- package/components/GridRowCount.js +36 -30
- package/components/GridScrollArea.d.ts +7 -4
- package/components/GridScrollArea.js +73 -56
- package/components/GridScrollbarFillerCell.d.ts +11 -6
- package/components/GridScrollbarFillerCell.js +20 -13
- package/components/GridSelectedRowCount.d.ts +4 -4
- package/components/GridSelectedRowCount.js +36 -30
- package/components/GridShadowScrollArea.d.ts +8 -0
- package/components/GridShadowScrollArea.js +82 -0
- package/components/GridSkeletonLoadingOverlay.d.ts +13 -2
- package/components/GridSkeletonLoadingOverlay.js +84 -59
- package/components/base/GridBody.d.ts +2 -2
- package/components/base/GridBody.js +12 -2
- package/components/base/GridFooterPlaceholder.d.ts +1 -1
- package/components/base/GridFooterPlaceholder.js +15 -7
- package/components/base/GridOverlays.d.ts +7 -7
- package/components/base/GridOverlays.js +36 -28
- package/components/base/index.d.ts +2 -2
- package/components/base/index.js +27 -2
- package/components/cell/GridActionsCell.d.ts +6 -6
- package/components/cell/GridActionsCell.js +54 -44
- package/components/cell/GridActionsCellItem.d.ts +31 -31
- package/components/cell/GridActionsCellItem.js +27 -22
- package/components/cell/GridBooleanCell.d.ts +3 -3
- package/components/cell/GridBooleanCell.js +49 -41
- package/components/cell/GridCell.d.ts +70 -67
- package/components/cell/GridCell.js +101 -117
- package/components/cell/GridEditBooleanCell.d.ts +10 -10
- package/components/cell/GridEditBooleanCell.js +46 -37
- package/components/cell/GridEditDateCell.d.ts +15 -12
- package/components/cell/GridEditDateCell.js +57 -43
- package/components/cell/GridEditInputCell.d.ts +15 -12
- package/components/cell/GridEditInputCell.js +59 -49
- package/components/cell/GridEditSingleSelectCell.d.ts +14 -14
- package/components/cell/GridEditSingleSelectCell.js +64 -58
- package/components/cell/GridSkeletonCell.d.ts +13 -13
- package/components/cell/GridSkeletonCell.js +35 -28
- package/components/cell/index.d.ts +9 -9
- package/components/cell/index.js +111 -9
- package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +7 -7
- package/components/columnHeaders/ColumnHeaderMenuIcon.js +26 -17
- package/components/columnHeaders/GridBaseColumnHeaders.d.ts +2 -2
- package/components/columnHeaders/GridBaseColumnHeaders.js +25 -17
- package/components/columnHeaders/GridColumnGroupHeader.d.ts +17 -17
- package/components/columnHeaders/GridColumnGroupHeader.js +34 -27
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +8 -8
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.js +55 -34
- package/components/columnHeaders/GridColumnHeaderItem.d.ts +27 -27
- package/components/columnHeaders/GridColumnHeaderItem.js +64 -57
- package/components/columnHeaders/GridColumnHeaderSeparator.d.ts +8 -8
- package/components/columnHeaders/GridColumnHeaderSeparator.js +30 -23
- package/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +8 -8
- package/components/columnHeaders/GridColumnHeaderSortIcon.js +34 -27
- package/components/columnHeaders/GridColumnHeaderTitle.d.ts +5 -5
- package/components/columnHeaders/GridColumnHeaderTitle.js +35 -28
- package/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +28 -28
- package/components/columnHeaders/GridGenericColumnHeaderItem.js +33 -27
- package/components/columnHeaders/GridIconButtonContainer.d.ts +1 -1
- package/components/columnHeaders/GridIconButtonContainer.js +25 -17
- package/components/columnHeaders/index.d.ts +5 -5
- package/components/columnHeaders/index.js +60 -5
- package/components/columnSelection/GridCellCheckboxRenderer.d.ts +1 -1
- package/components/columnSelection/GridCellCheckboxRenderer.js +51 -58
- package/components/columnSelection/GridHeaderCheckbox.d.ts +1 -1
- package/components/columnSelection/GridHeaderCheckbox.js +94 -51
- package/components/columnSelection/index.d.ts +2 -2
- package/components/columnSelection/index.js +27 -2
- package/components/columnsManagement/GridColumnsManagement.d.ts +38 -38
- package/components/columnsManagement/GridColumnsManagement.js +157 -139
- package/components/columnsManagement/index.d.ts +1 -1
- package/components/columnsManagement/index.js +16 -1
- package/components/columnsManagement/utils.d.ts +2 -2
- package/components/columnsManagement/utils.js +10 -2
- package/components/columnsPanel/ColumnsPanelTrigger.d.ts +33 -0
- package/components/columnsPanel/ColumnsPanelTrigger.js +233 -0
- package/components/columnsPanel/index.d.ts +1 -0
- package/components/columnsPanel/index.js +16 -0
- package/components/containers/GridFooterContainer.d.ts +3 -3
- package/components/containers/GridFooterContainer.js +28 -21
- package/components/containers/GridOverlay.d.ts +3 -3
- package/components/containers/GridOverlay.js +33 -24
- package/components/containers/GridRoot.d.ts +5 -5
- package/components/containers/GridRoot.js +50 -39
- package/components/containers/GridRootStyles.d.ts +4 -5
- package/components/containers/GridRootStyles.js +382 -297
- package/components/containers/GridToolbarContainer.d.ts +3 -3
- package/components/containers/GridToolbarContainer.js +33 -27
- package/components/containers/index.d.ts +4 -4
- package/components/containers/index.js +49 -4
- package/components/export/ExportCsv.d.ts +30 -0
- package/components/export/ExportCsv.js +214 -0
- package/components/export/ExportPrint.d.ts +30 -0
- package/components/export/ExportPrint.js +214 -0
- package/components/export/index.d.ts +2 -0
- package/components/export/index.js +27 -0
- package/components/filterPanel/FilterPanelTrigger.d.ts +37 -0
- package/components/filterPanel/FilterPanelTrigger.js +236 -0
- package/components/filterPanel/index.d.ts +1 -0
- package/components/filterPanel/index.js +16 -0
- package/components/index.d.ts +25 -19
- package/components/index.js +303 -19
- package/components/menu/GridMenu.d.ts +9 -11
- package/components/menu/GridMenu.js +50 -72
- package/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +21 -12
- package/components/menu/columnMenu/GridColumnHeaderMenu.js +30 -22
- package/components/menu/columnMenu/GridColumnMenu.d.ts +17 -17
- package/components/menu/columnMenu/GridColumnMenu.js +48 -41
- package/components/menu/columnMenu/GridColumnMenuContainer.d.ts +2 -2
- package/components/menu/columnMenu/GridColumnMenuContainer.js +34 -24
- package/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +5 -5
- package/components/menu/columnMenu/GridColumnMenuItemProps.js +5 -1
- package/components/menu/columnMenu/GridColumnMenuProps.d.ts +9 -11
- package/components/menu/columnMenu/GridColumnMenuProps.js +5 -1
- package/components/menu/columnMenu/index.d.ts +6 -6
- package/components/menu/columnMenu/index.js +74 -8
- package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +19 -12
- package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +20 -13
- package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +22 -15
- package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +22 -15
- package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +30 -21
- package/components/menu/columnMenu/menuItems/index.d.ts +5 -5
- package/components/menu/columnMenu/menuItems/index.js +60 -5
- package/components/menu/index.d.ts +2 -2
- package/components/menu/index.js +27 -2
- package/components/panel/GridColumnsPanel.d.ts +3 -7
- package/components/panel/GridColumnsPanel.js +17 -18
- package/components/panel/GridPanel.d.ts +15 -18
- package/components/panel/GridPanel.js +77 -88
- package/components/panel/GridPanelContent.d.ts +3 -3
- package/components/panel/GridPanelContent.js +32 -27
- package/components/panel/GridPanelFooter.d.ts +3 -3
- package/components/panel/GridPanelFooter.js +31 -25
- package/components/panel/GridPanelHeader.d.ts +3 -3
- package/components/panel/GridPanelHeader.js +30 -24
- package/components/panel/GridPanelWrapper.d.ts +2 -7
- package/components/panel/GridPanelWrapper.js +33 -44
- package/components/panel/GridPreferencePanelContext.d.ts +12 -0
- package/components/panel/GridPreferencePanelContext.js +33 -0
- package/components/panel/GridPreferencesPanel.d.ts +1 -1
- package/components/panel/GridPreferencesPanel.js +33 -20
- package/components/panel/filterPanel/GridFilterForm.d.ts +94 -94
- package/components/panel/filterPanel/GridFilterForm.js +155 -167
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +5 -13
- package/components/panel/filterPanel/GridFilterInputBoolean.js +83 -69
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +6 -13
- package/components/panel/filterPanel/GridFilterInputDate.js +68 -45
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +7 -7
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +71 -68
- package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +7 -7
- package/components/panel/filterPanel/GridFilterInputMultipleValue.js +80 -76
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +6 -13
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +87 -75
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +10 -13
- package/components/panel/filterPanel/GridFilterInputValue.js +67 -48
- package/components/panel/filterPanel/GridFilterPanel.d.ts +34 -34
- package/components/panel/filterPanel/GridFilterPanel.js +59 -51
- package/components/panel/filterPanel/filterPanelUtils.d.ts +1 -1
- package/components/panel/filterPanel/filterPanelUtils.js +14 -5
- package/components/panel/filterPanel/index.d.ts +8 -9
- package/components/panel/filterPanel/index.js +91 -9
- package/components/panel/index.d.ts +7 -7
- package/components/panel/index.js +82 -7
- package/components/quickFilter/QuickFilter.d.ts +41 -0
- package/components/quickFilter/QuickFilter.js +112 -0
- package/components/quickFilter/QuickFilterClear.d.ts +28 -0
- package/components/quickFilter/QuickFilterClear.js +174 -0
- package/components/quickFilter/QuickFilterContext.d.ts +13 -0
- package/components/quickFilter/QuickFilterContext.js +17 -0
- package/components/quickFilter/QuickFilterControl.d.ts +28 -0
- package/components/quickFilter/QuickFilterControl.js +104 -0
- package/components/quickFilter/index.d.ts +3 -0
- package/components/quickFilter/index.js +38 -0
- package/components/reexportable.d.ts +1 -1
- package/components/reexportable.js +24 -1
- package/components/toolbar/GridToolbar.d.ts +13 -13
- package/components/toolbar/GridToolbar.js +43 -30
- package/components/toolbar/GridToolbarColumnsButton.d.ts +9 -9
- package/components/toolbar/GridToolbarColumnsButton.js +46 -27
- package/components/toolbar/GridToolbarDensitySelector.d.ts +9 -9
- package/components/toolbar/GridToolbarDensitySelector.js +46 -39
- package/components/toolbar/GridToolbarExport.d.ts +22 -22
- package/components/toolbar/GridToolbarExport.js +61 -52
- package/components/toolbar/GridToolbarExportContainer.d.ts +10 -10
- package/components/toolbar/GridToolbarExportContainer.js +37 -30
- package/components/toolbar/GridToolbarFilterButton.d.ts +11 -11
- package/components/toolbar/GridToolbarFilterButton.js +65 -47
- package/components/toolbar/GridToolbarQuickFilter.d.ts +30 -26
- package/components/toolbar/GridToolbarQuickFilter.js +86 -116
- package/components/toolbar/index.d.ts +8 -8
- package/components/toolbar/index.js +101 -7
- package/components/toolbarV8/GridToolbar.d.ts +11 -0
- package/components/toolbarV8/GridToolbar.js +142 -0
- package/components/toolbarV8/Toolbar.d.ts +32 -0
- package/components/toolbarV8/Toolbar.js +132 -0
- package/components/toolbarV8/ToolbarButton.d.ts +23 -0
- package/components/toolbarV8/ToolbarButton.js +192 -0
- package/components/toolbarV8/ToolbarContext.d.ts +9 -0
- package/components/toolbarV8/ToolbarContext.js +17 -0
- package/components/toolbarV8/index.d.ts +2 -0
- package/components/toolbarV8/index.js +27 -0
- package/components/virtualization/GridBottomContainer.d.ts +2 -1
- package/components/virtualization/GridBottomContainer.js +21 -13
- package/components/virtualization/GridMainContainer.d.ts +15 -3
- package/components/virtualization/GridMainContainer.js +35 -16
- package/components/virtualization/GridTopContainer.d.ts +1 -1
- package/components/virtualization/GridTopContainer.js +21 -13
- package/components/virtualization/GridVirtualScrollbar.d.ts +6 -2
- package/components/virtualization/GridVirtualScrollbar.js +49 -34
- package/components/virtualization/GridVirtualScroller.d.ts +2 -2
- package/components/virtualization/GridVirtualScroller.js +79 -52
- package/components/virtualization/GridVirtualScrollerContent.d.ts +3 -3
- package/components/virtualization/GridVirtualScrollerContent.js +35 -19
- package/components/virtualization/GridVirtualScrollerFiller.d.ts +6 -4
- package/components/virtualization/GridVirtualScrollerFiller.js +31 -24
- package/components/virtualization/GridVirtualScrollerRenderZone.d.ts +3 -3
- package/components/virtualization/GridVirtualScrollerRenderZone.js +34 -27
- package/constants/cssVariables.d.ts +264 -0
- package/constants/cssVariables.js +158 -0
- package/constants/dataGridPropsDefaultValues.d.ts +1 -1
- package/constants/dataGridPropsDefaultValues.js +10 -3
- package/constants/defaultGridSlotsComponents.d.ts +2 -2
- package/constants/defaultGridSlotsComponents.js +40 -30
- package/constants/envConstants.d.ts +1 -1
- package/constants/envConstants.js +7 -1
- package/constants/gridClasses.d.ts +693 -684
- package/constants/gridClasses.js +11 -4
- package/constants/index.d.ts +4 -3
- package/constants/index.js +49 -3
- package/constants/localeTextConstants.d.ts +2 -2
- package/constants/localeTextConstants.js +37 -3
- package/constants/signature.d.ts +9 -0
- package/constants/signature.js +16 -0
- package/context/GridContextProvider.d.ts +14 -8
- package/context/GridContextProvider.js +25 -12
- package/context/GridRootPropsContext.d.ts +1 -1
- package/context/GridRootPropsContext.js +11 -4
- package/context/index.d.ts +1 -1
- package/context/index.js +16 -1
- package/esm/DataGrid/DataGrid.d.ts +16 -0
- package/esm/DataGrid/DataGrid.js +784 -0
- package/esm/DataGrid/index.d.ts +1 -0
- package/esm/DataGrid/index.js +1 -0
- package/esm/DataGrid/useDataGridComponent.d.ts +4 -0
- package/esm/DataGrid/useDataGridComponent.js +94 -0
- package/esm/DataGrid/useDataGridProps.d.ts +3 -0
- package/esm/DataGrid/useDataGridProps.js +49 -0
- package/esm/colDef/gridActionsColDef.d.ts +3 -0
- package/esm/colDef/gridActionsColDef.js +19 -0
- package/esm/colDef/gridBooleanColDef.d.ts +2 -0
- package/esm/colDef/gridBooleanColDef.js +41 -0
- package/esm/colDef/gridBooleanOperators.d.ts +2 -0
- package/esm/colDef/gridBooleanOperators.js +12 -0
- package/esm/colDef/gridCheckboxSelectionColDef.d.ts +3 -0
- package/esm/colDef/gridCheckboxSelectionColDef.js +29 -0
- package/esm/colDef/gridDateColDef.d.ts +5 -0
- package/esm/colDef/gridDateColDef.js +60 -0
- package/esm/colDef/gridDateOperators.d.ts +3 -0
- package/esm/colDef/gridDateOperators.js +108 -0
- package/esm/colDef/gridDefaultColumnTypes.d.ts +3 -0
- package/esm/colDef/gridDefaultColumnTypes.js +20 -0
- package/esm/colDef/gridNumericColDef.d.ts +2 -0
- package/esm/colDef/gridNumericColDef.js +15 -0
- package/esm/colDef/gridNumericOperators.d.ts +7 -0
- package/esm/colDef/gridNumericOperators.js +143 -0
- package/esm/colDef/gridSingleSelectColDef.d.ts +2 -0
- package/esm/colDef/gridSingleSelectColDef.js +61 -0
- package/esm/colDef/gridSingleSelectOperators.d.ts +2 -0
- package/esm/colDef/gridSingleSelectOperators.js +38 -0
- package/esm/colDef/gridStringColDef.d.ts +5 -0
- package/esm/colDef/gridStringColDef.js +27 -0
- package/esm/colDef/gridStringOperators.d.ts +4 -0
- package/esm/colDef/gridStringOperators.js +121 -0
- package/esm/colDef/index.d.ts +13 -0
- package/esm/colDef/index.js +13 -0
- package/esm/components/GridApiContext.d.ts +2 -0
- package/esm/components/GridApiContext.js +7 -0
- package/esm/components/GridColumnHeaders.d.ts +7 -0
- package/esm/components/GridColumnHeaders.js +85 -0
- package/esm/components/GridConfigurationContext.d.ts +2 -0
- package/esm/components/GridConfigurationContext.js +7 -0
- package/esm/components/GridDetailPanels.d.ts +5 -0
- package/esm/components/GridDetailPanels.js +3 -0
- package/esm/components/GridFooter.d.ts +6 -0
- package/esm/components/GridFooter.js +40 -0
- package/esm/components/GridHeader.d.ts +2 -0
- package/esm/components/GridHeader.js +11 -0
- package/esm/components/GridHeaders.d.ts +4 -0
- package/esm/components/GridHeaders.js +48 -0
- package/esm/components/GridLoadingOverlay.d.ts +17 -0
- package/esm/components/GridLoadingOverlay.js +67 -0
- package/esm/components/GridNoColumnsOverlay.d.ts +6 -0
- package/esm/components/GridNoColumnsOverlay.js +36 -0
- package/esm/components/GridNoResultsOverlay.d.ts +5 -0
- package/esm/components/GridNoResultsOverlay.js +14 -0
- package/esm/components/GridNoRowsOverlay.d.ts +6 -0
- package/esm/components/GridNoRowsOverlay.js +23 -0
- package/esm/components/GridPagination.d.ts +6 -0
- package/esm/components/GridPagination.js +80 -0
- package/esm/components/GridPinnedRows.d.ts +6 -0
- package/esm/components/GridPinnedRows.js +3 -0
- package/esm/components/GridRow.d.ts +39 -0
- package/esm/components/GridRow.js +346 -0
- package/esm/components/GridRowCount.d.ts +13 -0
- package/esm/components/GridRowCount.js +64 -0
- package/esm/components/GridScrollArea.d.ts +10 -0
- package/esm/components/GridScrollArea.js +151 -0
- package/esm/components/GridScrollbarFillerCell.d.ts +13 -0
- package/esm/components/GridScrollbarFillerCell.js +23 -0
- package/esm/components/GridSelectedRowCount.d.ts +12 -0
- package/esm/components/GridSelectedRowCount.js +67 -0
- package/esm/components/GridShadowScrollArea.d.ts +8 -0
- package/esm/components/GridShadowScrollArea.js +74 -0
- package/esm/components/GridSkeletonLoadingOverlay.d.ts +14 -0
- package/esm/components/GridSkeletonLoadingOverlay.js +199 -0
- package/esm/components/base/GridBody.d.ts +2 -0
- package/esm/components/base/GridBody.js +2 -0
- package/esm/components/base/GridFooterPlaceholder.d.ts +2 -0
- package/esm/components/base/GridFooterPlaceholder.js +11 -0
- package/esm/components/base/GridOverlays.d.ts +13 -0
- package/esm/components/base/GridOverlays.js +86 -0
- package/esm/components/base/index.d.ts +2 -0
- package/esm/components/base/index.js +2 -0
- package/esm/components/cell/GridActionsCell.d.ts +13 -0
- package/esm/components/cell/GridActionsCell.js +261 -0
- package/esm/components/cell/GridActionsCellItem.d.ts +41 -0
- package/esm/components/cell/GridActionsCellItem.js +72 -0
- package/esm/components/cell/GridBooleanCell.d.ts +14 -0
- package/esm/components/cell/GridBooleanCell.js +124 -0
- package/esm/components/cell/GridCell.d.ts +77 -0
- package/esm/components/cell/GridCell.js +325 -0
- package/esm/components/cell/GridEditBooleanCell.d.ts +17 -0
- package/esm/components/cell/GridEditBooleanCell.js +139 -0
- package/esm/components/cell/GridEditDateCell.d.ts +21 -0
- package/esm/components/cell/GridEditDateCell.js +193 -0
- package/esm/components/cell/GridEditInputCell.d.ts +19 -0
- package/esm/components/cell/GridEditInputCell.js +168 -0
- package/esm/components/cell/GridEditSingleSelectCell.d.ts +22 -0
- package/esm/components/cell/GridEditSingleSelectCell.js +189 -0
- package/esm/components/cell/GridSkeletonCell.d.ts +20 -0
- package/esm/components/cell/GridSkeletonCell.js +104 -0
- package/esm/components/cell/index.d.ts +10 -0
- package/esm/components/cell/index.js +9 -0
- package/esm/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +10 -0
- package/esm/components/columnHeaders/ColumnHeaderMenuIcon.js +63 -0
- package/esm/components/columnHeaders/GridBaseColumnHeaders.d.ts +7 -0
- package/esm/components/columnHeaders/GridBaseColumnHeaders.js +45 -0
- package/esm/components/columnHeaders/GridColumnGroupHeader.d.ts +21 -0
- package/esm/components/columnHeaders/GridColumnGroupHeader.js +137 -0
- package/esm/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +12 -0
- package/esm/components/columnHeaders/GridColumnHeaderFilterIconButton.js +108 -0
- package/esm/components/columnHeaders/GridColumnHeaderItem.d.ts +34 -0
- package/esm/components/columnHeaders/GridColumnHeaderItem.js +231 -0
- package/esm/components/columnHeaders/GridColumnHeaderSeparator.d.ts +17 -0
- package/esm/components/columnHeaders/GridColumnHeaderSeparator.js +71 -0
- package/esm/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +15 -0
- package/esm/components/columnHeaders/GridColumnHeaderSortIcon.js +85 -0
- package/esm/components/columnHeaders/GridColumnHeaderTitle.d.ts +11 -0
- package/esm/components/columnHeaders/GridColumnHeaderTitle.js +88 -0
- package/esm/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +32 -0
- package/esm/components/columnHeaders/GridGenericColumnHeaderItem.js +93 -0
- package/esm/components/columnHeaders/GridIconButtonContainer.d.ts +3 -0
- package/esm/components/columnHeaders/GridIconButtonContainer.js +43 -0
- package/esm/components/columnHeaders/index.d.ts +5 -0
- package/esm/components/columnHeaders/index.js +5 -0
- package/esm/components/columnSelection/GridCellCheckboxRenderer.d.ts +5 -0
- package/esm/components/columnSelection/GridCellCheckboxRenderer.js +153 -0
- package/esm/components/columnSelection/GridHeaderCheckbox.d.ts +4 -0
- package/esm/components/columnSelection/GridHeaderCheckbox.js +169 -0
- package/esm/components/columnSelection/index.d.ts +2 -0
- package/esm/components/columnSelection/index.js +2 -0
- package/esm/components/columnsManagement/GridColumnsManagement.d.ts +45 -0
- package/esm/components/columnsManagement/GridColumnsManagement.js +317 -0
- package/esm/components/columnsManagement/index.d.ts +1 -0
- package/esm/components/columnsManagement/index.js +1 -0
- package/esm/components/columnsManagement/utils.d.ts +4 -0
- package/esm/components/columnsManagement/utils.js +16 -0
- package/esm/components/columnsPanel/ColumnsPanelTrigger.d.ts +33 -0
- package/esm/components/columnsPanel/ColumnsPanelTrigger.js +226 -0
- package/esm/components/columnsPanel/index.d.ts +1 -0
- package/esm/components/columnsPanel/index.js +1 -0
- package/esm/components/containers/GridFooterContainer.d.ts +9 -0
- package/esm/components/containers/GridFooterContainer.js +54 -0
- package/esm/components/containers/GridOverlay.d.ts +9 -0
- package/esm/components/containers/GridOverlay.js +58 -0
- package/esm/components/containers/GridRoot.d.ts +11 -0
- package/esm/components/containers/GridRoot.js +77 -0
- package/esm/components/containers/GridRootStyles.d.ts +5 -0
- package/esm/components/containers/GridRootStyles.js +849 -0
- package/esm/components/containers/GridToolbarContainer.d.ts +9 -0
- package/esm/components/containers/GridToolbarContainer.js +60 -0
- package/esm/components/containers/index.d.ts +4 -0
- package/esm/components/containers/index.js +4 -0
- package/esm/components/export/ExportCsv.d.ts +30 -0
- package/esm/components/export/ExportCsv.js +207 -0
- package/esm/components/export/ExportPrint.d.ts +30 -0
- package/esm/components/export/ExportPrint.js +207 -0
- package/esm/components/export/index.d.ts +2 -0
- package/esm/components/export/index.js +2 -0
- package/esm/components/filterPanel/FilterPanelTrigger.d.ts +37 -0
- package/esm/components/filterPanel/FilterPanelTrigger.js +229 -0
- package/esm/components/filterPanel/index.d.ts +1 -0
- package/esm/components/filterPanel/index.js +1 -0
- package/esm/components/index.d.ts +25 -0
- package/esm/components/index.js +25 -0
- package/esm/components/menu/GridMenu.d.ts +15 -0
- package/esm/components/menu/GridMenu.js +99 -0
- package/esm/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +26 -0
- package/esm/components/menu/columnMenu/GridColumnHeaderMenu.js +63 -0
- package/esm/components/menu/columnMenu/GridColumnMenu.d.ts +24 -0
- package/esm/components/menu/columnMenu/GridColumnMenu.js +109 -0
- package/esm/components/menu/columnMenu/GridColumnMenuContainer.d.ts +4 -0
- package/esm/components/menu/columnMenu/GridColumnMenuContainer.js +59 -0
- package/esm/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +7 -0
- package/esm/components/menu/columnMenu/GridColumnMenuProps.d.ts +12 -0
- package/esm/components/menu/columnMenu/index.d.ts +6 -0
- package/esm/components/menu/columnMenu/index.js +9 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +7 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +20 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +7 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +36 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +7 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +53 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +7 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +36 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +7 -0
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +68 -0
- package/esm/components/menu/columnMenu/menuItems/index.d.ts +5 -0
- package/esm/components/menu/columnMenu/menuItems/index.js +5 -0
- package/esm/components/menu/index.d.ts +2 -0
- package/esm/components/menu/index.js +2 -0
- package/esm/components/panel/GridColumnsPanel.d.ts +5 -0
- package/esm/components/panel/GridColumnsPanel.js +12 -0
- package/esm/components/panel/GridPanel.d.ts +20 -0
- package/esm/components/panel/GridPanel.js +107 -0
- package/esm/components/panel/GridPanelContent.d.ts +9 -0
- package/esm/components/panel/GridPanelContent.js +53 -0
- package/esm/components/panel/GridPanelFooter.d.ts +9 -0
- package/esm/components/panel/GridPanelFooter.js +51 -0
- package/esm/components/panel/GridPanelHeader.d.ts +9 -0
- package/esm/components/panel/GridPanelHeader.js +48 -0
- package/esm/components/panel/GridPanelWrapper.d.ts +6 -0
- package/esm/components/panel/GridPanelWrapper.js +47 -0
- package/esm/components/panel/GridPreferencePanelContext.d.ts +12 -0
- package/esm/components/panel/GridPreferencePanelContext.js +24 -0
- package/esm/components/panel/GridPreferencesPanel.d.ts +2 -0
- package/esm/components/panel/GridPreferencesPanel.js +29 -0
- package/esm/components/panel/filterPanel/GridFilterForm.d.ts +107 -0
- package/esm/components/panel/filterPanel/GridFilterForm.js +466 -0
- package/esm/components/panel/filterPanel/GridFilterInputBoolean.d.ts +10 -0
- package/esm/components/panel/filterPanel/GridFilterInputBoolean.js +122 -0
- package/esm/components/panel/filterPanel/GridFilterInputDate.d.ts +11 -0
- package/esm/components/panel/filterPanel/GridFilterInputDate.js +135 -0
- package/esm/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +12 -0
- package/esm/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +116 -0
- package/esm/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +11 -0
- package/esm/components/panel/filterPanel/GridFilterInputMultipleValue.js +98 -0
- package/esm/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +11 -0
- package/esm/components/panel/filterPanel/GridFilterInputSingleSelect.js +147 -0
- package/esm/components/panel/filterPanel/GridFilterInputValue.d.ts +15 -0
- package/esm/components/panel/filterPanel/GridFilterInputValue.js +121 -0
- package/esm/components/panel/filterPanel/GridFilterPanel.d.ts +49 -0
- package/esm/components/panel/filterPanel/GridFilterPanel.js +247 -0
- package/esm/components/panel/filterPanel/filterPanelUtils.d.ts +5 -0
- package/esm/components/panel/filterPanel/filterPanelUtils.js +22 -0
- package/esm/components/panel/filterPanel/index.d.ts +10 -0
- package/esm/components/panel/filterPanel/index.js +8 -0
- package/esm/components/panel/index.d.ts +7 -0
- package/esm/components/panel/index.js +7 -0
- package/esm/components/quickFilter/QuickFilter.d.ts +41 -0
- package/esm/components/quickFilter/QuickFilter.js +105 -0
- package/esm/components/quickFilter/QuickFilterClear.d.ts +28 -0
- package/esm/components/quickFilter/QuickFilterClear.js +167 -0
- package/esm/components/quickFilter/QuickFilterContext.d.ts +13 -0
- package/esm/components/quickFilter/QuickFilterContext.js +9 -0
- package/esm/components/quickFilter/QuickFilterControl.d.ts +28 -0
- package/esm/components/quickFilter/QuickFilterControl.js +97 -0
- package/esm/components/quickFilter/index.d.ts +3 -0
- package/esm/components/quickFilter/index.js +3 -0
- package/esm/components/reexportable.d.ts +1 -0
- package/esm/components/reexportable.js +1 -0
- package/esm/components/toolbar/GridToolbar.d.ts +17 -0
- package/esm/components/toolbar/GridToolbar.js +75 -0
- package/esm/components/toolbar/GridToolbarColumnsButton.d.ts +15 -0
- package/esm/components/toolbar/GridToolbarColumnsButton.js +79 -0
- package/esm/components/toolbar/GridToolbarDensitySelector.d.ts +15 -0
- package/esm/components/toolbar/GridToolbarDensitySelector.js +126 -0
- package/esm/components/toolbar/GridToolbarExport.d.ts +40 -0
- package/esm/components/toolbar/GridToolbarExport.js +124 -0
- package/esm/components/toolbar/GridToolbarExportContainer.d.ts +17 -0
- package/esm/components/toolbar/GridToolbarExportContainer.js +94 -0
- package/esm/components/toolbar/GridToolbarFilterButton.d.ts +17 -0
- package/esm/components/toolbar/GridToolbarFilterButton.js +145 -0
- package/esm/components/toolbar/GridToolbarQuickFilter.d.ts +43 -0
- package/esm/components/toolbar/GridToolbarQuickFilter.js +128 -0
- package/esm/components/toolbar/index.d.ts +8 -0
- package/esm/components/toolbar/index.js +7 -0
- package/esm/components/toolbarV8/GridToolbar.d.ts +11 -0
- package/esm/components/toolbarV8/GridToolbar.js +135 -0
- package/esm/components/toolbarV8/Toolbar.d.ts +32 -0
- package/esm/components/toolbarV8/Toolbar.js +125 -0
- package/esm/components/toolbarV8/ToolbarButton.d.ts +23 -0
- package/esm/components/toolbarV8/ToolbarButton.js +185 -0
- package/esm/components/toolbarV8/ToolbarContext.d.ts +9 -0
- package/esm/components/toolbarV8/ToolbarContext.js +9 -0
- package/esm/components/toolbarV8/index.d.ts +2 -0
- package/esm/components/toolbarV8/index.js +2 -0
- package/esm/components/virtualization/GridBottomContainer.d.ts +3 -0
- package/esm/components/virtualization/GridBottomContainer.js +25 -0
- package/esm/components/virtualization/GridMainContainer.d.ts +20 -0
- package/esm/components/virtualization/GridMainContainer.js +51 -0
- package/esm/components/virtualization/GridTopContainer.d.ts +2 -0
- package/esm/components/virtualization/GridTopContainer.js +25 -0
- package/esm/components/virtualization/GridVirtualScrollbar.d.ts +11 -0
- package/esm/components/virtualization/GridVirtualScrollbar.js +148 -0
- package/esm/components/virtualization/GridVirtualScroller.d.ts +6 -0
- package/esm/components/virtualization/GridVirtualScroller.js +130 -0
- package/esm/components/virtualization/GridVirtualScrollerContent.d.ts +8 -0
- package/esm/components/virtualization/GridVirtualScrollerContent.js +43 -0
- package/esm/components/virtualization/GridVirtualScrollerFiller.d.ts +10 -0
- package/esm/components/virtualization/GridVirtualScrollerFiller.js +74 -0
- package/esm/components/virtualization/GridVirtualScrollerRenderZone.d.ts +8 -0
- package/esm/components/virtualization/GridVirtualScrollerRenderZone.js +58 -0
- package/esm/constants/cssVariables.d.ts +264 -0
- package/esm/constants/cssVariables.js +151 -0
- package/esm/constants/dataGridPropsDefaultValues.d.ts +5 -0
- package/esm/constants/dataGridPropsDefaultValues.js +59 -0
- package/esm/constants/defaultGridSlotsComponents.d.ts +2 -0
- package/esm/constants/defaultGridSlotsComponents.js +38 -0
- package/esm/constants/envConstants.d.ts +1 -0
- package/esm/constants/envConstants.js +19 -0
- package/esm/constants/gridClasses.d.ts +697 -0
- package/esm/constants/gridClasses.js +5 -0
- package/esm/constants/index.d.ts +4 -0
- package/esm/constants/index.js +4 -0
- package/esm/constants/localeTextConstants.d.ts +2 -0
- package/esm/constants/localeTextConstants.js +191 -0
- package/esm/constants/signature.d.ts +9 -0
- package/esm/constants/signature.js +10 -0
- package/esm/context/GridContextProvider.d.ts +17 -0
- package/esm/context/GridContextProvider.js +33 -0
- package/esm/context/GridRootPropsContext.d.ts +3 -0
- package/esm/context/GridRootPropsContext.js +8 -0
- package/esm/context/index.d.ts +1 -0
- package/esm/context/index.js +1 -0
- package/esm/hooks/core/gridCoreSelector.d.ts +6 -0
- package/esm/hooks/core/gridCoreSelector.js +6 -0
- package/esm/hooks/core/gridPropsSelectors.d.ts +9 -0
- package/esm/hooks/core/gridPropsSelectors.js +15 -0
- package/esm/hooks/core/index.d.ts +2 -0
- package/esm/hooks/core/index.js +1 -0
- package/esm/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +142 -0
- package/esm/hooks/core/pipeProcessing/gridPipeProcessingApi.js +1 -0
- package/esm/hooks/core/pipeProcessing/index.d.ts +4 -0
- package/esm/hooks/core/pipeProcessing/index.js +4 -0
- package/esm/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +32 -0
- package/esm/hooks/core/pipeProcessing/useGridPipeProcessing.js +107 -0
- package/esm/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +4 -0
- package/esm/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +26 -0
- package/esm/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +4 -0
- package/esm/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +28 -0
- package/esm/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +79 -0
- package/esm/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +5 -0
- package/esm/hooks/core/strategyProcessing/index.d.ts +3 -0
- package/esm/hooks/core/strategyProcessing/index.js +3 -0
- package/esm/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +4 -0
- package/esm/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +18 -0
- package/esm/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +43 -0
- package/esm/hooks/core/strategyProcessing/useGridStrategyProcessing.js +110 -0
- package/esm/hooks/core/useGridApiInitialization.d.ts +5 -0
- package/esm/hooks/core/useGridApiInitialization.js +112 -0
- package/esm/hooks/core/useGridInitialization.d.ts +7 -0
- package/esm/hooks/core/useGridInitialization.js +28 -0
- package/esm/hooks/core/useGridIsRtl.d.ts +3 -0
- package/esm/hooks/core/useGridIsRtl.js +19 -0
- package/esm/hooks/core/useGridLocaleText.d.ts +4 -0
- package/esm/hooks/core/useGridLocaleText.js +12 -0
- package/esm/hooks/core/useGridLoggerFactory.d.ts +4 -0
- package/esm/hooks/core/useGridLoggerFactory.js +44 -0
- package/esm/hooks/core/useGridProps.d.ts +8 -0
- package/esm/hooks/core/useGridProps.js +18 -0
- package/esm/hooks/core/useGridRefs.d.ts +3 -0
- package/esm/hooks/core/useGridRefs.js +19 -0
- package/esm/hooks/core/useGridStateInitialization.d.ts +3 -0
- package/esm/hooks/core/useGridStateInitialization.js +95 -0
- package/esm/hooks/features/clipboard/useGridClipboard.d.ts +8 -0
- package/esm/hooks/features/clipboard/useGridClipboard.js +97 -0
- package/esm/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +16 -0
- package/esm/hooks/features/columnGrouping/gridColumnGroupsInterfaces.js +1 -0
- package/esm/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +12 -0
- package/esm/hooks/features/columnGrouping/gridColumnGroupsSelector.js +10 -0
- package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +18 -0
- package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.js +82 -0
- package/esm/hooks/features/columnGrouping/index.d.ts +2 -0
- package/esm/hooks/features/columnGrouping/index.js +2 -0
- package/esm/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +10 -0
- package/esm/hooks/features/columnGrouping/useGridColumnGrouping.js +131 -0
- package/esm/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +65 -0
- package/esm/hooks/features/columnHeaders/useGridColumnHeaders.js +317 -0
- package/esm/hooks/features/columnMenu/columnMenuInterfaces.d.ts +47 -0
- package/esm/hooks/features/columnMenu/columnMenuInterfaces.js +1 -0
- package/esm/hooks/features/columnMenu/columnMenuSelector.d.ts +2 -0
- package/esm/hooks/features/columnMenu/columnMenuSelector.js +2 -0
- package/esm/hooks/features/columnMenu/index.d.ts +2 -0
- package/esm/hooks/features/columnMenu/index.js +2 -0
- package/esm/hooks/features/columnMenu/useGridColumnMenu.d.ts +9 -0
- package/esm/hooks/features/columnMenu/useGridColumnMenu.js +104 -0
- package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +13 -0
- package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.js +59 -0
- package/esm/hooks/features/columnResize/columnResizeSelector.d.ts +3 -0
- package/esm/hooks/features/columnResize/columnResizeSelector.js +3 -0
- package/esm/hooks/features/columnResize/columnResizeState.d.ts +3 -0
- package/esm/hooks/features/columnResize/columnResizeState.js +1 -0
- package/esm/hooks/features/columnResize/gridColumnResizeApi.d.ts +50 -0
- package/esm/hooks/features/columnResize/gridColumnResizeApi.js +11 -0
- package/esm/hooks/features/columnResize/index.d.ts +3 -0
- package/esm/hooks/features/columnResize/index.js +3 -0
- package/esm/hooks/features/columnResize/useGridColumnResize.d.ts +10 -0
- package/esm/hooks/features/columnResize/useGridColumnResize.js +562 -0
- package/esm/hooks/features/columns/gridColumnsInterfaces.d.ts +42 -0
- package/esm/hooks/features/columns/gridColumnsInterfaces.js +9 -0
- package/esm/hooks/features/columns/gridColumnsSelector.d.ts +79 -0
- package/esm/hooks/features/columns/gridColumnsSelector.js +140 -0
- package/esm/hooks/features/columns/gridColumnsUtils.d.ts +74 -0
- package/esm/hooks/features/columns/gridColumnsUtils.js +328 -0
- package/esm/hooks/features/columns/index.d.ts +2 -0
- package/esm/hooks/features/columns/index.js +2 -0
- package/esm/hooks/features/columns/useGridColumnSpanning.d.ts +7 -0
- package/esm/hooks/features/columns/useGridColumnSpanning.js +107 -0
- package/esm/hooks/features/columns/useGridColumns.d.ts +11 -0
- package/esm/hooks/features/columns/useGridColumns.js +308 -0
- package/esm/hooks/features/dataSource/cache.d.ts +29 -0
- package/esm/hooks/features/dataSource/cache.js +39 -0
- package/esm/hooks/features/dataSource/gridDataSourceError.d.ts +31 -0
- package/esm/hooks/features/dataSource/gridDataSourceError.js +32 -0
- package/esm/hooks/features/dataSource/gridDataSourceSelector.d.ts +8 -0
- package/esm/hooks/features/dataSource/gridDataSourceSelector.js +12 -0
- package/esm/hooks/features/dataSource/index.d.ts +2 -0
- package/esm/hooks/features/dataSource/index.js +2 -0
- package/esm/hooks/features/dataSource/models.d.ts +22 -0
- package/esm/hooks/features/dataSource/models.js +1 -0
- package/esm/hooks/features/dataSource/useGridDataSource.d.ts +7 -0
- package/esm/hooks/features/dataSource/useGridDataSource.js +24 -0
- package/esm/hooks/features/dataSource/useGridDataSourceBase.d.ts +33 -0
- package/esm/hooks/features/dataSource/useGridDataSourceBase.js +165 -0
- package/esm/hooks/features/dataSource/utils.d.ts +23 -0
- package/esm/hooks/features/dataSource/utils.js +71 -0
- package/esm/hooks/features/density/densitySelector.d.ts +6 -0
- package/esm/hooks/features/density/densitySelector.js +10 -0
- package/esm/hooks/features/density/densityState.d.ts +2 -0
- package/esm/hooks/features/density/densityState.js +1 -0
- package/esm/hooks/features/density/index.d.ts +2 -0
- package/esm/hooks/features/density/index.js +2 -0
- package/esm/hooks/features/density/useGridDensity.d.ts +6 -0
- package/esm/hooks/features/density/useGridDensity.js +64 -0
- package/esm/hooks/features/dimensions/gridDimensionsApi.d.ts +103 -0
- package/esm/hooks/features/dimensions/gridDimensionsApi.js +1 -0
- package/esm/hooks/features/dimensions/gridDimensionsSelectors.d.ts +18 -0
- package/esm/hooks/features/dimensions/gridDimensionsSelectors.js +25 -0
- package/esm/hooks/features/dimensions/index.d.ts +3 -0
- package/esm/hooks/features/dimensions/index.js +1 -0
- package/esm/hooks/features/dimensions/useGridDimensions.d.ts +10 -0
- package/esm/hooks/features/dimensions/useGridDimensions.js +299 -0
- package/esm/hooks/features/editing/gridEditingSelectors.d.ts +15 -0
- package/esm/hooks/features/editing/gridEditingSelectors.js +15 -0
- package/esm/hooks/features/editing/index.d.ts +1 -0
- package/esm/hooks/features/editing/index.js +1 -0
- package/esm/hooks/features/editing/useGridCellEditing.d.ts +4 -0
- package/esm/hooks/features/editing/useGridCellEditing.js +469 -0
- package/esm/hooks/features/editing/useGridEditing.d.ts +6 -0
- package/esm/hooks/features/editing/useGridEditing.js +123 -0
- package/esm/hooks/features/editing/useGridRowEditing.d.ts +4 -0
- package/esm/hooks/features/editing/useGridRowEditing.js +605 -0
- package/esm/hooks/features/editing/utils.d.ts +2 -0
- package/esm/hooks/features/editing/utils.js +15 -0
- package/esm/hooks/features/events/useGridEvents.d.ts +8 -0
- package/esm/hooks/features/events/useGridEvents.js +24 -0
- package/esm/hooks/features/export/serializers/csvSerializer.d.ts +19 -0
- package/esm/hooks/features/export/serializers/csvSerializer.js +144 -0
- package/esm/hooks/features/export/useGridCsvExport.d.ts +11 -0
- package/esm/hooks/features/export/useGridCsvExport.js +74 -0
- package/esm/hooks/features/export/useGridPrintExport.d.ts +10 -0
- package/esm/hooks/features/export/useGridPrintExport.js +290 -0
- package/esm/hooks/features/export/utils.d.ts +20 -0
- package/esm/hooks/features/export/utils.js +39 -0
- package/esm/hooks/features/filter/gridFilterSelector.d.ts +103 -0
- package/esm/hooks/features/filter/gridFilterSelector.js +177 -0
- package/esm/hooks/features/filter/gridFilterState.d.ts +61 -0
- package/esm/hooks/features/filter/gridFilterState.js +23 -0
- package/esm/hooks/features/filter/gridFilterUtils.d.ts +23 -0
- package/esm/hooks/features/filter/gridFilterUtils.js +311 -0
- package/esm/hooks/features/filter/index.d.ts +4 -0
- package/esm/hooks/features/filter/index.js +2 -0
- package/esm/hooks/features/filter/useGridFilter.d.ts +11 -0
- package/esm/hooks/features/filter/useGridFilter.js +366 -0
- package/esm/hooks/features/focus/gridFocusState.d.ts +20 -0
- package/esm/hooks/features/focus/gridFocusState.js +1 -0
- package/esm/hooks/features/focus/gridFocusStateSelector.d.ts +12 -0
- package/esm/hooks/features/focus/gridFocusStateSelector.js +11 -0
- package/esm/hooks/features/focus/index.d.ts +2 -0
- package/esm/hooks/features/focus/index.js +2 -0
- package/esm/hooks/features/focus/useGridFocus.d.ts +11 -0
- package/esm/hooks/features/focus/useGridFocus.js +406 -0
- package/esm/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +5 -0
- package/esm/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +7 -0
- package/esm/hooks/features/headerFiltering/index.d.ts +1 -0
- package/esm/hooks/features/headerFiltering/index.js +1 -0
- package/esm/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +6 -0
- package/esm/hooks/features/headerFiltering/useGridHeaderFiltering.js +105 -0
- package/esm/hooks/features/index.d.ts +19 -0
- package/esm/hooks/features/index.js +20 -0
- package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +13 -0
- package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +537 -0
- package/esm/hooks/features/keyboardNavigation/utils.d.ts +26 -0
- package/esm/hooks/features/keyboardNavigation/utils.js +53 -0
- package/esm/hooks/features/listView/gridListViewSelectors.d.ts +7 -0
- package/esm/hooks/features/listView/gridListViewSelectors.js +7 -0
- package/esm/hooks/features/listView/index.d.ts +1 -0
- package/esm/hooks/features/listView/index.js +1 -0
- package/esm/hooks/features/listView/useGridListView.d.ts +10 -0
- package/esm/hooks/features/listView/useGridListView.js +61 -0
- package/esm/hooks/features/overlays/useGridOverlays.d.ts +14 -0
- package/esm/hooks/features/overlays/useGridOverlays.js +62 -0
- package/esm/hooks/features/pagination/gridPaginationInterfaces.d.ts +58 -0
- package/esm/hooks/features/pagination/gridPaginationInterfaces.js +1 -0
- package/esm/hooks/features/pagination/gridPaginationSelector.d.ts +79 -0
- package/esm/hooks/features/pagination/gridPaginationSelector.js +153 -0
- package/esm/hooks/features/pagination/gridPaginationUtils.d.ts +9 -0
- package/esm/hooks/features/pagination/gridPaginationUtils.js +28 -0
- package/esm/hooks/features/pagination/index.d.ts +2 -0
- package/esm/hooks/features/pagination/index.js +2 -0
- package/esm/hooks/features/pagination/useGridPagination.d.ts +10 -0
- package/esm/hooks/features/pagination/useGridPagination.js +30 -0
- package/esm/hooks/features/pagination/useGridPaginationMeta.d.ts +4 -0
- package/esm/hooks/features/pagination/useGridPaginationMeta.js +77 -0
- package/esm/hooks/features/pagination/useGridPaginationModel.d.ts +11 -0
- package/esm/hooks/features/pagination/useGridPaginationModel.js +232 -0
- package/esm/hooks/features/pagination/useGridRowCount.d.ts +4 -0
- package/esm/hooks/features/pagination/useGridRowCount.js +108 -0
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +3 -0
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +8 -0
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +13 -0
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelState.js +1 -0
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelsValue.d.ts +5 -0
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelsValue.js +6 -0
- package/esm/hooks/features/preferencesPanel/index.d.ts +3 -0
- package/esm/hooks/features/preferencesPanel/index.js +3 -0
- package/esm/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +9 -0
- package/esm/hooks/features/preferencesPanel/useGridPreferencesPanel.js +88 -0
- package/esm/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +6 -0
- package/esm/hooks/features/rowSelection/gridRowSelectionSelector.js +29 -0
- package/esm/hooks/features/rowSelection/index.d.ts +1 -0
- package/esm/hooks/features/rowSelection/index.js +1 -0
- package/esm/hooks/features/rowSelection/useGridRowSelection.d.ts +12 -0
- package/esm/hooks/features/rowSelection/useGridRowSelection.js +583 -0
- package/esm/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +4 -0
- package/esm/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +44 -0
- package/esm/hooks/features/rowSelection/utils.d.ts +14 -0
- package/esm/hooks/features/rowSelection/utils.js +165 -0
- package/esm/hooks/features/rows/gridRowSpanningSelectors.d.ts +4 -0
- package/esm/hooks/features/rows/gridRowSpanningSelectors.js +5 -0
- package/esm/hooks/features/rows/gridRowSpanningUtils.d.ts +10 -0
- package/esm/hooks/features/rows/gridRowSpanningUtils.js +42 -0
- package/esm/hooks/features/rows/gridRowsInterfaces.d.ts +108 -0
- package/esm/hooks/features/rows/gridRowsInterfaces.js +1 -0
- package/esm/hooks/features/rows/gridRowsMetaInterfaces.d.ts +16 -0
- package/esm/hooks/features/rows/gridRowsMetaInterfaces.js +1 -0
- package/esm/hooks/features/rows/gridRowsMetaSelector.d.ts +2 -0
- package/esm/hooks/features/rows/gridRowsMetaSelector.js +2 -0
- package/esm/hooks/features/rows/gridRowsMetaState.d.ts +21 -0
- package/esm/hooks/features/rows/gridRowsMetaState.js +1 -0
- package/esm/hooks/features/rows/gridRowsSelector.d.ts +49 -0
- package/esm/hooks/features/rows/gridRowsSelector.js +51 -0
- package/esm/hooks/features/rows/gridRowsUtils.d.ts +61 -0
- package/esm/hooks/features/rows/gridRowsUtils.js +302 -0
- package/esm/hooks/features/rows/index.d.ts +5 -0
- package/esm/hooks/features/rows/index.js +4 -0
- package/esm/hooks/features/rows/useGridParamsApi.d.ts +13 -0
- package/esm/hooks/features/rows/useGridParamsApi.js +137 -0
- package/esm/hooks/features/rows/useGridRowAriaAttributes.d.ts +2 -0
- package/esm/hooks/features/rows/useGridRowAriaAttributes.js +17 -0
- package/esm/hooks/features/rows/useGridRowSpanning.d.ts +27 -0
- package/esm/hooks/features/rows/useGridRowSpanning.js +270 -0
- package/esm/hooks/features/rows/useGridRows.d.ts +6 -0
- package/esm/hooks/features/rows/useGridRows.js +459 -0
- package/esm/hooks/features/rows/useGridRowsMeta.d.ts +10 -0
- package/esm/hooks/features/rows/useGridRowsMeta.js +227 -0
- package/esm/hooks/features/rows/useGridRowsPreProcessors.d.ts +3 -0
- package/esm/hooks/features/rows/useGridRowsPreProcessors.js +81 -0
- package/esm/hooks/features/scroll/useGridScroll.d.ts +12 -0
- package/esm/hooks/features/scroll/useGridScroll.js +134 -0
- package/esm/hooks/features/sorting/gridSortingSelector.d.ts +32 -0
- package/esm/hooks/features/sorting/gridSortingSelector.js +70 -0
- package/esm/hooks/features/sorting/gridSortingState.d.ts +14 -0
- package/esm/hooks/features/sorting/gridSortingState.js +1 -0
- package/esm/hooks/features/sorting/gridSortingUtils.d.ts +18 -0
- package/esm/hooks/features/sorting/gridSortingUtils.js +138 -0
- package/esm/hooks/features/sorting/index.d.ts +4 -0
- package/esm/hooks/features/sorting/index.js +2 -0
- package/esm/hooks/features/sorting/useGridSorting.d.ts +10 -0
- package/esm/hooks/features/sorting/useGridSorting.js +250 -0
- package/esm/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +40 -0
- package/esm/hooks/features/statePersistence/gridStatePersistenceInterface.js +1 -0
- package/esm/hooks/features/statePersistence/index.d.ts +1 -0
- package/esm/hooks/features/statePersistence/index.js +1 -0
- package/esm/hooks/features/statePersistence/useGridStatePersistence.d.ts +3 -0
- package/esm/hooks/features/statePersistence/useGridStatePersistence.js +23 -0
- package/esm/hooks/features/virtualization/gridFocusedVirtualCellSelector.d.ts +6 -0
- package/esm/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +32 -0
- package/esm/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +36 -0
- package/esm/hooks/features/virtualization/gridVirtualizationSelectors.js +43 -0
- package/esm/hooks/features/virtualization/index.d.ts +2 -0
- package/esm/hooks/features/virtualization/index.js +2 -0
- package/esm/hooks/features/virtualization/useGridVirtualScroller.d.ts +56 -0
- package/esm/hooks/features/virtualization/useGridVirtualScroller.js +832 -0
- package/esm/hooks/features/virtualization/useGridVirtualization.d.ts +21 -0
- package/esm/hooks/features/virtualization/useGridVirtualization.js +61 -0
- package/esm/hooks/index.d.ts +3 -0
- package/esm/hooks/index.js +3 -0
- package/esm/hooks/utils/index.d.ts +9 -0
- package/esm/hooks/utils/index.js +8 -0
- package/esm/hooks/utils/useFirstRender.d.ts +1 -0
- package/esm/hooks/utils/useFirstRender.js +8 -0
- package/esm/hooks/utils/useGridApiContext.d.ts +4 -0
- package/esm/hooks/utils/useGridApiContext.js +9 -0
- package/esm/hooks/utils/useGridApiEventHandler.d.ts +12 -0
- package/esm/hooks/utils/useGridApiEventHandler.js +88 -0
- package/esm/hooks/utils/useGridApiMethod.d.ts +7 -0
- package/esm/hooks/utils/useGridApiMethod.js +12 -0
- package/esm/hooks/utils/useGridApiRef.d.ts +7 -0
- package/esm/hooks/utils/useGridApiRef.js +5 -0
- package/esm/hooks/utils/useGridAriaAttributes.d.ts +2 -0
- package/esm/hooks/utils/useGridAriaAttributes.js +22 -0
- package/esm/hooks/utils/useGridComponentRenderer.d.ts +12 -0
- package/esm/hooks/utils/useGridComponentRenderer.js +36 -0
- package/esm/hooks/utils/useGridConfiguration.d.ts +2 -0
- package/esm/hooks/utils/useGridConfiguration.js +9 -0
- package/esm/hooks/utils/useGridInitializeState.d.ts +8 -0
- package/esm/hooks/utils/useGridInitializeState.js +8 -0
- package/esm/hooks/utils/useGridLogger.d.ts +4 -0
- package/esm/hooks/utils/useGridLogger.js +10 -0
- package/esm/hooks/utils/useGridNativeEventListener.d.ts +3 -0
- package/esm/hooks/utils/useGridNativeEventListener.js +17 -0
- package/esm/hooks/utils/useGridPrivateApiContext.d.ts +6 -0
- package/esm/hooks/utils/useGridPrivateApiContext.js +12 -0
- package/esm/hooks/utils/useGridRootProps.d.ts +2 -0
- package/esm/hooks/utils/useGridRootProps.js +9 -0
- package/esm/hooks/utils/useGridSelector.d.ts +8 -0
- package/esm/hooks/utils/useGridSelector.js +83 -0
- package/esm/hooks/utils/useGridVisibleRows.d.ts +26 -0
- package/esm/hooks/utils/useGridVisibleRows.js +17 -0
- package/esm/hooks/utils/useIsSSR.d.ts +1 -0
- package/esm/hooks/utils/useIsSSR.js +8 -0
- package/esm/hooks/utils/useLazyRef.d.ts +1 -0
- package/esm/hooks/utils/useLazyRef.js +1 -0
- package/esm/hooks/utils/useOnMount.d.ts +1 -0
- package/esm/hooks/utils/useOnMount.js +1 -0
- package/esm/hooks/utils/useRunOnce.d.ts +5 -0
- package/esm/hooks/utils/useRunOnce.js +18 -0
- package/esm/hooks/utils/useTimeout.d.ts +1 -0
- package/esm/hooks/utils/useTimeout.js +1 -0
- package/esm/index.d.ts +38 -0
- package/esm/index.js +38 -0
- package/esm/internals/constants.d.ts +9 -0
- package/esm/internals/constants.js +10 -0
- package/esm/internals/demo/TailwindDemoContainer.d.ts +11 -0
- package/esm/internals/demo/TailwindDemoContainer.js +55 -0
- package/esm/internals/demo/index.d.ts +1 -0
- package/esm/internals/demo/index.js +1 -0
- package/esm/internals/index.d.ts +112 -0
- package/esm/internals/index.js +90 -0
- package/esm/internals/utils/attachPinnedStyle.d.ts +2 -0
- package/esm/internals/utils/attachPinnedStyle.js +9 -0
- package/esm/internals/utils/computeSlots.d.ts +7 -0
- package/esm/internals/utils/computeSlots.js +18 -0
- package/esm/internals/utils/getPinnedCellOffset.d.ts +3 -0
- package/esm/internals/utils/getPinnedCellOffset.js +16 -0
- package/esm/internals/utils/gridRowGroupingUtils.d.ts +2 -0
- package/esm/internals/utils/gridRowGroupingUtils.js +9 -0
- package/esm/internals/utils/index.d.ts +4 -0
- package/esm/internals/utils/index.js +4 -0
- package/esm/internals/utils/propValidation.d.ts +4 -0
- package/esm/internals/utils/propValidation.js +12 -0
- package/esm/locales/arSD.d.ts +2 -0
- package/esm/locales/arSD.js +197 -0
- package/esm/locales/beBY.d.ts +2 -0
- package/esm/locales/beBY.js +220 -0
- package/esm/locales/bgBG.d.ts +2 -0
- package/esm/locales/bgBG.js +197 -0
- package/esm/locales/bnBD.d.ts +2 -0
- package/esm/locales/bnBD.js +194 -0
- package/esm/locales/csCZ.d.ts +2 -0
- package/esm/locales/csCZ.js +222 -0
- package/esm/locales/daDK.d.ts +2 -0
- package/esm/locales/daDK.js +197 -0
- package/esm/locales/deDE.d.ts +2 -0
- package/esm/locales/deDE.js +193 -0
- package/esm/locales/elGR.d.ts +2 -0
- package/esm/locales/elGR.js +198 -0
- package/esm/locales/enUS.d.ts +2 -0
- package/esm/locales/enUS.js +3 -0
- package/esm/locales/esES.d.ts +2 -0
- package/esm/locales/esES.js +195 -0
- package/esm/locales/faIR.d.ts +2 -0
- package/esm/locales/faIR.js +196 -0
- package/esm/locales/fiFI.d.ts +2 -0
- package/esm/locales/fiFI.js +197 -0
- package/esm/locales/frFR.d.ts +2 -0
- package/esm/locales/frFR.js +197 -0
- package/esm/locales/heIL.d.ts +2 -0
- package/esm/locales/heIL.js +195 -0
- package/esm/locales/hrHR.d.ts +1 -0
- package/esm/locales/hrHR.js +220 -0
- package/esm/locales/huHU.d.ts +2 -0
- package/esm/locales/huHU.js +194 -0
- package/esm/locales/index.d.ts +37 -0
- package/esm/locales/index.js +38 -0
- package/esm/locales/isIS.d.ts +2 -0
- package/esm/locales/isIS.js +197 -0
- package/esm/locales/itIT.d.ts +2 -0
- package/esm/locales/itIT.js +197 -0
- package/esm/locales/jaJP.d.ts +2 -0
- package/esm/locales/jaJP.js +197 -0
- package/esm/locales/koKR.d.ts +2 -0
- package/esm/locales/koKR.js +195 -0
- package/esm/locales/nbNO.d.ts +2 -0
- package/esm/locales/nbNO.js +197 -0
- package/esm/locales/nlNL.d.ts +2 -0
- package/esm/locales/nlNL.js +195 -0
- package/esm/locales/nnNO.d.ts +2 -0
- package/esm/locales/nnNO.js +197 -0
- package/esm/locales/plPL.d.ts +2 -0
- package/esm/locales/plPL.js +194 -0
- package/esm/locales/ptBR.d.ts +2 -0
- package/esm/locales/ptBR.js +195 -0
- package/esm/locales/ptPT.d.ts +1 -0
- package/esm/locales/ptPT.js +195 -0
- package/esm/locales/roRO.d.ts +2 -0
- package/esm/locales/roRO.js +195 -0
- package/esm/locales/ruRU.d.ts +2 -0
- package/esm/locales/ruRU.js +216 -0
- package/esm/locales/skSK.d.ts +2 -0
- package/esm/locales/skSK.js +222 -0
- package/esm/locales/svSE.d.ts +2 -0
- package/esm/locales/svSE.js +197 -0
- package/esm/locales/trTR.d.ts +2 -0
- package/esm/locales/trTR.js +195 -0
- package/esm/locales/ukUA.d.ts +2 -0
- package/esm/locales/ukUA.js +216 -0
- package/esm/locales/urPK.d.ts +2 -0
- package/esm/locales/urPK.js +197 -0
- package/esm/locales/viVN.d.ts +2 -0
- package/esm/locales/viVN.js +197 -0
- package/esm/locales/zhCN.d.ts +2 -0
- package/esm/locales/zhCN.js +192 -0
- package/esm/locales/zhHK.d.ts +1 -0
- package/esm/locales/zhHK.js +192 -0
- package/esm/locales/zhTW.d.ts +2 -0
- package/esm/locales/zhTW.js +192 -0
- package/esm/material/icons/GridColumnUnsortedIcon.d.ts +8 -0
- package/esm/material/icons/GridColumnUnsortedIcon.js +16 -0
- package/esm/material/icons/index.d.ts +84 -0
- package/esm/material/icons/index.js +92 -0
- package/esm/material/index.d.ts +5 -0
- package/esm/material/index.js +545 -0
- package/esm/material/variables.d.ts +5 -0
- package/esm/material/variables.js +94 -0
- package/esm/models/api/gridApiCommon.d.ts +34 -0
- package/esm/models/api/gridApiCommon.js +1 -0
- package/esm/models/api/gridApiCommunity.d.ts +12 -0
- package/esm/models/api/gridApiCommunity.js +1 -0
- package/esm/models/api/gridCallbackDetails.d.ts +15 -0
- package/esm/models/api/gridCallbackDetails.js +1 -0
- package/esm/models/api/gridColumnApi.d.ts +74 -0
- package/esm/models/api/gridColumnApi.js +1 -0
- package/esm/models/api/gridColumnGroupingApi.d.ts +19 -0
- package/esm/models/api/gridColumnGroupingApi.js +1 -0
- package/esm/models/api/gridColumnMenuApi.d.ts +19 -0
- package/esm/models/api/gridColumnMenuApi.js +1 -0
- package/esm/models/api/gridColumnSpanning.d.ts +34 -0
- package/esm/models/api/gridColumnSpanning.js +1 -0
- package/esm/models/api/gridCoreApi.d.ts +96 -0
- package/esm/models/api/gridCoreApi.js +1 -0
- package/esm/models/api/gridCsvExportApi.d.ts +18 -0
- package/esm/models/api/gridCsvExportApi.js +1 -0
- package/esm/models/api/gridDensityApi.d.ts +17 -0
- package/esm/models/api/gridDensityApi.js +1 -0
- package/esm/models/api/gridEditingApi.d.ts +238 -0
- package/esm/models/api/gridEditingApi.js +1 -0
- package/esm/models/api/gridFilterApi.d.ts +67 -0
- package/esm/models/api/gridFilterApi.js +1 -0
- package/esm/models/api/gridFocusApi.d.ts +46 -0
- package/esm/models/api/gridFocusApi.js +1 -0
- package/esm/models/api/gridHeaderFilteringApi.d.ts +30 -0
- package/esm/models/api/gridHeaderFilteringApi.js +1 -0
- package/esm/models/api/gridInfiniteLoaderApi.d.ts +7 -0
- package/esm/models/api/gridInfiniteLoaderApi.js +1 -0
- package/esm/models/api/gridLocaleTextApi.d.ts +163 -0
- package/esm/models/api/gridLocaleTextApi.js +1 -0
- package/esm/models/api/gridLoggerApi.d.ts +11 -0
- package/esm/models/api/gridLoggerApi.js +1 -0
- package/esm/models/api/gridParamsApi.d.ts +107 -0
- package/esm/models/api/gridParamsApi.js +1 -0
- package/esm/models/api/gridPreferencesPanelApi.d.ts +17 -0
- package/esm/models/api/gridPreferencesPanelApi.js +1 -0
- package/esm/models/api/gridPrintExportApi.d.ts +11 -0
- package/esm/models/api/gridPrintExportApi.js +1 -0
- package/esm/models/api/gridRowApi.d.ts +120 -0
- package/esm/models/api/gridRowApi.js +1 -0
- package/esm/models/api/gridRowSelectionApi.d.ts +90 -0
- package/esm/models/api/gridRowSelectionApi.js +1 -0
- package/esm/models/api/gridRowsMetaApi.d.ts +60 -0
- package/esm/models/api/gridRowsMetaApi.js +1 -0
- package/esm/models/api/gridScrollApi.d.ts +24 -0
- package/esm/models/api/gridScrollApi.js +1 -0
- package/esm/models/api/gridSortApi.d.ts +46 -0
- package/esm/models/api/gridSortApi.js +1 -0
- package/esm/models/api/gridStateApi.d.ts +33 -0
- package/esm/models/api/gridStateApi.js +1 -0
- package/esm/models/api/gridVirtualizationApi.d.ts +19 -0
- package/esm/models/api/gridVirtualizationApi.js +1 -0
- package/esm/models/api/index.d.ts +23 -0
- package/esm/models/api/index.js +13 -0
- package/esm/models/colDef/gridColDef.d.ts +317 -0
- package/esm/models/colDef/gridColDef.js +1 -0
- package/esm/models/colDef/gridColType.d.ts +11 -0
- package/esm/models/colDef/gridColType.js +1 -0
- package/esm/models/colDef/gridColumnTypesRecord.d.ts +3 -0
- package/esm/models/colDef/gridColumnTypesRecord.js +1 -0
- package/esm/models/colDef/index.d.ts +3 -0
- package/esm/models/colDef/index.js +6 -0
- package/esm/models/configuration/gridConfiguration.d.ts +15 -0
- package/esm/models/configuration/gridConfiguration.js +1 -0
- package/esm/models/configuration/gridRowConfiguration.d.ts +12 -0
- package/esm/models/configuration/gridRowConfiguration.js +1 -0
- package/esm/models/controlStateItem.d.ts +14 -0
- package/esm/models/controlStateItem.js +1 -0
- package/esm/models/cursorCoordinates.d.ts +4 -0
- package/esm/models/cursorCoordinates.js +1 -0
- package/esm/models/elementSize.d.ts +13 -0
- package/esm/models/elementSize.js +1 -0
- package/esm/models/events/gridEventListener.d.ts +8 -0
- package/esm/models/events/gridEventListener.js +1 -0
- package/esm/models/events/gridEventLookup.d.ts +661 -0
- package/esm/models/events/gridEventLookup.js +1 -0
- package/esm/models/events/gridEventPublisher.d.ts +29 -0
- package/esm/models/events/gridEventPublisher.js +1 -0
- package/esm/models/events/index.d.ts +3 -0
- package/esm/models/events/index.js +3 -0
- package/esm/models/gridApiCaches.d.ts +6 -0
- package/esm/models/gridApiCaches.js +1 -0
- package/esm/models/gridBaseSlots.d.ts +271 -0
- package/esm/models/gridBaseSlots.js +1 -0
- package/esm/models/gridCell.d.ts +30 -0
- package/esm/models/gridCell.js +1 -0
- package/esm/models/gridCellClass.d.ts +10 -0
- package/esm/models/gridCellClass.js +1 -0
- package/esm/models/gridColumnGrouping.d.ts +41 -0
- package/esm/models/gridColumnGrouping.js +11 -0
- package/esm/models/gridColumnHeaderClass.d.ts +9 -0
- package/esm/models/gridColumnHeaderClass.js +1 -0
- package/esm/models/gridColumnSpanning.d.ts +12 -0
- package/esm/models/gridColumnSpanning.js +1 -0
- package/esm/models/gridDataSource.d.ts +70 -0
- package/esm/models/gridDataSource.js +1 -0
- package/esm/models/gridDensity.d.ts +4 -0
- package/esm/models/gridDensity.js +1 -0
- package/esm/models/gridEditRowModel.d.ts +28 -0
- package/esm/models/gridEditRowModel.js +16 -0
- package/esm/models/gridExport.d.ts +157 -0
- package/esm/models/gridExport.js +1 -0
- package/esm/models/gridFeatureMode.d.ts +1 -0
- package/esm/models/gridFeatureMode.js +1 -0
- package/esm/models/gridFilterInputComponent.d.ts +32 -0
- package/esm/models/gridFilterInputComponent.js +1 -0
- package/esm/models/gridFilterItem.d.ts +30 -0
- package/esm/models/gridFilterItem.js +11 -0
- package/esm/models/gridFilterModel.d.ts +34 -0
- package/esm/models/gridFilterModel.js +1 -0
- package/esm/models/gridFilterOperator.d.ts +58 -0
- package/esm/models/gridFilterOperator.js +1 -0
- package/esm/models/gridHeaderFilteringModel.d.ts +6 -0
- package/esm/models/gridHeaderFilteringModel.js +1 -0
- package/esm/models/gridIconSlotsComponent.d.ts +191 -0
- package/esm/models/gridIconSlotsComponent.js +1 -0
- package/esm/models/gridPaginationProps.d.ts +16 -0
- package/esm/models/gridPaginationProps.js +1 -0
- package/esm/models/gridRenderContextProps.d.ts +55 -0
- package/esm/models/gridRenderContextProps.js +1 -0
- package/esm/models/gridRowSelectionManager.d.ts +9 -0
- package/esm/models/gridRowSelectionManager.js +36 -0
- package/esm/models/gridRowSelectionModel.d.ts +9 -0
- package/esm/models/gridRowSelectionModel.js +1 -0
- package/esm/models/gridRows.d.ts +178 -0
- package/esm/models/gridRows.js +1 -0
- package/esm/models/gridSlotsComponent.d.ts +215 -0
- package/esm/models/gridSlotsComponent.js +1 -0
- package/esm/models/gridSlotsComponentsProps.d.ts +142 -0
- package/esm/models/gridSlotsComponentsProps.js +1 -0
- package/esm/models/gridSortModel.d.ts +30 -0
- package/esm/models/gridSortModel.js +1 -0
- package/esm/models/gridStateCommunity.d.ts +60 -0
- package/esm/models/gridStateCommunity.js +1 -0
- package/esm/models/index.d.ts +31 -0
- package/esm/models/index.js +30 -0
- package/esm/models/logger.d.ts +6 -0
- package/esm/models/logger.js +1 -0
- package/esm/models/muiEvent.d.ts +5 -0
- package/esm/models/muiEvent.js +1 -0
- package/esm/models/params/gridCellParams.d.ts +113 -0
- package/esm/models/params/gridCellParams.js +1 -0
- package/esm/models/params/gridColumnGroupHeaderParams.d.ts +30 -0
- package/esm/models/params/gridColumnGroupHeaderParams.js +1 -0
- package/esm/models/params/gridColumnHeaderParams.d.ts +15 -0
- package/esm/models/params/gridColumnHeaderParams.js +1 -0
- package/esm/models/params/gridColumnOrderChangeParams.d.ts +18 -0
- package/esm/models/params/gridColumnOrderChangeParams.js +1 -0
- package/esm/models/params/gridColumnResizeParams.d.ts +19 -0
- package/esm/models/params/gridColumnResizeParams.js +1 -0
- package/esm/models/params/gridEditCellParams.d.ts +65 -0
- package/esm/models/params/gridEditCellParams.js +27 -0
- package/esm/models/params/gridHeaderSelectionCheckboxParams.d.ts +3 -0
- package/esm/models/params/gridHeaderSelectionCheckboxParams.js +1 -0
- package/esm/models/params/gridMenuParams.d.ts +6 -0
- package/esm/models/params/gridMenuParams.js +1 -0
- package/esm/models/params/gridPreferencePanelParams.d.ts +2 -0
- package/esm/models/params/gridPreferencePanelParams.js +1 -0
- package/esm/models/params/gridRowParams.d.ts +110 -0
- package/esm/models/params/gridRowParams.js +44 -0
- package/esm/models/params/gridRowSelectionCheckboxParams.d.ts +5 -0
- package/esm/models/params/gridRowSelectionCheckboxParams.js +1 -0
- package/esm/models/params/gridScrollParams.d.ts +14 -0
- package/esm/models/params/gridScrollParams.js +1 -0
- package/esm/models/params/gridValueOptionsParams.d.ts +18 -0
- package/esm/models/params/gridValueOptionsParams.js +1 -0
- package/esm/models/params/index.d.ts +13 -0
- package/esm/models/params/index.js +13 -0
- package/esm/models/props/DataGridProps.d.ts +856 -0
- package/esm/models/props/DataGridProps.js +1 -0
- package/esm/package.json +1 -0
- package/esm/themeAugmentation/index.d.ts +2 -0
- package/esm/themeAugmentation/index.js +4 -0
- package/esm/themeAugmentation/overrides.d.ts +18 -0
- package/esm/themeAugmentation/overrides.js +1 -0
- package/esm/themeAugmentation/props.d.ts +15 -0
- package/esm/themeAugmentation/props.js +1 -0
- package/esm/utils/ResizeObserver.d.ts +4 -0
- package/esm/utils/ResizeObserver.js +10 -0
- package/esm/utils/Store.d.ts +11 -0
- package/esm/utils/Store.js +24 -0
- package/esm/utils/assert.d.ts +2 -0
- package/esm/utils/assert.js +3 -0
- package/esm/utils/cellBorderUtils.d.ts +3 -0
- package/esm/utils/cellBorderUtils.js +21 -0
- package/esm/utils/cleanupTracking/CleanupTracking.d.ts +9 -0
- package/esm/utils/cleanupTracking/CleanupTracking.js +1 -0
- package/esm/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +7 -0
- package/esm/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +18 -0
- package/esm/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +9 -0
- package/esm/utils/cleanupTracking/TimerBasedCleanupTracking.js +38 -0
- package/esm/utils/composeGridClasses.d.ts +3 -0
- package/esm/utils/composeGridClasses.js +5 -0
- package/esm/utils/createControllablePromise.d.ts +5 -0
- package/esm/utils/createControllablePromise.js +11 -0
- package/esm/utils/createSelector.d.ts +23 -0
- package/esm/utils/createSelector.js +94 -0
- package/esm/utils/css/context.d.ts +14 -0
- package/esm/utils/css/context.js +54 -0
- package/esm/utils/doesSupportPreventScroll.d.ts +1 -0
- package/esm/utils/doesSupportPreventScroll.js +13 -0
- package/esm/utils/domUtils.d.ts +29 -0
- package/esm/utils/domUtils.js +204 -0
- package/esm/utils/exportAs.d.ts +12 -0
- package/esm/utils/exportAs.js +38 -0
- package/esm/utils/getGridLocalization.d.ts +11 -0
- package/esm/utils/getGridLocalization.js +9 -0
- package/esm/utils/getPublicApiRef.d.ts +3 -0
- package/esm/utils/getPublicApiRef.js +5 -0
- package/esm/utils/index.d.ts +2 -0
- package/esm/utils/index.js +1 -0
- package/esm/utils/isJSDOM.d.ts +1 -0
- package/esm/utils/isJSDOM.js +1 -0
- package/esm/utils/keyboardUtils.d.ts +14 -0
- package/esm/utils/keyboardUtils.js +37 -0
- package/esm/utils/platform.d.ts +1 -0
- package/esm/utils/platform.js +2 -0
- package/esm/utils/roundToDecimalPlaces.d.ts +1 -0
- package/esm/utils/roundToDecimalPlaces.js +3 -0
- package/esm/utils/rtlFlipSide.d.ts +2 -0
- package/esm/utils/rtlFlipSide.js +22 -0
- package/esm/utils/utils.d.ts +57 -0
- package/esm/utils/utils.js +204 -0
- package/esm/utils/weakMapMemoize.d.ts +20 -0
- package/esm/utils/weakMapMemoize.js +128 -0
- package/hooks/core/gridCoreSelector.d.ts +2 -2
- package/hooks/core/gridCoreSelector.js +8 -1
- package/hooks/core/gridPropsSelectors.d.ts +9 -0
- package/hooks/core/gridPropsSelectors.js +20 -0
- package/hooks/core/index.d.ts +1 -0
- package/hooks/core/index.js +12 -1
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +128 -128
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.js +5 -1
- package/hooks/core/pipeProcessing/index.d.ts +4 -4
- package/hooks/core/pipeProcessing/index.js +49 -4
- package/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +3 -3
- package/hooks/core/pipeProcessing/useGridPipeProcessing.js +18 -9
- package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +4 -4
- package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +13 -5
- package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +4 -4
- package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +18 -8
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +69 -69
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +7 -1
- package/hooks/core/strategyProcessing/index.d.ts +3 -3
- package/hooks/core/strategyProcessing/index.js +38 -3
- package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +4 -4
- package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +13 -5
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +5 -7
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +25 -16
- package/hooks/core/useGridApiInitialization.d.ts +3 -3
- package/hooks/core/useGridApiInitialization.js +19 -11
- package/hooks/core/useGridInitialization.d.ts +3 -3
- package/hooks/core/useGridInitialization.js +26 -18
- package/hooks/core/useGridIsRtl.d.ts +3 -3
- package/hooks/core/useGridIsRtl.js +16 -7
- package/hooks/core/useGridLocaleText.d.ts +4 -4
- package/hooks/core/useGridLocaleText.js +11 -3
- package/hooks/core/useGridLoggerFactory.d.ts +4 -4
- package/hooks/core/useGridLoggerFactory.js +15 -7
- package/hooks/core/useGridProps.d.ts +8 -0
- package/hooks/core/useGridProps.js +28 -0
- package/hooks/core/useGridRefs.d.ts +2 -2
- package/hooks/core/useGridRefs.js +11 -3
- package/hooks/core/useGridStateInitialization.d.ts +2 -2
- package/hooks/core/useGridStateInitialization.js +28 -17
- package/hooks/features/clipboard/useGridClipboard.d.ts +3 -3
- package/hooks/features/clipboard/useGridClipboard.js +23 -14
- package/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +11 -11
- package/hooks/features/columnGrouping/gridColumnGroupsInterfaces.js +5 -1
- package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +4 -4
- package/hooks/features/columnGrouping/gridColumnGroupsSelector.js +12 -6
- package/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +7 -7
- package/hooks/features/columnGrouping/gridColumnGroupsUtils.js +15 -7
- package/hooks/features/columnGrouping/index.d.ts +2 -2
- package/hooks/features/columnGrouping/index.js +16 -2
- package/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +5 -5
- package/hooks/features/columnGrouping/useGridColumnGrouping.js +47 -37
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +54 -54
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +85 -74
- package/hooks/features/columnMenu/columnMenuInterfaces.d.ts +41 -41
- package/hooks/features/columnMenu/columnMenuInterfaces.js +5 -1
- package/hooks/features/columnMenu/columnMenuSelector.d.ts +2 -2
- package/hooks/features/columnMenu/columnMenuSelector.js +8 -1
- package/hooks/features/columnMenu/index.d.ts +2 -2
- package/hooks/features/columnMenu/index.js +27 -2
- package/hooks/features/columnMenu/useGridColumnMenu.d.ts +4 -4
- package/hooks/features/columnMenu/useGridColumnMenu.js +31 -23
- package/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +9 -12
- package/hooks/features/columnMenu/useGridColumnMenuSlots.js +21 -13
- package/hooks/features/columnResize/columnResizeSelector.d.ts +3 -3
- package/hooks/features/columnResize/columnResizeSelector.js +9 -3
- package/hooks/features/columnResize/columnResizeState.d.ts +2 -2
- package/hooks/features/columnResize/columnResizeState.js +5 -1
- package/hooks/features/columnResize/gridColumnResizeApi.d.ts +41 -41
- package/hooks/features/columnResize/gridColumnResizeApi.js +7 -1
- package/hooks/features/columnResize/index.d.ts +3 -3
- package/hooks/features/columnResize/index.js +38 -3
- package/hooks/features/columnResize/useGridColumnResize.d.ts +3 -3
- package/hooks/features/columnResize/useGridColumnResize.js +94 -84
- package/hooks/features/columns/gridColumnsInterfaces.d.ts +21 -22
- package/hooks/features/columns/gridColumnsInterfaces.js +8 -2
- package/hooks/features/columns/gridColumnsSelector.d.ts +14 -12
- package/hooks/features/columns/gridColumnsSelector.js +31 -30
- package/hooks/features/columns/gridColumnsUtils.d.ts +50 -32
- package/hooks/features/columns/gridColumnsUtils.js +54 -36
- package/hooks/features/columns/index.d.ts +2 -2
- package/hooks/features/columns/index.js +111 -2
- package/hooks/features/columns/useGridColumnSpanning.d.ts +3 -3
- package/hooks/features/columns/useGridColumnSpanning.js +15 -7
- package/hooks/features/columns/useGridColumns.d.ts +5 -5
- package/hooks/features/columns/useGridColumns.js +78 -63
- package/hooks/features/dataSource/cache.d.ts +29 -0
- package/hooks/features/dataSource/cache.js +47 -0
- package/hooks/features/dataSource/gridDataSourceError.d.ts +31 -0
- package/hooks/features/dataSource/gridDataSourceError.js +40 -0
- package/hooks/features/dataSource/gridDataSourceSelector.d.ts +8 -0
- package/hooks/features/dataSource/gridDataSourceSelector.js +18 -0
- package/hooks/features/dataSource/index.d.ts +2 -0
- package/hooks/features/dataSource/index.js +25 -0
- package/hooks/features/dataSource/models.d.ts +22 -0
- package/hooks/features/dataSource/useGridDataSource.d.ts +7 -0
- package/hooks/features/dataSource/useGridDataSource.js +32 -0
- package/hooks/features/dataSource/useGridDataSourceBase.d.ts +33 -0
- package/hooks/features/dataSource/useGridDataSourceBase.js +174 -0
- package/hooks/features/dataSource/utils.d.ts +23 -0
- package/hooks/features/dataSource/utils.js +78 -0
- package/hooks/features/density/densitySelector.d.ts +4 -4
- package/hooks/features/density/densitySelector.js +11 -5
- package/hooks/features/density/densityState.d.ts +2 -2
- package/hooks/features/density/densityState.js +5 -1
- package/hooks/features/density/index.d.ts +2 -2
- package/hooks/features/density/index.js +27 -2
- package/hooks/features/density/useGridDensity.d.ts +5 -5
- package/hooks/features/density/useGridDensity.js +32 -22
- package/hooks/features/dimensions/gridDimensionsApi.d.ts +97 -97
- package/hooks/features/dimensions/gridDimensionsApi.js +5 -1
- package/hooks/features/dimensions/gridDimensionsSelectors.d.ts +18 -2
- package/hooks/features/dimensions/gridDimensionsSelectors.js +31 -1
- package/hooks/features/dimensions/index.d.ts +2 -2
- package/hooks/features/dimensions/index.js +18 -2
- package/hooks/features/dimensions/useGridDimensions.d.ts +7 -7
- package/hooks/features/dimensions/useGridDimensions.js +147 -114
- package/hooks/features/editing/gridEditingSelectors.d.ts +12 -2
- package/hooks/features/editing/gridEditingSelectors.js +17 -1
- package/hooks/features/editing/index.d.ts +1 -1
- package/hooks/features/editing/index.js +16 -1
- package/hooks/features/editing/useGridCellEditing.d.ts +4 -4
- package/hooks/features/editing/useGridCellEditing.js +111 -102
- package/hooks/features/editing/useGridEditing.d.ts +5 -5
- package/hooks/features/editing/useGridEditing.js +30 -20
- package/hooks/features/editing/useGridRowEditing.d.ts +4 -4
- package/hooks/features/editing/useGridRowEditing.js +147 -131
- package/hooks/features/editing/utils.d.ts +2 -2
- package/hooks/features/editing/utils.js +9 -2
- package/hooks/features/events/useGridEvents.d.ts +4 -4
- package/hooks/features/events/useGridEvents.js +25 -19
- package/hooks/features/export/serializers/csvSerializer.d.ts +9 -8
- package/hooks/features/export/serializers/csvSerializer.js +14 -6
- package/hooks/features/export/useGridCsvExport.d.ts +3 -3
- package/hooks/features/export/useGridCsvExport.js +27 -19
- package/hooks/features/export/useGridPrintExport.d.ts +4 -4
- package/hooks/features/export/useGridPrintExport.js +58 -49
- package/hooks/features/export/utils.d.ts +18 -13
- package/hooks/features/export/utils.js +23 -13
- package/hooks/features/filter/gridFilterSelector.d.ts +8 -8
- package/hooks/features/filter/gridFilterSelector.js +30 -24
- package/hooks/features/filter/gridFilterState.d.ts +37 -32
- package/hooks/features/filter/gridFilterState.js +17 -5
- package/hooks/features/filter/gridFilterUtils.d.ts +12 -12
- package/hooks/features/filter/gridFilterUtils.js +48 -32
- package/hooks/features/filter/index.d.ts +3 -3
- package/hooks/features/filter/index.js +109 -2
- package/hooks/features/filter/useGridFilter.d.ts +5 -5
- package/hooks/features/filter/useGridFilter.js +107 -105
- package/hooks/features/focus/gridFocusState.d.ts +13 -13
- package/hooks/features/focus/gridFocusState.js +5 -1
- package/hooks/features/focus/gridFocusStateSelector.d.ts +5 -5
- package/hooks/features/focus/gridFocusStateSelector.js +17 -11
- package/hooks/features/focus/index.d.ts +2 -2
- package/hooks/features/focus/index.js +27 -2
- package/hooks/features/focus/useGridFocus.d.ts +5 -5
- package/hooks/features/focus/useGridFocus.js +73 -66
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +3 -3
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +11 -5
- package/hooks/features/headerFiltering/index.d.ts +1 -1
- package/hooks/features/headerFiltering/index.js +16 -1
- package/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +5 -5
- package/hooks/features/headerFiltering/useGridHeaderFiltering.js +25 -16
- package/hooks/features/index.d.ts +19 -18
- package/hooks/features/index.js +214 -19
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +4 -4
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +83 -67
- package/hooks/features/keyboardNavigation/utils.d.ts +24 -15
- package/hooks/features/keyboardNavigation/utils.js +16 -12
- package/hooks/features/listView/gridListViewSelectors.d.ts +2 -2
- package/hooks/features/listView/gridListViewSelectors.js +8 -1
- package/hooks/features/listView/index.d.ts +1 -1
- package/hooks/features/listView/index.js +16 -1
- package/hooks/features/listView/useGridListView.d.ts +6 -6
- package/hooks/features/listView/useGridListView.js +28 -17
- package/hooks/features/overlays/useGridOverlays.d.ts +7 -7
- package/hooks/features/overlays/useGridOverlays.js +36 -21
- package/hooks/features/pagination/gridPaginationInterfaces.d.ts +36 -37
- package/hooks/features/pagination/gridPaginationInterfaces.js +5 -1
- package/hooks/features/pagination/gridPaginationSelector.d.ts +20 -20
- package/hooks/features/pagination/gridPaginationSelector.js +26 -20
- package/hooks/features/pagination/gridPaginationUtils.d.ts +4 -4
- package/hooks/features/pagination/gridPaginationUtils.js +19 -8
- package/hooks/features/pagination/index.d.ts +2 -2
- package/hooks/features/pagination/index.js +16 -2
- package/hooks/features/pagination/useGridPagination.d.ts +5 -5
- package/hooks/features/pagination/useGridPagination.js +25 -16
- package/hooks/features/pagination/useGridPaginationMeta.d.ts +4 -4
- package/hooks/features/pagination/useGridPaginationMeta.js +30 -21
- package/hooks/features/pagination/useGridPaginationModel.d.ts +6 -6
- package/hooks/features/pagination/useGridPaginationModel.js +96 -42
- package/hooks/features/pagination/useGridRowCount.d.ts +4 -4
- package/hooks/features/pagination/useGridRowCount.js +37 -28
- package/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +3 -2
- package/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +14 -1
- package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +11 -11
- package/hooks/features/preferencesPanel/gridPreferencePanelState.js +5 -1
- package/hooks/features/preferencesPanel/gridPreferencePanelsValue.d.ts +3 -3
- package/hooks/features/preferencesPanel/gridPreferencePanelsValue.js +8 -3
- package/hooks/features/preferencesPanel/index.d.ts +3 -3
- package/hooks/features/preferencesPanel/index.js +39 -3
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +5 -5
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +42 -56
- package/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +6 -6
- package/hooks/features/rowSelection/gridRowSelectionSelector.js +35 -9
- package/hooks/features/rowSelection/index.d.ts +1 -1
- package/hooks/features/rowSelection/index.js +16 -1
- package/hooks/features/rowSelection/useGridRowSelection.d.ts +5 -5
- package/hooks/features/rowSelection/useGridRowSelection.js +268 -155
- package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +4 -4
- package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +26 -17
- package/hooks/features/rowSelection/utils.d.ts +8 -6
- package/hooks/features/rowSelection/utils.js +45 -33
- package/hooks/features/rows/gridRowSpanningSelectors.d.ts +2 -2
- package/hooks/features/rows/gridRowSpanningSelectors.js +11 -5
- package/hooks/features/rows/gridRowSpanningUtils.d.ts +2 -2
- package/hooks/features/rows/gridRowSpanningUtils.js +15 -5
- package/hooks/features/rows/gridRowsInterfaces.d.ts +83 -87
- package/hooks/features/rows/gridRowsInterfaces.js +5 -1
- package/hooks/features/rows/gridRowsMetaInterfaces.d.ts +12 -12
- package/hooks/features/rows/gridRowsMetaInterfaces.js +5 -1
- package/hooks/features/rows/gridRowsMetaSelector.d.ts +2 -2
- package/hooks/features/rows/gridRowsMetaSelector.js +8 -1
- package/hooks/features/rows/gridRowsMetaState.d.ts +17 -9
- package/hooks/features/rows/gridRowsMetaState.js +5 -1
- package/hooks/features/rows/gridRowsSelector.d.ts +26 -22
- package/hooks/features/rows/gridRowsSelector.js +23 -15
- package/hooks/features/rows/gridRowsUtils.d.ts +41 -24
- package/hooks/features/rows/gridRowsUtils.js +55 -41
- package/hooks/features/rows/index.d.ts +4 -4
- package/hooks/features/rows/index.js +124 -4
- package/hooks/features/rows/useGridParamsApi.d.ts +5 -6
- package/hooks/features/rows/useGridParamsApi.js +56 -33
- package/hooks/features/rows/useGridRowAriaAttributes.d.ts +2 -2
- package/hooks/features/rows/useGridRowAriaAttributes.js +18 -12
- package/hooks/features/rows/useGridRowSpanning.d.ts +12 -12
- package/hooks/features/rows/useGridRowSpanning.js +70 -46
- package/hooks/features/rows/useGridRows.d.ts +6 -6
- package/hooks/features/rows/useGridRows.js +121 -124
- package/hooks/features/rows/useGridRowsMeta.d.ts +5 -5
- package/hooks/features/rows/useGridRowsMeta.js +85 -50
- package/hooks/features/rows/useGridRowsPreProcessors.d.ts +3 -3
- package/hooks/features/rows/useGridRowsPreProcessors.js +22 -14
- package/hooks/features/scroll/useGridScroll.d.ts +4 -4
- package/hooks/features/scroll/useGridScroll.js +32 -25
- package/hooks/features/sorting/gridSortingSelector.d.ts +5 -5
- package/hooks/features/sorting/gridSortingSelector.js +25 -18
- package/hooks/features/sorting/gridSortingState.d.ts +7 -7
- package/hooks/features/sorting/gridSortingState.js +5 -1
- package/hooks/features/sorting/gridSortingUtils.d.ts +8 -8
- package/hooks/features/sorting/gridSortingUtils.js +30 -15
- package/hooks/features/sorting/index.d.ts +2 -2
- package/hooks/features/sorting/index.js +49 -2
- package/hooks/features/sorting/useGridSorting.d.ts +5 -5
- package/hooks/features/sorting/useGridSorting.js +68 -60
- package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +28 -28
- package/hooks/features/statePersistence/gridStatePersistenceInterface.js +5 -1
- package/hooks/features/statePersistence/index.d.ts +1 -1
- package/hooks/features/statePersistence/index.js +5 -1
- package/hooks/features/statePersistence/useGridStatePersistence.d.ts +3 -3
- package/hooks/features/statePersistence/useGridStatePersistence.js +13 -6
- package/hooks/features/virtualization/gridFocusedVirtualCellSelector.d.ts +5 -5
- package/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +18 -21
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +3 -3
- package/hooks/features/virtualization/gridVirtualizationSelectors.js +13 -7
- package/hooks/features/virtualization/index.d.ts +2 -2
- package/hooks/features/virtualization/index.js +27 -2
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +50 -38
- package/hooks/features/virtualization/useGridVirtualScroller.js +153 -152
- package/hooks/features/virtualization/useGridVirtualization.d.ts +15 -15
- package/hooks/features/virtualization/useGridVirtualization.js +23 -12
- package/hooks/index.d.ts +3 -3
- package/hooks/index.js +38 -3
- package/hooks/utils/index.d.ts +9 -8
- package/hooks/utils/index.js +109 -8
- package/hooks/utils/useFirstRender.d.ts +1 -1
- package/hooks/utils/useFirstRender.js +11 -3
- package/hooks/utils/useGridApiContext.d.ts +4 -4
- package/hooks/utils/useGridApiContext.js +11 -4
- package/hooks/utils/useGridApiEventHandler.d.ts +10 -20
- package/hooks/utils/useGridApiEventHandler.js +80 -77
- package/hooks/utils/useGridApiMethod.d.ts +5 -5
- package/hooks/utils/useGridApiMethod.js +12 -4
- package/hooks/utils/useGridApiRef.d.ts +4 -4
- package/hooks/utils/useGridApiRef.js +10 -2
- package/hooks/utils/useGridAriaAttributes.d.ts +1 -1
- package/hooks/utils/useGridAriaAttributes.js +24 -17
- package/hooks/utils/useGridComponentRenderer.d.ts +12 -0
- package/hooks/utils/useGridComponentRenderer.js +44 -0
- package/hooks/utils/useGridConfiguration.d.ts +2 -2
- package/hooks/utils/useGridConfiguration.js +13 -5
- package/hooks/utils/useGridInitializeState.d.ts +8 -10
- package/hooks/utils/useGridInitializeState.js +11 -3
- package/hooks/utils/useGridLogger.d.ts +4 -4
- package/hooks/utils/useGridLogger.js +9 -2
- package/hooks/utils/useGridNativeEventListener.d.ts +3 -3
- package/hooks/utils/useGridNativeEventListener.js +23 -26
- package/hooks/utils/useGridPrivateApiContext.d.ts +4 -3
- package/hooks/utils/useGridPrivateApiContext.js +11 -3
- package/hooks/utils/useGridRootProps.d.ts +1 -1
- package/hooks/utils/useGridRootProps.js +13 -5
- package/hooks/utils/useGridSelector.d.ts +4 -4
- package/hooks/utils/useGridSelector.js +49 -27
- package/hooks/utils/useGridVisibleRows.d.ts +17 -17
- package/hooks/utils/useGridVisibleRows.js +15 -8
- package/hooks/utils/useIsSSR.d.ts +1 -0
- package/hooks/utils/useIsSSR.js +16 -0
- package/hooks/utils/useLazyRef.d.ts +1 -1
- package/hooks/utils/useLazyRef.js +13 -1
- package/hooks/utils/useOnMount.d.ts +1 -1
- package/hooks/utils/useOnMount.js +13 -1
- package/hooks/utils/useRunOnce.d.ts +1 -1
- package/hooks/utils/useRunOnce.js +13 -5
- package/hooks/utils/useTimeout.d.ts +1 -1
- package/hooks/utils/useTimeout.js +13 -1
- package/index.d.ts +20 -18
- package/index.js +169 -31
- package/internals/constants.d.ts +5 -5
- package/internals/constants.js +10 -4
- package/internals/demo/TailwindDemoContainer.d.ts +11 -0
- package/internals/demo/TailwindDemoContainer.js +63 -0
- package/internals/demo/index.d.ts +1 -0
- package/internals/demo/index.js +12 -0
- package/internals/index.d.ts +98 -84
- package/internals/index.js +1035 -78
- package/internals/utils/attachPinnedStyle.d.ts +2 -2
- package/internals/utils/attachPinnedStyle.js +9 -3
- package/internals/utils/computeSlots.d.ts +7 -4
- package/internals/utils/computeSlots.js +10 -3
- package/internals/utils/getPinnedCellOffset.d.ts +3 -3
- package/internals/utils/getPinnedCellOffset.js +12 -5
- package/internals/utils/gridRowGroupingUtils.d.ts +1 -1
- package/internals/utils/gridRowGroupingUtils.js +11 -3
- package/internals/utils/index.d.ts +4 -4
- package/internals/utils/index.js +49 -4
- package/internals/utils/propValidation.d.ts +2 -2
- package/internals/utils/propValidation.js +13 -6
- package/locales/arSD.d.ts +2 -2
- package/locales/arSD.js +39 -3
- package/locales/beBY.d.ts +2 -2
- package/locales/beBY.js +39 -3
- package/locales/bgBG.d.ts +2 -2
- package/locales/bgBG.js +39 -3
- package/locales/bnBD.d.ts +2 -0
- package/locales/bnBD.js +200 -0
- package/locales/csCZ.d.ts +2 -2
- package/locales/csCZ.js +53 -21
- package/locales/daDK.d.ts +2 -2
- package/locales/daDK.js +39 -3
- package/locales/deDE.d.ts +2 -2
- package/locales/deDE.js +39 -5
- package/locales/elGR.d.ts +2 -2
- package/locales/elGR.js +40 -3
- package/locales/enUS.d.ts +2 -2
- package/locales/enUS.js +9 -4
- package/locales/esES.d.ts +2 -2
- package/locales/esES.js +39 -3
- package/locales/faIR.d.ts +2 -2
- package/locales/faIR.js +44 -9
- package/locales/fiFI.d.ts +2 -2
- package/locales/fiFI.js +39 -3
- package/locales/frFR.d.ts +2 -2
- package/locales/frFR.js +39 -3
- package/locales/heIL.d.ts +2 -2
- package/locales/heIL.js +39 -3
- package/locales/hrHR.d.ts +1 -1
- package/locales/hrHR.js +38 -3
- package/locales/huHU.d.ts +2 -2
- package/locales/huHU.js +46 -13
- package/locales/index.d.ts +37 -36
- package/locales/index.js +412 -37
- package/locales/isIS.d.ts +2 -2
- package/locales/isIS.js +39 -3
- package/locales/itIT.d.ts +2 -2
- package/locales/itIT.js +39 -3
- package/locales/jaJP.d.ts +2 -2
- package/locales/jaJP.js +39 -3
- package/locales/koKR.d.ts +2 -2
- package/locales/koKR.js +40 -4
- package/locales/nbNO.d.ts +2 -2
- package/locales/nbNO.js +39 -3
- package/locales/nlNL.d.ts +2 -2
- package/locales/nlNL.js +38 -3
- package/locales/nnNO.d.ts +2 -2
- package/locales/nnNO.js +39 -3
- package/locales/plPL.d.ts +2 -2
- package/locales/plPL.js +63 -31
- package/locales/ptBR.d.ts +2 -2
- package/locales/ptBR.js +39 -3
- package/locales/ptPT.d.ts +1 -1
- package/locales/ptPT.js +39 -3
- package/locales/roRO.d.ts +2 -2
- package/locales/roRO.js +39 -3
- package/locales/ruRU.d.ts +2 -2
- package/locales/ruRU.js +53 -21
- package/locales/skSK.d.ts +2 -2
- package/locales/skSK.js +54 -22
- package/locales/svSE.d.ts +2 -2
- package/locales/svSE.js +39 -3
- package/locales/trTR.d.ts +2 -2
- package/locales/trTR.js +39 -3
- package/locales/ukUA.d.ts +2 -2
- package/locales/ukUA.js +57 -25
- package/locales/urPK.d.ts +2 -2
- package/locales/urPK.js +50 -14
- package/locales/viVN.d.ts +2 -2
- package/locales/viVN.js +39 -3
- package/locales/zhCN.d.ts +2 -2
- package/locales/zhCN.js +40 -7
- package/locales/zhHK.d.ts +1 -1
- package/locales/zhHK.js +57 -26
- package/locales/zhTW.d.ts +2 -2
- package/locales/zhTW.js +56 -25
- package/material/icons/GridColumnUnsortedIcon.d.ts +3 -3
- package/material/icons/GridColumnUnsortedIcon.js +17 -9
- package/material/icons/index.d.ts +30 -30
- package/material/icons/index.js +44 -37
- package/material/index.d.ts +2 -1
- package/material/index.js +539 -88
- package/material/variables.d.ts +5 -0
- package/material/variables.js +100 -0
- package/models/api/gridApiCommon.d.ts +24 -27
- package/models/api/gridApiCommon.js +5 -1
- package/models/api/gridApiCommunity.d.ts +6 -7
- package/models/api/gridApiCommunity.js +5 -1
- package/models/api/gridCallbackDetails.d.ts +11 -11
- package/models/api/gridCallbackDetails.js +5 -1
- package/models/api/gridColumnApi.d.ts +66 -66
- package/models/api/gridColumnApi.js +5 -1
- package/models/api/gridColumnGroupingApi.d.ts +15 -15
- package/models/api/gridColumnGroupingApi.js +5 -1
- package/models/api/gridColumnMenuApi.d.ts +15 -15
- package/models/api/gridColumnMenuApi.js +5 -1
- package/models/api/gridColumnSpanning.d.ts +28 -28
- package/models/api/gridColumnSpanning.js +5 -1
- package/models/api/gridCoreApi.d.ts +86 -86
- package/models/api/gridCoreApi.js +5 -1
- package/models/api/gridCsvExportApi.d.ts +14 -14
- package/models/api/gridCsvExportApi.js +5 -1
- package/models/api/gridDensityApi.d.ts +10 -10
- package/models/api/gridDensityApi.js +5 -1
- package/models/api/gridEditingApi.d.ts +184 -186
- package/models/api/gridEditingApi.js +5 -1
- package/models/api/gridFilterApi.d.ts +62 -62
- package/models/api/gridFilterApi.js +5 -1
- package/models/api/gridFocusApi.d.ts +43 -43
- package/models/api/gridFocusApi.js +5 -1
- package/models/api/gridHeaderFilteringApi.d.ts +27 -27
- package/models/api/gridHeaderFilteringApi.js +5 -1
- package/models/api/gridInfiniteLoaderApi.d.ts +6 -4
- package/models/api/gridInfiniteLoaderApi.js +5 -1
- package/models/api/gridLocaleTextApi.d.ts +151 -146
- package/models/api/gridLocaleTextApi.js +5 -1
- package/models/api/gridLoggerApi.d.ts +7 -7
- package/models/api/gridLoggerApi.js +5 -1
- package/models/api/gridParamsApi.d.ts +105 -72
- package/models/api/gridParamsApi.js +5 -1
- package/models/api/gridPreferencesPanelApi.d.ts +13 -13
- package/models/api/gridPreferencesPanelApi.js +5 -1
- package/models/api/gridPrintExportApi.d.ts +7 -7
- package/models/api/gridPrintExportApi.js +5 -1
- package/models/api/gridRowApi.d.ts +110 -109
- package/models/api/gridRowApi.js +5 -1
- package/models/api/gridRowSelectionApi.d.ts +82 -70
- package/models/api/gridRowSelectionApi.js +5 -1
- package/models/api/gridRowsMetaApi.d.ts +54 -54
- package/models/api/gridRowsMetaApi.js +5 -1
- package/models/api/gridScrollApi.d.ts +20 -20
- package/models/api/gridScrollApi.js +5 -1
- package/models/api/gridSortApi.d.ts +42 -42
- package/models/api/gridSortApi.js +5 -1
- package/models/api/gridStateApi.d.ts +30 -34
- package/models/api/gridStateApi.js +5 -1
- package/models/api/gridVirtualizationApi.d.ts +16 -16
- package/models/api/gridVirtualizationApi.js +5 -1
- package/models/api/index.d.ts +14 -14
- package/models/api/index.js +137 -14
- package/models/colDef/gridColDef.d.ts +266 -265
- package/models/colDef/gridColDef.js +5 -1
- package/models/colDef/gridColType.d.ts +9 -9
- package/models/colDef/gridColType.js +5 -1
- package/models/colDef/gridColumnTypesRecord.d.ts +3 -3
- package/models/colDef/gridColumnTypesRecord.js +5 -1
- package/models/colDef/index.d.ts +3 -3
- package/models/colDef/index.js +26 -5
- package/models/configuration/gridConfiguration.d.ts +9 -4
- package/models/configuration/gridConfiguration.js +5 -1
- package/models/configuration/gridRowConfiguration.d.ts +3 -3
- package/models/configuration/gridRowConfiguration.js +5 -1
- package/models/controlStateItem.d.ts +11 -8
- package/models/controlStateItem.js +5 -1
- package/models/cursorCoordinates.d.ts +3 -3
- package/models/cursorCoordinates.js +5 -1
- package/models/elementSize.d.ts +9 -9
- package/models/elementSize.js +5 -1
- package/models/events/gridEventListener.d.ts +6 -6
- package/models/events/gridEventListener.js +5 -1
- package/models/events/gridEventLookup.d.ts +635 -629
- package/models/events/gridEventLookup.js +5 -1
- package/models/events/gridEventPublisher.d.ts +14 -14
- package/models/events/gridEventPublisher.js +5 -1
- package/models/events/index.d.ts +3 -3
- package/models/events/index.js +38 -3
- package/models/gridApiCaches.d.ts +5 -5
- package/models/gridApiCaches.js +5 -1
- package/models/gridBaseSlots.d.ts +255 -50
- package/models/gridBaseSlots.js +5 -1
- package/models/gridCell.d.ts +7 -7
- package/models/gridCell.js +5 -1
- package/models/gridCellClass.d.ts +3 -3
- package/models/gridCellClass.js +5 -1
- package/models/gridColumnGrouping.d.ts +26 -26
- package/models/gridColumnGrouping.js +7 -1
- package/models/gridColumnHeaderClass.d.ts +2 -2
- package/models/gridColumnHeaderClass.js +5 -1
- package/models/gridColumnSpanning.d.ts +9 -9
- package/models/gridColumnSpanning.js +5 -1
- package/models/gridDataSource.d.ts +63 -81
- package/models/gridDataSource.js +5 -1
- package/models/gridDensity.d.ts +1 -1
- package/models/gridDensity.js +5 -1
- package/models/gridEditRowModel.d.ts +14 -14
- package/models/gridEditRowModel.js +10 -5
- package/models/gridExport.d.ts +122 -124
- package/models/gridExport.js +5 -1
- package/models/gridFeatureMode.d.ts +1 -1
- package/models/gridFeatureMode.js +5 -1
- package/models/gridFilterInputComponent.d.ts +32 -0
- package/models/gridFilterItem.d.ts +21 -21
- package/models/gridFilterItem.js +8 -3
- package/models/gridFilterModel.d.ts +28 -28
- package/models/gridFilterModel.js +5 -1
- package/models/gridFilterOperator.d.ts +47 -45
- package/models/gridFilterOperator.js +5 -1
- package/models/gridHeaderFilteringModel.d.ts +5 -5
- package/models/gridHeaderFilteringModel.js +5 -1
- package/models/gridIconSlotsComponent.d.ts +186 -181
- package/models/gridIconSlotsComponent.js +5 -1
- package/models/gridPaginationProps.d.ts +13 -13
- package/models/gridPaginationProps.js +5 -1
- package/models/gridRenderContextProps.d.ts +37 -37
- package/models/gridRenderContextProps.js +5 -1
- package/models/gridRowSelectionManager.d.ts +9 -0
- package/models/gridRowSelectionManager.js +43 -0
- package/models/gridRowSelectionModel.d.ts +7 -5
- package/models/gridRowSelectionModel.js +5 -1
- package/models/gridRows.d.ts +123 -123
- package/models/gridRows.js +5 -1
- package/models/gridSlotsComponent.d.ts +205 -201
- package/models/gridSlotsComponent.js +5 -1
- package/models/gridSlotsComponentsProps.d.ts +103 -156
- package/models/gridSlotsComponentsProps.js +5 -1
- package/models/gridSortModel.d.ts +15 -15
- package/models/gridSortModel.js +5 -1
- package/models/gridStateCommunity.d.ts +42 -34
- package/models/gridStateCommunity.js +5 -1
- package/models/index.d.ts +30 -27
- package/models/index.js +302 -30
- package/models/logger.d.ts +5 -5
- package/models/logger.js +5 -1
- package/models/muiEvent.d.ts +2 -2
- package/models/muiEvent.js +5 -1
- package/models/params/gridCellParams.d.ts +90 -90
- package/models/params/gridCellParams.js +5 -1
- package/models/params/gridColumnGroupHeaderParams.d.ts +26 -26
- package/models/params/gridColumnGroupHeaderParams.js +5 -1
- package/models/params/gridColumnHeaderParams.d.ts +10 -10
- package/models/params/gridColumnHeaderParams.js +5 -1
- package/models/params/gridColumnOrderChangeParams.d.ts +13 -13
- package/models/params/gridColumnOrderChangeParams.js +5 -1
- package/models/params/gridColumnResizeParams.d.ts +13 -13
- package/models/params/gridColumnResizeParams.js +5 -1
- package/models/params/gridEditCellParams.d.ts +46 -46
- package/models/params/gridEditCellParams.js +9 -4
- package/models/params/gridHeaderSelectionCheckboxParams.d.ts +2 -2
- package/models/params/gridHeaderSelectionCheckboxParams.js +5 -1
- package/models/params/gridMenuParams.d.ts +5 -5
- package/models/params/gridMenuParams.js +5 -1
- package/models/params/gridPreferencePanelParams.d.ts +2 -3
- package/models/params/gridPreferencePanelParams.js +5 -1
- package/models/params/gridRowParams.d.ts +65 -67
- package/models/params/gridRowParams.js +9 -4
- package/models/params/gridRowSelectionCheckboxParams.d.ts +4 -4
- package/models/params/gridRowSelectionCheckboxParams.js +5 -1
- package/models/params/gridScrollParams.d.ts +8 -8
- package/models/params/gridScrollParams.js +5 -1
- package/models/params/gridValueOptionsParams.d.ts +14 -14
- package/models/params/gridValueOptionsParams.js +5 -1
- package/models/params/index.d.ts +13 -13
- package/models/params/index.js +148 -13
- package/models/props/DataGridProps.d.ts +805 -785
- package/models/props/DataGridProps.js +5 -1
- package/modern/DataGrid/DataGrid.d.ts +16 -0
- package/modern/DataGrid/DataGrid.js +37 -11
- package/modern/DataGrid/index.d.ts +1 -0
- package/modern/DataGrid/useDataGridComponent.d.ts +4 -0
- package/modern/DataGrid/useDataGridComponent.js +7 -3
- package/modern/DataGrid/useDataGridProps.d.ts +3 -0
- package/modern/DataGrid/useDataGridProps.js +6 -1
- package/modern/colDef/gridActionsColDef.d.ts +3 -0
- package/modern/colDef/gridActionsColDef.js +1 -1
- package/modern/colDef/gridBooleanColDef.d.ts +2 -0
- package/modern/colDef/gridBooleanColDef.js +1 -1
- package/modern/colDef/gridBooleanOperators.d.ts +2 -0
- package/modern/colDef/gridCheckboxSelectionColDef.d.ts +3 -0
- package/modern/colDef/gridCheckboxSelectionColDef.js +4 -5
- package/modern/colDef/gridDateColDef.d.ts +5 -0
- package/modern/colDef/gridDateColDef.js +3 -2
- package/modern/colDef/gridDateOperators.d.ts +3 -0
- package/modern/colDef/gridDefaultColumnTypes.d.ts +3 -0
- package/modern/colDef/gridNumericColDef.d.ts +2 -0
- package/modern/colDef/gridNumericOperators.d.ts +7 -0
- package/modern/colDef/gridSingleSelectColDef.d.ts +2 -0
- package/modern/colDef/gridSingleSelectColDef.js +2 -2
- package/modern/colDef/gridSingleSelectOperators.d.ts +2 -0
- package/modern/colDef/gridStringColDef.d.ts +5 -0
- package/modern/colDef/gridStringOperators.d.ts +4 -0
- package/modern/colDef/index.d.ts +13 -0
- package/modern/components/GridApiContext.d.ts +2 -0
- package/modern/components/GridApiContext.js +2 -0
- package/modern/components/GridColumnHeaders.d.ts +7 -0
- package/modern/components/GridConfigurationContext.d.ts +2 -0
- package/modern/components/GridConfigurationContext.js +2 -0
- package/modern/components/GridDetailPanels.d.ts +5 -0
- package/modern/components/GridFooter.d.ts +6 -0
- package/modern/components/GridFooter.js +3 -3
- package/modern/components/GridHeader.d.ts +2 -0
- package/modern/components/GridHeader.js +1 -1
- package/modern/components/GridHeaders.d.ts +4 -0
- package/modern/components/GridLoadingOverlay.d.ts +17 -0
- package/modern/components/GridNoColumnsOverlay.d.ts +6 -0
- package/modern/components/GridNoColumnsOverlay.js +36 -0
- package/modern/components/GridNoResultsOverlay.d.ts +5 -0
- package/modern/components/GridNoRowsOverlay.d.ts +6 -0
- package/modern/components/GridPagination.d.ts +6 -0
- package/modern/components/GridPagination.js +15 -83
- package/modern/components/GridPinnedRows.d.ts +6 -0
- package/modern/components/GridRow.d.ts +39 -0
- package/modern/components/GridRow.js +31 -19
- package/modern/components/GridRowCount.d.ts +13 -0
- package/modern/components/GridRowCount.js +4 -5
- package/modern/components/GridScrollArea.d.ts +10 -0
- package/modern/components/GridScrollArea.js +35 -25
- package/modern/components/GridScrollbarFillerCell.d.ts +13 -0
- package/modern/components/GridSelectedRowCount.d.ts +12 -0
- package/modern/components/GridSelectedRowCount.js +5 -6
- package/modern/components/GridShadowScrollArea.d.ts +8 -0
- package/modern/components/GridShadowScrollArea.js +74 -0
- package/modern/components/GridSkeletonLoadingOverlay.d.ts +14 -0
- package/modern/components/GridSkeletonLoadingOverlay.js +25 -8
- package/modern/components/base/GridBody.d.ts +2 -0
- package/modern/components/base/GridFooterPlaceholder.d.ts +2 -0
- package/modern/components/base/GridOverlays.d.ts +13 -0
- package/modern/components/base/GridOverlays.js +1 -1
- package/modern/components/base/index.d.ts +2 -0
- package/modern/components/cell/GridActionsCell.d.ts +13 -0
- package/modern/components/cell/GridActionsCell.js +3 -2
- package/modern/components/cell/GridActionsCellItem.d.ts +41 -0
- package/modern/components/cell/GridBooleanCell.d.ts +14 -0
- package/modern/components/cell/GridCell.d.ts +77 -0
- package/modern/components/cell/GridCell.js +31 -54
- package/modern/components/cell/GridEditBooleanCell.d.ts +17 -0
- package/modern/components/cell/GridEditDateCell.d.ts +21 -0
- package/modern/components/cell/GridEditDateCell.js +14 -9
- package/modern/components/cell/GridEditInputCell.d.ts +19 -0
- package/modern/components/cell/GridEditInputCell.js +14 -12
- package/modern/components/cell/GridEditSingleSelectCell.d.ts +22 -0
- package/modern/components/cell/GridEditSingleSelectCell.js +11 -14
- package/modern/components/cell/GridSkeletonCell.d.ts +20 -0
- package/modern/components/cell/index.d.ts +10 -0
- package/modern/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +10 -0
- package/modern/components/columnHeaders/ColumnHeaderMenuIcon.js +2 -1
- package/modern/components/columnHeaders/GridBaseColumnHeaders.d.ts +7 -0
- package/modern/components/columnHeaders/GridColumnGroupHeader.d.ts +21 -0
- package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +12 -0
- package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.js +21 -7
- package/modern/components/columnHeaders/GridColumnHeaderItem.d.ts +34 -0
- package/modern/components/columnHeaders/GridColumnHeaderSeparator.d.ts +17 -0
- package/modern/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +15 -0
- package/modern/components/columnHeaders/GridColumnHeaderTitle.d.ts +11 -0
- package/modern/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +32 -0
- package/modern/components/columnHeaders/GridGenericColumnHeaderItem.js +0 -1
- package/modern/components/columnHeaders/GridIconButtonContainer.d.ts +3 -0
- package/modern/components/columnHeaders/index.d.ts +5 -0
- package/modern/components/columnSelection/GridCellCheckboxRenderer.d.ts +5 -0
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +8 -22
- package/modern/components/columnSelection/GridHeaderCheckbox.d.ts +4 -0
- package/modern/components/columnSelection/GridHeaderCheckbox.js +56 -20
- package/modern/components/columnSelection/index.d.ts +2 -0
- package/modern/components/columnsManagement/GridColumnsManagement.d.ts +45 -0
- package/modern/components/columnsManagement/GridColumnsManagement.js +113 -103
- package/modern/components/columnsManagement/index.d.ts +1 -0
- package/modern/components/columnsManagement/utils.d.ts +4 -0
- package/modern/components/columnsPanel/ColumnsPanelTrigger.d.ts +33 -0
- package/modern/components/columnsPanel/ColumnsPanelTrigger.js +226 -0
- package/modern/components/columnsPanel/index.d.ts +1 -0
- package/modern/components/columnsPanel/index.js +1 -0
- package/modern/components/containers/GridFooterContainer.d.ts +9 -0
- package/modern/components/containers/GridOverlay.d.ts +9 -0
- package/modern/components/containers/GridOverlay.js +5 -3
- package/modern/components/containers/GridRoot.d.ts +11 -0
- package/modern/components/containers/GridRoot.js +15 -11
- package/modern/components/containers/GridRootStyles.d.ts +5 -0
- package/modern/components/containers/GridRootStyles.js +225 -146
- package/modern/components/containers/GridToolbarContainer.d.ts +9 -0
- package/modern/components/containers/GridToolbarContainer.js +5 -6
- package/modern/components/containers/index.d.ts +4 -0
- package/modern/components/export/ExportCsv.d.ts +30 -0
- package/modern/components/export/ExportCsv.js +207 -0
- package/modern/components/export/ExportPrint.d.ts +30 -0
- package/modern/components/export/ExportPrint.js +207 -0
- package/modern/components/export/index.d.ts +2 -0
- package/modern/components/export/index.js +2 -0
- package/modern/components/filterPanel/FilterPanelTrigger.d.ts +37 -0
- package/modern/components/filterPanel/FilterPanelTrigger.js +229 -0
- package/modern/components/filterPanel/index.d.ts +1 -0
- package/modern/components/filterPanel/index.js +1 -0
- package/modern/components/index.d.ts +25 -0
- package/modern/components/index.js +7 -1
- package/modern/components/menu/GridMenu.d.ts +15 -0
- package/modern/components/menu/GridMenu.js +17 -46
- package/modern/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +26 -0
- package/modern/components/menu/columnMenu/GridColumnHeaderMenu.js +3 -2
- package/modern/components/menu/columnMenu/GridColumnMenu.d.ts +24 -0
- package/modern/components/menu/columnMenu/GridColumnMenuContainer.d.ts +4 -0
- package/modern/components/menu/columnMenu/GridColumnMenuContainer.js +5 -2
- package/modern/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +7 -0
- package/modern/components/menu/columnMenu/GridColumnMenuProps.d.ts +12 -0
- package/modern/components/menu/columnMenu/index.d.ts +6 -0
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +7 -0
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +7 -0
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +7 -0
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +7 -0
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +7 -0
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +3 -1
- package/modern/components/menu/columnMenu/menuItems/index.d.ts +5 -0
- package/modern/components/menu/index.d.ts +2 -0
- package/modern/components/panel/GridColumnsPanel.d.ts +5 -0
- package/modern/components/panel/GridColumnsPanel.js +0 -8
- package/modern/components/panel/GridPanel.d.ts +20 -0
- package/modern/components/panel/GridPanel.js +48 -66
- package/modern/components/panel/GridPanelContent.d.ts +9 -0
- package/modern/components/panel/GridPanelContent.js +6 -8
- package/modern/components/panel/GridPanelFooter.d.ts +9 -0
- package/modern/components/panel/GridPanelFooter.js +5 -6
- package/modern/components/panel/GridPanelHeader.d.ts +9 -0
- package/modern/components/panel/GridPanelHeader.js +4 -5
- package/modern/components/panel/GridPanelWrapper.d.ts +6 -0
- package/modern/components/panel/GridPanelWrapper.js +9 -27
- package/modern/components/panel/GridPreferencePanelContext.d.ts +12 -0
- package/modern/components/panel/GridPreferencePanelContext.js +24 -0
- package/modern/components/panel/GridPreferencesPanel.d.ts +2 -0
- package/modern/components/panel/GridPreferencesPanel.js +9 -4
- package/modern/components/panel/filterPanel/GridFilterForm.d.ts +107 -0
- package/modern/components/panel/filterPanel/GridFilterForm.js +73 -92
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.d.ts +10 -0
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +47 -41
- package/modern/components/panel/filterPanel/GridFilterInputDate.d.ts +11 -0
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +32 -16
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +12 -0
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +39 -43
- package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +11 -0
- package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.js +53 -56
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +11 -0
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +45 -40
- package/modern/components/panel/filterPanel/GridFilterInputValue.d.ts +15 -0
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +31 -19
- package/modern/components/panel/filterPanel/GridFilterPanel.d.ts +49 -0
- package/modern/components/panel/filterPanel/filterPanelUtils.d.ts +5 -0
- package/modern/components/panel/filterPanel/index.d.ts +10 -0
- package/modern/components/panel/filterPanel/index.js +1 -2
- package/modern/components/panel/index.d.ts +7 -0
- package/modern/components/quickFilter/QuickFilter.d.ts +41 -0
- package/modern/components/quickFilter/QuickFilter.js +105 -0
- package/modern/components/quickFilter/QuickFilterClear.d.ts +28 -0
- package/modern/components/quickFilter/QuickFilterClear.js +167 -0
- package/modern/components/quickFilter/QuickFilterContext.d.ts +13 -0
- package/modern/components/quickFilter/QuickFilterContext.js +9 -0
- package/modern/components/quickFilter/QuickFilterControl.d.ts +28 -0
- package/modern/components/quickFilter/QuickFilterControl.js +97 -0
- package/modern/components/quickFilter/index.d.ts +3 -0
- package/modern/components/quickFilter/index.js +3 -0
- package/modern/components/reexportable.d.ts +1 -0
- package/modern/components/toolbar/GridToolbar.d.ts +17 -0
- package/modern/components/toolbar/GridToolbar.js +9 -3
- package/modern/components/toolbar/GridToolbarColumnsButton.d.ts +15 -0
- package/modern/components/toolbar/GridToolbarColumnsButton.js +15 -3
- package/modern/components/toolbar/GridToolbarDensitySelector.d.ts +15 -0
- package/modern/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/modern/components/toolbar/GridToolbarExport.d.ts +40 -0
- package/modern/components/toolbar/GridToolbarExportContainer.d.ts +17 -0
- package/modern/components/toolbar/GridToolbarExportContainer.js +2 -2
- package/modern/components/toolbar/GridToolbarFilterButton.d.ts +17 -0
- package/modern/components/toolbar/GridToolbarFilterButton.js +20 -9
- package/modern/components/toolbar/GridToolbarQuickFilter.d.ts +43 -0
- package/modern/components/toolbar/GridToolbarQuickFilter.js +64 -99
- package/modern/components/toolbar/index.d.ts +8 -0
- package/modern/components/toolbarV8/GridToolbar.d.ts +11 -0
- package/modern/components/toolbarV8/GridToolbar.js +135 -0
- package/modern/components/toolbarV8/Toolbar.d.ts +32 -0
- package/modern/components/toolbarV8/Toolbar.js +125 -0
- package/modern/components/toolbarV8/ToolbarButton.d.ts +23 -0
- package/modern/components/toolbarV8/ToolbarButton.js +185 -0
- package/modern/components/toolbarV8/ToolbarContext.d.ts +9 -0
- package/modern/components/toolbarV8/ToolbarContext.js +9 -0
- package/modern/components/toolbarV8/index.d.ts +2 -0
- package/modern/components/toolbarV8/index.js +2 -0
- package/modern/components/virtualization/GridBottomContainer.d.ts +3 -0
- package/modern/components/virtualization/GridBottomContainer.js +1 -1
- package/modern/components/virtualization/GridMainContainer.d.ts +20 -0
- package/modern/components/virtualization/GridMainContainer.js +13 -2
- package/modern/components/virtualization/GridTopContainer.d.ts +2 -0
- package/modern/components/virtualization/GridTopContainer.js +1 -1
- package/modern/components/virtualization/GridVirtualScrollbar.d.ts +11 -0
- package/modern/components/virtualization/GridVirtualScrollbar.js +17 -9
- package/modern/components/virtualization/GridVirtualScroller.d.ts +6 -0
- package/modern/components/virtualization/GridVirtualScroller.js +38 -18
- package/modern/components/virtualization/GridVirtualScrollerContent.d.ts +8 -0
- package/modern/components/virtualization/GridVirtualScrollerContent.js +11 -2
- package/modern/components/virtualization/GridVirtualScrollerFiller.d.ts +10 -0
- package/modern/components/virtualization/GridVirtualScrollerFiller.js +2 -1
- package/modern/components/virtualization/GridVirtualScrollerRenderZone.d.ts +8 -0
- package/modern/components/virtualization/GridVirtualScrollerRenderZone.js +1 -1
- package/modern/constants/cssVariables.d.ts +264 -0
- package/modern/constants/cssVariables.js +151 -0
- package/modern/constants/dataGridPropsDefaultValues.d.ts +5 -0
- package/modern/constants/dataGridPropsDefaultValues.js +1 -0
- package/modern/constants/defaultGridSlotsComponents.d.ts +2 -0
- package/modern/constants/defaultGridSlotsComponents.js +6 -2
- package/modern/constants/envConstants.d.ts +1 -0
- package/modern/constants/gridClasses.d.ts +697 -0
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/index.d.ts +4 -0
- package/modern/constants/index.js +2 -1
- package/modern/constants/localeTextConstants.d.ts +2 -0
- package/modern/constants/localeTextConstants.js +30 -2
- package/modern/constants/signature.d.ts +9 -0
- package/modern/constants/signature.js +10 -0
- package/modern/context/GridContextProvider.d.ts +17 -0
- package/modern/context/GridContextProvider.js +7 -1
- package/modern/context/GridRootPropsContext.d.ts +3 -0
- package/modern/context/GridRootPropsContext.js +2 -0
- package/modern/context/index.d.ts +1 -0
- package/modern/hooks/core/gridCoreSelector.d.ts +6 -0
- package/modern/hooks/core/gridCoreSelector.js +2 -1
- package/modern/hooks/core/gridPropsSelectors.d.ts +9 -0
- package/modern/hooks/core/gridPropsSelectors.js +15 -0
- package/modern/hooks/core/index.d.ts +2 -0
- package/modern/hooks/core/index.js +1 -1
- package/modern/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +142 -0
- package/modern/hooks/core/pipeProcessing/index.d.ts +4 -0
- package/modern/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +32 -0
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +4 -0
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +4 -0
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +6 -4
- package/modern/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +79 -0
- package/modern/hooks/core/strategyProcessing/index.d.ts +3 -0
- package/modern/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +4 -0
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +43 -0
- package/modern/hooks/core/useGridApiInitialization.d.ts +5 -0
- package/modern/hooks/core/useGridApiInitialization.js +1 -1
- package/modern/hooks/core/useGridInitialization.d.ts +7 -0
- package/modern/hooks/core/useGridInitialization.js +2 -0
- package/modern/hooks/core/useGridIsRtl.d.ts +3 -0
- package/modern/hooks/core/useGridLocaleText.d.ts +4 -0
- package/modern/hooks/core/useGridLoggerFactory.d.ts +4 -0
- package/modern/hooks/core/useGridProps.d.ts +8 -0
- package/modern/hooks/core/useGridProps.js +18 -0
- package/modern/hooks/core/useGridRefs.d.ts +3 -0
- package/modern/hooks/core/useGridStateInitialization.d.ts +3 -0
- package/modern/hooks/core/useGridStateInitialization.js +9 -7
- package/modern/hooks/features/clipboard/useGridClipboard.d.ts +8 -0
- package/modern/hooks/features/clipboard/useGridClipboard.js +4 -3
- package/modern/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +16 -0
- package/modern/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +12 -0
- package/modern/hooks/features/columnGrouping/gridColumnGroupsSelector.js +2 -2
- package/modern/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +18 -0
- package/modern/hooks/features/columnGrouping/index.d.ts +2 -0
- package/modern/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +10 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +65 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +18 -16
- package/modern/hooks/features/columnMenu/columnMenuInterfaces.d.ts +47 -0
- package/modern/hooks/features/columnMenu/columnMenuSelector.d.ts +2 -0
- package/modern/hooks/features/columnMenu/columnMenuSelector.js +2 -1
- package/modern/hooks/features/columnMenu/index.d.ts +2 -0
- package/modern/hooks/features/columnMenu/useGridColumnMenu.d.ts +9 -0
- package/modern/hooks/features/columnMenu/useGridColumnMenu.js +3 -5
- package/modern/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +13 -0
- package/modern/hooks/features/columnResize/columnResizeSelector.d.ts +3 -0
- package/modern/hooks/features/columnResize/columnResizeSelector.js +2 -2
- package/modern/hooks/features/columnResize/columnResizeState.d.ts +3 -0
- package/modern/hooks/features/columnResize/gridColumnResizeApi.d.ts +50 -0
- package/modern/hooks/features/columnResize/index.d.ts +3 -0
- package/modern/hooks/features/columnResize/useGridColumnResize.d.ts +10 -0
- package/modern/hooks/features/columnResize/useGridColumnResize.js +6 -6
- package/modern/hooks/features/columns/gridColumnsInterfaces.d.ts +42 -0
- package/modern/hooks/features/columns/gridColumnsSelector.d.ts +79 -0
- package/modern/hooks/features/columns/gridColumnsSelector.js +11 -15
- package/modern/hooks/features/columns/gridColumnsUtils.d.ts +74 -0
- package/modern/hooks/features/columns/gridColumnsUtils.js +8 -5
- package/modern/hooks/features/columns/index.d.ts +2 -0
- package/modern/hooks/features/columns/index.js +1 -1
- package/modern/hooks/features/columns/useGridColumnSpanning.d.ts +7 -0
- package/modern/hooks/features/columns/useGridColumns.d.ts +11 -0
- package/modern/hooks/features/columns/useGridColumns.js +16 -11
- package/modern/hooks/features/dataSource/cache.d.ts +29 -0
- package/modern/hooks/features/dataSource/cache.js +39 -0
- package/modern/hooks/features/dataSource/gridDataSourceError.d.ts +31 -0
- package/modern/hooks/features/dataSource/gridDataSourceError.js +32 -0
- package/modern/hooks/features/dataSource/gridDataSourceSelector.d.ts +8 -0
- package/modern/hooks/features/dataSource/gridDataSourceSelector.js +12 -0
- package/modern/hooks/features/dataSource/index.d.ts +2 -0
- package/modern/hooks/features/dataSource/index.js +2 -0
- package/modern/hooks/features/dataSource/models.d.ts +22 -0
- package/modern/hooks/features/dataSource/models.js +1 -0
- package/modern/hooks/features/dataSource/useGridDataSource.d.ts +7 -0
- package/modern/hooks/features/dataSource/useGridDataSource.js +24 -0
- package/modern/hooks/features/dataSource/useGridDataSourceBase.d.ts +33 -0
- package/modern/hooks/features/dataSource/useGridDataSourceBase.js +165 -0
- package/modern/hooks/features/dataSource/utils.d.ts +23 -0
- package/modern/hooks/features/dataSource/utils.js +71 -0
- package/modern/hooks/features/density/densitySelector.d.ts +6 -0
- package/modern/hooks/features/density/densitySelector.js +2 -2
- package/modern/hooks/features/density/densityState.d.ts +2 -0
- package/modern/hooks/features/density/index.d.ts +2 -0
- package/modern/hooks/features/density/useGridDensity.d.ts +6 -0
- package/modern/hooks/features/density/useGridDensity.js +3 -3
- package/modern/hooks/features/dimensions/gridDimensionsApi.d.ts +103 -0
- package/modern/hooks/features/dimensions/gridDimensionsSelectors.d.ts +18 -0
- package/modern/hooks/features/dimensions/gridDimensionsSelectors.js +25 -1
- package/modern/hooks/features/dimensions/index.d.ts +3 -0
- package/modern/hooks/features/dimensions/index.js +1 -2
- package/modern/hooks/features/dimensions/useGridDimensions.d.ts +10 -0
- package/modern/hooks/features/dimensions/useGridDimensions.js +112 -89
- package/modern/hooks/features/editing/gridEditingSelectors.d.ts +15 -0
- package/modern/hooks/features/editing/gridEditingSelectors.js +12 -1
- package/modern/hooks/features/editing/index.d.ts +1 -0
- package/modern/hooks/features/editing/useGridCellEditing.d.ts +4 -0
- package/modern/hooks/features/editing/useGridCellEditing.js +10 -10
- package/modern/hooks/features/editing/useGridEditing.d.ts +6 -0
- package/modern/hooks/features/editing/useGridEditing.js +1 -1
- package/modern/hooks/features/editing/useGridRowEditing.d.ts +4 -0
- package/modern/hooks/features/editing/useGridRowEditing.js +35 -28
- package/modern/hooks/features/editing/utils.d.ts +2 -0
- package/modern/hooks/features/events/useGridEvents.d.ts +8 -0
- package/modern/hooks/features/export/serializers/csvSerializer.d.ts +19 -0
- package/modern/hooks/features/export/useGridCsvExport.d.ts +11 -0
- package/modern/hooks/features/export/useGridPrintExport.d.ts +10 -0
- package/modern/hooks/features/export/useGridPrintExport.js +5 -5
- package/modern/hooks/features/export/utils.d.ts +20 -0
- package/modern/hooks/features/export/utils.js +4 -2
- package/modern/hooks/features/filter/gridFilterSelector.d.ts +103 -0
- package/modern/hooks/features/filter/gridFilterSelector.js +7 -6
- package/modern/hooks/features/filter/gridFilterState.d.ts +61 -0
- package/modern/hooks/features/filter/gridFilterState.js +5 -0
- package/modern/hooks/features/filter/gridFilterUtils.d.ts +23 -0
- package/modern/hooks/features/filter/gridFilterUtils.js +5 -3
- package/modern/hooks/features/filter/index.d.ts +4 -0
- package/modern/hooks/features/filter/useGridFilter.d.ts +11 -0
- package/modern/hooks/features/filter/useGridFilter.js +16 -24
- package/modern/hooks/features/focus/gridFocusState.d.ts +20 -0
- package/modern/hooks/features/focus/gridFocusStateSelector.d.ts +12 -0
- package/modern/hooks/features/focus/gridFocusStateSelector.js +3 -3
- package/modern/hooks/features/focus/index.d.ts +2 -0
- package/modern/hooks/features/focus/useGridFocus.d.ts +11 -0
- package/modern/hooks/features/focus/useGridFocus.js +6 -9
- package/modern/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +5 -0
- package/modern/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +2 -2
- package/modern/hooks/features/headerFiltering/index.d.ts +1 -0
- package/modern/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +6 -0
- package/modern/hooks/features/headerFiltering/useGridHeaderFiltering.js +0 -1
- package/modern/hooks/features/index.d.ts +19 -0
- package/modern/hooks/features/index.js +2 -1
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +13 -0
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +26 -18
- package/modern/hooks/features/keyboardNavigation/utils.d.ts +26 -0
- package/modern/hooks/features/keyboardNavigation/utils.js +0 -5
- package/modern/hooks/features/listView/gridListViewSelectors.d.ts +7 -0
- package/modern/hooks/features/listView/gridListViewSelectors.js +2 -1
- package/modern/hooks/features/listView/index.d.ts +1 -0
- package/modern/hooks/features/listView/useGridListView.d.ts +10 -0
- package/modern/hooks/features/listView/useGridListView.js +3 -2
- package/modern/hooks/features/overlays/useGridOverlays.d.ts +14 -0
- package/modern/hooks/features/overlays/useGridOverlays.js +9 -2
- package/modern/hooks/features/pagination/gridPaginationInterfaces.d.ts +58 -0
- package/modern/hooks/features/pagination/gridPaginationSelector.d.ts +79 -0
- package/modern/hooks/features/pagination/gridPaginationSelector.js +6 -6
- package/modern/hooks/features/pagination/gridPaginationUtils.d.ts +9 -0
- package/modern/hooks/features/pagination/gridPaginationUtils.js +1 -1
- package/modern/hooks/features/pagination/index.d.ts +2 -0
- package/modern/hooks/features/pagination/useGridPagination.d.ts +10 -0
- package/modern/hooks/features/pagination/useGridPagination.js +1 -1
- package/modern/hooks/features/pagination/useGridPaginationMeta.d.ts +4 -0
- package/modern/hooks/features/pagination/useGridPaginationModel.d.ts +11 -0
- package/modern/hooks/features/pagination/useGridPaginationModel.js +45 -1
- package/modern/hooks/features/pagination/useGridRowCount.d.ts +4 -0
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +3 -0
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +8 -1
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +13 -0
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelsValue.d.ts +5 -0
- package/modern/hooks/features/preferencesPanel/index.d.ts +3 -0
- package/modern/hooks/features/preferencesPanel/index.js +1 -1
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +9 -0
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +15 -39
- package/modern/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +6 -0
- package/modern/hooks/features/rowSelection/gridRowSelectionSelector.js +29 -9
- package/modern/hooks/features/rowSelection/index.d.ts +1 -0
- package/modern/hooks/features/rowSelection/useGridRowSelection.d.ts +12 -0
- package/modern/hooks/features/rowSelection/useGridRowSelection.js +207 -104
- package/modern/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +4 -0
- package/modern/hooks/features/rowSelection/utils.d.ts +14 -0
- package/modern/hooks/features/rowSelection/utils.js +18 -16
- package/modern/hooks/features/rows/gridRowSpanningSelectors.d.ts +4 -0
- package/modern/hooks/features/rows/gridRowSpanningSelectors.js +2 -2
- package/modern/hooks/features/rows/gridRowSpanningUtils.d.ts +10 -0
- package/modern/hooks/features/rows/gridRowsInterfaces.d.ts +108 -0
- package/modern/hooks/features/rows/gridRowsMetaInterfaces.d.ts +16 -0
- package/modern/hooks/features/rows/gridRowsMetaSelector.d.ts +2 -0
- package/modern/hooks/features/rows/gridRowsMetaSelector.js +2 -1
- package/modern/hooks/features/rows/gridRowsMetaState.d.ts +21 -0
- package/modern/hooks/features/rows/gridRowsSelector.d.ts +49 -0
- package/modern/hooks/features/rows/gridRowsSelector.js +4 -2
- package/modern/hooks/features/rows/gridRowsUtils.d.ts +61 -0
- package/modern/hooks/features/rows/gridRowsUtils.js +10 -17
- package/modern/hooks/features/rows/index.d.ts +5 -0
- package/modern/hooks/features/rows/index.js +1 -1
- package/modern/hooks/features/rows/useGridParamsApi.d.ts +13 -0
- package/modern/hooks/features/rows/useGridParamsApi.js +36 -22
- package/modern/hooks/features/rows/useGridRowAriaAttributes.d.ts +2 -0
- package/modern/hooks/features/rows/useGridRowAriaAttributes.js +2 -4
- package/modern/hooks/features/rows/useGridRowSpanning.d.ts +27 -0
- package/modern/hooks/features/rows/useGridRowSpanning.js +22 -8
- package/modern/hooks/features/rows/useGridRows.d.ts +6 -0
- package/modern/hooks/features/rows/useGridRows.js +29 -42
- package/modern/hooks/features/rows/useGridRowsMeta.d.ts +10 -0
- package/modern/hooks/features/rows/useGridRowsMeta.js +45 -20
- package/modern/hooks/features/rows/useGridRowsPreProcessors.d.ts +3 -0
- package/modern/hooks/features/scroll/useGridScroll.d.ts +12 -0
- package/modern/hooks/features/scroll/useGridScroll.js +3 -3
- package/modern/hooks/features/sorting/gridSortingSelector.d.ts +32 -0
- package/modern/hooks/features/sorting/gridSortingSelector.js +12 -11
- package/modern/hooks/features/sorting/gridSortingState.d.ts +14 -0
- package/modern/hooks/features/sorting/gridSortingUtils.d.ts +18 -0
- package/modern/hooks/features/sorting/gridSortingUtils.js +4 -3
- package/modern/hooks/features/sorting/index.d.ts +4 -0
- package/modern/hooks/features/sorting/useGridSorting.d.ts +10 -0
- package/modern/hooks/features/sorting/useGridSorting.js +1 -3
- package/modern/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +40 -0
- package/modern/hooks/features/statePersistence/index.d.ts +1 -0
- package/modern/hooks/features/statePersistence/useGridStatePersistence.d.ts +3 -0
- package/modern/hooks/features/statePersistence/useGridStatePersistence.js +0 -1
- package/modern/hooks/features/virtualization/gridFocusedVirtualCellSelector.d.ts +6 -0
- package/modern/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +5 -15
- package/modern/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +36 -0
- package/modern/hooks/features/virtualization/gridVirtualizationSelectors.js +3 -3
- package/modern/hooks/features/virtualization/index.d.ts +2 -0
- package/modern/hooks/features/virtualization/useGridVirtualScroller.d.ts +56 -0
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +82 -93
- package/modern/hooks/features/virtualization/useGridVirtualization.d.ts +21 -0
- package/modern/hooks/index.d.ts +3 -0
- package/modern/hooks/utils/index.d.ts +9 -0
- package/modern/hooks/utils/index.js +1 -1
- package/modern/hooks/utils/useFirstRender.d.ts +1 -0
- package/modern/hooks/utils/useGridApiContext.d.ts +4 -0
- package/modern/hooks/utils/useGridApiEventHandler.d.ts +12 -0
- package/modern/hooks/utils/useGridApiEventHandler.js +68 -75
- package/modern/hooks/utils/useGridApiMethod.d.ts +7 -0
- package/modern/hooks/utils/useGridApiRef.d.ts +7 -0
- package/modern/hooks/utils/useGridApiRef.js +1 -1
- package/modern/hooks/utils/useGridAriaAttributes.d.ts +2 -0
- package/modern/hooks/utils/useGridComponentRenderer.d.ts +12 -0
- package/modern/hooks/utils/useGridComponentRenderer.js +36 -0
- package/modern/hooks/utils/useGridConfiguration.d.ts +2 -0
- package/modern/hooks/utils/useGridInitializeState.d.ts +8 -0
- package/modern/hooks/utils/useGridLogger.d.ts +4 -0
- package/modern/hooks/utils/useGridNativeEventListener.d.ts +3 -0
- package/modern/hooks/utils/useGridNativeEventListener.js +12 -22
- package/modern/hooks/utils/useGridPrivateApiContext.d.ts +6 -0
- package/modern/hooks/utils/useGridRootProps.d.ts +2 -0
- package/modern/hooks/utils/useGridSelector.d.ts +8 -0
- package/modern/hooks/utils/useGridSelector.js +29 -17
- package/modern/hooks/utils/useGridVisibleRows.d.ts +26 -0
- package/modern/hooks/utils/useIsSSR.d.ts +1 -0
- package/modern/hooks/utils/useIsSSR.js +8 -0
- package/modern/hooks/utils/useLazyRef.d.ts +1 -0
- package/modern/hooks/utils/useOnMount.d.ts +1 -0
- package/modern/hooks/utils/useRunOnce.d.ts +5 -0
- package/modern/hooks/utils/useTimeout.d.ts +1 -0
- package/modern/index.d.ts +38 -0
- package/modern/index.js +2 -2
- package/modern/internals/constants.d.ts +9 -0
- package/modern/internals/demo/TailwindDemoContainer.d.ts +11 -0
- package/modern/internals/demo/TailwindDemoContainer.js +55 -0
- package/modern/internals/demo/index.d.ts +1 -0
- package/modern/internals/demo/index.js +1 -0
- package/modern/internals/index.d.ts +112 -0
- package/modern/internals/index.js +17 -5
- package/modern/internals/utils/attachPinnedStyle.d.ts +2 -0
- package/modern/internals/utils/computeSlots.d.ts +7 -0
- package/modern/internals/utils/getPinnedCellOffset.d.ts +3 -0
- package/modern/internals/utils/gridRowGroupingUtils.d.ts +2 -0
- package/modern/internals/utils/index.d.ts +4 -0
- package/modern/internals/utils/propValidation.d.ts +4 -0
- package/modern/internals/utils/propValidation.js +2 -2
- package/modern/locales/arSD.d.ts +2 -0
- package/modern/locales/arSD.js +32 -2
- package/modern/locales/beBY.d.ts +2 -0
- package/modern/locales/beBY.js +32 -2
- package/modern/locales/bgBG.d.ts +2 -0
- package/modern/locales/bgBG.js +32 -2
- package/modern/locales/bnBD.d.ts +2 -0
- package/modern/locales/bnBD.js +194 -0
- package/modern/locales/csCZ.d.ts +2 -0
- package/modern/locales/csCZ.js +46 -20
- package/modern/locales/daDK.d.ts +2 -0
- package/modern/locales/daDK.js +32 -2
- package/modern/locales/deDE.d.ts +2 -0
- package/modern/locales/deDE.js +32 -4
- package/modern/locales/elGR.d.ts +2 -0
- package/modern/locales/elGR.js +33 -2
- package/modern/locales/enUS.d.ts +2 -0
- package/modern/locales/enUS.js +1 -2
- package/modern/locales/esES.d.ts +2 -0
- package/modern/locales/esES.js +32 -2
- package/modern/locales/faIR.d.ts +2 -0
- package/modern/locales/faIR.js +37 -8
- package/modern/locales/fiFI.d.ts +2 -0
- package/modern/locales/fiFI.js +32 -2
- package/modern/locales/frFR.d.ts +2 -0
- package/modern/locales/frFR.js +32 -2
- package/modern/locales/heIL.d.ts +2 -0
- package/modern/locales/heIL.js +32 -2
- package/modern/locales/hrHR.d.ts +1 -0
- package/modern/locales/hrHR.js +31 -2
- package/modern/locales/huHU.d.ts +2 -0
- package/modern/locales/huHU.js +39 -12
- package/modern/locales/index.d.ts +37 -0
- package/modern/locales/index.js +1 -0
- package/modern/locales/isIS.d.ts +2 -0
- package/modern/locales/isIS.js +32 -2
- package/modern/locales/itIT.d.ts +2 -0
- package/modern/locales/itIT.js +32 -2
- package/modern/locales/jaJP.d.ts +2 -0
- package/modern/locales/jaJP.js +32 -2
- package/modern/locales/koKR.d.ts +2 -0
- package/modern/locales/koKR.js +33 -3
- package/modern/locales/nbNO.d.ts +2 -0
- package/modern/locales/nbNO.js +32 -2
- package/modern/locales/nlNL.d.ts +2 -0
- package/modern/locales/nlNL.js +31 -2
- package/modern/locales/nnNO.d.ts +2 -0
- package/modern/locales/nnNO.js +32 -2
- package/modern/locales/plPL.d.ts +2 -0
- package/modern/locales/plPL.js +56 -30
- package/modern/locales/ptBR.d.ts +2 -0
- package/modern/locales/ptBR.js +32 -2
- package/modern/locales/ptPT.d.ts +1 -0
- package/modern/locales/ptPT.js +32 -2
- package/modern/locales/roRO.d.ts +2 -0
- package/modern/locales/roRO.js +32 -2
- package/modern/locales/ruRU.d.ts +2 -0
- package/modern/locales/ruRU.js +46 -20
- package/modern/locales/skSK.d.ts +2 -0
- package/modern/locales/skSK.js +47 -21
- package/modern/locales/svSE.d.ts +2 -0
- package/modern/locales/svSE.js +32 -2
- package/modern/locales/trTR.d.ts +2 -0
- package/modern/locales/trTR.js +32 -2
- package/modern/locales/ukUA.d.ts +2 -0
- package/modern/locales/ukUA.js +50 -24
- package/modern/locales/urPK.d.ts +2 -0
- package/modern/locales/urPK.js +43 -13
- package/modern/locales/viVN.d.ts +2 -0
- package/modern/locales/viVN.js +32 -2
- package/modern/locales/zhCN.d.ts +2 -0
- package/modern/locales/zhCN.js +33 -6
- package/modern/locales/zhHK.d.ts +1 -0
- package/modern/locales/zhHK.js +50 -25
- package/modern/locales/zhTW.d.ts +2 -0
- package/modern/locales/zhTW.js +49 -24
- package/modern/material/icons/GridColumnUnsortedIcon.d.ts +8 -0
- package/modern/material/icons/index.d.ts +84 -0
- package/modern/material/icons/index.js +6 -6
- package/modern/material/index.d.ts +5 -0
- package/modern/material/index.js +458 -21
- package/modern/material/variables.d.ts +5 -0
- package/modern/material/variables.js +94 -0
- package/modern/models/api/gridApiCommon.d.ts +34 -0
- package/modern/models/api/gridApiCommunity.d.ts +12 -0
- package/modern/models/api/gridCallbackDetails.d.ts +15 -0
- package/modern/models/api/gridColumnApi.d.ts +74 -0
- package/modern/models/api/gridColumnGroupingApi.d.ts +19 -0
- package/modern/models/api/gridColumnMenuApi.d.ts +19 -0
- package/modern/models/api/gridColumnSpanning.d.ts +34 -0
- package/modern/models/api/gridCoreApi.d.ts +96 -0
- package/modern/models/api/gridCsvExportApi.d.ts +18 -0
- package/modern/models/api/gridDensityApi.d.ts +17 -0
- package/modern/models/api/gridEditingApi.d.ts +238 -0
- package/modern/models/api/gridFilterApi.d.ts +67 -0
- package/modern/models/api/gridFocusApi.d.ts +46 -0
- package/modern/models/api/gridHeaderFilteringApi.d.ts +30 -0
- package/modern/models/api/gridInfiniteLoaderApi.d.ts +7 -0
- package/modern/models/api/gridLocaleTextApi.d.ts +163 -0
- package/modern/models/api/gridLoggerApi.d.ts +11 -0
- package/modern/models/api/gridParamsApi.d.ts +107 -0
- package/modern/models/api/gridPreferencesPanelApi.d.ts +17 -0
- package/modern/models/api/gridPrintExportApi.d.ts +11 -0
- package/modern/models/api/gridRowApi.d.ts +120 -0
- package/modern/models/api/gridRowSelectionApi.d.ts +90 -0
- package/modern/models/api/gridRowsMetaApi.d.ts +60 -0
- package/modern/models/api/gridScrollApi.d.ts +24 -0
- package/modern/models/api/gridSortApi.d.ts +46 -0
- package/modern/models/api/gridStateApi.d.ts +33 -0
- package/modern/models/api/gridVirtualizationApi.d.ts +19 -0
- package/modern/models/api/index.d.ts +23 -0
- package/modern/models/api/index.js +0 -1
- package/modern/models/colDef/gridColDef.d.ts +317 -0
- package/modern/models/colDef/gridColType.d.ts +11 -0
- package/modern/models/colDef/gridColumnTypesRecord.d.ts +3 -0
- package/modern/models/colDef/index.d.ts +3 -0
- package/modern/models/configuration/gridConfiguration.d.ts +15 -0
- package/modern/models/configuration/gridRowConfiguration.d.ts +12 -0
- package/modern/models/controlStateItem.d.ts +14 -0
- package/modern/models/cursorCoordinates.d.ts +4 -0
- package/modern/models/elementSize.d.ts +13 -0
- package/modern/models/events/gridEventListener.d.ts +8 -0
- package/modern/models/events/gridEventLookup.d.ts +661 -0
- package/modern/models/events/gridEventPublisher.d.ts +29 -0
- package/modern/models/events/index.d.ts +3 -0
- package/modern/models/gridApiCaches.d.ts +6 -0
- package/modern/models/gridBaseSlots.d.ts +271 -0
- package/modern/models/gridCell.d.ts +30 -0
- package/modern/models/gridCellClass.d.ts +10 -0
- package/modern/models/gridColumnGrouping.d.ts +41 -0
- package/modern/models/gridColumnHeaderClass.d.ts +9 -0
- package/modern/models/gridColumnSpanning.d.ts +12 -0
- package/modern/models/gridDataSource.d.ts +70 -0
- package/modern/models/gridDensity.d.ts +4 -0
- package/modern/models/gridEditRowModel.d.ts +28 -0
- package/modern/models/gridExport.d.ts +157 -0
- package/modern/models/gridFeatureMode.d.ts +1 -0
- package/modern/models/gridFilterInputComponent.d.ts +32 -0
- package/modern/models/gridFilterInputComponent.js +1 -0
- package/modern/models/gridFilterItem.d.ts +30 -0
- package/modern/models/gridFilterModel.d.ts +34 -0
- package/modern/models/gridFilterOperator.d.ts +58 -0
- package/modern/models/gridHeaderFilteringModel.d.ts +6 -0
- package/modern/models/gridIconSlotsComponent.d.ts +191 -0
- package/modern/models/gridPaginationProps.d.ts +16 -0
- package/modern/models/gridRenderContextProps.d.ts +55 -0
- package/modern/models/gridRowSelectionManager.d.ts +9 -0
- package/modern/models/gridRowSelectionManager.js +36 -0
- package/modern/models/gridRowSelectionModel.d.ts +9 -0
- package/modern/models/gridRows.d.ts +178 -0
- package/modern/models/gridSlotsComponent.d.ts +215 -0
- package/modern/models/gridSlotsComponentsProps.d.ts +142 -0
- package/modern/models/gridSortModel.d.ts +30 -0
- package/modern/models/gridStateCommunity.d.ts +60 -0
- package/modern/models/index.d.ts +31 -0
- package/modern/models/index.js +2 -3
- package/modern/models/logger.d.ts +6 -0
- package/modern/models/muiEvent.d.ts +5 -0
- package/modern/models/params/gridCellParams.d.ts +113 -0
- package/modern/models/params/gridColumnGroupHeaderParams.d.ts +30 -0
- package/modern/models/params/gridColumnHeaderParams.d.ts +15 -0
- package/modern/models/params/gridColumnOrderChangeParams.d.ts +18 -0
- package/modern/models/params/gridColumnResizeParams.d.ts +19 -0
- package/modern/models/params/gridEditCellParams.d.ts +65 -0
- package/modern/models/params/gridHeaderSelectionCheckboxParams.d.ts +3 -0
- package/modern/models/params/gridMenuParams.d.ts +6 -0
- package/modern/models/params/gridPreferencePanelParams.d.ts +2 -0
- package/modern/models/params/gridRowParams.d.ts +110 -0
- package/modern/models/params/gridRowSelectionCheckboxParams.d.ts +5 -0
- package/modern/models/params/gridScrollParams.d.ts +14 -0
- package/modern/models/params/gridValueOptionsParams.d.ts +18 -0
- package/modern/models/params/index.d.ts +13 -0
- package/modern/models/props/DataGridProps.d.ts +856 -0
- package/modern/package.json +1 -0
- package/modern/themeAugmentation/index.d.ts +2 -0
- package/modern/themeAugmentation/overrides.d.ts +18 -0
- package/modern/themeAugmentation/props.d.ts +15 -0
- package/modern/utils/ResizeObserver.d.ts +4 -0
- package/modern/utils/Store.d.ts +11 -0
- package/modern/utils/assert.d.ts +2 -0
- package/modern/utils/assert.js +3 -0
- package/modern/utils/cellBorderUtils.d.ts +3 -0
- package/modern/utils/cleanupTracking/CleanupTracking.d.ts +9 -0
- package/modern/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +7 -0
- package/modern/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +9 -0
- package/modern/utils/composeGridClasses.d.ts +3 -0
- package/modern/utils/createControllablePromise.d.ts +5 -0
- package/modern/utils/createSelector.d.ts +23 -0
- package/modern/utils/createSelector.js +36 -66
- package/modern/utils/css/context.d.ts +14 -0
- package/modern/utils/css/context.js +54 -0
- package/modern/utils/doesSupportPreventScroll.d.ts +1 -0
- package/modern/utils/domUtils.d.ts +29 -0
- package/modern/utils/exportAs.d.ts +12 -0
- package/modern/utils/getGridLocalization.d.ts +11 -0
- package/modern/utils/getGridLocalization.js +2 -5
- package/modern/utils/getPublicApiRef.d.ts +3 -0
- package/modern/utils/index.d.ts +2 -0
- package/modern/utils/index.js +1 -1
- package/modern/utils/isJSDOM.d.ts +1 -0
- package/modern/utils/isJSDOM.js +1 -0
- package/modern/utils/keyboardUtils.d.ts +14 -0
- package/modern/utils/platform.d.ts +1 -0
- package/modern/utils/roundToDecimalPlaces.d.ts +1 -0
- package/modern/utils/roundToDecimalPlaces.js +3 -0
- package/modern/utils/rtlFlipSide.d.ts +2 -0
- package/modern/utils/utils.d.ts +57 -0
- package/modern/utils/weakMapMemoize.d.ts +20 -0
- package/modern/utils/weakMapMemoize.js +128 -0
- package/package.json +42 -8
- package/themeAugmentation/index.d.ts +2 -2
- package/themeAugmentation/index.js +27 -4
- package/themeAugmentation/overrides.d.ts +15 -11
- package/themeAugmentation/overrides.js +5 -1
- package/themeAugmentation/props.d.ts +9 -11
- package/themeAugmentation/props.js +5 -1
- package/tsconfig.build.tsbuildinfo +1 -0
- package/utils/ResizeObserver.d.ts +1 -1
- package/utils/ResizeObserver.js +7 -1
- package/utils/Store.d.ts +8 -8
- package/utils/Store.js +9 -2
- package/utils/assert.d.ts +2 -0
- package/utils/assert.js +9 -0
- package/utils/cellBorderUtils.d.ts +2 -2
- package/utils/cellBorderUtils.js +16 -8
- package/utils/cleanupTracking/CleanupTracking.d.ts +5 -5
- package/utils/cleanupTracking/CleanupTracking.js +5 -1
- package/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +6 -6
- package/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +9 -2
- package/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +8 -8
- package/utils/cleanupTracking/TimerBasedCleanupTracking.js +9 -2
- package/utils/composeGridClasses.d.ts +1 -1
- package/utils/composeGridClasses.js +10 -4
- package/utils/createControllablePromise.d.ts +3 -3
- package/utils/createControllablePromise.js +7 -1
- package/utils/createSelector.d.ts +17 -24
- package/utils/createSelector.js +53 -74
- package/utils/css/context.d.ts +14 -0
- package/utils/css/context.js +64 -0
- package/utils/doesSupportPreventScroll.d.ts +1 -1
- package/utils/doesSupportPreventScroll.js +7 -1
- package/utils/domUtils.d.ts +8 -5
- package/utils/domUtils.js +55 -29
- package/utils/exportAs.d.ts +2 -2
- package/utils/exportAs.js +7 -1
- package/utils/getGridLocalization.d.ts +7 -8
- package/utils/getGridLocalization.js +10 -6
- package/utils/getPublicApiRef.d.ts +2 -1
- package/utils/getPublicApiRef.js +7 -1
- package/utils/index.d.ts +1 -0
- package/utils/index.js +12 -1
- package/utils/isJSDOM.d.ts +1 -0
- package/utils/isJSDOM.js +7 -0
- package/utils/keyboardUtils.d.ts +2 -2
- package/utils/keyboardUtils.js +30 -13
- package/utils/platform.d.ts +1 -1
- package/utils/platform.js +7 -1
- package/utils/roundToDecimalPlaces.d.ts +1 -0
- package/utils/roundToDecimalPlaces.js +9 -0
- package/utils/rtlFlipSide.d.ts +2 -2
- package/utils/rtlFlipSide.js +14 -7
- package/utils/utils.d.ts +1 -1
- package/utils/utils.js +32 -13
- package/utils/weakMapMemoize.d.ts +20 -0
- package/utils/weakMapMemoize.js +134 -0
- package/DataGrid/package.json +0 -6
- package/colDef/package.json +0 -6
- package/components/package.json +0 -6
- package/components/panel/filterPanel/GridFilterInputValueProps.d.ts +0 -11
- package/constants/package.json +0 -6
- package/context/package.json +0 -6
- package/hooks/package.json +0 -6
- package/internals/package.json +0 -6
- package/locales/coreLocales.d.ts +0 -3
- package/locales/coreLocales.js +0 -60
- package/locales/package.json +0 -6
- package/material/components/MUISelectOption.d.ts +0 -3
- package/material/components/MUISelectOption.js +0 -16
- package/material/package.json +0 -6
- package/models/package.json +0 -6
- package/modern/locales/coreLocales.js +0 -60
- package/modern/material/components/MUISelectOption.js +0 -16
- package/node/DataGrid/DataGrid.js +0 -765
- package/node/DataGrid/index.js +0 -16
- package/node/DataGrid/useDataGridComponent.js +0 -97
- package/node/DataGrid/useDataGridProps.js +0 -53
- package/node/colDef/gridActionsColDef.js +0 -26
- package/node/colDef/gridBooleanColDef.js +0 -48
- package/node/colDef/gridBooleanOperators.js +0 -19
- package/node/colDef/gridCheckboxSelectionColDef.js +0 -38
- package/node/colDef/gridDateColDef.js +0 -68
- package/node/colDef/gridDateOperators.js +0 -115
- package/node/colDef/gridDefaultColumnTypes.js +0 -27
- package/node/colDef/gridNumericColDef.js +0 -22
- package/node/colDef/gridNumericOperators.js +0 -151
- package/node/colDef/gridSingleSelectColDef.js +0 -68
- package/node/colDef/gridSingleSelectOperators.js +0 -45
- package/node/colDef/gridStringColDef.js +0 -32
- package/node/colDef/gridStringOperators.js +0 -129
- package/node/colDef/index.js +0 -148
- package/node/components/GridApiContext.js +0 -12
- package/node/components/GridColumnHeaders.js +0 -92
- package/node/components/GridConfigurationContext.js +0 -12
- package/node/components/GridDetailPanels.js +0 -9
- package/node/components/GridFooter.js +0 -47
- package/node/components/GridHeader.js +0 -19
- package/node/components/GridHeaders.js +0 -55
- package/node/components/GridLoadingOverlay.js +0 -74
- package/node/components/GridNoResultsOverlay.js +0 -22
- package/node/components/GridNoRowsOverlay.js +0 -30
- package/node/components/GridPagination.js +0 -155
- package/node/components/GridPinnedRows.js +0 -9
- package/node/components/GridRow.js +0 -341
- package/node/components/GridRowCount.js +0 -72
- package/node/components/GridScrollArea.js +0 -149
- package/node/components/GridScrollbarFillerCell.js +0 -30
- package/node/components/GridSelectedRowCount.js +0 -75
- package/node/components/GridSkeletonLoadingOverlay.js +0 -189
- package/node/components/base/GridBody.js +0 -12
- package/node/components/base/GridFooterPlaceholder.js +0 -19
- package/node/components/base/GridOverlays.js +0 -94
- package/node/components/base/index.js +0 -27
- package/node/components/cell/GridActionsCell.js +0 -269
- package/node/components/cell/GridActionsCellItem.js +0 -77
- package/node/components/cell/GridBooleanCell.js +0 -132
- package/node/components/cell/GridCell.js +0 -355
- package/node/components/cell/GridEditBooleanCell.js +0 -148
- package/node/components/cell/GridEditDateCell.js +0 -197
- package/node/components/cell/GridEditInputCell.js +0 -174
- package/node/components/cell/GridEditSingleSelectCell.js +0 -201
- package/node/components/cell/GridSkeletonCell.js +0 -111
- package/node/components/cell/index.js +0 -111
- package/node/components/columnHeaders/ColumnHeaderMenuIcon.js +0 -70
- package/node/components/columnHeaders/GridBaseColumnHeaders.js +0 -53
- package/node/components/columnHeaders/GridColumnGroupHeader.js +0 -144
- package/node/components/columnHeaders/GridColumnHeaderFilterIconButton.js +0 -101
- package/node/components/columnHeaders/GridColumnHeaderItem.js +0 -238
- package/node/components/columnHeaders/GridColumnHeaderSeparator.js +0 -78
- package/node/components/columnHeaders/GridColumnHeaderSortIcon.js +0 -92
- package/node/components/columnHeaders/GridColumnHeaderTitle.js +0 -95
- package/node/components/columnHeaders/GridGenericColumnHeaderItem.js +0 -101
- package/node/components/columnHeaders/GridIconButtonContainer.js +0 -51
- package/node/components/columnHeaders/index.js +0 -60
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +0 -174
- package/node/components/columnSelection/GridHeaderCheckbox.js +0 -140
- package/node/components/columnSelection/index.js +0 -27
- package/node/components/columnsManagement/GridColumnsManagement.js +0 -315
- package/node/components/columnsManagement/index.js +0 -16
- package/node/components/columnsManagement/utils.js +0 -24
- package/node/components/containers/GridFooterContainer.js +0 -61
- package/node/components/containers/GridOverlay.js +0 -63
- package/node/components/containers/GridRoot.js +0 -80
- package/node/components/containers/GridRootStyles.js +0 -777
- package/node/components/containers/GridToolbarContainer.js +0 -68
- package/node/components/containers/index.js +0 -49
- package/node/components/index.js +0 -231
- package/node/components/menu/GridMenu.js +0 -135
- package/node/components/menu/columnMenu/GridColumnHeaderMenu.js +0 -69
- package/node/components/menu/columnMenu/GridColumnMenu.js +0 -116
- package/node/components/menu/columnMenu/GridColumnMenuContainer.js +0 -63
- package/node/components/menu/columnMenu/index.js +0 -75
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +0 -27
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +0 -43
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +0 -60
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +0 -43
- package/node/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +0 -73
- package/node/components/menu/columnMenu/menuItems/index.js +0 -60
- package/node/components/menu/index.js +0 -27
- package/node/components/panel/GridColumnsPanel.js +0 -27
- package/node/components/panel/GridPanel.js +0 -132
- package/node/components/panel/GridPanelContent.js +0 -62
- package/node/components/panel/GridPanelFooter.js +0 -59
- package/node/components/panel/GridPanelHeader.js +0 -56
- package/node/components/panel/GridPanelWrapper.js +0 -72
- package/node/components/panel/GridPreferencesPanel.js +0 -32
- package/node/components/panel/filterPanel/GridFilterForm.js +0 -492
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +0 -124
- package/node/components/panel/filterPanel/GridFilterInputDate.js +0 -126
- package/node/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +0 -127
- package/node/components/panel/filterPanel/GridFilterInputMultipleValue.js +0 -108
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +0 -149
- package/node/components/panel/filterPanel/GridFilterInputValue.js +0 -116
- package/node/components/panel/filterPanel/GridFilterInputValueProps.js +0 -5
- package/node/components/panel/filterPanel/GridFilterPanel.js +0 -255
- package/node/components/panel/filterPanel/filterPanelUtils.js +0 -31
- package/node/components/panel/filterPanel/index.js +0 -107
- package/node/components/panel/index.js +0 -82
- package/node/components/reexportable.js +0 -24
- package/node/components/toolbar/GridToolbar.js +0 -76
- package/node/components/toolbar/GridToolbarColumnsButton.js +0 -74
- package/node/components/toolbar/GridToolbarDensitySelector.js +0 -133
- package/node/components/toolbar/GridToolbarExport.js +0 -133
- package/node/components/toolbar/GridToolbarExportContainer.js +0 -101
- package/node/components/toolbar/GridToolbarFilterButton.js +0 -141
- package/node/components/toolbar/GridToolbarQuickFilter.js +0 -170
- package/node/components/toolbar/index.js +0 -101
- package/node/components/virtualization/GridBottomContainer.js +0 -33
- package/node/components/virtualization/GridMainContainer.js +0 -48
- package/node/components/virtualization/GridTopContainer.js +0 -33
- package/node/components/virtualization/GridVirtualScrollbar.js +0 -146
- package/node/components/virtualization/GridVirtualScroller.js +0 -117
- package/node/components/virtualization/GridVirtualScrollerContent.js +0 -41
- package/node/components/virtualization/GridVirtualScrollerFiller.js +0 -79
- package/node/components/virtualization/GridVirtualScrollerRenderZone.js +0 -65
- package/node/constants/dataGridPropsDefaultValues.js +0 -64
- package/node/constants/defaultGridSlotsComponents.js +0 -40
- package/node/constants/envConstants.js +0 -25
- package/node/constants/gridClasses.js +0 -12
- package/node/constants/index.js +0 -38
- package/node/constants/localeTextConstants.js +0 -169
- package/node/context/GridContextProvider.js +0 -34
- package/node/context/GridRootPropsContext.js +0 -12
- package/node/context/index.js +0 -16
- package/node/hooks/core/gridCoreSelector.js +0 -12
- package/node/hooks/core/index.js +0 -5
- package/node/hooks/core/pipeProcessing/gridPipeProcessingApi.js +0 -5
- package/node/hooks/core/pipeProcessing/index.js +0 -49
- package/node/hooks/core/pipeProcessing/useGridPipeProcessing.js +0 -116
- package/node/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +0 -34
- package/node/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +0 -34
- package/node/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +0 -11
- package/node/hooks/core/strategyProcessing/index.js +0 -38
- package/node/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +0 -26
- package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +0 -119
- package/node/hooks/core/useGridApiInitialization.js +0 -120
- package/node/hooks/core/useGridInitialization.js +0 -32
- package/node/hooks/core/useGridIsRtl.js +0 -28
- package/node/hooks/core/useGridLocaleText.js +0 -20
- package/node/hooks/core/useGridLoggerFactory.js +0 -52
- package/node/hooks/core/useGridRefs.js +0 -27
- package/node/hooks/core/useGridStateInitialization.js +0 -102
- package/node/hooks/features/clipboard/useGridClipboard.js +0 -104
- package/node/hooks/features/columnGrouping/gridColumnGroupsInterfaces.js +0 -5
- package/node/hooks/features/columnGrouping/gridColumnGroupsSelector.js +0 -17
- package/node/hooks/features/columnGrouping/gridColumnGroupsUtils.js +0 -90
- package/node/hooks/features/columnGrouping/index.js +0 -16
- package/node/hooks/features/columnGrouping/useGridColumnGrouping.js +0 -141
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +0 -324
- package/node/hooks/features/columnMenu/columnMenuInterfaces.js +0 -5
- package/node/hooks/features/columnMenu/columnMenuSelector.js +0 -8
- package/node/hooks/features/columnMenu/index.js +0 -27
- package/node/hooks/features/columnMenu/useGridColumnMenu.js +0 -116
- package/node/hooks/features/columnMenu/useGridColumnMenuSlots.js +0 -67
- package/node/hooks/features/columnResize/columnResizeSelector.js +0 -10
- package/node/hooks/features/columnResize/columnResizeState.js +0 -5
- package/node/hooks/features/columnResize/gridColumnResizeApi.js +0 -17
- package/node/hooks/features/columnResize/index.js +0 -38
- package/node/hooks/features/columnResize/useGridColumnResize.js +0 -572
- package/node/hooks/features/columns/gridColumnsInterfaces.js +0 -15
- package/node/hooks/features/columns/gridColumnsSelector.js +0 -151
- package/node/hooks/features/columns/gridColumnsUtils.js +0 -340
- package/node/hooks/features/columns/index.js +0 -27
- package/node/hooks/features/columns/useGridColumnSpanning.js +0 -115
- package/node/hooks/features/columns/useGridColumns.js +0 -313
- package/node/hooks/features/density/densitySelector.js +0 -17
- package/node/hooks/features/density/densityState.js +0 -5
- package/node/hooks/features/density/index.js +0 -27
- package/node/hooks/features/density/useGridDensity.js +0 -74
- package/node/hooks/features/dimensions/gridDimensionsApi.js +0 -5
- package/node/hooks/features/dimensions/gridDimensionsSelectors.js +0 -8
- package/node/hooks/features/dimensions/index.js +0 -16
- package/node/hooks/features/dimensions/useGridDimensions.js +0 -286
- package/node/hooks/features/editing/gridEditingSelectors.js +0 -11
- package/node/hooks/features/editing/index.js +0 -16
- package/node/hooks/features/editing/useGridCellEditing.js +0 -478
- package/node/hooks/features/editing/useGridEditing.js +0 -133
- package/node/hooks/features/editing/useGridRowEditing.js +0 -607
- package/node/hooks/features/editing/utils.js +0 -22
- package/node/hooks/features/events/useGridEvents.js +0 -30
- package/node/hooks/features/export/serializers/csvSerializer.js +0 -152
- package/node/hooks/features/export/useGridCsvExport.js +0 -82
- package/node/hooks/features/export/useGridPrintExport.js +0 -299
- package/node/hooks/features/export/utils.js +0 -45
- package/node/hooks/features/filter/gridFilterSelector.js +0 -182
- package/node/hooks/features/filter/gridFilterState.js +0 -25
- package/node/hooks/features/filter/gridFilterUtils.js +0 -323
- package/node/hooks/features/filter/index.js +0 -109
- package/node/hooks/features/filter/useGridFilter.js +0 -384
- package/node/hooks/features/focus/gridFocusState.js +0 -5
- package/node/hooks/features/focus/gridFocusStateSelector.js +0 -19
- package/node/hooks/features/focus/index.js +0 -27
- package/node/hooks/features/focus/useGridFocus.js +0 -419
- package/node/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +0 -14
- package/node/hooks/features/headerFiltering/index.js +0 -16
- package/node/hooks/features/headerFiltering/useGridHeaderFiltering.js +0 -116
- package/node/hooks/features/index.js +0 -203
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +0 -536
- package/node/hooks/features/keyboardNavigation/utils.js +0 -68
- package/node/hooks/features/listView/gridListViewSelectors.js +0 -13
- package/node/hooks/features/listView/index.js +0 -16
- package/node/hooks/features/listView/useGridListView.js +0 -70
- package/node/hooks/features/overlays/useGridOverlays.js +0 -64
- package/node/hooks/features/pagination/gridPaginationInterfaces.js +0 -5
- package/node/hooks/features/pagination/gridPaginationSelector.js +0 -160
- package/node/hooks/features/pagination/gridPaginationUtils.js +0 -39
- package/node/hooks/features/pagination/index.js +0 -16
- package/node/hooks/features/pagination/useGridPagination.js +0 -39
- package/node/hooks/features/pagination/useGridPaginationMeta.js +0 -86
- package/node/hooks/features/pagination/useGridPaginationModel.js +0 -198
- package/node/hooks/features/pagination/useGridRowCount.js +0 -117
- package/node/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +0 -8
- package/node/hooks/features/preferencesPanel/gridPreferencePanelState.js +0 -5
- package/node/hooks/features/preferencesPanel/gridPreferencePanelsValue.js +0 -11
- package/node/hooks/features/preferencesPanel/index.js +0 -38
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +0 -122
- package/node/hooks/features/rowSelection/gridRowSelectionSelector.js +0 -16
- package/node/hooks/features/rowSelection/index.js +0 -16
- package/node/hooks/features/rowSelection/useGridRowSelection.js +0 -490
- package/node/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +0 -53
- package/node/hooks/features/rowSelection/utils.js +0 -173
- package/node/hooks/features/rows/gridRowSpanningSelectors.js +0 -11
- package/node/hooks/features/rows/gridRowSpanningUtils.js +0 -52
- package/node/hooks/features/rows/gridRowsInterfaces.js +0 -5
- package/node/hooks/features/rows/gridRowsMetaInterfaces.js +0 -5
- package/node/hooks/features/rows/gridRowsMetaSelector.js +0 -8
- package/node/hooks/features/rows/gridRowsMetaState.js +0 -5
- package/node/hooks/features/rows/gridRowsSelector.js +0 -55
- package/node/hooks/features/rows/gridRowsUtils.js +0 -330
- package/node/hooks/features/rows/index.js +0 -117
- package/node/hooks/features/rows/useGridParamsApi.js +0 -132
- package/node/hooks/features/rows/useGridRowAriaAttributes.js +0 -27
- package/node/hooks/features/rows/useGridRowSpanning.js +0 -266
- package/node/hooks/features/rows/useGridRows.js +0 -482
- package/node/hooks/features/rows/useGridRowsMeta.js +0 -212
- package/node/hooks/features/rows/useGridRowsPreProcessors.js +0 -89
- package/node/hooks/features/scroll/useGridScroll.js +0 -141
- package/node/hooks/features/sorting/gridSortingSelector.js +0 -75
- package/node/hooks/features/sorting/gridSortingState.js +0 -5
- package/node/hooks/features/sorting/gridSortingUtils.js +0 -151
- package/node/hooks/features/sorting/index.js +0 -49
- package/node/hooks/features/sorting/useGridSorting.js +0 -262
- package/node/hooks/features/statePersistence/gridStatePersistenceInterface.js +0 -5
- package/node/hooks/features/statePersistence/index.js +0 -5
- package/node/hooks/features/statePersistence/useGridStatePersistence.js +0 -32
- package/node/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +0 -49
- package/node/hooks/features/virtualization/gridVirtualizationSelectors.js +0 -50
- package/node/hooks/features/virtualization/index.js +0 -27
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +0 -855
- package/node/hooks/features/virtualization/useGridVirtualization.js +0 -72
- package/node/hooks/index.js +0 -38
- package/node/hooks/utils/index.js +0 -99
- package/node/hooks/utils/useFirstRender.js +0 -16
- package/node/hooks/utils/useGridApiContext.js +0 -16
- package/node/hooks/utils/useGridApiEventHandler.js +0 -105
- package/node/hooks/utils/useGridApiMethod.js +0 -20
- package/node/hooks/utils/useGridApiRef.js +0 -13
- package/node/hooks/utils/useGridAriaAttributes.js +0 -29
- package/node/hooks/utils/useGridConfiguration.js +0 -17
- package/node/hooks/utils/useGridInitializeState.js +0 -16
- package/node/hooks/utils/useGridLogger.js +0 -17
- package/node/hooks/utils/useGridNativeEventListener.js +0 -35
- package/node/hooks/utils/useGridPrivateApiContext.js +0 -20
- package/node/hooks/utils/useGridRootProps.js +0 -17
- package/node/hooks/utils/useGridSelector.js +0 -80
- package/node/hooks/utils/useGridVisibleRows.js +0 -24
- package/node/hooks/utils/useLazyRef.js +0 -13
- package/node/hooks/utils/useOnMount.js +0 -13
- package/node/hooks/utils/useRunOnce.js +0 -26
- package/node/hooks/utils/useTimeout.js +0 -13
- package/node/index.js +0 -176
- package/node/internals/constants.js +0 -16
- package/node/internals/index.js +0 -906
- package/node/internals/utils/attachPinnedStyle.js +0 -15
- package/node/internals/utils/computeSlots.js +0 -25
- package/node/internals/utils/getPinnedCellOffset.js +0 -23
- package/node/internals/utils/gridRowGroupingUtils.js +0 -17
- package/node/internals/utils/index.js +0 -49
- package/node/internals/utils/propValidation.js +0 -19
- package/node/locales/arSD.js +0 -173
- package/node/locales/beBY.js +0 -196
- package/node/locales/bgBG.js +0 -173
- package/node/locales/coreLocales.js +0 -66
- package/node/locales/csCZ.js +0 -202
- package/node/locales/daDK.js +0 -173
- package/node/locales/deDE.js +0 -171
- package/node/locales/elGR.js +0 -173
- package/node/locales/enUS.js +0 -10
- package/node/locales/esES.js +0 -171
- package/node/locales/faIR.js +0 -173
- package/node/locales/fiFI.js +0 -173
- package/node/locales/frFR.js +0 -173
- package/node/locales/heIL.js +0 -171
- package/node/locales/hrHR.js +0 -197
- package/node/locales/huHU.js +0 -173
- package/node/locales/index.js +0 -401
- package/node/locales/isIS.js +0 -173
- package/node/locales/itIT.js +0 -173
- package/node/locales/jaJP.js +0 -173
- package/node/locales/koKR.js +0 -171
- package/node/locales/nbNO.js +0 -173
- package/node/locales/nlNL.js +0 -172
- package/node/locales/nnNO.js +0 -173
- package/node/locales/plPL.js +0 -174
- package/node/locales/ptBR.js +0 -171
- package/node/locales/ptPT.js +0 -171
- package/node/locales/roRO.js +0 -171
- package/node/locales/ruRU.js +0 -196
- package/node/locales/skSK.js +0 -202
- package/node/locales/svSE.js +0 -173
- package/node/locales/trTR.js +0 -171
- package/node/locales/ukUA.js +0 -196
- package/node/locales/urPK.js +0 -173
- package/node/locales/viVN.js +0 -173
- package/node/locales/zhCN.js +0 -171
- package/node/locales/zhHK.js +0 -173
- package/node/locales/zhTW.js +0 -173
- package/node/material/components/MUISelectOption.js +0 -24
- package/node/material/icons/GridColumnUnsortedIcon.js +0 -24
- package/node/material/icons/index.js +0 -99
- package/node/material/index.js +0 -116
- package/node/models/api/gridApiCommon.js +0 -5
- package/node/models/api/gridApiCommunity.js +0 -5
- package/node/models/api/gridCallbackDetails.js +0 -5
- package/node/models/api/gridColumnApi.js +0 -5
- package/node/models/api/gridColumnGroupingApi.js +0 -5
- package/node/models/api/gridColumnMenuApi.js +0 -5
- package/node/models/api/gridColumnSpanning.js +0 -5
- package/node/models/api/gridCoreApi.js +0 -5
- package/node/models/api/gridCsvExportApi.js +0 -5
- package/node/models/api/gridDensityApi.js +0 -5
- package/node/models/api/gridEditingApi.js +0 -5
- package/node/models/api/gridFilterApi.js +0 -5
- package/node/models/api/gridFocusApi.js +0 -5
- package/node/models/api/gridHeaderFilteringApi.js +0 -5
- package/node/models/api/gridInfiniteLoaderApi.js +0 -5
- package/node/models/api/gridLocaleTextApi.js +0 -5
- package/node/models/api/gridLoggerApi.js +0 -5
- package/node/models/api/gridParamsApi.js +0 -5
- package/node/models/api/gridPreferencesPanelApi.js +0 -5
- package/node/models/api/gridPrintExportApi.js +0 -5
- package/node/models/api/gridRowApi.js +0 -5
- package/node/models/api/gridRowSelectionApi.js +0 -5
- package/node/models/api/gridRowsMetaApi.js +0 -5
- package/node/models/api/gridScrollApi.js +0 -5
- package/node/models/api/gridSortApi.js +0 -5
- package/node/models/api/gridStateApi.js +0 -5
- package/node/models/api/gridVirtualizationApi.js +0 -5
- package/node/models/api/index.js +0 -148
- package/node/models/colDef/gridColDef.js +0 -5
- package/node/models/colDef/gridColType.js +0 -5
- package/node/models/colDef/gridColumnTypesRecord.js +0 -5
- package/node/models/colDef/index.js +0 -27
- package/node/models/configuration/gridConfiguration.js +0 -5
- package/node/models/configuration/gridRowConfiguration.js +0 -5
- package/node/models/controlStateItem.js +0 -5
- package/node/models/cursorCoordinates.js +0 -5
- package/node/models/elementSize.js +0 -5
- package/node/models/events/gridEventListener.js +0 -5
- package/node/models/events/gridEventLookup.js +0 -5
- package/node/models/events/gridEventPublisher.js +0 -5
- package/node/models/events/index.js +0 -38
- package/node/models/gridApiCaches.js +0 -5
- package/node/models/gridBaseSlots.js +0 -5
- package/node/models/gridCell.js +0 -5
- package/node/models/gridCellClass.js +0 -5
- package/node/models/gridColumnGrouping.js +0 -17
- package/node/models/gridColumnHeaderClass.js +0 -5
- package/node/models/gridColumnSpanning.js +0 -5
- package/node/models/gridDataSource.js +0 -5
- package/node/models/gridDensity.js +0 -5
- package/node/models/gridEditRowModel.js +0 -21
- package/node/models/gridExport.js +0 -5
- package/node/models/gridFeatureMode.js +0 -5
- package/node/models/gridFilterItem.js +0 -16
- package/node/models/gridFilterModel.js +0 -5
- package/node/models/gridFilterOperator.js +0 -5
- package/node/models/gridHeaderFilteringModel.js +0 -5
- package/node/models/gridIconSlotsComponent.js +0 -5
- package/node/models/gridPaginationProps.js +0 -5
- package/node/models/gridRenderContextProps.js +0 -5
- package/node/models/gridRowSelectionModel.js +0 -5
- package/node/models/gridRows.js +0 -5
- package/node/models/gridSlotsComponent.js +0 -5
- package/node/models/gridSlotsComponentsProps.js +0 -5
- package/node/models/gridSortModel.js +0 -5
- package/node/models/gridStateCommunity.js +0 -5
- package/node/models/index.js +0 -280
- package/node/models/logger.js +0 -5
- package/node/models/muiEvent.js +0 -5
- package/node/models/params/gridCellParams.js +0 -5
- package/node/models/params/gridColumnGroupHeaderParams.js +0 -5
- package/node/models/params/gridColumnHeaderParams.js +0 -5
- package/node/models/params/gridColumnOrderChangeParams.js +0 -5
- package/node/models/params/gridColumnResizeParams.js +0 -5
- package/node/models/params/gridEditCellParams.js +0 -32
- package/node/models/params/gridHeaderSelectionCheckboxParams.js +0 -5
- package/node/models/params/gridMenuParams.js +0 -5
- package/node/models/params/gridPreferencePanelParams.js +0 -5
- package/node/models/params/gridRowParams.js +0 -49
- package/node/models/params/gridRowSelectionCheckboxParams.js +0 -5
- package/node/models/params/gridScrollParams.js +0 -5
- package/node/models/params/gridValueOptionsParams.js +0 -5
- package/node/models/params/index.js +0 -148
- package/node/models/props/DataGridProps.js +0 -5
- package/node/themeAugmentation/index.js +0 -27
- package/node/themeAugmentation/overrides.js +0 -5
- package/node/themeAugmentation/props.js +0 -5
- package/node/utils/ResizeObserver.js +0 -16
- package/node/utils/Store.js +0 -31
- package/node/utils/cellBorderUtils.js +0 -29
- package/node/utils/cleanupTracking/CleanupTracking.js +0 -5
- package/node/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +0 -25
- package/node/utils/cleanupTracking/TimerBasedCleanupTracking.js +0 -45
- package/node/utils/composeGridClasses.js +0 -11
- package/node/utils/createControllablePromise.js +0 -17
- package/node/utils/createSelector.js +0 -132
- package/node/utils/doesSupportPreventScroll.js +0 -19
- package/node/utils/domUtils.js +0 -230
- package/node/utils/exportAs.js +0 -44
- package/node/utils/getGridLocalization.js +0 -20
- package/node/utils/getPublicApiRef.js +0 -11
- package/node/utils/index.js +0 -5
- package/node/utils/keyboardUtils.js +0 -54
- package/node/utils/platform.js +0 -8
- package/node/utils/rtlFlipSide.js +0 -29
- package/node/utils/utils.js +0 -223
- package/themeAugmentation/package.json +0 -6
- package/utils/package.json +0 -6
- /package/{components/panel/filterPanel/GridFilterInputValueProps.js → esm/components/menu/columnMenu/GridColumnMenuItemProps.js} +0 -0
- /package/{modern/components/panel/filterPanel/GridFilterInputValueProps.js → esm/components/menu/columnMenu/GridColumnMenuProps.js} +0 -0
- /package/{node/components/menu/columnMenu/GridColumnMenuItemProps.js → hooks/features/dataSource/models.js} +0 -0
- /package/{node/components/menu/columnMenu/GridColumnMenuProps.js → models/gridFilterInputComponent.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,261 +5,333 @@
|
|
|
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.0.0-
|
|
9
|
-
|
|
10
|
-
_Jan 16, 2025_
|
|
8
|
+
## 8.0.0-beta.0
|
|
11
9
|
|
|
12
|
-
|
|
10
|
+
<img width="100%" alt="MUI X v8 Beta is live" src="https://github.com/user-attachments/assets/61ec4dd8-c946-456b-8b45-d51de8772f5d">
|
|
13
11
|
|
|
14
|
-
|
|
12
|
+
_Mar 18, 2025_
|
|
15
13
|
|
|
16
|
-
|
|
14
|
+
We'd like to offer a big thanks to the 21 contributors who made this release possible. Here are some highlights ✨:
|
|
17
15
|
|
|
18
|
-
-
|
|
19
|
-
-
|
|
16
|
+
- 🚀 Add [Time Range Picker](https://next.mui.com/x/react-date-pickers/time-range-picker/) component
|
|
17
|
+
- 🎁 Add support for `@mui/material` version 7 in all X packages
|
|
20
18
|
- 🐞 Bugfixes
|
|
19
|
+
- 🌍 Improve Chinese (zh-CN), (zh-HK), (zh-TW), Czech (cs-CZ), Korean (ko-KR) and Slovak (sk-Sk) locales on the Data Grid
|
|
20
|
+
- 🌍 Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales on the Pickers
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
## Breaking changes
|
|
23
|
+
|
|
24
|
+
- ℹ️ The peer dependency on `@mui/material` has been updated to accept only v7.
|
|
25
|
+
This has been done to increase the adoption rate of ESM.
|
|
26
|
+
Since only v7 of `@mui/material` has proper ESM support, we decided to help with its adoption and fix numerous issues using X packages in environments where transpiling is not an option.
|
|
27
|
+
|
|
28
|
+
Special thanks go out to the community members for their valuable contributions:
|
|
29
|
+
@Blake-McCullough, @hlavacz, @k-rajat19, @layerok, @nusr, @owais635, @yelahj.
|
|
24
30
|
Following are all team members who have contributed to this release:
|
|
25
|
-
@
|
|
31
|
+
@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @DiegoAndai, @flaviendelangle, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @romgrk.
|
|
26
32
|
|
|
27
33
|
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
28
34
|
|
|
29
|
-
|
|
35
|
+
## Alpha release highlights
|
|
30
36
|
|
|
31
|
-
|
|
37
|
+
Below are the highlights of the alpha releases leading up to this beta release:
|
|
32
38
|
|
|
33
|
-
-
|
|
39
|
+
- ⚛️ React 19 support.
|
|
34
40
|
|
|
35
|
-
|
|
41
|
+
- 🛠️ New and improved Data Grid [Toolbar component](https://next.mui.com/x/react-data-grid/components/toolbar/).
|
|
42
|
+
- 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan.
|
|
43
|
+
- 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid.
|
|
44
|
+
- 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/).
|
|
45
|
+
- 🔄 Add Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration).
|
|
46
|
+
- 💫 Support [aggregation with server-side data](https://next.mui.com/x/react-data-grid/server-side-data/aggregation/).
|
|
47
|
+
- 🎁 Support [Server-side lazy loading](https://next.mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid.
|
|
48
|
+
- 🎯 Improved [data caching](https://next.mui.com/x/react-data-grid/server-side-data/#data-caching).
|
|
49
|
+
- 🏎️ Improve Data Grid aggregation, Excel export serialization, mount, resize and scrolling performance.
|
|
50
|
+
- 🎨 Improve Data Grid theming and add default background color.
|
|
36
51
|
|
|
37
|
-
-
|
|
38
|
-
- [
|
|
39
|
-
-
|
|
40
|
-
-
|
|
52
|
+
- 📊 New Pro chart: [Funnel](https://next.mui.com/x/react-charts/funnel/).
|
|
53
|
+
- 📊 New Community chart: [Radar](https://next.mui.com/x/react-charts/radar/) is available in preview for testing.
|
|
54
|
+
- 📊 Charts legend is now an HTML element which can be styled more easily.
|
|
55
|
+
- 📊 Create [custom HTML components](https://next.mui.com/x/react-charts/components/#html-components) using chart data.
|
|
56
|
+
- 📊 Refactor Charts [Tooltip customization](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
|
|
57
|
+
- 📊 Improve Charts [composition](https://next.mui.com/x/react-charts/composition/#overview).
|
|
58
|
+
- 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering).
|
|
59
|
+
- 📊 Add a new API to support multiple axes (decouple `margin` and `axis-size`)
|
|
41
60
|
|
|
42
|
-
|
|
61
|
+
- 🔁 Support [automatic parents and children selection](https://next.mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
|
|
43
62
|
|
|
44
|
-
|
|
63
|
+
### Data Grid
|
|
45
64
|
|
|
46
|
-
-
|
|
47
|
-
- [DataGridPro] Fix width of right-pinned column group during resize (#16199) @cherniavskii
|
|
65
|
+
#### `@mui/x-data-grid@8.0.0-beta.0`
|
|
48
66
|
|
|
49
|
-
|
|
67
|
+
- [DataGrid] Add a slot for unsort icon in column menu (#16918) @layerok
|
|
68
|
+
- [DataGrid] Add click propagation and prevents default on `toggleMenu` click (#16845) @michelengelen
|
|
69
|
+
- [DataGrid] Anchor preference panel to columns/filter trigger (#16953) @KenanYusuf
|
|
70
|
+
- [DataGrid] Fix `QuickFilter` debounce overriding input value (#16856) @KenanYusuf
|
|
71
|
+
- [DataGrid] Fix `printOptions` not respecting `hideFooter` root prop (#14863) @k-rajat19
|
|
72
|
+
- [DataGrid] Fix `processRowUpdate()` error if the row is removed before it is executed (#16741) @arminmeh
|
|
73
|
+
- [DataGrid] Fix bug with adding and removing columns in active edit state (#16888) @Blake-McCullough
|
|
74
|
+
- [DataGrid] Fix columns update not restoring column definition defaults (#16970) @cherniavskii
|
|
75
|
+
- [DataGrid] Fix page scrolling when preference panel is opened (#17004) @KenanYusuf
|
|
76
|
+
- [DataGrid] Fix visual issue with pinned columns and row spanning (#16923) @MBilalShafi
|
|
77
|
+
- [DataGrid] Make column header menu button aria-labels unique (#16796) @owais635
|
|
78
|
+
- [DataGrid] Refactor: create base Pagination (#16759) @romgrk
|
|
79
|
+
- [DataGrid] Update CSS variable naming convention to singular (#16993) @KenanYusuf
|
|
80
|
+
- [DataGrid] Use Material UI CSS vars (#16962) @KenanYusuf
|
|
81
|
+
- [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#15230, #16898 and #16966) @nusr
|
|
82
|
+
- [l10n] Improve Czech (cs-CZ) and Slovak (sk-Sk) locales (#16968) @hlavacz
|
|
83
|
+
- [l10n] Improve Korean (ko-KR) locale (#16807) @yelahj
|
|
50
84
|
|
|
51
|
-
|
|
85
|
+
#### `@mui/x-data-grid-pro@8.0.0-beta.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
52
86
|
|
|
53
|
-
|
|
87
|
+
Same changes as in `@mui/x-data-grid@8.0.0-beta.0`, plus:
|
|
54
88
|
|
|
55
|
-
|
|
89
|
+
- [DataGridPro] Fix header filters not displaying restored values (#16855) @MBilalShafi
|
|
90
|
+
- [DataGridPro] Fix infinite loading not reacting when scrolling to the end (#16926) @arminmeh
|
|
56
91
|
|
|
57
|
-
-
|
|
58
|
-
- The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usemultiinputdaterangefield)
|
|
59
|
-
- 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://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
|
|
92
|
+
#### `@mui/x-data-grid-premium@8.0.0-beta.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
60
93
|
|
|
61
|
-
|
|
94
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-beta.0`, plus:
|
|
62
95
|
|
|
63
|
-
- [
|
|
64
|
-
- [pickers] Remove code duplication for the multi input range fields (#15505) @flaviendelangle
|
|
65
|
-
- [pickers] Rename `onRangePositionChange` into `setRangePosition` in `usePickerRangePositionContext` (#16189) @flaviendelangle
|
|
66
|
-
- [pickers] Use context to pass props from the picker to the field (#16042) @flaviendelangle
|
|
96
|
+
- [DataGridPremium] Fix selection propagation issues with controlled state (#16810) @MBilalShafi
|
|
67
97
|
|
|
68
|
-
|
|
98
|
+
### Date and Time Pickers
|
|
69
99
|
|
|
70
|
-
|
|
100
|
+
#### Breaking changes
|
|
71
101
|
|
|
72
|
-
|
|
102
|
+
- The `useClearableField` hook has been removed.
|
|
103
|
+
The custom field component now receives the `clearable` and `onClear` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#useclearablefield).
|
|
104
|
+
- The `ExportedUseClearableFieldProps`, `UseClearableFieldSlots`, `UseClearableFieldSlotProps`, and `UseClearableFieldResponse` types have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
|
|
73
105
|
|
|
74
|
-
####
|
|
106
|
+
#### `@mui/x-date-pickers@8.0.0-beta.0`
|
|
75
107
|
|
|
76
|
-
-
|
|
77
|
-
-
|
|
108
|
+
- [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16966) @nusr
|
|
109
|
+
- [pickers] Add the Time Range Picker component (#9431) @LukasTy and @flaviendelangle
|
|
110
|
+
- [pickers] Add valid aria labels to the range picker opening button (#16799) @flaviendelangle
|
|
111
|
+
- [pickers] Always use `props.value` as the source of truth when defined (#16853) @flaviendelangle
|
|
112
|
+
- [pickers] Avoid passing unexpected `focusedView` to time renderers (#16869) @LukasTy
|
|
113
|
+
- [pickers] Improve JSDoc (#16858) @flaviendelangle
|
|
114
|
+
- [pickers] Remove `useClearableField` hook (#16859) @LukasTy
|
|
78
115
|
|
|
79
|
-
#### `@mui/x-
|
|
116
|
+
#### `@mui/x-date-pickers-pro@8.0.0-beta.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
80
117
|
|
|
81
|
-
|
|
82
|
-
- [charts] Handle case where gradient stop `offset` could be `Infinite` (#16131) @JCQuintas
|
|
83
|
-
- [charts] Make `useChartGradientId` public (#16106) @JCQuintas
|
|
84
|
-
- [charts] Move z-axis to plugin (#16130) @alexfauquette
|
|
85
|
-
- [charts] Plot data at first render if `skipAnimation` is set to `true` (#16166) @alexfauquette
|
|
86
|
-
- [charts] Replace tooltip mark with style (#16117) @JCQuintas
|
|
87
|
-
- [charts] Support `rtl` for gradient legend (#16115) @JCQuintas
|
|
88
|
-
- [charts] Use plugin system for series and axes (#15865) @alexfauquette
|
|
118
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-beta.0`, plus:
|
|
89
119
|
|
|
90
|
-
|
|
120
|
+
- [DateRangeCalendar] Do not update the previewed day when hovering a day and the value is empty (#16892) @flaviendelangle
|
|
121
|
+
- [TimeRangePicker] Shift popper between start and end input on multi input field (#16920) @LukasTy
|
|
91
122
|
|
|
92
|
-
|
|
123
|
+
### Charts
|
|
124
|
+
|
|
125
|
+
#### Breaking changes
|
|
126
|
+
|
|
127
|
+
- Tick labels in the x-axis of cartesian charts will now have an ellipsis applied to prevent overflow.
|
|
128
|
+
If your tick labels are being clipped sooner than you would like, you can increase the x-axis size by increasing its `height` property.
|
|
129
|
+
The default line-height has also been changed to 1.25, so if you aren't customizing the line height for x-axis tick labels, make sure to double check if the result is desirable.
|
|
130
|
+
|
|
131
|
+
#### `@mui/x-charts@8.0.0-beta.0`
|
|
132
|
+
|
|
133
|
+
- [charts] Add axis highlight to the radar (#16868) @alexfauquette
|
|
134
|
+
- [charts] Add radar labels (#16839) @alexfauquette
|
|
135
|
+
- [charts] Allow breaking line for radar labels (#16947) @alexfauquette
|
|
136
|
+
- [charts] Allow circular grid on radar chart (#16870) @alexfauquette
|
|
137
|
+
- [charts] Allow customizing shape in scatter charts (#16640) @bernardobelchior
|
|
138
|
+
- [charts] Avoid spreading props in demos (#16857) @bernardobelchior
|
|
139
|
+
- [charts] Fix React 18 tests failing due to missing `forwardRef` (#16894) @bernardobelchior
|
|
140
|
+
- [charts] Fix line highlight position with RTL (#16994) @alexfauquette
|
|
141
|
+
- [charts] Fix interaction performance (#16897) @JCQuintas
|
|
142
|
+
- [charts] Fix x-axis tick label overflow (#16709) @bernardobelchior
|
|
143
|
+
- [charts] Grid support time step below 1s (#16957) @alexfauquette
|
|
144
|
+
- [charts] Improve radar slice (#16932) @alexfauquette
|
|
145
|
+
- [charts] Radar add option to highlighting series (#16940) @alexfauquette
|
|
146
|
+
- [charts] Refactor zoom `isInteracting` behavior directly to community code (#16999) @JCQuintas
|
|
147
|
+
- [charts] Remove `fireEvent` usage from tests (#17006) @JCQuintas
|
|
148
|
+
- [charts] Remove dead voronoi code (#16886) @JCQuintas
|
|
149
|
+
- [charts] Remove the polar axis plugin from the default plugins of the ChartContainer (#16936) @alexfauquette
|
|
150
|
+
- [charts] Rename `useIsClient` (#16937) @bernardobelchior
|
|
151
|
+
|
|
152
|
+
#### `@mui/x-charts-pro@8.0.0-beta.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
153
|
+
|
|
154
|
+
Same changes as in `@mui/x-charts@8.0.0-beta.0`.
|
|
93
155
|
|
|
94
156
|
### Tree View
|
|
95
157
|
|
|
96
|
-
#### `@mui/x-tree-view@8.0.0-
|
|
158
|
+
#### `@mui/x-tree-view@8.0.0-beta.0`
|
|
97
159
|
|
|
98
|
-
|
|
160
|
+
Internal changes.
|
|
99
161
|
|
|
100
|
-
#### `@mui/x-tree-view-pro@8.0.0-
|
|
162
|
+
#### `@mui/x-tree-view-pro@8.0.0-beta.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
101
163
|
|
|
102
|
-
Same changes as in `@mui/x-tree-view@8.0.0-
|
|
164
|
+
Same changes as in `@mui/x-tree-view@8.0.0-beta.0`.
|
|
103
165
|
|
|
104
166
|
### Docs
|
|
105
167
|
|
|
106
|
-
- [docs] Add
|
|
107
|
-
- [docs]
|
|
108
|
-
- [docs]
|
|
109
|
-
- [docs] Fix
|
|
110
|
-
- [docs]
|
|
111
|
-
- [docs]
|
|
112
|
-
- [docs]
|
|
168
|
+
- [docs] Add the Time Range Picker to relevant validation demos (#16919) @LukasTy
|
|
169
|
+
- [docs] Adjust Picker field lifecycle explanation (#16901) @LukasTy
|
|
170
|
+
- [docs] Fix custom detail panel toggle state update (#16929) @nusr
|
|
171
|
+
- [docs] Fix Pickers custom field with Autocomplete demo (#16863) @LukasTy
|
|
172
|
+
- [docs] Fix link to the lazy loading demo for the DataGrid (#16907) @nusr
|
|
173
|
+
- [docs] Improve sparkline demo (#16911) @alexfauquette
|
|
174
|
+
- [docs] Remove `showQuickFilter: true` toolbar prop from demos (#17003) @KenanYusuf
|
|
113
175
|
|
|
114
176
|
### Core
|
|
115
177
|
|
|
116
|
-
- [core]
|
|
117
|
-
- [
|
|
118
|
-
- [
|
|
119
|
-
- [infra]
|
|
120
|
-
- [
|
|
121
|
-
- [
|
|
178
|
+
- [core] Fix proptypes and API docs after merge (#16934) @LukasTy
|
|
179
|
+
- [core] Update `@mui/utils` dependency to only v7 (#16928) @Janpot
|
|
180
|
+
- [core] Use MUI Core v7 libraries in packages and docs (#16771) @DiegoAndai
|
|
181
|
+
- [code-infra] Avoid loading package.json with relative path (#16931) @Janpot
|
|
182
|
+
- [code-infra] Bump `cimg/node` image version (#16964) @LukasTy
|
|
183
|
+
- [code-infra] Create `Tanstack query` renovate group (#16989) @LukasTy
|
|
184
|
+
- [code-infra] Fix inconsistent argos test (#16921) @JCQuintas
|
|
185
|
+
- [infra] Added issue permission to workflow (#16865) @michelengelen
|
|
186
|
+
- [infra] Make tests on React 18 part of pipeline (#16933) @LukasTy
|
|
187
|
+
- [infra] changed event trigger from `pull_request` to `pull_request_target` (#16902) @michelengelen
|
|
188
|
+
- [test] Fix Apple M3 failing to execute unit test cases (#16959) @nusr
|
|
122
189
|
|
|
123
|
-
## 8.0.0-alpha.
|
|
190
|
+
## 8.0.0-alpha.14
|
|
124
191
|
|
|
125
|
-
|
|
192
|
+
_Mar 7, 2025_
|
|
126
193
|
|
|
127
|
-
We'd like to offer a big thanks to the
|
|
194
|
+
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
128
195
|
|
|
129
|
-
-
|
|
130
|
-
-
|
|
131
|
-
-
|
|
132
|
-
-
|
|
133
|
-
- 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
|
|
196
|
+
- 🚀📊 New Pro Chart: It is now possible to create Funnel charts—perfect for visualizing conversions, sales pipelines and more!
|
|
197
|
+
<img width="418" alt="Screenshot 2025-01-31 at 12 22 31" src="https://github.com/user-attachments/assets/8cd26821-5f11-46bf-a9bb-34d212880a47" />
|
|
198
|
+
- 🎁 The first iteration of the radar chart is available. Features and refinements will be added in the coming weeks.
|
|
199
|
+
- 🛠️ New and improved [Toolbar component](https://next.mui.com/x/react-data-grid/components/toolbar/) for the data grid
|
|
134
200
|
- 🐞 Bugfixes
|
|
135
201
|
|
|
136
|
-
Special thanks go out to the community
|
|
137
|
-
@
|
|
202
|
+
Special thanks go out to the community member for their valuable contributions:
|
|
203
|
+
@vadimka123.
|
|
204
|
+
|
|
138
205
|
Following are all team members who have contributed to this release:
|
|
139
|
-
@cherniavskii, @flaviendelangle, @JCQuintas, @
|
|
206
|
+
@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen, @noraleonte, @oliviertassinari.
|
|
140
207
|
|
|
141
208
|
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
142
209
|
|
|
143
210
|
### Data Grid
|
|
144
211
|
|
|
145
|
-
####
|
|
212
|
+
#### Breaking changes
|
|
146
213
|
|
|
147
|
-
-
|
|
148
|
-
-
|
|
149
|
-
-
|
|
150
|
-
- [DataGrid] Fix select all checkbox state reset with server side data (#16034) @MBilalShafi
|
|
151
|
-
- [DataGrid] Refactor: create base button props (#15930) @romgrk
|
|
152
|
-
- [DataGrid] Refactor: create tooltip props (#16086) @romgrk
|
|
153
|
-
- [DataGrid] Fix TS error (#16046) @cherniavskii
|
|
214
|
+
- 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://next.mui.com/x/react-data-grid/components/toolbar/#settings-menu) for an example.
|
|
215
|
+
- The quick filter is now shown in the toolbar by default. Use `slotProps={{ toolbar: { showQuickFilter: false } }}` to hide it.
|
|
216
|
+
- The `<GridSaveAltIcon />` icon is not exported anymore. Import `SaveAlt` from `@mui/icons-material` instead.
|
|
154
217
|
|
|
155
|
-
#### `@mui/x-data-grid
|
|
218
|
+
#### `@mui/x-data-grid@8.0.0-alpha.14`
|
|
156
219
|
|
|
157
|
-
|
|
220
|
+
- [DataGrid] Fix `aria-hidden` console error when scrollbar is dragged (#16829) @arminmeh
|
|
221
|
+
- [DataGrid] Fix scroll jump with dynamic row height (#16763) @cherniavskii
|
|
222
|
+
- [DataGrid] New `<Toolbar />` component (#14611) @KenanYusuf
|
|
223
|
+
- [DataGrid] Use new toolbar by default (#16814) @KenanYusuf
|
|
224
|
+
- [DataGrid] Remove the quick filtering on a given column (#16738) @vadimka123
|
|
158
225
|
|
|
159
|
-
#### `@mui/x-data-grid-
|
|
226
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.14` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
160
227
|
|
|
161
|
-
Same changes as in `@mui/x-data-grid
|
|
228
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.14`.
|
|
162
229
|
|
|
163
|
-
- [
|
|
164
|
-
|
|
165
|
-
|
|
230
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.14` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
231
|
+
|
|
232
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.14`.
|
|
166
233
|
|
|
167
234
|
### Date and Time Pickers
|
|
168
235
|
|
|
169
236
|
#### Breaking changes
|
|
170
237
|
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
- The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
|
|
174
|
-
- The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
|
|
175
|
-
- The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-shortcuts).
|
|
176
|
-
- The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
|
|
177
|
-
- The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
|
|
178
|
-
- The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
|
|
179
|
-
- The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-tabs).
|
|
238
|
+
- All Date Time Picker variants now use Digital Clock for time editing.
|
|
239
|
+
- Stop passing invalid date to `onChange` when the date is partially filled — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#treat-partially-filled-date-as-null-in-onchange).
|
|
180
240
|
|
|
181
|
-
#### `@mui/x-date-pickers@8.0.0-alpha.
|
|
241
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.14`
|
|
182
242
|
|
|
183
|
-
- [
|
|
184
|
-
- [
|
|
185
|
-
- [
|
|
186
|
-
- [pickers]
|
|
187
|
-
- [pickers]
|
|
188
|
-
- [pickers]
|
|
189
|
-
- [pickers]
|
|
190
|
-
- [pickers] Rename `AdapterDateFns` into `AdapterDateFnsV2` and `AdapterDateFnsV3` into `AdapterDateFns` (#16082) @LukasTy
|
|
191
|
-
- [pickers] Rename `ctx.onViewChange` to `ctx.setView` and add it to the actions context (#16044) @flaviendelangle
|
|
192
|
-
- [pickers] Support `date-fns-jalali` v4 (#16011) @LukasTy
|
|
193
|
-
- [pickers] Update `closeOnSelect` and `actionBar.actions` default values (#15944) @LukasTy
|
|
194
|
-
- [pickers] Use `usePickerContext()` and `usePickerActionsContext()` instead of passing props to the `shortcuts` and `toolbar` slots (#15948) @flaviendelangle
|
|
195
|
-
- [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16033) @nusr
|
|
196
|
-
- [l10n] Improve Norwegian (nb-NO) locale (#16089) @josteinjhauge
|
|
243
|
+
- [DateTimePicker] Use Digital Clock in all component variants (#16678) @LukasTy
|
|
244
|
+
- [fields] Always use `props.value` as the source of truth when defined (#15875) @flaviendelangle
|
|
245
|
+
- [fields] Fix Fields aria relationship with `helperText` (#16821) @LukasTy
|
|
246
|
+
- [pickers] Add `TValidationProps` generic to the `PickerManager` interface (#16832) @flaviendelangle
|
|
247
|
+
- [pickers] Fix `edge` property setting in different button position cases (#16838) @LukasTy
|
|
248
|
+
- [pickers] Fix typo in JSDoc (#16831) @flaviendelangle
|
|
249
|
+
- [pickers] Refactor the files in the `usePicker` folder (#16680) @flaviendelangle
|
|
197
250
|
|
|
198
|
-
#### `@mui/x-date-pickers-pro@8.0.0-alpha.
|
|
251
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.14` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
199
252
|
|
|
200
|
-
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.
|
|
253
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.14`.
|
|
201
254
|
|
|
202
255
|
### Charts
|
|
203
256
|
|
|
257
|
+
#### `@mui/x-charts@8.0.0-alpha.14`
|
|
258
|
+
|
|
259
|
+
- [charts] Fix `undefined` behaving differently from missing value for axis size (#16844) @bernardobelchior
|
|
260
|
+
- [charts] Fix x-axis text anchor default when language is RTL (#16836) @bernardobelchior
|
|
261
|
+
- [charts] Add Radar chart (#16406) @alexfauquette
|
|
262
|
+
- [charts] Move series default color generation in the series config (#16752) @alexfauquette
|
|
263
|
+
- [charts] Render axis title within axis size (#16730) @bernardobelchior
|
|
264
|
+
- [charts] Split `defaultizeAxis` function into two (#16745) @bernardobelchior
|
|
265
|
+
- [charts] Warn if axes data don't have enough elements (#16830) @alexfauquette
|
|
266
|
+
- [charts] XAxis: Add defaults for `textAnchor` and `dominantBaseline` based on `angle` (#16817) @bernardobelchior
|
|
267
|
+
|
|
268
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.14` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
269
|
+
|
|
270
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.14`, plus:
|
|
271
|
+
|
|
272
|
+
- [charts] Add Funnel chart (#14804) @JCQuintas
|
|
273
|
+
|
|
274
|
+
### Tree View
|
|
275
|
+
|
|
204
276
|
#### Breaking changes
|
|
205
277
|
|
|
206
|
-
-
|
|
207
|
-
- The default legend is now an HTML element and can be styled more easily.
|
|
208
|
-
- 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.
|
|
209
|
-
- `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-direction-value-change-✅).
|
|
210
|
-
- The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#the-getseriestodisplay-function-was-removed).
|
|
278
|
+
- The `selectItem` method has been renamed `setItemSelection`:
|
|
211
279
|
|
|
212
|
-
|
|
280
|
+
```diff
|
|
281
|
+
const { publicAPI } = useTreeItemUtils();
|
|
213
282
|
|
|
214
|
-
|
|
215
|
-
-
|
|
216
|
-
|
|
283
|
+
const handleSelectItem() {
|
|
284
|
+
- publicAPI.selectItem({ event, itemId: props.itemId, shouldBeSelected: true })
|
|
285
|
+
+ publicAPI.setItemSelection({ event, itemId: props.itemId, shouldBeSelected: true })
|
|
286
|
+
}
|
|
287
|
+
```
|
|
217
288
|
|
|
218
|
-
|
|
289
|
+
- The `setItemExpansion` method now receives a single object instead of a list of parameters:
|
|
219
290
|
|
|
220
|
-
|
|
291
|
+
```diff
|
|
292
|
+
const { publicAPI } = useTreeItemUtils();
|
|
221
293
|
|
|
222
|
-
|
|
294
|
+
const handleExpandItem() {
|
|
295
|
+
- publicAPI.setItemExpansion(event, props.itemId, true)
|
|
296
|
+
+ publicAPI.setItemExpansion({ event, itemId: props.itemId, shouldBeExpanded: true })
|
|
297
|
+
}
|
|
298
|
+
```
|
|
223
299
|
|
|
224
|
-
#### `@mui/x-tree-view@8.0.0-alpha.
|
|
300
|
+
#### `@mui/x-tree-view@8.0.0-alpha.14`
|
|
225
301
|
|
|
226
|
-
- [TreeView]
|
|
302
|
+
- [TreeView] Clean the expansion and selection API methods (#16795) @flaviendelangle
|
|
227
303
|
|
|
228
|
-
#### `@mui/x-tree-view-pro@8.0.0-alpha.
|
|
304
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.14` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
229
305
|
|
|
230
|
-
Same changes as in `@mui/x-tree-view@8.0.0-alpha.
|
|
306
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.14`.
|
|
231
307
|
|
|
232
308
|
### Docs
|
|
233
309
|
|
|
234
|
-
- [docs] Fix
|
|
235
|
-
- [docs]
|
|
236
|
-
- [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16084) @tomashauser
|
|
237
|
-
- [docs] Refactor Data Grid with Date Pickers example (#15992) @LukasTy
|
|
238
|
-
- [docs] Unify the wording of the pickers slots breaking changes (#16036) @flaviendelangle
|
|
310
|
+
- [docs] Fix padding package install on mobile (#16794) @oliviertassinari
|
|
311
|
+
- [docs] Typo fixes (#16835) @alexfauquette
|
|
239
312
|
|
|
240
313
|
### Core
|
|
241
314
|
|
|
242
|
-
- [
|
|
243
|
-
- [
|
|
244
|
-
- [
|
|
245
|
-
- [
|
|
246
|
-
- [
|
|
247
|
-
- [test] Stabilize flaky Data Grid tests (#16053) @LukasTy
|
|
315
|
+
- [code-infra] Fix console warning in telemetry package (#16816) @JCQuintas
|
|
316
|
+
- [code-infra] Split date-picker test files (#16825) @JCQuintas
|
|
317
|
+
- [infra] Replace PR label check workflow with reusable version (#16762) @michelengelen
|
|
318
|
+
- [infra] Update label in priority-support issue template (#16767) @michelengelen
|
|
319
|
+
- [test] Add timeout to flaky screenshot tests (#16852) @LukasTy
|
|
248
320
|
|
|
249
|
-
## 8.0.0-alpha.
|
|
321
|
+
## 8.0.0-alpha.13
|
|
250
322
|
|
|
251
|
-
|
|
323
|
+
_Feb 28, 2025_
|
|
252
324
|
|
|
253
|
-
We'd like to offer a big thanks to the
|
|
325
|
+
We'd like to offer a big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:
|
|
254
326
|
|
|
255
|
-
-
|
|
256
|
-
-
|
|
257
|
-
-
|
|
327
|
+
- 📊 Decouple `margin` and `axis-size`. A new API to support multiple axes (#16418) @JCQuintas
|
|
328
|
+
- 🗺️ Added Bangla (bn-BD) locale
|
|
329
|
+
- 🗺️ Improve Russian (ru-RU) and Hungarian (hu-HU) locale on the Data Grid
|
|
258
330
|
|
|
259
|
-
Special thanks go out to the community
|
|
260
|
-
@
|
|
331
|
+
Special thanks go out to the community members for their contributions:
|
|
332
|
+
@denpiligrim, @lhilgert9, @noherczeg, @officialkidmax, @pcorpet.
|
|
261
333
|
Following are all team members who have contributed to this release:
|
|
262
|
-
@flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @romgrk.
|
|
334
|
+
@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @flaviendelangle, @hasdfa, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen, @MBilalShafi, @oliviertassinari, @romgrk.
|
|
263
335
|
|
|
264
336
|
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
265
337
|
|
|
@@ -267,307 +339,456 @@ Following are all team members who have contributed to this release:
|
|
|
267
339
|
|
|
268
340
|
#### Breaking changes
|
|
269
341
|
|
|
270
|
-
- The `
|
|
342
|
+
- The `slots.baseFormControl` component was removed.
|
|
271
343
|
|
|
272
|
-
|
|
344
|
+
- The "Reset" button in the column visibility panel now resets to the initial column visibility model. Previously it was reset to the model that was active at the time the panel was opened. The reset behavior follows these rules:
|
|
273
345
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
- [DataGrid] Move progress components to leaf import (#15914) @romgrk
|
|
278
|
-
- [DataGrid] Move skeleton to leaf import (#15931) @romgrk
|
|
279
|
-
- [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15955) @lauri865
|
|
280
|
-
- [l10n] Improve Dutch (nl-NL) locale (#15994) @JoepVerkoelen
|
|
346
|
+
1. If an initial `columnVisibilityModel` is provided, it resets to that model.
|
|
347
|
+
2. If a controlled `columnVisibilityModel` is provided, it resets to the first model value.
|
|
348
|
+
3. When the columns are updated (via the `columns` prop or `updateColumns()` API method), the reset reference point updates to the current `columnVisibilityModel`.
|
|
281
349
|
|
|
282
|
-
|
|
350
|
+
To revert to the previous behavior, provide a custom component to the `slots.columnsManagement`.
|
|
283
351
|
|
|
284
|
-
|
|
352
|
+
- The deprecated `LicenseInfo` export has been removed from the `@mui/x-data-grid-pro` and `@mui/x-data-grid-premium` packages.
|
|
353
|
+
You have to import it from `@mui/x-license` instead:
|
|
285
354
|
|
|
286
|
-
|
|
355
|
+
```diff
|
|
356
|
+
- import { LicenseInfo } from '@mui/x-data-grid-pro';
|
|
357
|
+
- import { LicenseInfo } from '@mui/x-data-grid-premium';
|
|
358
|
+
+ import { LicenseInfo } from '@mui/x-license';
|
|
287
359
|
|
|
288
|
-
|
|
360
|
+
LicenseInfo.setLicenseKey('YOUR_LICENSE_KEY');
|
|
361
|
+
```
|
|
289
362
|
|
|
290
|
-
- [
|
|
363
|
+
- The row selection model has been changed from `GridRowId[]` to `{ type: 'include' | 'exclude'; ids: Set<GridRowId> }`.
|
|
364
|
+
Using `Set` allows for a more efficient row selection management.
|
|
365
|
+
The `exclude` selection type allows to select all rows except the ones in the `ids` set.
|
|
291
366
|
|
|
292
|
-
|
|
367
|
+
This change impacts the following props:
|
|
293
368
|
|
|
294
|
-
|
|
369
|
+
- `rowSelectionModel`
|
|
370
|
+
- `onRowSelectionModelChange`
|
|
371
|
+
- `initialState.rowSelectionModel`
|
|
295
372
|
|
|
296
|
-
|
|
297
|
-
- [
|
|
373
|
+
```diff
|
|
374
|
+
- const [rowSelectionModel, setRowSelectionModel] = React.useState<GridRowSelectionModel>([]);
|
|
375
|
+
+ const [rowSelectionModel, setRowSelectionModel] = React.useState<GridRowSelectionModel>({ type: 'include', ids: new Set() });
|
|
376
|
+
```
|
|
298
377
|
|
|
299
|
-
|
|
378
|
+
This change also impacts the `gridRowSelectionStateSelector` selector.
|
|
379
|
+
For convenience, use the `gridRowSelectionManagerSelector` selector to handle both selection types:
|
|
300
380
|
|
|
301
|
-
|
|
381
|
+
```diff
|
|
382
|
+
- const rowSelection = gridRowSelectionStateSelector(apiRef);
|
|
383
|
+
- const isRowSelected = rowSelection.includes(rowId);
|
|
384
|
+
+ const rowSelectionManager = gridRowSelectionManagerSelector(apiRef);
|
|
385
|
+
+ const isRowSelected = rowSelectionManager.has(rowId);
|
|
386
|
+
```
|
|
302
387
|
|
|
303
|
-
|
|
388
|
+
There is also a `createRowSelectionManager` utility function that can be used to manage the row selection:
|
|
304
389
|
|
|
305
|
-
|
|
390
|
+
```ts
|
|
391
|
+
const rowSelectionManager = createRowSelectionManager({
|
|
392
|
+
type: 'include',
|
|
393
|
+
ids: new Set(),
|
|
394
|
+
});
|
|
395
|
+
rowSelectionManager.select(rowId);
|
|
396
|
+
rowSelectionManager.unselect(rowId);
|
|
397
|
+
rowSelectionManager.has(rowId);
|
|
398
|
+
```
|
|
306
399
|
|
|
307
|
-
|
|
400
|
+
- The `selectedIdsLookupSelector` selector has been removed. Use the `gridRowSelectionManagerSelector` or `gridRowSelectionStateSelector` selectors instead.
|
|
401
|
+
- The `selectedGridRowsSelector` has been renamed to `gridRowSelectionIdsSelector`.
|
|
402
|
+
- The `selectedGridRowsCountSelector` has been renamed to `gridRowSelectionCountSelector`.
|
|
308
403
|
|
|
309
|
-
|
|
404
|
+
- The data source feature and its related props are now stable.
|
|
310
405
|
|
|
311
|
-
|
|
406
|
+
```diff
|
|
407
|
+
<DataGridPro
|
|
408
|
+
- unstable_dataSource={dataSource}
|
|
409
|
+
- unstable_dataSourceCache={cache}
|
|
410
|
+
- unstable_lazyLoading
|
|
411
|
+
- unstable_lazyLoadingRequestThrottleMs={100}
|
|
412
|
+
+ dataSource={dataSource}
|
|
413
|
+
+ dataSourceCache={cache}
|
|
414
|
+
+ lazyLoading
|
|
415
|
+
+ lazyLoadingRequestThrottleMs={100}
|
|
416
|
+
/>
|
|
417
|
+
```
|
|
312
418
|
|
|
313
|
-
|
|
419
|
+
- The data source API is now stable.
|
|
314
420
|
|
|
315
|
-
|
|
421
|
+
```diff
|
|
422
|
+
- apiRef.current.unstable_dataSource.getRows()
|
|
423
|
+
+ apiRef.current.dataSource.getRows()
|
|
424
|
+
```
|
|
316
425
|
|
|
317
|
-
|
|
426
|
+
- The signature of `unstable_onDataSourceError()` has been updated to support future use-cases.
|
|
318
427
|
|
|
319
|
-
|
|
428
|
+
```diff
|
|
429
|
+
<DataGrid
|
|
430
|
+
- unstable_onDataSourceError={(error: Error, params: GridGetRowsParams) => {
|
|
431
|
+
- if (params.filterModel) {
|
|
432
|
+
- // do something
|
|
433
|
+
- }
|
|
434
|
+
- }}
|
|
435
|
+
+ unstable_onDataSourceError={(error: GridGetRowsError | GridUpdateRowError) => {
|
|
436
|
+
+ if (error instanceof GridGetRowsError && error.params.filterModel) {
|
|
437
|
+
+ // do something
|
|
438
|
+
+ }
|
|
439
|
+
+ }}
|
|
440
|
+
/>
|
|
441
|
+
```
|
|
320
442
|
|
|
321
|
-
|
|
443
|
+
- Fix the type of the `GridSortModel` to allow readonly arrays.
|
|
322
444
|
|
|
323
|
-
|
|
445
|
+
- `GridSortItem` interface is not exported anymore.
|
|
324
446
|
|
|
325
|
-
-
|
|
326
|
-
- [code-infra] Add new `next-env.d.ts` changes (#15947) @JCQuintas
|
|
447
|
+
- The `showToolbar` prop is now required to display the toolbar.
|
|
327
448
|
|
|
328
|
-
|
|
449
|
+
It is no longer necessary to pass `GridToolbar` as a slot to display the default toolbar.
|
|
329
450
|
|
|
330
|
-
|
|
451
|
+
```diff
|
|
452
|
+
<DataGrid
|
|
453
|
+
+ showToolbar
|
|
454
|
+
- slots={{
|
|
455
|
+
- toolbar: GridToolbar,
|
|
456
|
+
- }}
|
|
457
|
+
/>
|
|
458
|
+
```
|
|
331
459
|
|
|
332
|
-
|
|
460
|
+
#### `@mui/x-data-grid@8.0.0-alpha.13`
|
|
333
461
|
|
|
334
|
-
-
|
|
335
|
-
-
|
|
462
|
+
- [DataGrid] Add `showToolbar` prop to enable default toolbar (#16687) @KenanYusuf
|
|
463
|
+
- [DataGrid] Column Visibility: Update "Reset" button behavior (#16626) @MBilalShafi
|
|
464
|
+
- [DataGrid] Column management design updates (#16630) @KenanYusuf
|
|
465
|
+
- [DataGrid] Fix `showColumnVerticalBorder` prop (#16715) @KenanYusuf
|
|
466
|
+
- [DataGrid] Fix scrollbar overlapping cells on mount (#16639) @KenanYusuf
|
|
467
|
+
- [DataGrid] Fix: base `Select` menuprops `onClose()` (#16643) @romgrk
|
|
468
|
+
- [DataGrid] Make `GridSortItem` internal (#16732) @arminmeh
|
|
469
|
+
- [DataGrid] Make data source stable (#16710) @MBilalShafi
|
|
470
|
+
- [DataGrid] Reshape row selection model (#15651) @cherniavskii
|
|
471
|
+
- [DataGrid] Replace `sx` prop usage with `styled()` components (#16665) @KenanYusuf
|
|
472
|
+
- [DataGrid] Refactor: create base `Autocomplete` (#16390) @romgrk
|
|
473
|
+
- [DataGrid] Refactor: remove base form control (#16634) @romgrk
|
|
474
|
+
- [DataGrid] Refactor: remove base input label & adornment (#16646) @romgrk
|
|
475
|
+
- [DataGrid] Refactor: remove material containers (#16633) @romgrk
|
|
476
|
+
- [DataGrid] Refactor: theme to CSS variables (#16588) @romgrk
|
|
477
|
+
- [DataGrid] Update the signature of the `onDataSourceError()` callback (#16718) @MBilalShafi
|
|
478
|
+
- [DataGrid] Use readonly array for the `GridSortModel` (#16627) @pcorpet
|
|
479
|
+
- [DataGrid] Fix the popper focus trap (#16736) @romgrk
|
|
480
|
+
- [l10n] Added Bangla (bn-BD) locale (#16648) @officialkidmax
|
|
481
|
+
- [l10n] Improve Hungarian (hu-HU) locale (#16578) @noherczeg
|
|
482
|
+
- [l10n] Improve Russian (ru-RU) locale (#16591) @denpiligrim
|
|
336
483
|
|
|
337
|
-
|
|
338
|
-
@good-jinu, @k-rajat19.
|
|
339
|
-
Following are all team members who have contributed to this release:
|
|
340
|
-
@alexfauquette, @cherniavskii, @flaviendelangle, @KenanYusuf, @LukasTy, @MBilalShafi, @romgrk.
|
|
484
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.13` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
341
485
|
|
|
342
|
-
|
|
486
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.13`, plus:
|
|
343
487
|
|
|
344
|
-
|
|
488
|
+
- [DataGridPro] Remove `LicenseInfo` reexports (#16671) @cherniavskii
|
|
345
489
|
|
|
346
|
-
####
|
|
490
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.13` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
347
491
|
|
|
348
|
-
|
|
492
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.13`, plus:
|
|
349
493
|
|
|
350
|
-
|
|
351
|
-
- For `.main` element (the one with `role="grid"`), use `slotProps.main`.
|
|
494
|
+
- [DataGridPremium] Use `valueGetter` to get row group keys (#16016) @cherniavskii
|
|
352
495
|
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
```diff
|
|
356
|
-
-detailPanelExpandedRowIds?: GridRowId[];
|
|
357
|
-
+detailPanelExpandedRowIds?: Set<GridRowId>;
|
|
496
|
+
### Date and Time Pickers
|
|
358
497
|
|
|
359
|
-
|
|
360
|
-
+onDetailPanelExpandedRowIdsChange?: (ids: Set<GridRowId>, details: GridCallbackDetails) => void;
|
|
361
|
-
```
|
|
498
|
+
#### Breaking changes
|
|
362
499
|
|
|
363
|
-
- `
|
|
364
|
-
- `gridDetailPanelExpandedRowIdsSelector` returns a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
|
|
365
|
-
- `gridDetailPanelExpandedRowsHeightCacheSelector` was removed.
|
|
500
|
+
- The `<DateRangePicker />` now uses a `dialog` instead of a `tooltip` to render their view when used with a single input range field.
|
|
366
501
|
|
|
367
|
-
#### `@mui/x-
|
|
502
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.13`
|
|
368
503
|
|
|
369
|
-
- [
|
|
370
|
-
- [
|
|
371
|
-
- [
|
|
372
|
-
- [
|
|
373
|
-
- [
|
|
374
|
-
- [DataGrid] Update quick filter input variant (#15909) @KenanYusuf
|
|
375
|
-
- [DataGrid] Use `slotProps` to forward props to `.main` and `.root` elements (#15870) @MBilalShafi
|
|
376
|
-
- [l10n] Improve Korean(ko-KR) locale (#15878) @good-jinu
|
|
504
|
+
- [l10n] Added Bangla (bn-BD) locale (#16648) @officialkidmax
|
|
505
|
+
- [pickers] Clean the typing of the slots on the range pickers (#16670) @flaviendelangle
|
|
506
|
+
- [pickers] Fix Time Clock meridiem button selected styles (#16681) @LukasTy
|
|
507
|
+
- [pickers] Make the single input field the default field on range pickers (#16656) @flaviendelangle
|
|
508
|
+
- [pickers] Move the opening logic to the range fields (#16175) @flaviendelangle
|
|
377
509
|
|
|
378
|
-
#### `@mui/x-
|
|
510
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.13` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
379
511
|
|
|
380
|
-
Same changes as in `@mui/x-
|
|
512
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.13`.
|
|
381
513
|
|
|
382
|
-
|
|
514
|
+
### Charts
|
|
383
515
|
|
|
384
|
-
####
|
|
516
|
+
#### Breaking changes
|
|
385
517
|
|
|
386
|
-
|
|
518
|
+
- Charts array inputs are now `readonly`. Allowing externally defined `as const` to be used as a prop value of the React component.
|
|
387
519
|
|
|
388
|
-
|
|
520
|
+
```tsx
|
|
521
|
+
const xAxis = [{ position: 'bottom' }] as const
|
|
522
|
+
<BarChart xAxis={xAxis} />
|
|
523
|
+
```
|
|
389
524
|
|
|
390
|
-
|
|
525
|
+
- Replace `topAxis`, `rightAxis`, `bottomAxis` and `leftAxis` props by the `position` property in the axis config.
|
|
526
|
+
If you were using them to place axis, set the `position` property to the corresponding value `'top' | 'right' | 'bottom' | 'left'`.
|
|
527
|
+
If you were disabling an axis by setting it to `null`, set its `position` to `'none'`.
|
|
391
528
|
|
|
392
|
-
|
|
529
|
+
```diff
|
|
530
|
+
<LineChart
|
|
531
|
+
yAxis={[
|
|
532
|
+
{
|
|
533
|
+
scaleType: 'linear',
|
|
534
|
+
+ position: 'right',
|
|
535
|
+
},
|
|
536
|
+
]}
|
|
537
|
+
series={[{ data: [1, 10, 30, 50, 70, 90, 100], label: 'linear' }]}
|
|
538
|
+
height={400}
|
|
539
|
+
- rightAxis={{}}
|
|
540
|
+
/>
|
|
541
|
+
```
|
|
393
542
|
|
|
394
|
-
-
|
|
543
|
+
- Remove `position` prop from `ChartsXAxis` and `ChartsYAxis`.
|
|
544
|
+
The `position` prop has been removed from the `ChartsXAxis` and `ChartsYAxis` components. Configure it directly in the axis config.
|
|
395
545
|
|
|
396
|
-
|
|
546
|
+
```diff
|
|
547
|
+
<ChartContainer
|
|
548
|
+
yAxis={[
|
|
549
|
+
{
|
|
550
|
+
id: 'my-axis',
|
|
551
|
+
+ position: 'right',
|
|
552
|
+
},
|
|
553
|
+
]}
|
|
554
|
+
>
|
|
555
|
+
- <ChartsYAxis axisId="my-axis" position="right" />
|
|
556
|
+
+ <ChartsYAxis axisId="my-axis" />
|
|
557
|
+
</ChartContainer>
|
|
558
|
+
```
|
|
397
559
|
|
|
398
|
-
-
|
|
399
|
-
- [pickers] Remove `PickersMonth` and `PickersYear` from the theme and remove the `div` wrapping each button (#15806) @flaviendelangle
|
|
400
|
-
- [pickers] Use the new `ownerState` object on the `<PickersTextField />` component (#15863) @flaviendelangle
|
|
560
|
+
- Add `minTickLabelGap` to x-axis, which allows users to define the minimum gap, in pixels, between two tick labels. The default value is 4px. Make sure to check your charts as the spacing between tick labels might have changed.
|
|
401
561
|
|
|
402
|
-
#### `@mui/x-
|
|
562
|
+
#### `@mui/x-charts@8.0.0-alpha.13`
|
|
403
563
|
|
|
404
|
-
|
|
564
|
+
- [charts] Accept component in `labelMarkType` (#16739) @bernardobelchior
|
|
565
|
+
- [charts] Add `minTickLabelGap` to x-axis (#16548) @bernardobelchior
|
|
566
|
+
- [charts] Add unit test for pie chart with empty series (#16663) @bernardobelchior
|
|
567
|
+
- [charts] Decouple `margin` and `axis-size` (#16418) @JCQuintas
|
|
568
|
+
- [charts] Display slider tooltip on demos (#16723) @JCQuintas
|
|
569
|
+
- [charts] Fix composition docs link (#16761) @bernardobelchior
|
|
570
|
+
- [charts] Fix default label measurement being off (#16635) @bernardobelchior
|
|
571
|
+
- [charts] Fix is highlighted memoization (#16592) @alexfauquette
|
|
572
|
+
- [charts] Fix missing `theme.shape` error in the tooltip (#16748) @alexfauquette
|
|
573
|
+
- [charts] Fix typo in error message (#16641) @JCQuintas
|
|
574
|
+
- [charts] Improve axis size docs (#16673) @JCQuintas
|
|
575
|
+
- [charts] Improve performance of rendering ticks in x-axis (#16536) @bernardobelchior
|
|
576
|
+
- [charts] Make `defaultizeAxis` function type-safe (#16642) @JCQuintas
|
|
577
|
+
- [charts] Make `series.data` readonly (#16645) @JCQuintas
|
|
578
|
+
- [charts] Migrate `ChartsUsageDemo` to TSX and removed NoSnap (#16686) @JCQuintas
|
|
579
|
+
- [charts] Prevent `position='none'` axes from rendering (#16727) @JCQuintas
|
|
580
|
+
- [charts] Make array inputs readonly (#16632) @JCQuintas
|
|
581
|
+
- [charts] Remove state initialization hack (#16520) @alexfauquette
|
|
582
|
+
- [charts] Remove redundant default axis (#16734) @bernardobelchior
|
|
405
583
|
|
|
406
|
-
|
|
584
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.13` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
407
585
|
|
|
408
|
-
|
|
586
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.13`, plus:
|
|
409
587
|
|
|
410
|
-
- [charts]
|
|
588
|
+
- [charts-pro] Add back zoom control (#16550) @alexfauquette
|
|
411
589
|
|
|
412
|
-
|
|
590
|
+
### Tree View
|
|
413
591
|
|
|
414
|
-
|
|
592
|
+
#### `@mui/x-tree-view@8.0.0-alpha.13`
|
|
415
593
|
|
|
416
|
-
|
|
594
|
+
Internal changes.
|
|
417
595
|
|
|
418
|
-
#### `@mui/x-tree-view@8.0.0-alpha.
|
|
596
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.13` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
419
597
|
|
|
420
|
-
|
|
598
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.13`.
|
|
421
599
|
|
|
422
|
-
|
|
600
|
+
### `@mui/x-codemod@8.0.0-alpha.13`
|
|
423
601
|
|
|
424
|
-
|
|
602
|
+
- [codemod] Add a few Data Grid codemods (#16711) @MBilalShafi
|
|
603
|
+
- [codemod] Improve Pickers renaming codemod (#16685) @LukasTy
|
|
425
604
|
|
|
426
|
-
###
|
|
605
|
+
### Docs
|
|
427
606
|
|
|
428
|
-
- [
|
|
607
|
+
- [docs] Fix charts with on bar and line pages (#16712) @alexfauquette
|
|
608
|
+
- [docs] Fix migration guide introduction for charts (#16679) @alexfauquette
|
|
609
|
+
- [docs] Fix remaining charts demos on mobile (#16728) @alexfauquette
|
|
610
|
+
- [docs] Fix scroll overflow on mobile (#16675) @oliviertassinari
|
|
611
|
+
- [docs] Improve Pickers migration page (#16682) @LukasTy
|
|
612
|
+
- [docs] Update small Pickers doc inconsistencies (#16724) @LukasTy
|
|
613
|
+
- [code-infra] Charts changes for `vitest` (#16755) @JCQuintas
|
|
614
|
+
- [code-infra] General packages changes for `vitest` (#16757) @JCQuintas
|
|
615
|
+
- [code-infra] Native Node.js ESM (#16603) @Janpot
|
|
616
|
+
- [infra] Update contributor acknowledgment wording (#16751) @michelengelen
|
|
617
|
+
- [test] Revert timeout increase for possibly slow tests (#16651) @LukasTy
|
|
618
|
+
- [x-license] Introduce usage telemetry (#13530) @hasdfa
|
|
429
619
|
|
|
430
|
-
## 8.0.0-alpha.
|
|
620
|
+
## 8.0.0-alpha.12
|
|
431
621
|
|
|
432
|
-
|
|
622
|
+
_Feb 17, 2025_
|
|
433
623
|
|
|
434
|
-
We'd like to offer a big thanks to the
|
|
624
|
+
We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
|
|
435
625
|
|
|
436
|
-
-
|
|
437
|
-
-
|
|
626
|
+
- 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan
|
|
627
|
+
- ⚡ Improve Data Grid Excel export serialization performance
|
|
628
|
+
- 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid
|
|
629
|
+
- 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid
|
|
438
630
|
- 🐞 Bugfixes
|
|
439
631
|
|
|
440
632
|
Special thanks go out to the community contributors who have helped make this release possible:
|
|
441
|
-
@
|
|
633
|
+
@Neonin, @nusr, and @pawelkula.
|
|
442
634
|
Following are all team members who have contributed to this release:
|
|
443
|
-
@alexfauquette, @arminmeh, @
|
|
444
|
-
|
|
445
|
-
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
635
|
+
@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @romgrk, and @mapache-salvaje.
|
|
446
636
|
|
|
447
637
|
### Data Grid
|
|
448
638
|
|
|
449
639
|
#### Breaking changes
|
|
450
640
|
|
|
451
|
-
- The
|
|
641
|
+
- The `main--hasSkeletonLoadingOverlay` class has been renamed to `main--hiddenContent` and is now also applied when the "No columns" overlay is displayed.
|
|
452
642
|
|
|
453
|
-
|
|
454
|
-
-mySelector(state, instanceId)
|
|
455
|
-
+mySelector(state, arguments, instanceId)
|
|
456
|
-
```
|
|
643
|
+
- The `apiRef.current.forceUpdate()` method was removed. Use selectors combined with `useGridSelector()` hook to react to changes in the state.
|
|
457
644
|
|
|
458
|
-
- The
|
|
645
|
+
- The selectors signature has been updated. They are only accepting `apiRef` as a first argument and `instanceId` is no longer the third argument.
|
|
459
646
|
|
|
460
647
|
```diff
|
|
461
|
-
-
|
|
462
|
-
+
|
|
648
|
+
-mySelector(state, arguments, instanceId)
|
|
649
|
+
+mySelector(apiRef, arguments)
|
|
463
650
|
```
|
|
464
651
|
|
|
465
|
-
-
|
|
466
|
-
- The "row spanning" feature is now stable.
|
|
467
|
-
```diff
|
|
468
|
-
<DataGrid
|
|
469
|
-
- unstable_rowSpanning
|
|
470
|
-
+ rowSpanning
|
|
471
|
-
/>
|
|
472
|
-
```
|
|
473
|
-
- Selected row is now deselected when clicked again.
|
|
652
|
+
#### `@mui/x-data-grid@8.0.0-alpha.12`
|
|
474
653
|
|
|
475
|
-
|
|
654
|
+
- [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf
|
|
655
|
+
- [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh
|
|
656
|
+
- [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @cherniavskii
|
|
657
|
+
- [DataGrid] Create the base Checkbox slot (#16445) @romgrk
|
|
658
|
+
- [DataGrid] Create the base Input slot (#16443) @romgrk
|
|
659
|
+
- [DataGrid] Create the base MenuList slot (#16481) @romgrk
|
|
660
|
+
- [DataGrid] Create the base Popper slot (#16362) @romgrk
|
|
661
|
+
- [DataGrid] Create the base Select slot (#16394) @romgrk
|
|
662
|
+
- [DataGrid] Create the base Switch slot (#16527) @romgrk
|
|
663
|
+
- [DataGrid] Extract `getRowId()` API method as a selector (#16487) @MBilalShafi
|
|
664
|
+
- [DataGrid] Fix the `onClock` prop of the base Select slot (#16557) @romgrk
|
|
665
|
+
- [DataGrid] Go to the first page when sorting/filtering is applied (#16447) @arminmeh
|
|
666
|
+
- [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi
|
|
667
|
+
- [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi
|
|
668
|
+
- [DataGrid] Fix the unexpected behavior of the pagination when using `-1` for "All" rows per page (#16485) @nusr
|
|
669
|
+
- [l10n] Improve Polish (pl-PL) locale (#16123) @pawelkula
|
|
670
|
+
- [l10n] Improve Ukrainian (uk-UA) locale (#16463) @Neonin
|
|
476
671
|
|
|
477
|
-
- [
|
|
478
|
-
- [DataGrid] Fix "No rows" displaying when all rows are pinned (#15335) @nusr
|
|
479
|
-
- [DataGrid] Make row spanning feature stable (#15742) @MBilalShafi
|
|
480
|
-
- [DataGrid] Round dimensions to avoid subpixel rendering error (#15850) @KenanYusuf
|
|
481
|
-
- [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15867) @k-rajat19
|
|
482
|
-
- [DataGrid] Trigger row spanning computation on rows update (#15858) @MBilalShafi
|
|
483
|
-
- [DataGrid] Update filter panel input variant (#15807) @KenanYusuf
|
|
484
|
-
- [DataGrid] Use `columnsManagement` slot (#15817) @k-rajat19
|
|
485
|
-
- [DataGrid] Use new selector signature (#15200) @MBilalShafi
|
|
486
|
-
- [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
|
|
672
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.12` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
487
673
|
|
|
488
|
-
|
|
674
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.12`.
|
|
489
675
|
|
|
490
|
-
|
|
676
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.12` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
491
677
|
|
|
492
|
-
|
|
678
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.12`, plus:
|
|
493
679
|
|
|
494
|
-
|
|
680
|
+
- [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16517) @cherniavskii
|
|
681
|
+
- [DataGridPremium] Fix loading issue + add skeleton overlay (#16282) @MBilalShafi
|
|
682
|
+
- [DataGridPremium] Improve Excel export serialization performance (#16526) @cherniavskii
|
|
683
|
+
- [DataGridPremium] Namespace Excel export worker (#16020) @oliviertassinari
|
|
495
684
|
|
|
496
|
-
|
|
685
|
+
### Date and Time Pickers
|
|
497
686
|
|
|
498
|
-
|
|
687
|
+
#### Breaking changes
|
|
499
688
|
|
|
500
|
-
|
|
689
|
+
- The `aria-label` on the `<Clock />` component and Time Picker opening button has been fixed to rely on the set `ampm` property instead of defaulting to the user's locale.
|
|
501
690
|
|
|
502
|
-
|
|
691
|
+
- The following unused formats have been removed from the adapters and can no longer be overridden via the `dateFormats` prop on the `<LocalizationProvider />` component:
|
|
503
692
|
|
|
504
|
-
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
-
|
|
509
|
-
|
|
693
|
+
- `fullTime` - please use `fullTime12h` and `fullTime24h` instead:
|
|
694
|
+
```diff
|
|
695
|
+
<LocalizationProvider
|
|
696
|
+
dateFormats={{
|
|
697
|
+
- fullTime: 'LT',
|
|
698
|
+
+ fullTime12h: 'hh:mm A',
|
|
699
|
+
+ fullTime24h: 'hh:mm',
|
|
700
|
+
}}
|
|
701
|
+
>
|
|
702
|
+
```
|
|
703
|
+
- `keyboardDateTime` - please use `keyboardDateTime12h` and `keyboardDateTime24h` instead:
|
|
704
|
+
```diff
|
|
705
|
+
<LocalizationProvider
|
|
706
|
+
dateFormats={{
|
|
707
|
+
- keyboardDateTime: 'DD.MM.YYYY | LT',
|
|
708
|
+
+ keyboardDateTime12h: 'DD.MM.YYYY | hh:mm A',
|
|
709
|
+
+ keyboardDateTime24h: 'DD.MM.YYYY | hh:mm',
|
|
710
|
+
}}
|
|
711
|
+
>
|
|
712
|
+
```
|
|
510
713
|
|
|
511
|
-
#### `@mui/x-date-pickers
|
|
714
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.12`
|
|
512
715
|
|
|
513
|
-
|
|
716
|
+
- [pickers] Fix time related aria labels to depend on `ampm` flag value (#16572) @LukasTy
|
|
717
|
+
- [pickers] Remove unused adapter formats (#16522) @LukasTy
|
|
718
|
+
|
|
719
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.12` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
720
|
+
|
|
721
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.12`, plus:
|
|
722
|
+
|
|
723
|
+
- [DateRangePicker] Avoid unnecessary field section focusing (#16474) @LukasTy
|
|
514
724
|
|
|
515
725
|
### Charts
|
|
516
726
|
|
|
517
727
|
#### Breaking changes
|
|
518
728
|
|
|
519
|
-
- The
|
|
729
|
+
- The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#stabilize-useseries-and-usexxxseries-hooks-✅)
|
|
520
730
|
|
|
521
|
-
#### `@mui/x-charts@8.0.0-alpha.
|
|
731
|
+
#### `@mui/x-charts@8.0.0-alpha.12`
|
|
522
732
|
|
|
523
|
-
- [charts]
|
|
524
|
-
- [charts]
|
|
525
|
-
- [charts]
|
|
526
|
-
- [charts]
|
|
527
|
-
- [charts]
|
|
528
|
-
- [charts]
|
|
733
|
+
- [charts] Add docs for scatter "Size" section (#16556) @bernardobelchior
|
|
734
|
+
- [charts] Add `test:performance:browser` script #16600 @bernardobelchior
|
|
735
|
+
- [charts] Add warning when using unknown ids in `useXxxSeries` hooks (#16552) @JCQuintas
|
|
736
|
+
- [charts] Divide the logic for `useXxxSeries` into `useXxxSeriesContext` (#16546) @JCQuintas
|
|
737
|
+
- [charts] Document plugins for internal use (#16504) @JCQuintas
|
|
738
|
+
- [charts] Fix internal typo (#16524) @alexfauquette
|
|
739
|
+
- [charts] Fix type overloads (#16581) @JCQuintas
|
|
740
|
+
- [charts] Fix zoom filter regression (#16507) @alexfauquette
|
|
741
|
+
- [charts] Improve tooltip placement in mobile (#16553) @bernardobelchior
|
|
742
|
+
- [charts] Let the `useXxxSeries` support array of ids and document them (#15545) @JCQuintas
|
|
743
|
+
- [charts] Memoize some tooltip internals (#16564) @alexfauquette
|
|
744
|
+
- [charts] Move Voronoi handler in a dedicated plugin (#16470) @alexfauquette
|
|
745
|
+
- [charts] Performance tests: set license on setup. Update vitest minor version. (#16525) @bernardobelchior
|
|
746
|
+
- [charts] Propagate the axis scale to the `valueFormatter` (#16555) @alexfauquette
|
|
747
|
+
- [charts] Remove `colors` prop from `SparkLineChart`. (#16494) @bernardobelchior
|
|
748
|
+
- [charts] Stabilize series hooks (`useSeries`, `usePieSeries`, etc.) (#16459) @bernardobelchior
|
|
529
749
|
|
|
530
|
-
#### `@mui/x-charts-pro@8.0.0-alpha.
|
|
750
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.12` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
531
751
|
|
|
532
|
-
Same changes as in `@mui/x-charts@8.0.0-alpha.
|
|
752
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.12`.
|
|
533
753
|
|
|
534
754
|
### Tree View
|
|
535
755
|
|
|
536
|
-
#### `@mui/x-tree-view@8.0.0-alpha.
|
|
756
|
+
#### `@mui/x-tree-view@8.0.0-alpha.12`
|
|
537
757
|
|
|
538
|
-
|
|
758
|
+
Internal changes.
|
|
539
759
|
|
|
540
|
-
#### `@mui/x-tree-view-pro@8.0.0-alpha.
|
|
760
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.12` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
541
761
|
|
|
542
|
-
|
|
762
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.12`.
|
|
543
763
|
|
|
544
764
|
### Docs
|
|
545
765
|
|
|
546
|
-
- [docs]
|
|
547
|
-
- [docs]
|
|
548
|
-
- [docs]
|
|
549
|
-
- [docs] Use `updateRows` method for list view demos (#15732) @KenanYusuf
|
|
550
|
-
- [docs] Use date library version from package dev dependencies for sandboxes (#15762) @LukasTy
|
|
766
|
+
- [docs] Add demo for Scatter Chart with linked points (#16505) @bernardobelchior
|
|
767
|
+
- [docs] Improve license installation page (#16403) @michelengelen
|
|
768
|
+
- [docs] Standardize getting started docs across all packages (#16302) @mapache-salvaje
|
|
551
769
|
|
|
552
770
|
### Core
|
|
553
771
|
|
|
554
|
-
- [
|
|
555
|
-
- [code-infra]
|
|
556
|
-
- [
|
|
772
|
+
- [core] Update charts folder structure (#16471) @alexfauquette
|
|
773
|
+
- [code-infra] Bump @mui/monorepo (#16422) @LukasTy
|
|
774
|
+
- [code-infra] Fix lock file (#16562) @LukasTy
|
|
775
|
+
- [code-infra] Fix root package version (#16503) @JCQuintas
|
|
776
|
+
- [code-infra] Update internal packages to `next` releases (#16423) @LukasTy
|
|
777
|
+
- [code-infra] Update package layout for better ESM support (#14386) @Janpot
|
|
778
|
+
- [code-infra] Update peer dependencies for v8 (#16563) @Janpot
|
|
557
779
|
|
|
558
|
-
## 8.0.0-alpha.
|
|
780
|
+
## 8.0.0-alpha.11
|
|
559
781
|
|
|
560
|
-
|
|
782
|
+
_Feb 7, 2025_
|
|
561
783
|
|
|
562
|
-
We'd like to offer a big thanks to the
|
|
784
|
+
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
563
785
|
|
|
564
|
-
-
|
|
565
|
-
- 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching). Check out our [recommendations](https://mui.com/x/react-data-grid/server-side-data/#improving-the-cache-hit-rate) for improving the cache hit rate.
|
|
786
|
+
- ⚡ Mount and resize performance improvements for the Data Grid
|
|
566
787
|
|
|
567
788
|
Special thanks go out to the community contributors who have helped make this release possible:
|
|
568
|
-
@
|
|
789
|
+
@lauri865.
|
|
569
790
|
Following are all team members who have contributed to this release:
|
|
570
|
-
@arminmeh, @
|
|
791
|
+
@alexfauquette, @arminmeh, @bernardobelchior, @flaviendelangle, @Janpot, @KenanYusuf, @LukasTy, @MBilalShafi, @noraleonte, @romgrk.
|
|
571
792
|
|
|
572
793
|
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
573
794
|
|
|
@@ -575,547 +796,2205 @@ Following are all team members who have contributed to this release:
|
|
|
575
796
|
|
|
576
797
|
#### Breaking changes
|
|
577
798
|
|
|
578
|
-
-
|
|
579
|
-
- The `
|
|
580
|
-
|
|
799
|
+
- `createUseGridApiEventHandler()` is not exported anymore.
|
|
800
|
+
- The `filteredRowsLookup` object of the filter state does not contain `true` values anymore. If the row is filtered out, the value is `false`. Otherwise, the row id is not present in the object.
|
|
801
|
+
This change only impacts you if you relied on `filteredRowsLookup` to get ids of filtered rows. In this case,use `gridDataRowIdsSelector` selector to get row ids and check `filteredRowsLookup` for `false` values:
|
|
802
|
+
|
|
581
803
|
```diff
|
|
582
|
-
|
|
583
|
-
-const
|
|
584
|
-
+const
|
|
585
|
-
+const
|
|
804
|
+
const filteredRowsLookup = gridFilteredRowsLookupSelector(apiRef);
|
|
805
|
+
-const filteredRowIds = Object.keys(filteredRowsLookup).filter((rowId) => filteredRowsLookup[rowId] === true);
|
|
806
|
+
+const rowIds = gridDataRowIdsSelector(apiRef);
|
|
807
|
+
+const filteredRowIds = rowIds.filter((rowId) => filteredRowsLookup[rowId] !== false);
|
|
586
808
|
```
|
|
587
|
-
- The Grid is now more aligned with the WAI-ARIA authoring practices and sets the `role` attribute to `treegrid` if the Data Grid is used with row grouping feature.
|
|
588
809
|
|
|
589
|
-
|
|
810
|
+
- The `visibleRowsLookup` state does not contain `true` values anymore. If the row is not visible, the value is `false`. Otherwise, the row id is not present in the object:
|
|
590
811
|
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
- [
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
- [l10n] Improve Turkish (tr-TR) locale (#15734) @ihsanberkozcan
|
|
812
|
+
```diff
|
|
813
|
+
const visibleRowsLookup = gridVisibleRowsLookupSelector(apiRef);
|
|
814
|
+
-const isRowVisible = visibleRowsLookup[rowId] === true;
|
|
815
|
+
+const isRowVisible = visibleRowsLookup[rowId] !== false;
|
|
816
|
+
```
|
|
597
817
|
|
|
598
|
-
#### `@mui/x-data-grid
|
|
818
|
+
#### `@mui/x-data-grid@8.0.0-alpha.11`
|
|
599
819
|
|
|
600
|
-
|
|
820
|
+
- [DataGrid] Avoid `<GridRoot />` double-render pass on mount in SPA mode (#15648) @lauri865
|
|
821
|
+
- [DataGrid] Fix loading overlay not in sync with scroll (#16437) @MBilalShafi
|
|
822
|
+
- [DataGrid] Refactor: remove material `MenuList` import (#16444) @romgrk
|
|
823
|
+
- [DataGrid] Refactor: simplify `useGridApiEventHandler()` (#16479) @romgrk
|
|
601
824
|
|
|
602
|
-
- [
|
|
603
|
-
- [DataGridPro] Server-side lazy loading (#13878) @arminmeh
|
|
825
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.11` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
604
826
|
|
|
605
|
-
|
|
827
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.11`, plus:
|
|
606
828
|
|
|
607
|
-
|
|
829
|
+
- [DataGridPro] Fix the return type of `useGridApiContext()` for Pro and Premium packages on React < 19 (#16441) @arminmeh
|
|
608
830
|
|
|
609
|
-
- [
|
|
831
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.11` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
610
832
|
|
|
611
|
-
|
|
833
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.11`, plus:
|
|
612
834
|
|
|
613
|
-
|
|
835
|
+
- [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16466) @KenanYusuf
|
|
614
836
|
|
|
615
|
-
|
|
837
|
+
### Date and Time Pickers
|
|
616
838
|
|
|
617
|
-
#### `@mui/x-date-pickers@8.0.0-alpha.
|
|
839
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.11`
|
|
618
840
|
|
|
619
|
-
|
|
841
|
+
Internal changes.
|
|
620
842
|
|
|
621
|
-
#### `@mui/x-date-pickers-pro@8.0.0-alpha.
|
|
843
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.11` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
622
844
|
|
|
623
|
-
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.
|
|
845
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.11`, plus:
|
|
846
|
+
|
|
847
|
+
- [DateRangeCalendar] Support arrow navigation with multiple months rendered (#16363) @flaviendelangle
|
|
848
|
+
- [DateRangePicker] Fix `currentMonthCalendarPosition` prop behavior on mobile (#16455) @LukasTy
|
|
849
|
+
- [DateRangePicker] Fix vertical alignment for multi input fields (#16489) @noraleonte
|
|
624
850
|
|
|
625
851
|
### Charts
|
|
626
852
|
|
|
627
|
-
#### `@mui/x-charts@8.0.0-alpha.
|
|
853
|
+
#### `@mui/x-charts@8.0.0-alpha.11`
|
|
628
854
|
|
|
629
|
-
- [charts]
|
|
855
|
+
- [charts] Add `color` prop to `Sparkline` and deprecate `colors` (#16477) @bernardobelchior
|
|
856
|
+
- [charts] Make typescript more flexible about plugins and their params (#16478) @alexfauquette
|
|
857
|
+
- [charts] Remove component for axis event listener (#16314) @alexfauquette
|
|
630
858
|
|
|
631
|
-
#### `@mui/x-charts-pro@8.0.0-alpha.
|
|
859
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.11` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
632
860
|
|
|
633
|
-
Same changes as in `@mui/x-charts@8.0.0-alpha.
|
|
861
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.11`.
|
|
634
862
|
|
|
635
863
|
### Tree View
|
|
636
864
|
|
|
637
|
-
#### `@mui/x-tree-view@8.0.0-alpha.
|
|
865
|
+
#### `@mui/x-tree-view@8.0.0-alpha.11`
|
|
638
866
|
|
|
639
|
-
|
|
867
|
+
Internal changes.
|
|
640
868
|
|
|
641
|
-
#### `@mui/x-tree-view-pro@8.0.0-alpha.
|
|
869
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.11` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
642
870
|
|
|
643
|
-
Same changes as in `@mui/x-tree-view@8.0.0-alpha.
|
|
871
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.11`.
|
|
644
872
|
|
|
645
873
|
### Docs
|
|
646
874
|
|
|
647
|
-
- [docs]
|
|
648
|
-
- [docs] Fix typo in charts axis documentation (#15743) @JCQuintas
|
|
649
|
-
- [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
|
|
875
|
+
- [docs] Update charts colors default value (#16484) @bernardobelchior
|
|
650
876
|
|
|
651
877
|
### Core
|
|
652
878
|
|
|
653
|
-
- [core]
|
|
654
|
-
- [code-infra]
|
|
655
|
-
- [
|
|
656
|
-
- [
|
|
657
|
-
- [code-infra] Playwright 1.49 (#15493) @JCQuintas
|
|
658
|
-
- [test] Force hover in headless Chrome (#15710) @cherniavskii
|
|
879
|
+
- [core] Fix corepack and pnpm installation in CircleCI (#16434) @flaviendelangle
|
|
880
|
+
- [code-infra] Update monorepo (#16112) @Janpot
|
|
881
|
+
- [test] Avoid test warning when running on React 18 (#16486) @LukasTy
|
|
882
|
+
- [test] Disable `react-transition-group` transitions in unit testing (#16288) @lauri865
|
|
659
883
|
|
|
660
|
-
##
|
|
884
|
+
## 8.0.0-alpha.10
|
|
661
885
|
|
|
662
|
-
|
|
886
|
+
_Jan 30, 2025_
|
|
663
887
|
|
|
664
|
-
We'd like to offer a big thanks to the
|
|
888
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
665
889
|
|
|
666
|
-
-
|
|
667
|
-
- `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://next.mui.com/x/react-charts/composition/#overview).
|
|
668
|
-
- Users can create their own HTML components using chart data — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
|
|
669
|
-
- 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
|
|
670
|
-
- 🌍 Improve Dutch locale on the Date and Time Pickers components.
|
|
671
|
-
- 🐞 Bugfixes
|
|
890
|
+
- 🎨 Data Grid theming improvements and default background color
|
|
672
891
|
- 📚 Documentation improvements
|
|
892
|
+
- 🐞 Bugfixes
|
|
673
893
|
|
|
674
894
|
Special thanks go out to the community contributors who have helped make this release possible:
|
|
675
|
-
@
|
|
895
|
+
@k-rajat19, @lauri865, @mateuseap.
|
|
676
896
|
Following are all team members who have contributed to this release:
|
|
677
|
-
@
|
|
897
|
+
@alexfauquette, @flaviendelangle, @JCQuintas, @KenanYusuf, @MBilalShafi, @romgrk, @arminmeh.
|
|
678
898
|
|
|
679
899
|
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
680
900
|
|
|
681
901
|
### Data Grid
|
|
682
902
|
|
|
683
|
-
|
|
903
|
+
### Breaking changes
|
|
684
904
|
|
|
685
|
-
-
|
|
686
|
-
- The
|
|
687
|
-
- The `apiRef.current.resize()` method was removed.
|
|
688
|
-
- The default value of the `rowSelectionPropagation` prop has been changed to `{ parents: true, descendants: true }` which means that the selection will be propagated to the parents and descendants by default.
|
|
689
|
-
To revert to the previous behavior, pass `rowSelectionPropagation` as `{ parents: false, descendants: false }`.
|
|
690
|
-
- If `estimatedRowCount` is used, the text provided to the [Table Pagination](/material-ui/api/table-pagination/) component from the Material UI library is updated and requires additional translations. Check the example at the end of [Index-based pagination section](/x/react-data-grid/pagination/#index-based-pagination).
|
|
905
|
+
- `viewportInnerSize.width` now includes pinned columns' widths (fixes recursive loops in updating dimensions <-> columns)
|
|
906
|
+
- The Data Grid now has a default background color, and its customization has moved from `theme.mixins.MuiDataGrid` to `theme.palette.DataGrid` with the following properties:
|
|
691
907
|
|
|
692
|
-
|
|
908
|
+
- `bg`: Sets the background color of the entire grid (new property)
|
|
909
|
+
- `headerBg`: Sets the background color of the header (previously named `containerBackground`)
|
|
910
|
+
- `pinnedBg`: Sets the background color of pinned rows and columns (previously named `pinnedBackground`)
|
|
693
911
|
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
-
|
|
697
|
-
-
|
|
698
|
-
-
|
|
699
|
-
-
|
|
700
|
-
-
|
|
701
|
-
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
912
|
+
```diff
|
|
913
|
+
const theme = createTheme({
|
|
914
|
+
- mixins: {
|
|
915
|
+
- MuiDataGrid: {
|
|
916
|
+
- containerBackground: '#f8fafc',
|
|
917
|
+
- pinnedBackground: '#f1f5f9',
|
|
918
|
+
- },
|
|
919
|
+
- },
|
|
920
|
+
+ palette: {
|
|
921
|
+
+ DataGrid: {
|
|
922
|
+
+ bg: '#f8fafc',
|
|
923
|
+
+ headerBg: '#e2e8f0',
|
|
924
|
+
+ pinnedBg: '#f1f5f9',
|
|
925
|
+
+ },
|
|
926
|
+
+ },
|
|
927
|
+
});
|
|
928
|
+
```
|
|
707
929
|
|
|
708
|
-
|
|
930
|
+
- The `detailPanels`, `pinnedColumns`, and `pinnedRowsRenderZone` classes have been removed.
|
|
931
|
+
- Return type of the `useGridApiRef()` hook and the type of `apiRef` prop are updated to explicitly include the possibilty of `null`. In addition to this, `useGridApiRef()` returns a reference that is initialized with `null` instead of `{}`.
|
|
709
932
|
|
|
710
|
-
|
|
933
|
+
Only the initial value and the type are updated. Logic that initializes the API and its availability remained the same, which means that if you could access API in a particular line of your code before, you are able to access it as well after this change.
|
|
711
934
|
|
|
712
|
-
|
|
713
|
-
- [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15622) @zinoroman
|
|
714
|
-
- [DataGridPro] Fix selection propagation issue on initialization (#15461) @MBilalShafi
|
|
935
|
+
Depending on the context in which the API is being used, you can decide what is the best way to deal with `null` value. Some options are:
|
|
715
936
|
|
|
716
|
-
|
|
937
|
+
- Use optional chaining
|
|
938
|
+
- Use non-null assertion operator if you are sure your code is always executed when the `apiRef` is not `null`
|
|
939
|
+
- Return early if `apiRef` is `null`
|
|
940
|
+
- Throw an error if `apiRef` is `null`
|
|
717
941
|
|
|
718
|
-
|
|
942
|
+
#### `@mui/x-data-grid@8.0.0-alpha.10`
|
|
719
943
|
|
|
720
|
-
|
|
944
|
+
- [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16297) @lauri865
|
|
945
|
+
- [DataGrid] Remove unused classes from `gridClasses` (#16256) @mateuseap
|
|
946
|
+
- [DataGrid] Add default background color to grid (#16066) @KenanYusuf
|
|
947
|
+
- [DataGrid] Add missing style overrides (#16272) @KenanYusuf
|
|
948
|
+
- [DataGrid] Add possibility of `null` in the return type of the `useGridApiRef()` hook (#16353) @arminmeh
|
|
949
|
+
- [DataGrid] Fix header filters keyboard navigation when there are no rows (#16126) @k-rajat19
|
|
950
|
+
- [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16356) @KenanYusuf
|
|
951
|
+
- [DataGrid] Refactor row state propagation (#15627) @lauri865
|
|
952
|
+
- [DataGrid] Refactor: create TextField props (#16174) @romgrk
|
|
953
|
+
- [DataGrid] Remove outdated warning (#16360) @MBilalShafi
|
|
954
|
+
- [DataGrid] Respect width of `iconContainer` during autosizing (#16399) @michelengelen
|
|
721
955
|
|
|
722
|
-
####
|
|
956
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.10` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
723
957
|
|
|
724
|
-
|
|
958
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.10`, plus:
|
|
725
959
|
|
|
726
|
-
-
|
|
960
|
+
- [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16101) @arminmeh
|
|
961
|
+
- [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16328) @arminmeh
|
|
727
962
|
|
|
728
|
-
#### `@mui/x-
|
|
963
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.10` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
729
964
|
|
|
730
|
-
|
|
731
|
-
- [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15552) @flaviendelangle
|
|
732
|
-
- [pickers] Improve validation internals (#15419) @flaviendelangle
|
|
733
|
-
- [pickers] Remove `TSection` and strictly type `TValue` (#15434) @flaviendelangle
|
|
734
|
-
- [pickers] Remove `orientation`, `isLandscape`, `isRtl`, `wrapperVariant` and `disabled` props from `PickersLayout` (#15494) @flaviendelangle
|
|
735
|
-
- [pickers] Use the new `ownerState` in `<PickersCalendarHeader />`, `<PickersArrowSwitcher />` and `<DayCalendarSkeleton />` (#15499) @flaviendelangle
|
|
736
|
-
- [pickers] Use the new `ownerState` object in all the field components (#15510) @flaviendelangle
|
|
965
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.10`.
|
|
737
966
|
|
|
738
|
-
|
|
967
|
+
### Date and Time Pickers
|
|
739
968
|
|
|
740
|
-
|
|
969
|
+
#### Breaking changes
|
|
970
|
+
|
|
971
|
+
- 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://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
|
|
972
|
+
- The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#muipickerspopper)
|
|
973
|
+
|
|
974
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.10`
|
|
975
|
+
|
|
976
|
+
- [pickers] Clean the internals and the public API of `<PickersPopper />` (#16319) @flaviendelangle
|
|
977
|
+
- [pickers] Improve the JSDoc of the `PickerContextValue` properties (#16327) @flaviendelangle
|
|
978
|
+
- [pickers] Move more field props to the context (#16278) @flaviendelangle
|
|
979
|
+
- [pickers] Do not close the picker when doing keyboard editing (#16402) @flaviendelangle
|
|
980
|
+
|
|
981
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.10` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
982
|
+
|
|
983
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.10`.
|
|
741
984
|
|
|
742
985
|
### Charts
|
|
743
986
|
|
|
744
987
|
#### Breaking changes
|
|
745
988
|
|
|
746
|
-
-
|
|
989
|
+
- Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"`.
|
|
990
|
+
This is to align with the CSS values and reflect the RTL ability of the legend component.
|
|
991
|
+
- The default colors have changed. To keep using the old palette. It is possible to import `blueberryTwilightPalette` from `@mui/x-charts/colorPalettes` and set it on the `colors` property of charts.
|
|
992
|
+
- The `id` property is now optional on the `Pie` and `Scatter` data types.
|
|
747
993
|
|
|
748
|
-
#### `@mui/x-charts@
|
|
994
|
+
#### `@mui/x-charts@8.0.0-alpha.10`
|
|
749
995
|
|
|
750
|
-
- [charts]
|
|
751
|
-
- [charts]
|
|
752
|
-
- [charts]
|
|
753
|
-
- [charts]
|
|
754
|
-
- [charts]
|
|
996
|
+
- [charts] Add new `bumpX` and `bumpY` curve options (#16318) @JCQuintas
|
|
997
|
+
- [charts] Move `tooltipGetter` to `seriesConfig` (#16331) @JCQuintas
|
|
998
|
+
- [charts] Move item highligh feature to plugin system (#16211) @alexfauquette
|
|
999
|
+
- [charts] Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"` (#16315) @JCQuintas
|
|
1000
|
+
- [charts] New default colors (#16373) @JCQuintas
|
|
1001
|
+
- [charts] Make `id` optional on `PieValueType` and `ScatterValueType` (#16389) @JCQuintas
|
|
755
1002
|
|
|
756
|
-
#### `@mui/x-charts-pro@
|
|
1003
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.10` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
757
1004
|
|
|
758
|
-
Same changes as in `@mui/x-charts@
|
|
1005
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.10`.
|
|
759
1006
|
|
|
760
1007
|
### Tree View
|
|
761
1008
|
|
|
762
|
-
#### `@mui/x-tree-view@
|
|
1009
|
+
#### `@mui/x-tree-view@8.0.0-alpha.10`
|
|
763
1010
|
|
|
764
|
-
|
|
1011
|
+
Internal changes.
|
|
765
1012
|
|
|
766
|
-
#### `@mui/x-tree-view-pro@
|
|
1013
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.10` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
767
1014
|
|
|
768
|
-
Same changes as in `@mui/x-tree-view@
|
|
1015
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.10`.
|
|
769
1016
|
|
|
770
1017
|
### Docs
|
|
771
1018
|
|
|
772
|
-
- [docs]
|
|
773
|
-
- [docs] Fix bash comments (#15571) @oliviertassinari
|
|
774
|
-
- [docs] Fix Pickers theme augmentation example (#15672) @LukasTy
|
|
775
|
-
- [docs] Replace use of "e.g." with "for example" (#15572) @oliviertassinari
|
|
776
|
-
- [docs] Update stale `new` and `preview` tags in v8 docs (#15547) @JCQuintas
|
|
777
|
-
- [docs] Fix layout shift image on Tree View docs (#15626) @oliviertassinari
|
|
778
|
-
- [docs] Fix `anchorEl` API page for charts (#15625) @oliviertassinari
|
|
779
|
-
- [docs] Add documentation for the list view feature (#15344) @KenanYusuf
|
|
1019
|
+
- [docs] Improve release documentation (#16321) @MBilalShafi
|
|
780
1020
|
|
|
781
1021
|
### Core
|
|
782
1022
|
|
|
783
|
-
- [core]
|
|
784
|
-
- [
|
|
785
|
-
- [
|
|
1023
|
+
- [core] Reduce chart perf benchmark weight (#16374) @alexfauquette
|
|
1024
|
+
- [test] Fix console warnings while executing tests with React 18 (#16386) @arminmeh
|
|
1025
|
+
- [test] Fix flaky data source tests in DataGrid (#16395) @lauri865
|
|
786
1026
|
|
|
787
|
-
##
|
|
1027
|
+
## 8.0.0-alpha.9
|
|
788
1028
|
|
|
789
|
-
|
|
1029
|
+
_Jan 24, 2025_
|
|
790
1030
|
|
|
791
|
-
We'd like to offer a big thanks to the
|
|
1031
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
792
1032
|
|
|
793
|
-
-
|
|
794
|
-
- ⚛️ React 19 support
|
|
795
|
-
- 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
|
|
796
|
-
- 🐞 Bugfixes
|
|
1033
|
+
- 🌍 Improve Persian (fa-IR) and Urdu (ur-PK) locales on the Data Grid
|
|
797
1034
|
- 📚 Documentation improvements
|
|
1035
|
+
- 🐞 Bugfixes
|
|
798
1036
|
|
|
799
1037
|
Special thanks go out to the community contributors who have helped make this release possible:
|
|
800
|
-
@
|
|
801
|
-
Following are all team members who have contributed to this release:
|
|
802
|
-
@alexfauquette, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @oliviertassinari, @KenanYusuf, @arminmeh.
|
|
1038
|
+
@AxharKhan, @lauri865, @mapache-salvaje, @mostafaRoosta74.
|
|
803
1039
|
|
|
804
|
-
|
|
1040
|
+
Following are all team members who have contributed to this release:
|
|
1041
|
+
@alexfauquette, @cherniavskii, @Janpot, @JCQuintas, @LukasTy, @arminmeh.
|
|
805
1042
|
|
|
806
1043
|
### Data Grid
|
|
807
1044
|
|
|
808
|
-
#### `@mui/x-data-grid@v8.0.0-alpha.
|
|
809
|
-
|
|
810
|
-
- [DataGrid] React 19 support (#15342) @arminmeh
|
|
811
|
-
- [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15347) @k-rajat19
|
|
812
|
-
- [DataGrid] Add test coverage for issues fixed in #15184 (#15282) @MBilalShafi
|
|
813
|
-
- [DataGrid] Change default loading overlay variants (#15504) @KenanYusuf
|
|
814
|
-
- [DataGrid] Fix last separator not being hidden when grid is scrollable (#15543) @KenanYusuf
|
|
815
|
-
- [DataGrid] Fix right column group header border with virtualization (#15470) @hendrikpeilke
|
|
816
|
-
- [DataGrid] Fix row-spanning in combination with column-pinning (#15368) @lhilgert9
|
|
817
|
-
- [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
|
|
818
|
-
- [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
|
|
819
|
-
- [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
|
|
1045
|
+
#### `@mui/x-data-grid@v8.0.0-alpha.9`
|
|
820
1046
|
|
|
821
|
-
|
|
1047
|
+
- [DataGrid] Fix toggling preference panel from toolbar (#16274) @lauri865
|
|
1048
|
+
- [DataGrid] Only try to mount filter button if there are filters present (#16267) @lauri865
|
|
1049
|
+
- [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16279) @arminmeh
|
|
1050
|
+
- [l10n] Improve Persian (fa-IR) locale (#16312) @mostafaRoosta74
|
|
1051
|
+
- [l10n] Improve Urdu (ur-PK) locale (#16295) @AxharKhan
|
|
822
1052
|
|
|
823
|
-
|
|
1053
|
+
#### `@mui/x-data-grid-pro@v8.0.0-alpha.9` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
824
1054
|
|
|
825
|
-
|
|
1055
|
+
Same changes as in `@mui/x-data-grid@v8.0.0-alpha.9`.
|
|
826
1056
|
|
|
827
|
-
|
|
1057
|
+
#### `@mui/x-data-grid-premium@v8.0.0-alpha.9` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
828
1058
|
|
|
829
|
-
|
|
1059
|
+
Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.9`.
|
|
830
1060
|
|
|
831
1061
|
### Date and Time Pickers
|
|
832
1062
|
|
|
833
|
-
####
|
|
834
|
-
|
|
835
|
-
- The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
|
|
836
|
-
- The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
|
|
837
|
-
|
|
838
|
-
#### `@mui/x-date-pickers@v8.0.0-alpha.1`
|
|
839
|
-
|
|
840
|
-
- [fields] Fix focus management with new DOM structure (#15475) @flaviendelangle
|
|
841
|
-
- [pickers] React 19 support (#15342) @arminmeh
|
|
842
|
-
- [pickers] Add new properties to `PickerOwnerState` and `PickerContextValue` (#15415) @flaviendelangle
|
|
843
|
-
- [pickers] Always use `props.value` when it changes (#15490) @flaviendelangle
|
|
844
|
-
- [pickers] Ensure internal value timezone is updated (#15435) @LukasTy
|
|
845
|
-
- [pickers] Fix unused code in `<PickersToolbar />` component (#15515) @LukasTy
|
|
846
|
-
- [pickers] Remove `FieldValueType` in favor of `PickerValueType` (#15259) @arthurbalduini
|
|
847
|
-
- [pickers] Remove the form props from the layout and the toolbar slots (#15492) @flaviendelangle
|
|
848
|
-
- [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15532) @flaviendelangle
|
|
849
|
-
- [TimePicker] Prevent mouse events after `touchend` event (#15346) @arthurbalduini
|
|
1063
|
+
#### `@mui/x-date-pickers@v8.0.0-alpha.9`
|
|
850
1064
|
|
|
851
|
-
|
|
1065
|
+
- [fields] Reset `all` selected state on section edit (#16223) @LukasTy
|
|
852
1066
|
|
|
853
|
-
|
|
1067
|
+
#### `@mui/x-date-pickers-pro@v8.0.0-alpha.9` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
854
1068
|
|
|
855
|
-
|
|
1069
|
+
Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.9`.
|
|
856
1070
|
|
|
857
1071
|
### Charts
|
|
858
1072
|
|
|
859
|
-
#### Breaking
|
|
860
|
-
|
|
861
|
-
- The DX of the Tooltip customization has been refactored
|
|
862
|
-
|
|
863
|
-
- The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
|
|
864
|
-
- The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
|
|
865
|
-
- To override the tooltip content, use the `useItemTooltip` or `useAxisTooltip` hook to get the data, and wrap your component in `ChartsTooltipContainer` to follow the pointer position.
|
|
866
|
-
- To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
|
|
1073
|
+
#### Breaking Changes
|
|
867
1074
|
|
|
868
|
-
|
|
1075
|
+
The `experimentalMarkRendering` prop has been removed from the `LineChart` component.
|
|
1076
|
+
The line mark are now `<circle />` element by default.
|
|
1077
|
+
And you can chose another shape by adding a `shape` property to your line series.
|
|
869
1078
|
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
- The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
|
|
873
|
-
You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
|
|
1079
|
+
The codemod only removes the `experimentalMarkRendering` prop.
|
|
1080
|
+
If you relied on the fact that marks were `path` elements, you need to update your logic.
|
|
874
1081
|
|
|
875
|
-
|
|
876
|
-
- Removed `width` and `height` props from the `ChartsSurface` component.
|
|
877
|
-
- Removed the `viewport` prop from all charts.
|
|
1082
|
+
#### `@mui/x-charts@v8.0.0-alpha.9`
|
|
878
1083
|
|
|
879
|
-
|
|
1084
|
+
- [charts] Expand line with step interpolation (#16229) @alexfauquette
|
|
1085
|
+
- [charts] Fix hydration mismatch (#16261) @alexfauquette
|
|
1086
|
+
- [charts] Fix zoom option reactivity (#16262) @alexfauquette
|
|
1087
|
+
- [charts] Move legend getter to series config (#16307) @alexfauquette
|
|
1088
|
+
- [charts] Use `<circle />` instead of `<path />` for line marks by default (#15220) @alexfauquette
|
|
880
1089
|
|
|
881
|
-
- [
|
|
882
|
-
- [charts] Decouple `<ChartDataProvider />` and `<ChartsSurface />` (#15375) @JCQuintas
|
|
883
|
-
- [charts] Fix Scatter Chart tooltip wrong defaults (#15537) @JCQuintas
|
|
884
|
-
- [charts] Fix key generation for the `<ChartsGrid />` component (#15463) @alexfauquette
|
|
885
|
-
- [charts] Improve `<SvgRefProvider />` to split the received ref (#15424) @JCQuintas
|
|
886
|
-
- [charts] Move interaction state in store (#15426) @alexfauquette
|
|
887
|
-
- [charts] Refactor Tooltip customisation (#15154) @alexfauquette
|
|
888
|
-
- [charts] Remove intrinsic size requirement (#15471) @JCQuintas
|
|
889
|
-
- [charts] Replace `d3-color` with CSS filter for highlight (#15084) @alexfauquette
|
|
890
|
-
- [charts] Split `<DrawingProvider />` into `<DrawingAreaProvider />` and `<SvgRefProvider />` (#15417) @JCQuintas
|
|
1090
|
+
#### `@mui/x-charts-pro@v8.0.0-alpha.9` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
891
1091
|
|
|
892
|
-
|
|
1092
|
+
Same changes as in `@mui/x-charts@v8.0.0-alpha.9`, plus:
|
|
893
1093
|
|
|
894
|
-
|
|
1094
|
+
- [charts-pro] Fix `pro` components watermark (#16222) @JCQuintas
|
|
895
1095
|
|
|
896
1096
|
### Tree View
|
|
897
1097
|
|
|
898
|
-
####
|
|
1098
|
+
#### `@mui/x-tree-view@v8.0.0-alpha.9`
|
|
899
1099
|
|
|
900
|
-
|
|
1100
|
+
Internal changes.
|
|
901
1101
|
|
|
902
|
-
#### `@mui/x-tree-view@v8.0.0-alpha.
|
|
1102
|
+
#### `@mui/x-tree-view-pro@v8.0.0-alpha.9` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
903
1103
|
|
|
904
|
-
|
|
905
|
-
- [TreeView] Do not re-render every Tree Item when the Rich Tree View re-renders (introduce selectors) (#14210) @flaviendelangle
|
|
906
|
-
- [TreeView] Remove `treeId` from the item context (#15542) @flaviendelangle
|
|
907
|
-
- [TreeView] Remove state mutation in `moveItemInTree()` (#15539) @flaviendelangle
|
|
908
|
-
- [TreeItem] Correct the typing of `slotProps.groupTransition` (#15534) @flaviendelangle
|
|
1104
|
+
Same changes as in `@mui/x-tree-view@v8.0.0-alpha.9`.
|
|
909
1105
|
|
|
910
1106
|
### Docs
|
|
911
1107
|
|
|
912
|
-
- [docs] Fix
|
|
913
|
-
- [docs] Fix
|
|
914
|
-
- [docs]
|
|
915
|
-
- [docs]
|
|
916
|
-
- [docs]
|
|
917
|
-
|
|
918
|
-
|
|
1108
|
+
- [docs] Fix `domainLimit` definition (#16270) @alexfauquette
|
|
1109
|
+
- [docs] Fix tiny line chart breaking change (#16268) @alexfauquette
|
|
1110
|
+
- [docs] Revise planned feature callouts and descriptions (#16290) @mapache-salvaje
|
|
1111
|
+
- [docs] Copyedit the Aggregation doc (#16200) @mapache-salvaje
|
|
1112
|
+
- [docs] Revise the Data Grid getting started docs (#15757) @mapache-salvaje
|
|
1113
|
+
- [code-infra] Add 'use client' directive (#16273) @Janpot
|
|
1114
|
+
- [code-infra] Allow dispatch of manual cherry-pick workflow (#16299) @JCQuintas
|
|
1115
|
+
- [code-infra] Update changelog script (#16218) @cherniavskii
|
|
1116
|
+
- [test] Fix flaky column pinning tests (#16219) @cherniavskii
|
|
1117
|
+
- [test] Fix flaky tests (#16257) @lauri865
|
|
919
1118
|
|
|
920
|
-
|
|
921
|
-
- [code-infra] Add `'DensitySelectorGrid'` to time-sensitive argos tests (#15425) @JCQuintas
|
|
922
|
-
- [code-infra] Add documentation to internal types (#15540) @JCQuintas
|
|
923
|
-
- [code-infra] Prevent relative imports across packages (#15437) @JCQuintas
|
|
924
|
-
- [code-infra] Update renovate config to merge `action` pins (#15462) @LukasTy
|
|
925
|
-
- [docs-infra] Fix version tooltip (#15468) @alexfauquette
|
|
926
|
-
- [docs-infra] Transpile `.ts` demo files (#15345) @KenanYusuf
|
|
927
|
-
- [infra] Remove cherry-pick issue write permission (#15456) @oliviertassinari
|
|
1119
|
+
## 8.0.0-alpha.8
|
|
928
1120
|
|
|
929
|
-
|
|
1121
|
+
_Jan 16, 2025_
|
|
930
1122
|
|
|
931
|
-
|
|
1123
|
+
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
932
1124
|
|
|
933
|
-
|
|
1125
|
+
- 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/)
|
|
934
1126
|
|
|
935
|
-
|
|
1127
|
+
<img width="100%" alt="Data Grid Header filters" src="https://github.com/user-attachments/assets/74a50cd9-7a55-41fc-a2b8-f8a0d5b9120e" />
|
|
936
1128
|
|
|
937
|
-
-
|
|
938
|
-
-
|
|
939
|
-
- 🌍 Improve Polish (pl-PL) locale on the Data Grid component
|
|
1129
|
+
- 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
|
|
1130
|
+
- 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering)
|
|
940
1131
|
- 🐞 Bugfixes
|
|
941
|
-
- 📚 Documentation improvements
|
|
942
1132
|
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
1133
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
1134
|
+
@lauri865.
|
|
1135
|
+
Following are all team members who have contributed to this release:
|
|
1136
|
+
@arminmeh, @romgrk, @samuelsycamore, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen.
|
|
947
1137
|
|
|
948
1138
|
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
949
1139
|
|
|
950
1140
|
### Data Grid
|
|
951
1141
|
|
|
952
|
-
####
|
|
1142
|
+
#### Breaking changes
|
|
953
1143
|
|
|
954
|
-
-
|
|
955
|
-
- [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
|
|
956
|
-
- [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
|
|
957
|
-
- [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
|
|
958
|
-
- [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
|
|
959
|
-
- [DataGrid] Remove more material imports (#15063) @romgrk
|
|
960
|
-
- [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
|
|
1144
|
+
- The clear button in header filter cells has been moved to the header filter menu. Use `slotProps={{ headerFilterCell: { showClearIcon: true } }}` to restore the clear button in the cell.
|
|
961
1145
|
|
|
962
|
-
#### `@mui/x-data-grid
|
|
1146
|
+
#### `@mui/x-data-grid@8.0.0-alpha.8`
|
|
963
1147
|
|
|
964
|
-
|
|
1148
|
+
- [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#15961) @lauri865
|
|
1149
|
+
- [DataGrid] Header filter design improvements (#15991) @KenanYusuf
|
|
1150
|
+
- [DataGrid] Scroll restoration (#15623) @lauri865
|
|
1151
|
+
- [DataGrid] Fix row, cell and header memoizations (#15666) @lauri865
|
|
965
1152
|
|
|
966
|
-
- [
|
|
1153
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.8` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
967
1154
|
|
|
968
|
-
|
|
1155
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.8`, plus:
|
|
969
1156
|
|
|
970
|
-
|
|
1157
|
+
- [DataGridPro] Add test for column pinning with disabled column virtualization (#16176) @cherniavskii
|
|
1158
|
+
- [DataGridPro] Fix width of right-pinned column group during resize (#16199) @cherniavskii
|
|
971
1159
|
|
|
972
|
-
- [
|
|
1160
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.8` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1161
|
+
|
|
1162
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.8`.
|
|
973
1163
|
|
|
974
1164
|
### Date and Time Pickers
|
|
975
1165
|
|
|
976
1166
|
#### Breaking changes
|
|
977
1167
|
|
|
978
|
-
- The
|
|
1168
|
+
- The field is now editable if rendered inside a mobile Picker — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#field-editing-on-mobile-pickers)
|
|
1169
|
+
- The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usemultiinputdaterangefield)
|
|
1170
|
+
- 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://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
|
|
979
1171
|
|
|
980
|
-
|
|
981
|
-
- 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.
|
|
1172
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.8`
|
|
982
1173
|
|
|
983
|
-
-
|
|
1174
|
+
- [pickers] Let the field components handle their opening UI, and allow field editing on mobile pickers (#15671) @flaviendelangle
|
|
1175
|
+
- [pickers] Remove code duplication for the multi input range fields (#15505) @flaviendelangle
|
|
1176
|
+
- [pickers] Rename `onRangePositionChange` into `setRangePosition` in `usePickerRangePositionContext` (#16189) @flaviendelangle
|
|
1177
|
+
- [pickers] Use context to pass props from the picker to the field (#16042) @flaviendelangle
|
|
984
1178
|
|
|
985
|
-
|
|
1179
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.8` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
986
1180
|
|
|
987
|
-
|
|
988
|
-
- `UseTimeFieldComponentProps`
|
|
989
|
-
- `UseDateTimeFieldComponentProps`
|
|
990
|
-
- `BaseSingleInputFieldProps`
|
|
991
|
-
- `BaseMultiInputFieldProps`
|
|
992
|
-
- `BasePickersTextFieldProps`
|
|
1181
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.8`.
|
|
993
1182
|
|
|
994
|
-
|
|
1183
|
+
### Charts
|
|
995
1184
|
|
|
996
|
-
|
|
1185
|
+
#### Breaking changes
|
|
997
1186
|
|
|
998
|
-
-
|
|
1187
|
+
- Charts tooltip markers now have different styles for each chart type. The tooltip and legend marks are now the same.
|
|
1188
|
+
- Duplicate axis id's across `x` and `y` axis now log a warning in dev mode. Axis ids should be unique to prevent internal issues.
|
|
999
1189
|
|
|
1000
|
-
#### `@mui/x-
|
|
1190
|
+
#### `@mui/x-charts@8.0.0-alpha.8`
|
|
1001
1191
|
|
|
1002
|
-
- [
|
|
1003
|
-
- [
|
|
1004
|
-
- [
|
|
1005
|
-
- [
|
|
1006
|
-
- [
|
|
1007
|
-
- [
|
|
1008
|
-
- [
|
|
1009
|
-
- [
|
|
1010
|
-
- [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
|
|
1011
|
-
- [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
|
|
1012
|
-
- [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
|
|
1013
|
-
- [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
|
|
1014
|
-
- [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
|
|
1015
|
-
- [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
|
|
1016
|
-
- [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
|
|
1017
|
-
- [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
|
|
1018
|
-
- [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
|
|
1019
|
-
- [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
|
|
1192
|
+
- [charts] Fix flaky charts tests (#16180) @JCQuintas
|
|
1193
|
+
- [charts] Handle case where gradient stop `offset` could be `Infinite` (#16131) @JCQuintas
|
|
1194
|
+
- [charts] Make `useChartGradientId` public (#16106) @JCQuintas
|
|
1195
|
+
- [charts] Move z-axis to plugin (#16130) @alexfauquette
|
|
1196
|
+
- [charts] Plot data at first render if `skipAnimation` is set to `true` (#16166) @alexfauquette
|
|
1197
|
+
- [charts] Replace tooltip mark with style (#16117) @JCQuintas
|
|
1198
|
+
- [charts] Support `rtl` for gradient legend (#16115) @JCQuintas
|
|
1199
|
+
- [charts] Use plugin system for series and axes (#15865) @alexfauquette
|
|
1020
1200
|
|
|
1021
|
-
#### `@mui/x-
|
|
1201
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.8` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1022
1202
|
|
|
1023
|
-
Same changes as in `@mui/x-
|
|
1203
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.8`.
|
|
1024
1204
|
|
|
1025
|
-
###
|
|
1205
|
+
### Tree View
|
|
1026
1206
|
|
|
1027
|
-
####
|
|
1207
|
+
#### `@mui/x-tree-view@8.0.0-alpha.8`
|
|
1028
1208
|
|
|
1029
|
-
|
|
1209
|
+
No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.7`.
|
|
1210
|
+
|
|
1211
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.8` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1212
|
+
|
|
1213
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.8`.
|
|
1214
|
+
|
|
1215
|
+
### Docs
|
|
1216
|
+
|
|
1217
|
+
- [docs] Add example for custom legend (#16169) @alexfauquette
|
|
1218
|
+
- [docs] Add full custom field creation example (#15194) @flaviendelangle
|
|
1219
|
+
- [docs] Copyedit the Data Grid cell selection page (#16099) @samuelsycamore
|
|
1220
|
+
- [docs] Fix demo rendering issue on Codesandbox (#16118) @arminmeh
|
|
1221
|
+
- [docs] Remove broken links (#16167) @alexfauquette
|
|
1222
|
+
- [docs] Split the Data Grid editing page (#14931) @MBilalShafi
|
|
1223
|
+
- [docs] Fix wrong props warnings (#16119) @JCQuintas
|
|
1224
|
+
|
|
1225
|
+
### Core
|
|
1226
|
+
|
|
1227
|
+
- [core] Type all references as `RefObject` (#16124) @arminmeh
|
|
1228
|
+
- [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16160) @LukasTy
|
|
1229
|
+
- [code-infra] Stop renovate from updating `date-fns-v2` (#16158) @LukasTy
|
|
1230
|
+
- [infra] Improve cherry-pick action target list (#16184) @michelengelen
|
|
1231
|
+
- [test] Fix flaky column pinning unit test (#16202) @cherniavskii
|
|
1232
|
+
- [test] Fix flaky screenshot (#16182) @cherniavskii
|
|
1233
|
+
|
|
1234
|
+
## 8.0.0-alpha.7
|
|
1235
|
+
|
|
1236
|
+
_Jan 9, 2025_
|
|
1237
|
+
|
|
1238
|
+
We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
|
|
1239
|
+
|
|
1240
|
+
- 📊 Charts legend is now an HTML element which can be styled more easily
|
|
1241
|
+
- 💫 Support [aggregation with server-side data](/x/react-data-grid/server-side-data/aggregation/)
|
|
1242
|
+
- 🏎️ Improve Data Grid aggregation performance
|
|
1243
|
+
- 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
|
|
1244
|
+
- 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
|
|
1245
|
+
- 🐞 Bugfixes
|
|
1246
|
+
|
|
1247
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
1248
|
+
@derek-0000, @josteinjhauge, @k-rajat19, @nusr, @tomashauser.
|
|
1249
|
+
Following are all team members who have contributed to this release:
|
|
1250
|
+
@cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @arminmeh, @romgrk, @oliviertassinari.
|
|
1251
|
+
|
|
1252
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
1253
|
+
|
|
1254
|
+
### Data Grid
|
|
1255
|
+
|
|
1256
|
+
#### `@mui/x-data-grid@8.0.0-alpha.7`
|
|
1257
|
+
|
|
1258
|
+
- [DataGrid] Improve React 19 support (#15769) @LukasTy
|
|
1259
|
+
- [DataGrid] Add `name` attribute to the checkbox selection column (#15178) @derek-0000
|
|
1260
|
+
- [DataGrid] Fix number filter field formatting values while typing (#16062) @arminmeh
|
|
1261
|
+
- [DataGrid] Fix select all checkbox state reset with server side data (#16034) @MBilalShafi
|
|
1262
|
+
- [DataGrid] Refactor: create base button props (#15930) @romgrk
|
|
1263
|
+
- [DataGrid] Refactor: create tooltip props (#16086) @romgrk
|
|
1264
|
+
- [DataGrid] Fix TS error (#16046) @cherniavskii
|
|
1265
|
+
|
|
1266
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1267
|
+
|
|
1268
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.7`.
|
|
1269
|
+
|
|
1270
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.7` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1271
|
+
|
|
1272
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.7`, plus:
|
|
1273
|
+
|
|
1274
|
+
- [DataGridPremium] Improve aggregation performance for multiple columns (#16097) @cherniavskii
|
|
1275
|
+
- [DataGridPremium] Make Aggregation keyboard accessible in the column menu (#15934) @k-rajat19
|
|
1276
|
+
- [DataGridPremium] Server-side aggregation with data source (#15741) @MBilalShafi
|
|
1277
|
+
|
|
1278
|
+
### Date and Time Pickers
|
|
1279
|
+
|
|
1280
|
+
#### Breaking changes
|
|
1281
|
+
|
|
1282
|
+
- 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://next.mui.com/x/migration/migration-pickers-v7/#✅-rename-date-fns-adapter-imports)
|
|
1283
|
+
- Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#update-default-closeonselect-and-action-bar-actions-values)
|
|
1284
|
+
- The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
|
|
1285
|
+
- The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
|
|
1286
|
+
- The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-shortcuts).
|
|
1287
|
+
- The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
|
|
1288
|
+
- The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
|
|
1289
|
+
- The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
|
|
1290
|
+
- The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-tabs).
|
|
1291
|
+
|
|
1292
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.7`
|
|
1293
|
+
|
|
1294
|
+
- [fields] Handle focusing container with `inputRef.current.focus` on `accessibleFieldDOMStructure` (#15985) @LukasTy
|
|
1295
|
+
- [pickers] Always use `setValue` internally to update the picker value (#16056) @flaviendelangle
|
|
1296
|
+
- [pickers] Create a new context to pass the range position props to the layout components and to the views (#15846) @flaviendelangle
|
|
1297
|
+
- [pickers] Introduce a new concept of `manager` (#15339) @flaviendelangle
|
|
1298
|
+
- [pickers] Improve React 19 support (#15769) @LukasTy
|
|
1299
|
+
- [pickers] Memoize `<PickersActionBar />` (#16071) @LukasTy
|
|
1300
|
+
- [pickers] Remove `NonEmptyDateRange` type (#16035) @flaviendelangle
|
|
1301
|
+
- [pickers] Rename `AdapterDateFns` into `AdapterDateFnsV2` and `AdapterDateFnsV3` into `AdapterDateFns` (#16082) @LukasTy
|
|
1302
|
+
- [pickers] Rename `ctx.onViewChange` to `ctx.setView` and add it to the actions context (#16044) @flaviendelangle
|
|
1303
|
+
- [pickers] Support `date-fns-jalali` v4 (#16011) @LukasTy
|
|
1304
|
+
- [pickers] Update `closeOnSelect` and `actionBar.actions` default values (#15944) @LukasTy
|
|
1305
|
+
- [pickers] Use `usePickerContext()` and `usePickerActionsContext()` instead of passing props to the `shortcuts` and `toolbar` slots (#15948) @flaviendelangle
|
|
1306
|
+
- [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16033) @nusr
|
|
1307
|
+
- [l10n] Improve Norwegian (nb-NO) locale (#16089) @josteinjhauge
|
|
1308
|
+
|
|
1309
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1310
|
+
|
|
1311
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.7`.
|
|
1312
|
+
|
|
1313
|
+
### Charts
|
|
1314
|
+
|
|
1315
|
+
#### Breaking changes
|
|
1316
|
+
|
|
1317
|
+
- Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
|
|
1318
|
+
- The default legend is now an HTML element and can be styled more easily.
|
|
1319
|
+
- 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.
|
|
1320
|
+
- `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-direction-value-change-✅).
|
|
1321
|
+
- The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#the-getseriestodisplay-function-was-removed).
|
|
1322
|
+
|
|
1323
|
+
#### `@mui/x-charts@8.0.0-alpha.7`
|
|
1324
|
+
|
|
1325
|
+
- [charts] New HTML legend & styles (#15733) @JCQuintas
|
|
1326
|
+
- [charts] Improve React 19 support (#15769) @LukasTy
|
|
1327
|
+
- [charts] Fix 301 redirection in the API documentation @oliviertassinari
|
|
1328
|
+
|
|
1329
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1330
|
+
|
|
1331
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.7`.
|
|
1332
|
+
|
|
1333
|
+
### Tree View
|
|
1334
|
+
|
|
1335
|
+
#### `@mui/x-tree-view@8.0.0-alpha.7`
|
|
1336
|
+
|
|
1337
|
+
- [TreeView] Improve React 19 support (#15769) @LukasTy
|
|
1338
|
+
|
|
1339
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1340
|
+
|
|
1341
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.7`.
|
|
1342
|
+
|
|
1343
|
+
### Docs
|
|
1344
|
+
|
|
1345
|
+
- [docs] Fix `EditingWithDatePickers` demo (#15967) @k-rajat19
|
|
1346
|
+
- [docs] Fix inconsistent multi input range field separators (#16043) @flaviendelangle
|
|
1347
|
+
- [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16084) @tomashauser
|
|
1348
|
+
- [docs] Refactor Data Grid with Date Pickers example (#15992) @LukasTy
|
|
1349
|
+
- [docs] Unify the wording of the pickers slots breaking changes (#16036) @flaviendelangle
|
|
1350
|
+
|
|
1351
|
+
### Core
|
|
1352
|
+
|
|
1353
|
+
- [core] Clarify the release strategy (#16014) @MBilalShafi
|
|
1354
|
+
- [core] Small fixes on docs @oliviertassinari
|
|
1355
|
+
- [core] Sync with other repos @oliviertassinari
|
|
1356
|
+
- [core] Update the `release:version` docs (#16038) @cherniavskii
|
|
1357
|
+
- [code-infra] Add `testSkipIf` and `describeSkipIf` (#16049) @JCQuintas
|
|
1358
|
+
- [test] Stabilize flaky Data Grid tests (#16053) @LukasTy
|
|
1359
|
+
|
|
1360
|
+
## 8.0.0-alpha.6
|
|
1361
|
+
|
|
1362
|
+
_Dec 26, 2024_
|
|
1363
|
+
|
|
1364
|
+
We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
|
|
1365
|
+
|
|
1366
|
+
- 🏎️ Improve Data Grid scrolling performance
|
|
1367
|
+
- 🌍 Improve Dutch (nl-NL) locale on the Data Grid
|
|
1368
|
+
- 🐞 Bugfixes
|
|
1369
|
+
|
|
1370
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
1371
|
+
@JoepVerkoelen, @k-rajat19, @lauri865.
|
|
1372
|
+
Following are all team members who have contributed to this release:
|
|
1373
|
+
@flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @romgrk.
|
|
1374
|
+
|
|
1375
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
1376
|
+
|
|
1377
|
+
### Data Grid
|
|
1378
|
+
|
|
1379
|
+
#### Breaking changes
|
|
1380
|
+
|
|
1381
|
+
- The `sanitizeFilterItemValue()` utility is not exported anymore.
|
|
1382
|
+
|
|
1383
|
+
#### `@mui/x-data-grid@8.0.0-alpha.6`
|
|
1384
|
+
|
|
1385
|
+
- [DataGrid] Avoid subscribing to `renderContext` state in grid root for better scroll performance (#15986) @lauri865
|
|
1386
|
+
- [DataGrid] Fix header filters showing clear button while empty (#15829) @k-rajat19
|
|
1387
|
+
- [DataGrid] Improve test coverage of server side data source (#15942) @MBilalShafi
|
|
1388
|
+
- [DataGrid] Move progress components to leaf import (#15914) @romgrk
|
|
1389
|
+
- [DataGrid] Move skeleton to leaf import (#15931) @romgrk
|
|
1390
|
+
- [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15955) @lauri865
|
|
1391
|
+
- [l10n] Improve Dutch (nl-NL) locale (#15994) @JoepVerkoelen
|
|
1392
|
+
|
|
1393
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1394
|
+
|
|
1395
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.6`.
|
|
1396
|
+
|
|
1397
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.6` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1398
|
+
|
|
1399
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.6`, plus:
|
|
1400
|
+
|
|
1401
|
+
- [DataGridPremium] Fix column unpinning with row grouping (#15908) @k-rajat19
|
|
1402
|
+
|
|
1403
|
+
### Date and Time Pickers
|
|
1404
|
+
|
|
1405
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.6`
|
|
1406
|
+
|
|
1407
|
+
- [pickers] Use `usePickerContext()` and `usePickerActionsContext()` to get the actions in the `actionBar` slot and in internal components (#15843) @flaviendelangle
|
|
1408
|
+
- [pickers] Use `usePickerContext()` to get the view-related props in the layout, toolbar and tabs slots (#15606) @flaviendelangle
|
|
1409
|
+
|
|
1410
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1411
|
+
|
|
1412
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.6`.
|
|
1413
|
+
|
|
1414
|
+
### Charts
|
|
1415
|
+
|
|
1416
|
+
#### `@mui/x-charts@8.0.0-alpha.6`
|
|
1417
|
+
|
|
1418
|
+
No changes since `@mui/x-charts@v8.0.0-alpha.5`.
|
|
1419
|
+
|
|
1420
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1421
|
+
|
|
1422
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.6`.
|
|
1423
|
+
|
|
1424
|
+
### Tree View
|
|
1425
|
+
|
|
1426
|
+
#### `@mui/x-tree-view@8.0.0-alpha.6`
|
|
1427
|
+
|
|
1428
|
+
No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.5`.
|
|
1429
|
+
|
|
1430
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1431
|
+
|
|
1432
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.6`.
|
|
1433
|
+
|
|
1434
|
+
### Docs
|
|
1435
|
+
|
|
1436
|
+
- [docs] Remove production profiler from docs build (#15959) @lauri865
|
|
1437
|
+
- [code-infra] Add new `next-env.d.ts` changes (#15947) @JCQuintas
|
|
1438
|
+
|
|
1439
|
+
## 8.0.0-alpha.5
|
|
1440
|
+
|
|
1441
|
+
_Dec 19, 2024_
|
|
1442
|
+
|
|
1443
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
1444
|
+
|
|
1445
|
+
- 🌍 Improve Korean (ko-KR) locale on the Data Grid
|
|
1446
|
+
- 🐞 Bugfixes
|
|
1447
|
+
|
|
1448
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
1449
|
+
@good-jinu, @k-rajat19.
|
|
1450
|
+
Following are all team members who have contributed to this release:
|
|
1451
|
+
@alexfauquette, @cherniavskii, @flaviendelangle, @KenanYusuf, @LukasTy, @MBilalShafi, @romgrk.
|
|
1452
|
+
|
|
1453
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
1454
|
+
|
|
1455
|
+
### Data Grid
|
|
1456
|
+
|
|
1457
|
+
#### Breaking changes
|
|
1458
|
+
|
|
1459
|
+
- Passing additional props (like `data-*`, `aria-*`) directly on the Data Grid component is no longer supported. To pass the props, use `slotProps`:
|
|
1460
|
+
|
|
1461
|
+
- For `.root` element, use `slotProps.root`.
|
|
1462
|
+
- For `.main` element (the one with `role="grid"`), use `slotProps.main`.
|
|
1463
|
+
|
|
1464
|
+
- `detailPanelExpandedRowIds` and `onDetailPanelExpandedRowIdsChange` props use a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array:
|
|
1465
|
+
|
|
1466
|
+
```diff
|
|
1467
|
+
-detailPanelExpandedRowIds?: GridRowId[];
|
|
1468
|
+
+detailPanelExpandedRowIds?: Set<GridRowId>;
|
|
1469
|
+
|
|
1470
|
+
-onDetailPanelExpandedRowIdsChange?: (ids: GridRowId[], details: GridCallbackDetails) => void;
|
|
1471
|
+
+onDetailPanelExpandedRowIdsChange?: (ids: Set<GridRowId>, details: GridCallbackDetails) => void;
|
|
1472
|
+
```
|
|
1473
|
+
|
|
1474
|
+
- `apiRef.current.getExpandedDetailPanels` and `apiRef.current.setExpandedDetailPanels` methods receive and return a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
|
|
1475
|
+
- `gridDetailPanelExpandedRowIdsSelector` returns a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
|
|
1476
|
+
- `gridDetailPanelExpandedRowsHeightCacheSelector` was removed.
|
|
1477
|
+
|
|
1478
|
+
#### `@mui/x-data-grid@8.0.0-alpha.5`
|
|
1479
|
+
|
|
1480
|
+
- [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15915) @k-rajat19
|
|
1481
|
+
- [DataGrid] Fix autosizing with virtualized columns (#15116) @k-rajat19
|
|
1482
|
+
- [DataGrid] Move `<Badge />` to leaf import (#15879) @romgrk
|
|
1483
|
+
- [DataGrid] Move `<ListItemText />` and `<ListItemIcon />` to leaf import (#15869) @romgrk
|
|
1484
|
+
- [DataGrid] Remove the Joy UI demo (#15913) @romgrk
|
|
1485
|
+
- [DataGrid] Update quick filter input variant (#15909) @KenanYusuf
|
|
1486
|
+
- [DataGrid] Use `slotProps` to forward props to `.main` and `.root` elements (#15870) @MBilalShafi
|
|
1487
|
+
- [l10n] Improve Korean(ko-KR) locale (#15878) @good-jinu
|
|
1488
|
+
|
|
1489
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1490
|
+
|
|
1491
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.5`, plus:
|
|
1492
|
+
|
|
1493
|
+
- [DataGridPro] Use `Set` for `detailPanelExpandedRowIds` (#15835) @cherniavskii
|
|
1494
|
+
|
|
1495
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.5` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1496
|
+
|
|
1497
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.5`.
|
|
1498
|
+
|
|
1499
|
+
### Date and Time Pickers
|
|
1500
|
+
|
|
1501
|
+
#### Breaking changes
|
|
1502
|
+
|
|
1503
|
+
- The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#month-calendar).
|
|
1504
|
+
|
|
1505
|
+
- The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#year-calendar).
|
|
1506
|
+
|
|
1507
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.5`
|
|
1508
|
+
|
|
1509
|
+
- [pickers] Add verification to disable skipped hours in spring forward DST (#15849) @flaviendelangle
|
|
1510
|
+
- [pickers] Remove `PickersMonth` and `PickersYear` from the theme and remove the `div` wrapping each button (#15806) @flaviendelangle
|
|
1511
|
+
- [pickers] Use the new `ownerState` object on the `<PickersTextField />` component (#15863) @flaviendelangle
|
|
1512
|
+
|
|
1513
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1514
|
+
|
|
1515
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.5`.
|
|
1516
|
+
|
|
1517
|
+
### Charts
|
|
1518
|
+
|
|
1519
|
+
#### `@mui/x-charts@8.0.0-alpha.5`
|
|
1520
|
+
|
|
1521
|
+
- [charts] Fix `<ScatterChart />` value type if `null` (#15917) @alexfauquette
|
|
1522
|
+
|
|
1523
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1524
|
+
|
|
1525
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.5`.
|
|
1526
|
+
|
|
1527
|
+
### Tree View
|
|
1528
|
+
|
|
1529
|
+
#### `@mui/x-tree-view@8.0.0-alpha.5`
|
|
1530
|
+
|
|
1531
|
+
No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.4`.
|
|
1532
|
+
|
|
1533
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1534
|
+
|
|
1535
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.5`.
|
|
1536
|
+
|
|
1537
|
+
### Core
|
|
1538
|
+
|
|
1539
|
+
- [code-infra] Remove `@mui/material-nextjs` dependency (#15925) @LukasTy
|
|
1540
|
+
|
|
1541
|
+
## 8.0.0-alpha.4
|
|
1542
|
+
|
|
1543
|
+
_Dec 13, 2024_
|
|
1544
|
+
|
|
1545
|
+
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
1546
|
+
|
|
1547
|
+
- 🌍 Improve Romanian locale on the Data Grid and Pickers
|
|
1548
|
+
- 📚 Documentation improvements
|
|
1549
|
+
- 🐞 Bugfixes
|
|
1550
|
+
|
|
1551
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
1552
|
+
@k-rajat19, @nusr, @rares985, @zivl.
|
|
1553
|
+
Following are all team members who have contributed to this release:
|
|
1554
|
+
@alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi.
|
|
1555
|
+
|
|
1556
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
1557
|
+
|
|
1558
|
+
### Data Grid
|
|
1559
|
+
|
|
1560
|
+
#### Breaking changes
|
|
1561
|
+
|
|
1562
|
+
- The selectors signature has been updated due to the support of arguments in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
|
|
1563
|
+
|
|
1564
|
+
```diff
|
|
1565
|
+
-mySelector(state, instanceId)
|
|
1566
|
+
+mySelector(state, arguments, instanceId)
|
|
1567
|
+
```
|
|
1568
|
+
|
|
1569
|
+
- The `useGridSelector` signature has been updated due to the introduction of arguments parameter in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
|
|
1570
|
+
|
|
1571
|
+
```diff
|
|
1572
|
+
-const output = useGridSelector(apiRef, selector, equals)
|
|
1573
|
+
+const output = useGridSelector(apiRef, selector, arguments, equals)
|
|
1574
|
+
```
|
|
1575
|
+
|
|
1576
|
+
- The default variant for text fields and selects in the filter panel has been changed to `outlined`.
|
|
1577
|
+
- The "row spanning" feature is now stable.
|
|
1578
|
+
```diff
|
|
1579
|
+
<DataGrid
|
|
1580
|
+
- unstable_rowSpanning
|
|
1581
|
+
+ rowSpanning
|
|
1582
|
+
/>
|
|
1583
|
+
```
|
|
1584
|
+
- Selected row is now deselected when clicked again.
|
|
1585
|
+
|
|
1586
|
+
#### `@mui/x-data-grid@8.0.0-alpha.4`
|
|
1587
|
+
|
|
1588
|
+
- [DataGrid] Deselect selected row on click (#15509) @k-rajat19
|
|
1589
|
+
- [DataGrid] Fix "No rows" displaying when all rows are pinned (#15335) @nusr
|
|
1590
|
+
- [DataGrid] Make row spanning feature stable (#15742) @MBilalShafi
|
|
1591
|
+
- [DataGrid] Round dimensions to avoid subpixel rendering error (#15850) @KenanYusuf
|
|
1592
|
+
- [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15867) @k-rajat19
|
|
1593
|
+
- [DataGrid] Trigger row spanning computation on rows update (#15858) @MBilalShafi
|
|
1594
|
+
- [DataGrid] Update filter panel input variant (#15807) @KenanYusuf
|
|
1595
|
+
- [DataGrid] Use `columnsManagement` slot (#15817) @k-rajat19
|
|
1596
|
+
- [DataGrid] Use new selector signature (#15200) @MBilalShafi
|
|
1597
|
+
- [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
|
|
1598
|
+
|
|
1599
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1600
|
+
|
|
1601
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.4`, plus:
|
|
1602
|
+
|
|
1603
|
+
- [DataGridPro] Make row reordering work with pagination (#15355) @k-rajat19
|
|
1604
|
+
|
|
1605
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.4` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1606
|
+
|
|
1607
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.4`, plus:
|
|
1608
|
+
|
|
1609
|
+
- [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15739) @arminmeh
|
|
1610
|
+
|
|
1611
|
+
### Date and Time Pickers
|
|
1612
|
+
|
|
1613
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.4`
|
|
1614
|
+
|
|
1615
|
+
- [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
|
|
1616
|
+
- [pickers] Clean `usePicker` logic (#15763) @flaviendelangle
|
|
1617
|
+
- [pickers] Rename layout `ownerState` property from `isRtl` to `layoutDirection` (#15803) @flaviendelangle
|
|
1618
|
+
- [pickers] Use the new `ownerState` in `useClearableField` (#15776) @flaviendelangle
|
|
1619
|
+
- [pickers] Use the new `ownerState` in the toolbar components (#15777) @flaviendelangle
|
|
1620
|
+
- [pickers] Use the new `ownerState` object for the clock components and the desktop / mobile wrappers (#15669) @flaviendelangle
|
|
1621
|
+
|
|
1622
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1623
|
+
|
|
1624
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.4`.
|
|
1625
|
+
|
|
1626
|
+
### Charts
|
|
1627
|
+
|
|
1628
|
+
#### Breaking changes
|
|
1629
|
+
|
|
1630
|
+
- The default styling of the charts tooltip has been updated.
|
|
1631
|
+
|
|
1632
|
+
#### `@mui/x-charts@8.0.0-alpha.4`
|
|
1633
|
+
|
|
1634
|
+
- [charts] Fix hydration missmatch (#15647) @alexfauquette
|
|
1635
|
+
- [charts] Fix internal spelling typo (#15805) @zivl
|
|
1636
|
+
- [charts] Fix scatter dataset with missing data (#15802) @alexfauquette
|
|
1637
|
+
- [charts] HTML Labels (#15813) @JCQuintas
|
|
1638
|
+
- [charts] Only access store values by using hooks (#15764) @alexfauquette
|
|
1639
|
+
- [charts] Update Tooltip style (#15630) @alexfauquette
|
|
1640
|
+
|
|
1641
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1642
|
+
|
|
1643
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.4`.
|
|
1644
|
+
|
|
1645
|
+
### Tree View
|
|
1646
|
+
|
|
1647
|
+
#### `@mui/x-tree-view@8.0.0-alpha.4`
|
|
1648
|
+
|
|
1649
|
+
No changes, releasing to keep the versions in sync.
|
|
1650
|
+
|
|
1651
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1652
|
+
|
|
1653
|
+
Releasing to benefit from license package fix (#15814).
|
|
1654
|
+
|
|
1655
|
+
### Docs
|
|
1656
|
+
|
|
1657
|
+
- [docs] Clean Joy and Browser custom field demos (#15707) @flaviendelangle
|
|
1658
|
+
- [docs] Fix outdated link to handbook (#15855) @oliviertassinari
|
|
1659
|
+
- [docs] Improve Pickers accessible DOM migration section description (#15596) @LukasTy
|
|
1660
|
+
- [docs] Use `updateRows` method for list view demos (#15732) @KenanYusuf
|
|
1661
|
+
- [docs] Use date library version from package dev dependencies for sandboxes (#15762) @LukasTy
|
|
1662
|
+
|
|
1663
|
+
### Core
|
|
1664
|
+
|
|
1665
|
+
- [code-infra] Add Charts sandbox generation (#15830) @JCQuintas
|
|
1666
|
+
- [code-infra] Remove redundant `@type/react-test-renderer` dep (#15766) @LukasTy
|
|
1667
|
+
- [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15814) @arminmeh
|
|
1668
|
+
|
|
1669
|
+
## 8.0.0-alpha.3
|
|
1670
|
+
|
|
1671
|
+
_Dec 5, 2024_
|
|
1672
|
+
|
|
1673
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
1674
|
+
|
|
1675
|
+
- 💫 Support [Server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid. Use [data source](https://mui.com/x/react-data-grid/server-side-data/#data-source) to fetch a range of rows on demand and update the rows in the same way as described in [Infinite loading](https://mui.com/x/react-data-grid/row-updates/#infinite-loading) and [Lazy loading](https://mui.com/x/react-data-grid/row-updates/#lazy-loading) without the need to use any additional event listeners and callbacks.
|
|
1676
|
+
- 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching). Check out our [recommendations](https://mui.com/x/react-data-grid/server-side-data/#improving-the-cache-hit-rate) for improving the cache hit rate.
|
|
1677
|
+
|
|
1678
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
1679
|
+
@ihsanberkozcan, @k-rajat19, @perezShaked.
|
|
1680
|
+
Following are all team members who have contributed to this release:
|
|
1681
|
+
@arminmeh, @cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte.
|
|
1682
|
+
|
|
1683
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
1684
|
+
|
|
1685
|
+
### Data Grid
|
|
1686
|
+
|
|
1687
|
+
#### Breaking changes
|
|
1688
|
+
|
|
1689
|
+
- The "Select all" checkbox is now checked when all the selectable rows are selected, ignoring rows that are not selectable because of the `isRowSelectable` prop.
|
|
1690
|
+
- The `rowPositionsDebounceMs` prop was removed.
|
|
1691
|
+
- The `gridRowsDataRowIdToIdLookupSelector` selector was removed. Use the `gridRowsLookupSelector` selector in combination with the `getRowId()` API method instead.
|
|
1692
|
+
```diff
|
|
1693
|
+
-const idToIdLookup = gridRowsDataRowIdToIdLookupSelector(apiRef);
|
|
1694
|
+
-const rowId = idToIdLookup[id]
|
|
1695
|
+
+const rowsLookup = gridRowsLookupSelector(apiRef);
|
|
1696
|
+
+const rowId = apiRef.current.getRowId(rowsLookup[id])
|
|
1697
|
+
```
|
|
1698
|
+
- The Grid is now more aligned with the WAI-ARIA authoring practices and sets the `role` attribute to `treegrid` if the Data Grid is used with row grouping feature.
|
|
1699
|
+
|
|
1700
|
+
#### `@mui/x-data-grid@8.0.0-alpha.3`
|
|
1701
|
+
|
|
1702
|
+
- [DataGrid] Fix deselection not working with `isRowSelectable` (#15692) @MBilalShafi
|
|
1703
|
+
- [DataGrid] Make column autosizing work with flex columns (#15465) @cherniavskii
|
|
1704
|
+
- [DataGrid] Remove `gridRowsDataRowIdToIdLookupSelector` selector (#15698) @arminmeh
|
|
1705
|
+
- [DataGrid] Remove `rowPositionsDebounceMs` prop (#15482) @k-rajat19
|
|
1706
|
+
- [l10n] Improve Hebrew (he-IL) locale (#15699) @perezShaked
|
|
1707
|
+
- [l10n] Improve Turkish (tr-TR) locale (#15734) @ihsanberkozcan
|
|
1708
|
+
|
|
1709
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1710
|
+
|
|
1711
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.3`, plus:
|
|
1712
|
+
|
|
1713
|
+
- [DataGridPro] Cleanup pinned rows on removal (#15697) @cherniavskii
|
|
1714
|
+
- [DataGridPro] Server-side lazy loading (#13878) @arminmeh
|
|
1715
|
+
|
|
1716
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1717
|
+
|
|
1718
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.3`, plus:
|
|
1719
|
+
|
|
1720
|
+
- [DataGridPremium] Remove the `ariaV8` experimental flag (#15694) @arminmeh
|
|
1721
|
+
|
|
1722
|
+
### Date and Time Pickers
|
|
1723
|
+
|
|
1724
|
+
#### Breaking changes
|
|
1725
|
+
|
|
1726
|
+
- The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usepickercontext).
|
|
1727
|
+
|
|
1728
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.3`
|
|
1729
|
+
|
|
1730
|
+
- [pickers] Replace the `onOpen()` and `onClose()` methods of `usePickerContext()` with a single `setOpen()` method. (#15701) @flaviendelangle
|
|
1731
|
+
|
|
1732
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1733
|
+
|
|
1734
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.3`.
|
|
1735
|
+
|
|
1736
|
+
### Charts
|
|
1737
|
+
|
|
1738
|
+
#### `@mui/x-charts@8.0.0-alpha.3`
|
|
1739
|
+
|
|
1740
|
+
- [charts] Improve SVG `pattern` and `gradient` support (#15720) @JCQuintas
|
|
1741
|
+
|
|
1742
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1743
|
+
|
|
1744
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.3`.
|
|
1745
|
+
|
|
1746
|
+
### Tree View
|
|
1747
|
+
|
|
1748
|
+
#### `@mui/x-tree-view@8.0.0-alpha.3`
|
|
1749
|
+
|
|
1750
|
+
No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.2`.
|
|
1751
|
+
|
|
1752
|
+
#### `@mui/x-tree-view-pro@8.0.0-alpha.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1753
|
+
|
|
1754
|
+
Same changes as in `@mui/x-tree-view@8.0.0-alpha.3`.
|
|
1755
|
+
|
|
1756
|
+
### Docs
|
|
1757
|
+
|
|
1758
|
+
- [docs] Add a customization demo for the Date and Time Pickers overview page (#15118) @noraleonte
|
|
1759
|
+
- [docs] Fix typo in charts axis documentation (#15743) @JCQuintas
|
|
1760
|
+
- [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
|
|
1761
|
+
|
|
1762
|
+
### Core
|
|
1763
|
+
|
|
1764
|
+
- [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15316) @flaviendelangle
|
|
1765
|
+
- [code-infra] Lock file maintenance (#11894)
|
|
1766
|
+
- [code-infra] Check if `preset-safe` folder exists in codemod test (#15703) @JCQuintas
|
|
1767
|
+
- [code-infra] Import Pickers `preset-safe` into global codemod config (#15659) @JCQuintas
|
|
1768
|
+
- [code-infra] Playwright 1.49 (#15493) @JCQuintas
|
|
1769
|
+
- [test] Force hover in headless Chrome (#15710) @cherniavskii
|
|
1770
|
+
|
|
1771
|
+
## 8.0.0-alpha.2
|
|
1772
|
+
|
|
1773
|
+
_Nov 29, 2024_
|
|
1774
|
+
|
|
1775
|
+
We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
|
|
1776
|
+
|
|
1777
|
+
- 👨🏽💻 Improve resize performance on the Data Gird.
|
|
1778
|
+
- `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://next.mui.com/x/react-charts/composition/#overview).
|
|
1779
|
+
- Users can create their own HTML components using chart data — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
|
|
1780
|
+
- 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
|
|
1781
|
+
- 🌍 Improve Dutch locale on the Date and Time Pickers components.
|
|
1782
|
+
- 🐞 Bugfixes
|
|
1783
|
+
- 📚 Documentation improvements
|
|
1784
|
+
|
|
1785
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
1786
|
+
@dloeda, @headironc, @jedesroches, @k-rajat19, @lauri865, @mathzdev, @nphmuller, @zinoroman.
|
|
1787
|
+
Following are all team members who have contributed to this release:
|
|
1788
|
+
@arminmeh, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @oliviertassinari.
|
|
1789
|
+
|
|
1790
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
1791
|
+
|
|
1792
|
+
### Data Grid
|
|
1793
|
+
|
|
1794
|
+
#### Breaking changes
|
|
1795
|
+
|
|
1796
|
+
- The `<GridOverlays />` component is not exported anymore.
|
|
1797
|
+
- The `indeterminateCheckboxAction` prop has been removed. Clicking on an indeterminate checkbox "selects" the unselected descendants.
|
|
1798
|
+
- The `apiRef.current.resize()` method was removed.
|
|
1799
|
+
- The default value of the `rowSelectionPropagation` prop has been changed to `{ parents: true, descendants: true }` which means that the selection will be propagated to the parents and descendants by default.
|
|
1800
|
+
To revert to the previous behavior, pass `rowSelectionPropagation` as `{ parents: false, descendants: false }`.
|
|
1801
|
+
- If `estimatedRowCount` is used, the text provided to the [Table Pagination](/material-ui/api/table-pagination/) component from the Material UI library is updated and requires additional translations. Check the example at the end of [Index-based pagination section](/x/react-data-grid/pagination/#index-based-pagination).
|
|
1802
|
+
|
|
1803
|
+
#### `@mui/x-data-grid@v8.0.0-alpha.2`
|
|
1804
|
+
|
|
1805
|
+
- [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15634) @jedesroches
|
|
1806
|
+
- [DataGrid] Clear timers on unmount (#15620) @cherniavskii
|
|
1807
|
+
- [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
|
|
1808
|
+
- [DataGrid] Improve resize performance (#15549) @lauri865
|
|
1809
|
+
- [DataGrid] Make estimation label more accurate (#15632) @arminmeh
|
|
1810
|
+
- [DataGrid] Remove `<GridOverlays />` export (#15573) @k-rajat19
|
|
1811
|
+
- [DataGrid] Remove `indeterminateCheckboxAction` prop (#15522) @MBilalShafi
|
|
1812
|
+
- [DataGrid] Remove try/catch from `<GridCell />` due to performance issues (#15616) @lauri865
|
|
1813
|
+
- [DataGrid] Remove unused `resize` method (#15599) @cherniavskii
|
|
1814
|
+
- [DataGrid] Support column virtualization with dynamic row height (#15541) @cherniavskii
|
|
1815
|
+
- [DataGrid] Update the default value for `rowSelectionPropagation` (#15523) @MBilalShafi
|
|
1816
|
+
- [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
|
|
1817
|
+
- [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
|
|
1818
|
+
|
|
1819
|
+
#### `@mui/x-data-grid-pro@v8.0.0-alpha.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1820
|
+
|
|
1821
|
+
Same changes as in `@mui/x-data-grid@v8.0.0-alpha.2`, plus:
|
|
1822
|
+
|
|
1823
|
+
- [DataGridPro] Fix header filtering with `boolean` column type (#15528) @k-rajat19
|
|
1824
|
+
- [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15622) @zinoroman
|
|
1825
|
+
- [DataGridPro] Fix selection propagation issue on initialization (#15461) @MBilalShafi
|
|
1826
|
+
|
|
1827
|
+
#### `@mui/x-data-grid-premium@v8.0.0-alpha.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1828
|
+
|
|
1829
|
+
Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.2`.
|
|
1830
|
+
|
|
1831
|
+
### Date and Time Pickers
|
|
1832
|
+
|
|
1833
|
+
#### Breaking changes
|
|
1834
|
+
|
|
1835
|
+
- The props received by the `layout` and the `toolbar` slots have been reworked — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#do-not-pass-the-section-type-as-a-generic).
|
|
1836
|
+
|
|
1837
|
+
- The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
|
|
1838
|
+
|
|
1839
|
+
#### `@mui/x-date-pickers@v8.0.0-alpha.2`
|
|
1840
|
+
|
|
1841
|
+
- [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
|
|
1842
|
+
- [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15552) @flaviendelangle
|
|
1843
|
+
- [pickers] Improve validation internals (#15419) @flaviendelangle
|
|
1844
|
+
- [pickers] Remove `TSection` and strictly type `TValue` (#15434) @flaviendelangle
|
|
1845
|
+
- [pickers] Remove `orientation`, `isLandscape`, `isRtl`, `wrapperVariant` and `disabled` props from `PickersLayout` (#15494) @flaviendelangle
|
|
1846
|
+
- [pickers] Use the new `ownerState` in `<PickersCalendarHeader />`, `<PickersArrowSwitcher />` and `<DayCalendarSkeleton />` (#15499) @flaviendelangle
|
|
1847
|
+
- [pickers] Use the new `ownerState` object in all the field components (#15510) @flaviendelangle
|
|
1848
|
+
|
|
1849
|
+
#### `@mui/x-date-pickers-pro@v8.0.0-alpha.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1850
|
+
|
|
1851
|
+
Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.2`.
|
|
1852
|
+
|
|
1853
|
+
### Charts
|
|
1854
|
+
|
|
1855
|
+
#### Breaking changes
|
|
1856
|
+
|
|
1857
|
+
- Charts Container don't have a `<div />` wrapping them anymore. All props are now passed to the root `<svg />` instead of the `<div />`.
|
|
1858
|
+
|
|
1859
|
+
#### `@mui/x-charts@v8.0.0-alpha.2`
|
|
1860
|
+
|
|
1861
|
+
- [charts] Allow the creation of custom HTML components using charts data (#15511) @JCQuintas
|
|
1862
|
+
- [charts] Flatten imports from `@mui/utils` and `@mui/system` (#15603) @alexfauquette
|
|
1863
|
+
- [charts] Introduce the plugin system (#15513) @alexfauquette
|
|
1864
|
+
- [charts] Prevent invalid `releasePointerCapture` (#15602) @alexfauquette
|
|
1865
|
+
- [charts] Fix custom Tooltip demos (#15631) @alexfauquette
|
|
1866
|
+
|
|
1867
|
+
#### `@mui/x-charts-pro@v8.0.0-alpha.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1868
|
+
|
|
1869
|
+
Same changes as in `@mui/x-charts@v8.0.0-alpha.2`.
|
|
1870
|
+
|
|
1871
|
+
### Tree View
|
|
1872
|
+
|
|
1873
|
+
#### `@mui/x-tree-view@v8.0.0-alpha.2`
|
|
1874
|
+
|
|
1875
|
+
- [TreeView] Flatten import from `@mui/utils` and `@mui/system` (#15604) @alexfauquette
|
|
1876
|
+
|
|
1877
|
+
#### `@mui/x-tree-view-pro@v8.0.0-alpha.2`
|
|
1878
|
+
|
|
1879
|
+
Same changes as in `@mui/x-tree-view@v8.0.0-alpha.2`.
|
|
1880
|
+
|
|
1881
|
+
### Docs
|
|
1882
|
+
|
|
1883
|
+
- [docs] Fix 404 links (#15575) @oliviertassinari
|
|
1884
|
+
- [docs] Fix bash comments (#15571) @oliviertassinari
|
|
1885
|
+
- [docs] Fix Pickers theme augmentation example (#15672) @LukasTy
|
|
1886
|
+
- [docs] Replace use of "e.g." with "for example" (#15572) @oliviertassinari
|
|
1887
|
+
- [docs] Update stale `new` and `preview` tags in v8 docs (#15547) @JCQuintas
|
|
1888
|
+
- [docs] Fix layout shift image on Tree View docs (#15626) @oliviertassinari
|
|
1889
|
+
- [docs] Fix `anchorEl` API page for charts (#15625) @oliviertassinari
|
|
1890
|
+
- [docs] Add documentation for the list view feature (#15344) @KenanYusuf
|
|
1891
|
+
|
|
1892
|
+
### Core
|
|
1893
|
+
|
|
1894
|
+
- [core] Follow `()` function convention for docs @oliviertassinari
|
|
1895
|
+
- [core] Remove dead translation key (#15566) @oliviertassinari
|
|
1896
|
+
- [code-infra] Auto-merge `@types/node` bumps (#15591) @LukasTy
|
|
1897
|
+
|
|
1898
|
+
## 8.0.0-alpha.1
|
|
1899
|
+
|
|
1900
|
+
_Nov 22, 2024_
|
|
1901
|
+
|
|
1902
|
+
We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
|
|
1903
|
+
|
|
1904
|
+
- 🔧 Refactor Tooltip customisation for charts — [Learn more](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
|
|
1905
|
+
- ⚛️ React 19 support
|
|
1906
|
+
- 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
|
|
1907
|
+
- 🐞 Bugfixes
|
|
1908
|
+
- 📚 Documentation improvements
|
|
1909
|
+
|
|
1910
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
1911
|
+
@CarlosLopezLg, @headironc, @hendrikpeilke, @k-rajat19, @lhilgert9, @viktormelin.
|
|
1912
|
+
Following are all team members who have contributed to this release:
|
|
1913
|
+
@alexfauquette, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @oliviertassinari, @KenanYusuf, @arminmeh.
|
|
1914
|
+
|
|
1915
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
1916
|
+
|
|
1917
|
+
### Data Grid
|
|
1918
|
+
|
|
1919
|
+
#### `@mui/x-data-grid@v8.0.0-alpha.1`
|
|
1920
|
+
|
|
1921
|
+
- [DataGrid] React 19 support (#15342) @arminmeh
|
|
1922
|
+
- [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15347) @k-rajat19
|
|
1923
|
+
- [DataGrid] Add test coverage for issues fixed in #15184 (#15282) @MBilalShafi
|
|
1924
|
+
- [DataGrid] Change default loading overlay variants (#15504) @KenanYusuf
|
|
1925
|
+
- [DataGrid] Fix last separator not being hidden when grid is scrollable (#15543) @KenanYusuf
|
|
1926
|
+
- [DataGrid] Fix right column group header border with virtualization (#15470) @hendrikpeilke
|
|
1927
|
+
- [DataGrid] Fix row-spanning in combination with column-pinning (#15368) @lhilgert9
|
|
1928
|
+
- [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
|
|
1929
|
+
- [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
|
|
1930
|
+
- [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
|
|
1931
|
+
|
|
1932
|
+
#### `@mui/x-data-grid-pro@v8.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1933
|
+
|
|
1934
|
+
Same changes as in `@mui/x-data-grid@v8.0.0-alpha.1`.
|
|
1935
|
+
|
|
1936
|
+
#### `@mui/x-data-grid-premium@v8.0.0-alpha.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
1937
|
+
|
|
1938
|
+
Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
|
|
1939
|
+
|
|
1940
|
+
- [DataGridPremium] Prompt input control (#15401) @arminmeh
|
|
1941
|
+
|
|
1942
|
+
### Date and Time Pickers
|
|
1943
|
+
|
|
1944
|
+
#### Breaking change
|
|
1945
|
+
|
|
1946
|
+
- The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
|
|
1947
|
+
- The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
|
|
1948
|
+
|
|
1949
|
+
#### `@mui/x-date-pickers@v8.0.0-alpha.1`
|
|
1950
|
+
|
|
1951
|
+
- [fields] Fix focus management with new DOM structure (#15475) @flaviendelangle
|
|
1952
|
+
- [pickers] React 19 support (#15342) @arminmeh
|
|
1953
|
+
- [pickers] Add new properties to `PickerOwnerState` and `PickerContextValue` (#15415) @flaviendelangle
|
|
1954
|
+
- [pickers] Always use `props.value` when it changes (#15490) @flaviendelangle
|
|
1955
|
+
- [pickers] Ensure internal value timezone is updated (#15435) @LukasTy
|
|
1956
|
+
- [pickers] Fix unused code in `<PickersToolbar />` component (#15515) @LukasTy
|
|
1957
|
+
- [pickers] Remove `FieldValueType` in favor of `PickerValueType` (#15259) @arthurbalduini
|
|
1958
|
+
- [pickers] Remove the form props from the layout and the toolbar slots (#15492) @flaviendelangle
|
|
1959
|
+
- [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15532) @flaviendelangle
|
|
1960
|
+
- [TimePicker] Prevent mouse events after `touchend` event (#15346) @arthurbalduini
|
|
1961
|
+
|
|
1962
|
+
#### `@mui/x-date-pickers-pro@v8.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1963
|
+
|
|
1964
|
+
Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
|
|
1965
|
+
|
|
1966
|
+
- [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15429) @LukasTy
|
|
1967
|
+
|
|
1968
|
+
### Charts
|
|
1969
|
+
|
|
1970
|
+
#### Breaking change
|
|
1971
|
+
|
|
1972
|
+
- The DX of the Tooltip customization has been refactored
|
|
1973
|
+
|
|
1974
|
+
- The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
|
|
1975
|
+
- The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
|
|
1976
|
+
- To override the tooltip content, use the `useItemTooltip` or `useAxisTooltip` hook to get the data, and wrap your component in `ChartsTooltipContainer` to follow the pointer position.
|
|
1977
|
+
- To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
|
|
1978
|
+
|
|
1979
|
+
- The library now uses the SVG `filter` attribute instead of `d3-color` for color manipulation.
|
|
1980
|
+
|
|
1981
|
+
- This modification impacts the `LinePlot`, `AreaPlot`, and `BarPlot` components.
|
|
1982
|
+
If you've customized the `fill` of those elements, you might need to override it by using the CSS `filter`.
|
|
1983
|
+
- The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
|
|
1984
|
+
You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
|
|
1985
|
+
|
|
1986
|
+
- Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
|
|
1987
|
+
- Removed `width` and `height` props from the `ChartsSurface` component.
|
|
1988
|
+
- Removed the `viewport` prop from all charts.
|
|
1989
|
+
|
|
1990
|
+
#### `@mui/x-charts@v8.0.0-alpha.1`
|
|
1991
|
+
|
|
1992
|
+
- [charts] React 19 support (#15342) @arminmeh
|
|
1993
|
+
- [charts] Decouple `<ChartDataProvider />` and `<ChartsSurface />` (#15375) @JCQuintas
|
|
1994
|
+
- [charts] Fix Scatter Chart tooltip wrong defaults (#15537) @JCQuintas
|
|
1995
|
+
- [charts] Fix key generation for the `<ChartsGrid />` component (#15463) @alexfauquette
|
|
1996
|
+
- [charts] Improve `<SvgRefProvider />` to split the received ref (#15424) @JCQuintas
|
|
1997
|
+
- [charts] Move interaction state in store (#15426) @alexfauquette
|
|
1998
|
+
- [charts] Refactor Tooltip customisation (#15154) @alexfauquette
|
|
1999
|
+
- [charts] Remove intrinsic size requirement (#15471) @JCQuintas
|
|
2000
|
+
- [charts] Replace `d3-color` with CSS filter for highlight (#15084) @alexfauquette
|
|
2001
|
+
- [charts] Split `<DrawingProvider />` into `<DrawingAreaProvider />` and `<SvgRefProvider />` (#15417) @JCQuintas
|
|
2002
|
+
|
|
2003
|
+
#### `@mui/x-charts-pro@v8.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2004
|
+
|
|
2005
|
+
Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
|
|
2006
|
+
|
|
2007
|
+
### Tree View
|
|
2008
|
+
|
|
2009
|
+
#### Breaking changes
|
|
2010
|
+
|
|
2011
|
+
- The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#stop-using-publicapi-methods-in-the-render).
|
|
2012
|
+
|
|
2013
|
+
#### `@mui/x-tree-view@v8.0.0-alpha.1`
|
|
2014
|
+
|
|
2015
|
+
- [TreeView] React 19 support (#15342) @arminmeh
|
|
2016
|
+
- [TreeView] Do not re-render every Tree Item when the Rich Tree View re-renders (introduce selectors) (#14210) @flaviendelangle
|
|
2017
|
+
- [TreeView] Remove `treeId` from the item context (#15542) @flaviendelangle
|
|
2018
|
+
- [TreeView] Remove state mutation in `moveItemInTree()` (#15539) @flaviendelangle
|
|
2019
|
+
- [TreeItem] Correct the typing of `slotProps.groupTransition` (#15534) @flaviendelangle
|
|
2020
|
+
|
|
2021
|
+
### Docs
|
|
2022
|
+
|
|
2023
|
+
- [docs] Fix some migration typos (#15422) @LukasTy
|
|
2024
|
+
- [docs] Fix typo in migration guide (#15508) @flaviendelangle
|
|
2025
|
+
- [docs] Fix 301 redirection in docs @oliviertassinari
|
|
2026
|
+
- [docs] Polish Server-side data section (#15330) @oliviertassinari
|
|
2027
|
+
- [docs] Use loading state in the demos (#15512) @cherniavskii
|
|
2028
|
+
|
|
2029
|
+
### Core
|
|
2030
|
+
|
|
2031
|
+
- [core] Keep OpenSSF badge up-to-date @oliviertassinari
|
|
2032
|
+
- [code-infra] Add `'DensitySelectorGrid'` to time-sensitive argos tests (#15425) @JCQuintas
|
|
2033
|
+
- [code-infra] Add documentation to internal types (#15540) @JCQuintas
|
|
2034
|
+
- [code-infra] Prevent relative imports across packages (#15437) @JCQuintas
|
|
2035
|
+
- [code-infra] Update renovate config to merge `action` pins (#15462) @LukasTy
|
|
2036
|
+
- [docs-infra] Fix version tooltip (#15468) @alexfauquette
|
|
2037
|
+
- [docs-infra] Transpile `.ts` demo files (#15345) @KenanYusuf
|
|
2038
|
+
- [infra] Remove cherry-pick issue write permission (#15456) @oliviertassinari
|
|
2039
|
+
|
|
2040
|
+
## 8.0.0-alpha.0
|
|
2041
|
+
|
|
2042
|
+
<img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
|
|
2043
|
+
|
|
2044
|
+
_Nov 14, 2024_
|
|
2045
|
+
|
|
2046
|
+
We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
|
|
2047
|
+
|
|
2048
|
+
- 🔁 Support [automatic parents and children selection](https://next.mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
|
|
2049
|
+
- 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
|
|
2050
|
+
- 🌍 Improve Polish (pl-PL) locale on the Data Grid component
|
|
2051
|
+
- 🐞 Bugfixes
|
|
2052
|
+
- 📚 Documentation improvements
|
|
2053
|
+
|
|
2054
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2055
|
+
@belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
|
|
2056
|
+
Following are all team members who have contributed to this release:
|
|
2057
|
+
@alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
|
|
2058
|
+
|
|
2059
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2060
|
+
|
|
2061
|
+
### Data Grid
|
|
2062
|
+
|
|
2063
|
+
#### `@mui/x-data-grid@8.0.0-alpha.0`
|
|
2064
|
+
|
|
2065
|
+
- [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
|
|
2066
|
+
- [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
|
|
2067
|
+
- [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
|
|
2068
|
+
- [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
|
|
2069
|
+
- [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
|
|
2070
|
+
- [DataGrid] Remove more material imports (#15063) @romgrk
|
|
2071
|
+
- [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
|
|
2072
|
+
|
|
2073
|
+
#### `@mui/x-data-grid-pro@8.0.0-alpha.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2074
|
+
|
|
2075
|
+
Same changes as in `@mui/x-data-grid@8.0.0-alpha.0`, plus:
|
|
2076
|
+
|
|
2077
|
+
- [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
|
|
2078
|
+
|
|
2079
|
+
#### `@mui/x-data-grid-premium@8.0.0-alpha.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2080
|
+
|
|
2081
|
+
Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
|
|
2082
|
+
|
|
2083
|
+
- [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
|
|
2084
|
+
|
|
2085
|
+
### Date and Time Pickers
|
|
2086
|
+
|
|
2087
|
+
#### Breaking changes
|
|
2088
|
+
|
|
2089
|
+
- The default DOM structure of the field has changed [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
|
|
2090
|
+
|
|
2091
|
+
- 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.
|
|
2092
|
+
- 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.
|
|
2093
|
+
|
|
2094
|
+
- 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://next.mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
|
|
2095
|
+
|
|
2096
|
+
- The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
|
|
2097
|
+
|
|
2098
|
+
- `UseDateFieldComponentProps`
|
|
2099
|
+
- `UseTimeFieldComponentProps`
|
|
2100
|
+
- `UseDateTimeFieldComponentProps`
|
|
2101
|
+
- `BaseSingleInputFieldProps`
|
|
2102
|
+
- `BaseMultiInputFieldProps`
|
|
2103
|
+
- `BasePickersTextFieldProps`
|
|
2104
|
+
|
|
2105
|
+
- 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://next.mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
|
|
2106
|
+
|
|
2107
|
+
- Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
|
|
2108
|
+
|
|
2109
|
+
- The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
|
|
2110
|
+
|
|
2111
|
+
#### `@mui/x-date-pickers@8.0.0-alpha.0`
|
|
2112
|
+
|
|
2113
|
+
- [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
|
|
2114
|
+
- [fields] Remove `UseDateFieldComponentProps` and equivalent interfaces (#15053) @flaviendelangle
|
|
2115
|
+
- [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
|
|
2116
|
+
- [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
|
|
2117
|
+
- [pickers] Clean definition of validation props (#15198) @flaviendelangle
|
|
2118
|
+
- [pickers] Clean the new `ownerState` object (#15056) @flaviendelangle
|
|
2119
|
+
- [pickers] Correctly type the `ownerState` of the `field` and `actionBar` slots when resolved in a picker component (#15162) @flaviendelangle
|
|
2120
|
+
- [pickers] Fix `DateCalendar` timezone management (#12321) @LukasTy
|
|
2121
|
+
- [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
|
|
2122
|
+
- [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
|
|
2123
|
+
- [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
|
|
2124
|
+
- [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
|
|
2125
|
+
- [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
|
|
2126
|
+
- [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
|
|
2127
|
+
- [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
|
|
2128
|
+
- [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
|
|
2129
|
+
- [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
|
|
2130
|
+
- [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
|
|
2131
|
+
|
|
2132
|
+
#### `@mui/x-date-pickers-pro@8.0.0-alpha.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2133
|
+
|
|
2134
|
+
Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
|
|
2135
|
+
|
|
2136
|
+
### Charts
|
|
2137
|
+
|
|
2138
|
+
#### Breaking changes
|
|
2139
|
+
|
|
2140
|
+
- 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://next.mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
|
|
2141
|
+
|
|
2142
|
+
- 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.
|
|
2143
|
+
|
|
2144
|
+
- Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
|
|
2145
|
+
|
|
2146
|
+
- The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
|
|
2147
|
+
The deprecated ones are now removed.
|
|
2148
|
+
- The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
|
|
2149
|
+
|
|
2150
|
+
- 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://next.mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
|
|
2151
|
+
|
|
2152
|
+
#### `@mui/x-charts@8.0.0-alpha.0`
|
|
2153
|
+
|
|
2154
|
+
- [charts] Introduce `hideLegend` prop (#15277) @alexfauquette
|
|
2155
|
+
- [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
|
|
2156
|
+
- [charts] Fix log scale with `null` data (#15337) @alexfauquette
|
|
2157
|
+
- [charts] Fix tooltip follow mouse (#15189) @alexfauquette
|
|
2158
|
+
- [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
|
|
2159
|
+
- [charts] Remove axis from the pie chart (#15187) @alexfauquette
|
|
2160
|
+
- [charts] Remove deprecated `legend` props (#15081) @alexfauquette
|
|
2161
|
+
- [charts] Remove deprecated highlight properties (#15191) @alexfauquette
|
|
2162
|
+
- [charts] Update Popper position outside of React (#15003) @alexfauquette
|
|
2163
|
+
- [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
|
|
2164
|
+
|
|
2165
|
+
#### `@mui/x-charts-pro@8.0.0-alpha.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2166
|
+
|
|
2167
|
+
Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
|
|
2168
|
+
|
|
2169
|
+
### Tree View
|
|
2170
|
+
|
|
2171
|
+
#### Breaking changes
|
|
2172
|
+
|
|
2173
|
+
- 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://next.mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
|
|
2174
|
+
|
|
2175
|
+
- The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
|
|
2176
|
+
|
|
2177
|
+
- Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
|
|
2178
|
+
|
|
2179
|
+
- The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
|
|
2180
|
+
|
|
2181
|
+
- The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
|
|
2182
|
+
|
|
2183
|
+
#### `@mui/x-tree-view@8.0.0-alpha.0`
|
|
2184
|
+
|
|
2185
|
+
- [TreeView] Always apply the indentation on the item content instead of its parent's group (#15089) @flaviendelangle
|
|
2186
|
+
- [TreeView] Automatic parents and children selection (#14899) @flaviendelangle
|
|
2187
|
+
- [TreeView] Remove deprecated `TreeView` component (#15093) @flaviendelangle
|
|
2188
|
+
- [TreeView] Replace `<TreeItem />` with `<TreeItem2 />` and migrate all the components and utils (#14913) @flaviendelangle
|
|
2189
|
+
|
|
2190
|
+
### Docs
|
|
2191
|
+
|
|
2192
|
+
- [docs] Add docs for rounded symbol (#15324) @GuillaumeMeheut
|
|
2193
|
+
- [docs] Add migration guide for the removal of `LicenseInfo` from `@mui/x-date-pickers-pro` (#15321) @flaviendelangle
|
|
2194
|
+
- [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
|
|
2195
|
+
- [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
|
|
2196
|
+
- [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
|
|
2197
|
+
- [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
|
|
2198
|
+
- [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
|
|
2199
|
+
- [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
|
|
2200
|
+
- [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
|
|
2201
|
+
- [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
|
|
2202
|
+
- [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
|
|
2203
|
+
- [docs] Fix link to private notion page (#15396) @michelengelen
|
|
2204
|
+
- [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
|
|
2205
|
+
- [docs] Fix peer dependency range (#15281) @oliviertassinari
|
|
2206
|
+
- [docs] Fix small Tree View typo (#15390) @oliviertassinari
|
|
2207
|
+
- [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
|
|
2208
|
+
- [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
|
|
2209
|
+
- [docs] Start v8 migration guides (#15096) @MBilalShafi
|
|
2210
|
+
- [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
|
|
2211
|
+
- [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
|
|
2212
|
+
- [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
|
|
2213
|
+
|
|
2214
|
+
### Core
|
|
2215
|
+
|
|
2216
|
+
- [core] Adjust the `cherry-pick` GitHub actions (#15099) @LukasTy
|
|
2217
|
+
- [core] Add `()` at the name of function name in the doc (#15075) @oliviertassinari
|
|
2218
|
+
- [core] Clarify release version bump strategy (#15219) @cherniavskii
|
|
2219
|
+
- [core] Fix CodeSandbox and StackBlitz for next doc-infra sync @oliviertassinari
|
|
2220
|
+
- [core] Fix Vale error on `master` @oliviertassinari
|
|
2221
|
+
- [core] Fix changelog reference to VoiceOver @oliviertassinari
|
|
2222
|
+
- [core] Fix `tools-public.mui.com` redirection @oliviertassinari
|
|
2223
|
+
- [core] Fix webpack capitalization (#15353) @oliviertassinari
|
|
2224
|
+
- [core] Move `helpers` to `@mui/x-internals` package (#15188) @LukasTy
|
|
2225
|
+
- [code-infra] Set renovate to automerge devDependencies (#13463) @JCQuintas
|
|
2226
|
+
- [infra] Reintroduce the cherry pick workflow (#15293) @michelengelen
|
|
2227
|
+
- [core] Remove duplicate title header (#15389) @oliviertassinari
|
|
2228
|
+
- [release] v8 preparation (#15054) @michelengelen
|
|
2229
|
+
- [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
|
|
2230
|
+
|
|
2231
|
+
## 7.28.0
|
|
2232
|
+
|
|
2233
|
+
_Mar 17, 2025_
|
|
2234
|
+
|
|
2235
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
2236
|
+
|
|
2237
|
+
- 🎁 Add support for `@mui/material` version 7 in all X packages
|
|
2238
|
+
- 🐞 Bugfixes
|
|
2239
|
+
- 🌍 Improve Chinese (zh-CN), (zh-HK), (zh-TW), Czech (cs-CZ), Korean (ko-KR) and Slovak (sk-Sk) locales on the Data Grid
|
|
2240
|
+
- 🌍 Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales on the Pickers
|
|
2241
|
+
|
|
2242
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2243
|
+
@Blake-McCullough, @hlavacz, @yelahj, @k-rajat19, @nusr.
|
|
2244
|
+
Following are all team members who have contributed to this release:
|
|
2245
|
+
@arminmeh, @flaviendelangle, @LukasTy, @michelengelen, @MBilalShafi.
|
|
2246
|
+
|
|
2247
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2248
|
+
|
|
2249
|
+
### Data Grid
|
|
2250
|
+
|
|
2251
|
+
#### `@mui/x-data-grid@7.28.0`
|
|
2252
|
+
|
|
2253
|
+
- [DataGrid] Add click propagation and prevents default on `toggleMenu` click (#16909) @michelengelen
|
|
2254
|
+
- [DataGrid] Fix `processRowUpdate()` error if the row is removed before it is executed (#16904) @arminmeh
|
|
2255
|
+
- [DataGrid] Fix bug with adding and removing columns in active edit state (#16916) @Blake-McCullough
|
|
2256
|
+
- [DataGrid] Fix visual issue with pinned columns and row spanning (#16942) @MBilalShafi
|
|
2257
|
+
- [DataGrid] Make column header menu button aria-labels unique (#16925) @owais635
|
|
2258
|
+
- [DataGrid] Fix `printOptions` not respecting `hideFooter` root prop (#16915) @k-rajat19
|
|
2259
|
+
- [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16917 and #16887) @nusr
|
|
2260
|
+
- [l10n] Improve Czech (cs-CZ) and Slovak (sk-Sk) locales (#16996) @hlavacz
|
|
2261
|
+
- [l10n] Improve Korean (ko-KR) locale (#16998) @yelahj
|
|
2262
|
+
|
|
2263
|
+
#### `@mui/x-data-grid-pro@7.28.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2264
|
+
|
|
2265
|
+
Same changes as in `@mui/x-data-grid@7.28.0`, plus:
|
|
2266
|
+
|
|
2267
|
+
- [DataGridPro] Fix header filters not displaying restored values (#16976) @MBilalShafi
|
|
2268
|
+
- [DataGridPro] Fix infinite loading not reacting when scrolling to the end (#16939) @arminmeh
|
|
2269
|
+
|
|
2270
|
+
#### `@mui/x-data-grid-premium@7.28.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2271
|
+
|
|
2272
|
+
Same changes as in `@mui/x-data-grid-pro@7.28.0`, plus:
|
|
2273
|
+
|
|
2274
|
+
- [DataGridPremium] Fix selection propagation issues with controlled state (#16995) @MBilalShafi
|
|
2275
|
+
|
|
2276
|
+
### Date and Time Pickers
|
|
2277
|
+
|
|
2278
|
+
#### `@mui/x-date-pickers@7.28.0`
|
|
2279
|
+
|
|
2280
|
+
- [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16997) @nusr
|
|
2281
|
+
|
|
2282
|
+
#### `@mui/x-date-pickers-pro@7.28.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2283
|
+
|
|
2284
|
+
Same changes as in `@mui/x-date-pickers@7.28.0`, plus:
|
|
2285
|
+
|
|
2286
|
+
- [DateRangeCalendar] Do not update the previewed day when hovering a day and the value is empty (#16892) @flaviendelangle
|
|
2287
|
+
|
|
2288
|
+
### Charts
|
|
2289
|
+
|
|
2290
|
+
#### `@mui/x-charts@7.28.0`
|
|
2291
|
+
|
|
2292
|
+
Internal changes.
|
|
2293
|
+
|
|
2294
|
+
#### `@mui/x-charts-pro@7.28.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2295
|
+
|
|
2296
|
+
Same changes as in `@mui/x-charts@7.28.0`.
|
|
2297
|
+
|
|
2298
|
+
### Tree View
|
|
2299
|
+
|
|
2300
|
+
#### `@mui/x-tree-view@7.28.0`
|
|
2301
|
+
|
|
2302
|
+
Internal changes.
|
|
2303
|
+
|
|
2304
|
+
#### `@mui/x-tree-view-pro@7.28.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2305
|
+
|
|
2306
|
+
Same changes as in `@mui/x-tree-view@7.28.0`.
|
|
2307
|
+
|
|
2308
|
+
### Docs
|
|
2309
|
+
|
|
2310
|
+
- [docs] Fix link to the lazy loading demo for the DataGrid (#16912) @nusr
|
|
2311
|
+
|
|
2312
|
+
### Core
|
|
2313
|
+
|
|
2314
|
+
- [core] Allow `@mui/material` v7 in dependencies (#16951) @LukasTy
|
|
2315
|
+
- [infra] Make tests on React 18 part of pipeline (#16958) @LukasTy
|
|
2316
|
+
|
|
2317
|
+
## 7.27.3
|
|
2318
|
+
|
|
2319
|
+
_Mar 7, 2025_
|
|
2320
|
+
|
|
2321
|
+
We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
|
|
2322
|
+
|
|
2323
|
+
- 🐞 Bugfixes
|
|
2324
|
+
|
|
2325
|
+
Team members who have contributed to this release:
|
|
2326
|
+
@arminmeh, @cherniavskii, @LukasTy, @michelengelen.
|
|
2327
|
+
|
|
2328
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2329
|
+
|
|
2330
|
+
### Data Grid
|
|
2331
|
+
|
|
2332
|
+
#### `@mui/x-data-grid@7.27.3`
|
|
2333
|
+
|
|
2334
|
+
- [DataGrid] Fix `aria-hidden` console error when scrollbar is dragged (#16834) @arminmeh
|
|
2335
|
+
- [DataGrid] Fix scroll jump with dynamic row height (#16801) @cherniavskii
|
|
2336
|
+
|
|
2337
|
+
#### `@mui/x-data-grid-pro@7.27.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2338
|
+
|
|
2339
|
+
Same changes as in `@mui/x-data-grid@7.27.3`.
|
|
2340
|
+
|
|
2341
|
+
#### `@mui/x-data-grid-premium@7.27.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2342
|
+
|
|
2343
|
+
Same changes as in `@mui/x-data-grid-pro@7.27.3`.
|
|
2344
|
+
|
|
2345
|
+
### Date and Time Pickers
|
|
2346
|
+
|
|
2347
|
+
#### `@mui/x-date-pickers@7.27.3`
|
|
2348
|
+
|
|
2349
|
+
- [fields] Fix Fields aria relationship with `helperText` (#16828) @LukasTy
|
|
2350
|
+
|
|
2351
|
+
#### `@mui/x-date-pickers-pro@7.27.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2352
|
+
|
|
2353
|
+
Same changes as in `@mui/x-date-pickers@7.27.3`.
|
|
2354
|
+
|
|
2355
|
+
### Core
|
|
2356
|
+
|
|
2357
|
+
- [infra] Update contributor acknowledgment wording (#16753) @michelengelen
|
|
2358
|
+
|
|
2359
|
+
## 7.27.2
|
|
2360
|
+
|
|
2361
|
+
<!-- generated comparing v7.27.1..v7.x -->
|
|
2362
|
+
|
|
2363
|
+
_Feb 27, 2025_
|
|
2364
|
+
|
|
2365
|
+
We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
2366
|
+
|
|
2367
|
+
- 🐞 Bugfixes
|
|
2368
|
+
- 🌍 Improve Hungarian (hu-HU) and Russian (ru-RU) locales on the Data Grid
|
|
2369
|
+
|
|
2370
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2371
|
+
@pcorpet, @noherczeg, @denpiligrim.
|
|
2372
|
+
Following are all team members who have contributed to this release:
|
|
2373
|
+
@MBilalShafi, @KenanYusuf.
|
|
2374
|
+
|
|
2375
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2376
|
+
|
|
2377
|
+
### Data Grid
|
|
2378
|
+
|
|
2379
|
+
#### `@mui/x-data-grid@v7.27.2`
|
|
2380
|
+
|
|
2381
|
+
- [DataGrid] Fix `showColumnVerticalBorder` prop (#16726) @KenanYusuf
|
|
2382
|
+
- [DataGrid] Make server-side data navigation consistent (#16735) @MBilalShafi
|
|
2383
|
+
- [DataGrid] Use readonly array for `GridSortModel` (#16731) @pcorpet
|
|
2384
|
+
- [l10n] Improve Hungarian (hu-HU) locale (#16746) @noherczeg
|
|
2385
|
+
- [l10n] Improve Russian (ru-RU) locale (#16725) @denpiligrim
|
|
2386
|
+
|
|
2387
|
+
#### `@mui/x-data-grid-pro@v7.27.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2388
|
+
|
|
2389
|
+
Same changes as in `@mui/x-data-grid@v7.27.2`.
|
|
2390
|
+
|
|
2391
|
+
#### `@mui/x-data-grid-premium@v7.27.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2392
|
+
|
|
2393
|
+
Same changes as in `@mui/x-data-grid-pro@v7.27.2`.
|
|
2394
|
+
|
|
2395
|
+
## 7.27.1
|
|
2396
|
+
|
|
2397
|
+
_Feb 25, 2025_
|
|
2398
|
+
|
|
2399
|
+
We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
2400
|
+
|
|
2401
|
+
- 🐞 Bugfixes
|
|
2402
|
+
- 🌍 Add Bangla (bn-BD) locale on the Data Grid and Date Pickers
|
|
2403
|
+
|
|
2404
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2405
|
+
@nusr, @officialkidmax.
|
|
2406
|
+
Following are all team members who have contributed to this release:
|
|
2407
|
+
@bernardobelchior, @MBilalShafi, @KenanYusuf.
|
|
2408
|
+
|
|
2409
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2410
|
+
|
|
2411
|
+
### Data Grid
|
|
2412
|
+
|
|
2413
|
+
#### `@mui/x-data-grid@7.27.1`
|
|
2414
|
+
|
|
2415
|
+
- [DataGrid] Fix the pagination unexpected behavior when using -1 for "All" rows per page (#16485) @nusr
|
|
2416
|
+
- [DataGrid] Extract `getRowId()` API method as a selector (#16574) @MBilalShafi
|
|
2417
|
+
- [DataGrid] Fix scrollbars overlapping cells on mount (#16653) @KenanYusuf
|
|
2418
|
+
- [l10n] Add Bangla (bn-BD) locale (#16649) @officialkidmax
|
|
2419
|
+
|
|
2420
|
+
#### `@mui/x-data-grid-pro@7.27.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2421
|
+
|
|
2422
|
+
Same changes as in `@mui/x-data-grid@7.27.1`.
|
|
2423
|
+
|
|
2424
|
+
#### `@mui/x-data-grid-premium@7.27.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2425
|
+
|
|
2426
|
+
Same changes as in `@mui/x-data-grid-pro@7.27.1`.
|
|
2427
|
+
|
|
2428
|
+
### Date and Time Pickers
|
|
2429
|
+
|
|
2430
|
+
#### `@mui/x-date-pickers@7.27.1`
|
|
2431
|
+
|
|
2432
|
+
- [l10n] Add Bangla (bn-BD) locale (#16649) @officialkidmax
|
|
2433
|
+
|
|
2434
|
+
#### `@mui/x-date-pickers-pro@7.27.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2435
|
+
|
|
2436
|
+
Same changes as in `@mui/x-date-pickers@7.27.1`.
|
|
2437
|
+
|
|
2438
|
+
### Charts
|
|
2439
|
+
|
|
2440
|
+
#### `@mui/x-charts@7.27.1`
|
|
2441
|
+
|
|
2442
|
+
- [charts] Fix empty series array in pie chart (#16657) @bernardobelchior
|
|
2443
|
+
|
|
2444
|
+
#### `@mui/x-charts-pro@7.27.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2445
|
+
|
|
2446
|
+
Same changes as in `@mui/x-charts@7.27.1`.
|
|
2447
|
+
|
|
2448
|
+
## 7.27.0
|
|
2449
|
+
|
|
2450
|
+
_Feb 17, 2025_
|
|
2451
|
+
|
|
2452
|
+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
2453
|
+
|
|
2454
|
+
- ⚡ Improve Data Grid Excel export serialization performance
|
|
2455
|
+
- 🐞 Bugfixes
|
|
2456
|
+
- 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locale on the Data Grid
|
|
2457
|
+
|
|
2458
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2459
|
+
@pawelkula, @Neonin.
|
|
2460
|
+
Following are all team members who have contributed to this release:
|
|
2461
|
+
@cherniavskii, @JCQuintas, @oliviertassinari, @arminmeh and @LukasTy
|
|
2462
|
+
|
|
2463
|
+
### Data Grid
|
|
2464
|
+
|
|
2465
|
+
#### `@mui/x-data-grid@7.27.0`
|
|
2466
|
+
|
|
2467
|
+
- [DataGrid] Add `resetPageOnSortFilter` prop that resets the page after sorting and filtering (#16580) @arminmeh
|
|
2468
|
+
- [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16558) @cherniavskii
|
|
2469
|
+
- [l10n] Improve Polish (pl-PL) locale (#16594) @pawelkula
|
|
2470
|
+
- [l10n] Improve Ukrainian (uk-UA) locale (#16593) @Neonin
|
|
2471
|
+
|
|
2472
|
+
#### `@mui/x-data-grid-pro@7.27.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2473
|
+
|
|
2474
|
+
Same changes as in `@mui/x-data-grid@7.27.0`.
|
|
2475
|
+
|
|
2476
|
+
#### `@mui/x-data-grid-premium@7.27.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2477
|
+
|
|
2478
|
+
Same changes as in `@mui/x-data-grid-pro@7.27.0`, plus:
|
|
2479
|
+
|
|
2480
|
+
- [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16532) @cherniavskii
|
|
2481
|
+
- [DataGridPremium] Improve Excel export serialization performance (#16545) @cherniavskii
|
|
2482
|
+
- [DataGridPremium] Namespace Excel export worker (#16539) @oliviertassinari
|
|
2483
|
+
|
|
2484
|
+
### Date and Time Pickers
|
|
2485
|
+
|
|
2486
|
+
#### `@mui/x-date-pickers@7.27.0`
|
|
2487
|
+
|
|
2488
|
+
Internal changes.
|
|
2489
|
+
|
|
2490
|
+
#### `@mui/x-date-pickers-pro@7.27.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2491
|
+
|
|
2492
|
+
Same changes as in `@mui/x-date-pickers@7.27.0`, plus:
|
|
2493
|
+
|
|
2494
|
+
- [DateRangePicker] Avoid unnecessary field section focusing (#16569) @LukasTy
|
|
2495
|
+
|
|
2496
|
+
### Charts
|
|
2497
|
+
|
|
2498
|
+
#### `@mui/x-charts@7.27.0`
|
|
2499
|
+
|
|
2500
|
+
Internal changes.
|
|
2501
|
+
|
|
2502
|
+
#### `@mui/x-charts-pro@7.27.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2503
|
+
|
|
2504
|
+
- [charts-pro] Fix automatic type overloads (#16579) @JCQuintas
|
|
2505
|
+
|
|
2506
|
+
### Core
|
|
2507
|
+
|
|
2508
|
+
- [test] Fix Data Grid data source error test on React 18 (#16565) @arminmeh
|
|
2509
|
+
|
|
2510
|
+
## 7.26.0
|
|
2511
|
+
|
|
2512
|
+
_Feb 7, 2025_
|
|
2513
|
+
|
|
2514
|
+
We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
2515
|
+
|
|
2516
|
+
- ⚡ Mount and resize performance improvements for the Data Grid
|
|
2517
|
+
- 🐞 Bugfixes
|
|
2518
|
+
|
|
2519
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2520
|
+
@lauri865.
|
|
2521
|
+
Following are all team members who have contributed to this release:
|
|
2522
|
+
@arminmeh, @noraleonte, @LukasTy, @KenanYusuf, @flaviendelangle.
|
|
2523
|
+
|
|
2524
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2525
|
+
|
|
2526
|
+
### Data Grid
|
|
2527
|
+
|
|
2528
|
+
#### `@mui/x-data-grid@7.26.0`
|
|
2529
|
+
|
|
2530
|
+
- [DataGrid] Avoid `<GridRoot />` double-render pass on mount in SPA mode (#16480) @lauri865
|
|
2531
|
+
|
|
2532
|
+
#### `@mui/x-data-grid-pro@7.26.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2533
|
+
|
|
2534
|
+
Same changes as in `@mui/x-data-grid@7.26.0`, plus:
|
|
2535
|
+
|
|
2536
|
+
- [DataGridPro] Fix the return type of `useGridApiContext()` for Pro and Premium packages on React < 19 (#16446) @arminmeh
|
|
2537
|
+
|
|
2538
|
+
#### `@mui/x-data-grid-premium@7.26.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2539
|
+
|
|
2540
|
+
Same changes as in `@mui/x-data-grid-pro@7.26.0`, plus:
|
|
2541
|
+
|
|
2542
|
+
- [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16468) @KenanYusuf
|
|
2543
|
+
|
|
2544
|
+
### Date and Time Pickers
|
|
2545
|
+
|
|
2546
|
+
#### `@mui/x-date-pickers@7.26.0`
|
|
2547
|
+
|
|
2548
|
+
Internal changes.
|
|
2549
|
+
|
|
2550
|
+
#### `@mui/x-date-pickers-pro@7.26.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2551
|
+
|
|
2552
|
+
Same changes as in `@mui/x-date-pickers@7.26.0`, plus:
|
|
2553
|
+
|
|
2554
|
+
- [DateRangePicker] Fix `currentMonthCalendarPosition` prop behavior on mobile (#16457) @LukasTy
|
|
2555
|
+
- [DateRangePicker] Fix vertical alignment for multi input fields (#16490) @noraleonte
|
|
2556
|
+
|
|
2557
|
+
### Charts
|
|
2558
|
+
|
|
2559
|
+
#### `@mui/x-charts@7.26.0`
|
|
2560
|
+
|
|
2561
|
+
Internal changes.
|
|
2562
|
+
|
|
2563
|
+
#### `@mui/x-charts-pro@7.26.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2564
|
+
|
|
2565
|
+
Same changes as in `@mui/x-charts@7.26.0`.
|
|
2566
|
+
|
|
2567
|
+
### Tree View
|
|
2568
|
+
|
|
2569
|
+
#### `@mui/x-tree-view@7.26.0`
|
|
2570
|
+
|
|
2571
|
+
Internal changes.
|
|
2572
|
+
|
|
2573
|
+
#### `@mui/x-tree-view-pro@7.26.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2574
|
+
|
|
2575
|
+
Same changes as in `@mui/x-tree-view@7.26.0`.
|
|
2576
|
+
|
|
2577
|
+
### Core
|
|
2578
|
+
|
|
2579
|
+
- [core] Fix corepack and pnpm installation in CircleCI (#16452) @flaviendelangle
|
|
2580
|
+
|
|
2581
|
+
## 7.25.0
|
|
2582
|
+
|
|
2583
|
+
_Jan 31, 2025_
|
|
2584
|
+
|
|
2585
|
+
We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
2586
|
+
|
|
2587
|
+
- 🐞 Bugfixes
|
|
2588
|
+
|
|
2589
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2590
|
+
@k-rajat19, @lauri865.
|
|
2591
|
+
Following are all team members who have contributed to this release:
|
|
2592
|
+
@KenanYusuf, @MBilalShafi, @arminmeh.
|
|
2593
|
+
|
|
2594
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2595
|
+
|
|
2596
|
+
### Data Grid
|
|
2597
|
+
|
|
2598
|
+
#### `@mui/x-data-grid@7.25.0`
|
|
2599
|
+
|
|
2600
|
+
- [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16368) @lauri865
|
|
2601
|
+
- [DataGrid] Refactor row state propagation (#16351) @lauri865
|
|
2602
|
+
- [DataGrid] Add missing style overrides (#16272) (#16358) @KenanYusuf
|
|
2603
|
+
- [DataGrid] Fix header filters keyboard navigation when there are no rows (#16369) @k-rajat19
|
|
2604
|
+
- [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16364) @KenanYusuf
|
|
2605
|
+
- [DataGrid] Improve test coverage of server side data source (#15988) @MBilalShafi
|
|
2606
|
+
- [DataGrid] Remove outdated warning (#16370) @MBilalShafi
|
|
2607
|
+
- [DataGrid] Respect width of `iconContainer` during autosizing (#16409) @michelengelen
|
|
2608
|
+
|
|
2609
|
+
#### `@mui/x-data-grid-pro@7.25.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2610
|
+
|
|
2611
|
+
Same changes as in `@mui/x-data-grid@7.25.0`, plus:
|
|
2612
|
+
|
|
2613
|
+
- [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16348) @arminmeh
|
|
2614
|
+
- [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16382) @arminmeh
|
|
2615
|
+
|
|
2616
|
+
#### `@mui/x-data-grid-premium@7.25.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2617
|
+
|
|
2618
|
+
Same changes as in `@mui/x-data-grid-pro@7.25.0`.
|
|
2619
|
+
|
|
2620
|
+
### Date and Time Pickers
|
|
2621
|
+
|
|
2622
|
+
#### `@mui/x-date-pickers@7.25.0`
|
|
2623
|
+
|
|
2624
|
+
Internal changes.
|
|
2625
|
+
|
|
2626
|
+
#### `@mui/x-date-pickers-pro@7.25.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2627
|
+
|
|
2628
|
+
Same changes as in `@mui/x-date-pickers@7.25.0`.
|
|
2629
|
+
|
|
2630
|
+
### Charts
|
|
2631
|
+
|
|
2632
|
+
#### `@mui/x-charts@7.25.0`
|
|
1030
2633
|
|
|
1031
|
-
|
|
2634
|
+
Internal changes.
|
|
1032
2635
|
|
|
1033
|
-
-
|
|
2636
|
+
#### `@mui/x-charts-pro@7.25.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1034
2637
|
|
|
1035
|
-
|
|
1036
|
-
The deprecated ones are now removed.
|
|
1037
|
-
- The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
|
|
2638
|
+
Same changes as in `@mui/x-charts@7.25.0`.
|
|
1038
2639
|
|
|
1039
|
-
|
|
2640
|
+
### Tree View
|
|
1040
2641
|
|
|
1041
|
-
#### `@mui/x-
|
|
2642
|
+
#### `@mui/x-tree-view@7.25.0`
|
|
1042
2643
|
|
|
1043
|
-
|
|
1044
|
-
- [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
|
|
1045
|
-
- [charts] Fix log scale with `null` data (#15337) @alexfauquette
|
|
1046
|
-
- [charts] Fix tooltip follow mouse (#15189) @alexfauquette
|
|
1047
|
-
- [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
|
|
1048
|
-
- [charts] Remove axis from the pie chart (#15187) @alexfauquette
|
|
1049
|
-
- [charts] Remove deprecated `legend` props (#15081) @alexfauquette
|
|
1050
|
-
- [charts] Remove deprecated highlight properties (#15191) @alexfauquette
|
|
1051
|
-
- [charts] Update Popper position outside of React (#15003) @alexfauquette
|
|
1052
|
-
- [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
|
|
2644
|
+
Internal changes.
|
|
1053
2645
|
|
|
1054
|
-
#### `@mui/x-
|
|
2646
|
+
#### `@mui/x-tree-view-pro@7.25.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1055
2647
|
|
|
1056
|
-
Same changes as in `@mui/x-
|
|
2648
|
+
Same changes as in `@mui/x-tree-view@7.25.0`.
|
|
2649
|
+
|
|
2650
|
+
### Docs
|
|
2651
|
+
|
|
2652
|
+
- [docs] Improve release documentation (#16322) @MBilalShafi
|
|
2653
|
+
|
|
2654
|
+
### Core
|
|
2655
|
+
|
|
2656
|
+
- [test] Fix flaky data source tests in DataGrid (#16382) @lauri865
|
|
2657
|
+
|
|
2658
|
+
## 7.24.1
|
|
2659
|
+
|
|
2660
|
+
_Jan 24, 2025_
|
|
2661
|
+
|
|
2662
|
+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
2663
|
+
|
|
2664
|
+
- 🐞 Bugfixes
|
|
2665
|
+
- 🌍 Improve Persian (fa-IR) locale on the Data Grid
|
|
2666
|
+
|
|
2667
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2668
|
+
@mostafaRoosta74, @lauri865.
|
|
2669
|
+
|
|
2670
|
+
Following are all team members who have contributed to this release:
|
|
2671
|
+
@alexfauquette, @JCQuintas, @cherniavskii, @LukasTy, @arminmeh.
|
|
2672
|
+
|
|
2673
|
+
### Data Grid
|
|
2674
|
+
|
|
2675
|
+
#### `@mui/x-data-grid@7.24.1`
|
|
2676
|
+
|
|
2677
|
+
- [DataGrid] Fix toggling preference panel from toolbar (#16276) @lauri865
|
|
2678
|
+
- [DataGrid] Only try to mount filter button if there are filters present (#16269) @lauri865
|
|
2679
|
+
- [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16320) @arminmeh
|
|
2680
|
+
- [l10n] Improve Persian (fa-IR) locale (#15964) @mostafaRoosta74
|
|
2681
|
+
|
|
2682
|
+
#### `@mui/x-data-grid-pro@7.24.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2683
|
+
|
|
2684
|
+
Same changes as in `@mui/x-data-grid@7.24.1`.
|
|
2685
|
+
|
|
2686
|
+
#### `@mui/x-data-grid-premium@7.24.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2687
|
+
|
|
2688
|
+
Same changes as in `@mui/x-data-grid-pro@7.24.1`.
|
|
2689
|
+
|
|
2690
|
+
### Date and Time Pickers
|
|
2691
|
+
|
|
2692
|
+
#### `@mui/x-date-pickers@7.24.1`
|
|
2693
|
+
|
|
2694
|
+
- [fields] Reset `all` selected state on section edit (#16232) @LukasTy
|
|
2695
|
+
|
|
2696
|
+
#### `@mui/x-date-pickers-pro@7.24.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2697
|
+
|
|
2698
|
+
Same changes as in `@mui/x-date-pickers@7.24.1`.
|
|
2699
|
+
|
|
2700
|
+
### Charts
|
|
2701
|
+
|
|
2702
|
+
#### `@mui/x-charts@7.24.1`
|
|
2703
|
+
|
|
2704
|
+
- [charts] Handle case where gradient stop `offset` could be `Infinite` (@JCQuintas) (#16309) @JCQuintas
|
|
2705
|
+
|
|
2706
|
+
#### `@mui/x-charts-pro@7.24.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2707
|
+
|
|
2708
|
+
Same changes as in `@mui/x-charts@7.24.1`.
|
|
1057
2709
|
|
|
1058
2710
|
### Tree View
|
|
1059
2711
|
|
|
1060
|
-
####
|
|
2712
|
+
#### `@mui/x-tree-view@7.24.1`
|
|
1061
2713
|
|
|
1062
|
-
|
|
2714
|
+
Internal changes.
|
|
1063
2715
|
|
|
1064
|
-
-
|
|
2716
|
+
#### `@mui/x-tree-view-pro@7.24.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1065
2717
|
|
|
1066
|
-
|
|
2718
|
+
Same changes as in `@mui/x-tree-view@7.24.1`.
|
|
1067
2719
|
|
|
1068
|
-
|
|
2720
|
+
### Docs
|
|
1069
2721
|
|
|
1070
|
-
-
|
|
2722
|
+
- [docs] Fix `domainLimit` definition (#16271) @alexfauquette
|
|
1071
2723
|
|
|
1072
|
-
|
|
2724
|
+
### Core
|
|
1073
2725
|
|
|
1074
|
-
- [
|
|
1075
|
-
- [
|
|
1076
|
-
- [
|
|
1077
|
-
|
|
2726
|
+
- [core] Make `@mui/x-internals` a dependency of `@mui/x-license` (#16265) @alexfauquette
|
|
2727
|
+
- [test] Fix flaky column pinning tests (#16228) @cherniavskii
|
|
2728
|
+
- [test] Fix flaky tests (#16264) @lauri865
|
|
2729
|
+
|
|
2730
|
+
## 7.24.0
|
|
2731
|
+
|
|
2732
|
+
_Jan 17, 2025_
|
|
2733
|
+
|
|
2734
|
+
We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
|
|
2735
|
+
|
|
2736
|
+
- 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
|
|
2737
|
+
- 🐞 Bugfixes
|
|
2738
|
+
|
|
2739
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2740
|
+
@lauri865, @AxharKhan.
|
|
2741
|
+
Following are all team members who have contributed to this release:
|
|
2742
|
+
@KenanYusuf, @arminmeh, @cherniavskii, @michelengelen, @samuelsycamore, @LukasTy.
|
|
2743
|
+
|
|
2744
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2745
|
+
|
|
2746
|
+
### Data Grid
|
|
2747
|
+
|
|
2748
|
+
#### `@mui/x-data-grid@7.24.0`
|
|
2749
|
+
|
|
2750
|
+
- [DataGrid] Fix resizing right pinned column (#16193) @KenanYusuf
|
|
2751
|
+
- [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#16212) @lauri865
|
|
2752
|
+
- [DataGrid] Scroll restoration (#16208) @lauri865
|
|
2753
|
+
- [DataGrid] Fix row, cell and header memoizations (#16195) @lauri865
|
|
2754
|
+
- [l10n] Improve Urdu (ur-PK) locale (#16081) @AxharKhan
|
|
2755
|
+
|
|
2756
|
+
#### `@mui/x-data-grid-pro@7.24.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2757
|
+
|
|
2758
|
+
Same changes as in `@mui/x-data-grid@7.24.0`, plus:
|
|
2759
|
+
|
|
2760
|
+
- [DataGridPro] Add test for column pinning with disabled column virtualization (#16196) @cherniavskii
|
|
2761
|
+
- [DataGridPro] Fix width of right-pinned column group during resize (#16207) @cherniavskii
|
|
2762
|
+
|
|
2763
|
+
#### `@mui/x-data-grid-premium@7.24.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2764
|
+
|
|
2765
|
+
Same changes as in `@mui/x-data-grid-pro@7.24.0`.
|
|
2766
|
+
|
|
2767
|
+
### Date and Time Pickers
|
|
2768
|
+
|
|
2769
|
+
#### `@mui/x-date-pickers@7.24.0`
|
|
2770
|
+
|
|
2771
|
+
Internal changes.
|
|
2772
|
+
|
|
2773
|
+
#### `@mui/x-date-pickers-pro@7.24.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2774
|
+
|
|
2775
|
+
Same changes as in `@mui/x-date-pickers@7.24.0`.
|
|
2776
|
+
|
|
2777
|
+
### Charts
|
|
2778
|
+
|
|
2779
|
+
#### `@mui/x-charts@7.24.0`
|
|
2780
|
+
|
|
2781
|
+
Internal changes.
|
|
2782
|
+
|
|
2783
|
+
#### `@mui/x-charts-pro@7.24.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2784
|
+
|
|
2785
|
+
Same changes as in `@mui/x-charts@7.24.0`.
|
|
2786
|
+
|
|
2787
|
+
### Tree View
|
|
2788
|
+
|
|
2789
|
+
#### `@mui/x-tree-view@7.24.0`
|
|
2790
|
+
|
|
2791
|
+
Internal changes.
|
|
2792
|
+
|
|
2793
|
+
#### `@mui/x-tree-view-pro@7.24.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2794
|
+
|
|
2795
|
+
Same changes as in `@mui/x-tree-view@7.24.0`.
|
|
1078
2796
|
|
|
1079
2797
|
### Docs
|
|
1080
2798
|
|
|
1081
|
-
- [docs]
|
|
1082
|
-
- [docs]
|
|
1083
|
-
- [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
|
|
1084
|
-
- [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
|
|
1085
|
-
- [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
|
|
1086
|
-
- [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
|
|
1087
|
-
- [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
|
|
1088
|
-
- [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
|
|
1089
|
-
- [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
|
|
1090
|
-
- [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
|
|
1091
|
-
- [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
|
|
1092
|
-
- [docs] Fix link to private notion page (#15396) @michelengelen
|
|
1093
|
-
- [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
|
|
1094
|
-
- [docs] Fix peer dependency range (#15281) @oliviertassinari
|
|
1095
|
-
- [docs] Fix small Tree View typo (#15390) @oliviertassinari
|
|
1096
|
-
- [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
|
|
1097
|
-
- [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
|
|
1098
|
-
- [docs] Start v8 migration guides (#15096) @MBilalShafi
|
|
1099
|
-
- [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
|
|
1100
|
-
- [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
|
|
1101
|
-
- [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
|
|
2799
|
+
- [docs] Copyedit the Data Grid cell selection page (#16213) @samuelsycamore
|
|
2800
|
+
- [docs] Fix demo rendering issue on Codesandbox (#16129) @arminmeh
|
|
1102
2801
|
|
|
1103
2802
|
### Core
|
|
1104
2803
|
|
|
1105
|
-
- [core]
|
|
1106
|
-
- [
|
|
1107
|
-
- [
|
|
1108
|
-
- [
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
-
|
|
1117
|
-
-
|
|
1118
|
-
-
|
|
2804
|
+
- [core] Type all references as `RefObject` (#16125) @arminmeh
|
|
2805
|
+
- [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16214) @LukasTy
|
|
2806
|
+
- [infra] Improve cherry-pick action target list (#16188) @michelengelen
|
|
2807
|
+
- [test] Fix flaky column pinning unit test (#16209) @cherniavskii
|
|
2808
|
+
|
|
2809
|
+
## 7.23.6
|
|
2810
|
+
|
|
2811
|
+
_Jan 9, 2025_
|
|
2812
|
+
|
|
2813
|
+
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
2814
|
+
|
|
2815
|
+
- 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
|
|
2816
|
+
- 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
|
|
2817
|
+
- 🌍 Improve Dutch (nl-NL) locale on the Data Grid
|
|
2818
|
+
- 🐞 Bugfixes
|
|
2819
|
+
|
|
2820
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2821
|
+
@josteinjhauge, @derek-0000, @nusr, @k-rajat19, @tomashauser.
|
|
2822
|
+
Following are all team members who have contributed to this release:
|
|
2823
|
+
@flaviendelangle, @LukasTy, @MBilalShafi, @arminmeh, @oliviertassinari, @cherniavskii.
|
|
2824
|
+
|
|
2825
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2826
|
+
|
|
2827
|
+
### Data Grid
|
|
2828
|
+
|
|
2829
|
+
#### `@mui/x-data-grid@7.23.6`
|
|
2830
|
+
|
|
2831
|
+
- [DataGrid] Improve React 19 support (#16048) @LukasTy
|
|
2832
|
+
- [DataGrid] Add `name` attribute to selection checkboxes (#16041) @derek-0000
|
|
2833
|
+
- [DataGrid] Fix number filter field formatting values while typing (#16068) @arminmeh
|
|
2834
|
+
- [DataGrid] Fix select all checkbox state reset with server side data (#16039) @MBilalShafi
|
|
2835
|
+
|
|
2836
|
+
#### `@mui/x-data-grid-pro@7.23.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2837
|
+
|
|
2838
|
+
Same changes as in `@mui/x-data-grid@7.23.6`.
|
|
2839
|
+
|
|
2840
|
+
#### `@mui/x-data-grid-premium@7.23.6` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2841
|
+
|
|
2842
|
+
Same changes as in `@mui/x-data-grid-pro@7.23.6`.
|
|
2843
|
+
|
|
2844
|
+
### Date and Time Pickers
|
|
2845
|
+
|
|
2846
|
+
#### `@mui/x-date-pickers@7.23.6`
|
|
2847
|
+
|
|
2848
|
+
- [pickers] Improve React 19 support (#16048) @LukasTy
|
|
2849
|
+
- [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16057) @nusr
|
|
2850
|
+
- [l10n] Improve Norwegian (nb-NO) locale (#16083) @josteinjhauge
|
|
2851
|
+
- [pickers] Support `date-fns-jalali` v4 (#16013) @LukasTy
|
|
2852
|
+
|
|
2853
|
+
#### `@mui/x-date-pickers-pro@7.23.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2854
|
+
|
|
2855
|
+
Same changes as in `@mui/x-date-pickers@7.23.6`.
|
|
2856
|
+
|
|
2857
|
+
### Charts
|
|
2858
|
+
|
|
2859
|
+
#### `@mui/x-charts@7.23.6`
|
|
2860
|
+
|
|
2861
|
+
- [charts] Improve React 19 support (#16048) @LukasTy
|
|
2862
|
+
- [charts] Fix 301 redirection in the API documentation @oliviertassinari
|
|
2863
|
+
|
|
2864
|
+
#### `@mui/x-charts-pro@7.23.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2865
|
+
|
|
2866
|
+
Same changes as in `@mui/x-charts@7.23.6`.
|
|
2867
|
+
|
|
2868
|
+
### Tree View
|
|
2869
|
+
|
|
2870
|
+
#### `@mui/x-tree-view@7.23.6`
|
|
2871
|
+
|
|
2872
|
+
- [TreeView] Improve React 19 support (#16048) @LukasTy
|
|
2873
|
+
|
|
2874
|
+
#### `@mui/x-tree-view-pro@7.23.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2875
|
+
|
|
2876
|
+
Same changes as in `@mui/x-tree-view@7.23.6`.
|
|
2877
|
+
|
|
2878
|
+
### Docs
|
|
2879
|
+
|
|
2880
|
+
- [docs] Fix `EditingWithDatePickers` demo (#16047) @k-rajat19
|
|
2881
|
+
- [docs] Fix doc warning for automatic children selection on tree view (#16037) @flaviendelangle
|
|
2882
|
+
- [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16088) @tomashauser
|
|
2883
|
+
|
|
2884
|
+
### Core
|
|
2885
|
+
|
|
2886
|
+
- [core] Clarify the release strategy (#16012) @MBilalShafi
|
|
2887
|
+
- [core] Update the `release:version` docs (#16040) @cherniavskii
|
|
2888
|
+
|
|
2889
|
+
## 7.23.5
|
|
2890
|
+
|
|
2891
|
+
_Dec 27, 2024_
|
|
2892
|
+
|
|
2893
|
+
Here are some highlights ✨:
|
|
2894
|
+
|
|
2895
|
+
- 🐞 Fix version mismatch issue in Data Grid codesandbox/stackblitz demos
|
|
2896
|
+
|
|
2897
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2898
|
+
|
|
2899
|
+
### Data Grid
|
|
2900
|
+
|
|
2901
|
+
#### `@mui/x-data-grid@7.23.5`
|
|
2902
|
+
|
|
2903
|
+
No changes since `@mui/x-data-grid@v7.23.4`.
|
|
2904
|
+
|
|
2905
|
+
#### `@mui/x-data-grid-pro@7.23.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2906
|
+
|
|
2907
|
+
Same changes as in `@mui/x-data-grid@7.23.5`.
|
|
2908
|
+
|
|
2909
|
+
#### `@mui/x-data-grid-premium@7.23.5` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2910
|
+
|
|
2911
|
+
Same changes as in `@mui/x-data-grid-pro@7.23.5`.
|
|
2912
|
+
|
|
2913
|
+
## 7.23.4
|
|
2914
|
+
|
|
2915
|
+
_Dec 27, 2024_
|
|
2916
|
+
|
|
2917
|
+
We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
|
|
2918
|
+
|
|
2919
|
+
- 🌍 Improve Dutch (nl-NL) locale on the Data Grid
|
|
2920
|
+
- 🐞 Bugfixes
|
|
2921
|
+
|
|
2922
|
+
Special thanks go out to the community contributor who has helped make this release possible:
|
|
2923
|
+
@JoepVerkoelen.
|
|
2924
|
+
Following are all team members who have contributed to this release:
|
|
2925
|
+
@arminmeh, @oliviertassinari.
|
|
2926
|
+
|
|
2927
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2928
|
+
|
|
2929
|
+
### Data Grid
|
|
2930
|
+
|
|
2931
|
+
#### `@mui/x-data-grid@7.23.4`
|
|
2932
|
+
|
|
2933
|
+
- [DataGrid] Fix header filters showing clear button while empty (#15990) @k-rajat19
|
|
2934
|
+
- [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15984) @lauri865
|
|
2935
|
+
- [l10n] Improve Dutch (nl-NL) locale (#15920) @JoepVerkoelen
|
|
2936
|
+
|
|
2937
|
+
#### `@mui/x-data-grid-pro@7.23.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2938
|
+
|
|
2939
|
+
Same changes as in `@mui/x-data-grid@7.23.4`.
|
|
2940
|
+
|
|
2941
|
+
#### `@mui/x-data-grid-premium@7.23.4` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2942
|
+
|
|
2943
|
+
Same changes as in `@mui/x-data-grid-pro@7.23.4`, plus:
|
|
2944
|
+
|
|
2945
|
+
- [DataGridPremium] Fix column pinning with checkbox selection and row grouping (#15949) @k-rajat19
|
|
2946
|
+
|
|
2947
|
+
### Docs
|
|
2948
|
+
|
|
2949
|
+
- [docs] Fix outdated link to handbook (#15855) @oliviertassinari
|
|
2950
|
+
|
|
2951
|
+
## 7.23.3
|
|
2952
|
+
|
|
2953
|
+
_Dec 19, 2024_
|
|
2954
|
+
|
|
2955
|
+
We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
2956
|
+
|
|
2957
|
+
- 🌍 Improve Korean (ko-KR) locale on the Data Grid
|
|
2958
|
+
- 🐞 Bugfixes
|
|
2959
|
+
|
|
2960
|
+
Special thanks go out to the community contributors who have helped make this release possible:
|
|
2961
|
+
@k-rajat19, @good-jinu.
|
|
2962
|
+
Following are all team members who have contributed to this release:
|
|
2963
|
+
@KenanYusuf, @MBilalShafi, @arminmeh, @flaviendelangle.
|
|
2964
|
+
|
|
2965
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
2966
|
+
|
|
2967
|
+
### Data Grid
|
|
2968
|
+
|
|
2969
|
+
#### `@mui/x-data-grid@7.23.3`
|
|
2970
|
+
|
|
2971
|
+
- [DataGrid] Allow passing custom props to `.main` element (#15919) @MBilalShafi
|
|
2972
|
+
- [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15927) @k-rajat19
|
|
2973
|
+
- [DataGrid] Deprecate `indeterminateCheckboxAction` prop (#15862) @MBilalShafi
|
|
2974
|
+
- [DataGrid] Fix `aria-label` value for group checkboxes (#15861) @MBilalShafi
|
|
2975
|
+
- [DataGrid] Fix autosizing with virtualized columns (#15929) @k-rajat19
|
|
2976
|
+
- [DataGrid] Round dimensions to avoid subpixel rendering error (#15873) @KenanYusuf
|
|
2977
|
+
- [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15871) @k-rajat19
|
|
2978
|
+
- [DataGrid] Trigger row spanning computation on rows update (#15872) @MBilalShafi
|
|
2979
|
+
- [l10n] Improve Korean (ko-KR) locale (#15906) @good-jinu
|
|
2980
|
+
|
|
2981
|
+
#### `@mui/x-data-grid-pro@7.23.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2982
|
+
|
|
2983
|
+
Same changes as in `@mui/x-data-grid@7.23.3`.
|
|
2984
|
+
|
|
2985
|
+
#### `@mui/x-data-grid-premium@7.23.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2986
|
+
|
|
2987
|
+
Same changes as in `@mui/x-data-grid-pro@7.23.3`.
|
|
2988
|
+
|
|
2989
|
+
### Date and Time Pickers
|
|
2990
|
+
|
|
2991
|
+
#### `@mui/x-date-pickers@7.23.3`
|
|
2992
|
+
|
|
2993
|
+
- [pickers] Add verification to disable skipped hours in spring forward DST (#15918) @flaviendelangle
|
|
2994
|
+
|
|
2995
|
+
#### `@mui/x-date-pickers-pro@7.23.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2996
|
+
|
|
2997
|
+
Same changes as in `@mui/x-date-pickers@7.23.3`.
|
|
1119
2998
|
|
|
1120
2999
|
## 7.23.2
|
|
1121
3000
|
|
|
@@ -1358,7 +3237,7 @@ Same changes as in `@mui/x-tree-view@7.23.0`.
|
|
|
1358
3237
|
|
|
1359
3238
|
- [core] Update @mui/monorepo (#15574) @oliviertassinari
|
|
1360
3239
|
|
|
1361
|
-
##
|
|
3240
|
+
## 7.22.3
|
|
1362
3241
|
|
|
1363
3242
|
_Nov 21, 2024_
|
|
1364
3243
|
|