@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,7 +90,7 @@ export const useGridVirtualScroller = props => {
90
90
  height: null
91
91
  });
92
92
  const prevTotalWidth = React.useRef(columnsTotalWidth);
93
- const rowStyleCache = React.useRef({});
93
+ const rowStyleCache = React.useRef(Object.create(null));
94
94
  const prevGetRowProps = React.useRef();
95
95
  const prevRootRowStyle = React.useRef();
96
96
  const getRenderedColumnsRef = React.useRef(defaultMemoize((columns, firstColumnToRender, lastColumnToRender) => {
@@ -374,7 +374,7 @@ export const useGridVirtualScroller = props => {
374
374
  rootRowProps = _objectWithoutPropertiesLoose(_ref, _excluded);
375
375
  const invalidatesCachedRowStyle = prevGetRowProps.current !== getRowProps || prevRootRowStyle.current !== rootRowStyle;
376
376
  if (invalidatesCachedRowStyle) {
377
- rowStyleCache.current = {};
377
+ rowStyleCache.current = Object.create(null);
378
378
  }
379
379
  const rows = [];
380
380
  for (let i = 0; i < renderedRows.length; i += 1) {
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid v6.6.0
2
+ * @mui/x-data-grid v6.7.0
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -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: 'أي',
@@ -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: 'усякі',
@@ -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: 'всякакви',
@@ -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',
@@ -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',
@@ -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',
@@ -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',
@@ -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',
@@ -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: 'هرچیزی',
@@ -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',
@@ -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: 'כל ערך',
@@ -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',
@@ -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',
@@ -83,10 +83,10 @@ const jaJPGrid = {
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: 'いずれか',
@@ -83,10 +83,10 @@ const koKRGrid = {
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: '아무값',
@@ -83,10 +83,10 @@ const nbNOGrid = {
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: 'noen',
@@ -83,10 +83,10 @@ const plPLGrid = {
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: 'dowolny',
@@ -83,10 +83,10 @@ const ptBRGrid = {
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: 'qualquer',
@@ -83,10 +83,10 @@ const roROGrid = {
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: 'Aleatoriu',
@@ -92,10 +92,10 @@ const 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 @@ const 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',
@@ -83,10 +83,10 @@ const svSEGrid = {
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: 'något',
@@ -60,18 +60,17 @@ const trTRGrid = {
60
60
  filterOperatorIsEmpty: 'boş',
61
61
  filterOperatorIsNotEmpty: 'dolu',
62
62
  filterOperatorIsAnyOf: 'herhangi biri',
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',
70
+ headerFilterOperatorContains: 'Şunu içerir',
71
+ headerFilterOperatorEquals: 'Şuna eşittir',
72
+ headerFilterOperatorStartsWith: 'Şununla başlar',
73
+ headerFilterOperatorEndsWith: 'Şununla biter',
75
74
  // headerFilterOperatorIs: 'Is',
76
75
  // headerFilterOperatorNot: 'Is not',
77
76
  // headerFilterOperatorAfter: 'Is after',
@@ -83,10 +82,10 @@ const trTRGrid = {
83
82
  // headerFilterOperatorIsAnyOf: 'Is any of',
84
83
  // 'headerFilterOperator=': 'Equals',
85
84
  // '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',
85
+ // 'headerFilterOperator>': 'Greater than',
86
+ // 'headerFilterOperator>=': 'Greater than or equal to',
87
+ // 'headerFilterOperator<': 'Less than',
88
+ // 'headerFilterOperator<=': 'Less than or equal to',
90
89
 
91
90
  // Filter values text
92
91
  filterValueAny: 'herhangi',
@@ -96,9 +95,9 @@ const trTRGrid = {
96
95
  columnMenuLabel: 'Menü',
97
96
  columnMenuShowColumns: 'Sütunları göster',
98
97
  columnMenuManageColumns: 'Sütunları yönet',
99
- columnMenuFilter: 'Filtre uygula',
98
+ columnMenuFilter: 'Filtre Ekle',
100
99
  columnMenuHideColumn: 'Gizle',
101
- columnMenuUnsort: 'Sıralama',
100
+ columnMenuUnsort: 'Varsayılan Sıralama',
102
101
  columnMenuSortAsc: 'Sırala - Artan',
103
102
  columnMenuSortDesc: 'Sırala - Azalan',
104
103
  // Column header text
@@ -97,10 +97,10 @@ const ukUAGrid = {
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: 'будь-який',
@@ -83,10 +83,10 @@ const urPKGrid = {
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: 'کوئی بھی',
@@ -83,10 +83,10 @@ const viVNGrid = {
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ất kỳ giá trị nào',
@@ -83,10 +83,10 @@ const zhCNGrid = {
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: '任何',