@mui/x-data-grid-pro 5.4.0 → 5.6.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 +321 -113
- package/DataGridPro/DataGridPro.d.ts +3 -0
- package/DataGridPro/DataGridPro.js +896 -0
- package/DataGridPro/index.d.ts +2 -0
- package/DataGridPro/index.js +2 -0
- package/DataGridPro/package.json +6 -0
- package/DataGridPro/useDataGridProComponent.d.ts +4 -0
- package/DataGridPro/useDataGridProComponent.js +72 -0
- package/DataGridPro/useDataGridProProps.d.ts +6 -0
- package/DataGridPro/useDataGridProProps.js +49 -0
- package/components/DataGridProColumnHeaders.d.ts +6 -0
- package/components/DataGridProColumnHeaders.js +165 -0
- package/components/DataGridProVirtualScroller.d.ts +8 -0
- package/components/DataGridProVirtualScroller.js +281 -0
- package/components/GridColumnPinningMenuItems.d.ts +11 -0
- package/components/GridColumnPinningMenuItems.js +71 -0
- package/components/GridDetailPanelToggleCell.d.ts +7 -0
- package/components/GridDetailPanelToggleCell.js +124 -0
- package/components/GridGroupingColumnLeafCell.d.ts +4 -0
- package/components/GridGroupingColumnLeafCell.js +22 -0
- package/components/GridGroupingCriteriaCell.d.ts +10 -0
- package/components/GridGroupingCriteriaCell.js +150 -0
- package/components/GridRowGroupableColumnMenuItems.d.ts +11 -0
- package/components/GridRowGroupableColumnMenuItems.js +63 -0
- package/components/GridRowGroupingColumnMenuItems.d.ts +11 -0
- package/components/GridRowGroupingColumnMenuItems.js +58 -0
- package/components/GridTreeDataGroupingCell.d.ts +10 -0
- package/components/GridTreeDataGroupingCell.js +159 -0
- package/components/Watermark.d.ts +2 -0
- package/components/Watermark.js +43 -0
- package/components/index.d.ts +2 -0
- package/components/index.js +3 -0
- package/components/package.json +6 -0
- package/hooks/features/columnPinning/gridColumnPinningInterface.d.ts +42 -0
- package/hooks/features/columnPinning/gridColumnPinningInterface.js +11 -0
- package/hooks/features/columnPinning/gridColumnPinningSelector.d.ts +2 -0
- package/hooks/features/columnPinning/gridColumnPinningSelector.js +1 -0
- package/hooks/features/columnPinning/index.d.ts +2 -0
- package/hooks/features/columnPinning/index.js +2 -0
- package/hooks/features/columnPinning/useGridColumnPinning.d.ts +6 -0
- package/hooks/features/columnPinning/useGridColumnPinning.js +274 -0
- package/hooks/features/columnPinning/useGridColumnPinningPreProcessors.d.ts +4 -0
- package/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js +45 -0
- package/hooks/features/columnReorder/columnReorderInterfaces.d.ts +6 -0
- package/hooks/features/columnReorder/columnReorderInterfaces.js +1 -0
- package/hooks/features/columnReorder/columnReorderSelector.d.ts +3 -0
- package/hooks/features/columnReorder/columnReorderSelector.js +3 -0
- package/hooks/features/columnReorder/index.d.ts +2 -0
- package/hooks/features/columnReorder/index.js +2 -0
- package/hooks/features/columnReorder/useGridColumnReorder.d.ts +8 -0
- package/hooks/features/columnReorder/useGridColumnReorder.js +166 -0
- package/hooks/features/columnResize/columnResizeSelector.d.ts +3 -0
- package/hooks/features/columnResize/columnResizeSelector.js +3 -0
- package/hooks/features/columnResize/columnResizeState.d.ts +3 -0
- package/hooks/features/columnResize/columnResizeState.js +1 -0
- package/hooks/features/columnResize/index.d.ts +2 -0
- package/hooks/features/columnResize/index.js +2 -0
- package/hooks/features/columnResize/useGridColumnResize.d.ts +9 -0
- package/hooks/features/columnResize/useGridColumnResize.js +305 -0
- package/hooks/features/detailPanel/gridDetailPanelInterface.d.ts +28 -0
- package/hooks/features/detailPanel/gridDetailPanelInterface.js +1 -0
- package/hooks/features/detailPanel/gridDetailPanelSelector.d.ts +5 -0
- package/hooks/features/detailPanel/gridDetailPanelSelector.js +3 -0
- package/hooks/features/detailPanel/gridDetailPanelToggleColDef.d.ts +3 -0
- package/hooks/features/detailPanel/gridDetailPanelToggleColDef.js +26 -0
- package/hooks/features/detailPanel/index.d.ts +3 -0
- package/hooks/features/detailPanel/index.js +3 -0
- package/hooks/features/detailPanel/useGridDetailPanel.d.ts +4 -0
- package/hooks/features/detailPanel/useGridDetailPanel.js +109 -0
- package/hooks/features/detailPanel/useGridDetailPanelCache.d.ts +4 -0
- package/hooks/features/detailPanel/useGridDetailPanelCache.js +57 -0
- package/hooks/features/detailPanel/useGridDetailPanelPreProcessors.d.ts +4 -0
- package/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js +28 -0
- package/hooks/features/index.d.ts +6 -0
- package/hooks/features/index.js +7 -0
- package/hooks/features/infiniteLoader/useGridInfiniteLoader.d.ts +10 -0
- package/hooks/features/infiniteLoader/useGridInfiniteLoader.js +52 -0
- package/hooks/features/rowGrouping/createGroupingColDef.d.ts +43 -0
- package/hooks/features/rowGrouping/createGroupingColDef.js +318 -0
- package/hooks/features/rowGrouping/gridRowGroupingInterfaces.d.ts +31 -0
- package/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +1 -0
- package/hooks/features/rowGrouping/gridRowGroupingSelector.d.ts +4 -0
- package/hooks/features/rowGrouping/gridRowGroupingSelector.js +5 -0
- package/hooks/features/rowGrouping/gridRowGroupingUtils.d.ts +24 -0
- package/hooks/features/rowGrouping/gridRowGroupingUtils.js +124 -0
- package/hooks/features/rowGrouping/index.d.ts +3 -0
- package/hooks/features/rowGrouping/index.js +3 -0
- package/hooks/features/rowGrouping/useGridRowGrouping.d.ts +13 -0
- package/hooks/features/rowGrouping/useGridRowGrouping.js +325 -0
- package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.d.ts +4 -0
- package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +76 -0
- package/hooks/features/treeData/gridTreeDataGroupColDef.d.ts +7 -0
- package/hooks/features/treeData/gridTreeDataGroupColDef.js +22 -0
- package/hooks/features/treeData/gridTreeDataUtils.d.ts +14 -0
- package/hooks/features/treeData/gridTreeDataUtils.js +86 -0
- package/hooks/features/treeData/index.d.ts +1 -0
- package/hooks/features/treeData/index.js +1 -0
- package/hooks/features/treeData/useGridTreeData.d.ts +10 -0
- package/hooks/features/treeData/useGridTreeData.js +108 -0
- package/hooks/features/treeData/useGridTreeDataPreProcessors.d.ts +4 -0
- package/hooks/features/treeData/useGridTreeDataPreProcessors.js +69 -0
- package/hooks/index.d.ts +1 -0
- package/hooks/index.js +1 -0
- package/hooks/package.json +6 -0
- package/hooks/utils/useGridApiContext.d.ts +4 -0
- package/hooks/utils/useGridApiContext.js +2 -0
- package/hooks/utils/useGridApiRef.d.ts +4 -0
- package/hooks/utils/useGridApiRef.js +2 -0
- package/hooks/utils/useGridRootProps.d.ts +2 -0
- package/hooks/utils/useGridRootProps.js +2 -0
- package/index.d.ts +15 -0
- package/index.js +19 -0
- package/legacy/DataGridPro/DataGridPro.js +896 -0
- package/legacy/DataGridPro/index.js +2 -0
- package/legacy/DataGridPro/useDataGridProComponent.js +72 -0
- package/legacy/DataGridPro/useDataGridProProps.js +53 -0
- package/legacy/components/DataGridProColumnHeaders.js +173 -0
- package/legacy/components/DataGridProVirtualScroller.js +297 -0
- package/legacy/components/GridColumnPinningMenuItems.js +71 -0
- package/legacy/components/GridDetailPanelToggleCell.js +120 -0
- package/legacy/components/GridGroupingColumnLeafCell.js +20 -0
- package/legacy/components/GridGroupingCriteriaCell.js +146 -0
- package/legacy/components/GridRowGroupableColumnMenuItems.js +61 -0
- package/legacy/components/GridRowGroupingColumnMenuItems.js +56 -0
- package/legacy/components/GridTreeDataGroupingCell.js +155 -0
- package/legacy/components/Watermark.js +43 -0
- package/legacy/components/index.js +3 -0
- package/legacy/hooks/features/columnPinning/gridColumnPinningInterface.js +11 -0
- package/legacy/hooks/features/columnPinning/gridColumnPinningSelector.js +3 -0
- package/legacy/hooks/features/columnPinning/index.js +2 -0
- package/legacy/hooks/features/columnPinning/useGridColumnPinning.js +298 -0
- package/legacy/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js +48 -0
- package/legacy/hooks/features/columnReorder/columnReorderInterfaces.js +1 -0
- package/legacy/hooks/features/columnReorder/columnReorderSelector.js +7 -0
- package/legacy/hooks/features/columnReorder/index.js +2 -0
- package/legacy/hooks/features/columnReorder/useGridColumnReorder.js +172 -0
- package/legacy/hooks/features/columnResize/columnResizeSelector.js +7 -0
- package/legacy/hooks/features/columnResize/columnResizeState.js +1 -0
- package/legacy/hooks/features/columnResize/index.js +2 -0
- package/legacy/hooks/features/columnResize/useGridColumnResize.js +310 -0
- package/legacy/hooks/features/detailPanel/gridDetailPanelInterface.js +1 -0
- package/legacy/hooks/features/detailPanel/gridDetailPanelSelector.js +9 -0
- package/legacy/hooks/features/detailPanel/gridDetailPanelToggleColDef.js +28 -0
- package/legacy/hooks/features/detailPanel/index.js +3 -0
- package/legacy/hooks/features/detailPanel/useGridDetailPanel.js +114 -0
- package/legacy/hooks/features/detailPanel/useGridDetailPanelCache.js +57 -0
- package/legacy/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js +31 -0
- package/legacy/hooks/features/index.js +7 -0
- package/legacy/hooks/features/infiniteLoader/useGridInfiniteLoader.js +51 -0
- package/legacy/hooks/features/rowGrouping/createGroupingColDef.js +319 -0
- package/legacy/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +1 -0
- package/legacy/hooks/features/rowGrouping/gridRowGroupingSelector.js +13 -0
- package/legacy/hooks/features/rowGrouping/gridRowGroupingUtils.js +130 -0
- package/legacy/hooks/features/rowGrouping/index.js +3 -0
- package/legacy/hooks/features/rowGrouping/useGridRowGrouping.js +334 -0
- package/legacy/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +83 -0
- package/legacy/hooks/features/treeData/gridTreeDataGroupColDef.js +24 -0
- package/legacy/hooks/features/treeData/gridTreeDataUtils.js +84 -0
- package/legacy/hooks/features/treeData/index.js +1 -0
- package/legacy/hooks/features/treeData/useGridTreeData.js +116 -0
- package/legacy/hooks/features/treeData/useGridTreeDataPreProcessors.js +72 -0
- package/legacy/hooks/index.js +1 -0
- package/legacy/hooks/utils/useGridApiContext.js +2 -0
- package/legacy/hooks/utils/useGridApiRef.js +2 -0
- package/legacy/hooks/utils/useGridRootProps.js +2 -0
- package/legacy/index.js +19 -0
- package/legacy/models/dataGridProProps.js +1 -0
- package/legacy/models/gridApiPro.js +1 -0
- package/legacy/models/gridGroupingColDefOverride.js +1 -0
- package/legacy/models/gridGroupingValueGetterParams.js +1 -0
- package/legacy/models/gridRowScrollEndParams.js +1 -0
- package/legacy/models/gridStatePro.js +1 -0
- package/legacy/models/index.js +4 -0
- package/legacy/themeAugmentation/index.js +3 -0
- package/legacy/themeAugmentation/overrides.js +1 -0
- package/legacy/themeAugmentation/props.js +1 -0
- package/legacy/typeOverloads/modules.js +1 -0
- package/legacy/typeOverloads/reexports.js +6 -0
- package/legacy/utils/domUtils.js +19 -0
- package/legacy/utils/tree/buildRowTree.js +188 -0
- package/legacy/utils/tree/sortRowTree.js +63 -0
- package/models/dataGridProProps.d.ts +174 -0
- package/models/dataGridProProps.js +1 -0
- package/models/gridApiPro.d.ts +12 -0
- package/models/gridApiPro.js +1 -0
- package/models/gridGroupingColDefOverride.d.ts +30 -0
- package/models/gridGroupingColDefOverride.js +1 -0
- package/models/gridGroupingValueGetterParams.d.ts +31 -0
- package/models/gridGroupingValueGetterParams.js +1 -0
- package/models/gridRowScrollEndParams.d.ts +18 -0
- package/models/gridRowScrollEndParams.js +1 -0
- package/models/gridStatePro.d.ts +20 -0
- package/models/gridStatePro.js +1 -0
- package/models/index.d.ts +4 -0
- package/models/index.js +4 -0
- package/models/package.json +6 -0
- package/modern/DataGridPro/DataGridPro.js +896 -0
- package/modern/DataGridPro/index.js +2 -0
- package/modern/DataGridPro/useDataGridProComponent.js +72 -0
- package/modern/DataGridPro/useDataGridProProps.js +45 -0
- package/modern/components/DataGridProColumnHeaders.js +163 -0
- package/modern/components/DataGridProVirtualScroller.js +279 -0
- package/modern/components/GridColumnPinningMenuItems.js +71 -0
- package/modern/components/GridDetailPanelToggleCell.js +124 -0
- package/modern/components/GridGroupingColumnLeafCell.js +20 -0
- package/modern/components/GridGroupingCriteriaCell.js +148 -0
- package/modern/components/GridRowGroupableColumnMenuItems.js +61 -0
- package/modern/components/GridRowGroupingColumnMenuItems.js +56 -0
- package/modern/components/GridTreeDataGroupingCell.js +157 -0
- package/modern/components/Watermark.js +43 -0
- package/modern/components/index.js +3 -0
- package/modern/hooks/features/columnPinning/gridColumnPinningInterface.js +11 -0
- package/modern/hooks/features/columnPinning/gridColumnPinningSelector.js +1 -0
- package/modern/hooks/features/columnPinning/index.js +2 -0
- package/modern/hooks/features/columnPinning/useGridColumnPinning.js +268 -0
- package/modern/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js +45 -0
- package/modern/hooks/features/columnReorder/columnReorderInterfaces.js +1 -0
- package/modern/hooks/features/columnReorder/columnReorderSelector.js +3 -0
- package/modern/hooks/features/columnReorder/index.js +2 -0
- package/modern/hooks/features/columnReorder/useGridColumnReorder.js +166 -0
- package/modern/hooks/features/columnResize/columnResizeSelector.js +3 -0
- package/modern/hooks/features/columnResize/columnResizeState.js +1 -0
- package/modern/hooks/features/columnResize/index.js +2 -0
- package/modern/hooks/features/columnResize/useGridColumnResize.js +295 -0
- package/modern/hooks/features/detailPanel/gridDetailPanelInterface.js +1 -0
- package/modern/hooks/features/detailPanel/gridDetailPanelSelector.js +3 -0
- package/modern/hooks/features/detailPanel/gridDetailPanelToggleColDef.js +26 -0
- package/modern/hooks/features/detailPanel/index.js +3 -0
- package/modern/hooks/features/detailPanel/useGridDetailPanel.js +105 -0
- package/modern/hooks/features/detailPanel/useGridDetailPanelCache.js +57 -0
- package/modern/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js +28 -0
- package/modern/hooks/features/index.js +7 -0
- package/modern/hooks/features/infiniteLoader/useGridInfiniteLoader.js +52 -0
- package/modern/hooks/features/rowGrouping/createGroupingColDef.js +302 -0
- package/modern/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +1 -0
- package/modern/hooks/features/rowGrouping/gridRowGroupingSelector.js +5 -0
- package/modern/hooks/features/rowGrouping/gridRowGroupingUtils.js +122 -0
- package/modern/hooks/features/rowGrouping/index.js +3 -0
- package/modern/hooks/features/rowGrouping/useGridRowGrouping.js +317 -0
- package/modern/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +76 -0
- package/modern/hooks/features/treeData/gridTreeDataGroupColDef.js +22 -0
- package/modern/hooks/features/treeData/gridTreeDataUtils.js +82 -0
- package/modern/hooks/features/treeData/index.js +1 -0
- package/modern/hooks/features/treeData/useGridTreeData.js +106 -0
- package/modern/hooks/features/treeData/useGridTreeDataPreProcessors.js +67 -0
- package/modern/hooks/index.js +1 -0
- package/modern/hooks/utils/useGridApiContext.js +2 -0
- package/modern/hooks/utils/useGridApiRef.js +2 -0
- package/modern/hooks/utils/useGridRootProps.js +2 -0
- package/modern/index.js +19 -0
- package/modern/models/dataGridProProps.js +1 -0
- package/modern/models/gridApiPro.js +1 -0
- package/modern/models/gridGroupingColDefOverride.js +1 -0
- package/modern/models/gridGroupingValueGetterParams.js +1 -0
- package/modern/models/gridRowScrollEndParams.js +1 -0
- package/modern/models/gridStatePro.js +1 -0
- package/modern/models/index.js +4 -0
- package/modern/themeAugmentation/index.js +3 -0
- package/modern/themeAugmentation/overrides.js +1 -0
- package/modern/themeAugmentation/props.js +1 -0
- package/modern/typeOverloads/modules.js +1 -0
- package/modern/typeOverloads/reexports.js +6 -0
- package/modern/utils/domUtils.js +19 -0
- package/modern/utils/tree/buildRowTree.js +167 -0
- package/modern/utils/tree/sortRowTree.js +60 -0
- package/node/DataGridPro/DataGridPro.js +921 -0
- package/node/DataGridPro/index.js +30 -0
- package/node/DataGridPro/useDataGridProComponent.js +94 -0
- package/node/DataGridPro/useDataGridProProps.js +69 -0
- package/node/components/DataGridProColumnHeaders.js +189 -0
- package/node/components/DataGridProVirtualScroller.js +308 -0
- package/node/components/GridColumnPinningMenuItems.js +88 -0
- package/node/components/GridDetailPanelToggleCell.js +145 -0
- package/node/components/GridGroupingColumnLeafCell.js +38 -0
- package/node/components/GridGroupingCriteriaCell.js +170 -0
- package/node/components/GridRowGroupableColumnMenuItems.js +82 -0
- package/node/components/GridRowGroupingColumnMenuItems.js +78 -0
- package/node/components/GridTreeDataGroupingCell.js +180 -0
- package/node/components/Watermark.js +56 -0
- package/node/components/index.js +31 -0
- package/node/hooks/features/columnPinning/gridColumnPinningInterface.js +17 -0
- package/node/hooks/features/columnPinning/gridColumnPinningSelector.js +10 -0
- package/node/hooks/features/columnPinning/index.js +31 -0
- package/node/hooks/features/columnPinning/useGridColumnPinning.js +297 -0
- package/node/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js +66 -0
- package/node/hooks/features/columnReorder/columnReorderInterfaces.js +5 -0
- package/node/hooks/features/columnReorder/columnReorderSelector.js +14 -0
- package/node/hooks/features/columnReorder/index.js +18 -0
- package/node/hooks/features/columnReorder/useGridColumnReorder.js +187 -0
- package/node/hooks/features/columnResize/columnResizeSelector.js +14 -0
- package/node/hooks/features/columnResize/columnResizeState.js +5 -0
- package/node/hooks/features/columnResize/index.js +31 -0
- package/node/hooks/features/columnResize/useGridColumnResize.js +326 -0
- package/node/hooks/features/detailPanel/gridDetailPanelInterface.js +5 -0
- package/node/hooks/features/detailPanel/gridDetailPanelSelector.js +18 -0
- package/node/hooks/features/detailPanel/gridDetailPanelToggleColDef.js +47 -0
- package/node/hooks/features/detailPanel/index.js +44 -0
- package/node/hooks/features/detailPanel/useGridDetailPanel.js +130 -0
- package/node/hooks/features/detailPanel/useGridDetailPanelCache.js +74 -0
- package/node/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js +44 -0
- package/node/hooks/features/index.js +83 -0
- package/node/hooks/features/infiniteLoader/useGridInfiniteLoader.js +67 -0
- package/node/hooks/features/rowGrouping/createGroupingColDef.js +341 -0
- package/node/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +5 -0
- package/node/hooks/features/rowGrouping/gridRowGroupingSelector.js +18 -0
- package/node/hooks/features/rowGrouping/gridRowGroupingUtils.js +153 -0
- package/node/hooks/features/rowGrouping/index.js +51 -0
- package/node/hooks/features/rowGrouping/useGridRowGrouping.js +355 -0
- package/node/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +94 -0
- package/node/hooks/features/treeData/gridTreeDataGroupColDef.js +35 -0
- package/node/hooks/features/treeData/gridTreeDataUtils.js +95 -0
- package/node/hooks/features/treeData/index.js +13 -0
- package/node/hooks/features/treeData/useGridTreeData.js +132 -0
- package/node/hooks/features/treeData/useGridTreeDataPreProcessors.js +92 -0
- package/node/hooks/index.js +18 -0
- package/node/hooks/utils/useGridApiContext.js +11 -0
- package/node/hooks/utils/useGridApiRef.js +11 -0
- package/node/hooks/utils/useGridRootProps.js +11 -0
- package/node/index.js +200 -0
- package/node/models/dataGridProProps.js +5 -0
- package/node/models/gridApiPro.js +5 -0
- package/node/models/gridGroupingColDefOverride.js +5 -0
- package/node/models/gridGroupingValueGetterParams.js +5 -0
- package/node/models/gridRowScrollEndParams.js +5 -0
- package/node/models/gridStatePro.js +5 -0
- package/node/models/index.js +44 -0
- package/node/themeAugmentation/index.js +31 -0
- package/node/themeAugmentation/overrides.js +5 -0
- package/node/themeAugmentation/props.js +5 -0
- package/node/typeOverloads/modules.js +5 -0
- package/node/typeOverloads/reexports.js +29 -0
- package/node/utils/domUtils.js +32 -0
- package/node/utils/tree/buildRowTree.js +185 -0
- package/node/utils/tree/sortRowTree.js +69 -0
- package/package.json +12 -14
- package/themeAugmentation/index.d.ts +2 -2
- package/themeAugmentation/index.js +3 -0
- package/themeAugmentation/overrides.d.ts +8 -8
- package/themeAugmentation/overrides.js +1 -0
- package/themeAugmentation/package.json +6 -0
- package/themeAugmentation/props.d.ts +19 -19
- package/themeAugmentation/props.js +1 -0
- package/typeOverloads/modules.d.ts +41 -0
- package/typeOverloads/modules.js +1 -0
- package/typeOverloads/reexports.d.ts +22 -0
- package/typeOverloads/reexports.js +6 -0
- package/utils/domUtils.d.ts +3 -0
- package/utils/domUtils.js +19 -0
- package/utils/tree/buildRowTree.d.ts +47 -0
- package/utils/tree/buildRowTree.js +179 -0
- package/utils/tree/sortRowTree.d.ts +10 -0
- package/utils/tree/sortRowTree.js +60 -0
- package/LICENSE +0 -12
- package/index-cjs.js +0 -15
- package/index-esm.js +0 -15
- package/x-data-grid-pro.d.ts +0 -5251
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,223 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 5.6.0
|
|
7
|
+
|
|
8
|
+
_Mar 4, 2022_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 📦 Use the same bundling scripts as those in the [material-ui](https://github.com/mui/material-ui) repository (#3965) @flaviendelangle
|
|
13
|
+
|
|
14
|
+
The code structure and the bundling strategy have been modified to provide better isolation between components.
|
|
15
|
+
The bundle size is slightly reduced, but with tree shaking, the doors are open for significant gains in the future. 🏋
|
|
16
|
+
We predict that such modifications could potentially impact edge cases.
|
|
17
|
+
If you encounter problems with your build, please open an issue.
|
|
18
|
+
These issues will have high priority as part of our risk mitigation strategy.
|
|
19
|
+
|
|
20
|
+
- 🧼 Clean and document the column selectors (#4010) @flaviendelangle
|
|
21
|
+
|
|
22
|
+
Column selectors have been renamed to improve clarity.
|
|
23
|
+
The old names have been deprecated and will be removed in v6.
|
|
24
|
+
Here are the new names and the modifications needed to get the same information with the new selectors.
|
|
25
|
+
|
|
26
|
+
| Old name | New name |
|
|
27
|
+
| ------------------------------- | ----------------------------------------- |
|
|
28
|
+
| `allGridColumnsFieldsSelector` | `gridColumnFieldsSelector` |
|
|
29
|
+
| `allGridColumnsSelector` | `gridColumnDefinitionsSelector` |
|
|
30
|
+
| `visibleGridColumnsSelector` | `gridVisibleColumnDefinitionsSelector` |
|
|
31
|
+
| `filterableGridColumnsSelector` | `gridFilterableColumnDefinitionsSelector` |
|
|
32
|
+
|
|
33
|
+
```diff
|
|
34
|
+
-const { all, lookup, columnVisibilityModel } = gridColumnsSelector(apiRef)
|
|
35
|
+
+const all = gridColumnFieldsSelector(apiRef)
|
|
36
|
+
+const lookup = gridColumnLookupSelector(apiRef)
|
|
37
|
+
+const columnVisibilityModel = gridColumnVisibilityModelSelector(apiRef)
|
|
38
|
+
|
|
39
|
+
-const filterableFields = filterableGridColumnsIdsSelector(apiRef);
|
|
40
|
+
+const lookup = gridFilterableColumnLookupSelector(apiRef);
|
|
41
|
+
+const filterableFields = gridColumnFieldsSelector(apiRef).filter(field => lookup[field]);
|
|
42
|
+
|
|
43
|
+
-const visibleColumnsNumber = visibleGridColumnsLengthSelector(apiRef);
|
|
44
|
+
+const visibleColumnsNumber = gridVisibleColumnDefinitionsSelector(apiRef).length;
|
|
45
|
+
|
|
46
|
+
-const { totalWidth, positions } = gridColumnsMetaSelector(apiRef);
|
|
47
|
+
+const totalWidth = gridColumnsTotalWidthSelector(apiRef);
|
|
48
|
+
+const positions = gridColumnPositionsSelector(apiRef);
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
- 📚 Documentation improvements
|
|
52
|
+
- 🐞 Bug and typo fixes
|
|
53
|
+
|
|
54
|
+
### `@mui/x-data-grid@v5.6.0` / `@mui/x-data-grid-pro@v5.6.0`
|
|
55
|
+
|
|
56
|
+
#### Changes
|
|
57
|
+
|
|
58
|
+
- [DataGrid] Add slot for filter panel delete icon (#4069) @Hameezr
|
|
59
|
+
- [DataGrid] Add specific label for `linkOperator` (#3915) @alexfauquette
|
|
60
|
+
- [DataGrid] Allow for truncated and multiline content in grid cells (#3955) @DanailH
|
|
61
|
+
- [DataGrid] Allow to navigate between cells with keyboard once inside an `actions` column (#3375) @m4theushw
|
|
62
|
+
- [DataGrid] Fix desynchronization between rows and header when sorting (#4058) @alexfauquette
|
|
63
|
+
- [DataGrid] Clean and document the columns selector (#4010) @flaviendelangle
|
|
64
|
+
- [DataGrid] Deprecate and stop typing the api params of `GridCellParams`/`GridValueGetterParams` and affiliated (#4089) @ flaviendelangle
|
|
65
|
+
- [DataGrid] Differentiate the Pro and Community versions of `GridState`, `GridApi` and `GridApiRef` (#3648) @flaviendelangle
|
|
66
|
+
- [DataGrid] Fix column selection for print export (#3917) @alexfauquette
|
|
67
|
+
- [DataGrid] Fix horizontal scroll not working on empty grid (#3821) @cherniavskii
|
|
68
|
+
- [DataGrid] Fix input element in custom header (#3624) @alexfauquette
|
|
69
|
+
- [DataGrid] Improve `singleSelect` filter performance (#3956) @cherniavskii
|
|
70
|
+
- [DataGrid] Improve custom overlay slots positioning (#3832) @cherniavskii
|
|
71
|
+
- [DataGrid] Improve `flex` implementation match the W3C standard (#4006) @cherniavskii
|
|
72
|
+
- [DataGrid] Improve the invalid `sortModel` and `filterModel` warnings (#3671) @flaviendelangle
|
|
73
|
+
- [DataGrid] Memoize `Popper` modifiers passed to panel (#3975) @m4theushw
|
|
74
|
+
- [DataGrid] Prevent focus while `Popper` is not fully positioned (#4067) @m4theushw
|
|
75
|
+
- [DataGrid] Remove `GridCell`'s `borderBottom` when it is the last row (#3519) @DanailH
|
|
76
|
+
- [DataGrid] Remove padding from the header title (#3691) @valenfv
|
|
77
|
+
- [DataGrid] Reuse previous `rowNode` when building tree and the new `rowNode` is equal to the previous one (#3961) @flaviendelangle
|
|
78
|
+
- [DataGrid] Remove last filter item when no value to clean and close the filter panel (#3910) @alexfauquette
|
|
79
|
+
- [DataGrid] Send warning when the `rowCount` is not provided while using server pagination (#3902) @alexfauquette
|
|
80
|
+
- [DataGrid] Stop checkbox ripple on blur (#3835) @m4theushw
|
|
81
|
+
- [DataGrid] Stop calling `onRowClick` when clicking in cells with interactive elements (#3929) @m4theushw
|
|
82
|
+
- [DataGrid] Use only `headerName` when available to search column (#3959) @pkratz
|
|
83
|
+
- [DataGrid] Use the bundling scripts as the packages published by the [https://github.com/mui/material-ui](material-ui) repository (#3965) @flaviendelangle
|
|
84
|
+
- [DataGridPro] Add `unstable_setRowHeight` method to `apiRef` (#3751) @cherniavskii
|
|
85
|
+
- [DataGridPro] Always export the `pageSize` and `page` when it has been initialized or is being controlled (#3908) @flaviendelangle
|
|
86
|
+
- [DataGridPro] Disable export for detail panel column (#4057) @gustavhagland
|
|
87
|
+
- [DataGridPremium] Support `valueFormatter` on the grouping column (#4022) @flaviendelangle
|
|
88
|
+
- [l10n] Improve Bulgarian (bg-BG) locale (#3949) @DanailH
|
|
89
|
+
- [l10n] Improve German (de-DE) locale (#4077) @sebastianfrey
|
|
90
|
+
- [l10n] Improve Hebrew (he-IL) locale (#3930) @ColdAtNight
|
|
91
|
+
|
|
92
|
+
### Docs
|
|
93
|
+
|
|
94
|
+
- [docs] Add example of custom operator based on built-in ones (#3911) @flaviendelangle
|
|
95
|
+
- [docs] Add missing words in the filtering page (#4079) @flaviendelangle
|
|
96
|
+
- [docs] Avoid crash in demos using row grouping and custom formatted cells (#4065) @m4theushw
|
|
97
|
+
- [docs] Fix `Commodity` and `Employee` CSV export of the `country` column (#3912) @DanailH
|
|
98
|
+
- [docs] Fix links to the GitHub repository (#4005) @oliviertassinari
|
|
99
|
+
- [docs] Fix typo (#3923) @oliviertassinari
|
|
100
|
+
- [docs] Fix typo (#4016) @MathisBurger
|
|
101
|
+
- [docs] Fix typo in client-side validation example (#4066) @krallj
|
|
102
|
+
- [docs] Remove useless hide id column (#4021) @alexfauquette
|
|
103
|
+
|
|
104
|
+
### Core
|
|
105
|
+
|
|
106
|
+
- [core] Allows to add custom export item (#3891) @alexfauquette
|
|
107
|
+
- [core] Remove the `_modules_` folder (#3953) @flaviendelangle
|
|
108
|
+
- [core] Fix typo in `useGridScroll.ts` (#3973) @HexM7
|
|
109
|
+
- [core] Fix typos, improve wordings and other various fixes (#4062) @flaviendelangle
|
|
110
|
+
- [core] Initialize states before feature hooks (#3896) @m4theushw
|
|
111
|
+
- [code] Make `@mui/x-data-grid-pro` import shared code from `@mui/x-data-grid` (#3688) @flaviendelangle
|
|
112
|
+
- [core] Migrate `@mui/x-license-pro` to the new bundling strategy (#3738) @flaviendelangle
|
|
113
|
+
- [core] Reduce usage of `useGridSelector` inside feature hooks (#3978) @flaviendelangle
|
|
114
|
+
- [core] Retry l10n CI if 502 returned (#3977) @alexfauquette
|
|
115
|
+
- [core] Update release instructions (#3920) @cherniavskii
|
|
116
|
+
- [core] Use international locale format (#3921) @oliviertassinari
|
|
117
|
+
- [core] Fix license generating script (#4055) @Janpot
|
|
118
|
+
- [test] Add screenshot of the filter panel (#4072) @alexfauquette
|
|
119
|
+
- [test] Reduce memory usage to run unit tests (#4031) @m4theushw
|
|
120
|
+
- [test] Skip test on Firefox (#3926) @m4theushw
|
|
121
|
+
|
|
122
|
+
## 5.5.1
|
|
123
|
+
|
|
124
|
+
_Feb 10, 2022_
|
|
125
|
+
|
|
126
|
+
A big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
127
|
+
|
|
128
|
+
- 🎛 Add props to customize the behavior of the filter panel (#3497) @alexfauquette
|
|
129
|
+
|
|
130
|
+
```tsx
|
|
131
|
+
<DataGrid
|
|
132
|
+
componentsProps={{
|
|
133
|
+
filterPanel: { columnsSort: 'asc' },
|
|
134
|
+
}}
|
|
135
|
+
/>
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
Check the [documentation](https://mui.com/components/data-grid/filtering/#customize-the-filter-panel-content) to see all available props.
|
|
139
|
+
|
|
140
|
+
- 📚 Documentation improvements
|
|
141
|
+
- 🐞 Bugfixes
|
|
142
|
+
|
|
143
|
+
### `@mui/x-data-grid@v5.5.1` / `@mui/x-data-grid-pro@v5.5.1`
|
|
144
|
+
|
|
145
|
+
- [DataGrid] Add `debounceMs` option to `setEditCellValue` method (#3825) @m4theushw
|
|
146
|
+
- [DataGrid] Allow to translate `checkboxSelection` labels (#3846) @m4theushw
|
|
147
|
+
- [DataGrid] Customize the filter panel with props (#3497) @alexfauquette
|
|
148
|
+
- [DataGrid] Fix filtering of string columns for `value = 0` (#3843) @flaviendelangle
|
|
149
|
+
- [DataGrid] Fix focus when `blur` event rerenders the grid (#3718) @alexfauquette
|
|
150
|
+
- [DataGridPro] Add clear error when the tree data has duplicated paths (#3840) @flaviendelangle
|
|
151
|
+
- [DataGridPro] Avoid imports from `@mui/base` (#3903) @cherniavskii
|
|
152
|
+
- [DataGridPro] Register column pinning after selection (#3887) @m4theushw
|
|
153
|
+
- [l10n] Improve Turkish (tr-TR) locale (#3842) @atillaaliyev
|
|
154
|
+
|
|
155
|
+
### Docs
|
|
156
|
+
|
|
157
|
+
- [docs] Update v5 migration docs (#3847) @oliviertassinari
|
|
158
|
+
- [docs] Fix sorting feature link (#3877) @alexfauquette
|
|
159
|
+
- [docs] Migrate content to the new location (#3730) @siriwatknp
|
|
160
|
+
- [docs] Unify multi-filtering introduction with the multi-sorting introduction (#3766) @flaviendelangle
|
|
161
|
+
- [docs] Move row grouping to Premium plan (#3827) @alexfauquette
|
|
162
|
+
- [docs] Reorganize export docs to prepare Excel export doc (#3822) @alexfauquette
|
|
163
|
+
|
|
164
|
+
### Core
|
|
165
|
+
|
|
166
|
+
- [core] Add hook `useGridPagination` to call `onGridPage` and `onGridPageSize` (#3880) @flaviendelangle
|
|
167
|
+
- [core] Fix docs deploy script (#3874) @oliviertassinari
|
|
168
|
+
- [core] Move the git repository to a new location (#3872) @oliviertassinari
|
|
169
|
+
- [test] Add `codecov` (#3873) @oliviertassinari
|
|
170
|
+
|
|
171
|
+
## 5.5.0
|
|
172
|
+
|
|
173
|
+
_Feb 3, 2022_
|
|
174
|
+
|
|
175
|
+
A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
176
|
+
|
|
177
|
+
- 🎁 Add support for [master/detail](https://mui.com/components/data-grid/group-pivot/#master-detail) (#3387) @m4theushw
|
|
178
|
+
|
|
179
|
+
<img src="https://user-images.githubusercontent.com/42154031/152379354-47120aac-2b37-4a90-b311-64b4522283b9.gif" width="814">
|
|
180
|
+
|
|
181
|
+
- 🌍 Add Danish (da-DK) locale (#3800) @kasperfilstrup
|
|
182
|
+
- 📚 Documentation improvements
|
|
183
|
+
- 🐞 Bugfixes
|
|
184
|
+
|
|
185
|
+
### `@mui/x-data-grid@v5.5.0` / `@mui/x-data-grid-pro@v5.5.0`
|
|
186
|
+
|
|
187
|
+
#### Changes
|
|
188
|
+
|
|
189
|
+
- [DataGrid] Add methods to import and export the state (#3593) @flaviendelangle
|
|
190
|
+
- [DataGrid] Fix <kbd>PageUp</kbd> jumping directly to the column header skipping the first row (#3761) @cherniavskii
|
|
191
|
+
- [DataGrid] Throw an error if incorrect column type is used (#3757) @DanailH
|
|
192
|
+
- [DataGridPro] Add support for master/detail (#3387) @m4theushw
|
|
193
|
+
- [l10n] Add Danish (da-DK) locale (#3800) @kasperfilstrup
|
|
194
|
+
- [l10n] Improve Dutch (nl-NL) locale (#3724) @MatthijsKok
|
|
195
|
+
- [l10n] Improve Hebrew (he-IL) locale (#3775) @ColdAtNight
|
|
196
|
+
- [l10n] Improve Russian (ru-RU) locale (#3818) @Leniorko
|
|
197
|
+
|
|
198
|
+
### Docs
|
|
199
|
+
|
|
200
|
+
- [docs] Add default value for `Row` slot (#3807) @cherniavskii
|
|
201
|
+
- [docs] Extend full width (#3815) @m4theushw
|
|
202
|
+
- [docs] Fix country column sorting not working (#3740) @cherniavskii
|
|
203
|
+
- [docs] Fix custom render cell when row is auto generated (#3810) @alexfauquette
|
|
204
|
+
- [docs] Fix flag layout shift (#3773) @oliviertassinari
|
|
205
|
+
- [docs] Mention row `id` requirement and document `getRowId` prop (#3765) @cherniavskii
|
|
206
|
+
- [docs] Refresh the license key documentation (#3529) @oliviertassinari
|
|
207
|
+
|
|
208
|
+
### Core
|
|
209
|
+
|
|
210
|
+
- [core] Clean `filtering.DataGrid.test.tsx` (#3768) @flaviendelangle
|
|
211
|
+
- [core] Improve GitHub label workflows (#3680) @DanailH
|
|
212
|
+
- [core] Isolate selectors called without `useGridSelector` (#3774) @m4theushw
|
|
213
|
+
- [core] Prepare infra for pickers migration (#3714) @flaviendelangle
|
|
214
|
+
- [core] Remove none code related instructions from git (#3794) @oliviertassinari
|
|
215
|
+
- [core] Remove remaining usages of `@mui/styles` (#3769) @m4theushw
|
|
216
|
+
- [core] Remove Stylelint (#3811) @m4theushw
|
|
217
|
+
- [core] Split cell / row editing into different hooks (#3219) @m4theushw
|
|
218
|
+
- [core] Stop using an enum for `GridPreProcessingGroup` (#3798) @flaviendelangle
|
|
219
|
+
- [core] Fix failing tests (#3817) @cherniavskii
|
|
220
|
+
- [code] Fix `docs:api` silent crash (#3808) @cherniavskii
|
|
221
|
+
- [test] Increase timeout for Firefox (#3813) @m4theushw
|
|
222
|
+
|
|
6
223
|
## 5.4.0
|
|
7
224
|
|
|
8
225
|
_Jan 28, 2022_
|
|
@@ -15,11 +232,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
15
232
|
By default, all rows have the same height, but now you can set the height on a per-row basis.
|
|
16
233
|
|
|
17
234
|
```tsx
|
|
18
|
-
<DataGrid
|
|
19
|
-
getRowHeight={
|
|
20
|
-
({ id }: GridRowHeightParams) => (id % 2 === 0 ? 100 : null)
|
|
21
|
-
}
|
|
22
|
-
/>
|
|
235
|
+
<DataGrid getRowHeight={({ id }: GridRowHeightParams) => (id % 2 === 0 ? 100 : null)} />
|
|
23
236
|
```
|
|
24
237
|
|
|
25
238
|
- 🎁 Add new CSV export option: [`getRowsToExport`](https://mui.com/components/data-grid/export/#custom-exported-content) (#3687) @flaviendelangle
|
|
@@ -46,8 +259,8 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
46
259
|
- [DataGridPro] Fix grid cell losing focus when scrolling with keyboard (#3667) @cherniavskii
|
|
47
260
|
- [DataGridPro] Fix missing `styleOverrides` on pinned columns (#3733) @alexfauquette
|
|
48
261
|
- [DataGridPro] Remove function overloading for `useGridApiRef` (#3666) @flaviendelangle
|
|
49
|
-
- [l10n] Improve French (
|
|
50
|
-
- [l10n] Improve Italian (
|
|
262
|
+
- [l10n] Improve French (fr-FR) locale (#3739) @flaviendelangle
|
|
263
|
+
- [l10n] Improve Italian (it-IT) locale (#3744) @destegabry
|
|
51
264
|
|
|
52
265
|
### Docs
|
|
53
266
|
|
|
@@ -62,7 +275,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
62
275
|
### Core
|
|
63
276
|
|
|
64
277
|
- [core] Add ESLint rule to force default export equals to filename in documentation (#3674) @alexfauquette
|
|
65
|
-
- [core] Fix `l10n` script not updating `
|
|
278
|
+
- [core] Fix `l10n` script not updating `cs-CZ` locale (#3748) @cherniavskii
|
|
66
279
|
- [core] Generate CHANGELOG from GitHub API (#3313) @alexfauquette
|
|
67
280
|
- [core] Isolate selectors from different grid instances (#3663) @m4theushw
|
|
68
281
|
- [test] Improve test detection (#3728) @m4theushw
|
|
@@ -120,7 +333,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
120
333
|
const columns: GridColDef[] = [
|
|
121
334
|
{ field: 'director', flex: 1, maxWidth: 200 }, // will take the free space up to 200px and will not be resizable above 200px
|
|
122
335
|
{ field: 'year', maxWidth: 150 }, // will not be resizable above 150px
|
|
123
|
-
]
|
|
336
|
+
];
|
|
124
337
|
```
|
|
125
338
|
|
|
126
339
|
- 🚀 Add component slots for a subset of used `@mui/material` components (#3490) @DanailH
|
|
@@ -135,8 +348,8 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
135
348
|
const CustomDataGrid = (props: DataGridProps) => {
|
|
136
349
|
return (
|
|
137
350
|
<DataGrid {...props} componentsProps={{ toolbar: { csvOptions: { delimiter: ';' } } }} />
|
|
138
|
-
)
|
|
139
|
-
}
|
|
351
|
+
);
|
|
352
|
+
};
|
|
140
353
|
```
|
|
141
354
|
|
|
142
355
|
- 🙈 Add controlled behavior for the visible columns (#3554) @flaviendelangle
|
|
@@ -183,9 +396,9 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
183
396
|
- [DataGridPro] Keep row children expansion when updating the rows (#3604) @flaviendelangle
|
|
184
397
|
- [DataGridPro] Keep tree data grouping column width when regenerating the columns (#3603) @flaviendelangle
|
|
185
398
|
- [DataGridPremium] Allow to group rows based on column value (#3277) @flaviendelangle
|
|
186
|
-
- [l10n] Improve Finnish (
|
|
187
|
-
- [l10n] Improve Ukrainian (
|
|
188
|
-
- [l10n] Improve Czech (
|
|
399
|
+
- [l10n] Improve Finnish (fi-FI) locale (#3621) @MijMa
|
|
400
|
+
- [l10n] Improve Ukrainian (uk-UA) locale (#3586) @Neonin
|
|
401
|
+
- [l10n] Improve Czech (cs-CZ) and Slovak (sk-SK) locale (#3678) @Haaxor1689
|
|
189
402
|
|
|
190
403
|
### Docs
|
|
191
404
|
|
|
@@ -225,7 +438,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
225
438
|
- ⚡ Add support for column-based `sortingOrder` with the new `sortingOrder` option in `GridColDef` (#3449) @Quppa
|
|
226
439
|
- ✨ Allow to initialize the `page` and `pageSize` without controlling them with the `initialState` prop (#3495) @flaviendelangle
|
|
227
440
|
- 🙈 Allow to precisely control which children rows to expand with the new `isGroupExpandedByDefault` prop (#3444) @flaviendelangle
|
|
228
|
-
- 🌍 Add Finnish (
|
|
441
|
+
- 🌍 Add Finnish (fi-FI) locale (#3485) @kurkle
|
|
229
442
|
- 📚 Documentation improvements
|
|
230
443
|
- 🐞 Bugfixes
|
|
231
444
|
|
|
@@ -247,10 +460,10 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
247
460
|
- [DataGridPro] Expose the field of the tree data grouping column as a constant (#3549) @flaviendelangle
|
|
248
461
|
- [DataGridPro] Fix resizing of right pinned columns (#3502) @m4theushw
|
|
249
462
|
- [DataGridPro] Add new prop `isGroupExpandedByDefault` (#3444) @flaviendelangle
|
|
250
|
-
- [l10n] Add Finnish (
|
|
251
|
-
- [l10n] Improve French (
|
|
252
|
-
- [l10n] Improve Italian (
|
|
253
|
-
- [l10n] Improve Vietnamese (
|
|
463
|
+
- [l10n] Add Finnish (fi-FI) locale (#3485) @kurkle
|
|
464
|
+
- [l10n] Improve French (fr-FR) locale (#3494) @Zenoo
|
|
465
|
+
- [l10n] Improve Italian (it-IT) locale (#3452) @destegabry
|
|
466
|
+
- [l10n] Improve Vietnamese (vi-VN) locale (#3493) @hckhanh
|
|
254
467
|
|
|
255
468
|
### Docs
|
|
256
469
|
|
|
@@ -288,9 +501,9 @@ A big thanks to the 8 contributors who made this release possible. Here are some
|
|
|
288
501
|
- [DataGrid] Fire change event when the state changes, instead of when the prop changes (#3388) @flaviendelangle
|
|
289
502
|
- [DataGrid] Unsubscribe event listeners registered in uncommitted renders (#3310) @m4theushw
|
|
290
503
|
- [DataGrid] Rework state update methods and deprecate `useGridApi` and `useGridState` (#3325) @flaviendelangle
|
|
291
|
-
- [l10n] Improve German (
|
|
292
|
-
- [l10n] Improve Hebrew (
|
|
293
|
-
- [l10n] Improve Dutch (
|
|
504
|
+
- [l10n] Improve German (de-DE) locale (#3430) @sebastianfrey
|
|
505
|
+
- [l10n] Improve Hebrew (he-IL) locale (#3445) @ColdAtNight
|
|
506
|
+
- [l10n] Improve Dutch (nl-NL) locale (#3429) @jaapjr
|
|
294
507
|
|
|
295
508
|
### Docs
|
|
296
509
|
|
|
@@ -333,12 +546,7 @@ A big thanks to the 5 contributors who made this release possible. Here are some
|
|
|
333
546
|
- 🙈 Add a new option to hide the amount of descendant on the grouping cells of the Tree Data (#3368) @flaviendelangle
|
|
334
547
|
|
|
335
548
|
```tsx
|
|
336
|
-
<DataGridPro
|
|
337
|
-
treeData
|
|
338
|
-
rows={rows}
|
|
339
|
-
columns={columns}
|
|
340
|
-
groupingColDef={{ hideDescendantCount }}
|
|
341
|
-
/>
|
|
549
|
+
<DataGridPro treeData rows={rows} columns={columns} groupingColDef={{ hideDescendantCount }} />
|
|
342
550
|
```
|
|
343
551
|
|
|
344
552
|
- ⚠️ Deprecate the `getValue` param for the `valueGetter` callback (#3314) @flaviendelangle
|
|
@@ -429,7 +637,7 @@ A big thanks to the 11 contributors who made this release possible. Here are som
|
|
|
429
637
|
|
|
430
638
|
- 🌎 Translation updates for many locales
|
|
431
639
|
|
|
432
|
-
If you are using DataGrid or DataGridPro in another language, check [this issue](https://github.com/mui
|
|
640
|
+
If you are using DataGrid or DataGridPro in another language, check [this issue](https://github.com/mui/mui-x/issues/3211) to discover which translations are missing.
|
|
433
641
|
|
|
434
642
|
- 📚 Documentation improvements
|
|
435
643
|
- 🐞 Bugfixes
|
|
@@ -448,11 +656,11 @@ A big thanks to the 11 contributors who made this release possible. Here are som
|
|
|
448
656
|
- [DataGrid] Prepare the tree structure for grouping sorting / filtering (#3301) @flaviendelangle
|
|
449
657
|
- [DataGrid] Rework keyboard navigation (#3193) @flaviendelangle
|
|
450
658
|
- [DataGrid] Set minimum dimensions to `GridOverlay` when no row is provided (#3261) @flaviendelangle
|
|
451
|
-
- [DataGrid] Improve German (
|
|
452
|
-
- [DataGrid] Improve Hebrew (
|
|
453
|
-
- [DataGrid] Improve Russian (
|
|
454
|
-
- [DataGrid] Improve Korean (
|
|
455
|
-
- [DataGrid] Improve Greek (
|
|
659
|
+
- [DataGrid] Improve German (de-DE) locale (#3271, #3230, #3293) @sebastianfrey
|
|
660
|
+
- [DataGrid] Improve Hebrew (he-IL) locale (#3294) @ColdAtNight
|
|
661
|
+
- [DataGrid] Improve Russian (ru-RU) locale (#3290, #3288) @Alim-El
|
|
662
|
+
- [DataGrid] Improve Korean (ko-KR) locale (#3232, #3273) @zzossig
|
|
663
|
+
- [DataGrid] Improve Greek (el-GR) locale (#3169) @clytras
|
|
456
664
|
|
|
457
665
|
### Core
|
|
458
666
|
|
|
@@ -507,8 +715,8 @@ A big thanks to the 3 contributors who made this release possible. Here are some
|
|
|
507
715
|
const userWithEmail = await fetchUserByEmail(params.value);
|
|
508
716
|
const hasError = !!userWithEmail;
|
|
509
717
|
return { ...params.props, error: hasError };
|
|
510
|
-
}
|
|
511
|
-
}
|
|
718
|
+
},
|
|
719
|
+
},
|
|
512
720
|
];
|
|
513
721
|
```
|
|
514
722
|
|
|
@@ -566,7 +774,7 @@ A big thanks to the 7 contributors who made this release possible. Here are some
|
|
|
566
774
|
|
|
567
775
|
- [DataGrid] The `props.components.Checkbox` and `props.componentsProps.checkbox` props were renamed to `props.components.BaseCheckbox` and `props.componentsProps.baseCheckbox` respectively.
|
|
568
776
|
|
|
569
|
-
As a first step for [#3066](https://github.com/mui
|
|
777
|
+
As a first step for [#3066](https://github.com/mui/mui-x/issues/3066), these slots were renamed to clearly indicate that they are meant to replace a core component.
|
|
570
778
|
|
|
571
779
|
```diff
|
|
572
780
|
<DataGrid
|
|
@@ -625,7 +833,7 @@ A big thanks to the 7 contributors who made this release possible. Here are some
|
|
|
625
833
|
_Nov 4, 2021_
|
|
626
834
|
|
|
627
835
|
- 💅 Reduce styles specificity to make simpler to override (#3012) @DanailH
|
|
628
|
-
- 🌍 Add Hebrew (
|
|
836
|
+
- 🌍 Add Hebrew (he-IL) locale (#3028) @ColdAtNight
|
|
629
837
|
- 📚 Documentation improvements
|
|
630
838
|
- 🐞 Bugfixes
|
|
631
839
|
|
|
@@ -662,7 +870,7 @@ _Nov 4, 2021_
|
|
|
662
870
|
|
|
663
871
|
#### Changes
|
|
664
872
|
|
|
665
|
-
- [DataGrid] Add Hebrew (
|
|
873
|
+
- [DataGrid] Add Hebrew (he-IL) locale (#3028) @ColdAtNight
|
|
666
874
|
- [DataGrid] Move virtualization logic to hook (#3079) @m4theushw
|
|
667
875
|
- [DataGrid] Revert year change in the MIT license (#3059) @oliviertassinari
|
|
668
876
|
- [DataGrid] Fix filtering of nullish numeric cells (#3070) @flaviendelangle
|
|
@@ -931,7 +1139,7 @@ A big thanks to the 5 contributors who made this release possible. Here are some
|
|
|
931
1139
|
- [core] Remove outdated hooks requirements (#2939) @flaviendelangle
|
|
932
1140
|
- [core] Remove test event (#2912) @m4theushw
|
|
933
1141
|
- [core] Remove unused `GridSlotComponentProps` interface (#2911) @flaviendelangle
|
|
934
|
-
- [core] Rename '
|
|
1142
|
+
- [core] Rename 'UNSTABLE*' prefix to 'unstable*' (#2931) @flaviendelangle
|
|
935
1143
|
- [core] Replace usage of `GridRowData` with `GridRowModel` (#2936) @flaviendelangle
|
|
936
1144
|
- [core] Revert hardcoded typings (#2907) @DanailH
|
|
937
1145
|
- [core] Simplify the CSV export (#2941) @flaviendelangle
|
|
@@ -1116,7 +1324,7 @@ _Oct 7, 2021_
|
|
|
1116
1324
|
|
|
1117
1325
|
A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
1118
1326
|
|
|
1119
|
-
- 🌎 Add Persian (
|
|
1327
|
+
- 🌎 Add Persian (fa-IR) locale (#2712) @devlifeX
|
|
1120
1328
|
- 🎁 Allow to select range of rows with Shift + click (#2456) @flaviendelangle
|
|
1121
1329
|
- 🚀 Allow to throttle the row updates with the `throttleRowsMs` prop on `DataGridPro` and remove the default 100ms row update delay (#2561) @flaviendelangle
|
|
1122
1330
|
- 💡 Enhance internal code structure
|
|
@@ -1148,7 +1356,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
1148
1356
|
|
|
1149
1357
|
#### Changes
|
|
1150
1358
|
|
|
1151
|
-
- [DataGrid] Add Persian (
|
|
1359
|
+
- [DataGrid] Add Persian (fa-IR) locale (#2712) @devlifeX
|
|
1152
1360
|
- [DataGrid] Allow to select range of rows using Shift + click (#2456) @flaviendelangle
|
|
1153
1361
|
- [DataGrid] Fix numeric column filter to not run when value is empty (#2780) @m4theushw
|
|
1154
1362
|
- [DataGrid] Export `singleSelect` operators (#2666) @jeremyalan
|
|
@@ -1188,8 +1396,8 @@ _Sep 24, 2021_
|
|
|
1188
1396
|
|
|
1189
1397
|
A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
1190
1398
|
|
|
1191
|
-
- 🇻🇳 Add Vietnamese (
|
|
1192
|
-
- 🇵🇱 Improve Polish (
|
|
1399
|
+
- 🇻🇳 Add Vietnamese (vi-VN) locale (#2668) @tuananh281098
|
|
1400
|
+
- 🇵🇱 Improve Polish (pl-PL) locale (#2632) @michallukowski
|
|
1193
1401
|
- ⚡️ Apply the `valueFormatter` to the `singleSelect` column type (#2581) @DanailH
|
|
1194
1402
|
|
|
1195
1403
|
### `@mui/x-data-grid@v5.0.0-beta.2` / `@mui/x-data-grid-pro@v5.0.0-beta.2`
|
|
@@ -1221,10 +1429,10 @@ A big thanks to the 5 contributors who made this release possible. Here are some
|
|
|
1221
1429
|
|
|
1222
1430
|
#### Changes
|
|
1223
1431
|
|
|
1224
|
-
- [DataGrid] Add Vietnamese (
|
|
1432
|
+
- [DataGrid] Add Vietnamese (vi-VN) locale (#2668) @tuananh281098
|
|
1225
1433
|
- [DataGrid] Apply the `valueFormatter` to `singleSelect` select options (#2581) @DanailH
|
|
1226
1434
|
- [DataGrid] Free up column header space when icons are not visible (#2606) @DanailH
|
|
1227
|
-
- [DataGrid] Improve Polish (
|
|
1435
|
+
- [DataGrid] Improve Polish (pl-PL) locale (#2632) @michallukowski
|
|
1228
1436
|
|
|
1229
1437
|
### Docs
|
|
1230
1438
|
|
|
@@ -1337,7 +1545,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
|
|
|
1337
1545
|
- [DataGrid] Fix TypeScript type error for toolbar components (#2393) @ZeeshanTamboli
|
|
1338
1546
|
- [DataGrid] Fix navigation between column headers with rows filtered (#2440) @m4theushw
|
|
1339
1547
|
- [DataGrid] Force `scrollEndThreshold` to undefined (#2574) @flaviendelangle
|
|
1340
|
-
- [DataGrid] Improve
|
|
1548
|
+
- [DataGrid] Improve ja-JP localization (#2502) @daikiojm
|
|
1341
1549
|
- [DataGrid] Make `hideFooterRowCount` prop available only for DataGridPro (#2564) @ZeeshanTamboli
|
|
1342
1550
|
- [DataGrid] Fix a bug where pressing <kbd>Escape</kbd> was not closing the `GridColumnHeaderMenu` (#2463) @DanailH
|
|
1343
1551
|
- [DataGrid] Prevent scroll when selecting rows (#2558) @m4theushw
|
|
@@ -1391,9 +1599,9 @@ _Aug 27, 2021_
|
|
|
1391
1599
|
|
|
1392
1600
|
🎉 This is the first stable release of the data grid component 🎉!
|
|
1393
1601
|
|
|
1394
|
-
We have been iterating on the component for [18 months](https://github.com/mui
|
|
1602
|
+
We have been iterating on the component for [18 months](https://github.com/mui/mui-x/commit/705cb0f387b5f3aa056bf40c4183a2342b317447). With the introduction of the [row edit](https://mui.com/components/data-grid/editing/#row-editing) feature, many bug fixes, and polishing of the documentation, we believe the component is ready for a stable release.
|
|
1395
1603
|
|
|
1396
|
-
The MUI X v4.0.0 release supports [MUI Core](https://github.com/mui
|
|
1604
|
+
The MUI X v4.0.0 release supports [MUI Core](https://github.com/mui/material-ui) v4 and has partial support for v5-beta. With the soon-to-be-released v5 version of the core components, we are moving ongoing work to the v5 release line (Core and X).
|
|
1397
1605
|
The support for existing projects on MUI v4 won't be a priority going forward. We encourage you to migrate to MUI Core v5-beta and soon MUI X v5-beta. We don't patch, fix, or alter older versions. Using MUI Core v4 with MUI X v5 might lead to extra bundle size and configuration.
|
|
1398
1606
|
|
|
1399
1607
|
A big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
@@ -1404,7 +1612,7 @@ A big thanks to the 6 contributors who made this release possible. Here are some
|
|
|
1404
1612
|
|
|
1405
1613
|
- ⚡️ Rename the `XGrid` component to `DataGridPro` (#2382) @m4theushw
|
|
1406
1614
|
|
|
1407
|
-
This should help clarify the products vs. plans separation. [MUI X](https://github.com/mui
|
|
1615
|
+
This should help clarify the products vs. plans separation. [MUI X](https://github.com/mui/mui-x) is a product line on its own. It contains MIT and Commercial software. Removing X from the name of the paid components should help remove a possible confusion: the MIT version of X is meant to be valuable enough for developers to use it, without feeling that it's crippled compared to other OSS alternatives.
|
|
1408
1616
|
The Pro suffix should help make it clear what's MIT and what's not.
|
|
1409
1617
|
|
|
1410
1618
|
- ✨ Rename the `@material-ui` npm scope to `@mui` (#2341) @oliviertassinari
|
|
@@ -1486,7 +1694,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
|
|
|
1486
1694
|
- 🐞 Fix a regression to not require @material-ui/x-license when using the DataGrid (#2295) @oliviertassinari
|
|
1487
1695
|
- 👁️ Add `onViewportRowsChange` prop for `XGrid` only (#2038) @DanailH
|
|
1488
1696
|
- 📃 Translate booleans when exporting rows to CSV (#2296) @m4theushw
|
|
1489
|
-
- 🌎 Add Sudanese Arabic (
|
|
1697
|
+
- 🌎 Add Sudanese Arabic (ar-SD) locale (#2269) @YassinHussein
|
|
1490
1698
|
|
|
1491
1699
|
This is the last alpha release. We are moving to beta in the next release, next week.
|
|
1492
1700
|
|
|
@@ -1507,7 +1715,7 @@ This is the last alpha release. We are moving to beta in the next release, next
|
|
|
1507
1715
|
#### Changes
|
|
1508
1716
|
|
|
1509
1717
|
- [DataGrid] Add @material-ui/styles as peer dependency (#2288) @m4theushw
|
|
1510
|
-
- [DataGrid] Add Sudanese Arabic (
|
|
1718
|
+
- [DataGrid] Add Sudanese Arabic (ar-SD) locale (#2269) @YassinHussein
|
|
1511
1719
|
- [DataGrid] Add \"is empty\" and \"is not empty\" filter operators to date and number columns (#2274) @flaviendelangle
|
|
1512
1720
|
- [DataGrid] Avoid crash if `valueOptions` is missing in the `GridColDef` when using `singleSelect` (#2276) @DanailH
|
|
1513
1721
|
- [DataGrid] Remove the use of the `autoFocus` attribute (#2239) @m4theushw
|
|
@@ -1602,7 +1810,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
|
|
|
1602
1810
|
- [DataGrid] Canonical controlled state behavior (#2208) @oliviertassinari
|
|
1603
1811
|
- [DataGrid] Fix filter with extended columns (#2246) @m4theushw
|
|
1604
1812
|
- [DataGrid] Remove default value of columnTypes prop (#2280) @m4theushw
|
|
1605
|
-
- [DataGrid] Add German (
|
|
1813
|
+
- [DataGrid] Add German (de-DE) translation for export and isEmpty operator (#2285) @ChristopherBussick
|
|
1606
1814
|
- [XGrid] Add `details` param to each callback option in `XGrid` (#2236) @DanailH
|
|
1607
1815
|
|
|
1608
1816
|
### Docs
|
|
@@ -1707,7 +1915,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
|
|
|
1707
1915
|
- [test] Sync Karma config (#2191) @m4theushw
|
|
1708
1916
|
- [test] Test support for theme translations (#2229) @m4theushw
|
|
1709
1917
|
|
|
1710
|
-
## [4.0.0-alpha.34](https://github.com/mui
|
|
1918
|
+
## [4.0.0-alpha.34](https://github.com/mui/mui-x/compare/v4.0.0-alpha.33...v4.0.0-alpha.34)
|
|
1711
1919
|
|
|
1712
1920
|
_July 21, 2021_
|
|
1713
1921
|
|
|
@@ -1830,7 +2038,7 @@ Big thanks to the 11 contributors who made this release possible. Here are some
|
|
|
1830
2038
|
- [DataGrid] Add \"is empty\" and \"is not empty\" operators (#1997) @m4theushw
|
|
1831
2039
|
- [DataGrid] Add `minWidth` to `GridColDef` (#2101) @DanailH
|
|
1832
2040
|
- [DataGrid] Add missing localeText types (#2118) @oliviertassinari
|
|
1833
|
-
- [DataGrid] Add missing translations to French (
|
|
2041
|
+
- [DataGrid] Add missing translations to French (fr-FR) locale (#2082) @flaviendelangle
|
|
1834
2042
|
- [DataGrid] Add quick filter demo (#2149) @dtassone
|
|
1835
2043
|
- [DataGrid] Allow passing styles and Popper props to GridPanel (#1994) @sebastianfrey
|
|
1836
2044
|
- [DataGrid] Allow to customize the columns exported as CSV (#2008) @flaviendelangle
|
|
@@ -1888,7 +2096,7 @@ Big thanks to the 11 contributors who made this release possible. Here are some
|
|
|
1888
2096
|
- [test] Remove orphan async @oliviertassinari
|
|
1889
2097
|
- [test] Test the validation before saving a value (#2087) @m4theushw
|
|
1890
2098
|
|
|
1891
|
-
## [4.0.0-alpha.33](https://github.com/mui
|
|
2099
|
+
## [4.0.0-alpha.33](https://github.com/mui/mui-x/compare/v4.0.0-alpha.32...v4.0.0-alpha.33)
|
|
1892
2100
|
|
|
1893
2101
|
_July 1, 2021_
|
|
1894
2102
|
|
|
@@ -1976,7 +2184,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
|
|
|
1976
2184
|
- [core] Name variables according to enUS instead of enGB (#1988) @flaviendelangle
|
|
1977
2185
|
- [test] Test vertical scrollbar (#1932) @oliviertassinari
|
|
1978
2186
|
|
|
1979
|
-
## [4.0.0-alpha.32](https://github.com/mui
|
|
2187
|
+
## [4.0.0-alpha.32](https://github.com/mui/mui-x/compare/v4.0.0-alpha.31...v4.0.0-alpha.32)
|
|
1980
2188
|
|
|
1981
2189
|
_June 18, 2021_
|
|
1982
2190
|
|
|
@@ -2065,8 +2273,8 @@ Big thanks to the 10 contributors who made this release possible. Here are some
|
|
|
2065
2273
|
- [DataGrid] Allow to set the delimiter in `GridExportCsvOptions` (#1859) @michallukowski
|
|
2066
2274
|
- [DataGrid] Escape regular expression characters in filters (#1899) @ZeeshanTamboli
|
|
2067
2275
|
- [DataGrid] Fix support for `getRowId` on cell editing (#1917) @m4theushw
|
|
2068
|
-
- [DataGrid] Fix typo in French (
|
|
2069
|
-
- [DataGrid] Improve Brazilian Portuguese (
|
|
2276
|
+
- [DataGrid] Fix typo in French (fr-FR) locale (#1874) @julien-guillon
|
|
2277
|
+
- [DataGrid] Improve Brazilian Portuguese (pt-BR) locale (#1861) @aline-matos
|
|
2070
2278
|
- [DataGrid] Improve type of the blur event (#1918) @oliviertassinari
|
|
2071
2279
|
- [DataGrid] Improve updateRows performance (#1923) @N2D4
|
|
2072
2280
|
- [DataGrid] Include Material-UI core component localizations in `localeText` (#1913) @DanailH
|
|
@@ -2088,7 +2296,7 @@ Big thanks to the 10 contributors who made this release possible. Here are some
|
|
|
2088
2296
|
- [core] Remove dead logic (#1900) @oliviertassinari
|
|
2089
2297
|
- [test] Fix tests (#1928) @m4theushw
|
|
2090
2298
|
|
|
2091
|
-
## [4.0.0-alpha.31](https://github.com/mui
|
|
2299
|
+
## [4.0.0-alpha.31](https://github.com/mui/mui-x/compare/v4.0.0-alpha.30...v4.0.0-alpha.31)
|
|
2092
2300
|
|
|
2093
2301
|
_June 9, 2021_
|
|
2094
2302
|
|
|
@@ -2141,7 +2349,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
|
|
|
2141
2349
|
- [core] Add `yarn docs:api` @oliviertassinari
|
|
2142
2350
|
- [test] Improve pagination tests (#1827) @m4theushw
|
|
2143
2351
|
|
|
2144
|
-
## [4.0.0-alpha.30](https://github.com/mui
|
|
2352
|
+
## [4.0.0-alpha.30](https://github.com/mui/mui-x/compare/v4.0.0-alpha.29...v4.0.0-alpha.30)
|
|
2145
2353
|
|
|
2146
2354
|
_May 31, 2021_
|
|
2147
2355
|
|
|
@@ -2150,7 +2358,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
|
|
|
2150
2358
|
- 💅 Add `getCellClassName` prop (#1687) @m4theushw
|
|
2151
2359
|
- 🐛 Fix a regression in the controlled pagination (#1729) @ZeeshanTamboli
|
|
2152
2360
|
- ⚡️ Remove `cellClassRules` from `GridColDef` (#1716) @m4theushw
|
|
2153
|
-
- 🇨🇿 Add
|
|
2361
|
+
- 🇨🇿 Add cs-CZ locale (#1765) @Haaxor1689
|
|
2154
2362
|
- 🐞 Bugfixes
|
|
2155
2363
|
|
|
2156
2364
|
### @material-ui/x-grid@v4.0.0-alpha.30 / @material-ui/data-grid@v4.0.0-alpha.30
|
|
@@ -2234,12 +2442,12 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
|
|
|
2234
2442
|
|
|
2235
2443
|
- [DataGrid] Add `getCellClassName` prop (#1687) @m4theushw
|
|
2236
2444
|
- [DataGrid] Add customizable `aria-label`, `aria-labelledby` field (#1764) @ZeeshanTamboli
|
|
2237
|
-
- [DataGrid] Add Czech (
|
|
2445
|
+
- [DataGrid] Add Czech (cs-CZ) locale and fix plural rules in Slovak (sk-SK) locale (#1765) @Haaxor1689
|
|
2238
2446
|
- [DataGrid] Fix cell accessibility aria-colindex (#1669) @ZeeshanTamboli
|
|
2239
2447
|
- [DataGrid] Fix changing rows per page size (#1729) @ZeeshanTamboli
|
|
2240
2448
|
- [DataGrid] Fix date operators not working with date-time values (#1722) @m4theushw
|
|
2241
2449
|
- [DataGrid] Fix `rowCount` prop updates (#1697) @dtassone
|
|
2242
|
-
- [DataGrid] Improve German (
|
|
2450
|
+
- [DataGrid] Improve German (de-DE) translation of "errorOverlayDefaultLabel" (#1718) @sebastianfrey
|
|
2243
2451
|
- [DataGrid] Fix accessibility of the filter panel textboxes (#1727) @m4theushw
|
|
2244
2452
|
- [XGrid] Fix `onFilterModelChange` not firing (#1706) @dtassone
|
|
2245
2453
|
|
|
@@ -2259,7 +2467,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
|
|
|
2259
2467
|
- [test] Reduce flakiness (#1753) @oliviertassinari
|
|
2260
2468
|
- [test] Remove skip on Edge (#1708) @m4theushw
|
|
2261
2469
|
|
|
2262
|
-
## [4.0.0-alpha.29](https://github.com/mui
|
|
2470
|
+
## [4.0.0-alpha.29](https://github.com/mui/mui-x/compare/v4.0.0-alpha.28...v4.0.0-alpha.29)
|
|
2263
2471
|
|
|
2264
2472
|
_May 19, 2021_
|
|
2265
2473
|
|
|
@@ -2336,18 +2544,18 @@ Big thanks to the 11 contributors who made this release possible. Here are some
|
|
|
2336
2544
|
|
|
2337
2545
|
#### Changes
|
|
2338
2546
|
|
|
2339
|
-
- [DataGrid] Add Slovak (
|
|
2547
|
+
- [DataGrid] Add Slovak (sk-SK) locale (#1634) @martinvysnovsky
|
|
2340
2548
|
- [DataGrid] Add `columnHeader`, `row` and `cell` in addition to `root` in classes prop (#1660) @DanailH
|
|
2341
2549
|
- [DataGrid] Add `isRowSelectable` prop (#1659) @m4theushw
|
|
2342
2550
|
- [DataGrid] Add sort icon for when column is unsorted (#1415) @m4theushw
|
|
2343
2551
|
- [DataGrid] Fix `id` and `aria-labelledby` attributes on the column menu (#1460) @m4theushw
|
|
2344
2552
|
- [DataGrid] Fix broken checkbox in Material-UI v5 (#1587) @ZeeshanTamboli
|
|
2345
2553
|
- [DataGrid] Fix CSS classes prefix (#1693) @m4theushw
|
|
2346
|
-
- [DataGrid] Fix German (
|
|
2554
|
+
- [DataGrid] Fix German (de-DE) locale (#1624) @klinge27
|
|
2347
2555
|
- [DataGrid] Fix filter with object as value and value getter (#1665) @dtassone
|
|
2348
2556
|
- [DataGrid] Fix incorrect date selection (#1652) @aTmb405
|
|
2349
2557
|
- [DataGrid] Fix overflow of maximum page (#1583) @oliviertassinari
|
|
2350
|
-
- [DataGrid] Fix typo in Italian (
|
|
2558
|
+
- [DataGrid] Fix typo in Italian (it-IT) locale (#1635) @profcav
|
|
2351
2559
|
- [DataGrid] Improve performance of width resizing (#1686) @dtassone
|
|
2352
2560
|
- [DataGrid] Make rows immutable for better developer experience (#1661) @ZeeshanTamboli
|
|
2353
2561
|
- [DataGrid] Pass state values as props (#1628) @m4theushw
|
|
@@ -2376,13 +2584,13 @@ Big thanks to the 11 contributors who made this release possible. Here are some
|
|
|
2376
2584
|
- [test] Add constraints on cell render (#1662) @oliviertassinari
|
|
2377
2585
|
- [test] Catch broken demos (#1692) @oliviertassinari
|
|
2378
2586
|
|
|
2379
|
-
## [4.0.0-alpha.28](https://github.com/mui
|
|
2587
|
+
## [4.0.0-alpha.28](https://github.com/mui/mui-x/compare/v4.0.0-alpha.27...v4.0.0-alpha.28)
|
|
2380
2588
|
|
|
2381
2589
|
_May 10, 2021_
|
|
2382
2590
|
|
|
2383
2591
|
Big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
|
|
2384
2592
|
|
|
2385
|
-
- 🇹🇷 Add
|
|
2593
|
+
- 🇹🇷 Add tr-TR locale (#1446) @simsek97
|
|
2386
2594
|
- 🎁 Add support for checkbox component slot (#1528) @ZeeshanTamboli
|
|
2387
2595
|
- ⚡️ Add `onColumnVisibilityChange` prop (#1578) @DanailH
|
|
2388
2596
|
- 🐞 Bugfixes
|
|
@@ -2407,7 +2615,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
|
|
|
2407
2615
|
|
|
2408
2616
|
#### Changes
|
|
2409
2617
|
|
|
2410
|
-
- [DataGrid] Add Turkish (
|
|
2618
|
+
- [DataGrid] Add Turkish (tr-TR) locale (#1526) @simsek97
|
|
2411
2619
|
- [DataGrid] Add `onColumnVisibilityChange` prop (#1578) @DanailH
|
|
2412
2620
|
- [DataGrid] Fix date input crash (#1570) @dtassone
|
|
2413
2621
|
- [DataGrid] Fix resulted filter data shows blank screen during pagination (#1571) @ZeeshanTamboli
|
|
@@ -2430,7 +2638,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
|
|
|
2430
2638
|
- [core] Update monorepo (#1530) @oliviertassinari
|
|
2431
2639
|
- [core] Increase timeout on jsdom (#1532) @oliviertassinari
|
|
2432
2640
|
|
|
2433
|
-
## [4.0.0-alpha.27](https://github.com/mui
|
|
2641
|
+
## [4.0.0-alpha.27](https://github.com/mui/mui-x/compare/v4.0.0-alpha.26...v4.0.0-alpha.27)
|
|
2434
2642
|
|
|
2435
2643
|
_Apr 30, 2021_
|
|
2436
2644
|
|
|
@@ -2439,8 +2647,8 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
|
|
|
2439
2647
|
- 🎁 Add getRowClassName prop (#1448) @m4theushw
|
|
2440
2648
|
- ⚡️ Drop support for Node v10 (#1499) @ZeeshanTamboli
|
|
2441
2649
|
- ♿ Make checkbox focusable (#1421) @dtassone
|
|
2442
|
-
- 🇮🇹 Add
|
|
2443
|
-
- 🇷🇺 Add
|
|
2650
|
+
- 🇮🇹 Add it-IT locale (#1446) @profcav
|
|
2651
|
+
- 🇷🇺 Add ru-RU locale (#1449) @Lukin
|
|
2444
2652
|
- 🐞 Bugfixes
|
|
2445
2653
|
|
|
2446
2654
|
### @material-ui/x-grid@v4.0.0-alpha.27 / @material-ui/data-grid@v4.0.0-alpha.27
|
|
@@ -2478,12 +2686,12 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
|
|
|
2478
2686
|
|
|
2479
2687
|
#### Changes
|
|
2480
2688
|
|
|
2481
|
-
- [DataGrid] Add Italian (
|
|
2482
|
-
- [DataGrid] Add Russian (
|
|
2689
|
+
- [DataGrid] Add Italian (it-IT) locale (#1446) @profcav
|
|
2690
|
+
- [DataGrid] Add Russian (ru-RU) locale (#1449) @Lukin
|
|
2483
2691
|
- [DataGrid] Add getRowClassName prop (#1448) @m4theushw
|
|
2484
2692
|
- [DataGrid] Add support for `classes` prop (#1450) @ZeeshanTamboli
|
|
2485
2693
|
- [DataGrid] Allow to customize the overlay when there're no filtered rows (#1445) @m4theushw
|
|
2486
|
-
- [DataGrid] Correct quantities
|
|
2694
|
+
- [DataGrid] Correct quantities pl-PL (#1487) @Chriserus
|
|
2487
2695
|
- [DataGrid] Fix autoPageSize with small dataset (#1505) @dtassone
|
|
2488
2696
|
- [DataGrid] Fix delete key for uneditable cells (#1497) @dtassone
|
|
2489
2697
|
- [DataGrid] Fix invalid translation key (#1504) @DanailH
|
|
@@ -2509,7 +2717,7 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
|
|
|
2509
2717
|
- [test] Remove jest (#1467) @dependabot-preview
|
|
2510
2718
|
- [test] Run more tests in jsdom (#1361) @oliviertassinari
|
|
2511
2719
|
|
|
2512
|
-
## [4.0.0-alpha.26](https://github.com/mui
|
|
2720
|
+
## [4.0.0-alpha.26](https://github.com/mui/mui-x/compare/v4.0.0-alpha.25...v4.0.0-alpha.26)
|
|
2513
2721
|
|
|
2514
2722
|
_Apr 22, 2021_
|
|
2515
2723
|
|
|
@@ -2526,7 +2734,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
|
|
|
2526
2734
|
### @material-ui/x-grid@v4.0.0-alpha.26 / @material-ui/data-grid@v4.0.0-alpha.26
|
|
2527
2735
|
|
|
2528
2736
|
- [DataGrid] Add support for Editable cells (#1287) @dtassone
|
|
2529
|
-
- [DataGrid] Add Ukrainian (
|
|
2737
|
+
- [DataGrid] Add Ukrainian (uk-UA) locale (#1418) @Neonin
|
|
2530
2738
|
- [DataGrid] Fix 'Hide' menu item with `disableColumnSelector` (#1429) @ZeeshanTamboli
|
|
2531
2739
|
- [DataGrid] Fix reset of virtualPage (#1451) @dtassone
|
|
2532
2740
|
- [DataGrid] Fix support for falsy value from valueFormatter (#1425) @zj9495
|
|
@@ -2546,7 +2754,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
|
|
|
2546
2754
|
|
|
2547
2755
|
This infrastructure relies on Playwright to control Chrome with the end-to-end API. It differentiates from our current end-to-end tests by running outside of the browser (Karma runs inside). It's slower and doesn't have a great DX, but it allows to test things like the <kbd>Tab</kbd> behavior.
|
|
2548
2756
|
|
|
2549
|
-
## [4.0.0-alpha.25](https://github.com/mui
|
|
2757
|
+
## [4.0.0-alpha.25](https://github.com/mui/mui-x/compare/v4.0.0-alpha.24...v4.0.0-alpha.25)
|
|
2550
2758
|
|
|
2551
2759
|
_Apr 14, 2021_
|
|
2552
2760
|
|
|
@@ -2622,16 +2830,16 @@ export interface GridFilterModelParams {
|
|
|
2622
2830
|
- [core] Variable convention (#1397) @oliviertassinari
|
|
2623
2831
|
- [license] Use a global storage rather than a module singleton (#1384) @oliviertassinari
|
|
2624
2832
|
|
|
2625
|
-
## [4.0.0-alpha.24](https://github.com/mui
|
|
2833
|
+
## [4.0.0-alpha.24](https://github.com/mui/mui-x/compare/v4.0.0-alpha.23...v4.0.0-alpha.24)
|
|
2626
2834
|
|
|
2627
2835
|
_Apr 2, 2021_
|
|
2628
2836
|
|
|
2629
2837
|
Big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
|
|
2630
2838
|
|
|
2631
|
-
- 🇬🇷 Add
|
|
2632
|
-
- 🇪🇸 Add
|
|
2633
|
-
- 🇯🇵 Add
|
|
2634
|
-
- 🇳🇱 Add
|
|
2839
|
+
- 🇬🇷 Add el-GR locale (#1275) @clytras
|
|
2840
|
+
- 🇪🇸 Add es-ES locale (#1286) @WiXSL
|
|
2841
|
+
- 🇯🇵 Add ja-JP locale (#1283) @seed-of-apricot
|
|
2842
|
+
- 🇳🇱 Add nl-NL locale (#1273) @wimdetroyer
|
|
2635
2843
|
- 🐞 Bugfixes
|
|
2636
2844
|
|
|
2637
2845
|
### @material-ui/x-grid@v4.0.0-alpha.24 / @material-ui/data-grid@v4.0.0-alpha.24
|
|
@@ -2661,7 +2869,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
|
|
|
2661
2869
|
|
|
2662
2870
|
- [core] Batch small changes (#1310) @oliviertassinari
|
|
2663
2871
|
|
|
2664
|
-
## [4.0.0-alpha.23](https://github.com/mui
|
|
2872
|
+
## [4.0.0-alpha.23](https://github.com/mui/mui-x/compare/v4.0.0-alpha.22...v4.0.0-alpha.23)
|
|
2665
2873
|
|
|
2666
2874
|
_Mar 22, 2021_
|
|
2667
2875
|
|
|
@@ -2673,13 +2881,13 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
|
|
|
2673
2881
|
See the documentation for [more details](https://mui.com/components/data-grid/rows/#infinite-loading).
|
|
2674
2882
|
|
|
2675
2883
|
- 🕹 Provide the ability to sort by multiple columns using Shift+click (#1203) @dtassone
|
|
2676
|
-
- 🇵🇱 Added
|
|
2884
|
+
- 🇵🇱 Added pl-PL locale (#1117) @LarsKumbier
|
|
2677
2885
|
- ⚡️ Edit cell accessibility (#1205) @dtassone
|
|
2678
2886
|
- 🐞 Bugfixes
|
|
2679
2887
|
|
|
2680
2888
|
### @material-ui/x-grid@v4.0.0-alpha.23 / @material-ui/data-grid@v4.0.0-alpha.23
|
|
2681
2889
|
|
|
2682
|
-
- [DataGrid] Add
|
|
2890
|
+
- [DataGrid] Add pl-PL locale (#1274) @michallukowski
|
|
2683
2891
|
- [DataGrid] Add onRowsScrollEnd to support infinite loading (#1199) @DanailH
|
|
2684
2892
|
- [DataGrid] Edit Cell Navigation (#1205) @dtassone
|
|
2685
2893
|
- [DataGrid] Fix Popper z-index (#1240) @m4theushw
|
|
@@ -2699,7 +2907,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
|
|
|
2699
2907
|
- [core] No top-level imports (#1257) @oliviertassinari
|
|
2700
2908
|
- [core] Remove dead code (#1259) @oliviertassinari
|
|
2701
2909
|
|
|
2702
|
-
## [4.0.0-alpha.22](https://github.com/mui
|
|
2910
|
+
## [4.0.0-alpha.22](https://github.com/mui/mui-x/compare/v4.0.0-alpha.21...v4.0.0-alpha.22)
|
|
2703
2911
|
|
|
2704
2912
|
_Mar 9, 2021_
|
|
2705
2913
|
|
|
@@ -2707,13 +2915,13 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
|
|
|
2707
2915
|
|
|
2708
2916
|
- 🎁 Implement base foundation for editing a cell (#1025) @dtassone.
|
|
2709
2917
|
This is the foundation on which the feature will be built. Currently, the newly added methods aren't yet ready for being used. This feature will be available in the coming weeks.
|
|
2710
|
-
- 🇩🇪 Added
|
|
2918
|
+
- 🇩🇪 Added de-DE locale (#1117) @LarsKumbier
|
|
2711
2919
|
- 📜 Fix scrollbar related issue (#1146) @dtassone
|
|
2712
2920
|
- 🐛 Handle commas in cell values when doing CSV export (#1154) @DanailH
|
|
2713
2921
|
|
|
2714
2922
|
### @material-ui/x-grid@v4.0.0-alpha.22 / @material-ui/data-grid@v4.0.0-alpha.22
|
|
2715
2923
|
|
|
2716
|
-
- [DataGrid] Add
|
|
2924
|
+
- [DataGrid] Add de-DE locale (#1117) @LarsKumbier
|
|
2717
2925
|
- [DataGrid] Fix scrollbar on autopageSize (#1146) @dtassone
|
|
2718
2926
|
- [DataGrid] Fix handling of special chars when doing CSV export (#1154) @DanailH
|
|
2719
2927
|
- [DataGrid] Implement base foundation for editing a cell (#1025) @dtassone
|
|
@@ -2733,7 +2941,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
|
|
|
2733
2941
|
- [core] Output warnings in the rendered components (#1153) @oliviertassinari
|
|
2734
2942
|
- [core] Update to the HEAD of the monorepo (#1138) @oliviertassinari
|
|
2735
2943
|
|
|
2736
|
-
## [4.0.0-alpha.21](https://github.com/mui
|
|
2944
|
+
## [4.0.0-alpha.21](https://github.com/mui/mui-x/compare/v4.0.0-alpha.20...v4.0.0-alpha.21)
|
|
2737
2945
|
|
|
2738
2946
|
_Feb 27, 2021_
|
|
2739
2947
|
|
|
@@ -2754,13 +2962,13 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
|
|
|
2754
2962
|
- [DataGrid] Prefix all public API to fit into the global Material-UI namespace (#1069) @DanailH
|
|
2755
2963
|
This change gets the data grid one step closer to a stable release. It allows the data grid to fit into the global namespace of Material-UI. All the exported modules should have a unique name. It allows the search features, in Google, in the docs, and in the codebase to work effectively and efficiently.
|
|
2756
2964
|
|
|
2757
|
-
For the mirgration, prefixing a broken import with "grid" is often enough. In the case it's not working, head to the pull request's description. It [details all the changes](https://github.com/mui
|
|
2965
|
+
For the mirgration, prefixing a broken import with "grid" is often enough. In the case it's not working, head to the pull request's description. It [details all the changes](https://github.com/mui/mui-x/pull/1069).
|
|
2758
2966
|
|
|
2759
2967
|
#### Changes
|
|
2760
2968
|
|
|
2761
|
-
- [DataGrid] Add
|
|
2969
|
+
- [DataGrid] Add fr-FR locale (#1079) @oliviertassinari
|
|
2762
2970
|
- [DataGrid] Add missing TablePagination localizations (#1109) @DanailH
|
|
2763
|
-
- [DataGrid] Add
|
|
2971
|
+
- [DataGrid] Add pt-BR locale (#1077) @erikian
|
|
2764
2972
|
- [DataGrid] Fix checked checkbox when empty rows (#1068) @bigandy
|
|
2765
2973
|
- [DataGrid] Fix issue with visible rows state (#1113) @dtassone
|
|
2766
2974
|
- [DataGrid] Fix last row (#1071) @dtassone
|
|
@@ -2786,7 +2994,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
|
|
|
2786
2994
|
- [test] Improve BrowserStack configuration (#1100) @oliviertassinari
|
|
2787
2995
|
- [test] Speed-up rebuild in Karma (#1064) @oliviertassinari
|
|
2788
2996
|
|
|
2789
|
-
## [4.0.0-alpha.20](https://github.com/mui
|
|
2997
|
+
## [4.0.0-alpha.20](https://github.com/mui/mui-x/compare/v4.0.0-alpha.19...v4.0.0-alpha.20)
|
|
2790
2998
|
|
|
2791
2999
|
_Feb 17, 2021_
|
|
2792
3000
|
|
|
@@ -2848,7 +3056,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
|
|
|
2848
3056
|
|
|
2849
3057
|
#### Changes
|
|
2850
3058
|
|
|
2851
|
-
- [DataGrid] Add
|
|
3059
|
+
- [DataGrid] Add bg-BG locale (#983) @DanailH
|
|
2852
3060
|
- [DataGrid] Add last of the missing translations (#1033) @DanailH
|
|
2853
3061
|
- [DataGrid] Add support for default props from theme (#1019) @DanailH
|
|
2854
3062
|
- [DataGrid] Fix controllable filters and select all rows with filters (#1020) @dtassone
|
|
@@ -2875,7 +3083,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
|
|
|
2875
3083
|
- [test] Increase yarn timeout (#1023) @oliviertassinari
|
|
2876
3084
|
- [test] Link CircleCI URL in BS (#1060) @oliviertassinari
|
|
2877
3085
|
|
|
2878
|
-
## [4.0.0-alpha.19](https://github.com/mui
|
|
3086
|
+
## [4.0.0-alpha.19](https://github.com/mui/mui-x/compare/v4.0.0-alpha.18...v4.0.0-alpha.19)
|
|
2879
3087
|
|
|
2880
3088
|
_Feb 5, 2021_
|
|
2881
3089
|
|
|
@@ -2918,7 +3126,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
|
|
|
2918
3126
|
- [core] Improve prop-types handling (#978) @oliviertassinari
|
|
2919
3127
|
- [core] Investigate bundle size (#954) @oliviertassinari
|
|
2920
3128
|
|
|
2921
|
-
## [4.0.0-alpha.18](https://github.com/mui
|
|
3129
|
+
## [4.0.0-alpha.18](https://github.com/mui/mui-x/compare/v4.0.0-alpha.17...v4.0.0-alpha.18)
|
|
2922
3130
|
|
|
2923
3131
|
_Jan 26, 2021_
|
|
2924
3132
|
|
|
@@ -2931,7 +3139,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
|
|
|
2931
3139
|
The first prop allows to swapping specific components used in slots the grid, like the checkboxes.
|
|
2932
3140
|
The second one allows providing extra props to each slot. It avoids the need for using the React context to access information from outside the data grid.
|
|
2933
3141
|
|
|
2934
|
-
See the [RFC](https://github.com/mui
|
|
3142
|
+
See the [RFC](https://github.com/mui/material-ui/issues/21453) for more details.
|
|
2935
3143
|
|
|
2936
3144
|
- 🐛 Polish existing features, fix 3 issues.
|
|
2937
3145
|
|
|
@@ -3005,7 +3213,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
|
|
|
3005
3213
|
- [core] Replace commander with yargs (#872) @dependabot-preview
|
|
3006
3214
|
- [core] Update monorepo (#884) @oliviertassinari
|
|
3007
3215
|
|
|
3008
|
-
## [4.0.0-alpha.17](https://github.com/mui
|
|
3216
|
+
## [4.0.0-alpha.17](https://github.com/mui/mui-x/compare/v4.0.0-alpha.15...v4.0.0-alpha.17)
|
|
3009
3217
|
|
|
3010
3218
|
_Jan 14, 2021_
|
|
3011
3219
|
|
|
@@ -3035,7 +3243,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
|
|
|
3035
3243
|
|
|
3036
3244
|
- [core] Add tests for Column selector feature (#845) @DanailH
|
|
3037
3245
|
|
|
3038
|
-
## [4.0.0-alpha.15](https://github.com/mui
|
|
3246
|
+
## [4.0.0-alpha.15](https://github.com/mui/mui-x/compare/v4.0.0-alpha.14...v4.0.0-alpha.15)
|
|
3039
3247
|
|
|
3040
3248
|
_Jan 7, 2021_
|
|
3041
3249
|
|
|
@@ -3058,7 +3266,7 @@ Big thanks to the 2 contributors who made this release possible. Here are some h
|
|
|
3058
3266
|
- [core] Batch small changes (#800) @oliviertassinari
|
|
3059
3267
|
- [CHANGELOG] Use the format of the main repository @oliviertassinari
|
|
3060
3268
|
|
|
3061
|
-
## [4.0.0-alpha.14](https://github.com/mui
|
|
3269
|
+
## [4.0.0-alpha.14](https://github.com/mui/mui-x/compare/v4.0.0-alpha.13...v4.0.0-alpha.14)
|
|
3062
3270
|
|
|
3063
3271
|
_Dec 31, 2020_
|
|
3064
3272
|
|
|
@@ -3092,7 +3300,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
|
|
|
3092
3300
|
- [test] We don't need to wait 100ms (#773) @oliviertassinari
|
|
3093
3301
|
- [core] Remove useless clone (#757) @oliviertassinari
|
|
3094
3302
|
|
|
3095
|
-
## [4.0.0-alpha.13](https://github.com/mui
|
|
3303
|
+
## [4.0.0-alpha.13](https://github.com/mui/mui-x/compare/v4.0.0-alpha.12...v4.0.0-alpha.13)
|
|
3096
3304
|
|
|
3097
3305
|
_Dec 16, 2020_
|
|
3098
3306
|
|
|
@@ -3121,7 +3329,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
|
|
|
3121
3329
|
- [test] Split data grid tests in multiple files (#722) @dtassone
|
|
3122
3330
|
- [test] Add tests for DataGrid filtering feature (#715) @dtassone
|
|
3123
3331
|
|
|
3124
|
-
## [4.0.0-alpha.12](https://github.com/mui
|
|
3332
|
+
## [4.0.0-alpha.12](https://github.com/mui/mui-x/compare/v4.0.0-alpha.11...v4.0.0-alpha.12)
|
|
3125
3333
|
|
|
3126
3334
|
_Dec 9, 2020_
|
|
3127
3335
|
|
|
@@ -3158,7 +3366,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
|
|
|
3158
3366
|
- [test] Add regression test (#705) @oliviertassinari
|
|
3159
3367
|
- [test] Allow running all the tests in strict mode (#684) @oliviertassinari
|
|
3160
3368
|
|
|
3161
|
-
## [4.0.0-alpha.11](https://github.com/mui
|
|
3369
|
+
## [4.0.0-alpha.11](https://github.com/mui/mui-x/compare/v4.0.0-alpha.10...v4.0.0-alpha.11)
|
|
3162
3370
|
|
|
3163
3371
|
_Dec 2, 2020_
|
|
3164
3372
|
|
|
@@ -3216,7 +3424,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
|
|
|
3216
3424
|
- [core] Replace Storybook knobs for args (#601) @tooppaaa
|
|
3217
3425
|
- [core] Update to Material-UI v4.11.1 (#636) @oliviertassinari
|
|
3218
3426
|
|
|
3219
|
-
## [4.0.0-alpha.10](https://github.com/mui
|
|
3427
|
+
## [4.0.0-alpha.10](https://github.com/mui/mui-x/compare/v4.0.0-alpha.9...v4.0.0-alpha.10)
|
|
3220
3428
|
|
|
3221
3429
|
_Nov 20, 2020_
|
|
3222
3430
|
|
|
@@ -3238,7 +3446,7 @@ _Nov 20, 2020_
|
|
|
3238
3446
|
- [core] Fix yarn prettier write @oliviertassinari
|
|
3239
3447
|
- [test] Share karma setup (#576) @oliviertassinari
|
|
3240
3448
|
|
|
3241
|
-
## [4.0.0-alpha.9](https://github.com/mui
|
|
3449
|
+
## [4.0.0-alpha.9](https://github.com/mui/mui-x/compare/v4.0.0-alpha.8...v4.0.0-alpha.9)
|
|
3242
3450
|
|
|
3243
3451
|
_Nov 9, 2020_
|
|
3244
3452
|
|
|
@@ -3276,7 +3484,7 @@ _Nov 9, 2020_
|
|
|
3276
3484
|
- [core] Disable generation of changelogs @oliviertassinari
|
|
3277
3485
|
- [test] Karma should fail if errors are thrown (#543) @oliviertassinari
|
|
3278
3486
|
|
|
3279
|
-
## [4.0.0-alpha.8](https://github.com/mui
|
|
3487
|
+
## [4.0.0-alpha.8](https://github.com/mui/mui-x/compare/v4.0.0-alpha.7...v4.0.0-alpha.8)
|
|
3280
3488
|
|
|
3281
3489
|
_Oct 23, 2020_
|
|
3282
3490
|
|
|
@@ -3293,7 +3501,7 @@ _Oct 23, 2020_
|
|
|
3293
3501
|
- [core] Remove usage of LESS (#467) @dependabot-preview
|
|
3294
3502
|
- [core] Update to the latest version of the main repo (#456) @oliviertassinari
|
|
3295
3503
|
|
|
3296
|
-
## [4.0.0-alpha.7](https://github.com/mui
|
|
3504
|
+
## [4.0.0-alpha.7](https://github.com/mui/mui-x/compare/v4.0.0-alpha.6...v4.0.0-alpha.7)
|
|
3297
3505
|
|
|
3298
3506
|
_Oct 19, 2020_
|
|
3299
3507
|
|
|
@@ -3322,7 +3530,7 @@ _Oct 19, 2020_
|
|
|
3322
3530
|
- [test] Add missing types linting for x-grid (#357) @oliviertassinari
|
|
3323
3531
|
- [test] Run the karma tests in browserstack (#316) @oliviertassinari
|
|
3324
3532
|
|
|
3325
|
-
## [4.0.0-alpha.6](https://github.com/mui
|
|
3533
|
+
## [4.0.0-alpha.6](https://github.com/mui/mui-x/compare/v4.0.0-alpha.2...v4.0.0-alpha.6)
|
|
3326
3534
|
|
|
3327
3535
|
_Sep 25, 2020_
|
|
3328
3536
|
|
|
@@ -3339,13 +3547,13 @@ _Sep 25, 2020_
|
|
|
3339
3547
|
- [docs] Fix layout jump issue (#338) @oliviertassinari
|
|
3340
3548
|
- [docs] Fix short description warning (#302) @oliviertassinari
|
|
3341
3549
|
|
|
3342
|
-
## [4.0.0-alpha.2](https://github.com/mui
|
|
3550
|
+
## [4.0.0-alpha.2](https://github.com/mui/mui-x/compare/v4.0.0-alpha.1...v4.0.0-alpha.2)
|
|
3343
3551
|
|
|
3344
3552
|
_Sep 18, 2020_
|
|
3345
3553
|
|
|
3346
3554
|
- [DataGrid] Fix wrongly exported types (#298) @dtassone
|
|
3347
3555
|
|
|
3348
|
-
## [4.0.0-alpha.1](https://github.com/mui
|
|
3556
|
+
## [4.0.0-alpha.1](https://github.com/mui/mui-x/compare/v0.1.67...v4.0.0-alpha.1)
|
|
3349
3557
|
|
|
3350
3558
|
_Sep 17, 2020_
|
|
3351
3559
|
|