@mui/x-data-grid 5.5.0 → 5.5.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,55 @@
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.5.1
7
+
8
+ _Feb 10, 2022_
9
+
10
+ A big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 🎛 Add props to customize the behavior of the filter panel (#3497) @alexfauquette
13
+
14
+ ```tsx
15
+ <DataGrid
16
+ componentsProps={{
17
+ filterPanel: { columnsSort: 'asc' },
18
+ }}
19
+ />
20
+ ```
21
+
22
+ Check the [documentation](https://mui.com/components/data-grid/filtering/#customize-the-filter-panel-content) to see all available props.
23
+
24
+ - 📚 Documentation improvements
25
+ - 🐞 Bugfixes
26
+
27
+ ### `@mui/x-data-grid@v5.5.1` / `@mui/x-data-grid-pro@v5.5.1`
28
+
29
+ - [DataGrid] Add `debounceMs` option to `setEditCellValue` method (#3825) @m4theushw
30
+ - [DataGrid] Allow to translate `checkboxSelection` labels (#3846) @m4theushw
31
+ - [DataGrid] Customize the filter panel with props (#3497) @alexfauquette
32
+ - [DataGrid] Fix filtering of string columns for `value = 0` (#3843) @flaviendelangle
33
+ - [DataGrid] Fix focus when `blur` event rerenders the grid (#3718) @alexfauquette
34
+ - [DataGridPro] Add clear error when the tree data has duplicated paths (#3840) @flaviendelangle
35
+ - [DataGridPro] Avoid imports from `@mui/base` (#3903) @cherniavskii
36
+ - [DataGridPro] Register column pinning after selection (#3887) @m4theushw
37
+ - [l10n] Improve Turkish (tr-TR) locale (#3842) @atillaaliyev
38
+
39
+ ### Docs
40
+
41
+ - [docs] Update v5 migration docs (#3847) @oliviertassinari
42
+ - [docs] Fix sorting feature link (#3877) @alexfauquette
43
+ - [docs] Migrate content to the new location (#3730) @siriwatknp
44
+ - [docs] Unify multi-filtering introduction with the multi-sorting introduction (#3766) @flaviendelangle
45
+ - [docs] Move row grouping to Premium plan (#3827) @alexfauquette
46
+ - [docs] Reorganize export docs to prepare Excel export doc (#3822) @alexfauquette
47
+
48
+ ### Core
49
+
50
+ - [core] Add hook `useGridPagination` to call `onGridPage` and `onGridPageSize` (#3880) @flaviendelangle
51
+ - [core] Fix docs deploy script (#3874) @oliviertassinari
52
+ - [core] Move the git repository to a new location (#3872) @oliviertassinari
53
+ - [test] Add `codecov` (#3873) @oliviertassinari
54
+
6
55
  ## 5.5.0
7
56
 
8
57
  _Feb 3, 2022_
@@ -13,7 +62,7 @@ A big thanks to the 10 contributors who made this release possible. Here are som
13
62
 
14
63
  <img src="https://user-images.githubusercontent.com/42154031/152379354-47120aac-2b37-4a90-b311-64b4522283b9.gif" width="814">
15
64
 
16
- - 🌍 Add Danish (daDK) locale (#3800) @kasperfilstrup
65
+ - 🌍 Add Danish (da-DK) locale (#3800) @kasperfilstrup
17
66
  - 📚 Documentation improvements
18
67
  - 🐞 Bugfixes
19
68
 
@@ -25,10 +74,10 @@ A big thanks to the 10 contributors who made this release possible. Here are som
25
74
  - [DataGrid] Fix <kbd>PageUp</kbd> jumping directly to the column header skipping the first row (#3761) @cherniavskii
26
75
  - [DataGrid] Throw an error if incorrect column type is used (#3757) @DanailH
27
76
  - [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
77
+ - [l10n] Add Danish (da-DK) locale (#3800) @kasperfilstrup
78
+ - [l10n] Improve Dutch (nl-NL) locale (#3724) @MatthijsKok
79
+ - [l10n] Improve Hebrew (he-IL) locale (#3775) @ColdAtNight
80
+ - [l10n] Improve Russian (ru-RU) locale (#3818) @Leniorko
32
81
 
33
82
  ### Docs
34
83
 
@@ -94,8 +143,8 @@ A big thanks to the 9 contributors who made this release possible. Here are some
94
143
  - [DataGridPro] Fix grid cell losing focus when scrolling with keyboard (#3667) @cherniavskii
95
144
  - [DataGridPro] Fix missing `styleOverrides` on pinned columns (#3733) @alexfauquette
96
145
  - [DataGridPro] Remove function overloading for `useGridApiRef` (#3666) @flaviendelangle
97
- - [l10n] Improve French (frFR) locale (#3739) @flaviendelangle
98
- - [l10n] Improve Italian (itIT) locale (#3744) @destegabry
146
+ - [l10n] Improve French (fr-FR) locale (#3739) @flaviendelangle
147
+ - [l10n] Improve Italian (it-IT) locale (#3744) @destegabry
99
148
 
100
149
  ### Docs
101
150
 
@@ -110,7 +159,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
110
159
  ### Core
111
160
 
112
161
  - [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
162
+ - [core] Fix `l10n` script not updating `cs-CZ` locale (#3748) @cherniavskii
114
163
  - [core] Generate CHANGELOG from GitHub API (#3313) @alexfauquette
115
164
  - [core] Isolate selectors from different grid instances (#3663) @m4theushw
116
165
  - [test] Improve test detection (#3728) @m4theushw
@@ -231,9 +280,9 @@ A big thanks to the 9 contributors who made this release possible. Here are some
231
280
  - [DataGridPro] Keep row children expansion when updating the rows (#3604) @flaviendelangle
232
281
  - [DataGridPro] Keep tree data grouping column width when regenerating the columns (#3603) @flaviendelangle
233
282
  - [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
283
+ - [l10n] Improve Finnish (fi-FI) locale (#3621) @MijMa
284
+ - [l10n] Improve Ukrainian (uk-UA) locale (#3586) @Neonin
285
+ - [l10n] Improve Czech (cs-CZ) and Slovak (sk-SK) locale (#3678) @Haaxor1689
237
286
 
238
287
  ### Docs
239
288
 
@@ -273,7 +322,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
273
322
  - ⚡ Add support for column-based `sortingOrder` with the new `sortingOrder` option in `GridColDef` (#3449) @Quppa
274
323
  - ✨ Allow to initialize the `page` and `pageSize` without controlling them with the `initialState` prop (#3495) @flaviendelangle
275
324
  - 🙈 Allow to precisely control which children rows to expand with the new `isGroupExpandedByDefault` prop (#3444) @flaviendelangle
276
- - 🌍 Add Finnish (fiFI) locale (#3485) @kurkle
325
+ - 🌍 Add Finnish (fi-FI) locale (#3485) @kurkle
277
326
  - 📚 Documentation improvements
278
327
  - 🐞 Bugfixes
279
328
 
@@ -295,10 +344,10 @@ A big thanks to the 9 contributors who made this release possible. Here are some
295
344
  - [DataGridPro] Expose the field of the tree data grouping column as a constant (#3549) @flaviendelangle
296
345
  - [DataGridPro] Fix resizing of right pinned columns (#3502) @m4theushw
297
346
  - [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
347
+ - [l10n] Add Finnish (fi-FI) locale (#3485) @kurkle
348
+ - [l10n] Improve French (fr-FR) locale (#3494) @Zenoo
349
+ - [l10n] Improve Italian (it-IT) locale (#3452) @destegabry
350
+ - [l10n] Improve Vietnamese (vi-VN) locale (#3493) @hckhanh
302
351
 
303
352
  ### Docs
304
353
 
@@ -336,9 +385,9 @@ A big thanks to the 8 contributors who made this release possible. Here are some
336
385
  - [DataGrid] Fire change event when the state changes, instead of when the prop changes (#3388) @flaviendelangle
337
386
  - [DataGrid] Unsubscribe event listeners registered in uncommitted renders (#3310) @m4theushw
338
387
  - [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
388
+ - [l10n] Improve German (de-DE) locale (#3430) @sebastianfrey
389
+ - [l10n] Improve Hebrew (he-IL) locale (#3445) @ColdAtNight
390
+ - [l10n] Improve Dutch (nl-NL) locale (#3429) @jaapjr
342
391
 
343
392
  ### Docs
344
393
 
@@ -472,7 +521,7 @@ A big thanks to the 11 contributors who made this release possible. Here are som
472
521
 
473
522
  - 🌎 Translation updates for many locales
474
523
 
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.
524
+ 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
525
 
477
526
  - 📚 Documentation improvements
478
527
  - 🐞 Bugfixes
@@ -491,11 +540,11 @@ A big thanks to the 11 contributors who made this release possible. Here are som
491
540
  - [DataGrid] Prepare the tree structure for grouping sorting / filtering (#3301) @flaviendelangle
492
541
  - [DataGrid] Rework keyboard navigation (#3193) @flaviendelangle
493
542
  - [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
543
+ - [DataGrid] Improve German (de-DE) locale (#3271, #3230, #3293) @sebastianfrey
544
+ - [DataGrid] Improve Hebrew (he-IL) locale (#3294) @ColdAtNight
545
+ - [DataGrid] Improve Russian (ru-RU) locale (#3290, #3288) @Alim-El
546
+ - [DataGrid] Improve Korean (ko-KR) locale (#3232, #3273) @zzossig
547
+ - [DataGrid] Improve Greek (el-GR) locale (#3169) @clytras
499
548
 
500
549
  ### Core
501
550
 
@@ -609,7 +658,7 @@ A big thanks to the 7 contributors who made this release possible. Here are some
609
658
 
610
659
  - [DataGrid] The `props.components.Checkbox` and `props.componentsProps.checkbox` props were renamed to `props.components.BaseCheckbox` and `props.componentsProps.baseCheckbox` respectively.
611
660
 
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.
661
+ 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
662
 
614
663
  ```diff
615
664
  <DataGrid
@@ -668,7 +717,7 @@ A big thanks to the 7 contributors who made this release possible. Here are some
668
717
  _Nov 4, 2021_
669
718
 
670
719
  - 💅 Reduce styles specificity to make simpler to override (#3012) @DanailH
671
- - 🌍 Add Hebrew (heIL) locale (#3028) @ColdAtNight
720
+ - 🌍 Add Hebrew (he-IL) locale (#3028) @ColdAtNight
672
721
  - 📚 Documentation improvements
673
722
  - 🐞 Bugfixes
674
723
 
@@ -705,7 +754,7 @@ _Nov 4, 2021_
705
754
 
706
755
  #### Changes
707
756
 
708
- - [DataGrid] Add Hebrew (heIL) locale (#3028) @ColdAtNight
757
+ - [DataGrid] Add Hebrew (he-IL) locale (#3028) @ColdAtNight
709
758
  - [DataGrid] Move virtualization logic to hook (#3079) @m4theushw
710
759
  - [DataGrid] Revert year change in the MIT license (#3059) @oliviertassinari
711
760
  - [DataGrid] Fix filtering of nullish numeric cells (#3070) @flaviendelangle
@@ -1159,7 +1208,7 @@ _Oct 7, 2021_
1159
1208
 
1160
1209
  A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
1161
1210
 
1162
- - 🌎 Add Persian (faIR) locale (#2712) @devlifeX
1211
+ - 🌎 Add Persian (fa-IR) locale (#2712) @devlifeX
1163
1212
  - 🎁 Allow to select range of rows with Shift + click (#2456) @flaviendelangle
1164
1213
  - 🚀 Allow to throttle the row updates with the `throttleRowsMs` prop on `DataGridPro` and remove the default 100ms row update delay (#2561) @flaviendelangle
1165
1214
  - 💡 Enhance internal code structure
@@ -1191,7 +1240,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
1191
1240
 
1192
1241
  #### Changes
1193
1242
 
1194
- - [DataGrid] Add Persian (faIR) locale (#2712) @devlifeX
1243
+ - [DataGrid] Add Persian (fa-IR) locale (#2712) @devlifeX
1195
1244
  - [DataGrid] Allow to select range of rows using Shift + click (#2456) @flaviendelangle
1196
1245
  - [DataGrid] Fix numeric column filter to not run when value is empty (#2780) @m4theushw
1197
1246
  - [DataGrid] Export `singleSelect` operators (#2666) @jeremyalan
@@ -1231,8 +1280,8 @@ _Sep 24, 2021_
1231
1280
 
1232
1281
  A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
1233
1282
 
1234
- - 🇻🇳 Add Vietnamese (viVN) locale (#2668) @tuananh281098
1235
- - 🇵🇱 Improve Polish (plPL) locale (#2632) @michallukowski
1283
+ - 🇻🇳 Add Vietnamese (vi-VN) locale (#2668) @tuananh281098
1284
+ - 🇵🇱 Improve Polish (pl-PL) locale (#2632) @michallukowski
1236
1285
  - ⚡️ Apply the `valueFormatter` to the `singleSelect` column type (#2581) @DanailH
1237
1286
 
1238
1287
  ### `@mui/x-data-grid@v5.0.0-beta.2` / `@mui/x-data-grid-pro@v5.0.0-beta.2`
@@ -1264,10 +1313,10 @@ A big thanks to the 5 contributors who made this release possible. Here are some
1264
1313
 
1265
1314
  #### Changes
1266
1315
 
1267
- - [DataGrid] Add Vietnamese (viVN) locale (#2668) @tuananh281098
1316
+ - [DataGrid] Add Vietnamese (vi-VN) locale (#2668) @tuananh281098
1268
1317
  - [DataGrid] Apply the `valueFormatter` to `singleSelect` select options (#2581) @DanailH
1269
1318
  - [DataGrid] Free up column header space when icons are not visible (#2606) @DanailH
1270
- - [DataGrid] Improve Polish (plPL) locale (#2632) @michallukowski
1319
+ - [DataGrid] Improve Polish (pl-PL) locale (#2632) @michallukowski
1271
1320
 
1272
1321
  ### Docs
1273
1322
 
@@ -1380,7 +1429,7 @@ A big thanks to the 9 contributors who made this release possible. Here are some
1380
1429
  - [DataGrid] Fix TypeScript type error for toolbar components (#2393) @ZeeshanTamboli
1381
1430
  - [DataGrid] Fix navigation between column headers with rows filtered (#2440) @m4theushw
1382
1431
  - [DataGrid] Force `scrollEndThreshold` to undefined (#2574) @flaviendelangle
1383
- - [DataGrid] Improve jaJP localization (#2502) @daikiojm
1432
+ - [DataGrid] Improve ja-JP localization (#2502) @daikiojm
1384
1433
  - [DataGrid] Make `hideFooterRowCount` prop available only for DataGridPro (#2564) @ZeeshanTamboli
1385
1434
  - [DataGrid] Fix a bug where pressing <kbd>Escape</kbd> was not closing the `GridColumnHeaderMenu` (#2463) @DanailH
1386
1435
  - [DataGrid] Prevent scroll when selecting rows (#2558) @m4theushw
@@ -1434,9 +1483,9 @@ _Aug 27, 2021_
1434
1483
 
1435
1484
  🎉 This is the first stable release of the data grid component 🎉!
1436
1485
 
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.
1486
+ 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
1487
 
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).
1488
+ 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
1489
  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
1490
 
1442
1491
  A big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
@@ -1447,7 +1496,7 @@ A big thanks to the 6 contributors who made this release possible. Here are some
1447
1496
 
1448
1497
  - ⚡️ Rename the `XGrid` component to `DataGridPro` (#2382) @m4theushw
1449
1498
 
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.
1499
+ 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
1500
  The Pro suffix should help make it clear what's MIT and what's not.
1452
1501
 
1453
1502
  - ✨ Rename the `@material-ui` npm scope to `@mui` (#2341) @oliviertassinari
@@ -1529,7 +1578,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
1529
1578
  - 🐞 Fix a regression to not require @material-ui/x-license when using the DataGrid (#2295) @oliviertassinari
1530
1579
  - 👁️ Add `onViewportRowsChange` prop for `XGrid` only (#2038) @DanailH
1531
1580
  - 📃 Translate booleans when exporting rows to CSV (#2296) @m4theushw
1532
- - 🌎 Add Sudanese Arabic (arSD) locale (#2269) @YassinHussein
1581
+ - 🌎 Add Sudanese Arabic (ar-SD) locale (#2269) @YassinHussein
1533
1582
 
1534
1583
  This is the last alpha release. We are moving to beta in the next release, next week.
1535
1584
 
@@ -1550,7 +1599,7 @@ This is the last alpha release. We are moving to beta in the next release, next
1550
1599
  #### Changes
1551
1600
 
1552
1601
  - [DataGrid] Add @material-ui/styles as peer dependency (#2288) @m4theushw
1553
- - [DataGrid] Add Sudanese Arabic (arSD) locale (#2269) @YassinHussein
1602
+ - [DataGrid] Add Sudanese Arabic (ar-SD) locale (#2269) @YassinHussein
1554
1603
  - [DataGrid] Add \"is empty\" and \"is not empty\" filter operators to date and number columns (#2274) @flaviendelangle
1555
1604
  - [DataGrid] Avoid crash if `valueOptions` is missing in the `GridColDef` when using `singleSelect` (#2276) @DanailH
1556
1605
  - [DataGrid] Remove the use of the `autoFocus` attribute (#2239) @m4theushw
@@ -1645,7 +1694,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
1645
1694
  - [DataGrid] Canonical controlled state behavior (#2208) @oliviertassinari
1646
1695
  - [DataGrid] Fix filter with extended columns (#2246) @m4theushw
1647
1696
  - [DataGrid] Remove default value of columnTypes prop (#2280) @m4theushw
1648
- - [DataGrid] Add German (deDE) translation for export and isEmpty operator (#2285) @ChristopherBussick
1697
+ - [DataGrid] Add German (de-DE) translation for export and isEmpty operator (#2285) @ChristopherBussick
1649
1698
  - [XGrid] Add `details` param to each callback option in `XGrid` (#2236) @DanailH
1650
1699
 
1651
1700
  ### Docs
@@ -1750,7 +1799,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
1750
1799
  - [test] Sync Karma config (#2191) @m4theushw
1751
1800
  - [test] Test support for theme translations (#2229) @m4theushw
1752
1801
 
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)
1802
+ ## [4.0.0-alpha.34](https://github.com/mui/mui-x/compare/v4.0.0-alpha.33...v4.0.0-alpha.34)
1754
1803
 
1755
1804
  _July 21, 2021_
1756
1805
 
@@ -1873,7 +1922,7 @@ Big thanks to the 11 contributors who made this release possible. Here are some
1873
1922
  - [DataGrid] Add \"is empty\" and \"is not empty\" operators (#1997) @m4theushw
1874
1923
  - [DataGrid] Add `minWidth` to `GridColDef` (#2101) @DanailH
1875
1924
  - [DataGrid] Add missing localeText types (#2118) @oliviertassinari
1876
- - [DataGrid] Add missing translations to French (frFR) locale (#2082) @flaviendelangle
1925
+ - [DataGrid] Add missing translations to French (fr-FR) locale (#2082) @flaviendelangle
1877
1926
  - [DataGrid] Add quick filter demo (#2149) @dtassone
1878
1927
  - [DataGrid] Allow passing styles and Popper props to GridPanel (#1994) @sebastianfrey
1879
1928
  - [DataGrid] Allow to customize the columns exported as CSV (#2008) @flaviendelangle
@@ -1931,7 +1980,7 @@ Big thanks to the 11 contributors who made this release possible. Here are some
1931
1980
  - [test] Remove orphan async @oliviertassinari
1932
1981
  - [test] Test the validation before saving a value (#2087) @m4theushw
1933
1982
 
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)
1983
+ ## [4.0.0-alpha.33](https://github.com/mui/mui-x/compare/v4.0.0-alpha.32...v4.0.0-alpha.33)
1935
1984
 
1936
1985
  _July 1, 2021_
1937
1986
 
@@ -2019,7 +2068,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
2019
2068
  - [core] Name variables according to enUS instead of enGB (#1988) @flaviendelangle
2020
2069
  - [test] Test vertical scrollbar (#1932) @oliviertassinari
2021
2070
 
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)
2071
+ ## [4.0.0-alpha.32](https://github.com/mui/mui-x/compare/v4.0.0-alpha.31...v4.0.0-alpha.32)
2023
2072
 
2024
2073
  _June 18, 2021_
2025
2074
 
@@ -2108,8 +2157,8 @@ Big thanks to the 10 contributors who made this release possible. Here are some
2108
2157
  - [DataGrid] Allow to set the delimiter in `GridExportCsvOptions` (#1859) @michallukowski
2109
2158
  - [DataGrid] Escape regular expression characters in filters (#1899) @ZeeshanTamboli
2110
2159
  - [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
2160
+ - [DataGrid] Fix typo in French (fr-FR) locale (#1874) @julien-guillon
2161
+ - [DataGrid] Improve Brazilian Portuguese (pt-BR) locale (#1861) @aline-matos
2113
2162
  - [DataGrid] Improve type of the blur event (#1918) @oliviertassinari
2114
2163
  - [DataGrid] Improve updateRows performance (#1923) @N2D4
2115
2164
  - [DataGrid] Include Material-UI core component localizations in `localeText` (#1913) @DanailH
@@ -2131,7 +2180,7 @@ Big thanks to the 10 contributors who made this release possible. Here are some
2131
2180
  - [core] Remove dead logic (#1900) @oliviertassinari
2132
2181
  - [test] Fix tests (#1928) @m4theushw
2133
2182
 
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)
2183
+ ## [4.0.0-alpha.31](https://github.com/mui/mui-x/compare/v4.0.0-alpha.30...v4.0.0-alpha.31)
2135
2184
 
2136
2185
  _June 9, 2021_
2137
2186
 
@@ -2184,7 +2233,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
2184
2233
  - [core] Add `yarn docs:api` @oliviertassinari
2185
2234
  - [test] Improve pagination tests (#1827) @m4theushw
2186
2235
 
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)
2236
+ ## [4.0.0-alpha.30](https://github.com/mui/mui-x/compare/v4.0.0-alpha.29...v4.0.0-alpha.30)
2188
2237
 
2189
2238
  _May 31, 2021_
2190
2239
 
@@ -2193,7 +2242,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
2193
2242
  - 💅 Add `getCellClassName` prop (#1687) @m4theushw
2194
2243
  - 🐛 Fix a regression in the controlled pagination (#1729) @ZeeshanTamboli
2195
2244
  - ⚡️ Remove `cellClassRules` from `GridColDef` (#1716) @m4theushw
2196
- - 🇨🇿 Add csCZ locale (#1765) @Haaxor1689
2245
+ - 🇨🇿 Add cs-CZ locale (#1765) @Haaxor1689
2197
2246
  - 🐞 Bugfixes
2198
2247
 
2199
2248
  ### @material-ui/x-grid@v4.0.0-alpha.30 / @material-ui/data-grid@v4.0.0-alpha.30
@@ -2277,12 +2326,12 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
2277
2326
 
2278
2327
  - [DataGrid] Add `getCellClassName` prop (#1687) @m4theushw
2279
2328
  - [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
2329
+ - [DataGrid] Add Czech (cs-CZ) locale and fix plural rules in Slovak (sk-SK) locale (#1765) @Haaxor1689
2281
2330
  - [DataGrid] Fix cell accessibility aria-colindex (#1669) @ZeeshanTamboli
2282
2331
  - [DataGrid] Fix changing rows per page size (#1729) @ZeeshanTamboli
2283
2332
  - [DataGrid] Fix date operators not working with date-time values (#1722) @m4theushw
2284
2333
  - [DataGrid] Fix `rowCount` prop updates (#1697) @dtassone
2285
- - [DataGrid] Improve German (deDe) translation of "errorOverlayDefaultLabel" (#1718) @sebastianfrey
2334
+ - [DataGrid] Improve German (de-DE) translation of "errorOverlayDefaultLabel" (#1718) @sebastianfrey
2286
2335
  - [DataGrid] Fix accessibility of the filter panel textboxes (#1727) @m4theushw
2287
2336
  - [XGrid] Fix `onFilterModelChange` not firing (#1706) @dtassone
2288
2337
 
@@ -2302,7 +2351,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
2302
2351
  - [test] Reduce flakiness (#1753) @oliviertassinari
2303
2352
  - [test] Remove skip on Edge (#1708) @m4theushw
2304
2353
 
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)
2354
+ ## [4.0.0-alpha.29](https://github.com/mui/mui-x/compare/v4.0.0-alpha.28...v4.0.0-alpha.29)
2306
2355
 
2307
2356
  _May 19, 2021_
2308
2357
 
@@ -2379,18 +2428,18 @@ Big thanks to the 11 contributors who made this release possible. Here are some
2379
2428
 
2380
2429
  #### Changes
2381
2430
 
2382
- - [DataGrid] Add Slovak (skSK) locale (#1634) @martinvysnovsky
2431
+ - [DataGrid] Add Slovak (sk-SK) locale (#1634) @martinvysnovsky
2383
2432
  - [DataGrid] Add `columnHeader`, `row` and `cell` in addition to `root` in classes prop (#1660) @DanailH
2384
2433
  - [DataGrid] Add `isRowSelectable` prop (#1659) @m4theushw
2385
2434
  - [DataGrid] Add sort icon for when column is unsorted (#1415) @m4theushw
2386
2435
  - [DataGrid] Fix `id` and `aria-labelledby` attributes on the column menu (#1460) @m4theushw
2387
2436
  - [DataGrid] Fix broken checkbox in Material-UI v5 (#1587) @ZeeshanTamboli
2388
2437
  - [DataGrid] Fix CSS classes prefix (#1693) @m4theushw
2389
- - [DataGrid] Fix German (deDe) locale (#1624) @klinge27
2438
+ - [DataGrid] Fix German (de-DE) locale (#1624) @klinge27
2390
2439
  - [DataGrid] Fix filter with object as value and value getter (#1665) @dtassone
2391
2440
  - [DataGrid] Fix incorrect date selection (#1652) @aTmb405
2392
2441
  - [DataGrid] Fix overflow of maximum page (#1583) @oliviertassinari
2393
- - [DataGrid] Fix typo in Italian (itIT) locale (#1635) @profcav
2442
+ - [DataGrid] Fix typo in Italian (it-IT) locale (#1635) @profcav
2394
2443
  - [DataGrid] Improve performance of width resizing (#1686) @dtassone
2395
2444
  - [DataGrid] Make rows immutable for better developer experience (#1661) @ZeeshanTamboli
2396
2445
  - [DataGrid] Pass state values as props (#1628) @m4theushw
@@ -2419,13 +2468,13 @@ Big thanks to the 11 contributors who made this release possible. Here are some
2419
2468
  - [test] Add constraints on cell render (#1662) @oliviertassinari
2420
2469
  - [test] Catch broken demos (#1692) @oliviertassinari
2421
2470
 
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)
2471
+ ## [4.0.0-alpha.28](https://github.com/mui/mui-x/compare/v4.0.0-alpha.27...v4.0.0-alpha.28)
2423
2472
 
2424
2473
  _May 10, 2021_
2425
2474
 
2426
2475
  Big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2427
2476
 
2428
- - 🇹🇷 Add trTR locale (#1446) @simsek97
2477
+ - 🇹🇷 Add tr-TR locale (#1446) @simsek97
2429
2478
  - 🎁 Add support for checkbox component slot (#1528) @ZeeshanTamboli
2430
2479
  - ⚡️ Add `onColumnVisibilityChange` prop (#1578) @DanailH
2431
2480
  - 🐞 Bugfixes
@@ -2450,7 +2499,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
2450
2499
 
2451
2500
  #### Changes
2452
2501
 
2453
- - [DataGrid] Add Turkish (trTR) locale (#1526) @simsek97
2502
+ - [DataGrid] Add Turkish (tr-TR) locale (#1526) @simsek97
2454
2503
  - [DataGrid] Add `onColumnVisibilityChange` prop (#1578) @DanailH
2455
2504
  - [DataGrid] Fix date input crash (#1570) @dtassone
2456
2505
  - [DataGrid] Fix resulted filter data shows blank screen during pagination (#1571) @ZeeshanTamboli
@@ -2473,7 +2522,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
2473
2522
  - [core] Update monorepo (#1530) @oliviertassinari
2474
2523
  - [core] Increase timeout on jsdom (#1532) @oliviertassinari
2475
2524
 
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)
2525
+ ## [4.0.0-alpha.27](https://github.com/mui/mui-x/compare/v4.0.0-alpha.26...v4.0.0-alpha.27)
2477
2526
 
2478
2527
  _Apr 30, 2021_
2479
2528
 
@@ -2482,8 +2531,8 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
2482
2531
  - 🎁 Add getRowClassName prop (#1448) @m4theushw
2483
2532
  - ⚡️ Drop support for Node v10 (#1499) @ZeeshanTamboli
2484
2533
  - ♿ Make checkbox focusable (#1421) @dtassone
2485
- - 🇮🇹 Add itIT locale (#1446) @profcav
2486
- - 🇷🇺 Add ruRU locale (#1449) @Lukin
2534
+ - 🇮🇹 Add it-IT locale (#1446) @profcav
2535
+ - 🇷🇺 Add ru-RU locale (#1449) @Lukin
2487
2536
  - 🐞 Bugfixes
2488
2537
 
2489
2538
  ### @material-ui/x-grid@v4.0.0-alpha.27 / @material-ui/data-grid@v4.0.0-alpha.27
@@ -2521,12 +2570,12 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
2521
2570
 
2522
2571
  #### Changes
2523
2572
 
2524
- - [DataGrid] Add Italian (itIT) locale (#1446) @profcav
2525
- - [DataGrid] Add Russian (ruRU) locale (#1449) @Lukin
2573
+ - [DataGrid] Add Italian (it-IT) locale (#1446) @profcav
2574
+ - [DataGrid] Add Russian (ru-RU) locale (#1449) @Lukin
2526
2575
  - [DataGrid] Add getRowClassName prop (#1448) @m4theushw
2527
2576
  - [DataGrid] Add support for `classes` prop (#1450) @ZeeshanTamboli
2528
2577
  - [DataGrid] Allow to customize the overlay when there're no filtered rows (#1445) @m4theushw
2529
- - [DataGrid] Correct quantities plPL (#1487) @Chriserus
2578
+ - [DataGrid] Correct quantities pl-PL (#1487) @Chriserus
2530
2579
  - [DataGrid] Fix autoPageSize with small dataset (#1505) @dtassone
2531
2580
  - [DataGrid] Fix delete key for uneditable cells (#1497) @dtassone
2532
2581
  - [DataGrid] Fix invalid translation key (#1504) @DanailH
@@ -2552,7 +2601,7 @@ Big thanks to the 9 contributors who made this release possible. Here are some h
2552
2601
  - [test] Remove jest (#1467) @dependabot-preview
2553
2602
  - [test] Run more tests in jsdom (#1361) @oliviertassinari
2554
2603
 
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)
2604
+ ## [4.0.0-alpha.26](https://github.com/mui/mui-x/compare/v4.0.0-alpha.25...v4.0.0-alpha.26)
2556
2605
 
2557
2606
  _Apr 22, 2021_
2558
2607
 
@@ -2569,7 +2618,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2569
2618
  ### @material-ui/x-grid@v4.0.0-alpha.26 / @material-ui/data-grid@v4.0.0-alpha.26
2570
2619
 
2571
2620
  - [DataGrid] Add support for Editable cells (#1287) @dtassone
2572
- - [DataGrid] Add Ukrainian (ukUA) locale (#1418) @Neonin
2621
+ - [DataGrid] Add Ukrainian (uk-UA) locale (#1418) @Neonin
2573
2622
  - [DataGrid] Fix 'Hide' menu item with `disableColumnSelector` (#1429) @ZeeshanTamboli
2574
2623
  - [DataGrid] Fix reset of virtualPage (#1451) @dtassone
2575
2624
  - [DataGrid] Fix support for falsy value from valueFormatter (#1425) @zj9495
@@ -2589,7 +2638,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2589
2638
 
2590
2639
  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
2640
 
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)
2641
+ ## [4.0.0-alpha.25](https://github.com/mui/mui-x/compare/v4.0.0-alpha.24...v4.0.0-alpha.25)
2593
2642
 
2594
2643
  _Apr 14, 2021_
2595
2644
 
@@ -2665,16 +2714,16 @@ export interface GridFilterModelParams {
2665
2714
  - [core] Variable convention (#1397) @oliviertassinari
2666
2715
  - [license] Use a global storage rather than a module singleton (#1384) @oliviertassinari
2667
2716
 
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)
2717
+ ## [4.0.0-alpha.24](https://github.com/mui/mui-x/compare/v4.0.0-alpha.23...v4.0.0-alpha.24)
2669
2718
 
2670
2719
  _Apr 2, 2021_
2671
2720
 
2672
2721
  Big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
2673
2722
 
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
2723
+ - 🇬🇷 Add el-GR locale (#1275) @clytras
2724
+ - 🇪🇸 Add es-ES locale (#1286) @WiXSL
2725
+ - 🇯🇵 Add ja-JP locale (#1283) @seed-of-apricot
2726
+ - 🇳🇱 Add nl-NL locale (#1273) @wimdetroyer
2678
2727
  - 🐞 Bugfixes
2679
2728
 
2680
2729
  ### @material-ui/x-grid@v4.0.0-alpha.24 / @material-ui/data-grid@v4.0.0-alpha.24
@@ -2704,7 +2753,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
2704
2753
 
2705
2754
  - [core] Batch small changes (#1310) @oliviertassinari
2706
2755
 
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)
2756
+ ## [4.0.0-alpha.23](https://github.com/mui/mui-x/compare/v4.0.0-alpha.22...v4.0.0-alpha.23)
2708
2757
 
2709
2758
  _Mar 22, 2021_
2710
2759
 
@@ -2716,13 +2765,13 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2716
2765
  See the documentation for [more details](https://mui.com/components/data-grid/rows/#infinite-loading).
2717
2766
 
2718
2767
  - 🕹 Provide the ability to sort by multiple columns using Shift+click (#1203) @dtassone
2719
- - 🇵🇱 Added plPL locale (#1117) @LarsKumbier
2768
+ - 🇵🇱 Added pl-PL locale (#1117) @LarsKumbier
2720
2769
  - ⚡️ Edit cell accessibility (#1205) @dtassone
2721
2770
  - 🐞 Bugfixes
2722
2771
 
2723
2772
  ### @material-ui/x-grid@v4.0.0-alpha.23 / @material-ui/data-grid@v4.0.0-alpha.23
2724
2773
 
2725
- - [DataGrid] Add plPL locale (#1274) @michallukowski
2774
+ - [DataGrid] Add pl-PL locale (#1274) @michallukowski
2726
2775
  - [DataGrid] Add onRowsScrollEnd to support infinite loading (#1199) @DanailH
2727
2776
  - [DataGrid] Edit Cell Navigation (#1205) @dtassone
2728
2777
  - [DataGrid] Fix Popper z-index (#1240) @m4theushw
@@ -2742,7 +2791,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2742
2791
  - [core] No top-level imports (#1257) @oliviertassinari
2743
2792
  - [core] Remove dead code (#1259) @oliviertassinari
2744
2793
 
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)
2794
+ ## [4.0.0-alpha.22](https://github.com/mui/mui-x/compare/v4.0.0-alpha.21...v4.0.0-alpha.22)
2746
2795
 
2747
2796
  _Mar 9, 2021_
2748
2797
 
@@ -2750,13 +2799,13 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
2750
2799
 
2751
2800
  - 🎁 Implement base foundation for editing a cell (#1025) @dtassone.
2752
2801
  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
2802
+ - 🇩🇪 Added de-DE locale (#1117) @LarsKumbier
2754
2803
  - 📜 Fix scrollbar related issue (#1146) @dtassone
2755
2804
  - 🐛 Handle commas in cell values when doing CSV export (#1154) @DanailH
2756
2805
 
2757
2806
  ### @material-ui/x-grid@v4.0.0-alpha.22 / @material-ui/data-grid@v4.0.0-alpha.22
2758
2807
 
2759
- - [DataGrid] Add deDE locale (#1117) @LarsKumbier
2808
+ - [DataGrid] Add de-DE locale (#1117) @LarsKumbier
2760
2809
  - [DataGrid] Fix scrollbar on autopageSize (#1146) @dtassone
2761
2810
  - [DataGrid] Fix handling of special chars when doing CSV export (#1154) @DanailH
2762
2811
  - [DataGrid] Implement base foundation for editing a cell (#1025) @dtassone
@@ -2776,7 +2825,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
2776
2825
  - [core] Output warnings in the rendered components (#1153) @oliviertassinari
2777
2826
  - [core] Update to the HEAD of the monorepo (#1138) @oliviertassinari
2778
2827
 
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)
2828
+ ## [4.0.0-alpha.21](https://github.com/mui/mui-x/compare/v4.0.0-alpha.20...v4.0.0-alpha.21)
2780
2829
 
2781
2830
  _Feb 27, 2021_
2782
2831
 
@@ -2797,13 +2846,13 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2797
2846
  - [DataGrid] Prefix all public API to fit into the global Material-UI namespace (#1069) @DanailH
2798
2847
  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
2848
 
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).
2849
+ 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
2850
 
2802
2851
  #### Changes
2803
2852
 
2804
- - [DataGrid] Add frFR locale (#1079) @oliviertassinari
2853
+ - [DataGrid] Add fr-FR locale (#1079) @oliviertassinari
2805
2854
  - [DataGrid] Add missing TablePagination localizations (#1109) @DanailH
2806
- - [DataGrid] Add ptBR locale (#1077) @erikian
2855
+ - [DataGrid] Add pt-BR locale (#1077) @erikian
2807
2856
  - [DataGrid] Fix checked checkbox when empty rows (#1068) @bigandy
2808
2857
  - [DataGrid] Fix issue with visible rows state (#1113) @dtassone
2809
2858
  - [DataGrid] Fix last row (#1071) @dtassone
@@ -2829,7 +2878,7 @@ Big thanks to the 7 contributors who made this release possible. Here are some h
2829
2878
  - [test] Improve BrowserStack configuration (#1100) @oliviertassinari
2830
2879
  - [test] Speed-up rebuild in Karma (#1064) @oliviertassinari
2831
2880
 
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)
2881
+ ## [4.0.0-alpha.20](https://github.com/mui/mui-x/compare/v4.0.0-alpha.19...v4.0.0-alpha.20)
2833
2882
 
2834
2883
  _Feb 17, 2021_
2835
2884
 
@@ -2891,7 +2940,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
2891
2940
 
2892
2941
  #### Changes
2893
2942
 
2894
- - [DataGrid] Add bgBG locale (#983) @DanailH
2943
+ - [DataGrid] Add bg-BG locale (#983) @DanailH
2895
2944
  - [DataGrid] Add last of the missing translations (#1033) @DanailH
2896
2945
  - [DataGrid] Add support for default props from theme (#1019) @DanailH
2897
2946
  - [DataGrid] Fix controllable filters and select all rows with filters (#1020) @dtassone
@@ -2918,7 +2967,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
2918
2967
  - [test] Increase yarn timeout (#1023) @oliviertassinari
2919
2968
  - [test] Link CircleCI URL in BS (#1060) @oliviertassinari
2920
2969
 
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)
2970
+ ## [4.0.0-alpha.19](https://github.com/mui/mui-x/compare/v4.0.0-alpha.18...v4.0.0-alpha.19)
2922
2971
 
2923
2972
  _Feb 5, 2021_
2924
2973
 
@@ -2961,7 +3010,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
2961
3010
  - [core] Improve prop-types handling (#978) @oliviertassinari
2962
3011
  - [core] Investigate bundle size (#954) @oliviertassinari
2963
3012
 
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)
3013
+ ## [4.0.0-alpha.18](https://github.com/mui/mui-x/compare/v4.0.0-alpha.17...v4.0.0-alpha.18)
2965
3014
 
2966
3015
  _Jan 26, 2021_
2967
3016
 
@@ -2974,7 +3023,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
2974
3023
  The first prop allows to swapping specific components used in slots the grid, like the checkboxes.
2975
3024
  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
3025
 
2977
- See the [RFC](https://github.com/mui-org/material-ui/issues/21453) for more details.
3026
+ See the [RFC](https://github.com/mui/material-ui/issues/21453) for more details.
2978
3027
 
2979
3028
  - 🐛 Polish existing features, fix 3 issues.
2980
3029
 
@@ -3048,7 +3097,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
3048
3097
  - [core] Replace commander with yargs (#872) @dependabot-preview
3049
3098
  - [core] Update monorepo (#884) @oliviertassinari
3050
3099
 
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)
3100
+ ## [4.0.0-alpha.17](https://github.com/mui/mui-x/compare/v4.0.0-alpha.15...v4.0.0-alpha.17)
3052
3101
 
3053
3102
  _Jan 14, 2021_
3054
3103
 
@@ -3078,7 +3127,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
3078
3127
 
3079
3128
  - [core] Add tests for Column selector feature (#845) @DanailH
3080
3129
 
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)
3130
+ ## [4.0.0-alpha.15](https://github.com/mui/mui-x/compare/v4.0.0-alpha.14...v4.0.0-alpha.15)
3082
3131
 
3083
3132
  _Jan 7, 2021_
3084
3133
 
@@ -3101,7 +3150,7 @@ Big thanks to the 2 contributors who made this release possible. Here are some h
3101
3150
  - [core] Batch small changes (#800) @oliviertassinari
3102
3151
  - [CHANGELOG] Use the format of the main repository @oliviertassinari
3103
3152
 
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)
3153
+ ## [4.0.0-alpha.14](https://github.com/mui/mui-x/compare/v4.0.0-alpha.13...v4.0.0-alpha.14)
3105
3154
 
3106
3155
  _Dec 31, 2020_
3107
3156
 
@@ -3135,7 +3184,7 @@ Big thanks to the 5 contributors who made this release possible. Here are some h
3135
3184
  - [test] We don't need to wait 100ms (#773) @oliviertassinari
3136
3185
  - [core] Remove useless clone (#757) @oliviertassinari
3137
3186
 
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)
3187
+ ## [4.0.0-alpha.13](https://github.com/mui/mui-x/compare/v4.0.0-alpha.12...v4.0.0-alpha.13)
3139
3188
 
3140
3189
  _Dec 16, 2020_
3141
3190
 
@@ -3164,7 +3213,7 @@ Big thanks to the 4 contributors who made this release possible. Here are some h
3164
3213
  - [test] Split data grid tests in multiple files (#722) @dtassone
3165
3214
  - [test] Add tests for DataGrid filtering feature (#715) @dtassone
3166
3215
 
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)
3216
+ ## [4.0.0-alpha.12](https://github.com/mui/mui-x/compare/v4.0.0-alpha.11...v4.0.0-alpha.12)
3168
3217
 
3169
3218
  _Dec 9, 2020_
3170
3219
 
@@ -3201,7 +3250,7 @@ Big thanks to the 6 contributors who made this release possible. Here are some h
3201
3250
  - [test] Add regression test (#705) @oliviertassinari
3202
3251
  - [test] Allow running all the tests in strict mode (#684) @oliviertassinari
3203
3252
 
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)
3253
+ ## [4.0.0-alpha.11](https://github.com/mui/mui-x/compare/v4.0.0-alpha.10...v4.0.0-alpha.11)
3205
3254
 
3206
3255
  _Dec 2, 2020_
3207
3256
 
@@ -3259,7 +3308,7 @@ Big thanks to the 8 contributors who made this release possible. Here are some h
3259
3308
  - [core] Replace Storybook knobs for args (#601) @tooppaaa
3260
3309
  - [core] Update to Material-UI v4.11.1 (#636) @oliviertassinari
3261
3310
 
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)
3311
+ ## [4.0.0-alpha.10](https://github.com/mui/mui-x/compare/v4.0.0-alpha.9...v4.0.0-alpha.10)
3263
3312
 
3264
3313
  _Nov 20, 2020_
3265
3314
 
@@ -3281,7 +3330,7 @@ _Nov 20, 2020_
3281
3330
  - [core] Fix yarn prettier write @oliviertassinari
3282
3331
  - [test] Share karma setup (#576) @oliviertassinari
3283
3332
 
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)
3333
+ ## [4.0.0-alpha.9](https://github.com/mui/mui-x/compare/v4.0.0-alpha.8...v4.0.0-alpha.9)
3285
3334
 
3286
3335
  _Nov 9, 2020_
3287
3336
 
@@ -3319,7 +3368,7 @@ _Nov 9, 2020_
3319
3368
  - [core] Disable generation of changelogs @oliviertassinari
3320
3369
  - [test] Karma should fail if errors are thrown (#543) @oliviertassinari
3321
3370
 
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)
3371
+ ## [4.0.0-alpha.8](https://github.com/mui/mui-x/compare/v4.0.0-alpha.7...v4.0.0-alpha.8)
3323
3372
 
3324
3373
  _Oct 23, 2020_
3325
3374
 
@@ -3336,7 +3385,7 @@ _Oct 23, 2020_
3336
3385
  - [core] Remove usage of LESS (#467) @dependabot-preview
3337
3386
  - [core] Update to the latest version of the main repo (#456) @oliviertassinari
3338
3387
 
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)
3388
+ ## [4.0.0-alpha.7](https://github.com/mui/mui-x/compare/v4.0.0-alpha.6...v4.0.0-alpha.7)
3340
3389
 
3341
3390
  _Oct 19, 2020_
3342
3391
 
@@ -3365,7 +3414,7 @@ _Oct 19, 2020_
3365
3414
  - [test] Add missing types linting for x-grid (#357) @oliviertassinari
3366
3415
  - [test] Run the karma tests in browserstack (#316) @oliviertassinari
3367
3416
 
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)
3417
+ ## [4.0.0-alpha.6](https://github.com/mui/mui-x/compare/v4.0.0-alpha.2...v4.0.0-alpha.6)
3369
3418
 
3370
3419
  _Sep 25, 2020_
3371
3420
 
@@ -3382,13 +3431,13 @@ _Sep 25, 2020_
3382
3431
  - [docs] Fix layout jump issue (#338) @oliviertassinari
3383
3432
  - [docs] Fix short description warning (#302) @oliviertassinari
3384
3433
 
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)
3434
+ ## [4.0.0-alpha.2](https://github.com/mui/mui-x/compare/v4.0.0-alpha.1...v4.0.0-alpha.2)
3386
3435
 
3387
3436
  _Sep 18, 2020_
3388
3437
 
3389
3438
  - [DataGrid] Fix wrongly exported types (#298) @dtassone
3390
3439
 
3391
- ## [4.0.0-alpha.1](https://github.com/mui-org/material-ui-x/compare/v0.1.67...v4.0.0-alpha.1)
3440
+ ## [4.0.0-alpha.1](https://github.com/mui/mui-x/compare/v0.1.67...v4.0.0-alpha.1)
3392
3441
 
3393
3442
  _Sep 17, 2020_
3394
3443