@mui/x-data-grid 6.6.0 → 6.8.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 (313) hide show
  1. package/CHANGELOG.md +147 -13
  2. package/components/GridColumnHeaders.d.ts +2 -2
  3. package/components/GridColumnHeaders.js +3 -1
  4. package/components/GridRow.d.ts +2 -2
  5. package/components/GridRow.js +23 -69
  6. package/components/cell/GridCell.d.ts +24 -15
  7. package/components/cell/GridCell.js +422 -45
  8. package/components/cell/index.d.ts +2 -1
  9. package/components/cell/index.js +1 -1
  10. package/components/containers/GridRootStyles.js +38 -17
  11. package/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
  12. package/components/panel/GridColumnsPanel.d.ts +14 -0
  13. package/components/panel/GridColumnsPanel.js +14 -0
  14. package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +0 -1
  15. package/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  16. package/components/panel/filterPanel/GridFilterInputDate.d.ts +0 -1
  17. package/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  18. package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +0 -1
  19. package/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  20. package/components/panel/filterPanel/GridFilterInputValue.d.ts +0 -1
  21. package/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  22. package/components/panel/filterPanel/GridFilterPanel.d.ts +8 -0
  23. package/components/panel/filterPanel/GridFilterPanel.js +8 -0
  24. package/components/toolbar/GridToolbar.js +2 -2
  25. package/components/virtualization/GridVirtualScroller.js +4 -9
  26. package/components/virtualization/GridVirtualScrollerContent.js +11 -20
  27. package/constants/defaultGridSlotsComponents.js +6 -2
  28. package/constants/gridClasses.d.ts +4 -0
  29. package/constants/gridClasses.js +1 -1
  30. package/constants/localeTextConstants.js +4 -4
  31. package/hooks/core/useGridApiInitialization.js +4 -1
  32. package/hooks/core/useGridStateInitialization.js +2 -9
  33. package/hooks/features/clipboard/useGridClipboard.js +1 -4
  34. package/hooks/features/columnHeaders/useGridColumnHeaders.js +9 -3
  35. package/hooks/features/editing/useGridCellEditing.js +5 -3
  36. package/hooks/features/editing/useGridRowEditing.js +14 -6
  37. package/hooks/features/filter/gridFilterUtils.d.ts +4 -1
  38. package/hooks/features/filter/gridFilterUtils.js +19 -13
  39. package/hooks/features/filter/useGridFilter.js +4 -2
  40. package/hooks/features/focus/useGridFocus.js +10 -4
  41. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +2 -3
  42. package/hooks/features/rows/useGridParamsApi.d.ts +2 -0
  43. package/hooks/features/rows/useGridParamsApi.js +7 -15
  44. package/hooks/features/rows/useGridRowsMeta.js +1 -1
  45. package/hooks/features/sorting/useGridSorting.js +2 -1
  46. package/hooks/features/virtualization/useGridVirtualScroller.d.ts +8 -816
  47. package/hooks/features/virtualization/useGridVirtualScroller.js +42 -40
  48. package/hooks/utils/index.d.ts +1 -1
  49. package/hooks/utils/index.js +1 -1
  50. package/hooks/utils/useGridSelector.d.ts +3 -1
  51. package/hooks/utils/useGridSelector.js +37 -6
  52. package/hooks/utils/useLazyRef.d.ts +2 -0
  53. package/hooks/utils/useLazyRef.js +9 -0
  54. package/hooks/utils/useOnMount.d.ts +2 -0
  55. package/hooks/utils/useOnMount.js +7 -0
  56. package/index.js +1 -1
  57. package/legacy/components/GridColumnHeaders.js +3 -1
  58. package/legacy/components/GridRow.js +25 -69
  59. package/legacy/components/cell/GridCell.js +425 -46
  60. package/legacy/components/cell/index.js +1 -1
  61. package/legacy/components/containers/GridRootStyles.js +25 -18
  62. package/legacy/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
  63. package/legacy/components/panel/GridColumnsPanel.js +14 -0
  64. package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +7 -7
  65. package/legacy/components/panel/filterPanel/GridFilterInputDate.js +1 -5
  66. package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -6
  67. package/legacy/components/panel/filterPanel/GridFilterInputValue.js +1 -5
  68. package/legacy/components/panel/filterPanel/GridFilterPanel.js +8 -0
  69. package/legacy/components/toolbar/GridToolbar.js +2 -2
  70. package/legacy/components/virtualization/GridVirtualScroller.js +4 -7
  71. package/legacy/components/virtualization/GridVirtualScrollerContent.js +10 -17
  72. package/legacy/constants/defaultGridSlotsComponents.js +6 -2
  73. package/legacy/constants/gridClasses.js +1 -1
  74. package/legacy/constants/localeTextConstants.js +4 -4
  75. package/legacy/hooks/core/useGridApiInitialization.js +4 -1
  76. package/legacy/hooks/core/useGridStateInitialization.js +2 -7
  77. package/legacy/hooks/features/clipboard/useGridClipboard.js +1 -4
  78. package/legacy/hooks/features/columnHeaders/useGridColumnHeaders.js +9 -3
  79. package/legacy/hooks/features/editing/useGridCellEditing.js +5 -3
  80. package/legacy/hooks/features/editing/useGridRowEditing.js +15 -7
  81. package/legacy/hooks/features/filter/gridFilterUtils.js +23 -19
  82. package/legacy/hooks/features/filter/useGridFilter.js +4 -2
  83. package/legacy/hooks/features/focus/useGridFocus.js +10 -4
  84. package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +2 -3
  85. package/legacy/hooks/features/rows/useGridParamsApi.js +23 -15
  86. package/legacy/hooks/features/rows/useGridRowsMeta.js +1 -1
  87. package/legacy/hooks/features/sorting/useGridSorting.js +2 -1
  88. package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +40 -36
  89. package/legacy/hooks/utils/index.js +1 -1
  90. package/legacy/hooks/utils/useGridSelector.js +43 -5
  91. package/legacy/hooks/utils/useLazyRef.js +9 -0
  92. package/legacy/hooks/utils/useOnMount.js +7 -0
  93. package/legacy/index.js +1 -1
  94. package/legacy/locales/arSD.js +4 -4
  95. package/legacy/locales/beBY.js +4 -4
  96. package/legacy/locales/bgBG.js +4 -4
  97. package/legacy/locales/csCZ.js +25 -27
  98. package/legacy/locales/daDK.js +4 -4
  99. package/legacy/locales/deDE.js +25 -27
  100. package/legacy/locales/elGR.js +70 -79
  101. package/legacy/locales/esES.js +4 -4
  102. package/legacy/locales/faIR.js +4 -4
  103. package/legacy/locales/fiFI.js +4 -4
  104. package/legacy/locales/heIL.js +4 -4
  105. package/legacy/locales/huHU.js +4 -4
  106. package/legacy/locales/itIT.js +4 -4
  107. package/legacy/locales/jaJP.js +4 -4
  108. package/legacy/locales/koKR.js +4 -4
  109. package/legacy/locales/nbNO.js +4 -4
  110. package/legacy/locales/plPL.js +4 -4
  111. package/legacy/locales/ptBR.js +4 -4
  112. package/legacy/locales/roRO.js +4 -4
  113. package/legacy/locales/ruRU.js +4 -4
  114. package/legacy/locales/skSK.js +4 -4
  115. package/legacy/locales/svSE.js +4 -4
  116. package/legacy/locales/trTR.js +16 -17
  117. package/legacy/locales/ukUA.js +4 -4
  118. package/legacy/locales/urPK.js +4 -4
  119. package/legacy/locales/viVN.js +4 -4
  120. package/legacy/locales/zhCN.js +4 -4
  121. package/legacy/locales/zhTW.js +4 -4
  122. package/legacy/utils/EventManager.js +2 -2
  123. package/legacy/utils/Store.js +34 -0
  124. package/legacy/utils/doesSupportPreventScroll.js +13 -0
  125. package/legacy/utils/fastMemo.js +5 -0
  126. package/legacy/utils/fastObjectShallowCompare.js +32 -0
  127. package/legacy/utils/keyboardUtils.js +4 -2
  128. package/locales/arSD.js +4 -4
  129. package/locales/beBY.js +4 -4
  130. package/locales/bgBG.js +4 -4
  131. package/locales/csCZ.js +25 -27
  132. package/locales/daDK.js +4 -4
  133. package/locales/deDE.js +25 -27
  134. package/locales/elGR.js +66 -79
  135. package/locales/esES.js +4 -4
  136. package/locales/faIR.js +4 -4
  137. package/locales/fiFI.js +4 -4
  138. package/locales/heIL.js +4 -4
  139. package/locales/huHU.js +4 -4
  140. package/locales/itIT.js +4 -4
  141. package/locales/jaJP.js +4 -4
  142. package/locales/koKR.js +4 -4
  143. package/locales/nbNO.js +4 -4
  144. package/locales/plPL.js +4 -4
  145. package/locales/ptBR.js +4 -4
  146. package/locales/roRO.js +4 -4
  147. package/locales/ruRU.js +4 -4
  148. package/locales/skSK.js +4 -4
  149. package/locales/svSE.js +4 -4
  150. package/locales/trTR.js +16 -17
  151. package/locales/ukUA.js +4 -4
  152. package/locales/urPK.js +4 -4
  153. package/locales/viVN.js +4 -4
  154. package/locales/zhCN.js +4 -4
  155. package/locales/zhTW.js +4 -4
  156. package/models/api/gridCoreApi.d.ts +6 -0
  157. package/models/colDef/gridColDef.d.ts +4 -3
  158. package/models/colDef/gridColType.d.ts +3 -1
  159. package/models/events/gridEventLookup.d.ts +11 -3
  160. package/modern/components/GridColumnHeaders.js +3 -1
  161. package/modern/components/GridRow.js +22 -69
  162. package/modern/components/cell/GridCell.js +421 -45
  163. package/modern/components/cell/index.js +1 -1
  164. package/modern/components/containers/GridRootStyles.js +38 -17
  165. package/modern/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
  166. package/modern/components/panel/GridColumnsPanel.js +14 -0
  167. package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  168. package/modern/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  169. package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  170. package/modern/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  171. package/modern/components/panel/filterPanel/GridFilterPanel.js +8 -0
  172. package/modern/components/toolbar/GridToolbar.js +2 -2
  173. package/modern/components/virtualization/GridVirtualScroller.js +4 -9
  174. package/modern/components/virtualization/GridVirtualScrollerContent.js +10 -20
  175. package/modern/constants/defaultGridSlotsComponents.js +6 -2
  176. package/modern/constants/gridClasses.js +1 -1
  177. package/modern/constants/localeTextConstants.js +4 -4
  178. package/modern/hooks/core/useGridApiInitialization.js +4 -1
  179. package/modern/hooks/core/useGridStateInitialization.js +2 -9
  180. package/modern/hooks/features/clipboard/useGridClipboard.js +1 -4
  181. package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +9 -3
  182. package/modern/hooks/features/editing/useGridCellEditing.js +5 -3
  183. package/modern/hooks/features/editing/useGridRowEditing.js +14 -6
  184. package/modern/hooks/features/filter/gridFilterUtils.js +17 -12
  185. package/modern/hooks/features/filter/useGridFilter.js +4 -2
  186. package/modern/hooks/features/focus/useGridFocus.js +9 -4
  187. package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +2 -3
  188. package/modern/hooks/features/rows/useGridParamsApi.js +7 -15
  189. package/modern/hooks/features/rows/useGridRowsMeta.js +1 -1
  190. package/modern/hooks/features/sorting/useGridSorting.js +2 -1
  191. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +42 -40
  192. package/modern/hooks/utils/index.js +1 -1
  193. package/modern/hooks/utils/useGridSelector.js +37 -6
  194. package/modern/hooks/utils/useLazyRef.js +9 -0
  195. package/modern/hooks/utils/useOnMount.js +7 -0
  196. package/modern/index.js +1 -1
  197. package/modern/locales/arSD.js +4 -4
  198. package/modern/locales/beBY.js +4 -4
  199. package/modern/locales/bgBG.js +4 -4
  200. package/modern/locales/csCZ.js +25 -27
  201. package/modern/locales/daDK.js +4 -4
  202. package/modern/locales/deDE.js +25 -27
  203. package/modern/locales/elGR.js +66 -79
  204. package/modern/locales/esES.js +4 -4
  205. package/modern/locales/faIR.js +4 -4
  206. package/modern/locales/fiFI.js +4 -4
  207. package/modern/locales/heIL.js +4 -4
  208. package/modern/locales/huHU.js +4 -4
  209. package/modern/locales/itIT.js +4 -4
  210. package/modern/locales/jaJP.js +4 -4
  211. package/modern/locales/koKR.js +4 -4
  212. package/modern/locales/nbNO.js +4 -4
  213. package/modern/locales/plPL.js +4 -4
  214. package/modern/locales/ptBR.js +4 -4
  215. package/modern/locales/roRO.js +4 -4
  216. package/modern/locales/ruRU.js +4 -4
  217. package/modern/locales/skSK.js +4 -4
  218. package/modern/locales/svSE.js +4 -4
  219. package/modern/locales/trTR.js +16 -17
  220. package/modern/locales/ukUA.js +4 -4
  221. package/modern/locales/urPK.js +4 -4
  222. package/modern/locales/viVN.js +4 -4
  223. package/modern/locales/zhCN.js +4 -4
  224. package/modern/locales/zhTW.js +4 -4
  225. package/modern/utils/EventManager.js +2 -2
  226. package/modern/utils/Store.js +24 -0
  227. package/modern/utils/doesSupportPreventScroll.js +13 -0
  228. package/modern/utils/fastMemo.js +5 -0
  229. package/modern/utils/fastObjectShallowCompare.js +32 -0
  230. package/modern/utils/keyboardUtils.js +4 -2
  231. package/node/components/GridColumnHeaders.js +4 -2
  232. package/node/components/GridRow.js +22 -69
  233. package/node/components/cell/GridCell.js +424 -47
  234. package/node/components/cell/index.js +17 -10
  235. package/node/components/containers/GridRootStyles.js +38 -17
  236. package/node/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
  237. package/node/components/panel/GridColumnsPanel.js +14 -0
  238. package/node/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  239. package/node/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  240. package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  241. package/node/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  242. package/node/components/panel/filterPanel/GridFilterPanel.js +8 -0
  243. package/node/components/toolbar/GridToolbar.js +2 -2
  244. package/node/components/virtualization/GridVirtualScroller.js +4 -9
  245. package/node/components/virtualization/GridVirtualScrollerContent.js +10 -20
  246. package/node/constants/defaultGridSlotsComponents.js +4 -1
  247. package/node/constants/gridClasses.js +1 -1
  248. package/node/constants/localeTextConstants.js +4 -4
  249. package/node/hooks/core/useGridApiInitialization.js +4 -1
  250. package/node/hooks/core/useGridStateInitialization.js +2 -9
  251. package/node/hooks/features/clipboard/useGridClipboard.js +1 -4
  252. package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +8 -2
  253. package/node/hooks/features/editing/useGridCellEditing.js +5 -3
  254. package/node/hooks/features/editing/useGridRowEditing.js +14 -6
  255. package/node/hooks/features/filter/gridFilterUtils.js +17 -12
  256. package/node/hooks/features/filter/useGridFilter.js +7 -5
  257. package/node/hooks/features/focus/useGridFocus.js +9 -4
  258. package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +2 -3
  259. package/node/hooks/features/rows/useGridParamsApi.js +9 -15
  260. package/node/hooks/features/rows/useGridRowsMeta.js +1 -1
  261. package/node/hooks/features/sorting/useGridSorting.js +2 -1
  262. package/node/hooks/features/virtualization/useGridVirtualScroller.js +42 -38
  263. package/node/hooks/utils/index.js +14 -10
  264. package/node/hooks/utils/useGridSelector.js +41 -7
  265. package/node/hooks/utils/useLazyRef.js +17 -0
  266. package/node/hooks/utils/useOnMount.js +15 -0
  267. package/node/index.js +1 -1
  268. package/node/locales/arSD.js +4 -4
  269. package/node/locales/beBY.js +4 -4
  270. package/node/locales/bgBG.js +4 -4
  271. package/node/locales/csCZ.js +25 -27
  272. package/node/locales/daDK.js +4 -4
  273. package/node/locales/deDE.js +25 -27
  274. package/node/locales/elGR.js +66 -79
  275. package/node/locales/esES.js +4 -4
  276. package/node/locales/faIR.js +4 -4
  277. package/node/locales/fiFI.js +4 -4
  278. package/node/locales/heIL.js +4 -4
  279. package/node/locales/huHU.js +4 -4
  280. package/node/locales/itIT.js +4 -4
  281. package/node/locales/jaJP.js +4 -4
  282. package/node/locales/koKR.js +4 -4
  283. package/node/locales/nbNO.js +4 -4
  284. package/node/locales/plPL.js +4 -4
  285. package/node/locales/ptBR.js +4 -4
  286. package/node/locales/roRO.js +4 -4
  287. package/node/locales/ruRU.js +4 -4
  288. package/node/locales/skSK.js +4 -4
  289. package/node/locales/svSE.js +4 -4
  290. package/node/locales/trTR.js +16 -17
  291. package/node/locales/ukUA.js +4 -4
  292. package/node/locales/urPK.js +4 -4
  293. package/node/locales/viVN.js +4 -4
  294. package/node/locales/zhCN.js +4 -4
  295. package/node/locales/zhTW.js +4 -4
  296. package/node/utils/EventManager.js +2 -2
  297. package/node/utils/Store.js +31 -0
  298. package/node/utils/doesSupportPreventScroll.js +19 -0
  299. package/node/utils/fastMemo.js +13 -0
  300. package/node/utils/fastObjectShallowCompare.js +38 -0
  301. package/node/utils/keyboardUtils.js +4 -2
  302. package/package.json +1 -1
  303. package/themeAugmentation/overrides.d.ts +1 -1
  304. package/utils/EventManager.js +2 -2
  305. package/utils/Store.d.ts +11 -0
  306. package/utils/Store.js +24 -0
  307. package/utils/doesSupportPreventScroll.d.ts +1 -0
  308. package/utils/doesSupportPreventScroll.js +13 -0
  309. package/utils/fastMemo.d.ts +1 -0
  310. package/utils/fastMemo.js +5 -0
  311. package/utils/fastObjectShallowCompare.d.ts +1 -0
  312. package/utils/fastObjectShallowCompare.js +32 -0
  313. package/utils/keyboardUtils.js +4 -2
@@ -1,3 +1,4 @@
1
+ import { elGR as elGRCore } from '@mui/material/locale';
1
2
  import { getGridLocalization } from '../utils/getGridLocalization';
2
3
  const elGRGrid = {
3
4
  // Root
@@ -19,17 +20,15 @@ const elGRGrid = {
19
20
  toolbarFiltersTooltipShow: 'Εμφάνιση φίλτρων',
20
21
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} ενεργά φίλτρα` : `${count} ενεργό φίλτρο`,
21
22
  // Quick filter toolbar field
22
- // toolbarQuickFilterPlaceholder: 'Search…',
23
- // toolbarQuickFilterLabel: 'Search',
24
- // toolbarQuickFilterDeleteIconLabel: 'Clear',
25
-
23
+ toolbarQuickFilterPlaceholder: 'Αναζήτηση…',
24
+ toolbarQuickFilterLabel: 'Αναζήτηση',
25
+ toolbarQuickFilterDeleteIconLabel: 'Καθαρισμός',
26
26
  // Export selector toolbar button text
27
27
  toolbarExport: 'Εξαγωγή',
28
28
  toolbarExportLabel: 'Εξαγωγή',
29
29
  toolbarExportCSV: 'Λήψη ως CSV',
30
- // toolbarExportPrint: 'Print',
31
- // toolbarExportExcel: 'Download as Excel',
32
-
30
+ toolbarExportPrint: 'Εκτύπωση',
31
+ toolbarExportExcel: 'Λήψη ως Excel',
33
32
  // Columns panel text
34
33
  columnsPanelTextFieldLabel: 'Εύρεση στήλης',
35
34
  columnsPanelTextFieldPlaceholder: 'Επικεφαλίδα στήλης',
@@ -38,9 +37,9 @@ const elGRGrid = {
38
37
  columnsPanelHideAllButton: 'Απόκρυψη όλων',
39
38
  // Filter panel text
40
39
  filterPanelAddFilter: 'Προσθήκη φίλτρου',
41
- // filterPanelRemoveAll: 'Remove all',
40
+ filterPanelRemoveAll: 'Αφαίρεση όλων',
42
41
  filterPanelDeleteIconLabel: 'Διαγραφή',
43
- // filterPanelLogicOperator: 'Logic operator',
42
+ filterPanelLogicOperator: 'Λογικός τελεστής',
44
43
  filterPanelOperator: 'Τελεστές',
45
44
  filterPanelOperatorAnd: 'Καί',
46
45
  filterPanelOperatorOr: 'Ή',
@@ -60,44 +59,41 @@ const elGRGrid = {
60
59
  filterOperatorOnOrBefore: 'είναι ίσο ή πριν',
61
60
  filterOperatorIsEmpty: 'είναι κενό',
62
61
  filterOperatorIsNotEmpty: 'δεν είναι κενό',
63
- // filterOperatorIsAnyOf: 'is any of',
64
- // 'filterOperator=': '=',
65
- // 'filterOperator!=': '!=',
66
- // 'filterOperator>': '>',
67
- // 'filterOperator>=': '>=',
68
- // 'filterOperator<': '<',
69
- // 'filterOperator<=': '<=',
70
-
62
+ filterOperatorIsAnyOf: 'είναι οποιοδήποτε από',
63
+ 'filterOperator=': '=',
64
+ 'filterOperator!=': '!=',
65
+ 'filterOperator>': '>',
66
+ 'filterOperator>=': '>=',
67
+ 'filterOperator<': '<',
68
+ 'filterOperator<=': '<=',
71
69
  // Header filter operators text
72
- // headerFilterOperatorContains: 'Contains',
73
- // headerFilterOperatorEquals: 'Equals',
74
- // headerFilterOperatorStartsWith: 'Starts with',
75
- // headerFilterOperatorEndsWith: 'Ends with',
76
- // headerFilterOperatorIs: 'Is',
77
- // headerFilterOperatorNot: 'Is not',
78
- // headerFilterOperatorAfter: 'Is after',
79
- // headerFilterOperatorOnOrAfter: 'Is on or after',
80
- // headerFilterOperatorBefore: 'Is before',
81
- // headerFilterOperatorOnOrBefore: 'Is on or before',
82
- // headerFilterOperatorIsEmpty: 'Is empty',
83
- // headerFilterOperatorIsNotEmpty: 'Is not empty',
84
- // headerFilterOperatorIsAnyOf: 'Is any of',
85
- // 'headerFilterOperator=': 'Equals',
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',
91
-
70
+ headerFilterOperatorContains: 'Περιέχει',
71
+ headerFilterOperatorEquals: 'Ισούται',
72
+ headerFilterOperatorStartsWith: 'Ξεκινάει με',
73
+ headerFilterOperatorEndsWith: 'Τελειώνει με',
74
+ headerFilterOperatorIs: 'Είναι',
75
+ headerFilterOperatorNot: 'Δεν είναι',
76
+ headerFilterOperatorAfter: 'Είναι μετά',
77
+ headerFilterOperatorOnOrAfter: 'Είναι ίσο ή μετά',
78
+ headerFilterOperatorBefore: 'Είναι πριν',
79
+ headerFilterOperatorOnOrBefore: 'Είναι ίσο ή πριν',
80
+ headerFilterOperatorIsEmpty: 'Είναι κενό',
81
+ headerFilterOperatorIsNotEmpty: 'Δεν είναι κενό',
82
+ headerFilterOperatorIsAnyOf: 'Είναι οποιοδήποτε από',
83
+ 'headerFilterOperator=': 'Ισούται',
84
+ 'headerFilterOperator!=': 'Δεν ισούται',
85
+ 'headerFilterOperator>': 'Μεγαλύτερο από',
86
+ 'headerFilterOperator>=': 'Μεγαλύτερο ή ίσο με',
87
+ 'headerFilterOperator<': 'Μικρότερο από',
88
+ 'headerFilterOperator<=': 'Μικρότερο ή ίσο με',
92
89
  // Filter values text
93
- // filterValueAny: 'any',
94
- // filterValueTrue: 'true',
95
- // filterValueFalse: 'false',
96
-
90
+ filterValueAny: 'οποιοδήποτε',
91
+ filterValueTrue: 'αληθές',
92
+ filterValueFalse: 'ψευδές',
97
93
  // Column menu text
98
94
  columnMenuLabel: 'Μενού',
99
95
  columnMenuShowColumns: 'Εμφάνιση στηλών',
100
- // columnMenuManageColumns: 'Manage columns',
96
+ columnMenuManageColumns: 'Διαχείριση στηλών',
101
97
  columnMenuFilter: 'Φίλτρο',
102
98
  columnMenuHideColumn: 'Απόκρυψη',
103
99
  columnMenuUnsort: 'Απενεργοποίηση ταξινόμησης',
@@ -114,49 +110,40 @@ const elGRGrid = {
114
110
  // Total visible row amount footer text
115
111
  footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} από ${totalCount.toLocaleString()}`,
116
112
  // Checkbox selection text
117
- // checkboxSelectionHeaderName: 'Checkbox selection',
118
- // checkboxSelectionSelectAllRows: 'Select all rows',
119
- // checkboxSelectionUnselectAllRows: 'Unselect all rows',
120
- // checkboxSelectionSelectRow: 'Select row',
121
- // checkboxSelectionUnselectRow: 'Unselect row',
122
-
113
+ checkboxSelectionHeaderName: 'Επιλογή πλαισίου ελέγχου',
114
+ checkboxSelectionSelectAllRows: 'Επιλέξτε όλες τις σειρές',
115
+ checkboxSelectionUnselectAllRows: 'Καταργήση επιλογής όλων των σειρών',
116
+ checkboxSelectionSelectRow: 'Επιλογή γραμμής',
117
+ checkboxSelectionUnselectRow: 'Καταργήση επιλογής γραμμής',
123
118
  // Boolean cell text
124
- // booleanCellTrueLabel: 'yes',
125
- // booleanCellFalseLabel: 'no',
126
-
119
+ booleanCellTrueLabel: 'ναί',
120
+ booleanCellFalseLabel: 'όχι',
127
121
  // Actions cell more text
128
- actionsCellMore: 'περισσότερα'
129
-
122
+ actionsCellMore: 'περισσότερα',
130
123
  // Column pinning text
131
- // pinToLeft: 'Pin to left',
132
- // pinToRight: 'Pin to right',
133
- // unpin: 'Unpin',
134
-
124
+ pinToLeft: 'Καρφιτσώμα στα αριστερά',
125
+ pinToRight: 'Καρφιτσώμα στα δεξιά',
126
+ unpin: 'Ξεκαρφίτσωμα',
135
127
  // Tree Data
136
- // treeDataGroupingHeaderName: 'Group',
137
- // treeDataExpand: 'see children',
138
- // treeDataCollapse: 'hide children',
139
-
128
+ treeDataGroupingHeaderName: 'Ομαδοποίηση',
129
+ treeDataExpand: 'εμφάνιση περιεχομένων',
130
+ treeDataCollapse: 'απόκρυψη περιεχομένων',
140
131
  // Grouping columns
141
- // groupingColumnHeaderName: 'Group',
142
- // groupColumn: name => `Group by ${name}`,
143
- // unGroupColumn: name => `Stop grouping by ${name}`,
144
-
132
+ groupingColumnHeaderName: 'Ομαδοποίηση',
133
+ groupColumn: name => `Ομαδοποίηση κατά ${name}`,
134
+ unGroupColumn: name => `Διακοπή ομαδοποίησης κατά ${name}`,
145
135
  // Master/detail
146
- // detailPanelToggle: 'Detail panel toggle',
147
- // expandDetailPanel: 'Expand',
148
- // collapseDetailPanel: 'Collapse',
149
-
136
+ detailPanelToggle: 'Εναλλαγή πίνακα λεπτομερειών',
137
+ expandDetailPanel: 'Ανάπτυξη',
138
+ collapseDetailPanel: 'Σύμπτυξη',
150
139
  // Row reordering text
151
- // rowReorderingHeaderName: 'Row reordering',
152
-
140
+ rowReorderingHeaderName: 'Αναδιάταξη γραμμών',
153
141
  // Aggregation
154
- // aggregationMenuItemHeader: 'Aggregation',
155
- // aggregationFunctionLabelSum: 'sum',
156
- // aggregationFunctionLabelAvg: 'avg',
157
- // aggregationFunctionLabelMin: 'min',
158
- // aggregationFunctionLabelMax: 'max',
159
- // aggregationFunctionLabelSize: 'size',
142
+ aggregationMenuItemHeader: 'Συσσωμάτωση',
143
+ aggregationFunctionLabelSum: 'άθροισμα',
144
+ aggregationFunctionLabelAvg: 'μέση τιμή',
145
+ aggregationFunctionLabelMin: 'ελάχιστο',
146
+ aggregationFunctionLabelMax: 'μέγιστο',
147
+ aggregationFunctionLabelSize: 'μέγεθος'
160
148
  };
161
-
162
- export const elGR = getGridLocalization(elGRGrid);
149
+ export const elGR = getGridLocalization(elGRGrid, elGRCore);
@@ -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: '任何',
@@ -83,10 +83,10 @@ const zhTWGrid = {
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: '任何值',
@@ -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
  }