@mui/x-data-grid 5.13.1 → 5.14.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 (269) hide show
  1. package/CHANGELOG.md +44 -1
  2. package/DataGrid/useDataGridComponent.js +1 -1
  3. package/colDef/gridActionsColDef.js +2 -0
  4. package/colDef/gridBooleanColDef.js +3 -1
  5. package/colDef/gridCheckboxSelectionColDef.js +2 -0
  6. package/colDef/gridDateOperators.d.ts +1 -1
  7. package/colDef/gridStringColDef.d.ts +3 -0
  8. package/colDef/gridStringColDef.js +6 -0
  9. package/components/base/GridOverlays.js +4 -1
  10. package/components/cell/GridBooleanCell.d.ts +5 -2
  11. package/components/cell/GridBooleanCell.js +93 -2
  12. package/components/cell/GridEditDateCell.js +5 -1
  13. package/components/cell/index.d.ts +1 -0
  14. package/components/cell/index.js +1 -0
  15. package/components/columnSelection/GridCellCheckboxRenderer.js +7 -1
  16. package/components/containers/GridRootStyles.js +10 -0
  17. package/components/toolbar/GridToolbarExport.js +20 -10
  18. package/constants/gridClasses.d.ts +25 -1
  19. package/constants/gridClasses.js +1 -1
  20. package/constants/localeTextConstants.js +8 -1
  21. package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +2 -1
  22. package/hooks/features/columns/useGridColumnSpanning.js +9 -7
  23. package/hooks/features/columns/useGridColumns.d.ts +1 -1
  24. package/hooks/features/columns/useGridColumns.js +13 -6
  25. package/hooks/features/export/utils.d.ts +1 -1
  26. package/hooks/features/export/utils.js +9 -2
  27. package/hooks/features/filter/gridFilterUtils.js +6 -0
  28. package/hooks/features/filter/useGridFilter.d.ts +1 -1
  29. package/hooks/features/filter/useGridFilter.js +11 -4
  30. package/hooks/features/pagination/useGridPage.js +4 -3
  31. package/hooks/features/pagination/useGridPageSize.js +4 -3
  32. package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +1 -1
  33. package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
  34. package/hooks/features/rows/gridRowsUtils.d.ts +1 -1
  35. package/hooks/features/selection/useGridSelection.js +24 -10
  36. package/hooks/features/sorting/gridSortingUtils.d.ts +1 -0
  37. package/hooks/features/sorting/gridSortingUtils.js +10 -11
  38. package/hooks/features/sorting/useGridSorting.d.ts +1 -1
  39. package/hooks/features/sorting/useGridSorting.js +34 -6
  40. package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +12 -1
  41. package/hooks/features/statePersistence/index.d.ts +1 -1
  42. package/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
  43. package/hooks/features/virtualization/useGridVirtualScroller.js +3 -4
  44. package/hooks/utils/useGridApiEventHandler.d.ts +2 -2
  45. package/hooks/utils/useGridNativeEventListener.d.ts +1 -1
  46. package/hooks/utils/useGridNativeEventListener.js +1 -1
  47. package/index.js +1 -1
  48. package/internals/index.d.ts +2 -2
  49. package/internals/index.js +2 -2
  50. package/legacy/DataGrid/useDataGridComponent.js +1 -1
  51. package/legacy/colDef/gridActionsColDef.js +2 -0
  52. package/legacy/colDef/gridBooleanColDef.js +3 -1
  53. package/legacy/colDef/gridCheckboxSelectionColDef.js +2 -0
  54. package/legacy/colDef/gridStringColDef.js +6 -0
  55. package/legacy/components/base/GridOverlays.js +4 -1
  56. package/legacy/components/cell/GridBooleanCell.js +93 -2
  57. package/legacy/components/cell/GridEditDateCell.js +5 -1
  58. package/legacy/components/cell/index.js +1 -0
  59. package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +6 -1
  60. package/legacy/components/containers/GridRootStyles.js +3 -3
  61. package/legacy/components/toolbar/GridToolbarExport.js +20 -10
  62. package/legacy/constants/gridClasses.js +1 -1
  63. package/legacy/constants/localeTextConstants.js +8 -1
  64. package/legacy/hooks/features/columns/useGridColumnSpanning.js +9 -7
  65. package/legacy/hooks/features/columns/useGridColumns.js +13 -8
  66. package/legacy/hooks/features/export/utils.js +9 -2
  67. package/legacy/hooks/features/filter/gridFilterUtils.js +6 -0
  68. package/legacy/hooks/features/filter/useGridFilter.js +11 -4
  69. package/legacy/hooks/features/pagination/useGridPage.js +4 -3
  70. package/legacy/hooks/features/pagination/useGridPageSize.js +4 -3
  71. package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
  72. package/legacy/hooks/features/selection/useGridSelection.js +26 -12
  73. package/legacy/hooks/features/sorting/gridSortingUtils.js +11 -12
  74. package/legacy/hooks/features/sorting/useGridSorting.js +34 -6
  75. package/legacy/hooks/features/statePersistence/useGridStatePersistence.js +2 -1
  76. package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +3 -4
  77. package/legacy/hooks/utils/useGridNativeEventListener.js +1 -1
  78. package/legacy/index.js +1 -1
  79. package/legacy/internals/index.js +2 -2
  80. package/legacy/locales/arSD.js +7 -0
  81. package/legacy/locales/bgBG.js +7 -0
  82. package/legacy/locales/csCZ.js +7 -0
  83. package/legacy/locales/daDK.js +7 -0
  84. package/legacy/locales/deDE.js +8 -1
  85. package/legacy/locales/elGR.js +7 -0
  86. package/legacy/locales/esES.js +7 -0
  87. package/legacy/locales/faIR.js +7 -0
  88. package/legacy/locales/fiFI.js +7 -0
  89. package/legacy/locales/frFR.js +8 -1
  90. package/legacy/locales/heIL.js +8 -1
  91. package/legacy/locales/huHU.js +7 -0
  92. package/legacy/locales/index.js +2 -1
  93. package/legacy/locales/itIT.js +7 -0
  94. package/legacy/locales/jaJP.js +8 -1
  95. package/legacy/locales/koKR.js +7 -0
  96. package/legacy/locales/nbNO.js +8 -1
  97. package/legacy/locales/nlNL.js +8 -1
  98. package/legacy/locales/plPL.js +7 -0
  99. package/legacy/locales/ptBR.js +8 -1
  100. package/legacy/locales/roRO.js +8 -1
  101. package/legacy/locales/ruRU.js +7 -0
  102. package/legacy/locales/skSK.js +8 -1
  103. package/legacy/locales/svSE.js +8 -1
  104. package/legacy/locales/trTR.js +7 -0
  105. package/legacy/locales/ukUA.js +7 -0
  106. package/legacy/locales/viVN.js +7 -0
  107. package/legacy/locales/zhCN.js +7 -0
  108. package/legacy/locales/zhTW.js +135 -0
  109. package/legacy/models/events/gridEvents.js +1 -0
  110. package/locales/arSD.js +7 -0
  111. package/locales/bgBG.js +7 -0
  112. package/locales/csCZ.js +7 -0
  113. package/locales/daDK.js +7 -0
  114. package/locales/deDE.js +8 -1
  115. package/locales/elGR.js +7 -0
  116. package/locales/esES.js +7 -0
  117. package/locales/faIR.js +7 -0
  118. package/locales/fiFI.js +7 -0
  119. package/locales/frFR.js +8 -1
  120. package/locales/heIL.js +8 -1
  121. package/locales/huHU.js +7 -0
  122. package/locales/index.d.ts +1 -0
  123. package/locales/index.js +2 -1
  124. package/locales/itIT.js +7 -0
  125. package/locales/jaJP.js +8 -1
  126. package/locales/koKR.js +7 -0
  127. package/locales/nbNO.js +8 -1
  128. package/locales/nlNL.js +8 -1
  129. package/locales/plPL.js +7 -0
  130. package/locales/ptBR.js +8 -1
  131. package/locales/roRO.js +8 -1
  132. package/locales/ruRU.js +7 -0
  133. package/locales/skSK.js +8 -1
  134. package/locales/svSE.js +8 -1
  135. package/locales/trTR.js +7 -0
  136. package/locales/ukUA.js +7 -0
  137. package/locales/viVN.js +7 -0
  138. package/locales/zhCN.js +7 -0
  139. package/locales/zhTW.d.ts +2 -0
  140. package/locales/zhTW.js +123 -0
  141. package/models/api/gridColumnSpanning.d.ts +2 -0
  142. package/models/api/gridLocaleTextApi.d.ts +8 -2
  143. package/models/api/gridSelectionApi.d.ts +6 -0
  144. package/models/events/gridEvents.d.ts +1 -0
  145. package/models/events/gridEvents.js +1 -0
  146. package/models/gridRows.d.ts +10 -1
  147. package/models/params/gridCellParams.d.ts +4 -4
  148. package/modern/DataGrid/useDataGridComponent.js +1 -1
  149. package/modern/colDef/gridActionsColDef.js +2 -0
  150. package/modern/colDef/gridBooleanColDef.js +3 -1
  151. package/modern/colDef/gridCheckboxSelectionColDef.js +2 -0
  152. package/modern/colDef/gridStringColDef.js +6 -0
  153. package/modern/components/base/GridOverlays.js +4 -1
  154. package/modern/components/cell/GridBooleanCell.js +93 -2
  155. package/modern/components/cell/GridEditDateCell.js +5 -1
  156. package/modern/components/cell/index.js +1 -0
  157. package/modern/components/columnSelection/GridCellCheckboxRenderer.js +7 -1
  158. package/modern/components/containers/GridRootStyles.js +10 -0
  159. package/modern/components/toolbar/GridToolbarExport.js +20 -10
  160. package/modern/constants/gridClasses.js +1 -1
  161. package/modern/constants/localeTextConstants.js +8 -1
  162. package/modern/hooks/features/columns/useGridColumnSpanning.js +9 -7
  163. package/modern/hooks/features/columns/useGridColumns.js +10 -5
  164. package/modern/hooks/features/export/utils.js +5 -2
  165. package/modern/hooks/features/filter/gridFilterUtils.js +6 -0
  166. package/modern/hooks/features/filter/useGridFilter.js +8 -3
  167. package/modern/hooks/features/pagination/useGridPage.js +4 -3
  168. package/modern/hooks/features/pagination/useGridPageSize.js +4 -3
  169. package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +8 -4
  170. package/modern/hooks/features/selection/useGridSelection.js +22 -10
  171. package/modern/hooks/features/sorting/gridSortingUtils.js +10 -11
  172. package/modern/hooks/features/sorting/useGridSorting.js +30 -6
  173. package/modern/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
  174. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +3 -4
  175. package/modern/hooks/utils/useGridNativeEventListener.js +1 -1
  176. package/modern/index.js +1 -1
  177. package/modern/internals/index.js +2 -2
  178. package/modern/locales/arSD.js +7 -0
  179. package/modern/locales/bgBG.js +7 -0
  180. package/modern/locales/csCZ.js +7 -0
  181. package/modern/locales/daDK.js +7 -0
  182. package/modern/locales/deDE.js +8 -1
  183. package/modern/locales/elGR.js +7 -0
  184. package/modern/locales/esES.js +7 -0
  185. package/modern/locales/faIR.js +7 -0
  186. package/modern/locales/fiFI.js +7 -0
  187. package/modern/locales/frFR.js +8 -1
  188. package/modern/locales/heIL.js +8 -1
  189. package/modern/locales/huHU.js +7 -0
  190. package/modern/locales/index.js +2 -1
  191. package/modern/locales/itIT.js +7 -0
  192. package/modern/locales/jaJP.js +8 -1
  193. package/modern/locales/koKR.js +7 -0
  194. package/modern/locales/nbNO.js +8 -1
  195. package/modern/locales/nlNL.js +8 -1
  196. package/modern/locales/plPL.js +7 -0
  197. package/modern/locales/ptBR.js +8 -1
  198. package/modern/locales/roRO.js +8 -1
  199. package/modern/locales/ruRU.js +7 -0
  200. package/modern/locales/skSK.js +8 -1
  201. package/modern/locales/svSE.js +8 -1
  202. package/modern/locales/trTR.js +7 -0
  203. package/modern/locales/ukUA.js +7 -0
  204. package/modern/locales/viVN.js +7 -0
  205. package/modern/locales/zhCN.js +7 -0
  206. package/modern/locales/zhTW.js +123 -0
  207. package/modern/models/events/gridEvents.js +1 -0
  208. package/node/DataGrid/useDataGridComponent.js +1 -1
  209. package/node/colDef/gridActionsColDef.js +2 -0
  210. package/node/colDef/gridBooleanColDef.js +3 -1
  211. package/node/colDef/gridCheckboxSelectionColDef.js +2 -0
  212. package/node/colDef/gridStringColDef.js +5 -0
  213. package/node/components/base/GridOverlays.js +4 -1
  214. package/node/components/cell/GridBooleanCell.js +93 -2
  215. package/node/components/cell/GridEditDateCell.js +7 -1
  216. package/node/components/cell/index.js +13 -0
  217. package/node/components/columnSelection/GridCellCheckboxRenderer.js +7 -1
  218. package/node/components/containers/GridRootStyles.js +10 -0
  219. package/node/components/toolbar/GridToolbarExport.js +16 -10
  220. package/node/constants/gridClasses.js +1 -1
  221. package/node/constants/localeTextConstants.js +8 -1
  222. package/node/hooks/features/columns/useGridColumnSpanning.js +9 -7
  223. package/node/hooks/features/columns/useGridColumns.js +13 -6
  224. package/node/hooks/features/export/utils.js +10 -2
  225. package/node/hooks/features/filter/gridFilterUtils.js +7 -0
  226. package/node/hooks/features/filter/useGridFilter.js +11 -4
  227. package/node/hooks/features/pagination/useGridPage.js +4 -3
  228. package/node/hooks/features/pagination/useGridPageSize.js +4 -3
  229. package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
  230. package/node/hooks/features/selection/useGridSelection.js +24 -10
  231. package/node/hooks/features/sorting/gridSortingUtils.js +10 -11
  232. package/node/hooks/features/sorting/useGridSorting.js +34 -6
  233. package/node/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
  234. package/node/hooks/features/virtualization/useGridVirtualScroller.js +3 -4
  235. package/node/hooks/utils/useGridNativeEventListener.js +1 -1
  236. package/node/index.js +1 -1
  237. package/node/internals/index.js +18 -0
  238. package/node/locales/arSD.js +7 -0
  239. package/node/locales/bgBG.js +7 -0
  240. package/node/locales/csCZ.js +7 -0
  241. package/node/locales/daDK.js +7 -0
  242. package/node/locales/deDE.js +8 -1
  243. package/node/locales/elGR.js +7 -0
  244. package/node/locales/esES.js +7 -0
  245. package/node/locales/faIR.js +7 -0
  246. package/node/locales/fiFI.js +7 -0
  247. package/node/locales/frFR.js +8 -1
  248. package/node/locales/heIL.js +8 -1
  249. package/node/locales/huHU.js +7 -0
  250. package/node/locales/index.js +13 -0
  251. package/node/locales/itIT.js +7 -0
  252. package/node/locales/jaJP.js +8 -1
  253. package/node/locales/koKR.js +7 -0
  254. package/node/locales/nbNO.js +8 -1
  255. package/node/locales/nlNL.js +8 -1
  256. package/node/locales/plPL.js +7 -0
  257. package/node/locales/ptBR.js +8 -1
  258. package/node/locales/roRO.js +8 -1
  259. package/node/locales/ruRU.js +7 -0
  260. package/node/locales/skSK.js +8 -1
  261. package/node/locales/svSE.js +8 -1
  262. package/node/locales/trTR.js +7 -0
  263. package/node/locales/ukUA.js +7 -0
  264. package/node/locales/viVN.js +7 -0
  265. package/node/locales/zhCN.js +7 -0
  266. package/node/locales/zhTW.js +133 -0
  267. package/node/models/events/gridEvents.js +1 -0
  268. package/package.json +1 -1
  269. package/utils/getGridLocalization.d.ts +1 -1
@@ -123,6 +123,13 @@ var svSEGrid = {
123
123
  expandDetailPanel: 'Expandera',
124
124
  collapseDetailPanel: 'Kollapsa',
125
125
  // Row reordering text
126
- rowReorderingHeaderName: 'Ordna om rader'
126
+ rowReorderingHeaderName: 'Ordna om rader' // Aggregation
127
+ // aggregationMenuItemHeader: 'Aggregation',
128
+ // aggregationFunctionLabelSum: 'sum',
129
+ // aggregationFunctionLabelAvg: 'avg',
130
+ // aggregationFunctionLabelMin: 'min',
131
+ // aggregationFunctionLabelMax: 'max',
132
+ // aggregationFunctionLabelSize: 'size',
133
+
127
134
  };
128
135
  export var svSE = getGridLocalization(svSEGrid, svSECore);
@@ -123,6 +123,13 @@ var trTRGrid = {
123
123
  expandDetailPanel: 'Genişlet',
124
124
  collapseDetailPanel: 'Gizle' // Row reordering text
125
125
  // rowReorderingHeaderName: 'Row reordering',
126
+ // Aggregation
127
+ // aggregationMenuItemHeader: 'Aggregation',
128
+ // aggregationFunctionLabelSum: 'sum',
129
+ // aggregationFunctionLabelAvg: 'avg',
130
+ // aggregationFunctionLabelMin: 'min',
131
+ // aggregationFunctionLabelMax: 'max',
132
+ // aggregationFunctionLabelSize: 'size',
126
133
 
127
134
  };
128
135
  export var trTR = getGridLocalization(trTRGrid, trTRCore);
@@ -145,6 +145,13 @@ var 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
  export var ukUA = getGridLocalization(ukUAGrid, ukUACore);
@@ -119,6 +119,13 @@ var viVNGrid = {
119
119
  // collapseDetailPanel: 'Collapse',
120
120
  // Row reordering text
121
121
  // rowReorderingHeaderName: 'Row reordering',
122
+ // Aggregation
123
+ // aggregationMenuItemHeader: 'Aggregation',
124
+ // aggregationFunctionLabelSum: 'sum',
125
+ // aggregationFunctionLabelAvg: 'avg',
126
+ // aggregationFunctionLabelMin: 'min',
127
+ // aggregationFunctionLabelMax: 'max',
128
+ // aggregationFunctionLabelSize: 'size',
122
129
 
123
130
  };
124
131
  export var viVN = getGridLocalization(viVNGrid, viVNCore);
@@ -119,6 +119,13 @@ var zhCNGrid = {
119
119
  // collapseDetailPanel: 'Collapse',
120
120
  // Row reordering text
121
121
  // rowReorderingHeaderName: 'Row reordering',
122
+ // Aggregation
123
+ // aggregationMenuItemHeader: 'Aggregation',
124
+ // aggregationFunctionLabelSum: 'sum',
125
+ // aggregationFunctionLabelAvg: 'avg',
126
+ // aggregationFunctionLabelMin: 'min',
127
+ // aggregationFunctionLabelMax: 'max',
128
+ // aggregationFunctionLabelSize: 'size',
122
129
 
123
130
  };
124
131
  export var zhCN = getGridLocalization(zhCNGrid, zhCNCore);
@@ -0,0 +1,135 @@
1
+ import { zhTW as zhTWCore } from '@mui/material/locale';
2
+ import { getGridLocalization } from '../utils/getGridLocalization';
3
+ var zhTWGrid = {
4
+ // Root
5
+ noRowsLabel: '沒有資料',
6
+ noResultsOverlayLabel: '沒有結果',
7
+ errorOverlayDefaultLabel: '發生錯誤',
8
+ // Density selector toolbar button text
9
+ toolbarDensity: '表格密度',
10
+ toolbarDensityLabel: '表格密度',
11
+ toolbarDensityCompact: '緊湊',
12
+ toolbarDensityStandard: '標準',
13
+ toolbarDensityComfortable: '舒適',
14
+ // Columns selector toolbar button text
15
+ toolbarColumns: '欄位',
16
+ toolbarColumnsLabel: '選擇欄位',
17
+ // Filters toolbar button text
18
+ toolbarFilters: '篩選器',
19
+ toolbarFiltersLabel: '顯示篩選器',
20
+ toolbarFiltersTooltipHide: '隱藏篩選器',
21
+ toolbarFiltersTooltipShow: '顯示篩選器',
22
+ toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
23
+ return "".concat(count, " \u500B\u7BE9\u9078\u5668");
24
+ },
25
+ // Quick filter toolbar field
26
+ toolbarQuickFilterPlaceholder: '搜尋...',
27
+ toolbarQuickFilterLabel: '搜尋',
28
+ toolbarQuickFilterDeleteIconLabel: '清除',
29
+ // Export selector toolbar button text
30
+ toolbarExport: '匯出',
31
+ toolbarExportLabel: '匯出',
32
+ toolbarExportCSV: '匯出 CSV',
33
+ toolbarExportPrint: '列印',
34
+ toolbarExportExcel: '匯出 Excel',
35
+ // Columns panel text
36
+ columnsPanelTextFieldLabel: '欄位搜尋',
37
+ columnsPanelTextFieldPlaceholder: '欄位名稱',
38
+ columnsPanelDragIconLabel: '排序欄位',
39
+ columnsPanelShowAllButton: '顯示所有',
40
+ columnsPanelHideAllButton: '隱藏所有',
41
+ // Filter panel text
42
+ filterPanelAddFilter: '增加篩選器',
43
+ filterPanelDeleteIconLabel: '刪除',
44
+ filterPanelLinkOperator: '邏輯運算子',
45
+ filterPanelOperators: '運算子',
46
+ // TODO v6: rename to filterPanelOperator
47
+ filterPanelOperatorAnd: '且',
48
+ filterPanelOperatorOr: '或',
49
+ filterPanelColumns: '欄位',
50
+ filterPanelInputLabel: '值',
51
+ filterPanelInputPlaceholder: '篩選值',
52
+ // Filter operators text
53
+ filterOperatorContains: '包含',
54
+ filterOperatorEquals: '等於',
55
+ filterOperatorStartsWith: '以...開頭',
56
+ filterOperatorEndsWith: '以...結束',
57
+ filterOperatorIs: '為',
58
+ filterOperatorNot: '不為',
59
+ filterOperatorAfter: '...之後',
60
+ filterOperatorOnOrAfter: '...(含)之後',
61
+ filterOperatorBefore: '...之前',
62
+ filterOperatorOnOrBefore: '...(含)之前',
63
+ filterOperatorIsEmpty: '為空',
64
+ filterOperatorIsNotEmpty: '不為空',
65
+ filterOperatorIsAnyOf: '是其中之一',
66
+ // Filter values text
67
+ filterValueAny: '任何值',
68
+ filterValueTrue: '真',
69
+ filterValueFalse: '假',
70
+ // Column menu text
71
+ columnMenuLabel: '選單',
72
+ columnMenuShowColumns: '顯示欄位',
73
+ columnMenuFilter: '篩選器',
74
+ columnMenuHideColumn: '隱藏',
75
+ columnMenuUnsort: '預設排序',
76
+ columnMenuSortAsc: '升序',
77
+ columnMenuSortDesc: '降序',
78
+ // Column header text
79
+ columnHeaderFiltersTooltipActive: function columnHeaderFiltersTooltipActive(count) {
80
+ return "".concat(count, " \u500B\u7BE9\u9078\u5668");
81
+ },
82
+ columnHeaderFiltersLabel: '顯示篩選器',
83
+ columnHeaderSortIconLabel: '排序',
84
+ // Rows selected footer text
85
+ footerRowSelected: function footerRowSelected(count) {
86
+ return "\u5DF2\u9078\u53D6 ".concat(count.toLocaleString(), " \u500B");
87
+ },
88
+ // Total row amount footer text
89
+ footerTotalRows: '總數:',
90
+ // Total visible row amount footer text
91
+ footerTotalVisibleRows: function footerTotalVisibleRows(visibleCount, totalCount) {
92
+ return "".concat(visibleCount.toLocaleString(), " / ").concat(totalCount.toLocaleString());
93
+ },
94
+ // Checkbox selection text
95
+ checkboxSelectionHeaderName: '核取方塊',
96
+ checkboxSelectionSelectAllRows: '全選',
97
+ checkboxSelectionUnselectAllRows: '取消全選',
98
+ checkboxSelectionSelectRow: '選取',
99
+ checkboxSelectionUnselectRow: '取消選取',
100
+ // Boolean cell text
101
+ booleanCellTrueLabel: '真',
102
+ booleanCellFalseLabel: '假',
103
+ // Actions cell more text
104
+ actionsCellMore: '查看更多',
105
+ // Column pinning text
106
+ pinToLeft: '釘選在左側',
107
+ pinToRight: '釘選在右側',
108
+ unpin: '取消釘選',
109
+ // Tree Data
110
+ treeDataGroupingHeaderName: '群組',
111
+ treeDataExpand: '查看子項目',
112
+ treeDataCollapse: '隱藏子項目',
113
+ // Grouping columns
114
+ groupingColumnHeaderName: '群組',
115
+ groupColumn: function groupColumn(name) {
116
+ return "\u4EE5 ".concat(name, " \u5206\u7D44");
117
+ },
118
+ unGroupColumn: function unGroupColumn(name) {
119
+ return "\u53D6\u6D88\u4EE5 ".concat(name, " \u5206\u7D44");
120
+ },
121
+ // Master/detail
122
+ detailPanelToggle: '切換顯示詳細資訊',
123
+ expandDetailPanel: '展開',
124
+ collapseDetailPanel: '摺疊',
125
+ // Row reordering text
126
+ rowReorderingHeaderName: '排序' // Aggregation
127
+ // aggregationMenuItemHeader: 'Aggregation',
128
+ // aggregationFunctionLabelSum: 'sum',
129
+ // aggregationFunctionLabelAvg: 'avg',
130
+ // aggregationFunctionLabelMin: 'min',
131
+ // aggregationFunctionLabelMax: 'max',
132
+ // aggregationFunctionLabelSize: 'size',
133
+
134
+ };
135
+ export var zhTW = getGridLocalization(zhTWGrid, zhTWCore);
@@ -54,6 +54,7 @@ var GridEvents;
54
54
  GridEvents["pageChange"] = "pageChange";
55
55
  GridEvents["pageSizeChange"] = "pageSizeChange";
56
56
  GridEvents["rowGroupingModelChange"] = "rowGroupingModelChange";
57
+ GridEvents["aggregationModelChange"] = "aggregationModelChange";
57
58
  GridEvents["rowsScroll"] = "rowsScroll";
58
59
  GridEvents["rowsScrollEnd"] = "rowsScrollEnd";
59
60
  GridEvents["columnSeparatorMouseDown"] = "columnSeparatorMouseDown";
package/locales/arSD.js CHANGED
@@ -111,6 +111,13 @@ const arSDGrid = {
111
111
  expandDetailPanel: 'توسيع',
112
112
  collapseDetailPanel: 'طوي' // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const arSD = getGridLocalization(arSDGrid, arSDCore);
package/locales/bgBG.js CHANGED
@@ -111,6 +111,13 @@ const bgBGGrid = {
111
111
  expandDetailPanel: 'Разгъване',
112
112
  collapseDetailPanel: 'Свиване' // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const bgBG = getGridLocalization(bgBGGrid, bgBGCore);
package/locales/csCZ.js CHANGED
@@ -146,6 +146,13 @@ const csCZGrid = {
146
146
  // collapseDetailPanel: 'Collapse',
147
147
  // Row reordering text
148
148
  // rowReorderingHeaderName: 'Row reordering',
149
+ // Aggregation
150
+ // aggregationMenuItemHeader: 'Aggregation',
151
+ // aggregationFunctionLabelSum: 'sum',
152
+ // aggregationFunctionLabelAvg: 'avg',
153
+ // aggregationFunctionLabelMin: 'min',
154
+ // aggregationFunctionLabelMax: 'max',
155
+ // aggregationFunctionLabelSize: 'size',
149
156
 
150
157
  };
151
158
  export const csCZ = getGridLocalization(csCZGrid, csCZCore);
package/locales/daDK.js CHANGED
@@ -111,6 +111,13 @@ const daDKGrid = {
111
111
  expandDetailPanel: 'Udvid',
112
112
  collapseDetailPanel: 'Kollaps' // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const daDK = getGridLocalization(daDKGrid, daDKCore);
package/locales/deDE.js CHANGED
@@ -111,6 +111,13 @@ const deDEGrid = {
111
111
  expandDetailPanel: 'Aufklappen',
112
112
  collapseDetailPanel: 'Zuklappen',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: 'Reihen neu ordnen'
114
+ rowReorderingHeaderName: 'Reihen neu ordnen' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const deDE = getGridLocalization(deDEGrid, deDECore);
package/locales/elGR.js CHANGED
@@ -110,6 +110,13 @@ const elGRGrid = {
110
110
  // collapseDetailPanel: 'Collapse',
111
111
  // Row reordering text
112
112
  // rowReorderingHeaderName: 'Row reordering',
113
+ // Aggregation
114
+ // aggregationMenuItemHeader: 'Aggregation',
115
+ // aggregationFunctionLabelSum: 'sum',
116
+ // aggregationFunctionLabelAvg: 'avg',
117
+ // aggregationFunctionLabelMin: 'min',
118
+ // aggregationFunctionLabelMax: 'max',
119
+ // aggregationFunctionLabelSize: 'size',
113
120
 
114
121
  };
115
122
  export const elGR = getGridLocalization(elGRGrid);
package/locales/esES.js CHANGED
@@ -111,6 +111,13 @@ const esESGrid = {
111
111
  // collapseDetailPanel: 'Collapse',
112
112
  // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const esES = getGridLocalization(esESGrid, esESCore);
package/locales/faIR.js CHANGED
@@ -111,6 +111,13 @@ const faIRGrid = {
111
111
  expandDetailPanel: 'بازکردن پنل جزئیات',
112
112
  collapseDetailPanel: 'بستن پنل جزئیات' // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const faIR = getGridLocalization(faIRGrid, faIRCore);
package/locales/fiFI.js CHANGED
@@ -111,6 +111,13 @@ const fiFIGrid = {
111
111
  // collapseDetailPanel: 'Collapse',
112
112
  // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const fiFI = getGridLocalization(fiFIGrid, fiFICore);
package/locales/frFR.js CHANGED
@@ -111,6 +111,13 @@ const frFRGrid = {
111
111
  expandDetailPanel: 'Afficher',
112
112
  collapseDetailPanel: 'Masquer',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: 'Positionnement des lignes'
114
+ rowReorderingHeaderName: 'Positionnement des lignes' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const frFR = getGridLocalization(frFRGrid, frFRCore);
package/locales/heIL.js CHANGED
@@ -111,6 +111,13 @@ const heILGrid = {
111
111
  expandDetailPanel: 'הרחב',
112
112
  collapseDetailPanel: 'כווץ',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: 'סידור שורות'
114
+ rowReorderingHeaderName: 'סידור שורות' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const heIL = getGridLocalization(heILGrid, heILCore);
package/locales/huHU.js CHANGED
@@ -111,6 +111,13 @@ const huHUGrid = {
111
111
  expandDetailPanel: 'Kibontás',
112
112
  collapseDetailPanel: 'Összecsukás' // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const huHU = getGridLocalization(huHUGrid, huHUCore);
@@ -26,3 +26,4 @@ export * from './trTR';
26
26
  export * from './ukUA';
27
27
  export * from './viVN';
28
28
  export * from './zhCN';
29
+ export * from './zhTW';
package/locales/index.js CHANGED
@@ -26,4 +26,5 @@ export * from './svSE';
26
26
  export * from './trTR';
27
27
  export * from './ukUA';
28
28
  export * from './viVN';
29
- export * from './zhCN';
29
+ export * from './zhCN';
30
+ export * from './zhTW';
package/locales/itIT.js CHANGED
@@ -111,6 +111,13 @@ const itITGrid = {
111
111
  // collapseDetailPanel: 'Collapse',
112
112
  // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const itIT = getGridLocalization(itITGrid, itITCore);
package/locales/jaJP.js CHANGED
@@ -111,6 +111,13 @@ const jaJPGrid = {
111
111
  expandDetailPanel: '展開',
112
112
  collapseDetailPanel: '折りたたみ',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: '行並び替え'
114
+ rowReorderingHeaderName: '行並び替え' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const jaJP = getGridLocalization(jaJPGrid, jaJPCore);
package/locales/koKR.js CHANGED
@@ -111,6 +111,13 @@ const koKRGrid = {
111
111
  // collapseDetailPanel: 'Collapse',
112
112
  // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const koKR = getGridLocalization(koKRGrid, koKRCore);
package/locales/nbNO.js CHANGED
@@ -111,6 +111,13 @@ const nbNOGrid = {
111
111
  expandDetailPanel: 'Utvid',
112
112
  collapseDetailPanel: 'Kollaps',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: 'Rad reorganisering'
114
+ rowReorderingHeaderName: 'Rad reorganisering' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const nbNO = getGridLocalization(nbNOGrid, nbNOCore);
package/locales/nlNL.js CHANGED
@@ -111,6 +111,13 @@ const nlNLGrid = {
111
111
  expandDetailPanel: 'Uitklappen',
112
112
  collapseDetailPanel: 'Inklappen',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: 'Rijen hersorteren'
114
+ rowReorderingHeaderName: 'Rijen hersorteren' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const nlNL = getGridLocalization(nlNLGrid, nlNLCore);
package/locales/plPL.js CHANGED
@@ -111,6 +111,13 @@ const plPLGrid = {
111
111
  expandDetailPanel: 'Rozwiń',
112
112
  collapseDetailPanel: 'Zwiń' // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const plPL = getGridLocalization(plPLGrid, plPLCore);
package/locales/ptBR.js CHANGED
@@ -111,6 +111,13 @@ const ptBRGrid = {
111
111
  expandDetailPanel: 'Expandir',
112
112
  collapseDetailPanel: 'Esconder',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: 'Reorganizar linhas'
114
+ rowReorderingHeaderName: 'Reorganizar linhas' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const ptBR = getGridLocalization(ptBRGrid, ptBRCore);
package/locales/roRO.js CHANGED
@@ -111,6 +111,13 @@ const roROGrid = {
111
111
  expandDetailPanel: 'Extindere',
112
112
  collapseDetailPanel: 'Restrângere',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: 'Reordonare rânduri'
114
+ rowReorderingHeaderName: 'Reordonare rânduri' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const roRO = getGridLocalization(roROGrid, roROCore);
package/locales/ruRU.js CHANGED
@@ -144,6 +144,13 @@ const ruRUGrid = {
144
144
  expandDetailPanel: 'Развернуть',
145
145
  collapseDetailPanel: 'Свернуть' // Row reordering text
146
146
  // rowReorderingHeaderName: 'Row reordering',
147
+ // Aggregation
148
+ // aggregationMenuItemHeader: 'Aggregation',
149
+ // aggregationFunctionLabelSum: 'sum',
150
+ // aggregationFunctionLabelAvg: 'avg',
151
+ // aggregationFunctionLabelMin: 'min',
152
+ // aggregationFunctionLabelMax: 'max',
153
+ // aggregationFunctionLabelSize: 'size',
147
154
 
148
155
  };
149
156
  export const ruRU = getGridLocalization(ruRUGrid, ruRUCore);
package/locales/skSK.js CHANGED
@@ -146,6 +146,13 @@ const skSKGrid = {
146
146
  expandDetailPanel: 'Rozbaliť',
147
147
  collapseDetailPanel: 'Zbaliť',
148
148
  // Row reordering text
149
- rowReorderingHeaderName: 'Preusporiadávanie riadkov'
149
+ rowReorderingHeaderName: 'Preusporiadávanie riadkov' // Aggregation
150
+ // aggregationMenuItemHeader: 'Aggregation',
151
+ // aggregationFunctionLabelSum: 'sum',
152
+ // aggregationFunctionLabelAvg: 'avg',
153
+ // aggregationFunctionLabelMin: 'min',
154
+ // aggregationFunctionLabelMax: 'max',
155
+ // aggregationFunctionLabelSize: 'size',
156
+
150
157
  };
151
158
  export const skSK = getGridLocalization(skSKGrid, skSKCore);
package/locales/svSE.js CHANGED
@@ -111,6 +111,13 @@ const svSEGrid = {
111
111
  expandDetailPanel: 'Expandera',
112
112
  collapseDetailPanel: 'Kollapsa',
113
113
  // Row reordering text
114
- rowReorderingHeaderName: 'Ordna om rader'
114
+ rowReorderingHeaderName: 'Ordna om rader' // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
121
+
115
122
  };
116
123
  export const svSE = getGridLocalization(svSEGrid, svSECore);
package/locales/trTR.js CHANGED
@@ -111,6 +111,13 @@ const trTRGrid = {
111
111
  expandDetailPanel: 'Genişlet',
112
112
  collapseDetailPanel: 'Gizle' // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const trTR = getGridLocalization(trTRGrid, trTRCore);
package/locales/ukUA.js CHANGED
@@ -137,6 +137,13 @@ const ukUAGrid = {
137
137
  // collapseDetailPanel: 'Collapse',
138
138
  // Row reordering text
139
139
  // rowReorderingHeaderName: 'Row reordering',
140
+ // Aggregation
141
+ // aggregationMenuItemHeader: 'Aggregation',
142
+ // aggregationFunctionLabelSum: 'sum',
143
+ // aggregationFunctionLabelAvg: 'avg',
144
+ // aggregationFunctionLabelMin: 'min',
145
+ // aggregationFunctionLabelMax: 'max',
146
+ // aggregationFunctionLabelSize: 'size',
140
147
 
141
148
  };
142
149
  export const ukUA = getGridLocalization(ukUAGrid, ukUACore);
package/locales/viVN.js CHANGED
@@ -111,6 +111,13 @@ const viVNGrid = {
111
111
  // collapseDetailPanel: 'Collapse',
112
112
  // Row reordering text
113
113
  // rowReorderingHeaderName: 'Row reordering',
114
+ // Aggregation
115
+ // aggregationMenuItemHeader: 'Aggregation',
116
+ // aggregationFunctionLabelSum: 'sum',
117
+ // aggregationFunctionLabelAvg: 'avg',
118
+ // aggregationFunctionLabelMin: 'min',
119
+ // aggregationFunctionLabelMax: 'max',
120
+ // aggregationFunctionLabelSize: 'size',
114
121
 
115
122
  };
116
123
  export const viVN = getGridLocalization(viVNGrid, viVNCore);