@mui/x-data-grid 5.14.0 → 5.15.2

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 (290) hide show
  1. package/CHANGELOG.md +147 -5
  2. package/DataGrid/DataGrid.js +7 -1
  3. package/DataGrid/useDataGridProps.js +1 -0
  4. package/colDef/gridStringColDef.js +1 -1
  5. package/components/GridRow.js +5 -1
  6. package/components/base/GridOverlays.js +2 -2
  7. package/components/cell/GridEditInputCell.d.ts +2 -5
  8. package/components/cell/GridEditInputCell.js +13 -14
  9. package/components/cell/GridEditSingleSelectCell.d.ts +4 -0
  10. package/components/cell/GridEditSingleSelectCell.js +11 -4
  11. package/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
  12. package/components/containers/GridRoot.js +4 -2
  13. package/components/toolbar/GridToolbarDensitySelector.js +13 -4
  14. package/components/toolbar/GridToolbarExportContainer.js +13 -2
  15. package/constants/envConstants.d.ts +1 -1
  16. package/constants/envConstants.js +2 -11
  17. package/constants/gridClasses.d.ts +16 -0
  18. package/constants/gridClasses.js +1 -1
  19. package/constants/localeTextConstants.js +1 -1
  20. package/hooks/features/dimensions/useGridDimensions.js +6 -1
  21. package/hooks/features/editRows/useGridCellEditing.new.d.ts +1 -1
  22. package/hooks/features/editRows/useGridCellEditing.new.js +26 -16
  23. package/hooks/features/editRows/useGridCellEditing.old.js +2 -2
  24. package/hooks/features/editRows/useGridEditing.new.d.ts +1 -1
  25. package/hooks/features/editRows/useGridEditing.new.js +4 -0
  26. package/hooks/features/editRows/useGridEditing.old.js +1 -1
  27. package/hooks/features/editRows/useGridRowEditing.new.d.ts +1 -1
  28. package/hooks/features/editRows/useGridRowEditing.new.js +16 -10
  29. package/hooks/features/export/utils.js +8 -1
  30. package/hooks/features/filter/gridFilterState.d.ts +12 -1
  31. package/hooks/features/filter/gridFilterUtils.d.ts +8 -5
  32. package/hooks/features/filter/gridFilterUtils.js +74 -43
  33. package/hooks/features/filter/useGridFilter.js +16 -3
  34. package/hooks/features/focus/useGridFocus.js +11 -6
  35. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +1 -1
  36. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -34
  37. package/hooks/features/pagination/useGridPageSize.js +3 -1
  38. package/hooks/features/rows/gridRowsSelector.d.ts +14 -0
  39. package/hooks/features/rows/gridRowsSelector.js +20 -1
  40. package/hooks/features/rows/gridRowsState.d.ts +8 -1
  41. package/hooks/features/rows/gridRowsUtils.d.ts +4 -0
  42. package/hooks/features/rows/gridRowsUtils.js +21 -3
  43. package/hooks/features/rows/index.d.ts +1 -1
  44. package/hooks/features/rows/index.js +1 -1
  45. package/hooks/features/rows/useGridRows.js +5 -2
  46. package/hooks/features/rows/useGridRowsMeta.js +19 -4
  47. package/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
  48. package/hooks/features/scroll/useGridScroll.js +7 -2
  49. package/hooks/features/selection/useGridSelection.js +7 -3
  50. package/hooks/features/sorting/useGridSorting.js +8 -0
  51. package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +3 -0
  52. package/hooks/features/virtualization/useGridVirtualScroller.d.ts +3 -1
  53. package/hooks/features/virtualization/useGridVirtualScroller.js +31 -16
  54. package/index.js +1 -1
  55. package/internals/index.d.ts +5 -1
  56. package/internals/index.js +4 -0
  57. package/legacy/DataGrid/DataGrid.js +7 -1
  58. package/legacy/DataGrid/useDataGridProps.js +1 -0
  59. package/legacy/colDef/gridStringColDef.js +1 -1
  60. package/legacy/components/GridRow.js +5 -1
  61. package/legacy/components/base/GridOverlays.js +2 -2
  62. package/legacy/components/cell/GridEditInputCell.js +13 -14
  63. package/legacy/components/cell/GridEditSingleSelectCell.js +11 -3
  64. package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
  65. package/legacy/components/containers/GridRoot.js +4 -2
  66. package/legacy/components/toolbar/GridToolbarDensitySelector.js +14 -5
  67. package/legacy/components/toolbar/GridToolbarExportContainer.js +15 -2
  68. package/legacy/constants/envConstants.js +2 -11
  69. package/legacy/constants/gridClasses.js +1 -1
  70. package/legacy/constants/localeTextConstants.js +1 -1
  71. package/legacy/hooks/features/dimensions/useGridDimensions.js +6 -1
  72. package/legacy/hooks/features/editRows/useGridCellEditing.new.js +27 -17
  73. package/legacy/hooks/features/editRows/useGridCellEditing.old.js +2 -2
  74. package/legacy/hooks/features/editRows/useGridEditing.new.js +4 -0
  75. package/legacy/hooks/features/editRows/useGridEditing.old.js +1 -1
  76. package/legacy/hooks/features/editRows/useGridRowEditing.new.js +16 -10
  77. package/legacy/hooks/features/export/utils.js +13 -1
  78. package/legacy/hooks/features/filter/gridFilterUtils.js +84 -55
  79. package/legacy/hooks/features/filter/useGridFilter.js +16 -3
  80. package/legacy/hooks/features/focus/useGridFocus.js +11 -6
  81. package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +47 -34
  82. package/legacy/hooks/features/pagination/useGridPageSize.js +3 -1
  83. package/legacy/hooks/features/rows/gridRowsSelector.js +23 -0
  84. package/legacy/hooks/features/rows/gridRowsUtils.js +21 -3
  85. package/legacy/hooks/features/rows/index.js +1 -1
  86. package/legacy/hooks/features/rows/useGridRows.js +5 -2
  87. package/legacy/hooks/features/rows/useGridRowsMeta.js +19 -4
  88. package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
  89. package/legacy/hooks/features/scroll/useGridScroll.js +7 -2
  90. package/legacy/hooks/features/selection/useGridSelection.js +7 -3
  91. package/legacy/hooks/features/sorting/useGridSorting.js +8 -0
  92. package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +32 -16
  93. package/legacy/index.js +1 -1
  94. package/legacy/internals/index.js +4 -0
  95. package/legacy/locales/arSD.js +1 -1
  96. package/legacy/locales/bgBG.js +1 -1
  97. package/legacy/locales/csCZ.js +1 -1
  98. package/legacy/locales/daDK.js +1 -1
  99. package/legacy/locales/deDE.js +9 -9
  100. package/legacy/locales/elGR.js +1 -1
  101. package/legacy/locales/esES.js +1 -1
  102. package/legacy/locales/faIR.js +1 -1
  103. package/legacy/locales/fiFI.js +1 -1
  104. package/legacy/locales/frFR.js +1 -1
  105. package/legacy/locales/heIL.js +1 -1
  106. package/legacy/locales/huHU.js +1 -1
  107. package/legacy/locales/itIT.js +15 -15
  108. package/legacy/locales/jaJP.js +3 -3
  109. package/legacy/locales/koKR.js +34 -30
  110. package/legacy/locales/nbNO.js +1 -1
  111. package/legacy/locales/nlNL.js +1 -1
  112. package/legacy/locales/plPL.js +1 -1
  113. package/legacy/locales/ptBR.js +1 -1
  114. package/legacy/locales/roRO.js +1 -1
  115. package/legacy/locales/ruRU.js +1 -1
  116. package/legacy/locales/skSK.js +1 -1
  117. package/legacy/locales/svSE.js +1 -1
  118. package/legacy/locales/trTR.js +1 -1
  119. package/legacy/locales/ukUA.js +1 -1
  120. package/legacy/locales/viVN.js +1 -1
  121. package/legacy/locales/zhCN.js +37 -33
  122. package/legacy/locales/zhTW.js +1 -1
  123. package/legacy/utils/keyboardUtils.js +8 -5
  124. package/locales/arSD.js +1 -1
  125. package/locales/bgBG.js +1 -1
  126. package/locales/csCZ.js +1 -1
  127. package/locales/daDK.js +1 -1
  128. package/locales/deDE.js +9 -9
  129. package/locales/elGR.js +1 -1
  130. package/locales/esES.js +1 -1
  131. package/locales/faIR.js +1 -1
  132. package/locales/fiFI.js +1 -1
  133. package/locales/frFR.js +1 -1
  134. package/locales/heIL.js +1 -1
  135. package/locales/huHU.js +1 -1
  136. package/locales/itIT.js +15 -15
  137. package/locales/jaJP.js +3 -3
  138. package/locales/koKR.js +30 -30
  139. package/locales/nbNO.js +1 -1
  140. package/locales/nlNL.js +1 -1
  141. package/locales/plPL.js +1 -1
  142. package/locales/ptBR.js +1 -1
  143. package/locales/roRO.js +1 -1
  144. package/locales/ruRU.js +1 -1
  145. package/locales/skSK.js +1 -1
  146. package/locales/svSE.js +1 -1
  147. package/locales/trTR.js +1 -1
  148. package/locales/ukUA.js +1 -1
  149. package/locales/viVN.js +1 -1
  150. package/locales/zhCN.js +33 -33
  151. package/locales/zhTW.js +1 -1
  152. package/models/gridRows.d.ts +5 -0
  153. package/models/props/DataGridProps.d.ts +8 -3
  154. package/modern/DataGrid/DataGrid.js +7 -1
  155. package/modern/DataGrid/useDataGridProps.js +1 -0
  156. package/modern/colDef/gridStringColDef.js +1 -1
  157. package/modern/components/GridRow.js +5 -1
  158. package/modern/components/base/GridOverlays.js +2 -2
  159. package/modern/components/cell/GridEditInputCell.js +13 -14
  160. package/modern/components/cell/GridEditSingleSelectCell.js +11 -4
  161. package/modern/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
  162. package/modern/components/containers/GridRoot.js +4 -2
  163. package/modern/components/toolbar/GridToolbarDensitySelector.js +11 -4
  164. package/modern/components/toolbar/GridToolbarExportContainer.js +11 -2
  165. package/modern/constants/envConstants.js +2 -11
  166. package/modern/constants/gridClasses.js +1 -1
  167. package/modern/constants/localeTextConstants.js +1 -1
  168. package/modern/hooks/features/dimensions/useGridDimensions.js +6 -1
  169. package/modern/hooks/features/editRows/useGridCellEditing.new.js +24 -16
  170. package/modern/hooks/features/editRows/useGridCellEditing.old.js +2 -2
  171. package/modern/hooks/features/editRows/useGridEditing.new.js +4 -0
  172. package/modern/hooks/features/editRows/useGridEditing.old.js +1 -1
  173. package/modern/hooks/features/editRows/useGridRowEditing.new.js +16 -10
  174. package/modern/hooks/features/export/utils.js +6 -1
  175. package/modern/hooks/features/filter/gridFilterUtils.js +73 -42
  176. package/modern/hooks/features/filter/useGridFilter.js +16 -3
  177. package/modern/hooks/features/focus/useGridFocus.js +11 -6
  178. package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -30
  179. package/modern/hooks/features/pagination/useGridPageSize.js +3 -1
  180. package/modern/hooks/features/rows/gridRowsSelector.js +18 -1
  181. package/modern/hooks/features/rows/gridRowsUtils.js +19 -3
  182. package/modern/hooks/features/rows/index.js +1 -1
  183. package/modern/hooks/features/rows/useGridRows.js +5 -2
  184. package/modern/hooks/features/rows/useGridRowsMeta.js +17 -4
  185. package/modern/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
  186. package/modern/hooks/features/scroll/useGridScroll.js +5 -2
  187. package/modern/hooks/features/selection/useGridSelection.js +7 -1
  188. package/modern/hooks/features/sorting/useGridSorting.js +8 -0
  189. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +30 -15
  190. package/modern/index.js +1 -1
  191. package/modern/internals/index.js +4 -0
  192. package/modern/locales/arSD.js +1 -1
  193. package/modern/locales/bgBG.js +1 -1
  194. package/modern/locales/csCZ.js +1 -1
  195. package/modern/locales/daDK.js +1 -1
  196. package/modern/locales/deDE.js +9 -9
  197. package/modern/locales/elGR.js +1 -1
  198. package/modern/locales/esES.js +1 -1
  199. package/modern/locales/faIR.js +1 -1
  200. package/modern/locales/fiFI.js +1 -1
  201. package/modern/locales/frFR.js +1 -1
  202. package/modern/locales/heIL.js +1 -1
  203. package/modern/locales/huHU.js +1 -1
  204. package/modern/locales/itIT.js +15 -15
  205. package/modern/locales/jaJP.js +3 -3
  206. package/modern/locales/koKR.js +30 -30
  207. package/modern/locales/nbNO.js +1 -1
  208. package/modern/locales/nlNL.js +1 -1
  209. package/modern/locales/plPL.js +1 -1
  210. package/modern/locales/ptBR.js +1 -1
  211. package/modern/locales/roRO.js +1 -1
  212. package/modern/locales/ruRU.js +1 -1
  213. package/modern/locales/skSK.js +1 -1
  214. package/modern/locales/svSE.js +1 -1
  215. package/modern/locales/trTR.js +1 -1
  216. package/modern/locales/ukUA.js +1 -1
  217. package/modern/locales/viVN.js +1 -1
  218. package/modern/locales/zhCN.js +33 -33
  219. package/modern/locales/zhTW.js +1 -1
  220. package/modern/utils/keyboardUtils.js +7 -2
  221. package/node/DataGrid/DataGrid.js +7 -1
  222. package/node/DataGrid/useDataGridProps.js +1 -0
  223. package/node/colDef/gridStringColDef.js +1 -1
  224. package/node/components/GridRow.js +5 -1
  225. package/node/components/base/GridOverlays.js +2 -2
  226. package/node/components/cell/GridEditInputCell.js +15 -16
  227. package/node/components/cell/GridEditSingleSelectCell.js +10 -4
  228. package/node/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
  229. package/node/components/containers/GridRoot.js +3 -1
  230. package/node/components/toolbar/GridToolbarDensitySelector.js +13 -4
  231. package/node/components/toolbar/GridToolbarExportContainer.js +13 -2
  232. package/node/constants/envConstants.js +2 -13
  233. package/node/constants/gridClasses.js +1 -1
  234. package/node/constants/localeTextConstants.js +1 -1
  235. package/node/hooks/features/dimensions/useGridDimensions.js +7 -1
  236. package/node/hooks/features/editRows/useGridCellEditing.new.js +26 -16
  237. package/node/hooks/features/editRows/useGridCellEditing.old.js +2 -2
  238. package/node/hooks/features/editRows/useGridEditing.new.js +4 -0
  239. package/node/hooks/features/editRows/useGridEditing.old.js +1 -1
  240. package/node/hooks/features/editRows/useGridRowEditing.new.js +16 -10
  241. package/node/hooks/features/export/utils.js +7 -0
  242. package/node/hooks/features/filter/gridFilterUtils.js +81 -47
  243. package/node/hooks/features/filter/useGridFilter.js +15 -2
  244. package/node/hooks/features/focus/useGridFocus.js +11 -6
  245. package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +43 -34
  246. package/node/hooks/features/pagination/useGridPageSize.js +4 -1
  247. package/node/hooks/features/rows/gridRowsSelector.js +24 -2
  248. package/node/hooks/features/rows/gridRowsUtils.js +23 -2
  249. package/node/hooks/features/rows/index.js +70 -12
  250. package/node/hooks/features/rows/useGridRows.js +5 -2
  251. package/node/hooks/features/rows/useGridRowsMeta.js +20 -4
  252. package/node/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
  253. package/node/hooks/features/scroll/useGridScroll.js +7 -1
  254. package/node/hooks/features/selection/useGridSelection.js +7 -3
  255. package/node/hooks/features/sorting/useGridSorting.js +8 -0
  256. package/node/hooks/features/virtualization/useGridVirtualScroller.js +31 -16
  257. package/node/index.js +1 -1
  258. package/node/internals/index.js +36 -0
  259. package/node/locales/arSD.js +1 -1
  260. package/node/locales/bgBG.js +1 -1
  261. package/node/locales/csCZ.js +1 -1
  262. package/node/locales/daDK.js +1 -1
  263. package/node/locales/deDE.js +9 -9
  264. package/node/locales/elGR.js +1 -1
  265. package/node/locales/esES.js +1 -1
  266. package/node/locales/faIR.js +1 -1
  267. package/node/locales/fiFI.js +1 -1
  268. package/node/locales/frFR.js +1 -1
  269. package/node/locales/heIL.js +1 -1
  270. package/node/locales/huHU.js +1 -1
  271. package/node/locales/itIT.js +15 -15
  272. package/node/locales/jaJP.js +3 -3
  273. package/node/locales/koKR.js +30 -30
  274. package/node/locales/nbNO.js +1 -1
  275. package/node/locales/nlNL.js +1 -1
  276. package/node/locales/plPL.js +1 -1
  277. package/node/locales/ptBR.js +1 -1
  278. package/node/locales/roRO.js +1 -1
  279. package/node/locales/ruRU.js +1 -1
  280. package/node/locales/skSK.js +1 -1
  281. package/node/locales/svSE.js +1 -1
  282. package/node/locales/trTR.js +1 -1
  283. package/node/locales/ukUA.js +1 -1
  284. package/node/locales/viVN.js +1 -1
  285. package/node/locales/zhCN.js +33 -33
  286. package/node/locales/zhTW.js +1 -1
  287. package/node/utils/keyboardUtils.js +10 -4
  288. package/package.json +1 -1
  289. package/utils/keyboardUtils.d.ts +2 -2
  290. package/utils/keyboardUtils.js +7 -2
@@ -207,10 +207,8 @@ const useGridVirtualScroller = props => {
207
207
  React.useEffect(() => {
208
208
  setContainerWidth(rootRef.current.clientWidth);
209
209
  }, [rowsMeta.currentPageTotalHeight]);
210
- const handleResize = React.useCallback(() => {
211
- if (rootRef.current) {
212
- setContainerWidth(rootRef.current.clientWidth);
213
- }
210
+ const handleResize = React.useCallback(params => {
211
+ setContainerWidth(params.width);
214
212
  }, []);
215
213
  (0, _useGridApiEventHandler.useGridApiEventHandler)(apiRef, 'resize', handleResize);
216
214
  const updateRenderZonePosition = React.useCallback(nextRenderContext => {
@@ -326,10 +324,11 @@ const useGridVirtualScroller = props => {
326
324
  minFirstColumn = renderZoneMinColumnIndex,
327
325
  maxLastColumn = renderZoneMaxColumnIndex,
328
326
  availableSpace = containerWidth,
329
- ignoreAutoHeight
327
+ ignoreAutoHeight,
328
+ rowIndexOffset = 0
330
329
  } = params;
331
330
 
332
- if (!currentPage.range || !nextRenderContext || availableSpace == null) {
331
+ if (!nextRenderContext || availableSpace == null) {
333
332
  return null;
334
333
  }
335
334
 
@@ -344,15 +343,31 @@ const useGridVirtualScroller = props => {
344
343
  });
345
344
  const renderedRows = [];
346
345
 
347
- for (let i = firstRowToRender; i < lastRowToRender; i += 1) {
348
- const row = currentPage.rows[i];
349
- renderedRows.push(row);
350
- apiRef.current.unstable_calculateColSpan({
351
- rowId: row.id,
352
- minFirstColumn,
353
- maxLastColumn,
354
- columns: visibleColumns
346
+ if (params.rows) {
347
+ params.rows.forEach(row => {
348
+ renderedRows.push(row);
349
+ apiRef.current.unstable_calculateColSpan({
350
+ rowId: row.id,
351
+ minFirstColumn,
352
+ maxLastColumn,
353
+ columns: visibleColumns
354
+ });
355
355
  });
356
+ } else {
357
+ if (!currentPage.range) {
358
+ return null;
359
+ }
360
+
361
+ for (let i = firstRowToRender; i < lastRowToRender; i += 1) {
362
+ const row = currentPage.rows[i];
363
+ renderedRows.push(row);
364
+ apiRef.current.unstable_calculateColSpan({
365
+ rowId: row.id,
366
+ minFirstColumn,
367
+ maxLastColumn,
368
+ columns: visibleColumns
369
+ });
370
+ }
356
371
  }
357
372
 
358
373
  const [initialFirstColumnToRender, lastColumnToRender] = getRenderableIndexes({
@@ -373,7 +388,7 @@ const useGridVirtualScroller = props => {
373
388
  const rows = [];
374
389
 
375
390
  for (let i = 0; i < renderedRows.length; i += 1) {
376
- var _rootProps$components;
391
+ var _currentPage$range5, _rootProps$components;
377
392
 
378
393
  const {
379
394
  id,
@@ -404,7 +419,7 @@ const useGridVirtualScroller = props => {
404
419
  firstColumnToRender: firstColumnToRender,
405
420
  lastColumnToRender: lastColumnToRender,
406
421
  selected: isSelected,
407
- index: currentPage.range.firstRowIndex + firstRowToRender + i,
422
+ index: rowIndexOffset + ((currentPage == null ? void 0 : (_currentPage$range5 = currentPage.range) == null ? void 0 : _currentPage$range5.firstRowIndex) || 0) + firstRowToRender + i,
408
423
  containerWidth: availableSpace,
409
424
  isLastVisible: lastVisibleRowIndex
410
425
  }, typeof getRowProps === 'function' ? getRowProps(id, model) : {}, (_rootProps$components = rootProps.componentsProps) == null ? void 0 : _rootProps$components.row), id));
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.14.0
1
+ /** @license MUI v5.15.2
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -45,6 +45,12 @@ Object.defineProperty(exports, "buildWarning", {
45
45
  return _warning.buildWarning;
46
46
  }
47
47
  });
48
+ Object.defineProperty(exports, "calculatePinnedRowsHeight", {
49
+ enumerable: true,
50
+ get: function () {
51
+ return _gridRowsUtils.calculatePinnedRowsHeight;
52
+ }
53
+ });
48
54
  Object.defineProperty(exports, "clamp", {
49
55
  enumerable: true,
50
56
  get: function () {
@@ -123,6 +129,24 @@ Object.defineProperty(exports, "getColumnsToExport", {
123
129
  return _utils.getColumnsToExport;
124
130
  }
125
131
  });
132
+ Object.defineProperty(exports, "getRowIdFromRowModel", {
133
+ enumerable: true,
134
+ get: function () {
135
+ return _gridRowsUtils.getRowIdFromRowModel;
136
+ }
137
+ });
138
+ Object.defineProperty(exports, "gridAdditionalRowGroupsSelector", {
139
+ enumerable: true,
140
+ get: function () {
141
+ return _gridRowsSelector.gridAdditionalRowGroupsSelector;
142
+ }
143
+ });
144
+ Object.defineProperty(exports, "gridPinnedRowsSelector", {
145
+ enumerable: true,
146
+ get: function () {
147
+ return _gridRowsSelector.gridPinnedRowsSelector;
148
+ }
149
+ });
126
150
  Object.defineProperty(exports, "isDeepEqual", {
127
151
  enumerable: true,
128
152
  get: function () {
@@ -153,6 +177,12 @@ Object.defineProperty(exports, "paginationStateInitializer", {
153
177
  return _useGridPagination.paginationStateInitializer;
154
178
  }
155
179
  });
180
+ Object.defineProperty(exports, "passFilterLogic", {
181
+ enumerable: true,
182
+ get: function () {
183
+ return _gridFilterUtils.passFilterLogic;
184
+ }
185
+ });
156
186
  Object.defineProperty(exports, "preferencePanelStateInitializer", {
157
187
  enumerable: true,
158
188
  get: function () {
@@ -416,6 +446,8 @@ var _useGridPrintExport = require("../hooks/features/export/useGridPrintExport")
416
446
 
417
447
  var _useGridFilter = require("../hooks/features/filter/useGridFilter");
418
448
 
449
+ var _gridFilterUtils = require("../hooks/features/filter/gridFilterUtils");
450
+
419
451
  var _useGridFocus = require("../hooks/features/focus/useGridFocus");
420
452
 
421
453
  var _useGridKeyboardNavigation = require("../hooks/features/keyboardNavigation/useGridKeyboardNavigation");
@@ -436,6 +468,10 @@ var _useGridRowsMeta = require("../hooks/features/rows/useGridRowsMeta");
436
468
 
437
469
  var _useGridParamsApi = require("../hooks/features/rows/useGridParamsApi");
438
470
 
471
+ var _gridRowsUtils = require("../hooks/features/rows/gridRowsUtils");
472
+
473
+ var _gridRowsSelector = require("../hooks/features/rows/gridRowsSelector");
474
+
439
475
  var _useGridSelection = require("../hooks/features/selection/useGridSelection");
440
476
 
441
477
  var _useGridSelectionPreProcessors = require("../hooks/features/selection/useGridSelectionPreProcessors");
@@ -30,7 +30,7 @@ const arSDGrid = {
30
30
  toolbarFiltersTooltipShow: 'اظهر المرشِحات',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${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
@@ -30,7 +30,7 @@ const bgBGGrid = {
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
@@ -40,7 +40,7 @@ const csCZGrid = {
40
40
  return `${count} ${pluralForm}`;
41
41
  },
42
42
  // Quick filter toolbar field
43
- // toolbarQuickFilterPlaceholder: 'Search...',
43
+ // toolbarQuickFilterPlaceholder: 'Search',
44
44
  // toolbarQuickFilterLabel: 'Search',
45
45
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
46
46
  // Export selector toolbar button text
@@ -30,7 +30,7 @@ const daDKGrid = {
30
30
  toolbarFiltersTooltipShow: 'Vis filtre',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktive filtre` : `${count} aktivt filter`,
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
@@ -30,7 +30,7 @@ const deDEGrid = {
30
30
  toolbarFiltersTooltipShow: 'Zeige Filter',
31
31
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktive Filter` : `${count} aktiver Filter`,
32
32
  // Quick filter toolbar field
33
- toolbarQuickFilterPlaceholder: 'Suchen...',
33
+ toolbarQuickFilterPlaceholder: 'Suchen',
34
34
  toolbarQuickFilterLabel: 'Suchen',
35
35
  toolbarQuickFilterDeleteIconLabel: 'Löschen',
36
36
  // Export selector toolbar button text
@@ -120,14 +120,14 @@ const deDEGrid = {
120
120
  expandDetailPanel: 'Aufklappen',
121
121
  collapseDetailPanel: 'Zuklappen',
122
122
  // Row reordering text
123
- rowReorderingHeaderName: 'Reihen neu ordnen' // Aggregation
124
- // aggregationMenuItemHeader: 'Aggregation',
125
- // aggregationFunctionLabelSum: 'sum',
126
- // aggregationFunctionLabelAvg: 'avg',
127
- // aggregationFunctionLabelMin: 'min',
128
- // aggregationFunctionLabelMax: 'max',
129
- // aggregationFunctionLabelSize: 'size',
130
-
123
+ rowReorderingHeaderName: 'Reihen neu ordnen',
124
+ // Aggregation
125
+ aggregationMenuItemHeader: 'Aggregation',
126
+ aggregationFunctionLabelSum: 'Summe',
127
+ aggregationFunctionLabelAvg: 'Mittelwert',
128
+ aggregationFunctionLabelMin: 'Minimum',
129
+ aggregationFunctionLabelMax: 'Maximum',
130
+ aggregationFunctionLabelSize: 'Anzahl'
131
131
  };
132
132
  const deDE = (0, _getGridLocalization.getGridLocalization)(deDEGrid, _locale.deDE);
133
133
  exports.deDE = deDE;
@@ -28,7 +28,7 @@ const elGRGrid = {
28
28
  toolbarFiltersTooltipShow: 'Εμφάνιση φίλτρων',
29
29
  toolbarFiltersTooltipActive: count => count !== 1 ? `${count} ενεργά φίλτρα` : `${count} ενεργό φίλτρο`,
30
30
  // Quick filter toolbar field
31
- // toolbarQuickFilterPlaceholder: 'Search...',
31
+ // toolbarQuickFilterPlaceholder: 'Search',
32
32
  // toolbarQuickFilterLabel: 'Search',
33
33
  // toolbarQuickFilterDeleteIconLabel: 'Clear',
34
34
  // Export selector toolbar button text
@@ -30,7 +30,7 @@ const esESGrid = {
30
30
  toolbarFiltersTooltipShow: 'Mostrar filtros',
31
31
  toolbarFiltersTooltipActive: count => count > 1 ? `${count} filtros activos` : `${count} filtro activo`,
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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -30,15 +30,15 @@ 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...',
34
- // toolbarQuickFilterLabel: 'Search',
35
- // toolbarQuickFilterDeleteIconLabel: 'Clear',
33
+ toolbarQuickFilterPlaceholder: 'Cerca…',
34
+ toolbarQuickFilterLabel: 'Cerca',
35
+ toolbarQuickFilterDeleteIconLabel: 'Resetta',
36
36
  // Export selector toolbar button text
37
37
  toolbarExport: 'Esporta',
38
38
  toolbarExportLabel: 'Esporta',
39
39
  toolbarExportCSV: 'Esporta in CSV',
40
40
  toolbarExportPrint: 'Stampa',
41
- // toolbarExportExcel: 'Download as Excel',
41
+ toolbarExportExcel: 'Scarica come Excel',
42
42
  // Columns panel text
43
43
  columnsPanelTextFieldLabel: 'Cerca colonna',
44
44
  columnsPanelTextFieldPlaceholder: 'Titolo della colonna',
@@ -48,7 +48,7 @@ const itITGrid = {
48
48
  // Filter panel text
49
49
  filterPanelAddFilter: 'Aggiungi un filtro',
50
50
  filterPanelDeleteIconLabel: 'Rimuovi',
51
- // filterPanelLinkOperator: 'Logic operator',
51
+ filterPanelLinkOperator: 'Operatore logico',
52
52
  filterPanelOperators: 'Operatori',
53
53
  // TODO v6: rename to filterPanelOperator
54
54
  filterPanelOperatorAnd: 'E (and)',
@@ -94,10 +94,10 @@ const itITGrid = {
94
94
  footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} di ${totalCount.toLocaleString()}`,
95
95
  // Checkbox selection text
96
96
  checkboxSelectionHeaderName: 'Seleziona',
97
- // checkboxSelectionSelectAllRows: 'Select all rows',
98
- // checkboxSelectionUnselectAllRows: 'Unselect all rows',
99
- // checkboxSelectionSelectRow: 'Select row',
100
- // checkboxSelectionUnselectRow: 'Unselect row',
97
+ checkboxSelectionSelectAllRows: 'Seleziona tutte le righe',
98
+ checkboxSelectionUnselectAllRows: 'Deseleziona tutte le righe',
99
+ checkboxSelectionSelectRow: 'Seleziona riga',
100
+ checkboxSelectionUnselectRow: 'Deseleziona riga',
101
101
  // Boolean cell text
102
102
  booleanCellTrueLabel: 'vero',
103
103
  booleanCellFalseLabel: 'falso',
@@ -114,13 +114,13 @@ const itITGrid = {
114
114
  // Grouping columns
115
115
  groupingColumnHeaderName: 'Gruppo',
116
116
  groupColumn: name => `Raggruppa per ${name}`,
117
- unGroupColumn: name => `Annulla raggruppamento per ${name}` // Master/detail
118
- // detailPanelToggle: 'Detail panel toggle',
119
- // expandDetailPanel: 'Expand',
120
- // collapseDetailPanel: 'Collapse',
117
+ unGroupColumn: name => `Annulla raggruppamento per ${name}`,
118
+ // Master/detail
119
+ detailPanelToggle: 'Abilita pannello dettagli',
120
+ expandDetailPanel: 'Espandi',
121
+ collapseDetailPanel: 'Comprimi',
121
122
  // Row reordering text
122
- // rowReorderingHeaderName: 'Row reordering',
123
- // Aggregation
123
+ rowReorderingHeaderName: 'Riordinamento righe' // Aggregation
124
124
  // aggregationMenuItemHeader: 'Aggregation',
125
125
  // aggregationFunctionLabelSum: 'sum',
126
126
  // aggregationFunctionLabelAvg: 'avg',
@@ -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: '...に等しい',
@@ -15,8 +15,8 @@ const koKRGrid = {
15
15
  noResultsOverlayLabel: '결과값이 없습니다.',
16
16
  errorOverlayDefaultLabel: '오류가 발생했습니다.',
17
17
  // Density selector toolbar button text
18
- toolbarDensity: '라인 간격',
19
- toolbarDensityLabel: '라인 간격',
18
+ toolbarDensity: ' 간격',
19
+ toolbarDensityLabel: ' 간격',
20
20
  toolbarDensityCompact: '좁게',
21
21
  toolbarDensityStandard: '기본',
22
22
  toolbarDensityComfortable: '넓게',
@@ -30,15 +30,15 @@ const koKRGrid = {
30
30
  toolbarFiltersTooltipShow: '필터 표시',
31
31
  toolbarFiltersTooltipActive: count => `${count}건의 필터를 적용중`,
32
32
  // Quick filter toolbar field
33
- // toolbarQuickFilterPlaceholder: 'Search...',
34
- // toolbarQuickFilterLabel: 'Search',
35
- // toolbarQuickFilterDeleteIconLabel: 'Clear',
33
+ toolbarQuickFilterPlaceholder: '검색…',
34
+ toolbarQuickFilterLabel: '검색',
35
+ toolbarQuickFilterDeleteIconLabel: '초기화',
36
36
  // Export selector toolbar button text
37
37
  toolbarExport: '내보내기',
38
38
  toolbarExportLabel: '내보내기',
39
- toolbarExportCSV: 'CSV다운로드',
39
+ toolbarExportCSV: 'CSV로 내보내기',
40
40
  toolbarExportPrint: '프린트',
41
- // toolbarExportExcel: 'Download as Excel',
41
+ toolbarExportExcel: 'Excel로 내보내기',
42
42
  // Columns panel text
43
43
  columnsPanelTextFieldLabel: '열 검색',
44
44
  columnsPanelTextFieldPlaceholder: '열 이름',
@@ -48,7 +48,7 @@ const koKRGrid = {
48
48
  // Filter panel text
49
49
  filterPanelAddFilter: '필터 추가',
50
50
  filterPanelDeleteIconLabel: '삭제',
51
- // filterPanelLinkOperator: 'Logic operator',
51
+ filterPanelLinkOperator: '논리 연산자',
52
52
  filterPanelOperators: '연산자',
53
53
  // TODO v6: rename to filterPanelOperator
54
54
  filterPanelOperatorAnd: '그리고',
@@ -94,40 +94,40 @@ const koKRGrid = {
94
94
  footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} / ${totalCount.toLocaleString()}`,
95
95
  // Checkbox selection text
96
96
  checkboxSelectionHeaderName: '선택',
97
- // checkboxSelectionSelectAllRows: 'Select all rows',
98
- // checkboxSelectionUnselectAllRows: 'Unselect all rows',
99
- // checkboxSelectionSelectRow: 'Select row',
100
- // checkboxSelectionUnselectRow: 'Unselect row',
97
+ checkboxSelectionSelectAllRows: '모든 선택',
98
+ checkboxSelectionUnselectAllRows: '모든 선택 해제',
99
+ checkboxSelectionSelectRow: ' 선택',
100
+ checkboxSelectionUnselectRow: ' 선택 해제',
101
101
  // Boolean cell text
102
102
  booleanCellTrueLabel: '참',
103
103
  booleanCellFalseLabel: '거짓',
104
104
  // Actions cell more text
105
105
  actionsCellMore: '더보기',
106
106
  // Column pinning text
107
- // pinToLeft: 'Pin to left',
108
- // pinToRight: 'Pin to right',
109
- // unpin: 'Unpin',
107
+ pinToLeft: '왼쪽에 고정',
108
+ pinToRight: '오른쪽에 고정',
109
+ unpin: '고정 해제',
110
110
  // Tree Data
111
111
  treeDataGroupingHeaderName: '그룹',
112
112
  treeDataExpand: '하위노드 펼치기',
113
- treeDataCollapse: '하위노드 접기' // Grouping columns
114
- // groupingColumnHeaderName: 'Group',
115
- // groupColumn: name => `Group by ${name}`,
116
- // unGroupColumn: name => `Stop grouping by ${name}`,
113
+ treeDataCollapse: '하위노드 접기',
114
+ // Grouping columns
115
+ groupingColumnHeaderName: '그룹',
116
+ groupColumn: name => `${name} 값으로 그룹 생성`,
117
+ unGroupColumn: name => `${name} 값으로 그룹 해제`,
117
118
  // Master/detail
118
- // detailPanelToggle: 'Detail panel toggle',
119
- // expandDetailPanel: 'Expand',
120
- // collapseDetailPanel: 'Collapse',
119
+ detailPanelToggle: '상세 패널 토글',
120
+ expandDetailPanel: '열기',
121
+ collapseDetailPanel: '접기',
121
122
  // Row reordering text
122
- // rowReorderingHeaderName: 'Row reordering',
123
+ rowReorderingHeaderName: ' 재배치',
123
124
  // Aggregation
124
- // aggregationMenuItemHeader: 'Aggregation',
125
- // aggregationFunctionLabelSum: 'sum',
126
- // aggregationFunctionLabelAvg: 'avg',
127
- // aggregationFunctionLabelMin: 'min',
128
- // aggregationFunctionLabelMax: 'max',
129
- // aggregationFunctionLabelSize: 'size',
130
-
125
+ aggregationMenuItemHeader: '총계',
126
+ aggregationFunctionLabelSum: '',
127
+ aggregationFunctionLabelAvg: '평균',
128
+ aggregationFunctionLabelMin: '최소값',
129
+ aggregationFunctionLabelMax: '최대값',
130
+ aggregationFunctionLabelSize: '크기'
131
131
  };
132
132
  const koKR = (0, _getGridLocalization.getGridLocalization)(koKRGrid, _locale.koKR);
133
133
  exports.koKR = 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
@@ -30,7 +30,7 @@ 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: 'Zoeken...',
33
+ toolbarQuickFilterPlaceholder: 'Zoeken',
34
34
  toolbarQuickFilterLabel: 'Zoeken',
35
35
  toolbarQuickFilterDeleteIconLabel: 'Wissen',
36
36
  // Export selector toolbar button text
@@ -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
@@ -30,7 +30,7 @@ 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: 'Procurar...',
33
+ toolbarQuickFilterPlaceholder: 'Procurar',
34
34
  toolbarQuickFilterLabel: 'Procurar',
35
35
  toolbarQuickFilterDeleteIconLabel: 'Limpar',
36
36
  // Export selector toolbar button text
@@ -30,7 +30,7 @@ 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: 'Căutare...',
33
+ toolbarQuickFilterPlaceholder: 'Căutare',
34
34
  toolbarQuickFilterLabel: 'Căutare',
35
35
  toolbarQuickFilterDeleteIconLabel: 'Ștergere',
36
36
  // Export selector toolbar button text
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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