@mui/x-data-grid 5.13.0 → 5.15.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 (355) hide show
  1. package/CHANGELOG.md +156 -6
  2. package/DataGrid/DataGrid.js +6 -0
  3. package/DataGrid/useDataGridComponent.js +1 -1
  4. package/DataGrid/useDataGridProps.js +1 -0
  5. package/colDef/gridActionsColDef.js +2 -0
  6. package/colDef/gridBooleanColDef.js +3 -1
  7. package/colDef/gridCheckboxSelectionColDef.js +2 -0
  8. package/colDef/gridDateOperators.d.ts +1 -1
  9. package/colDef/gridDateOperators.js +4 -2
  10. package/colDef/gridNumericOperators.js +4 -2
  11. package/colDef/gridStringColDef.d.ts +3 -0
  12. package/colDef/gridStringColDef.js +6 -0
  13. package/colDef/gridStringOperators.js +4 -2
  14. package/components/GridRow.js +5 -1
  15. package/components/base/GridOverlays.js +4 -1
  16. package/components/cell/GridBooleanCell.d.ts +5 -2
  17. package/components/cell/GridBooleanCell.js +93 -2
  18. package/components/cell/GridEditDateCell.js +5 -1
  19. package/components/cell/index.d.ts +1 -0
  20. package/components/cell/index.js +1 -0
  21. package/components/columnSelection/GridCellCheckboxRenderer.js +12 -1
  22. package/components/containers/GridRoot.js +4 -2
  23. package/components/containers/GridRootStyles.js +10 -0
  24. package/components/toolbar/GridToolbarExport.js +20 -10
  25. package/constants/gridClasses.d.ts +41 -1
  26. package/constants/gridClasses.js +1 -1
  27. package/constants/localeTextConstants.js +9 -2
  28. package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +2 -1
  29. package/hooks/features/columns/useGridColumnSpanning.js +9 -7
  30. package/hooks/features/columns/useGridColumns.d.ts +1 -1
  31. package/hooks/features/columns/useGridColumns.js +13 -6
  32. package/hooks/features/dimensions/useGridDimensions.js +6 -1
  33. package/hooks/features/editRows/useGridCellEditing.new.d.ts +1 -1
  34. package/hooks/features/editRows/useGridCellEditing.new.js +7 -4
  35. package/hooks/features/editRows/useGridEditing.new.d.ts +1 -1
  36. package/hooks/features/editRows/useGridEditing.new.js +4 -0
  37. package/hooks/features/editRows/useGridEditing.old.js +1 -1
  38. package/hooks/features/editRows/useGridRowEditing.new.d.ts +1 -1
  39. package/hooks/features/editRows/useGridRowEditing.new.js +3 -3
  40. package/hooks/features/export/utils.d.ts +1 -1
  41. package/hooks/features/export/utils.js +16 -2
  42. package/hooks/features/filter/gridFilterUtils.js +6 -0
  43. package/hooks/features/filter/useGridFilter.d.ts +1 -1
  44. package/hooks/features/filter/useGridFilter.js +30 -5
  45. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +1 -1
  46. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -34
  47. package/hooks/features/pagination/useGridPage.js +4 -3
  48. package/hooks/features/pagination/useGridPageSize.js +7 -4
  49. package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +1 -1
  50. package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
  51. package/hooks/features/rows/gridRowsSelector.d.ts +14 -0
  52. package/hooks/features/rows/gridRowsSelector.js +20 -1
  53. package/hooks/features/rows/gridRowsState.d.ts +8 -1
  54. package/hooks/features/rows/gridRowsUtils.d.ts +5 -1
  55. package/hooks/features/rows/gridRowsUtils.js +21 -3
  56. package/hooks/features/rows/index.d.ts +1 -1
  57. package/hooks/features/rows/index.js +1 -1
  58. package/hooks/features/rows/useGridRowsMeta.js +19 -4
  59. package/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
  60. package/hooks/features/scroll/useGridScroll.js +7 -2
  61. package/hooks/features/selection/useGridSelection.js +28 -10
  62. package/hooks/features/sorting/gridSortingUtils.d.ts +1 -0
  63. package/hooks/features/sorting/gridSortingUtils.js +10 -11
  64. package/hooks/features/sorting/useGridSorting.d.ts +1 -1
  65. package/hooks/features/sorting/useGridSorting.js +42 -6
  66. package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +12 -1
  67. package/hooks/features/statePersistence/index.d.ts +1 -1
  68. package/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
  69. package/hooks/features/virtualization/useGridVirtualScroller.d.ts +3 -1
  70. package/hooks/features/virtualization/useGridVirtualScroller.js +46 -21
  71. package/hooks/utils/useGridApiEventHandler.d.ts +2 -2
  72. package/hooks/utils/useGridNativeEventListener.d.ts +1 -1
  73. package/hooks/utils/useGridNativeEventListener.js +1 -1
  74. package/index.js +1 -1
  75. package/internals/index.d.ts +6 -3
  76. package/internals/index.js +5 -2
  77. package/legacy/DataGrid/DataGrid.js +6 -0
  78. package/legacy/DataGrid/useDataGridComponent.js +1 -1
  79. package/legacy/DataGrid/useDataGridProps.js +1 -0
  80. package/legacy/colDef/gridActionsColDef.js +2 -0
  81. package/legacy/colDef/gridBooleanColDef.js +3 -1
  82. package/legacy/colDef/gridCheckboxSelectionColDef.js +2 -0
  83. package/legacy/colDef/gridDateOperators.js +4 -2
  84. package/legacy/colDef/gridNumericOperators.js +4 -2
  85. package/legacy/colDef/gridStringColDef.js +6 -0
  86. package/legacy/colDef/gridStringOperators.js +4 -2
  87. package/legacy/components/GridRow.js +5 -1
  88. package/legacy/components/base/GridOverlays.js +4 -1
  89. package/legacy/components/cell/GridBooleanCell.js +93 -2
  90. package/legacy/components/cell/GridEditDateCell.js +5 -1
  91. package/legacy/components/cell/index.js +1 -0
  92. package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +11 -1
  93. package/legacy/components/containers/GridRoot.js +4 -2
  94. package/legacy/components/containers/GridRootStyles.js +3 -3
  95. package/legacy/components/toolbar/GridToolbarExport.js +20 -10
  96. package/legacy/constants/gridClasses.js +1 -1
  97. package/legacy/constants/localeTextConstants.js +9 -2
  98. package/legacy/hooks/features/columns/useGridColumnSpanning.js +9 -7
  99. package/legacy/hooks/features/columns/useGridColumns.js +13 -8
  100. package/legacy/hooks/features/dimensions/useGridDimensions.js +6 -1
  101. package/legacy/hooks/features/editRows/useGridCellEditing.new.js +7 -4
  102. package/legacy/hooks/features/editRows/useGridEditing.new.js +4 -0
  103. package/legacy/hooks/features/editRows/useGridEditing.old.js +1 -1
  104. package/legacy/hooks/features/editRows/useGridRowEditing.new.js +3 -3
  105. package/legacy/hooks/features/export/utils.js +21 -2
  106. package/legacy/hooks/features/filter/gridFilterUtils.js +6 -0
  107. package/legacy/hooks/features/filter/useGridFilter.js +30 -5
  108. package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +47 -34
  109. package/legacy/hooks/features/pagination/useGridPage.js +4 -3
  110. package/legacy/hooks/features/pagination/useGridPageSize.js +7 -4
  111. package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
  112. package/legacy/hooks/features/rows/gridRowsSelector.js +23 -0
  113. package/legacy/hooks/features/rows/gridRowsUtils.js +21 -3
  114. package/legacy/hooks/features/rows/index.js +1 -1
  115. package/legacy/hooks/features/rows/useGridRowsMeta.js +19 -4
  116. package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
  117. package/legacy/hooks/features/scroll/useGridScroll.js +7 -2
  118. package/legacy/hooks/features/selection/useGridSelection.js +30 -12
  119. package/legacy/hooks/features/sorting/gridSortingUtils.js +11 -12
  120. package/legacy/hooks/features/sorting/useGridSorting.js +42 -6
  121. package/legacy/hooks/features/statePersistence/useGridStatePersistence.js +2 -1
  122. package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +51 -25
  123. package/legacy/hooks/utils/useGridNativeEventListener.js +1 -1
  124. package/legacy/index.js +1 -1
  125. package/legacy/internals/index.js +5 -2
  126. package/legacy/locales/arSD.js +8 -1
  127. package/legacy/locales/bgBG.js +8 -1
  128. package/legacy/locales/csCZ.js +8 -1
  129. package/legacy/locales/daDK.js +8 -1
  130. package/legacy/locales/deDE.js +12 -5
  131. package/legacy/locales/elGR.js +8 -1
  132. package/legacy/locales/esES.js +8 -1
  133. package/legacy/locales/faIR.js +8 -1
  134. package/legacy/locales/fiFI.js +8 -1
  135. package/legacy/locales/frFR.js +18 -11
  136. package/legacy/locales/heIL.js +9 -2
  137. package/legacy/locales/huHU.js +8 -1
  138. package/legacy/locales/index.js +2 -1
  139. package/legacy/locales/itIT.js +8 -1
  140. package/legacy/locales/jaJP.js +11 -4
  141. package/legacy/locales/koKR.js +8 -1
  142. package/legacy/locales/nbNO.js +9 -2
  143. package/legacy/locales/nlNL.js +21 -14
  144. package/legacy/locales/plPL.js +8 -1
  145. package/legacy/locales/ptBR.js +17 -10
  146. package/legacy/locales/roRO.js +12 -5
  147. package/legacy/locales/ruRU.js +8 -1
  148. package/legacy/locales/skSK.js +9 -2
  149. package/legacy/locales/svSE.js +9 -2
  150. package/legacy/locales/trTR.js +8 -1
  151. package/legacy/locales/ukUA.js +8 -1
  152. package/legacy/locales/viVN.js +8 -1
  153. package/legacy/locales/zhCN.js +38 -27
  154. package/legacy/locales/zhTW.js +135 -0
  155. package/legacy/models/events/gridEvents.js +1 -0
  156. package/locales/arSD.js +8 -1
  157. package/locales/bgBG.js +8 -1
  158. package/locales/csCZ.js +8 -1
  159. package/locales/daDK.js +8 -1
  160. package/locales/deDE.js +12 -5
  161. package/locales/elGR.js +8 -1
  162. package/locales/esES.js +8 -1
  163. package/locales/faIR.js +8 -1
  164. package/locales/fiFI.js +8 -1
  165. package/locales/frFR.js +18 -11
  166. package/locales/heIL.js +9 -2
  167. package/locales/huHU.js +8 -1
  168. package/locales/index.d.ts +1 -0
  169. package/locales/index.js +2 -1
  170. package/locales/itIT.js +8 -1
  171. package/locales/jaJP.js +11 -4
  172. package/locales/koKR.js +8 -1
  173. package/locales/nbNO.js +9 -2
  174. package/locales/nlNL.js +21 -14
  175. package/locales/plPL.js +8 -1
  176. package/locales/ptBR.js +17 -10
  177. package/locales/roRO.js +12 -5
  178. package/locales/ruRU.js +8 -1
  179. package/locales/skSK.js +9 -2
  180. package/locales/svSE.js +9 -2
  181. package/locales/trTR.js +8 -1
  182. package/locales/ukUA.js +8 -1
  183. package/locales/viVN.js +8 -1
  184. package/locales/zhCN.js +34 -27
  185. package/locales/zhTW.d.ts +2 -0
  186. package/locales/zhTW.js +123 -0
  187. package/models/api/gridColumnSpanning.d.ts +2 -0
  188. package/models/api/gridLocaleTextApi.d.ts +8 -2
  189. package/models/api/gridSelectionApi.d.ts +6 -0
  190. package/models/events/gridEvents.d.ts +1 -0
  191. package/models/events/gridEvents.js +1 -0
  192. package/models/gridFilterOperator.d.ts +6 -0
  193. package/models/gridRows.d.ts +15 -1
  194. package/models/params/gridCellParams.d.ts +4 -4
  195. package/models/props/DataGridProps.d.ts +5 -0
  196. package/modern/DataGrid/DataGrid.js +6 -0
  197. package/modern/DataGrid/useDataGridComponent.js +1 -1
  198. package/modern/DataGrid/useDataGridProps.js +1 -0
  199. package/modern/colDef/gridActionsColDef.js +2 -0
  200. package/modern/colDef/gridBooleanColDef.js +3 -1
  201. package/modern/colDef/gridCheckboxSelectionColDef.js +2 -0
  202. package/modern/colDef/gridDateOperators.js +4 -2
  203. package/modern/colDef/gridNumericOperators.js +4 -2
  204. package/modern/colDef/gridStringColDef.js +6 -0
  205. package/modern/colDef/gridStringOperators.js +4 -2
  206. package/modern/components/GridRow.js +5 -1
  207. package/modern/components/base/GridOverlays.js +4 -1
  208. package/modern/components/cell/GridBooleanCell.js +93 -2
  209. package/modern/components/cell/GridEditDateCell.js +5 -1
  210. package/modern/components/cell/index.js +1 -0
  211. package/modern/components/columnSelection/GridCellCheckboxRenderer.js +12 -1
  212. package/modern/components/containers/GridRoot.js +4 -2
  213. package/modern/components/containers/GridRootStyles.js +10 -0
  214. package/modern/components/toolbar/GridToolbarExport.js +20 -10
  215. package/modern/constants/gridClasses.js +1 -1
  216. package/modern/constants/localeTextConstants.js +9 -2
  217. package/modern/hooks/features/columns/useGridColumnSpanning.js +9 -7
  218. package/modern/hooks/features/columns/useGridColumns.js +10 -5
  219. package/modern/hooks/features/dimensions/useGridDimensions.js +6 -1
  220. package/modern/hooks/features/editRows/useGridCellEditing.new.js +5 -4
  221. package/modern/hooks/features/editRows/useGridEditing.new.js +4 -0
  222. package/modern/hooks/features/editRows/useGridEditing.old.js +1 -1
  223. package/modern/hooks/features/editRows/useGridRowEditing.new.js +3 -3
  224. package/modern/hooks/features/export/utils.js +10 -2
  225. package/modern/hooks/features/filter/gridFilterUtils.js +6 -0
  226. package/modern/hooks/features/filter/useGridFilter.js +25 -4
  227. package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -30
  228. package/modern/hooks/features/pagination/useGridPage.js +4 -3
  229. package/modern/hooks/features/pagination/useGridPageSize.js +7 -4
  230. package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +8 -4
  231. package/modern/hooks/features/rows/gridRowsSelector.js +18 -1
  232. package/modern/hooks/features/rows/gridRowsUtils.js +19 -3
  233. package/modern/hooks/features/rows/index.js +1 -1
  234. package/modern/hooks/features/rows/useGridRowsMeta.js +17 -4
  235. package/modern/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
  236. package/modern/hooks/features/scroll/useGridScroll.js +5 -2
  237. package/modern/hooks/features/selection/useGridSelection.js +28 -10
  238. package/modern/hooks/features/sorting/gridSortingUtils.js +10 -11
  239. package/modern/hooks/features/sorting/useGridSorting.js +38 -6
  240. package/modern/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
  241. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +41 -20
  242. package/modern/hooks/utils/useGridNativeEventListener.js +1 -1
  243. package/modern/index.js +1 -1
  244. package/modern/internals/index.js +5 -2
  245. package/modern/locales/arSD.js +8 -1
  246. package/modern/locales/bgBG.js +8 -1
  247. package/modern/locales/csCZ.js +8 -1
  248. package/modern/locales/daDK.js +8 -1
  249. package/modern/locales/deDE.js +12 -5
  250. package/modern/locales/elGR.js +8 -1
  251. package/modern/locales/esES.js +8 -1
  252. package/modern/locales/faIR.js +8 -1
  253. package/modern/locales/fiFI.js +8 -1
  254. package/modern/locales/frFR.js +18 -11
  255. package/modern/locales/heIL.js +9 -2
  256. package/modern/locales/huHU.js +8 -1
  257. package/modern/locales/index.js +2 -1
  258. package/modern/locales/itIT.js +8 -1
  259. package/modern/locales/jaJP.js +11 -4
  260. package/modern/locales/koKR.js +8 -1
  261. package/modern/locales/nbNO.js +9 -2
  262. package/modern/locales/nlNL.js +21 -14
  263. package/modern/locales/plPL.js +8 -1
  264. package/modern/locales/ptBR.js +17 -10
  265. package/modern/locales/roRO.js +12 -5
  266. package/modern/locales/ruRU.js +8 -1
  267. package/modern/locales/skSK.js +9 -2
  268. package/modern/locales/svSE.js +9 -2
  269. package/modern/locales/trTR.js +8 -1
  270. package/modern/locales/ukUA.js +8 -1
  271. package/modern/locales/viVN.js +8 -1
  272. package/modern/locales/zhCN.js +34 -27
  273. package/modern/locales/zhTW.js +123 -0
  274. package/modern/models/events/gridEvents.js +1 -0
  275. package/node/DataGrid/DataGrid.js +6 -0
  276. package/node/DataGrid/useDataGridComponent.js +1 -1
  277. package/node/DataGrid/useDataGridProps.js +1 -0
  278. package/node/colDef/gridActionsColDef.js +2 -0
  279. package/node/colDef/gridBooleanColDef.js +3 -1
  280. package/node/colDef/gridCheckboxSelectionColDef.js +2 -0
  281. package/node/colDef/gridDateOperators.js +4 -2
  282. package/node/colDef/gridNumericOperators.js +4 -2
  283. package/node/colDef/gridStringColDef.js +5 -0
  284. package/node/colDef/gridStringOperators.js +4 -2
  285. package/node/components/GridRow.js +5 -1
  286. package/node/components/base/GridOverlays.js +4 -1
  287. package/node/components/cell/GridBooleanCell.js +93 -2
  288. package/node/components/cell/GridEditDateCell.js +7 -1
  289. package/node/components/cell/index.js +13 -0
  290. package/node/components/columnSelection/GridCellCheckboxRenderer.js +12 -1
  291. package/node/components/containers/GridRoot.js +3 -1
  292. package/node/components/containers/GridRootStyles.js +10 -0
  293. package/node/components/toolbar/GridToolbarExport.js +16 -10
  294. package/node/constants/gridClasses.js +1 -1
  295. package/node/constants/localeTextConstants.js +9 -2
  296. package/node/hooks/features/columns/useGridColumnSpanning.js +9 -7
  297. package/node/hooks/features/columns/useGridColumns.js +13 -6
  298. package/node/hooks/features/dimensions/useGridDimensions.js +7 -1
  299. package/node/hooks/features/editRows/useGridCellEditing.new.js +7 -4
  300. package/node/hooks/features/editRows/useGridEditing.new.js +4 -0
  301. package/node/hooks/features/editRows/useGridEditing.old.js +1 -1
  302. package/node/hooks/features/editRows/useGridRowEditing.new.js +3 -3
  303. package/node/hooks/features/export/utils.js +17 -2
  304. package/node/hooks/features/filter/gridFilterUtils.js +7 -0
  305. package/node/hooks/features/filter/useGridFilter.js +30 -5
  306. package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +43 -34
  307. package/node/hooks/features/pagination/useGridPage.js +4 -3
  308. package/node/hooks/features/pagination/useGridPageSize.js +8 -4
  309. package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
  310. package/node/hooks/features/rows/gridRowsSelector.js +24 -2
  311. package/node/hooks/features/rows/gridRowsUtils.js +23 -2
  312. package/node/hooks/features/rows/index.js +70 -12
  313. package/node/hooks/features/rows/useGridRowsMeta.js +20 -4
  314. package/node/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
  315. package/node/hooks/features/scroll/useGridScroll.js +7 -1
  316. package/node/hooks/features/selection/useGridSelection.js +28 -10
  317. package/node/hooks/features/sorting/gridSortingUtils.js +10 -11
  318. package/node/hooks/features/sorting/useGridSorting.js +42 -6
  319. package/node/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
  320. package/node/hooks/features/virtualization/useGridVirtualScroller.js +46 -21
  321. package/node/hooks/utils/useGridNativeEventListener.js +1 -1
  322. package/node/index.js +1 -1
  323. package/node/internals/index.js +46 -0
  324. package/node/locales/arSD.js +8 -1
  325. package/node/locales/bgBG.js +8 -1
  326. package/node/locales/csCZ.js +8 -1
  327. package/node/locales/daDK.js +8 -1
  328. package/node/locales/deDE.js +12 -5
  329. package/node/locales/elGR.js +8 -1
  330. package/node/locales/esES.js +8 -1
  331. package/node/locales/faIR.js +8 -1
  332. package/node/locales/fiFI.js +8 -1
  333. package/node/locales/frFR.js +18 -11
  334. package/node/locales/heIL.js +9 -2
  335. package/node/locales/huHU.js +8 -1
  336. package/node/locales/index.js +13 -0
  337. package/node/locales/itIT.js +8 -1
  338. package/node/locales/jaJP.js +11 -4
  339. package/node/locales/koKR.js +8 -1
  340. package/node/locales/nbNO.js +9 -2
  341. package/node/locales/nlNL.js +21 -14
  342. package/node/locales/plPL.js +8 -1
  343. package/node/locales/ptBR.js +17 -10
  344. package/node/locales/roRO.js +12 -5
  345. package/node/locales/ruRU.js +8 -1
  346. package/node/locales/skSK.js +9 -2
  347. package/node/locales/svSE.js +9 -2
  348. package/node/locales/trTR.js +8 -1
  349. package/node/locales/ukUA.js +8 -1
  350. package/node/locales/viVN.js +8 -1
  351. package/node/locales/zhCN.js +34 -27
  352. package/node/locales/zhTW.js +133 -0
  353. package/node/models/events/gridEvents.js +1 -0
  354. package/package.json +2 -2
  355. package/utils/getGridLocalization.d.ts +1 -1
@@ -30,7 +30,7 @@ const faIRGrid = {
30
30
  toolbarFiltersTooltipShow: 'نمایش فیلترها',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} فیلترهای فعال` : `${count} فیلتر فعال`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
33
+ // toolbarQuickFilterPlaceholder: 'Search',
34
34
  // toolbarQuickFilterLabel: 'Search',
35
35
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
36
36
  // Export selector toolbar button text
@@ -120,6 +120,13 @@ const faIRGrid = {
120
120
  expandDetailPanel: 'بازکردن پنل جزئیات',
121
121
  collapseDetailPanel: 'بستن پنل جزئیات' // Row reordering text
122
122
  // rowReorderingHeaderName: 'Row reordering',
123
+ // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const faIR = (0, _getGridLocalization.getGridLocalization)(faIRGrid, _locale.faIR);
@@ -30,7 +30,7 @@ const fiFIGrid = {
30
30
  toolbarFiltersTooltipShow: 'Näytä suodattimet',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktiivista suodatinta` : `${count} aktiivinen suodatin`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
33
+ // toolbarQuickFilterPlaceholder: 'Search',
34
34
  // toolbarQuickFilterLabel: 'Search',
35
35
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
36
36
  // Export selector toolbar button text
@@ -120,6 +120,13 @@ const fiFIGrid = {
120
120
  // collapseDetailPanel: 'Collapse',
121
121
  // Row reordering text
122
122
  // rowReorderingHeaderName: 'Row reordering',
123
+ // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const fiFI = (0, _getGridLocalization.getGridLocalization)(fiFIGrid, _locale.fiFI);
@@ -30,7 +30,7 @@ const frFRGrid = {
30
30
  toolbarFiltersTooltipShow: 'Afficher les filtres',
31
31
  toolbarFiltersTooltipActive: count => count > 1 ? `${count} filtres actifs` : `${count} filtre actif`,
32
32
  // Quick filter toolbar field
33
- toolbarQuickFilterPlaceholder: 'Recherche...',
33
+ toolbarQuickFilterPlaceholder: 'Recherche',
34
34
  toolbarQuickFilterLabel: 'Recherche',
35
35
  toolbarQuickFilterDeleteIconLabel: 'Supprimer',
36
36
  // Export selector toolbar button text
@@ -38,7 +38,7 @@ const frFRGrid = {
38
38
  toolbarExportLabel: 'Exporter',
39
39
  toolbarExportCSV: 'Télécharger en CSV',
40
40
  toolbarExportPrint: 'Imprimer',
41
- // toolbarExportExcel: 'Download as Excel',
41
+ toolbarExportExcel: 'Télécharger pour Excel',
42
42
  // Columns panel text
43
43
  columnsPanelTextFieldLabel: 'Chercher colonne',
44
44
  columnsPanelTextFieldPlaceholder: 'Titre de la colonne',
@@ -94,10 +94,10 @@ const frFRGrid = {
94
94
  footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} sur ${totalCount.toLocaleString()}`,
95
95
  // Checkbox selection text
96
96
  checkboxSelectionHeaderName: 'Sélection',
97
- // checkboxSelectionSelectAllRows: 'Select all rows',
98
- // checkboxSelectionUnselectAllRows: 'Unselect all rows',
99
- // checkboxSelectionSelectRow: 'Select row',
100
- // checkboxSelectionUnselectRow: 'Unselect row',
97
+ checkboxSelectionSelectAllRows: 'Sélectionner toutes les lignes',
98
+ checkboxSelectionUnselectAllRows: 'Désélectionner toutes les lignes',
99
+ checkboxSelectionSelectRow: 'Sélectionner la ligne',
100
+ checkboxSelectionUnselectRow: 'Désélectionner la ligne',
101
101
  // Boolean cell text
102
102
  booleanCellTrueLabel: 'vrai',
103
103
  booleanCellFalseLabel: 'faux',
@@ -114,12 +114,19 @@ const frFRGrid = {
114
114
  // Grouping columns
115
115
  groupingColumnHeaderName: 'Groupe',
116
116
  groupColumn: name => `Grouper par ${name}`,
117
- unGroupColumn: name => `Arrêter de grouper par ${name}` // Master/detail
118
- // detailPanelToggle: 'Detail panel toggle',
119
- // expandDetailPanel: 'Expand',
120
- // collapseDetailPanel: 'Collapse',
117
+ unGroupColumn: name => `Arrêter de grouper par ${name}`,
118
+ // Master/detail
119
+ detailPanelToggle: 'Afficher/masquer les détails',
120
+ expandDetailPanel: 'Afficher',
121
+ collapseDetailPanel: 'Masquer',
121
122
  // Row reordering text
122
- // rowReorderingHeaderName: 'Row reordering',
123
+ rowReorderingHeaderName: 'Positionnement des lignes' // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const frFR = (0, _getGridLocalization.getGridLocalization)(frFRGrid, _locale.frFR);
@@ -30,7 +30,7 @@ const heILGrid = {
30
30
  toolbarFiltersTooltipShow: 'הצג מסננים',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} מסננים פעילים` : `מסנן אחד פעיל`,
32
32
  // Quick filter toolbar field
33
- toolbarQuickFilterPlaceholder: 'חיפוש...',
33
+ toolbarQuickFilterPlaceholder: 'חיפוש…',
34
34
  toolbarQuickFilterLabel: 'חיפוש',
35
35
  toolbarQuickFilterDeleteIconLabel: 'ניקוי',
36
36
  // Export selector toolbar button text
@@ -120,7 +120,14 @@ const heILGrid = {
120
120
  expandDetailPanel: 'הרחב',
121
121
  collapseDetailPanel: 'כווץ',
122
122
  // Row reordering text
123
- rowReorderingHeaderName: 'סידור שורות'
123
+ rowReorderingHeaderName: 'סידור שורות' // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
130
+
124
131
  };
125
132
  const heIL = (0, _getGridLocalization.getGridLocalization)(heILGrid, _locale.heIL);
126
133
  exports.heIL = heIL;
@@ -30,7 +30,7 @@ const huHUGrid = {
30
30
  toolbarFiltersTooltipShow: 'Szűrők megjelenítése',
31
31
  toolbarFiltersTooltipActive: count => `${count} aktív szűrő`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
33
+ // toolbarQuickFilterPlaceholder: 'Search',
34
34
  // toolbarQuickFilterLabel: 'Search',
35
35
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
36
36
  // Export selector toolbar button text
@@ -120,6 +120,13 @@ const huHUGrid = {
120
120
  expandDetailPanel: 'Kibontás',
121
121
  collapseDetailPanel: 'Összecsukás' // Row reordering text
122
122
  // rowReorderingHeaderName: 'Row reordering',
123
+ // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const huHU = (0, _getGridLocalization.getGridLocalization)(huHUGrid, _locale.huHU);
@@ -366,4 +366,17 @@ Object.keys(_zhCN).forEach(function (key) {
366
366
  return _zhCN[key];
367
367
  }
368
368
  });
369
+ });
370
+
371
+ var _zhTW = require("./zhTW");
372
+
373
+ Object.keys(_zhTW).forEach(function (key) {
374
+ if (key === "default" || key === "__esModule") return;
375
+ if (key in exports && exports[key] === _zhTW[key]) return;
376
+ Object.defineProperty(exports, key, {
377
+ enumerable: true,
378
+ get: function () {
379
+ return _zhTW[key];
380
+ }
381
+ });
369
382
  });
@@ -30,7 +30,7 @@ const itITGrid = {
30
30
  toolbarFiltersTooltipShow: 'Mostra i filtri',
31
31
  toolbarFiltersTooltipActive: count => count > 1 ? `${count} filtri attivi` : `${count} filtro attivo`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
33
+ // toolbarQuickFilterPlaceholder: 'Search',
34
34
  // toolbarQuickFilterLabel: 'Search',
35
35
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
36
36
  // Export selector toolbar button text
@@ -120,6 +120,13 @@ const itITGrid = {
120
120
  // collapseDetailPanel: 'Collapse',
121
121
  // Row reordering text
122
122
  // rowReorderingHeaderName: 'Row reordering',
123
+ // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const itIT = (0, _getGridLocalization.getGridLocalization)(itITGrid, _locale.itIT);
@@ -30,7 +30,7 @@ const jaJPGrid = {
30
30
  toolbarFiltersTooltipShow: 'フィルター表示',
31
31
  toolbarFiltersTooltipActive: count => `${count}件のフィルターを適用中`,
32
32
  // Quick filter toolbar field
33
- toolbarQuickFilterPlaceholder: '検索...',
33
+ toolbarQuickFilterPlaceholder: '検索…',
34
34
  toolbarQuickFilterLabel: '検索',
35
35
  toolbarQuickFilterDeleteIconLabel: 'クリア',
36
36
  // Export selector toolbar button text
@@ -41,7 +41,7 @@ const jaJPGrid = {
41
41
  toolbarExportExcel: 'Excelダウンロード',
42
42
  // Columns panel text
43
43
  columnsPanelTextFieldLabel: '列検索',
44
- columnsPanelTextFieldPlaceholder: '検索クエリを入力...',
44
+ columnsPanelTextFieldPlaceholder: '検索クエリを入力…',
45
45
  columnsPanelDragIconLabel: '列並べ替え',
46
46
  columnsPanelShowAllButton: 'すべて表示',
47
47
  columnsPanelHideAllButton: 'すべて非表示',
@@ -55,7 +55,7 @@ const jaJPGrid = {
55
55
  filterPanelOperatorOr: 'Or',
56
56
  filterPanelColumns: '列',
57
57
  filterPanelInputLabel: '値',
58
- filterPanelInputPlaceholder: '値を入力...',
58
+ filterPanelInputPlaceholder: '値を入力…',
59
59
  // Filter operators text
60
60
  filterOperatorContains: '...を含む',
61
61
  filterOperatorEquals: '...に等しい',
@@ -120,7 +120,14 @@ const jaJPGrid = {
120
120
  expandDetailPanel: '展開',
121
121
  collapseDetailPanel: '折りたたみ',
122
122
  // Row reordering text
123
- rowReorderingHeaderName: '行並び替え'
123
+ rowReorderingHeaderName: '行並び替え' // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
130
+
124
131
  };
125
132
  const jaJP = (0, _getGridLocalization.getGridLocalization)(jaJPGrid, _locale.jaJP);
126
133
  exports.jaJP = jaJP;
@@ -30,7 +30,7 @@ const koKRGrid = {
30
30
  toolbarFiltersTooltipShow: '필터 표시',
31
31
  toolbarFiltersTooltipActive: count => `${count}건의 필터를 적용중`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
33
+ // toolbarQuickFilterPlaceholder: 'Search',
34
34
  // toolbarQuickFilterLabel: 'Search',
35
35
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
36
36
  // Export selector toolbar button text
@@ -120,6 +120,13 @@ const koKRGrid = {
120
120
  // collapseDetailPanel: 'Collapse',
121
121
  // Row reordering text
122
122
  // rowReorderingHeaderName: 'Row reordering',
123
+ // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const koKR = (0, _getGridLocalization.getGridLocalization)(koKRGrid, _locale.koKR);
@@ -30,7 +30,7 @@ const nbNOGrid = {
30
30
  toolbarFiltersTooltipShow: 'Vis filter',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktive filter` : `${count} aktivt filter`,
32
32
  // Quick filter toolbar field
33
- toolbarQuickFilterPlaceholder: 'Søk...',
33
+ toolbarQuickFilterPlaceholder: 'Søk',
34
34
  toolbarQuickFilterLabel: 'Søk',
35
35
  toolbarQuickFilterDeleteIconLabel: 'Slett',
36
36
  // Export selector toolbar button text
@@ -120,7 +120,14 @@ const nbNOGrid = {
120
120
  expandDetailPanel: 'Utvid',
121
121
  collapseDetailPanel: 'Kollaps',
122
122
  // Row reordering text
123
- rowReorderingHeaderName: 'Rad reorganisering'
123
+ rowReorderingHeaderName: 'Rad reorganisering' // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
130
+
124
131
  };
125
132
  const nbNO = (0, _getGridLocalization.getGridLocalization)(nbNOGrid, _locale.nbNO);
126
133
  exports.nbNO = nbNO;
@@ -30,15 +30,15 @@ const nlNLGrid = {
30
30
  toolbarFiltersTooltipShow: 'Toon filters',
31
31
  toolbarFiltersTooltipActive: count => count > 1 ? `${count} actieve filters` : `${count} filter actief`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
34
- // toolbarQuickFilterLabel: 'Search',
35
- // toolbarQuickFilterDeleteIconLabel: 'Clear',
33
+ toolbarQuickFilterPlaceholder: 'Zoeken…',
34
+ toolbarQuickFilterLabel: 'Zoeken',
35
+ toolbarQuickFilterDeleteIconLabel: 'Wissen',
36
36
  // Export selector toolbar button text
37
37
  toolbarExport: 'Exporteren',
38
38
  toolbarExportLabel: 'Exporteren',
39
39
  toolbarExportCSV: 'Exporteer naar CSV',
40
40
  toolbarExportPrint: 'Print',
41
- // toolbarExportExcel: 'Download as Excel',
41
+ toolbarExportExcel: 'Downloaden als Excel-bestand',
42
42
  // Columns panel text
43
43
  columnsPanelTextFieldLabel: 'Zoek kolom',
44
44
  columnsPanelTextFieldPlaceholder: 'Kolomtitel',
@@ -48,7 +48,7 @@ const nlNLGrid = {
48
48
  // Filter panel text
49
49
  filterPanelAddFilter: 'Filter toevoegen',
50
50
  filterPanelDeleteIconLabel: 'Verwijderen',
51
- // filterPanelLinkOperator: 'Logic operator',
51
+ filterPanelLinkOperator: 'Logische operator',
52
52
  filterPanelOperators: 'Operatoren',
53
53
  // TODO v6: rename to filterPanelOperator
54
54
  filterPanelOperatorAnd: 'En',
@@ -69,7 +69,7 @@ const nlNLGrid = {
69
69
  filterOperatorOnOrBefore: 'is gelijk of er voor',
70
70
  filterOperatorIsEmpty: 'is leeg',
71
71
  filterOperatorIsNotEmpty: 'is niet leeg',
72
- // filterOperatorIsAnyOf: 'is any of',
72
+ filterOperatorIsAnyOf: 'is een van',
73
73
  // Filter values text
74
74
  filterValueAny: 'alles',
75
75
  filterValueTrue: 'waar',
@@ -94,10 +94,10 @@ const nlNLGrid = {
94
94
  footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} van ${totalCount.toLocaleString()}`,
95
95
  // Checkbox selection text
96
96
  checkboxSelectionHeaderName: 'Checkbox selectie',
97
- // checkboxSelectionSelectAllRows: 'Select all rows',
98
- // checkboxSelectionUnselectAllRows: 'Unselect all rows',
99
- // checkboxSelectionSelectRow: 'Select row',
100
- // checkboxSelectionUnselectRow: 'Unselect row',
97
+ checkboxSelectionSelectAllRows: 'Alle rijen selecteren',
98
+ checkboxSelectionUnselectAllRows: 'Alle rijen de-selecteren',
99
+ checkboxSelectionSelectRow: 'Rij selecteren',
100
+ checkboxSelectionUnselectRow: 'Rij de-selecteren',
101
101
  // Boolean cell text
102
102
  booleanCellTrueLabel: 'waar',
103
103
  booleanCellFalseLabel: 'onwaar',
@@ -114,12 +114,19 @@ const nlNLGrid = {
114
114
  // Grouping columns
115
115
  groupingColumnHeaderName: 'Groep',
116
116
  groupColumn: name => `Groepeer op ${name}`,
117
- unGroupColumn: name => `Stop groeperen op ${name}` // Master/detail
117
+ unGroupColumn: name => `Stop groeperen op ${name}`,
118
+ // Master/detail
118
119
  // detailPanelToggle: 'Detail panel toggle',
119
- // expandDetailPanel: 'Expand',
120
- // collapseDetailPanel: 'Collapse',
120
+ expandDetailPanel: 'Uitklappen',
121
+ collapseDetailPanel: 'Inklappen',
121
122
  // Row reordering text
122
- // rowReorderingHeaderName: 'Row reordering',
123
+ rowReorderingHeaderName: 'Rijen hersorteren' // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const nlNL = (0, _getGridLocalization.getGridLocalization)(nlNLGrid, _locale.nlNL);
@@ -30,7 +30,7 @@ const plPLGrid = {
30
30
  toolbarFiltersTooltipShow: 'Pokaż filtry',
31
31
  toolbarFiltersTooltipActive: count => `Liczba aktywnych filtrów: ${count}`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
33
+ // toolbarQuickFilterPlaceholder: 'Search',
34
34
  // toolbarQuickFilterLabel: 'Search',
35
35
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
36
36
  // Export selector toolbar button text
@@ -120,6 +120,13 @@ const plPLGrid = {
120
120
  expandDetailPanel: 'Rozwiń',
121
121
  collapseDetailPanel: 'Zwiń' // Row reordering text
122
122
  // rowReorderingHeaderName: 'Row reordering',
123
+ // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const plPL = (0, _getGridLocalization.getGridLocalization)(plPLGrid, _locale.plPL);
@@ -30,14 +30,14 @@ const ptBRGrid = {
30
30
  toolbarFiltersTooltipShow: 'Exibir filtros',
31
31
  toolbarFiltersTooltipActive: count => `${count} ${count !== 1 ? 'filtros' : 'filtro'} ${count !== 1 ? 'ativos' : 'ativo'}`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
34
- // toolbarQuickFilterLabel: 'Search',
35
- // toolbarQuickFilterDeleteIconLabel: 'Clear',
33
+ toolbarQuickFilterPlaceholder: 'Procurar…',
34
+ toolbarQuickFilterLabel: 'Procurar',
35
+ toolbarQuickFilterDeleteIconLabel: 'Limpar',
36
36
  // Export selector toolbar button text
37
37
  toolbarExport: 'Exportar',
38
38
  toolbarExportLabel: 'Exportar',
39
39
  toolbarExportCSV: 'Baixar como CSV',
40
- toolbarExportPrint: 'Print',
40
+ toolbarExportPrint: 'Imprimir',
41
41
  toolbarExportExcel: 'Baixar como Excel',
42
42
  // Columns panel text
43
43
  columnsPanelTextFieldLabel: 'Localizar coluna',
@@ -69,7 +69,7 @@ const ptBRGrid = {
69
69
  filterOperatorOnOrBefore: 'em ou antes de',
70
70
  filterOperatorIsEmpty: 'está vazio',
71
71
  filterOperatorIsNotEmpty: 'não está vazio',
72
- // filterOperatorIsAnyOf: 'is any of',
72
+ filterOperatorIsAnyOf: 'é qualquer um dos',
73
73
  // Filter values text
74
74
  filterValueAny: 'qualquer',
75
75
  filterValueTrue: 'verdadeiro',
@@ -108,9 +108,9 @@ const ptBRGrid = {
108
108
  pinToRight: 'Fixar à direita',
109
109
  unpin: 'Desafixar',
110
110
  // Tree Data
111
- // treeDataGroupingHeaderName: 'Group',
112
- // treeDataExpand: 'see children',
113
- // treeDataCollapse: 'hide children',
111
+ treeDataGroupingHeaderName: 'Grupo',
112
+ treeDataExpand: 'mostrar filhos',
113
+ treeDataCollapse: 'esconder filhos',
114
114
  // Grouping columns
115
115
  groupingColumnHeaderName: 'Grupo',
116
116
  groupColumn: name => `Agrupar por ${name}`,
@@ -118,8 +118,15 @@ const ptBRGrid = {
118
118
  // Master/detail
119
119
  detailPanelToggle: 'Painel de detalhes',
120
120
  expandDetailPanel: 'Expandir',
121
- collapseDetailPanel: 'Esconder' // Row reordering text
122
- // rowReorderingHeaderName: 'Row reordering',
121
+ collapseDetailPanel: 'Esconder',
122
+ // Row reordering text
123
+ rowReorderingHeaderName: 'Reorganizar linhas' // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const ptBR = (0, _getGridLocalization.getGridLocalization)(ptBRGrid, _locale.ptBR);
@@ -30,9 +30,9 @@ const roROGrid = {
30
30
  toolbarFiltersTooltipShow: 'Afișează filtru',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} filtru activ` : `${count} filtru activ`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
34
- // toolbarQuickFilterLabel: 'Search',
35
- // toolbarQuickFilterDeleteIconLabel: 'Clear',
33
+ toolbarQuickFilterPlaceholder: 'Căutare…',
34
+ toolbarQuickFilterLabel: 'Căutare',
35
+ toolbarQuickFilterDeleteIconLabel: 'Ștergere',
36
36
  // Export selector toolbar button text
37
37
  toolbarExport: 'Export',
38
38
  toolbarExportLabel: 'Export',
@@ -116,11 +116,18 @@ const roROGrid = {
116
116
  groupColumn: name => `Grupare după ${name}`,
117
117
  unGroupColumn: name => `Anulare Grupare după ${name}`,
118
118
  // Master/detail
119
- // detailPanelToggle: 'Detail panel toggle',
119
+ detailPanelToggle: 'Comutare panou detalii',
120
120
  expandDetailPanel: 'Extindere',
121
121
  collapseDetailPanel: 'Restrângere',
122
122
  // Row reordering text
123
- rowReorderingHeaderName: 'Reordonare rânduri'
123
+ rowReorderingHeaderName: 'Reordonare rânduri' // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
130
+
124
131
  };
125
132
  const roRO = (0, _getGridLocalization.getGridLocalization)(roROGrid, _locale.roRO);
126
133
  exports.roRO = roRO;
@@ -41,7 +41,7 @@ const ruRUGrid = {
41
41
  return `${count} ${pluralForm}`;
42
42
  },
43
43
  // Quick filter toolbar field
44
- toolbarQuickFilterPlaceholder: 'Поиск...',
44
+ toolbarQuickFilterPlaceholder: 'Поиск…',
45
45
  toolbarQuickFilterLabel: 'Поиск',
46
46
  toolbarQuickFilterDeleteIconLabel: 'Очистить',
47
47
  // Export selector toolbar button text
@@ -153,6 +153,13 @@ const ruRUGrid = {
153
153
  expandDetailPanel: 'Развернуть',
154
154
  collapseDetailPanel: 'Свернуть' // Row reordering text
155
155
  // rowReorderingHeaderName: 'Row reordering',
156
+ // Aggregation
157
+ // aggregationMenuItemHeader: 'Aggregation',
158
+ // aggregationFunctionLabelSum: 'sum',
159
+ // aggregationFunctionLabelAvg: 'avg',
160
+ // aggregationFunctionLabelMin: 'min',
161
+ // aggregationFunctionLabelMax: 'max',
162
+ // aggregationFunctionLabelSize: 'size',
156
163
 
157
164
  };
158
165
  const ruRU = (0, _getGridLocalization.getGridLocalization)(ruRUGrid, _locale.ruRU);
@@ -40,7 +40,7 @@ const skSKGrid = {
40
40
  return `${count} ${pluralForm}`;
41
41
  },
42
42
  // Quick filter toolbar field
43
- toolbarQuickFilterPlaceholder: 'Vyhľadať...',
43
+ toolbarQuickFilterPlaceholder: 'Vyhľadať…',
44
44
  toolbarQuickFilterLabel: 'Vyhľadať',
45
45
  toolbarQuickFilterDeleteIconLabel: 'Vymazať',
46
46
  // Export selector toolbar button text
@@ -155,7 +155,14 @@ const skSKGrid = {
155
155
  expandDetailPanel: 'Rozbaliť',
156
156
  collapseDetailPanel: 'Zbaliť',
157
157
  // Row reordering text
158
- rowReorderingHeaderName: 'Preusporiadávanie riadkov'
158
+ rowReorderingHeaderName: 'Preusporiadávanie riadkov' // Aggregation
159
+ // aggregationMenuItemHeader: 'Aggregation',
160
+ // aggregationFunctionLabelSum: 'sum',
161
+ // aggregationFunctionLabelAvg: 'avg',
162
+ // aggregationFunctionLabelMin: 'min',
163
+ // aggregationFunctionLabelMax: 'max',
164
+ // aggregationFunctionLabelSize: 'size',
165
+
159
166
  };
160
167
  const skSK = (0, _getGridLocalization.getGridLocalization)(skSKGrid, _locale.skSK);
161
168
  exports.skSK = skSK;
@@ -30,7 +30,7 @@ const svSEGrid = {
30
30
  toolbarFiltersTooltipShow: 'Visa filter',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktiva filter` : `${count} aktivt filter`,
32
32
  // Quick filter toolbar field
33
- toolbarQuickFilterPlaceholder: 'Sök...',
33
+ toolbarQuickFilterPlaceholder: 'Sök',
34
34
  toolbarQuickFilterLabel: 'Sök',
35
35
  toolbarQuickFilterDeleteIconLabel: 'Rensa',
36
36
  // Export selector toolbar button text
@@ -120,7 +120,14 @@ const svSEGrid = {
120
120
  expandDetailPanel: 'Expandera',
121
121
  collapseDetailPanel: 'Kollapsa',
122
122
  // Row reordering text
123
- rowReorderingHeaderName: 'Ordna om rader'
123
+ rowReorderingHeaderName: 'Ordna om rader' // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
130
+
124
131
  };
125
132
  const svSE = (0, _getGridLocalization.getGridLocalization)(svSEGrid, _locale.svSE);
126
133
  exports.svSE = svSE;
@@ -30,7 +30,7 @@ const trTRGrid = {
30
30
  toolbarFiltersTooltipShow: 'Filtreleri göster',
31
31
  toolbarFiltersTooltipActive: count => `${count} aktif filtre`,
32
32
  // Quick filter toolbar field
33
- toolbarQuickFilterPlaceholder: 'Ara...',
33
+ toolbarQuickFilterPlaceholder: 'Ara',
34
34
  toolbarQuickFilterLabel: 'Ara',
35
35
  toolbarQuickFilterDeleteIconLabel: 'Temizle',
36
36
  // Export selector toolbar button text
@@ -120,6 +120,13 @@ const trTRGrid = {
120
120
  expandDetailPanel: 'Genişlet',
121
121
  collapseDetailPanel: 'Gizle' // Row reordering text
122
122
  // rowReorderingHeaderName: 'Row reordering',
123
+ // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const trTR = (0, _getGridLocalization.getGridLocalization)(trTRGrid, _locale.trTR);
@@ -47,7 +47,7 @@ const ukUAGrid = {
47
47
  many: 'активних фільтрів'
48
48
  }),
49
49
  // Quick filter toolbar field
50
- // toolbarQuickFilterPlaceholder: 'Search...',
50
+ // toolbarQuickFilterPlaceholder: 'Search',
51
51
  // toolbarQuickFilterLabel: 'Search',
52
52
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
53
53
  // Export selector toolbar button text
@@ -145,6 +145,13 @@ const ukUAGrid = {
145
145
  // collapseDetailPanel: 'Collapse',
146
146
  // Row reordering text
147
147
  // rowReorderingHeaderName: 'Row reordering',
148
+ // Aggregation
149
+ // aggregationMenuItemHeader: 'Aggregation',
150
+ // aggregationFunctionLabelSum: 'sum',
151
+ // aggregationFunctionLabelAvg: 'avg',
152
+ // aggregationFunctionLabelMin: 'min',
153
+ // aggregationFunctionLabelMax: 'max',
154
+ // aggregationFunctionLabelSize: 'size',
148
155
 
149
156
  };
150
157
  const ukUA = (0, _getGridLocalization.getGridLocalization)(ukUAGrid, _locale.ukUA);
@@ -30,7 +30,7 @@ const viVNGrid = {
30
30
  toolbarFiltersTooltipShow: 'Hiện',
31
31
  toolbarFiltersTooltipActive: count => count > 1 ? `${count} bộ lọc hoạt động` : `${count} bộ lọc hoạt động`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
33
+ // toolbarQuickFilterPlaceholder: 'Search',
34
34
  // toolbarQuickFilterLabel: 'Search',
35
35
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
36
36
  // Export selector toolbar button text
@@ -120,6 +120,13 @@ const viVNGrid = {
120
120
  // collapseDetailPanel: 'Collapse',
121
121
  // Row reordering text
122
122
  // rowReorderingHeaderName: 'Row reordering',
123
+ // Aggregation
124
+ // aggregationMenuItemHeader: 'Aggregation',
125
+ // aggregationFunctionLabelSum: 'sum',
126
+ // aggregationFunctionLabelAvg: 'avg',
127
+ // aggregationFunctionLabelMin: 'min',
128
+ // aggregationFunctionLabelMax: 'max',
129
+ // aggregationFunctionLabelSize: 'size',
123
130
 
124
131
  };
125
132
  const viVN = (0, _getGridLocalization.getGridLocalization)(viVNGrid, _locale.viVN);