@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
@@ -85,10 +85,10 @@ var jaJPGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: 'いずれか',
@@ -85,10 +85,10 @@ var koKRGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: '아무값',
@@ -85,10 +85,10 @@ var nbNOGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: 'noen',
@@ -85,10 +85,10 @@ var plPLGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: 'dowolny',
@@ -85,10 +85,10 @@ var ptBRGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: 'qualquer',
@@ -85,10 +85,10 @@ var roROGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: 'Aleatoriu',
@@ -92,10 +92,10 @@ var ruRUGrid = {
92
92
  // headerFilterOperatorIsAnyOf: 'Is any of',
93
93
  // 'headerFilterOperator=': 'Equals',
94
94
  // 'headerFilterOperator!=': 'Not equals',
95
- // 'headerFilterOperator>': 'Is greater than',
96
- // 'headerFilterOperator>=': 'Is greater than or equal to',
97
- // 'headerFilterOperator<': 'Is less than',
98
- // 'headerFilterOperator<=': 'Is less than or equal to',
95
+ // 'headerFilterOperator>': 'Greater than',
96
+ // 'headerFilterOperator>=': 'Greater than or equal to',
97
+ // 'headerFilterOperator<': 'Less than',
98
+ // 'headerFilterOperator<=': 'Less than or equal to',
99
99
 
100
100
  // Filter values text
101
101
  filterValueAny: 'любой',
@@ -91,10 +91,10 @@ var skSKGrid = {
91
91
  // headerFilterOperatorIsAnyOf: 'Is any of',
92
92
  // 'headerFilterOperator=': 'Equals',
93
93
  // 'headerFilterOperator!=': 'Not equals',
94
- // 'headerFilterOperator>': 'Is greater than',
95
- // 'headerFilterOperator>=': 'Is greater than or equal to',
96
- // 'headerFilterOperator<': 'Is less than',
97
- // 'headerFilterOperator<=': 'Is less than or equal to',
94
+ // 'headerFilterOperator>': 'Greater than',
95
+ // 'headerFilterOperator>=': 'Greater than or equal to',
96
+ // 'headerFilterOperator<': 'Less than',
97
+ // 'headerFilterOperator<=': 'Less than or equal to',
98
98
 
99
99
  // Filter values text
100
100
  filterValueAny: 'akýkoľvek',
@@ -85,10 +85,10 @@ var svSEGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: 'något',
@@ -62,18 +62,17 @@ var trTRGrid = {
62
62
  filterOperatorIsEmpty: 'boş',
63
63
  filterOperatorIsNotEmpty: 'dolu',
64
64
  filterOperatorIsAnyOf: 'herhangi biri',
65
- // 'filterOperator=': '=',
66
- // 'filterOperator!=': '!=',
67
- // 'filterOperator>': '>',
68
- // 'filterOperator>=': '>=',
69
- // 'filterOperator<': '<',
70
- // 'filterOperator<=': '<=',
71
-
65
+ 'filterOperator=': '=',
66
+ 'filterOperator!=': '!=',
67
+ 'filterOperator>': '>',
68
+ 'filterOperator>=': '>=',
69
+ 'filterOperator<': '<',
70
+ 'filterOperator<=': '<=',
72
71
  // Header filter operators text
73
- // headerFilterOperatorContains: 'Contains',
74
- // headerFilterOperatorEquals: 'Equals',
75
- // headerFilterOperatorStartsWith: 'Starts with',
76
- // headerFilterOperatorEndsWith: 'Ends with',
72
+ headerFilterOperatorContains: 'Şunu içerir',
73
+ headerFilterOperatorEquals: 'Şuna eşittir',
74
+ headerFilterOperatorStartsWith: 'Şununla başlar',
75
+ headerFilterOperatorEndsWith: 'Şununla biter',
77
76
  // headerFilterOperatorIs: 'Is',
78
77
  // headerFilterOperatorNot: 'Is not',
79
78
  // headerFilterOperatorAfter: 'Is after',
@@ -85,10 +84,10 @@ var trTRGrid = {
85
84
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
85
  // 'headerFilterOperator=': 'Equals',
87
86
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
87
+ // 'headerFilterOperator>': 'Greater than',
88
+ // 'headerFilterOperator>=': 'Greater than or equal to',
89
+ // 'headerFilterOperator<': 'Less than',
90
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
91
 
93
92
  // Filter values text
94
93
  filterValueAny: 'herhangi',
@@ -98,9 +97,9 @@ var trTRGrid = {
98
97
  columnMenuLabel: 'Menü',
99
98
  columnMenuShowColumns: 'Sütunları göster',
100
99
  columnMenuManageColumns: 'Sütunları yönet',
101
- columnMenuFilter: 'Filtre uygula',
100
+ columnMenuFilter: 'Filtre Ekle',
102
101
  columnMenuHideColumn: 'Gizle',
103
- columnMenuUnsort: 'Sıralama',
102
+ columnMenuUnsort: 'Varsayılan Sıralama',
104
103
  columnMenuSortAsc: 'Sırala - Artan',
105
104
  columnMenuSortDesc: 'Sırala - Azalan',
106
105
  // Column header text
@@ -99,10 +99,10 @@ var ukUAGrid = {
99
99
  // headerFilterOperatorIsAnyOf: 'Is any of',
100
100
  // 'headerFilterOperator=': 'Equals',
101
101
  // 'headerFilterOperator!=': 'Not equals',
102
- // 'headerFilterOperator>': 'Is greater than',
103
- // 'headerFilterOperator>=': 'Is greater than or equal to',
104
- // 'headerFilterOperator<': 'Is less than',
105
- // 'headerFilterOperator<=': 'Is less than or equal to',
102
+ // 'headerFilterOperator>': 'Greater than',
103
+ // 'headerFilterOperator>=': 'Greater than or equal to',
104
+ // 'headerFilterOperator<': 'Less than',
105
+ // 'headerFilterOperator<=': 'Less than or equal to',
106
106
 
107
107
  // Filter values text
108
108
  filterValueAny: 'будь-який',
@@ -85,10 +85,10 @@ var urPKGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: 'کوئی بھی',
@@ -85,10 +85,10 @@ var viVNGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: 'bất kỳ giá trị nào',
@@ -85,10 +85,10 @@ var zhCNGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: '任何',
@@ -85,10 +85,10 @@ var zhTWGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
88
+ // 'headerFilterOperator>': 'Greater than',
89
+ // 'headerFilterOperator>=': 'Greater than or equal to',
90
+ // 'headerFilterOperator<': 'Less than',
91
+ // 'headerFilterOperator<=': 'Less than or equal to',
92
92
 
93
93
  // Filter values text
94
94
  filterValueAny: '任何值',
@@ -6,7 +6,7 @@ import _createClass from "@babel/runtime/helpers/esm/createClass";
6
6
  export var EventManager = /*#__PURE__*/function () {
7
7
  function EventManager() {
8
8
  _classCallCheck(this, EventManager);
9
- this.maxListeners = 10;
9
+ this.maxListeners = 20;
10
10
  this.warnOnce = false;
11
11
  this.events = {};
12
12
  }
@@ -31,7 +31,7 @@ export var EventManager = /*#__PURE__*/function () {
31
31
  var 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. ".concat(collectionSize, " ").concat(eventName, " listeners added."), "Use emitter.setMaxListeners() to increase limit."].join('\n'));
34
+ console.warn(["Possible EventEmitter memory leak detected. ".concat(collectionSize, " ").concat(eventName, " listeners added.")].join('\n'));
35
35
  }
36
36
  }
37
37
  }
package/locales/arSD.js CHANGED
@@ -83,10 +83,10 @@ const arSDGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'أي',
package/locales/beBY.js CHANGED
@@ -97,10 +97,10 @@ const beBYGrid = {
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: 'усякі',
package/locales/bgBG.js CHANGED
@@ -83,10 +83,10 @@ const bgBGGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'всякакви',
package/locales/csCZ.js CHANGED
@@ -68,34 +68,32 @@ const csCZGrid = {
68
68
  filterOperatorIsEmpty: 'je prázdný',
69
69
  filterOperatorIsNotEmpty: 'není prázdný',
70
70
  filterOperatorIsAnyOf: 'je jeden z',
71
- // 'filterOperator=': '=',
72
- // 'filterOperator!=': '!=',
73
- // 'filterOperator>': '>',
74
- // 'filterOperator>=': '>=',
75
- // 'filterOperator<': '<',
76
- // 'filterOperator<=': '<=',
77
-
71
+ 'filterOperator=': '=',
72
+ 'filterOperator!=': '!=',
73
+ 'filterOperator>': '>',
74
+ 'filterOperator>=': '>=',
75
+ 'filterOperator<': '<',
76
+ 'filterOperator<=': '<=',
78
77
  // Header filter operators text
79
- // headerFilterOperatorContains: 'Contains',
80
- // headerFilterOperatorEquals: 'Equals',
81
- // headerFilterOperatorStartsWith: 'Starts with',
82
- // headerFilterOperatorEndsWith: 'Ends with',
83
- // headerFilterOperatorIs: 'Is',
84
- // headerFilterOperatorNot: 'Is not',
85
- // headerFilterOperatorAfter: 'Is after',
86
- // headerFilterOperatorOnOrAfter: 'Is on or after',
87
- // headerFilterOperatorBefore: 'Is before',
88
- // headerFilterOperatorOnOrBefore: 'Is on or before',
89
- // headerFilterOperatorIsEmpty: 'Is empty',
90
- // headerFilterOperatorIsNotEmpty: 'Is not empty',
91
- // headerFilterOperatorIsAnyOf: 'Is any of',
92
- // 'headerFilterOperator=': 'Equals',
93
- // 'headerFilterOperator!=': 'Not equals',
94
- // 'headerFilterOperator>': 'Is greater than',
95
- // 'headerFilterOperator>=': 'Is greater than or equal to',
96
- // 'headerFilterOperator<': 'Is less than',
97
- // 'headerFilterOperator<=': 'Is less than or equal to',
98
-
78
+ headerFilterOperatorContains: 'Obsahuje',
79
+ headerFilterOperatorEquals: 'Rovná se',
80
+ headerFilterOperatorStartsWith: 'Začíná na',
81
+ headerFilterOperatorEndsWith: 'Končí na',
82
+ headerFilterOperatorIs: 'Je',
83
+ headerFilterOperatorNot: 'Není',
84
+ headerFilterOperatorAfter: 'Je po',
85
+ headerFilterOperatorOnOrAfter: 'Je po včetně',
86
+ headerFilterOperatorBefore: 'Je před',
87
+ headerFilterOperatorOnOrBefore: 'Je před včetně',
88
+ headerFilterOperatorIsEmpty: 'Je prázdný',
89
+ headerFilterOperatorIsNotEmpty: 'Není prázdný',
90
+ headerFilterOperatorIsAnyOf: 'Je jeden z',
91
+ 'headerFilterOperator=': 'Rovná se',
92
+ 'headerFilterOperator!=': 'Nerovná se',
93
+ 'headerFilterOperator>': 'Větší než',
94
+ 'headerFilterOperator>=': 'Větší než nebo rovno',
95
+ 'headerFilterOperator<': 'Menší než',
96
+ 'headerFilterOperator<=': 'Menší než nebo rovno',
99
97
  // Filter values text
100
98
  filterValueAny: 'jakýkoliv',
101
99
  filterValueTrue: 'ano',
package/locales/daDK.js CHANGED
@@ -83,10 +83,10 @@ const daDKGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'hvilken som helst',
package/locales/deDE.js CHANGED
@@ -60,34 +60,32 @@ const deDEGrid = {
60
60
  filterOperatorIsEmpty: 'ist leer',
61
61
  filterOperatorIsNotEmpty: 'ist nicht leer',
62
62
  filterOperatorIsAnyOf: 'ist einer der Werte',
63
- // 'filterOperator=': '=',
64
- // 'filterOperator!=': '!=',
65
- // 'filterOperator>': '>',
66
- // 'filterOperator>=': '>=',
67
- // 'filterOperator<': '<',
68
- // 'filterOperator<=': '<=',
69
-
63
+ 'filterOperator=': '=',
64
+ 'filterOperator!=': '!=',
65
+ 'filterOperator>': '>',
66
+ 'filterOperator>=': '>=',
67
+ 'filterOperator<': '<',
68
+ 'filterOperator<=': '<=',
70
69
  // Header filter operators text
71
- // headerFilterOperatorContains: 'Contains',
72
- // headerFilterOperatorEquals: 'Equals',
73
- // headerFilterOperatorStartsWith: 'Starts with',
74
- // headerFilterOperatorEndsWith: 'Ends with',
75
- // headerFilterOperatorIs: 'Is',
76
- // headerFilterOperatorNot: 'Is not',
77
- // headerFilterOperatorAfter: 'Is after',
78
- // headerFilterOperatorOnOrAfter: 'Is on or after',
79
- // headerFilterOperatorBefore: 'Is before',
80
- // headerFilterOperatorOnOrBefore: 'Is on or before',
81
- // headerFilterOperatorIsEmpty: 'Is empty',
82
- // headerFilterOperatorIsNotEmpty: 'Is not empty',
83
- // headerFilterOperatorIsAnyOf: 'Is any of',
84
- // 'headerFilterOperator=': 'Equals',
85
- // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
90
-
70
+ headerFilterOperatorContains: 'Enthält',
71
+ headerFilterOperatorEquals: 'Gleich',
72
+ headerFilterOperatorStartsWith: 'Beginnt mit',
73
+ headerFilterOperatorEndsWith: 'Endet mit',
74
+ headerFilterOperatorIs: 'Ist',
75
+ headerFilterOperatorNot: 'Ist nicht',
76
+ headerFilterOperatorAfter: 'Ist nach',
77
+ headerFilterOperatorOnOrAfter: 'Ist am oder nach',
78
+ headerFilterOperatorBefore: 'Ist vor',
79
+ headerFilterOperatorOnOrBefore: 'Ist am oder vor',
80
+ headerFilterOperatorIsEmpty: 'Ist leer',
81
+ headerFilterOperatorIsNotEmpty: 'Ist nicht leer',
82
+ headerFilterOperatorIsAnyOf: 'Ist eines von',
83
+ 'headerFilterOperator=': 'Gleich',
84
+ 'headerFilterOperator!=': 'Ungleich',
85
+ 'headerFilterOperator>': 'Größer als',
86
+ 'headerFilterOperator>=': 'Größer als oder gleich',
87
+ 'headerFilterOperator<': 'Kleiner als',
88
+ 'headerFilterOperator<=': 'Kleiner als oder gleich',
91
89
  // Filter values text
92
90
  filterValueAny: 'Beliebig',
93
91
  filterValueTrue: 'Ja',
package/locales/elGR.js CHANGED
@@ -84,10 +84,10 @@ const elGRGrid = {
84
84
  // headerFilterOperatorIsAnyOf: 'Is any of',
85
85
  // 'headerFilterOperator=': 'Equals',
86
86
  // 'headerFilterOperator!=': 'Not equals',
87
- // 'headerFilterOperator>': 'Is greater than',
88
- // 'headerFilterOperator>=': 'Is greater than or equal to',
89
- // 'headerFilterOperator<': 'Is less than',
90
- // 'headerFilterOperator<=': 'Is less than or equal to',
87
+ // 'headerFilterOperator>': 'Greater than',
88
+ // 'headerFilterOperator>=': 'Greater than or equal to',
89
+ // 'headerFilterOperator<': 'Less than',
90
+ // 'headerFilterOperator<=': 'Less than or equal to',
91
91
 
92
92
  // Filter values text
93
93
  // filterValueAny: 'any',
package/locales/esES.js CHANGED
@@ -83,10 +83,10 @@ const esESGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'cualquiera',
package/locales/faIR.js CHANGED
@@ -83,10 +83,10 @@ const faIRGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'هرچیزی',
package/locales/fiFI.js CHANGED
@@ -83,10 +83,10 @@ const fiFIGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'mikä tahansa',
package/locales/heIL.js CHANGED
@@ -83,10 +83,10 @@ const heILGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'כל ערך',
package/locales/huHU.js CHANGED
@@ -83,10 +83,10 @@ const huHUGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'bármilyen',
package/locales/itIT.js CHANGED
@@ -83,10 +83,10 @@ const itITGrid = {
83
83
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
84
  // 'headerFilterOperator=': 'Equals',
85
85
  // 'headerFilterOperator!=': 'Not equals',
86
- // 'headerFilterOperator>': 'Is greater than',
87
- // 'headerFilterOperator>=': 'Is greater than or equal to',
88
- // 'headerFilterOperator<': 'Is less than',
89
- // 'headerFilterOperator<=': 'Is less than or equal to',
86
+ // 'headerFilterOperator>': 'Greater than',
87
+ // 'headerFilterOperator>=': 'Greater than or equal to',
88
+ // 'headerFilterOperator<': 'Less than',
89
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
90
 
91
91
  // Filter values text
92
92
  filterValueAny: 'qualunque',