@mui/x-data-grid 6.6.0 → 6.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (187) hide show
  1. package/CHANGELOG.md +72 -0
  2. package/components/containers/GridRootStyles.js +8 -1
  3. package/components/panel/GridColumnsPanel.d.ts +14 -0
  4. package/components/panel/GridColumnsPanel.js +14 -0
  5. package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +0 -1
  6. package/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  7. package/components/panel/filterPanel/GridFilterInputDate.d.ts +0 -1
  8. package/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  9. package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +0 -1
  10. package/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  11. package/components/panel/filterPanel/GridFilterInputValue.d.ts +0 -1
  12. package/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  13. package/components/panel/filterPanel/GridFilterPanel.d.ts +8 -0
  14. package/components/panel/filterPanel/GridFilterPanel.js +8 -0
  15. package/constants/gridClasses.d.ts +4 -0
  16. package/constants/gridClasses.js +1 -1
  17. package/constants/localeTextConstants.js +4 -4
  18. package/hooks/features/filter/useGridFilter.js +2 -1
  19. package/hooks/features/focus/useGridFocus.js +1 -0
  20. package/hooks/features/rows/useGridRowsMeta.js +1 -1
  21. package/hooks/features/sorting/useGridSorting.js +2 -1
  22. package/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
  23. package/index.js +1 -1
  24. package/legacy/components/containers/GridRootStyles.js +8 -4
  25. package/legacy/components/panel/GridColumnsPanel.js +14 -0
  26. package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +7 -7
  27. package/legacy/components/panel/filterPanel/GridFilterInputDate.js +1 -5
  28. package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -6
  29. package/legacy/components/panel/filterPanel/GridFilterInputValue.js +1 -5
  30. package/legacy/components/panel/filterPanel/GridFilterPanel.js +8 -0
  31. package/legacy/constants/gridClasses.js +1 -1
  32. package/legacy/constants/localeTextConstants.js +4 -4
  33. package/legacy/hooks/features/filter/useGridFilter.js +2 -1
  34. package/legacy/hooks/features/focus/useGridFocus.js +1 -0
  35. package/legacy/hooks/features/rows/useGridRowsMeta.js +1 -1
  36. package/legacy/hooks/features/sorting/useGridSorting.js +2 -1
  37. package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
  38. package/legacy/index.js +1 -1
  39. package/legacy/locales/arSD.js +4 -4
  40. package/legacy/locales/beBY.js +4 -4
  41. package/legacy/locales/bgBG.js +4 -4
  42. package/legacy/locales/csCZ.js +25 -27
  43. package/legacy/locales/daDK.js +4 -4
  44. package/legacy/locales/deDE.js +25 -27
  45. package/legacy/locales/elGR.js +4 -4
  46. package/legacy/locales/esES.js +4 -4
  47. package/legacy/locales/faIR.js +4 -4
  48. package/legacy/locales/fiFI.js +4 -4
  49. package/legacy/locales/heIL.js +4 -4
  50. package/legacy/locales/huHU.js +4 -4
  51. package/legacy/locales/itIT.js +4 -4
  52. package/legacy/locales/jaJP.js +4 -4
  53. package/legacy/locales/koKR.js +4 -4
  54. package/legacy/locales/nbNO.js +4 -4
  55. package/legacy/locales/plPL.js +4 -4
  56. package/legacy/locales/ptBR.js +4 -4
  57. package/legacy/locales/roRO.js +4 -4
  58. package/legacy/locales/ruRU.js +4 -4
  59. package/legacy/locales/skSK.js +4 -4
  60. package/legacy/locales/svSE.js +4 -4
  61. package/legacy/locales/trTR.js +16 -17
  62. package/legacy/locales/ukUA.js +4 -4
  63. package/legacy/locales/urPK.js +4 -4
  64. package/legacy/locales/viVN.js +4 -4
  65. package/legacy/locales/zhCN.js +4 -4
  66. package/legacy/locales/zhTW.js +4 -4
  67. package/legacy/utils/EventManager.js +2 -2
  68. package/locales/arSD.js +4 -4
  69. package/locales/beBY.js +4 -4
  70. package/locales/bgBG.js +4 -4
  71. package/locales/csCZ.js +25 -27
  72. package/locales/daDK.js +4 -4
  73. package/locales/deDE.js +25 -27
  74. package/locales/elGR.js +4 -4
  75. package/locales/esES.js +4 -4
  76. package/locales/faIR.js +4 -4
  77. package/locales/fiFI.js +4 -4
  78. package/locales/heIL.js +4 -4
  79. package/locales/huHU.js +4 -4
  80. package/locales/itIT.js +4 -4
  81. package/locales/jaJP.js +4 -4
  82. package/locales/koKR.js +4 -4
  83. package/locales/nbNO.js +4 -4
  84. package/locales/plPL.js +4 -4
  85. package/locales/ptBR.js +4 -4
  86. package/locales/roRO.js +4 -4
  87. package/locales/ruRU.js +4 -4
  88. package/locales/skSK.js +4 -4
  89. package/locales/svSE.js +4 -4
  90. package/locales/trTR.js +16 -17
  91. package/locales/ukUA.js +4 -4
  92. package/locales/urPK.js +4 -4
  93. package/locales/viVN.js +4 -4
  94. package/locales/zhCN.js +4 -4
  95. package/locales/zhTW.js +4 -4
  96. package/models/events/gridEventLookup.d.ts +8 -0
  97. package/modern/components/containers/GridRootStyles.js +8 -1
  98. package/modern/components/panel/GridColumnsPanel.js +14 -0
  99. package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  100. package/modern/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  101. package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  102. package/modern/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  103. package/modern/components/panel/filterPanel/GridFilterPanel.js +8 -0
  104. package/modern/constants/gridClasses.js +1 -1
  105. package/modern/constants/localeTextConstants.js +4 -4
  106. package/modern/hooks/features/filter/useGridFilter.js +2 -1
  107. package/modern/hooks/features/focus/useGridFocus.js +1 -0
  108. package/modern/hooks/features/rows/useGridRowsMeta.js +1 -1
  109. package/modern/hooks/features/sorting/useGridSorting.js +2 -1
  110. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
  111. package/modern/index.js +1 -1
  112. package/modern/locales/arSD.js +4 -4
  113. package/modern/locales/beBY.js +4 -4
  114. package/modern/locales/bgBG.js +4 -4
  115. package/modern/locales/csCZ.js +25 -27
  116. package/modern/locales/daDK.js +4 -4
  117. package/modern/locales/deDE.js +25 -27
  118. package/modern/locales/elGR.js +4 -4
  119. package/modern/locales/esES.js +4 -4
  120. package/modern/locales/faIR.js +4 -4
  121. package/modern/locales/fiFI.js +4 -4
  122. package/modern/locales/heIL.js +4 -4
  123. package/modern/locales/huHU.js +4 -4
  124. package/modern/locales/itIT.js +4 -4
  125. package/modern/locales/jaJP.js +4 -4
  126. package/modern/locales/koKR.js +4 -4
  127. package/modern/locales/nbNO.js +4 -4
  128. package/modern/locales/plPL.js +4 -4
  129. package/modern/locales/ptBR.js +4 -4
  130. package/modern/locales/roRO.js +4 -4
  131. package/modern/locales/ruRU.js +4 -4
  132. package/modern/locales/skSK.js +4 -4
  133. package/modern/locales/svSE.js +4 -4
  134. package/modern/locales/trTR.js +16 -17
  135. package/modern/locales/ukUA.js +4 -4
  136. package/modern/locales/urPK.js +4 -4
  137. package/modern/locales/viVN.js +4 -4
  138. package/modern/locales/zhCN.js +4 -4
  139. package/modern/locales/zhTW.js +4 -4
  140. package/modern/utils/EventManager.js +2 -2
  141. package/node/components/containers/GridRootStyles.js +8 -1
  142. package/node/components/panel/GridColumnsPanel.js +14 -0
  143. package/node/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  144. package/node/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  145. package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  146. package/node/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  147. package/node/components/panel/filterPanel/GridFilterPanel.js +8 -0
  148. package/node/constants/gridClasses.js +1 -1
  149. package/node/constants/localeTextConstants.js +4 -4
  150. package/node/hooks/features/filter/useGridFilter.js +5 -4
  151. package/node/hooks/features/focus/useGridFocus.js +1 -0
  152. package/node/hooks/features/rows/useGridRowsMeta.js +1 -1
  153. package/node/hooks/features/sorting/useGridSorting.js +2 -1
  154. package/node/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
  155. package/node/index.js +1 -1
  156. package/node/locales/arSD.js +4 -4
  157. package/node/locales/beBY.js +4 -4
  158. package/node/locales/bgBG.js +4 -4
  159. package/node/locales/csCZ.js +25 -27
  160. package/node/locales/daDK.js +4 -4
  161. package/node/locales/deDE.js +25 -27
  162. package/node/locales/elGR.js +4 -4
  163. package/node/locales/esES.js +4 -4
  164. package/node/locales/faIR.js +4 -4
  165. package/node/locales/fiFI.js +4 -4
  166. package/node/locales/heIL.js +4 -4
  167. package/node/locales/huHU.js +4 -4
  168. package/node/locales/itIT.js +4 -4
  169. package/node/locales/jaJP.js +4 -4
  170. package/node/locales/koKR.js +4 -4
  171. package/node/locales/nbNO.js +4 -4
  172. package/node/locales/plPL.js +4 -4
  173. package/node/locales/ptBR.js +4 -4
  174. package/node/locales/roRO.js +4 -4
  175. package/node/locales/ruRU.js +4 -4
  176. package/node/locales/skSK.js +4 -4
  177. package/node/locales/svSE.js +4 -4
  178. package/node/locales/trTR.js +16 -17
  179. package/node/locales/ukUA.js +4 -4
  180. package/node/locales/urPK.js +4 -4
  181. package/node/locales/viVN.js +4 -4
  182. package/node/locales/zhCN.js +4 -4
  183. package/node/locales/zhTW.js +4 -4
  184. package/node/utils/EventManager.js +2 -2
  185. package/package.json +1 -1
  186. package/themeAugmentation/overrides.d.ts +1 -1
  187. package/utils/EventManager.js +2 -2
@@ -90,10 +90,10 @@ const elGRGrid = {
90
90
  // headerFilterOperatorIsAnyOf: 'Is any of',
91
91
  // 'headerFilterOperator=': 'Equals',
92
92
  // 'headerFilterOperator!=': 'Not equals',
93
- // 'headerFilterOperator>': 'Is greater than',
94
- // 'headerFilterOperator>=': 'Is greater than or equal to',
95
- // 'headerFilterOperator<': 'Is less than',
96
- // 'headerFilterOperator<=': 'Is less than or equal to',
93
+ // 'headerFilterOperator>': 'Greater than',
94
+ // 'headerFilterOperator>=': 'Greater than or equal to',
95
+ // 'headerFilterOperator<': 'Less than',
96
+ // 'headerFilterOperator<=': 'Less than or equal to',
97
97
 
98
98
  // Filter values text
99
99
  // filterValueAny: 'any',
@@ -89,10 +89,10 @@ const esESGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'cualquiera',
@@ -89,10 +89,10 @@ const faIRGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'هرچیزی',
@@ -89,10 +89,10 @@ const fiFIGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'mikä tahansa',
@@ -89,10 +89,10 @@ const heILGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'כל ערך',
@@ -89,10 +89,10 @@ const huHUGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'bármilyen',
@@ -89,10 +89,10 @@ const itITGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'qualunque',
@@ -89,10 +89,10 @@ const jaJPGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'いずれか',
@@ -89,10 +89,10 @@ const koKRGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: '아무값',
@@ -89,10 +89,10 @@ const nbNOGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'noen',
@@ -89,10 +89,10 @@ const plPLGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'dowolny',
@@ -89,10 +89,10 @@ const ptBRGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'qualquer',
@@ -89,10 +89,10 @@ const roROGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'Aleatoriu',
@@ -98,10 +98,10 @@ const ruRUGrid = {
98
98
  // headerFilterOperatorIsAnyOf: 'Is any of',
99
99
  // 'headerFilterOperator=': 'Equals',
100
100
  // 'headerFilterOperator!=': 'Not equals',
101
- // 'headerFilterOperator>': 'Is greater than',
102
- // 'headerFilterOperator>=': 'Is greater than or equal to',
103
- // 'headerFilterOperator<': 'Is less than',
104
- // 'headerFilterOperator<=': 'Is less than or equal to',
101
+ // 'headerFilterOperator>': 'Greater than',
102
+ // 'headerFilterOperator>=': 'Greater than or equal to',
103
+ // 'headerFilterOperator<': 'Less than',
104
+ // 'headerFilterOperator<=': 'Less than or equal to',
105
105
 
106
106
  // Filter values text
107
107
  filterValueAny: 'любой',
@@ -97,10 +97,10 @@ const skSKGrid = {
97
97
  // headerFilterOperatorIsAnyOf: 'Is any of',
98
98
  // 'headerFilterOperator=': 'Equals',
99
99
  // 'headerFilterOperator!=': 'Not equals',
100
- // 'headerFilterOperator>': 'Is greater than',
101
- // 'headerFilterOperator>=': 'Is greater than or equal to',
102
- // 'headerFilterOperator<': 'Is less than',
103
- // 'headerFilterOperator<=': 'Is less than or equal to',
100
+ // 'headerFilterOperator>': 'Greater than',
101
+ // 'headerFilterOperator>=': 'Greater than or equal to',
102
+ // 'headerFilterOperator<': 'Less than',
103
+ // 'headerFilterOperator<=': 'Less than or equal to',
104
104
 
105
105
  // Filter values text
106
106
  filterValueAny: 'akýkoľvek',
@@ -89,10 +89,10 @@ const svSEGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'något',
@@ -66,18 +66,17 @@ const trTRGrid = {
66
66
  filterOperatorIsEmpty: 'boş',
67
67
  filterOperatorIsNotEmpty: 'dolu',
68
68
  filterOperatorIsAnyOf: 'herhangi biri',
69
- // 'filterOperator=': '=',
70
- // 'filterOperator!=': '!=',
71
- // 'filterOperator>': '>',
72
- // 'filterOperator>=': '>=',
73
- // 'filterOperator<': '<',
74
- // 'filterOperator<=': '<=',
75
-
69
+ 'filterOperator=': '=',
70
+ 'filterOperator!=': '!=',
71
+ 'filterOperator>': '>',
72
+ 'filterOperator>=': '>=',
73
+ 'filterOperator<': '<',
74
+ 'filterOperator<=': '<=',
76
75
  // Header filter operators text
77
- // headerFilterOperatorContains: 'Contains',
78
- // headerFilterOperatorEquals: 'Equals',
79
- // headerFilterOperatorStartsWith: 'Starts with',
80
- // headerFilterOperatorEndsWith: 'Ends with',
76
+ headerFilterOperatorContains: 'Şunu içerir',
77
+ headerFilterOperatorEquals: 'Şuna eşittir',
78
+ headerFilterOperatorStartsWith: 'Şununla başlar',
79
+ headerFilterOperatorEndsWith: 'Şununla biter',
81
80
  // headerFilterOperatorIs: 'Is',
82
81
  // headerFilterOperatorNot: 'Is not',
83
82
  // headerFilterOperatorAfter: 'Is after',
@@ -89,10 +88,10 @@ const trTRGrid = {
89
88
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
89
  // 'headerFilterOperator=': 'Equals',
91
90
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
91
+ // 'headerFilterOperator>': 'Greater than',
92
+ // 'headerFilterOperator>=': 'Greater than or equal to',
93
+ // 'headerFilterOperator<': 'Less than',
94
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
95
 
97
96
  // Filter values text
98
97
  filterValueAny: 'herhangi',
@@ -102,9 +101,9 @@ const trTRGrid = {
102
101
  columnMenuLabel: 'Menü',
103
102
  columnMenuShowColumns: 'Sütunları göster',
104
103
  columnMenuManageColumns: 'Sütunları yönet',
105
- columnMenuFilter: 'Filtre uygula',
104
+ columnMenuFilter: 'Filtre Ekle',
106
105
  columnMenuHideColumn: 'Gizle',
107
- columnMenuUnsort: 'Sıralama',
106
+ columnMenuUnsort: 'Varsayılan Sıralama',
108
107
  columnMenuSortAsc: 'Sırala - Artan',
109
108
  columnMenuSortDesc: 'Sırala - Azalan',
110
109
  // Column header text
@@ -103,10 +103,10 @@ const ukUAGrid = {
103
103
  // headerFilterOperatorIsAnyOf: 'Is any of',
104
104
  // 'headerFilterOperator=': 'Equals',
105
105
  // 'headerFilterOperator!=': 'Not equals',
106
- // 'headerFilterOperator>': 'Is greater than',
107
- // 'headerFilterOperator>=': 'Is greater than or equal to',
108
- // 'headerFilterOperator<': 'Is less than',
109
- // 'headerFilterOperator<=': 'Is less than or equal to',
106
+ // 'headerFilterOperator>': 'Greater than',
107
+ // 'headerFilterOperator>=': 'Greater than or equal to',
108
+ // 'headerFilterOperator<': 'Less than',
109
+ // 'headerFilterOperator<=': 'Less than or equal to',
110
110
 
111
111
  // Filter values text
112
112
  filterValueAny: 'будь-який',
@@ -89,10 +89,10 @@ const urPKGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'کوئی بھی',
@@ -89,10 +89,10 @@ const viVNGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: 'bất kỳ giá trị nào',
@@ -89,10 +89,10 @@ const zhCNGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: '任何',
@@ -89,10 +89,10 @@ const zhTWGrid = {
89
89
  // headerFilterOperatorIsAnyOf: 'Is any of',
90
90
  // 'headerFilterOperator=': 'Equals',
91
91
  // 'headerFilterOperator!=': 'Not equals',
92
- // 'headerFilterOperator>': 'Is greater than',
93
- // 'headerFilterOperator>=': 'Is greater than or equal to',
94
- // 'headerFilterOperator<': 'Is less than',
95
- // 'headerFilterOperator<=': 'Is less than or equal to',
92
+ // 'headerFilterOperator>': 'Greater than',
93
+ // 'headerFilterOperator>=': 'Greater than or equal to',
94
+ // 'headerFilterOperator<': 'Less than',
95
+ // 'headerFilterOperator<=': 'Less than or equal to',
96
96
 
97
97
  // Filter values text
98
98
  filterValueAny: '任何值',
@@ -9,7 +9,7 @@ exports.EventManager = void 0;
9
9
  // the Node.js (https://nodejs.org/api/events.html) polyfill used by webpack.
10
10
  class EventManager {
11
11
  constructor() {
12
- this.maxListeners = 10;
12
+ this.maxListeners = 20;
13
13
  this.warnOnce = false;
14
14
  this.events = {};
15
15
  }
@@ -31,7 +31,7 @@ class EventManager {
31
31
  const collectionSize = collection.highPriority.size + collection.regular.size;
32
32
  if (collectionSize > this.maxListeners && !this.warnOnce) {
33
33
  this.warnOnce = true;
34
- console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added.`, `Use emitter.setMaxListeners() to increase limit.`].join('\n'));
34
+ console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added.`].join('\n'));
35
35
  }
36
36
  }
37
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid",
3
- "version": "6.6.0",
3
+ "version": "6.7.0",
4
4
  "description": "The community edition of the data grid component (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./node/index.js",
@@ -2,7 +2,7 @@ import { GridClassKey } from '../constants/gridClasses';
2
2
  export interface DataGridComponentNameToClassKey {
3
3
  MuiDataGrid: GridClassKey;
4
4
  }
5
- declare module '@mui/material/styles/overrides' {
5
+ declare module '@mui/material/styles' {
6
6
  interface ComponentNameToClassKey extends DataGridComponentNameToClassKey {
7
7
  }
8
8
  }
@@ -3,7 +3,7 @@
3
3
  // the Node.js (https://nodejs.org/api/events.html) polyfill used by webpack.
4
4
  export class EventManager {
5
5
  constructor() {
6
- this.maxListeners = 10;
6
+ this.maxListeners = 20;
7
7
  this.warnOnce = false;
8
8
  this.events = {};
9
9
  }
@@ -25,7 +25,7 @@ export class EventManager {
25
25
  const collectionSize = collection.highPriority.size + collection.regular.size;
26
26
  if (collectionSize > this.maxListeners && !this.warnOnce) {
27
27
  this.warnOnce = true;
28
- console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added.`, `Use emitter.setMaxListeners() to increase limit.`].join('\n'));
28
+ console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added.`].join('\n'));
29
29
  }
30
30
  }
31
31
  }