@mui/x-data-grid-pro 5.5.0 → 5.6.1

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.
Files changed (356) hide show
  1. package/CHANGELOG.md +309 -101
  2. package/DataGridPro/DataGridPro.d.ts +3 -0
  3. package/DataGridPro/DataGridPro.js +910 -0
  4. package/DataGridPro/index.d.ts +2 -0
  5. package/DataGridPro/index.js +2 -0
  6. package/DataGridPro/package.json +6 -0
  7. package/DataGridPro/useDataGridProComponent.d.ts +4 -0
  8. package/DataGridPro/useDataGridProComponent.js +82 -0
  9. package/DataGridPro/useDataGridProProps.d.ts +6 -0
  10. package/DataGridPro/useDataGridProProps.js +49 -0
  11. package/components/DataGridProColumnHeaders.d.ts +6 -0
  12. package/components/DataGridProColumnHeaders.js +165 -0
  13. package/components/DataGridProVirtualScroller.d.ts +8 -0
  14. package/components/DataGridProVirtualScroller.js +270 -0
  15. package/components/GridColumnPinningMenuItems.d.ts +11 -0
  16. package/components/GridColumnPinningMenuItems.js +71 -0
  17. package/components/GridDetailPanelToggleCell.d.ts +7 -0
  18. package/components/GridDetailPanelToggleCell.js +125 -0
  19. package/components/GridGroupingColumnLeafCell.d.ts +4 -0
  20. package/components/GridGroupingColumnLeafCell.js +22 -0
  21. package/components/GridGroupingCriteriaCell.d.ts +10 -0
  22. package/components/GridGroupingCriteriaCell.js +150 -0
  23. package/components/GridRowGroupableColumnMenuItems.d.ts +11 -0
  24. package/components/GridRowGroupableColumnMenuItems.js +63 -0
  25. package/components/GridRowGroupingColumnMenuItems.d.ts +11 -0
  26. package/components/GridRowGroupingColumnMenuItems.js +58 -0
  27. package/components/GridTreeDataGroupingCell.d.ts +10 -0
  28. package/components/GridTreeDataGroupingCell.js +160 -0
  29. package/components/Watermark.d.ts +2 -0
  30. package/components/Watermark.js +43 -0
  31. package/components/index.d.ts +3 -0
  32. package/components/index.js +4 -0
  33. package/components/package.json +6 -0
  34. package/hooks/features/columnPinning/gridColumnPinningInterface.d.ts +42 -0
  35. package/hooks/features/columnPinning/gridColumnPinningInterface.js +11 -0
  36. package/hooks/features/columnPinning/gridColumnPinningSelector.d.ts +2 -0
  37. package/hooks/features/columnPinning/gridColumnPinningSelector.js +1 -0
  38. package/hooks/features/columnPinning/index.d.ts +2 -0
  39. package/hooks/features/columnPinning/index.js +2 -0
  40. package/hooks/features/columnPinning/useGridColumnPinning.d.ts +6 -0
  41. package/hooks/features/columnPinning/useGridColumnPinning.js +274 -0
  42. package/hooks/features/columnPinning/useGridColumnPinningPreProcessors.d.ts +4 -0
  43. package/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js +45 -0
  44. package/hooks/features/columnReorder/columnReorderInterfaces.d.ts +6 -0
  45. package/hooks/features/columnReorder/columnReorderInterfaces.js +1 -0
  46. package/hooks/features/columnReorder/columnReorderSelector.d.ts +3 -0
  47. package/hooks/features/columnReorder/columnReorderSelector.js +3 -0
  48. package/hooks/features/columnReorder/index.d.ts +2 -0
  49. package/hooks/features/columnReorder/index.js +2 -0
  50. package/hooks/features/columnReorder/useGridColumnReorder.d.ts +10 -0
  51. package/hooks/features/columnReorder/useGridColumnReorder.js +165 -0
  52. package/hooks/features/columnResize/columnResizeSelector.d.ts +3 -0
  53. package/hooks/features/columnResize/columnResizeSelector.js +3 -0
  54. package/hooks/features/columnResize/columnResizeState.d.ts +3 -0
  55. package/hooks/features/columnResize/columnResizeState.js +1 -0
  56. package/hooks/features/columnResize/index.d.ts +2 -0
  57. package/hooks/features/columnResize/index.js +2 -0
  58. package/hooks/features/columnResize/useGridColumnResize.d.ts +11 -0
  59. package/hooks/features/columnResize/useGridColumnResize.js +305 -0
  60. package/hooks/features/detailPanel/gridDetailPanelInterface.d.ts +28 -0
  61. package/hooks/features/detailPanel/gridDetailPanelInterface.js +1 -0
  62. package/hooks/features/detailPanel/gridDetailPanelSelector.d.ts +5 -0
  63. package/hooks/features/detailPanel/gridDetailPanelSelector.js +3 -0
  64. package/hooks/features/detailPanel/gridDetailPanelToggleColDef.d.ts +3 -0
  65. package/hooks/features/detailPanel/gridDetailPanelToggleColDef.js +26 -0
  66. package/hooks/features/detailPanel/index.d.ts +3 -0
  67. package/hooks/features/detailPanel/index.js +3 -0
  68. package/hooks/features/detailPanel/useGridDetailPanel.d.ts +6 -0
  69. package/hooks/features/detailPanel/useGridDetailPanel.js +109 -0
  70. package/hooks/features/detailPanel/useGridDetailPanelCache.d.ts +4 -0
  71. package/hooks/features/detailPanel/useGridDetailPanelCache.js +57 -0
  72. package/hooks/features/detailPanel/useGridDetailPanelPreProcessors.d.ts +4 -0
  73. package/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js +28 -0
  74. package/hooks/features/index.d.ts +6 -0
  75. package/hooks/features/index.js +7 -0
  76. package/hooks/features/infiniteLoader/useGridInfiniteLoader.d.ts +10 -0
  77. package/hooks/features/infiniteLoader/useGridInfiniteLoader.js +52 -0
  78. package/hooks/features/rowGrouping/createGroupingColDef.d.ts +43 -0
  79. package/hooks/features/rowGrouping/createGroupingColDef.js +318 -0
  80. package/hooks/features/rowGrouping/gridRowGroupingInterfaces.d.ts +31 -0
  81. package/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +1 -0
  82. package/hooks/features/rowGrouping/gridRowGroupingSelector.d.ts +4 -0
  83. package/hooks/features/rowGrouping/gridRowGroupingSelector.js +5 -0
  84. package/hooks/features/rowGrouping/gridRowGroupingUtils.d.ts +24 -0
  85. package/hooks/features/rowGrouping/gridRowGroupingUtils.js +124 -0
  86. package/hooks/features/rowGrouping/index.d.ts +3 -0
  87. package/hooks/features/rowGrouping/index.js +3 -0
  88. package/hooks/features/rowGrouping/useGridRowGrouping.d.ts +13 -0
  89. package/hooks/features/rowGrouping/useGridRowGrouping.js +325 -0
  90. package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.d.ts +4 -0
  91. package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +76 -0
  92. package/hooks/features/treeData/gridTreeDataGroupColDef.d.ts +7 -0
  93. package/hooks/features/treeData/gridTreeDataGroupColDef.js +22 -0
  94. package/hooks/features/treeData/gridTreeDataUtils.d.ts +14 -0
  95. package/hooks/features/treeData/gridTreeDataUtils.js +86 -0
  96. package/hooks/features/treeData/index.d.ts +1 -0
  97. package/hooks/features/treeData/index.js +1 -0
  98. package/hooks/features/treeData/useGridTreeData.d.ts +10 -0
  99. package/hooks/features/treeData/useGridTreeData.js +108 -0
  100. package/hooks/features/treeData/useGridTreeDataPreProcessors.d.ts +4 -0
  101. package/hooks/features/treeData/useGridTreeDataPreProcessors.js +69 -0
  102. package/hooks/index.d.ts +1 -0
  103. package/hooks/index.js +1 -0
  104. package/hooks/package.json +6 -0
  105. package/hooks/utils/useGridApiContext.d.ts +4 -0
  106. package/hooks/utils/useGridApiContext.js +2 -0
  107. package/hooks/utils/useGridApiRef.d.ts +4 -0
  108. package/hooks/utils/useGridApiRef.js +2 -0
  109. package/hooks/utils/useGridRootProps.d.ts +2 -0
  110. package/hooks/utils/useGridRootProps.js +2 -0
  111. package/index.d.ts +16 -0
  112. package/index.js +20 -0
  113. package/legacy/DataGridPro/DataGridPro.js +910 -0
  114. package/legacy/DataGridPro/index.js +2 -0
  115. package/legacy/DataGridPro/useDataGridProComponent.js +82 -0
  116. package/legacy/DataGridPro/useDataGridProProps.js +58 -0
  117. package/legacy/components/DataGridProColumnHeaders.js +173 -0
  118. package/legacy/components/DataGridProVirtualScroller.js +287 -0
  119. package/legacy/components/GridColumnPinningMenuItems.js +71 -0
  120. package/legacy/components/GridDetailPanelToggleCell.js +121 -0
  121. package/legacy/components/GridGroupingColumnLeafCell.js +20 -0
  122. package/legacy/components/GridGroupingCriteriaCell.js +146 -0
  123. package/legacy/components/GridRowGroupableColumnMenuItems.js +61 -0
  124. package/legacy/components/GridRowGroupingColumnMenuItems.js +56 -0
  125. package/legacy/components/GridTreeDataGroupingCell.js +156 -0
  126. package/legacy/components/Watermark.js +43 -0
  127. package/legacy/components/index.js +4 -0
  128. package/legacy/hooks/features/columnPinning/gridColumnPinningInterface.js +11 -0
  129. package/legacy/hooks/features/columnPinning/gridColumnPinningSelector.js +3 -0
  130. package/legacy/hooks/features/columnPinning/index.js +2 -0
  131. package/legacy/hooks/features/columnPinning/useGridColumnPinning.js +298 -0
  132. package/legacy/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js +48 -0
  133. package/legacy/hooks/features/columnReorder/columnReorderInterfaces.js +1 -0
  134. package/legacy/hooks/features/columnReorder/columnReorderSelector.js +7 -0
  135. package/legacy/hooks/features/columnReorder/index.js +2 -0
  136. package/legacy/hooks/features/columnReorder/useGridColumnReorder.js +171 -0
  137. package/legacy/hooks/features/columnResize/columnResizeSelector.js +7 -0
  138. package/legacy/hooks/features/columnResize/columnResizeState.js +1 -0
  139. package/legacy/hooks/features/columnResize/index.js +2 -0
  140. package/legacy/hooks/features/columnResize/useGridColumnResize.js +310 -0
  141. package/legacy/hooks/features/detailPanel/gridDetailPanelInterface.js +1 -0
  142. package/legacy/hooks/features/detailPanel/gridDetailPanelSelector.js +9 -0
  143. package/legacy/hooks/features/detailPanel/gridDetailPanelToggleColDef.js +28 -0
  144. package/legacy/hooks/features/detailPanel/index.js +3 -0
  145. package/legacy/hooks/features/detailPanel/useGridDetailPanel.js +114 -0
  146. package/legacy/hooks/features/detailPanel/useGridDetailPanelCache.js +57 -0
  147. package/legacy/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js +31 -0
  148. package/legacy/hooks/features/index.js +7 -0
  149. package/legacy/hooks/features/infiniteLoader/useGridInfiniteLoader.js +51 -0
  150. package/legacy/hooks/features/rowGrouping/createGroupingColDef.js +319 -0
  151. package/legacy/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +1 -0
  152. package/legacy/hooks/features/rowGrouping/gridRowGroupingSelector.js +13 -0
  153. package/legacy/hooks/features/rowGrouping/gridRowGroupingUtils.js +130 -0
  154. package/legacy/hooks/features/rowGrouping/index.js +3 -0
  155. package/legacy/hooks/features/rowGrouping/useGridRowGrouping.js +334 -0
  156. package/legacy/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +83 -0
  157. package/legacy/hooks/features/treeData/gridTreeDataGroupColDef.js +24 -0
  158. package/legacy/hooks/features/treeData/gridTreeDataUtils.js +84 -0
  159. package/legacy/hooks/features/treeData/index.js +1 -0
  160. package/legacy/hooks/features/treeData/useGridTreeData.js +116 -0
  161. package/legacy/hooks/features/treeData/useGridTreeDataPreProcessors.js +72 -0
  162. package/legacy/hooks/index.js +1 -0
  163. package/legacy/hooks/utils/useGridApiContext.js +2 -0
  164. package/legacy/hooks/utils/useGridApiRef.js +2 -0
  165. package/legacy/hooks/utils/useGridRootProps.js +2 -0
  166. package/legacy/index.js +20 -0
  167. package/legacy/models/dataGridProProps.js +1 -0
  168. package/legacy/models/gridApiPro.js +1 -0
  169. package/legacy/models/gridGroupingColDefOverride.js +1 -0
  170. package/legacy/models/gridGroupingValueGetterParams.js +1 -0
  171. package/legacy/models/gridRowScrollEndParams.js +1 -0
  172. package/legacy/models/gridStatePro.js +1 -0
  173. package/legacy/models/index.js +4 -0
  174. package/legacy/themeAugmentation/index.js +3 -0
  175. package/legacy/themeAugmentation/overrides.js +1 -0
  176. package/legacy/themeAugmentation/props.js +1 -0
  177. package/legacy/typeOverloads/modules.js +1 -0
  178. package/legacy/typeOverloads/reexports.js +6 -0
  179. package/legacy/utils/domUtils.js +19 -0
  180. package/legacy/utils/tree/buildRowTree.js +188 -0
  181. package/legacy/utils/tree/sortRowTree.js +63 -0
  182. package/models/dataGridProProps.d.ts +174 -0
  183. package/models/dataGridProProps.js +1 -0
  184. package/models/gridApiPro.d.ts +12 -0
  185. package/models/gridApiPro.js +1 -0
  186. package/models/gridGroupingColDefOverride.d.ts +30 -0
  187. package/models/gridGroupingColDefOverride.js +1 -0
  188. package/models/gridGroupingValueGetterParams.d.ts +31 -0
  189. package/models/gridGroupingValueGetterParams.js +1 -0
  190. package/models/gridRowScrollEndParams.d.ts +18 -0
  191. package/models/gridRowScrollEndParams.js +1 -0
  192. package/models/gridStatePro.d.ts +20 -0
  193. package/models/gridStatePro.js +1 -0
  194. package/models/index.d.ts +4 -0
  195. package/models/index.js +4 -0
  196. package/models/package.json +6 -0
  197. package/modern/DataGridPro/DataGridPro.js +910 -0
  198. package/modern/DataGridPro/index.js +2 -0
  199. package/modern/DataGridPro/useDataGridProComponent.js +82 -0
  200. package/modern/DataGridPro/useDataGridProProps.js +45 -0
  201. package/modern/components/DataGridProColumnHeaders.js +163 -0
  202. package/modern/components/DataGridProVirtualScroller.js +268 -0
  203. package/modern/components/GridColumnPinningMenuItems.js +71 -0
  204. package/modern/components/GridDetailPanelToggleCell.js +125 -0
  205. package/modern/components/GridGroupingColumnLeafCell.js +20 -0
  206. package/modern/components/GridGroupingCriteriaCell.js +148 -0
  207. package/modern/components/GridRowGroupableColumnMenuItems.js +61 -0
  208. package/modern/components/GridRowGroupingColumnMenuItems.js +56 -0
  209. package/modern/components/GridTreeDataGroupingCell.js +158 -0
  210. package/modern/components/Watermark.js +43 -0
  211. package/modern/components/index.js +4 -0
  212. package/modern/hooks/features/columnPinning/gridColumnPinningInterface.js +11 -0
  213. package/modern/hooks/features/columnPinning/gridColumnPinningSelector.js +1 -0
  214. package/modern/hooks/features/columnPinning/index.js +2 -0
  215. package/modern/hooks/features/columnPinning/useGridColumnPinning.js +268 -0
  216. package/modern/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js +45 -0
  217. package/modern/hooks/features/columnReorder/columnReorderInterfaces.js +1 -0
  218. package/modern/hooks/features/columnReorder/columnReorderSelector.js +3 -0
  219. package/modern/hooks/features/columnReorder/index.js +2 -0
  220. package/modern/hooks/features/columnReorder/useGridColumnReorder.js +165 -0
  221. package/modern/hooks/features/columnResize/columnResizeSelector.js +3 -0
  222. package/modern/hooks/features/columnResize/columnResizeState.js +1 -0
  223. package/modern/hooks/features/columnResize/index.js +2 -0
  224. package/modern/hooks/features/columnResize/useGridColumnResize.js +295 -0
  225. package/modern/hooks/features/detailPanel/gridDetailPanelInterface.js +1 -0
  226. package/modern/hooks/features/detailPanel/gridDetailPanelSelector.js +3 -0
  227. package/modern/hooks/features/detailPanel/gridDetailPanelToggleColDef.js +26 -0
  228. package/modern/hooks/features/detailPanel/index.js +3 -0
  229. package/modern/hooks/features/detailPanel/useGridDetailPanel.js +105 -0
  230. package/modern/hooks/features/detailPanel/useGridDetailPanelCache.js +57 -0
  231. package/modern/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js +28 -0
  232. package/modern/hooks/features/index.js +7 -0
  233. package/modern/hooks/features/infiniteLoader/useGridInfiniteLoader.js +52 -0
  234. package/modern/hooks/features/rowGrouping/createGroupingColDef.js +302 -0
  235. package/modern/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +1 -0
  236. package/modern/hooks/features/rowGrouping/gridRowGroupingSelector.js +5 -0
  237. package/modern/hooks/features/rowGrouping/gridRowGroupingUtils.js +122 -0
  238. package/modern/hooks/features/rowGrouping/index.js +3 -0
  239. package/modern/hooks/features/rowGrouping/useGridRowGrouping.js +317 -0
  240. package/modern/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +76 -0
  241. package/modern/hooks/features/treeData/gridTreeDataGroupColDef.js +22 -0
  242. package/modern/hooks/features/treeData/gridTreeDataUtils.js +82 -0
  243. package/modern/hooks/features/treeData/index.js +1 -0
  244. package/modern/hooks/features/treeData/useGridTreeData.js +106 -0
  245. package/modern/hooks/features/treeData/useGridTreeDataPreProcessors.js +67 -0
  246. package/modern/hooks/index.js +1 -0
  247. package/modern/hooks/utils/useGridApiContext.js +2 -0
  248. package/modern/hooks/utils/useGridApiRef.js +2 -0
  249. package/modern/hooks/utils/useGridRootProps.js +2 -0
  250. package/modern/index.js +20 -0
  251. package/modern/models/dataGridProProps.js +1 -0
  252. package/modern/models/gridApiPro.js +1 -0
  253. package/modern/models/gridGroupingColDefOverride.js +1 -0
  254. package/modern/models/gridGroupingValueGetterParams.js +1 -0
  255. package/modern/models/gridRowScrollEndParams.js +1 -0
  256. package/modern/models/gridStatePro.js +1 -0
  257. package/modern/models/index.js +4 -0
  258. package/modern/themeAugmentation/index.js +3 -0
  259. package/modern/themeAugmentation/overrides.js +1 -0
  260. package/modern/themeAugmentation/props.js +1 -0
  261. package/modern/typeOverloads/modules.js +1 -0
  262. package/modern/typeOverloads/reexports.js +6 -0
  263. package/modern/utils/domUtils.js +19 -0
  264. package/modern/utils/tree/buildRowTree.js +167 -0
  265. package/modern/utils/tree/sortRowTree.js +60 -0
  266. package/node/DataGridPro/DataGridPro.js +935 -0
  267. package/node/DataGridPro/index.js +30 -0
  268. package/node/DataGridPro/useDataGridProComponent.js +104 -0
  269. package/node/DataGridPro/useDataGridProProps.js +69 -0
  270. package/node/components/DataGridProColumnHeaders.js +189 -0
  271. package/node/components/DataGridProVirtualScroller.js +297 -0
  272. package/node/components/GridColumnPinningMenuItems.js +88 -0
  273. package/node/components/GridDetailPanelToggleCell.js +146 -0
  274. package/node/components/GridGroupingColumnLeafCell.js +38 -0
  275. package/node/components/GridGroupingCriteriaCell.js +170 -0
  276. package/node/components/GridRowGroupableColumnMenuItems.js +82 -0
  277. package/node/components/GridRowGroupingColumnMenuItems.js +78 -0
  278. package/node/components/GridTreeDataGroupingCell.js +181 -0
  279. package/node/components/Watermark.js +56 -0
  280. package/node/components/index.js +44 -0
  281. package/node/hooks/features/columnPinning/gridColumnPinningInterface.js +17 -0
  282. package/node/hooks/features/columnPinning/gridColumnPinningSelector.js +10 -0
  283. package/node/hooks/features/columnPinning/index.js +31 -0
  284. package/node/hooks/features/columnPinning/useGridColumnPinning.js +297 -0
  285. package/node/hooks/features/columnPinning/useGridColumnPinningPreProcessors.js +66 -0
  286. package/node/hooks/features/columnReorder/columnReorderInterfaces.js +5 -0
  287. package/node/hooks/features/columnReorder/columnReorderSelector.js +14 -0
  288. package/node/hooks/features/columnReorder/index.js +18 -0
  289. package/node/hooks/features/columnReorder/useGridColumnReorder.js +188 -0
  290. package/node/hooks/features/columnResize/columnResizeSelector.js +14 -0
  291. package/node/hooks/features/columnResize/columnResizeState.js +5 -0
  292. package/node/hooks/features/columnResize/index.js +31 -0
  293. package/node/hooks/features/columnResize/useGridColumnResize.js +329 -0
  294. package/node/hooks/features/detailPanel/gridDetailPanelInterface.js +5 -0
  295. package/node/hooks/features/detailPanel/gridDetailPanelSelector.js +18 -0
  296. package/node/hooks/features/detailPanel/gridDetailPanelToggleColDef.js +47 -0
  297. package/node/hooks/features/detailPanel/index.js +44 -0
  298. package/node/hooks/features/detailPanel/useGridDetailPanel.js +133 -0
  299. package/node/hooks/features/detailPanel/useGridDetailPanelCache.js +74 -0
  300. package/node/hooks/features/detailPanel/useGridDetailPanelPreProcessors.js +44 -0
  301. package/node/hooks/features/index.js +83 -0
  302. package/node/hooks/features/infiniteLoader/useGridInfiniteLoader.js +67 -0
  303. package/node/hooks/features/rowGrouping/createGroupingColDef.js +341 -0
  304. package/node/hooks/features/rowGrouping/gridRowGroupingInterfaces.js +5 -0
  305. package/node/hooks/features/rowGrouping/gridRowGroupingSelector.js +18 -0
  306. package/node/hooks/features/rowGrouping/gridRowGroupingUtils.js +153 -0
  307. package/node/hooks/features/rowGrouping/index.js +51 -0
  308. package/node/hooks/features/rowGrouping/useGridRowGrouping.js +355 -0
  309. package/node/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +94 -0
  310. package/node/hooks/features/treeData/gridTreeDataGroupColDef.js +35 -0
  311. package/node/hooks/features/treeData/gridTreeDataUtils.js +95 -0
  312. package/node/hooks/features/treeData/index.js +13 -0
  313. package/node/hooks/features/treeData/useGridTreeData.js +132 -0
  314. package/node/hooks/features/treeData/useGridTreeDataPreProcessors.js +92 -0
  315. package/node/hooks/index.js +18 -0
  316. package/node/hooks/utils/useGridApiContext.js +11 -0
  317. package/node/hooks/utils/useGridApiRef.js +11 -0
  318. package/node/hooks/utils/useGridRootProps.js +11 -0
  319. package/node/index.js +214 -0
  320. package/node/models/dataGridProProps.js +5 -0
  321. package/node/models/gridApiPro.js +5 -0
  322. package/node/models/gridGroupingColDefOverride.js +5 -0
  323. package/node/models/gridGroupingValueGetterParams.js +5 -0
  324. package/node/models/gridRowScrollEndParams.js +5 -0
  325. package/node/models/gridStatePro.js +5 -0
  326. package/node/models/index.js +44 -0
  327. package/node/themeAugmentation/index.js +31 -0
  328. package/node/themeAugmentation/overrides.js +5 -0
  329. package/node/themeAugmentation/props.js +5 -0
  330. package/node/typeOverloads/modules.js +5 -0
  331. package/node/typeOverloads/reexports.js +29 -0
  332. package/node/utils/domUtils.js +32 -0
  333. package/node/utils/tree/buildRowTree.js +185 -0
  334. package/node/utils/tree/sortRowTree.js +69 -0
  335. package/package.json +13 -14
  336. package/themeAugmentation/index.d.ts +2 -2
  337. package/themeAugmentation/index.js +3 -0
  338. package/themeAugmentation/overrides.d.ts +8 -8
  339. package/themeAugmentation/overrides.js +1 -0
  340. package/themeAugmentation/package.json +6 -0
  341. package/themeAugmentation/props.d.ts +19 -19
  342. package/themeAugmentation/props.js +1 -0
  343. package/typeOverloads/modules.d.ts +41 -0
  344. package/typeOverloads/modules.js +1 -0
  345. package/typeOverloads/reexports.d.ts +22 -0
  346. package/typeOverloads/reexports.js +6 -0
  347. package/utils/domUtils.d.ts +3 -0
  348. package/utils/domUtils.js +19 -0
  349. package/utils/tree/buildRowTree.d.ts +47 -0
  350. package/utils/tree/buildRowTree.js +179 -0
  351. package/utils/tree/sortRowTree.d.ts +10 -0
  352. package/utils/tree/sortRowTree.js +60 -0
  353. package/LICENSE +0 -12
  354. package/index-cjs.js +0 -15
  355. package/index-esm.js +0 -15
  356. package/x-data-grid-pro.d.ts +0 -5438
package/CHANGELOG.md CHANGED
@@ -3,6 +3,214 @@
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.1
7
+
8
+ _Mar 10, 2022_
9
+
10
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - [DataGrid] Allow to add margins or borders between rows (#3848) @m4theushw
13
+
14
+ ```tsx
15
+ <DataGrid getRowSpacing={() => ({ top: 10, bottom: 10 })} />
16
+ ```
17
+
18
+ Check the [documentation](https://mui.com/components/data-grid/rows/#row-spacing) for more information.
19
+
20
+ ### `@mui/x-data-grid@v5.6.1` / `@mui/x-data-grid-pro@v5.6.1`
21
+
22
+ #### Changes
23
+
24
+ - [DataGrid] Display column's filter icon if a filter is applied (#4120) @DanailH
25
+ - [DataGrid] Do not loop through rows to compute top level rows count when the tree is flat (#4081) @flaviendelangle
26
+ - [DataGrid] Rename API method (#4148) @m4theushw
27
+ - [DataGrid] Support extending built-in column types (#4114) @cherniavskii
28
+ - [DataGridPro] Re-export the components removed by mistake during bundle split (#4134) @flaviendelangle
29
+
30
+ ### Docs
31
+
32
+ - [docs] Fix links to prevent duplicate search result (#4130) @siriwatknp
33
+ - [docs] Fix outdated links to `localeTextConstants.ts` (#4080) @patilvishal755
34
+ - [docs] Neglect e2e tests related to search (#4118) @siriwatknp
35
+ - [docs] Use regex instead of specific url in e2e-website-tests (#4121) @siriwatknp
36
+
37
+ ### Core
38
+
39
+ - [core] Enforce `noImplicitAny` (#4084) @cherniavskii
40
+ - [core] Improve the Pro support issue template (#4082) @oliviertassinari
41
+ - [core] Initialize remaining states before feature hooks (#4036) @m4theushw
42
+ - [core] Merge `page` and `pageSize` state initializer into a single `pagination` state initializer (#4087) @flaviendelangle
43
+ - [core] Prepare `yarn docs:api:build` scripts for multi packages support (#4111) @flaviendelangle
44
+ - [core] Upgrade `@mui/monorepo` (#4149) @cherniavskii
45
+ - [core] Use `buildWarning` and `wrapWithWarningOnCall` for deprecated methods and wrong usages (#4056) @flaviendelangle
46
+ - [test] Make focus state out-of-sync warning opt-in (#4129) @m4theushw
47
+ - [test] Only test custom input keyboard event in edit mode (#4075) @alexfauquette
48
+
49
+ ## 5.6.0
50
+
51
+ _Mar 4, 2022_
52
+
53
+ We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
54
+
55
+ - 📦 Use the same bundling scripts as those in the [material-ui](https://github.com/mui/material-ui) repository (#3965) @flaviendelangle
56
+
57
+ The code structure and the bundling strategy have been modified to provide better isolation between components.
58
+ The bundle size is slightly reduced, but with tree shaking, the doors are open for significant gains in the future. 🏋
59
+ We predict that such modifications could potentially impact edge cases.
60
+ If you encounter problems with your build, please open an issue.
61
+ These issues will have high priority as part of our risk mitigation strategy.
62
+
63
+ - 🧼 Clean and document the column selectors (#4010) @flaviendelangle
64
+
65
+ Column selectors have been renamed to improve clarity.
66
+ The old names have been deprecated and will be removed in v6.
67
+ Here are the new names and the modifications needed to get the same information with the new selectors.
68
+
69
+ | Old name | New name |
70
+ | ------------------------------- | ----------------------------------------- |
71
+ | `allGridColumnsFieldsSelector` | `gridColumnFieldsSelector` |
72
+ | `allGridColumnsSelector` | `gridColumnDefinitionsSelector` |
73
+ | `visibleGridColumnsSelector` | `gridVisibleColumnDefinitionsSelector` |
74
+ | `filterableGridColumnsSelector` | `gridFilterableColumnDefinitionsSelector` |
75
+
76
+ ```diff
77
+ -const { all, lookup, columnVisibilityModel } = gridColumnsSelector(apiRef)
78
+ +const all = gridColumnFieldsSelector(apiRef)
79
+ +const lookup = gridColumnLookupSelector(apiRef)
80
+ +const columnVisibilityModel = gridColumnVisibilityModelSelector(apiRef)
81
+
82
+ -const filterableFields = filterableGridColumnsIdsSelector(apiRef);
83
+ +const lookup = gridFilterableColumnLookupSelector(apiRef);
84
+ +const filterableFields = gridColumnFieldsSelector(apiRef).filter(field => lookup[field]);
85
+
86
+ -const visibleColumnsNumber = visibleGridColumnsLengthSelector(apiRef);
87
+ +const visibleColumnsNumber = gridVisibleColumnDefinitionsSelector(apiRef).length;
88
+
89
+ -const { totalWidth, positions } = gridColumnsMetaSelector(apiRef);
90
+ +const totalWidth = gridColumnsTotalWidthSelector(apiRef);
91
+ +const positions = gridColumnPositionsSelector(apiRef);
92
+ ```
93
+
94
+ - 📚 Documentation improvements
95
+ - 🐞 Bug and typo fixes
96
+
97
+ ### `@mui/x-data-grid@v5.6.0` / `@mui/x-data-grid-pro@v5.6.0`
98
+
99
+ #### Changes
100
+
101
+ - [DataGrid] Add slot for filter panel delete icon (#4069) @Hameezr
102
+ - [DataGrid] Add specific label for `linkOperator` (#3915) @alexfauquette
103
+ - [DataGrid] Allow for truncated and multiline content in grid cells (#3955) @DanailH
104
+ - [DataGrid] Allow to navigate between cells with keyboard once inside an `actions` column (#3375) @m4theushw
105
+ - [DataGrid] Fix desynchronization between rows and header when sorting (#4058) @alexfauquette
106
+ - [DataGrid] Clean and document the columns selector (#4010) @flaviendelangle
107
+ - [DataGrid] Deprecate and stop typing the api params of `GridCellParams`/`GridValueGetterParams` and affiliated (#4089) @ flaviendelangle
108
+ - [DataGrid] Differentiate the Pro and Community versions of `GridState`, `GridApi` and `GridApiRef` (#3648) @flaviendelangle
109
+ - [DataGrid] Fix column selection for print export (#3917) @alexfauquette
110
+ - [DataGrid] Fix horizontal scroll not working on empty grid (#3821) @cherniavskii
111
+ - [DataGrid] Fix input element in custom header (#3624) @alexfauquette
112
+ - [DataGrid] Improve `singleSelect` filter performance (#3956) @cherniavskii
113
+ - [DataGrid] Improve custom overlay slots positioning (#3832) @cherniavskii
114
+ - [DataGrid] Improve `flex` implementation match the W3C standard (#4006) @cherniavskii
115
+ - [DataGrid] Improve the invalid `sortModel` and `filterModel` warnings (#3671) @flaviendelangle
116
+ - [DataGrid] Memoize `Popper` modifiers passed to panel (#3975) @m4theushw
117
+ - [DataGrid] Prevent focus while `Popper` is not fully positioned (#4067) @m4theushw
118
+ - [DataGrid] Remove `GridCell`'s `borderBottom` when it is the last row (#3519) @DanailH
119
+ - [DataGrid] Remove padding from the header title (#3691) @valenfv
120
+ - [DataGrid] Reuse previous `rowNode` when building tree and the new `rowNode` is equal to the previous one (#3961) @flaviendelangle
121
+ - [DataGrid] Remove last filter item when no value to clean and close the filter panel (#3910) @alexfauquette
122
+ - [DataGrid] Send warning when the `rowCount` is not provided while using server pagination (#3902) @alexfauquette
123
+ - [DataGrid] Stop checkbox ripple on blur (#3835) @m4theushw
124
+ - [DataGrid] Stop calling `onRowClick` when clicking in cells with interactive elements (#3929) @m4theushw
125
+ - [DataGrid] Use only `headerName` when available to search column (#3959) @pkratz
126
+ - [DataGrid] Use the bundling scripts as the packages published by the [https://github.com/mui/material-ui](material-ui) repository (#3965) @flaviendelangle
127
+ - [DataGridPro] Add `unstable_setRowHeight` method to `apiRef` (#3751) @cherniavskii
128
+ - [DataGridPro] Always export the `pageSize` and `page` when it has been initialized or is being controlled (#3908) @flaviendelangle
129
+ - [DataGridPro] Disable export for detail panel column (#4057) @gustavhagland
130
+ - [DataGridPremium] Support `valueFormatter` on the grouping column (#4022) @flaviendelangle
131
+ - [l10n] Improve Bulgarian (bg-BG) locale (#3949) @DanailH
132
+ - [l10n] Improve German (de-DE) locale (#4077) @sebastianfrey
133
+ - [l10n] Improve Hebrew (he-IL) locale (#3930) @ColdAtNight
134
+
135
+ ### Docs
136
+
137
+ - [docs] Add example of custom operator based on built-in ones (#3911) @flaviendelangle
138
+ - [docs] Add missing words in the filtering page (#4079) @flaviendelangle
139
+ - [docs] Avoid crash in demos using row grouping and custom formatted cells (#4065) @m4theushw
140
+ - [docs] Fix `Commodity` and `Employee` CSV export of the `country` column (#3912) @DanailH
141
+ - [docs] Fix links to the GitHub repository (#4005) @oliviertassinari
142
+ - [docs] Fix typo (#3923) @oliviertassinari
143
+ - [docs] Fix typo (#4016) @MathisBurger
144
+ - [docs] Fix typo in client-side validation example (#4066) @krallj
145
+ - [docs] Remove useless hide id column (#4021) @alexfauquette
146
+
147
+ ### Core
148
+
149
+ - [core] Allows to add custom export item (#3891) @alexfauquette
150
+ - [core] Remove the `_modules_` folder (#3953) @flaviendelangle
151
+ - [core] Fix typo in `useGridScroll.ts` (#3973) @HexM7
152
+ - [core] Fix typos, improve wordings and other various fixes (#4062) @flaviendelangle
153
+ - [core] Initialize states before feature hooks (#3896) @m4theushw
154
+ - [code] Make `@mui/x-data-grid-pro` import shared code from `@mui/x-data-grid` (#3688) @flaviendelangle
155
+ - [core] Migrate `@mui/x-license-pro` to the new bundling strategy (#3738) @flaviendelangle
156
+ - [core] Reduce usage of `useGridSelector` inside feature hooks (#3978) @flaviendelangle
157
+ - [core] Retry l10n CI if 502 returned (#3977) @alexfauquette
158
+ - [core] Update release instructions (#3920) @cherniavskii
159
+ - [core] Use international locale format (#3921) @oliviertassinari
160
+ - [core] Fix license generating script (#4055) @Janpot
161
+ - [test] Add screenshot of the filter panel (#4072) @alexfauquette
162
+ - [test] Reduce memory usage to run unit tests (#4031) @m4theushw
163
+ - [test] Skip test on Firefox (#3926) @m4theushw
164
+
165
+ ## 5.5.1
166
+
167
+ _Feb 10, 2022_
168
+
169
+ A big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
170
+
171
+ - 🎛 Add props to customize the behavior of the filter panel (#3497) @alexfauquette
172
+
173
+ ```tsx
174
+ <DataGrid
175
+ componentsProps={{
176
+ filterPanel: { columnsSort: 'asc' },
177
+ }}
178
+ />
179
+ ```
180
+
181
+ Check the [documentation](https://mui.com/components/data-grid/filtering/#customize-the-filter-panel-content) to see all available props.
182
+
183
+ - 📚 Documentation improvements
184
+ - 🐞 Bugfixes
185
+
186
+ ### `@mui/x-data-grid@v5.5.1` / `@mui/x-data-grid-pro@v5.5.1`
187
+
188
+ - [DataGrid] Add `debounceMs` option to `setEditCellValue` method (#3825) @m4theushw
189
+ - [DataGrid] Allow to translate `checkboxSelection` labels (#3846) @m4theushw
190
+ - [DataGrid] Customize the filter panel with props (#3497) @alexfauquette
191
+ - [DataGrid] Fix filtering of string columns for `value = 0` (#3843) @flaviendelangle
192
+ - [DataGrid] Fix focus when `blur` event rerenders the grid (#3718) @alexfauquette
193
+ - [DataGridPro] Add clear error when the tree data has duplicated paths (#3840) @flaviendelangle
194
+ - [DataGridPro] Avoid imports from `@mui/base` (#3903) @cherniavskii
195
+ - [DataGridPro] Register column pinning after selection (#3887) @m4theushw
196
+ - [l10n] Improve Turkish (tr-TR) locale (#3842) @atillaaliyev
197
+
198
+ ### Docs
199
+
200
+ - [docs] Update v5 migration docs (#3847) @oliviertassinari
201
+ - [docs] Fix sorting feature link (#3877) @alexfauquette
202
+ - [docs] Migrate content to the new location (#3730) @siriwatknp
203
+ - [docs] Unify multi-filtering introduction with the multi-sorting introduction (#3766) @flaviendelangle
204
+ - [docs] Move row grouping to Premium plan (#3827) @alexfauquette
205
+ - [docs] Reorganize export docs to prepare Excel export doc (#3822) @alexfauquette
206
+
207
+ ### Core
208
+
209
+ - [core] Add hook `useGridPagination` to call `onGridPage` and `onGridPageSize` (#3880) @flaviendelangle
210
+ - [core] Fix docs deploy script (#3874) @oliviertassinari
211
+ - [core] Move the git repository to a new location (#3872) @oliviertassinari
212
+ - [test] Add `codecov` (#3873) @oliviertassinari
213
+
6
214
  ## 5.5.0
7
215
 
8
216
  _Feb 3, 2022_
@@ -13,7 +221,7 @@ A big thanks to the 10 contributors who made this release possible. Here are som
13
221
 
14
222
  <img src="https://user-images.githubusercontent.com/42154031/152379354-47120aac-2b37-4a90-b311-64b4522283b9.gif" width="814">
15
223
 
16
- - 🌍 Add Danish (daDK) locale (#3800) @kasperfilstrup
224
+ - 🌍 Add Danish (da-DK) locale (#3800) @kasperfilstrup
17
225
  - 📚 Documentation improvements
18
226
  - 🐞 Bugfixes
19
227
 
@@ -25,10 +233,10 @@ A big thanks to the 10 contributors who made this release possible. Here are som
25
233
  - [DataGrid] Fix <kbd>PageUp</kbd> jumping directly to the column header skipping the first row (#3761) @cherniavskii
26
234
  - [DataGrid] Throw an error if incorrect column type is used (#3757) @DanailH
27
235
  - [DataGridPro] Add support for master/detail (#3387) @m4theushw
28
- - [l10n] Add Danish (daDK) locale (#3800) @kasperfilstrup
29
- - [l10n] Improve Dutch (nlNL) locale (#3724) @MatthijsKok
30
- - [l10n] Improve Hebrew (heIL) locale (#3775) @ColdAtNight
31
- - [l10n] Improve Russian (ruRU) locale (#3818) @Leniorko
236
+ - [l10n] Add Danish (da-DK) locale (#3800) @kasperfilstrup
237
+ - [l10n] Improve Dutch (nl-NL) locale (#3724) @MatthijsKok
238
+ - [l10n] Improve Hebrew (he-IL) locale (#3775) @ColdAtNight
239
+ - [l10n] Improve Russian (ru-RU) locale (#3818) @Leniorko
32
240
 
33
241
  ### Docs
34
242
 
@@ -94,8 +302,8 @@ A big thanks to the 9 contributors who made this release possible. Here are some
94
302
  - [DataGridPro] Fix grid cell losing focus when scrolling with keyboard (#3667) @cherniavskii
95
303
  - [DataGridPro] Fix missing `styleOverrides` on pinned columns (#3733) @alexfauquette
96
304
  - [DataGridPro] Remove function overloading for `useGridApiRef` (#3666) @flaviendelangle
97
- - [l10n] Improve French (frFR) locale (#3739) @flaviendelangle
98
- - [l10n] Improve Italian (itIT) locale (#3744) @destegabry
305
+ - [l10n] Improve French (fr-FR) locale (#3739) @flaviendelangle
306
+ - [l10n] Improve Italian (it-IT) locale (#3744) @destegabry
99
307
 
100
308
  ### Docs
101
309
 
@@ -110,7 +318,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
110
318
  ### Core
111
319
 
112
320
  - [core] Add ESLint rule to force default export equals to filename in documentation (#3674) @alexfauquette
113
- - [core] Fix `l10n` script not updating `csCZ` locale (#3748) @cherniavskii
321
+ - [core] Fix `l10n` script not updating `cs-CZ` locale (#3748) @cherniavskii
114
322
  - [core] Generate CHANGELOG from GitHub API (#3313) @alexfauquette
115
323
  - [core] Isolate selectors from different grid instances (#3663) @m4theushw
116
324
  - [test] Improve test detection (#3728) @m4theushw
@@ -231,9 +439,9 @@ A big thanks to the 9 contributors who made this release possible. Here are some
231
439
  - [DataGridPro] Keep row children expansion when updating the rows (#3604) @flaviendelangle
232
440
  - [DataGridPro] Keep tree data grouping column width when regenerating the columns (#3603) @flaviendelangle
233
441
  - [DataGridPremium] Allow to group rows based on column value (#3277) @flaviendelangle
234
- - [l10n] Improve Finnish (fiFI) locale (#3621) @MijMa
235
- - [l10n] Improve Ukrainian (ukUA) locale (#3586) @Neonin
236
- - [l10n] Improve Czech (csCZ) and Slovak (skSK) locale (#3678) @Haaxor1689
442
+ - [l10n] Improve Finnish (fi-FI) locale (#3621) @MijMa
443
+ - [l10n] Improve Ukrainian (uk-UA) locale (#3586) @Neonin
444
+ - [l10n] Improve Czech (cs-CZ) and Slovak (sk-SK) locale (#3678) @Haaxor1689
237
445
 
238
446
  ### Docs
239
447
 
@@ -273,7 +481,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
273
481
  - ⚡ Add support for column-based `sortingOrder` with the new `sortingOrder` option in `GridColDef` (#3449) @Quppa
274
482
  - ✨ Allow to initialize the `page` and `pageSize` without controlling them with the `initialState` prop (#3495) @flaviendelangle
275
483
  - 🙈 Allow to precisely control which children rows to expand with the new `isGroupExpandedByDefault` prop (#3444) @flaviendelangle
276
- - 🌍 Add Finnish (fiFI) locale (#3485) @kurkle
484
+ - 🌍 Add Finnish (fi-FI) locale (#3485) @kurkle
277
485
  - 📚 Documentation improvements
278
486
  - 🐞 Bugfixes
279
487
 
@@ -295,10 +503,10 @@ A big thanks to the 9 contributors who made this release possible. Here are some
295
503
  - [DataGridPro] Expose the field of the tree data grouping column as a constant (#3549) @flaviendelangle
296
504
  - [DataGridPro] Fix resizing of right pinned columns (#3502) @m4theushw
297
505
  - [DataGridPro] Add new prop `isGroupExpandedByDefault` (#3444) @flaviendelangle
298
- - [l10n] Add Finnish (fiFI) locale (#3485) @kurkle
299
- - [l10n] Improve French (frFR) locale (#3494) @Zenoo
300
- - [l10n] Improve Italian (itIT) locale (#3452) @destegabry
301
- - [l10n] Improve Vietnamese (viVN) locale (#3493) @hckhanh
506
+ - [l10n] Add Finnish (fi-FI) locale (#3485) @kurkle
507
+ - [l10n] Improve French (fr-FR) locale (#3494) @Zenoo
508
+ - [l10n] Improve Italian (it-IT) locale (#3452) @destegabry
509
+ - [l10n] Improve Vietnamese (vi-VN) locale (#3493) @hckhanh
302
510
 
303
511
  ### Docs
304
512
 
@@ -336,9 +544,9 @@ A big thanks to the 8 contributors who made this release possible. Here are some
336
544
  - [DataGrid] Fire change event when the state changes, instead of when the prop changes (#3388) @flaviendelangle
337
545
  - [DataGrid] Unsubscribe event listeners registered in uncommitted renders (#3310) @m4theushw
338
546
  - [DataGrid] Rework state update methods and deprecate `useGridApi` and `useGridState` (#3325) @flaviendelangle
339
- - [l10n] Improve German (deDE) locale (#3430) @sebastianfrey
340
- - [l10n] Improve Hebrew (heIL) locale (#3445) @ColdAtNight
341
- - [l10n] Improve Dutch (nlNL) locale (#3429) @jaapjr
547
+ - [l10n] Improve German (de-DE) locale (#3430) @sebastianfrey
548
+ - [l10n] Improve Hebrew (he-IL) locale (#3445) @ColdAtNight
549
+ - [l10n] Improve Dutch (nl-NL) locale (#3429) @jaapjr
342
550
 
343
551
  ### Docs
344
552
 
@@ -472,7 +680,7 @@ A big thanks to the 11 contributors who made this release possible. Here are som
472
680
 
473
681
  - 🌎 Translation updates for many locales
474
682
 
475
- If you are using DataGrid or DataGridPro in another language, check [this issue](https://github.com/mui-org/material-ui-x/issues/3211) to discover which translations are missing.
683
+ 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.
476
684
 
477
685
  - 📚 Documentation improvements
478
686
  - 🐞 Bugfixes
@@ -491,11 +699,11 @@ A big thanks to the 11 contributors who made this release possible. Here are som
491
699
  - [DataGrid] Prepare the tree structure for grouping sorting / filtering (#3301) @flaviendelangle
492
700
  - [DataGrid] Rework keyboard navigation (#3193) @flaviendelangle
493
701
  - [DataGrid] Set minimum dimensions to `GridOverlay` when no row is provided (#3261) @flaviendelangle
494
- - [DataGrid] Improve German (deDE) locale (#3271, #3230, #3293) @sebastianfrey
495
- - [DataGrid] Improve Hebrew (heIL) locale (#3294) @ColdAtNight
496
- - [DataGrid] Improve Russian (ruRU) locale (#3290, #3288) @Alim-El
497
- - [DataGrid] Improve Korean (koKR) locale (#3232, #3273) @zzossig
498
- - [DataGrid] Improve Greek (elGR) locale (#3169) @clytras
702
+ - [DataGrid] Improve German (de-DE) locale (#3271, #3230, #3293) @sebastianfrey
703
+ - [DataGrid] Improve Hebrew (he-IL) locale (#3294) @ColdAtNight
704
+ - [DataGrid] Improve Russian (ru-RU) locale (#3290, #3288) @Alim-El
705
+ - [DataGrid] Improve Korean (ko-KR) locale (#3232, #3273) @zzossig
706
+ - [DataGrid] Improve Greek (el-GR) locale (#3169) @clytras
499
707
 
500
708
  ### Core
501
709
 
@@ -609,7 +817,7 @@ A big thanks to the 7 contributors who made this release possible. Here are some
609
817
 
610
818
  - [DataGrid] The `props.components.Checkbox` and `props.componentsProps.checkbox` props were renamed to `props.components.BaseCheckbox` and `props.componentsProps.baseCheckbox` respectively.
611
819
 
612
- As a first step for [#3066](https://github.com/mui-org/material-ui-x/issues/3066), these slots were renamed to clearly indicate that they are meant to replace a core component.
820
+ 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.
613
821
 
614
822
  ```diff
615
823
  <DataGrid
@@ -668,7 +876,7 @@ A big thanks to the 7 contributors who made this release possible. Here are some
668
876
  _Nov 4, 2021_
669
877
 
670
878
  - 💅 Reduce styles specificity to make simpler to override (#3012) @DanailH
671
- - 🌍 Add Hebrew (heIL) locale (#3028) @ColdAtNight
879
+ - 🌍 Add Hebrew (he-IL) locale (#3028) @ColdAtNight
672
880
  - 📚 Documentation improvements
673
881
  - 🐞 Bugfixes
674
882
 
@@ -705,7 +913,7 @@ _Nov 4, 2021_
705
913
 
706
914
  #### Changes
707
915
 
708
- - [DataGrid] Add Hebrew (heIL) locale (#3028) @ColdAtNight
916
+ - [DataGrid] Add Hebrew (he-IL) locale (#3028) @ColdAtNight
709
917
  - [DataGrid] Move virtualization logic to hook (#3079) @m4theushw
710
918
  - [DataGrid] Revert year change in the MIT license (#3059) @oliviertassinari
711
919
  - [DataGrid] Fix filtering of nullish numeric cells (#3070) @flaviendelangle
@@ -1159,7 +1367,7 @@ _Oct 7, 2021_
1159
1367
 
1160
1368
  A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
1161
1369
 
1162
- - 🌎 Add Persian (faIR) locale (#2712) @devlifeX
1370
+ - 🌎 Add Persian (fa-IR) locale (#2712) @devlifeX
1163
1371
  - 🎁 Allow to select range of rows with Shift + click (#2456) @flaviendelangle
1164
1372
  - 🚀 Allow to throttle the row updates with the `throttleRowsMs` prop on `DataGridPro` and remove the default 100ms row update delay (#2561) @flaviendelangle
1165
1373
  - 💡 Enhance internal code structure
@@ -1191,7 +1399,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
1191
1399
 
1192
1400
  #### Changes
1193
1401
 
1194
- - [DataGrid] Add Persian (faIR) locale (#2712) @devlifeX
1402
+ - [DataGrid] Add Persian (fa-IR) locale (#2712) @devlifeX
1195
1403
  - [DataGrid] Allow to select range of rows using Shift + click (#2456) @flaviendelangle
1196
1404
  - [DataGrid] Fix numeric column filter to not run when value is empty (#2780) @m4theushw
1197
1405
  - [DataGrid] Export `singleSelect` operators (#2666) @jeremyalan
@@ -1231,8 +1439,8 @@ _Sep 24, 2021_
1231
1439
 
1232
1440
  A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
1233
1441
 
1234
- - 🇻🇳 Add Vietnamese (viVN) locale (#2668) @tuananh281098
1235
- - 🇵🇱 Improve Polish (plPL) locale (#2632) @michallukowski
1442
+ - 🇻🇳 Add Vietnamese (vi-VN) locale (#2668) @tuananh281098
1443
+ - 🇵🇱 Improve Polish (pl-PL) locale (#2632) @michallukowski
1236
1444
  - ⚡️ Apply the `valueFormatter` to the `singleSelect` column type (#2581) @DanailH
1237
1445
 
1238
1446
  ### `@mui/x-data-grid@v5.0.0-beta.2` / `@mui/x-data-grid-pro@v5.0.0-beta.2`
@@ -1264,10 +1472,10 @@ A big thanks to the 5 contributors who made this release possible. Here are some
1264
1472
 
1265
1473
  #### Changes
1266
1474
 
1267
- - [DataGrid] Add Vietnamese (viVN) locale (#2668) @tuananh281098
1475
+ - [DataGrid] Add Vietnamese (vi-VN) locale (#2668) @tuananh281098
1268
1476
  - [DataGrid] Apply the `valueFormatter` to `singleSelect` select options (#2581) @DanailH
1269
1477
  - [DataGrid] Free up column header space when icons are not visible (#2606) @DanailH
1270
- - [DataGrid] Improve Polish (plPL) locale (#2632) @michallukowski
1478
+ - [DataGrid] Improve Polish (pl-PL) locale (#2632) @michallukowski
1271
1479
 
1272
1480
  ### Docs
1273
1481
 
@@ -1380,7 +1588,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
1380
1588
  - [DataGrid] Fix TypeScript type error for toolbar components (#2393) @ZeeshanTamboli
1381
1589
  - [DataGrid] Fix navigation between column headers with rows filtered (#2440) @m4theushw
1382
1590
  - [DataGrid] Force `scrollEndThreshold` to undefined (#2574) @flaviendelangle
1383
- - [DataGrid] Improve jaJP localization (#2502) @daikiojm
1591
+ - [DataGrid] Improve ja-JP localization (#2502) @daikiojm
1384
1592
  - [DataGrid] Make `hideFooterRowCount` prop available only for DataGridPro (#2564) @ZeeshanTamboli
1385
1593
  - [DataGrid] Fix a bug where pressing <kbd>Escape</kbd> was not closing the `GridColumnHeaderMenu` (#2463) @DanailH
1386
1594
  - [DataGrid] Prevent scroll when selecting rows (#2558) @m4theushw
@@ -1434,9 +1642,9 @@ _Aug 27, 2021_
1434
1642
 
1435
1643
  🎉 This is the first stable release of the data grid component 🎉!
1436
1644
 
1437
- We have been iterating on the component for [18 months](https://github.com/mui-org/material-ui-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.
1645
+ 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.
1438
1646
 
1439
- The MUI X v4.0.0 release supports [MUI Core](https://github.com/mui-org/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).
1647
+ 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).
1440
1648
  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.
1441
1649
 
1442
1650
  A big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
@@ -1447,7 +1655,7 @@ A big thanks to the 6 contributors who made this release possible. Here are some
1447
1655
 
1448
1656
  - ⚡️ Rename the `XGrid` component to `DataGridPro` (#2382) @m4theushw
1449
1657
 
1450
- This should help clarify the products vs. plans separation. [MUI X](https://github.com/mui-org/material-ui-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.
1658
+ 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.
1451
1659
  The Pro suffix should help make it clear what's MIT and what's not.
1452
1660
 
1453
1661
  - ✨ Rename the `@material-ui` npm scope to `@mui` (#2341) @oliviertassinari
@@ -1529,7 +1737,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
1529
1737
  - 🐞 Fix a regression to not require @material-ui/x-license when using the DataGrid (#2295) @oliviertassinari
1530
1738
  - 👁️ Add `onViewportRowsChange` prop for `XGrid` only (#2038) @DanailH
1531
1739
  - 📃 Translate booleans when exporting rows to CSV (#2296) @m4theushw
1532
- - 🌎 Add Sudanese Arabic (arSD) locale (#2269) @YassinHussein
1740
+ - 🌎 Add Sudanese Arabic (ar-SD) locale (#2269) @YassinHussein
1533
1741
 
1534
1742
  This is the last alpha release. We are moving to beta in the next release, next week.
1535
1743
 
@@ -1550,7 +1758,7 @@ This is the last alpha release. We are moving to beta in the next release, next
1550
1758
  #### Changes
1551
1759
 
1552
1760
  - [DataGrid] Add @material-ui/styles as peer dependency (#2288) @m4theushw
1553
- - [DataGrid] Add Sudanese Arabic (arSD) locale (#2269) @YassinHussein
1761
+ - [DataGrid] Add Sudanese Arabic (ar-SD) locale (#2269) @YassinHussein
1554
1762
  - [DataGrid] Add \"is empty\" and \"is not empty\" filter operators to date and number columns (#2274) @flaviendelangle
1555
1763
  - [DataGrid] Avoid crash if `valueOptions` is missing in the `GridColDef` when using `singleSelect` (#2276) @DanailH
1556
1764
  - [DataGrid] Remove the use of the `autoFocus` attribute (#2239) @m4theushw
@@ -1645,7 +1853,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
1645
1853
  - [DataGrid] Canonical controlled state behavior (#2208) @oliviertassinari
1646
1854
  - [DataGrid] Fix filter with extended columns (#2246) @m4theushw
1647
1855
  - [DataGrid] Remove default value of columnTypes prop (#2280) @m4theushw
1648
- - [DataGrid] Add German (deDE) translation for export and isEmpty operator (#2285) @ChristopherBussick
1856
+ - [DataGrid] Add German (de-DE) translation for export and isEmpty operator (#2285) @ChristopherBussick
1649
1857
  - [XGrid] Add `details` param to each callback option in `XGrid` (#2236) @DanailH
1650
1858
 
1651
1859
  ### Docs
@@ -1750,7 +1958,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
1750
1958
  - [test] Sync Karma config (#2191) @m4theushw
1751
1959
  - [test] Test support for theme translations (#2229) @m4theushw
1752
1960
 
1753
- ## [4.0.0-alpha.34](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.33...v4.0.0-alpha.34)
1961
+ ## [4.0.0-alpha.34](https://github.com/mui/mui-x/compare/v4.0.0-alpha.33...v4.0.0-alpha.34)
1754
1962
 
1755
1963
  _July 21, 2021_
1756
1964
 
@@ -1873,7 +2081,7 @@ Big thanks to the 11 contributors who made this release possible. Here are some
1873
2081
  - [DataGrid] Add \"is empty\" and \"is not empty\" operators (#1997) @m4theushw
1874
2082
  - [DataGrid] Add `minWidth` to `GridColDef` (#2101) @DanailH
1875
2083
  - [DataGrid] Add missing localeText types (#2118) @oliviertassinari
1876
- - [DataGrid] Add missing translations to French (frFR) locale (#2082) @flaviendelangle
2084
+ - [DataGrid] Add missing translations to French (fr-FR) locale (#2082) @flaviendelangle
1877
2085
  - [DataGrid] Add quick filter demo (#2149) @dtassone
1878
2086
  - [DataGrid] Allow passing styles and Popper props to GridPanel (#1994) @sebastianfrey
1879
2087
  - [DataGrid] Allow to customize the columns exported as CSV (#2008) @flaviendelangle
@@ -1931,7 +2139,7 @@ Big thanks to the 11 contributors who made this release possible. Here are some
1931
2139
  - [test] Remove orphan async @oliviertassinari
1932
2140
  - [test] Test the validation before saving a value (#2087) @m4theushw
1933
2141
 
1934
- ## [4.0.0-alpha.33](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.32...v4.0.0-alpha.33)
2142
+ ## [4.0.0-alpha.33](https://github.com/mui/mui-x/compare/v4.0.0-alpha.32...v4.0.0-alpha.33)
1935
2143
 
1936
2144
  _July 1, 2021_
1937
2145
 
@@ -2019,7 +2227,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
2019
2227
  - [core] Name variables according to enUS instead of enGB (#1988) @flaviendelangle
2020
2228
  - [test] Test vertical scrollbar (#1932) @oliviertassinari
2021
2229
 
2022
- ## [4.0.0-alpha.32](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.31...v4.0.0-alpha.32)
2230
+ ## [4.0.0-alpha.32](https://github.com/mui/mui-x/compare/v4.0.0-alpha.31...v4.0.0-alpha.32)
2023
2231
 
2024
2232
  _June 18, 2021_
2025
2233
 
@@ -2108,8 +2316,8 @@ Big thanks to the 10 contributors who made this release possible. Here are some
2108
2316
  - [DataGrid] Allow to set the delimiter in `GridExportCsvOptions` (#1859) @michallukowski
2109
2317
  - [DataGrid] Escape regular expression characters in filters (#1899) @ZeeshanTamboli
2110
2318
  - [DataGrid] Fix support for `getRowId` on cell editing (#1917) @m4theushw
2111
- - [DataGrid] Fix typo in French (frFR) locale (#1874) @julien-guillon
2112
- - [DataGrid] Improve Brazilian Portuguese (ptBR) locale (#1861) @aline-matos
2319
+ - [DataGrid] Fix typo in French (fr-FR) locale (#1874) @julien-guillon
2320
+ - [DataGrid] Improve Brazilian Portuguese (pt-BR) locale (#1861) @aline-matos
2113
2321
  - [DataGrid] Improve type of the blur event (#1918) @oliviertassinari
2114
2322
  - [DataGrid] Improve updateRows performance (#1923) @N2D4
2115
2323
  - [DataGrid] Include Material-UI core component localizations in `localeText` (#1913) @DanailH
@@ -2131,7 +2339,7 @@ Big thanks to the 10 contributors who made this release possible. Here are some
2131
2339
  - [core] Remove dead logic (#1900) @oliviertassinari
2132
2340
  - [test] Fix tests (#1928) @m4theushw
2133
2341
 
2134
- ## [4.0.0-alpha.31](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.30...v4.0.0-alpha.31)
2342
+ ## [4.0.0-alpha.31](https://github.com/mui/mui-x/compare/v4.0.0-alpha.30...v4.0.0-alpha.31)
2135
2343
 
2136
2344
  _June 9, 2021_
2137
2345
 
@@ -2184,7 +2392,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
2184
2392
  - [core] Add `yarn docs:api` @oliviertassinari
2185
2393
  - [test] Improve pagination tests (#1827) @m4theushw
2186
2394
 
2187
- ## [4.0.0-alpha.30](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.29...v4.0.0-alpha.30)
2395
+ ## [4.0.0-alpha.30](https://github.com/mui/mui-x/compare/v4.0.0-alpha.29...v4.0.0-alpha.30)
2188
2396
 
2189
2397
  _May 31, 2021_
2190
2398
 
@@ -2193,7 +2401,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
2193
2401
  - 💅 Add `getCellClassName` prop (#1687) @m4theushw
2194
2402
  - 🐛 Fix a regression in the controlled pagination (#1729) @ZeeshanTamboli
2195
2403
  - ⚡️ Remove `cellClassRules` from `GridColDef` (#1716) @m4theushw
2196
- - 🇨🇿 Add csCZ locale (#1765) @Haaxor1689
2404
+ - 🇨🇿 Add cs-CZ locale (#1765) @Haaxor1689
2197
2405
  - 🐞 Bugfixes
2198
2406
 
2199
2407
  ### @material-ui/x-grid@v4.0.0-alpha.30 / @material-ui/data-grid@v4.0.0-alpha.30
@@ -2277,12 +2485,12 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
2277
2485
 
2278
2486
  - [DataGrid] Add `getCellClassName` prop (#1687) @m4theushw
2279
2487
  - [DataGrid] Add customizable `aria-label`, `aria-labelledby` field (#1764) @ZeeshanTamboli
2280
- - [DataGrid] Add Czech (csCZ) locale and fix plural rules in Slovak (skSK) locale (#1765) @Haaxor1689
2488
+ - [DataGrid] Add Czech (cs-CZ) locale and fix plural rules in Slovak (sk-SK) locale (#1765) @Haaxor1689
2281
2489
  - [DataGrid] Fix cell accessibility aria-colindex (#1669) @ZeeshanTamboli
2282
2490
  - [DataGrid] Fix changing rows per page size (#1729) @ZeeshanTamboli
2283
2491
  - [DataGrid] Fix date operators not working with date-time values (#1722) @m4theushw
2284
2492
  - [DataGrid] Fix `rowCount` prop updates (#1697) @dtassone
2285
- - [DataGrid] Improve German (deDe) translation of "errorOverlayDefaultLabel" (#1718) @sebastianfrey
2493
+ - [DataGrid] Improve German (de-DE) translation of "errorOverlayDefaultLabel" (#1718) @sebastianfrey
2286
2494
  - [DataGrid] Fix accessibility of the filter panel textboxes (#1727) @m4theushw
2287
2495
  - [XGrid] Fix `onFilterModelChange` not firing (#1706) @dtassone
2288
2496
 
@@ -2302,7 +2510,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
2302
2510
  - [test] Reduce flakiness (#1753) @oliviertassinari
2303
2511
  - [test] Remove skip on Edge (#1708) @m4theushw
2304
2512
 
2305
- ## [4.0.0-alpha.29](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.28...v4.0.0-alpha.29)
2513
+ ## [4.0.0-alpha.29](https://github.com/mui/mui-x/compare/v4.0.0-alpha.28...v4.0.0-alpha.29)
2306
2514
 
2307
2515
  _May 19, 2021_
2308
2516
 
@@ -2379,18 +2587,18 @@ Big thanks to the 11 contributors who made this release possible. Here are some
2379
2587
 
2380
2588
  #### Changes
2381
2589
 
2382
- - [DataGrid] Add Slovak (skSK) locale (#1634) @martinvysnovsky
2590
+ - [DataGrid] Add Slovak (sk-SK) locale (#1634) @martinvysnovsky
2383
2591
  - [DataGrid] Add `columnHeader`, `row` and `cell` in addition to `root` in classes prop (#1660) @DanailH
2384
2592
  - [DataGrid] Add `isRowSelectable` prop (#1659) @m4theushw
2385
2593
  - [DataGrid] Add sort icon for when column is unsorted (#1415) @m4theushw
2386
2594
  - [DataGrid] Fix `id` and `aria-labelledby` attributes on the column menu (#1460) @m4theushw
2387
2595
  - [DataGrid] Fix broken checkbox in Material-UI v5 (#1587) @ZeeshanTamboli
2388
2596
  - [DataGrid] Fix CSS classes prefix (#1693) @m4theushw
2389
- - [DataGrid] Fix German (deDe) locale (#1624) @klinge27
2597
+ - [DataGrid] Fix German (de-DE) locale (#1624) @klinge27
2390
2598
  - [DataGrid] Fix filter with object as value and value getter (#1665) @dtassone
2391
2599
  - [DataGrid] Fix incorrect date selection (#1652) @aTmb405
2392
2600
  - [DataGrid] Fix overflow of maximum page (#1583) @oliviertassinari
2393
- - [DataGrid] Fix typo in Italian (itIT) locale (#1635) @profcav
2601
+ - [DataGrid] Fix typo in Italian (it-IT) locale (#1635) @profcav
2394
2602
  - [DataGrid] Improve performance of width resizing (#1686) @dtassone
2395
2603
  - [DataGrid] Make rows immutable for better developer experience (#1661) @ZeeshanTamboli
2396
2604
  - [DataGrid] Pass state values as props (#1628) @m4theushw
@@ -2419,13 +2627,13 @@ Big thanks to the 11 contributors who made this release possible. Here are some
2419
2627
  - [test] Add constraints on cell render (#1662) @oliviertassinari
2420
2628
  - [test] Catch broken demos (#1692) @oliviertassinari
2421
2629
 
2422
- ## [4.0.0-alpha.28](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.27...v4.0.0-alpha.28)
2630
+ ## [4.0.0-alpha.28](https://github.com/mui/mui-x/compare/v4.0.0-alpha.27...v4.0.0-alpha.28)
2423
2631
 
2424
2632
  _May 10, 2021_
2425
2633
 
2426
2634
  Big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2427
2635
 
2428
- - 🇹🇷 Add trTR locale (#1446) @simsek97
2636
+ - 🇹🇷 Add tr-TR locale (#1446) @simsek97
2429
2637
  - 🎁 Add support for checkbox component slot (#1528) @ZeeshanTamboli
2430
2638
  - ⚡️ Add `onColumnVisibilityChange` prop (#1578) @DanailH
2431
2639
  - 🐞 Bugfixes
@@ -2450,7 +2658,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
2450
2658
 
2451
2659
  #### Changes
2452
2660
 
2453
- - [DataGrid] Add Turkish (trTR) locale (#1526) @simsek97
2661
+ - [DataGrid] Add Turkish (tr-TR) locale (#1526) @simsek97
2454
2662
  - [DataGrid] Add `onColumnVisibilityChange` prop (#1578) @DanailH
2455
2663
  - [DataGrid] Fix date input crash (#1570) @dtassone
2456
2664
  - [DataGrid] Fix resulted filter data shows blank screen during pagination (#1571) @ZeeshanTamboli
@@ -2473,7 +2681,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
2473
2681
  - [core] Update monorepo (#1530) @oliviertassinari
2474
2682
  - [core] Increase timeout on jsdom (#1532) @oliviertassinari
2475
2683
 
2476
- ## [4.0.0-alpha.27](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.26...v4.0.0-alpha.27)
2684
+ ## [4.0.0-alpha.27](https://github.com/mui/mui-x/compare/v4.0.0-alpha.26...v4.0.0-alpha.27)
2477
2685
 
2478
2686
  _Apr 30, 2021_
2479
2687
 
@@ -2482,8 +2690,8 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
2482
2690
  - 🎁 Add getRowClassName prop (#1448) @m4theushw
2483
2691
  - ⚡️ Drop support for Node v10 (#1499) @ZeeshanTamboli
2484
2692
  - ♿ Make checkbox focusable (#1421) @dtassone
2485
- - 🇮🇹 Add itIT locale (#1446) @profcav
2486
- - 🇷🇺 Add ruRU locale (#1449) @Lukin
2693
+ - 🇮🇹 Add it-IT locale (#1446) @profcav
2694
+ - 🇷🇺 Add ru-RU locale (#1449) @Lukin
2487
2695
  - 🐞 Bugfixes
2488
2696
 
2489
2697
  ### @material-ui/x-grid@v4.0.0-alpha.27 / @material-ui/data-grid@v4.0.0-alpha.27
@@ -2521,12 +2729,12 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
2521
2729
 
2522
2730
  #### Changes
2523
2731
 
2524
- - [DataGrid] Add Italian (itIT) locale (#1446) @profcav
2525
- - [DataGrid] Add Russian (ruRU) locale (#1449) @Lukin
2732
+ - [DataGrid] Add Italian (it-IT) locale (#1446) @profcav
2733
+ - [DataGrid] Add Russian (ru-RU) locale (#1449) @Lukin
2526
2734
  - [DataGrid] Add getRowClassName prop (#1448) @m4theushw
2527
2735
  - [DataGrid] Add support for `classes` prop (#1450) @ZeeshanTamboli
2528
2736
  - [DataGrid] Allow to customize the overlay when there're no filtered rows (#1445) @m4theushw
2529
- - [DataGrid] Correct quantities plPL (#1487) @Chriserus
2737
+ - [DataGrid] Correct quantities pl-PL (#1487) @Chriserus
2530
2738
  - [DataGrid] Fix autoPageSize with small dataset (#1505) @dtassone
2531
2739
  - [DataGrid] Fix delete key for uneditable cells (#1497) @dtassone
2532
2740
  - [DataGrid] Fix invalid translation key (#1504) @DanailH
@@ -2552,7 +2760,7 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
2552
2760
  - [test] Remove jest (#1467) @dependabot-preview
2553
2761
  - [test] Run more tests in jsdom (#1361) @oliviertassinari
2554
2762
 
2555
- ## [4.0.0-alpha.26](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.25...v4.0.0-alpha.26)
2763
+ ## [4.0.0-alpha.26](https://github.com/mui/mui-x/compare/v4.0.0-alpha.25...v4.0.0-alpha.26)
2556
2764
 
2557
2765
  _Apr 22, 2021_
2558
2766
 
@@ -2569,7 +2777,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2569
2777
  ### @material-ui/x-grid@v4.0.0-alpha.26 / @material-ui/data-grid@v4.0.0-alpha.26
2570
2778
 
2571
2779
  - [DataGrid] Add support for Editable cells (#1287) @dtassone
2572
- - [DataGrid] Add Ukrainian (ukUA) locale (#1418) @Neonin
2780
+ - [DataGrid] Add Ukrainian (uk-UA) locale (#1418) @Neonin
2573
2781
  - [DataGrid] Fix 'Hide' menu item with `disableColumnSelector` (#1429) @ZeeshanTamboli
2574
2782
  - [DataGrid] Fix reset of virtualPage (#1451) @dtassone
2575
2783
  - [DataGrid] Fix support for falsy value from valueFormatter (#1425) @zj9495
@@ -2589,7 +2797,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2589
2797
 
2590
2798
  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.
2591
2799
 
2592
- ## [4.0.0-alpha.25](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.24...v4.0.0-alpha.25)
2800
+ ## [4.0.0-alpha.25](https://github.com/mui/mui-x/compare/v4.0.0-alpha.24...v4.0.0-alpha.25)
2593
2801
 
2594
2802
  _Apr 14, 2021_
2595
2803
 
@@ -2665,16 +2873,16 @@ export interface GridFilterModelParams {
2665
2873
  - [core] Variable convention (#1397) @oliviertassinari
2666
2874
  - [license] Use a global storage rather than a module singleton (#1384) @oliviertassinari
2667
2875
 
2668
- ## [4.0.0-alpha.24](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.23...v4.0.0-alpha.24)
2876
+ ## [4.0.0-alpha.24](https://github.com/mui/mui-x/compare/v4.0.0-alpha.23...v4.0.0-alpha.24)
2669
2877
 
2670
2878
  _Apr 2, 2021_
2671
2879
 
2672
2880
  Big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
2673
2881
 
2674
- - 🇬🇷 Add elGR locale (#1275) @clytras
2675
- - 🇪🇸 Add esES locale (#1286) @WiXSL
2676
- - 🇯🇵 Add jaJP locale (#1283) @seed-of-apricot
2677
- - 🇳🇱 Add nlNL locale (#1273) @wimdetroyer
2882
+ - 🇬🇷 Add el-GR locale (#1275) @clytras
2883
+ - 🇪🇸 Add es-ES locale (#1286) @WiXSL
2884
+ - 🇯🇵 Add ja-JP locale (#1283) @seed-of-apricot
2885
+ - 🇳🇱 Add nl-NL locale (#1273) @wimdetroyer
2678
2886
  - 🐞 Bugfixes
2679
2887
 
2680
2888
  ### @material-ui/x-grid@v4.0.0-alpha.24 / @material-ui/data-grid@v4.0.0-alpha.24
@@ -2704,7 +2912,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
2704
2912
 
2705
2913
  - [core] Batch small changes (#1310) @oliviertassinari
2706
2914
 
2707
- ## [4.0.0-alpha.23](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.22...v4.0.0-alpha.23)
2915
+ ## [4.0.0-alpha.23](https://github.com/mui/mui-x/compare/v4.0.0-alpha.22...v4.0.0-alpha.23)
2708
2916
 
2709
2917
  _Mar 22, 2021_
2710
2918
 
@@ -2716,13 +2924,13 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2716
2924
  See the documentation for [more details](https://mui.com/components/data-grid/rows/#infinite-loading).
2717
2925
 
2718
2926
  - 🕹 Provide the ability to sort by multiple columns using Shift+click (#1203) @dtassone
2719
- - 🇵🇱 Added plPL locale (#1117) @LarsKumbier
2927
+ - 🇵🇱 Added pl-PL locale (#1117) @LarsKumbier
2720
2928
  - ⚡️ Edit cell accessibility (#1205) @dtassone
2721
2929
  - 🐞 Bugfixes
2722
2930
 
2723
2931
  ### @material-ui/x-grid@v4.0.0-alpha.23 / @material-ui/data-grid@v4.0.0-alpha.23
2724
2932
 
2725
- - [DataGrid] Add plPL locale (#1274) @michallukowski
2933
+ - [DataGrid] Add pl-PL locale (#1274) @michallukowski
2726
2934
  - [DataGrid] Add onRowsScrollEnd to support infinite loading (#1199) @DanailH
2727
2935
  - [DataGrid] Edit Cell Navigation (#1205) @dtassone
2728
2936
  - [DataGrid] Fix Popper z-index (#1240) @m4theushw
@@ -2742,7 +2950,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2742
2950
  - [core] No top-level imports (#1257) @oliviertassinari
2743
2951
  - [core] Remove dead code (#1259) @oliviertassinari
2744
2952
 
2745
- ## [4.0.0-alpha.22](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.21...v4.0.0-alpha.22)
2953
+ ## [4.0.0-alpha.22](https://github.com/mui/mui-x/compare/v4.0.0-alpha.21...v4.0.0-alpha.22)
2746
2954
 
2747
2955
  _Mar 9, 2021_
2748
2956
 
@@ -2750,13 +2958,13 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
2750
2958
 
2751
2959
  - 🎁 Implement base foundation for editing a cell (#1025) @dtassone.
2752
2960
  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.
2753
- - 🇩🇪 Added deDE locale (#1117) @LarsKumbier
2961
+ - 🇩🇪 Added de-DE locale (#1117) @LarsKumbier
2754
2962
  - 📜 Fix scrollbar related issue (#1146) @dtassone
2755
2963
  - 🐛 Handle commas in cell values when doing CSV export (#1154) @DanailH
2756
2964
 
2757
2965
  ### @material-ui/x-grid@v4.0.0-alpha.22 / @material-ui/data-grid@v4.0.0-alpha.22
2758
2966
 
2759
- - [DataGrid] Add deDE locale (#1117) @LarsKumbier
2967
+ - [DataGrid] Add de-DE locale (#1117) @LarsKumbier
2760
2968
  - [DataGrid] Fix scrollbar on autopageSize (#1146) @dtassone
2761
2969
  - [DataGrid] Fix handling of special chars when doing CSV export (#1154) @DanailH
2762
2970
  - [DataGrid] Implement base foundation for editing a cell (#1025) @dtassone
@@ -2776,7 +2984,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
2776
2984
  - [core] Output warnings in the rendered components (#1153) @oliviertassinari
2777
2985
  - [core] Update to the HEAD of the monorepo (#1138) @oliviertassinari
2778
2986
 
2779
- ## [4.0.0-alpha.21](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.20...v4.0.0-alpha.21)
2987
+ ## [4.0.0-alpha.21](https://github.com/mui/mui-x/compare/v4.0.0-alpha.20...v4.0.0-alpha.21)
2780
2988
 
2781
2989
  _Feb 27, 2021_
2782
2990
 
@@ -2797,13 +3005,13 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2797
3005
  - [DataGrid] Prefix all public API to fit into the global Material-UI namespace (#1069) @DanailH
2798
3006
  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.
2799
3007
 
2800
- 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-org/material-ui-x/pull/1069).
3008
+ 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).
2801
3009
 
2802
3010
  #### Changes
2803
3011
 
2804
- - [DataGrid] Add frFR locale (#1079) @oliviertassinari
3012
+ - [DataGrid] Add fr-FR locale (#1079) @oliviertassinari
2805
3013
  - [DataGrid] Add missing TablePagination localizations (#1109) @DanailH
2806
- - [DataGrid] Add ptBR locale (#1077) @erikian
3014
+ - [DataGrid] Add pt-BR locale (#1077) @erikian
2807
3015
  - [DataGrid] Fix checked checkbox when empty rows (#1068) @bigandy
2808
3016
  - [DataGrid] Fix issue with visible rows state (#1113) @dtassone
2809
3017
  - [DataGrid] Fix last row (#1071) @dtassone
@@ -2829,7 +3037,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2829
3037
  - [test] Improve BrowserStack configuration (#1100) @oliviertassinari
2830
3038
  - [test] Speed-up rebuild in Karma (#1064) @oliviertassinari
2831
3039
 
2832
- ## [4.0.0-alpha.20](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.19...v4.0.0-alpha.20)
3040
+ ## [4.0.0-alpha.20](https://github.com/mui/mui-x/compare/v4.0.0-alpha.19...v4.0.0-alpha.20)
2833
3041
 
2834
3042
  _Feb 17, 2021_
2835
3043
 
@@ -2891,7 +3099,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
2891
3099
 
2892
3100
  #### Changes
2893
3101
 
2894
- - [DataGrid] Add bgBG locale (#983) @DanailH
3102
+ - [DataGrid] Add bg-BG locale (#983) @DanailH
2895
3103
  - [DataGrid] Add last of the missing translations (#1033) @DanailH
2896
3104
  - [DataGrid] Add support for default props from theme (#1019) @DanailH
2897
3105
  - [DataGrid] Fix controllable filters and select all rows with filters (#1020) @dtassone
@@ -2918,7 +3126,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
2918
3126
  - [test] Increase yarn timeout (#1023) @oliviertassinari
2919
3127
  - [test] Link CircleCI URL in BS (#1060) @oliviertassinari
2920
3128
 
2921
- ## [4.0.0-alpha.19](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.18...v4.0.0-alpha.19)
3129
+ ## [4.0.0-alpha.19](https://github.com/mui/mui-x/compare/v4.0.0-alpha.18...v4.0.0-alpha.19)
2922
3130
 
2923
3131
  _Feb 5, 2021_
2924
3132
 
@@ -2961,7 +3169,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
2961
3169
  - [core] Improve prop-types handling (#978) @oliviertassinari
2962
3170
  - [core] Investigate bundle size (#954) @oliviertassinari
2963
3171
 
2964
- ## [4.0.0-alpha.18](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.17...v4.0.0-alpha.18)
3172
+ ## [4.0.0-alpha.18](https://github.com/mui/mui-x/compare/v4.0.0-alpha.17...v4.0.0-alpha.18)
2965
3173
 
2966
3174
  _Jan 26, 2021_
2967
3175
 
@@ -2974,7 +3182,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
2974
3182
  The first prop allows to swapping specific components used in slots the grid, like the checkboxes.
2975
3183
  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.
2976
3184
 
2977
- See the [RFC](https://github.com/mui-org/material-ui/issues/21453) for more details.
3185
+ See the [RFC](https://github.com/mui/material-ui/issues/21453) for more details.
2978
3186
 
2979
3187
  - 🐛 Polish existing features, fix 3 issues.
2980
3188
 
@@ -3048,7 +3256,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
3048
3256
  - [core] Replace commander with yargs (#872) @dependabot-preview
3049
3257
  - [core] Update monorepo (#884) @oliviertassinari
3050
3258
 
3051
- ## [4.0.0-alpha.17](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.15...v4.0.0-alpha.17)
3259
+ ## [4.0.0-alpha.17](https://github.com/mui/mui-x/compare/v4.0.0-alpha.15...v4.0.0-alpha.17)
3052
3260
 
3053
3261
  _Jan 14, 2021_
3054
3262
 
@@ -3078,7 +3286,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
3078
3286
 
3079
3287
  - [core] Add tests for Column selector feature (#845) @DanailH
3080
3288
 
3081
- ## [4.0.0-alpha.15](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.14...v4.0.0-alpha.15)
3289
+ ## [4.0.0-alpha.15](https://github.com/mui/mui-x/compare/v4.0.0-alpha.14...v4.0.0-alpha.15)
3082
3290
 
3083
3291
  _Jan 7, 2021_
3084
3292
 
@@ -3101,7 +3309,7 @@ Big thanks to the 2 contributors who made this release possible. Here are some h
3101
3309
  - [core] Batch small changes (#800) @oliviertassinari
3102
3310
  - [CHANGELOG] Use the format of the main repository @oliviertassinari
3103
3311
 
3104
- ## [4.0.0-alpha.14](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.13...v4.0.0-alpha.14)
3312
+ ## [4.0.0-alpha.14](https://github.com/mui/mui-x/compare/v4.0.0-alpha.13...v4.0.0-alpha.14)
3105
3313
 
3106
3314
  _Dec 31, 2020_
3107
3315
 
@@ -3135,7 +3343,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
3135
3343
  - [test] We don't need to wait 100ms (#773) @oliviertassinari
3136
3344
  - [core] Remove useless clone (#757) @oliviertassinari
3137
3345
 
3138
- ## [4.0.0-alpha.13](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.12...v4.0.0-alpha.13)
3346
+ ## [4.0.0-alpha.13](https://github.com/mui/mui-x/compare/v4.0.0-alpha.12...v4.0.0-alpha.13)
3139
3347
 
3140
3348
  _Dec 16, 2020_
3141
3349
 
@@ -3164,7 +3372,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
3164
3372
  - [test] Split data grid tests in multiple files (#722) @dtassone
3165
3373
  - [test] Add tests for DataGrid filtering feature (#715) @dtassone
3166
3374
 
3167
- ## [4.0.0-alpha.12](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.11...v4.0.0-alpha.12)
3375
+ ## [4.0.0-alpha.12](https://github.com/mui/mui-x/compare/v4.0.0-alpha.11...v4.0.0-alpha.12)
3168
3376
 
3169
3377
  _Dec 9, 2020_
3170
3378
 
@@ -3201,7 +3409,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
3201
3409
  - [test] Add regression test (#705) @oliviertassinari
3202
3410
  - [test] Allow running all the tests in strict mode (#684) @oliviertassinari
3203
3411
 
3204
- ## [4.0.0-alpha.11](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.10...v4.0.0-alpha.11)
3412
+ ## [4.0.0-alpha.11](https://github.com/mui/mui-x/compare/v4.0.0-alpha.10...v4.0.0-alpha.11)
3205
3413
 
3206
3414
  _Dec 2, 2020_
3207
3415
 
@@ -3259,7 +3467,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
3259
3467
  - [core] Replace Storybook knobs for args (#601) @tooppaaa
3260
3468
  - [core] Update to Material-UI v4.11.1 (#636) @oliviertassinari
3261
3469
 
3262
- ## [4.0.0-alpha.10](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.9...v4.0.0-alpha.10)
3470
+ ## [4.0.0-alpha.10](https://github.com/mui/mui-x/compare/v4.0.0-alpha.9...v4.0.0-alpha.10)
3263
3471
 
3264
3472
  _Nov 20, 2020_
3265
3473
 
@@ -3281,7 +3489,7 @@ _Nov 20, 2020_
3281
3489
  - [core] Fix yarn prettier write @oliviertassinari
3282
3490
  - [test] Share karma setup (#576) @oliviertassinari
3283
3491
 
3284
- ## [4.0.0-alpha.9](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.8...v4.0.0-alpha.9)
3492
+ ## [4.0.0-alpha.9](https://github.com/mui/mui-x/compare/v4.0.0-alpha.8...v4.0.0-alpha.9)
3285
3493
 
3286
3494
  _Nov 9, 2020_
3287
3495
 
@@ -3319,7 +3527,7 @@ _Nov 9, 2020_
3319
3527
  - [core] Disable generation of changelogs @oliviertassinari
3320
3528
  - [test] Karma should fail if errors are thrown (#543) @oliviertassinari
3321
3529
 
3322
- ## [4.0.0-alpha.8](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.7...v4.0.0-alpha.8)
3530
+ ## [4.0.0-alpha.8](https://github.com/mui/mui-x/compare/v4.0.0-alpha.7...v4.0.0-alpha.8)
3323
3531
 
3324
3532
  _Oct 23, 2020_
3325
3533
 
@@ -3336,7 +3544,7 @@ _Oct 23, 2020_
3336
3544
  - [core] Remove usage of LESS (#467) @dependabot-preview
3337
3545
  - [core] Update to the latest version of the main repo (#456) @oliviertassinari
3338
3546
 
3339
- ## [4.0.0-alpha.7](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.6...v4.0.0-alpha.7)
3547
+ ## [4.0.0-alpha.7](https://github.com/mui/mui-x/compare/v4.0.0-alpha.6...v4.0.0-alpha.7)
3340
3548
 
3341
3549
  _Oct 19, 2020_
3342
3550
 
@@ -3365,7 +3573,7 @@ _Oct 19, 2020_
3365
3573
  - [test] Add missing types linting for x-grid (#357) @oliviertassinari
3366
3574
  - [test] Run the karma tests in browserstack (#316) @oliviertassinari
3367
3575
 
3368
- ## [4.0.0-alpha.6](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.2...v4.0.0-alpha.6)
3576
+ ## [4.0.0-alpha.6](https://github.com/mui/mui-x/compare/v4.0.0-alpha.2...v4.0.0-alpha.6)
3369
3577
 
3370
3578
  _Sep 25, 2020_
3371
3579
 
@@ -3382,13 +3590,13 @@ _Sep 25, 2020_
3382
3590
  - [docs] Fix layout jump issue (#338) @oliviertassinari
3383
3591
  - [docs] Fix short description warning (#302) @oliviertassinari
3384
3592
 
3385
- ## [4.0.0-alpha.2](https://github.com/mui-org/material-ui-x/compare/v4.0.0-alpha.1...v4.0.0-alpha.2)
3593
+ ## [4.0.0-alpha.2](https://github.com/mui/mui-x/compare/v4.0.0-alpha.1...v4.0.0-alpha.2)
3386
3594
 
3387
3595
  _Sep 18, 2020_
3388
3596
 
3389
3597
  - [DataGrid] Fix wrongly exported types (#298) @dtassone
3390
3598
 
3391
- ## [4.0.0-alpha.1](https://github.com/mui-org/material-ui-x/compare/v0.1.67...v4.0.0-alpha.1)
3599
+ ## [4.0.0-alpha.1](https://github.com/mui/mui-x/compare/v0.1.67...v4.0.0-alpha.1)
3392
3600
 
3393
3601
  _Sep 17, 2020_
3394
3602