@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.
- package/CHANGELOG.md +147 -5
- package/DataGrid/DataGrid.js +7 -1
- package/DataGrid/useDataGridProps.js +1 -0
- package/colDef/gridStringColDef.js +1 -1
- package/components/GridRow.js +5 -1
- package/components/base/GridOverlays.js +2 -2
- package/components/cell/GridEditInputCell.d.ts +2 -5
- package/components/cell/GridEditInputCell.js +13 -14
- package/components/cell/GridEditSingleSelectCell.d.ts +4 -0
- package/components/cell/GridEditSingleSelectCell.js +11 -4
- package/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
- package/components/containers/GridRoot.js +4 -2
- package/components/toolbar/GridToolbarDensitySelector.js +13 -4
- package/components/toolbar/GridToolbarExportContainer.js +13 -2
- package/constants/envConstants.d.ts +1 -1
- package/constants/envConstants.js +2 -11
- package/constants/gridClasses.d.ts +16 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +1 -1
- package/hooks/features/dimensions/useGridDimensions.js +6 -1
- package/hooks/features/editRows/useGridCellEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridCellEditing.new.js +26 -16
- package/hooks/features/editRows/useGridCellEditing.old.js +2 -2
- package/hooks/features/editRows/useGridEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridEditing.new.js +4 -0
- package/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/hooks/features/editRows/useGridRowEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridRowEditing.new.js +16 -10
- package/hooks/features/export/utils.js +8 -1
- package/hooks/features/filter/gridFilterState.d.ts +12 -1
- package/hooks/features/filter/gridFilterUtils.d.ts +8 -5
- package/hooks/features/filter/gridFilterUtils.js +74 -43
- package/hooks/features/filter/useGridFilter.js +16 -3
- package/hooks/features/focus/useGridFocus.js +11 -6
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +1 -1
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -34
- package/hooks/features/pagination/useGridPageSize.js +3 -1
- package/hooks/features/rows/gridRowsSelector.d.ts +14 -0
- package/hooks/features/rows/gridRowsSelector.js +20 -1
- package/hooks/features/rows/gridRowsState.d.ts +8 -1
- package/hooks/features/rows/gridRowsUtils.d.ts +4 -0
- package/hooks/features/rows/gridRowsUtils.js +21 -3
- package/hooks/features/rows/index.d.ts +1 -1
- package/hooks/features/rows/index.js +1 -1
- package/hooks/features/rows/useGridRows.js +5 -2
- package/hooks/features/rows/useGridRowsMeta.js +19 -4
- package/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
- package/hooks/features/scroll/useGridScroll.js +7 -2
- package/hooks/features/selection/useGridSelection.js +7 -3
- package/hooks/features/sorting/useGridSorting.js +8 -0
- package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +3 -0
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +3 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +31 -16
- package/index.js +1 -1
- package/internals/index.d.ts +5 -1
- package/internals/index.js +4 -0
- package/legacy/DataGrid/DataGrid.js +7 -1
- package/legacy/DataGrid/useDataGridProps.js +1 -0
- package/legacy/colDef/gridStringColDef.js +1 -1
- package/legacy/components/GridRow.js +5 -1
- package/legacy/components/base/GridOverlays.js +2 -2
- package/legacy/components/cell/GridEditInputCell.js +13 -14
- package/legacy/components/cell/GridEditSingleSelectCell.js +11 -3
- package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
- package/legacy/components/containers/GridRoot.js +4 -2
- package/legacy/components/toolbar/GridToolbarDensitySelector.js +14 -5
- package/legacy/components/toolbar/GridToolbarExportContainer.js +15 -2
- package/legacy/constants/envConstants.js +2 -11
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +1 -1
- package/legacy/hooks/features/dimensions/useGridDimensions.js +6 -1
- package/legacy/hooks/features/editRows/useGridCellEditing.new.js +27 -17
- package/legacy/hooks/features/editRows/useGridCellEditing.old.js +2 -2
- package/legacy/hooks/features/editRows/useGridEditing.new.js +4 -0
- package/legacy/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/legacy/hooks/features/editRows/useGridRowEditing.new.js +16 -10
- package/legacy/hooks/features/export/utils.js +13 -1
- package/legacy/hooks/features/filter/gridFilterUtils.js +84 -55
- package/legacy/hooks/features/filter/useGridFilter.js +16 -3
- package/legacy/hooks/features/focus/useGridFocus.js +11 -6
- package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +47 -34
- package/legacy/hooks/features/pagination/useGridPageSize.js +3 -1
- package/legacy/hooks/features/rows/gridRowsSelector.js +23 -0
- package/legacy/hooks/features/rows/gridRowsUtils.js +21 -3
- package/legacy/hooks/features/rows/index.js +1 -1
- package/legacy/hooks/features/rows/useGridRows.js +5 -2
- package/legacy/hooks/features/rows/useGridRowsMeta.js +19 -4
- package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
- package/legacy/hooks/features/scroll/useGridScroll.js +7 -2
- package/legacy/hooks/features/selection/useGridSelection.js +7 -3
- package/legacy/hooks/features/sorting/useGridSorting.js +8 -0
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +32 -16
- package/legacy/index.js +1 -1
- package/legacy/internals/index.js +4 -0
- package/legacy/locales/arSD.js +1 -1
- package/legacy/locales/bgBG.js +1 -1
- package/legacy/locales/csCZ.js +1 -1
- package/legacy/locales/daDK.js +1 -1
- package/legacy/locales/deDE.js +9 -9
- package/legacy/locales/elGR.js +1 -1
- package/legacy/locales/esES.js +1 -1
- package/legacy/locales/faIR.js +1 -1
- package/legacy/locales/fiFI.js +1 -1
- package/legacy/locales/frFR.js +1 -1
- package/legacy/locales/heIL.js +1 -1
- package/legacy/locales/huHU.js +1 -1
- package/legacy/locales/itIT.js +15 -15
- package/legacy/locales/jaJP.js +3 -3
- package/legacy/locales/koKR.js +34 -30
- package/legacy/locales/nbNO.js +1 -1
- package/legacy/locales/nlNL.js +1 -1
- package/legacy/locales/plPL.js +1 -1
- package/legacy/locales/ptBR.js +1 -1
- package/legacy/locales/roRO.js +1 -1
- package/legacy/locales/ruRU.js +1 -1
- package/legacy/locales/skSK.js +1 -1
- package/legacy/locales/svSE.js +1 -1
- package/legacy/locales/trTR.js +1 -1
- package/legacy/locales/ukUA.js +1 -1
- package/legacy/locales/viVN.js +1 -1
- package/legacy/locales/zhCN.js +37 -33
- package/legacy/locales/zhTW.js +1 -1
- package/legacy/utils/keyboardUtils.js +8 -5
- package/locales/arSD.js +1 -1
- package/locales/bgBG.js +1 -1
- package/locales/csCZ.js +1 -1
- package/locales/daDK.js +1 -1
- package/locales/deDE.js +9 -9
- package/locales/elGR.js +1 -1
- package/locales/esES.js +1 -1
- package/locales/faIR.js +1 -1
- package/locales/fiFI.js +1 -1
- package/locales/frFR.js +1 -1
- package/locales/heIL.js +1 -1
- package/locales/huHU.js +1 -1
- package/locales/itIT.js +15 -15
- package/locales/jaJP.js +3 -3
- package/locales/koKR.js +30 -30
- package/locales/nbNO.js +1 -1
- package/locales/nlNL.js +1 -1
- package/locales/plPL.js +1 -1
- package/locales/ptBR.js +1 -1
- package/locales/roRO.js +1 -1
- package/locales/ruRU.js +1 -1
- package/locales/skSK.js +1 -1
- package/locales/svSE.js +1 -1
- package/locales/trTR.js +1 -1
- package/locales/ukUA.js +1 -1
- package/locales/viVN.js +1 -1
- package/locales/zhCN.js +33 -33
- package/locales/zhTW.js +1 -1
- package/models/gridRows.d.ts +5 -0
- package/models/props/DataGridProps.d.ts +8 -3
- package/modern/DataGrid/DataGrid.js +7 -1
- package/modern/DataGrid/useDataGridProps.js +1 -0
- package/modern/colDef/gridStringColDef.js +1 -1
- package/modern/components/GridRow.js +5 -1
- package/modern/components/base/GridOverlays.js +2 -2
- package/modern/components/cell/GridEditInputCell.js +13 -14
- package/modern/components/cell/GridEditSingleSelectCell.js +11 -4
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
- package/modern/components/containers/GridRoot.js +4 -2
- package/modern/components/toolbar/GridToolbarDensitySelector.js +11 -4
- package/modern/components/toolbar/GridToolbarExportContainer.js +11 -2
- package/modern/constants/envConstants.js +2 -11
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +1 -1
- package/modern/hooks/features/dimensions/useGridDimensions.js +6 -1
- package/modern/hooks/features/editRows/useGridCellEditing.new.js +24 -16
- package/modern/hooks/features/editRows/useGridCellEditing.old.js +2 -2
- package/modern/hooks/features/editRows/useGridEditing.new.js +4 -0
- package/modern/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/modern/hooks/features/editRows/useGridRowEditing.new.js +16 -10
- package/modern/hooks/features/export/utils.js +6 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +73 -42
- package/modern/hooks/features/filter/useGridFilter.js +16 -3
- package/modern/hooks/features/focus/useGridFocus.js +11 -6
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -30
- package/modern/hooks/features/pagination/useGridPageSize.js +3 -1
- package/modern/hooks/features/rows/gridRowsSelector.js +18 -1
- package/modern/hooks/features/rows/gridRowsUtils.js +19 -3
- package/modern/hooks/features/rows/index.js +1 -1
- package/modern/hooks/features/rows/useGridRows.js +5 -2
- package/modern/hooks/features/rows/useGridRowsMeta.js +17 -4
- package/modern/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
- package/modern/hooks/features/scroll/useGridScroll.js +5 -2
- package/modern/hooks/features/selection/useGridSelection.js +7 -1
- package/modern/hooks/features/sorting/useGridSorting.js +8 -0
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +30 -15
- package/modern/index.js +1 -1
- package/modern/internals/index.js +4 -0
- package/modern/locales/arSD.js +1 -1
- package/modern/locales/bgBG.js +1 -1
- package/modern/locales/csCZ.js +1 -1
- package/modern/locales/daDK.js +1 -1
- package/modern/locales/deDE.js +9 -9
- package/modern/locales/elGR.js +1 -1
- package/modern/locales/esES.js +1 -1
- package/modern/locales/faIR.js +1 -1
- package/modern/locales/fiFI.js +1 -1
- package/modern/locales/frFR.js +1 -1
- package/modern/locales/heIL.js +1 -1
- package/modern/locales/huHU.js +1 -1
- package/modern/locales/itIT.js +15 -15
- package/modern/locales/jaJP.js +3 -3
- package/modern/locales/koKR.js +30 -30
- package/modern/locales/nbNO.js +1 -1
- package/modern/locales/nlNL.js +1 -1
- package/modern/locales/plPL.js +1 -1
- package/modern/locales/ptBR.js +1 -1
- package/modern/locales/roRO.js +1 -1
- package/modern/locales/ruRU.js +1 -1
- package/modern/locales/skSK.js +1 -1
- package/modern/locales/svSE.js +1 -1
- package/modern/locales/trTR.js +1 -1
- package/modern/locales/ukUA.js +1 -1
- package/modern/locales/viVN.js +1 -1
- package/modern/locales/zhCN.js +33 -33
- package/modern/locales/zhTW.js +1 -1
- package/modern/utils/keyboardUtils.js +7 -2
- package/node/DataGrid/DataGrid.js +7 -1
- package/node/DataGrid/useDataGridProps.js +1 -0
- package/node/colDef/gridStringColDef.js +1 -1
- package/node/components/GridRow.js +5 -1
- package/node/components/base/GridOverlays.js +2 -2
- package/node/components/cell/GridEditInputCell.js +15 -16
- package/node/components/cell/GridEditSingleSelectCell.js +10 -4
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
- package/node/components/containers/GridRoot.js +3 -1
- package/node/components/toolbar/GridToolbarDensitySelector.js +13 -4
- package/node/components/toolbar/GridToolbarExportContainer.js +13 -2
- package/node/constants/envConstants.js +2 -13
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +1 -1
- package/node/hooks/features/dimensions/useGridDimensions.js +7 -1
- package/node/hooks/features/editRows/useGridCellEditing.new.js +26 -16
- package/node/hooks/features/editRows/useGridCellEditing.old.js +2 -2
- package/node/hooks/features/editRows/useGridEditing.new.js +4 -0
- package/node/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/node/hooks/features/editRows/useGridRowEditing.new.js +16 -10
- package/node/hooks/features/export/utils.js +7 -0
- package/node/hooks/features/filter/gridFilterUtils.js +81 -47
- package/node/hooks/features/filter/useGridFilter.js +15 -2
- package/node/hooks/features/focus/useGridFocus.js +11 -6
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +43 -34
- package/node/hooks/features/pagination/useGridPageSize.js +4 -1
- package/node/hooks/features/rows/gridRowsSelector.js +24 -2
- package/node/hooks/features/rows/gridRowsUtils.js +23 -2
- package/node/hooks/features/rows/index.js +70 -12
- package/node/hooks/features/rows/useGridRows.js +5 -2
- package/node/hooks/features/rows/useGridRowsMeta.js +20 -4
- package/node/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
- package/node/hooks/features/scroll/useGridScroll.js +7 -1
- package/node/hooks/features/selection/useGridSelection.js +7 -3
- package/node/hooks/features/sorting/useGridSorting.js +8 -0
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +31 -16
- package/node/index.js +1 -1
- package/node/internals/index.js +36 -0
- package/node/locales/arSD.js +1 -1
- package/node/locales/bgBG.js +1 -1
- package/node/locales/csCZ.js +1 -1
- package/node/locales/daDK.js +1 -1
- package/node/locales/deDE.js +9 -9
- package/node/locales/elGR.js +1 -1
- package/node/locales/esES.js +1 -1
- package/node/locales/faIR.js +1 -1
- package/node/locales/fiFI.js +1 -1
- package/node/locales/frFR.js +1 -1
- package/node/locales/heIL.js +1 -1
- package/node/locales/huHU.js +1 -1
- package/node/locales/itIT.js +15 -15
- package/node/locales/jaJP.js +3 -3
- package/node/locales/koKR.js +30 -30
- package/node/locales/nbNO.js +1 -1
- package/node/locales/nlNL.js +1 -1
- package/node/locales/plPL.js +1 -1
- package/node/locales/ptBR.js +1 -1
- package/node/locales/roRO.js +1 -1
- package/node/locales/ruRU.js +1 -1
- package/node/locales/skSK.js +1 -1
- package/node/locales/svSE.js +1 -1
- package/node/locales/trTR.js +1 -1
- package/node/locales/ukUA.js +1 -1
- package/node/locales/viVN.js +1 -1
- package/node/locales/zhCN.js +33 -33
- package/node/locales/zhTW.js +1 -1
- package/node/utils/keyboardUtils.js +10 -4
- package/package.json +1 -1
- package/utils/keyboardUtils.d.ts +2 -2
- 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
|
-
|
|
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 (!
|
|
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
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
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
package/node/internals/index.js
CHANGED
|
@@ -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");
|
package/node/locales/arSD.js
CHANGED
|
@@ -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
|
package/node/locales/bgBG.js
CHANGED
|
@@ -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
|
package/node/locales/csCZ.js
CHANGED
|
@@ -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
|
package/node/locales/daDK.js
CHANGED
|
@@ -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
|
package/node/locales/deDE.js
CHANGED
|
@@ -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'
|
|
124
|
-
//
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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;
|
package/node/locales/elGR.js
CHANGED
|
@@ -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
|
package/node/locales/esES.js
CHANGED
|
@@ -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
|
package/node/locales/faIR.js
CHANGED
|
@@ -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
|
package/node/locales/fiFI.js
CHANGED
|
@@ -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
|
package/node/locales/frFR.js
CHANGED
|
@@ -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
|
package/node/locales/heIL.js
CHANGED
|
@@ -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
|
package/node/locales/huHU.js
CHANGED
|
@@ -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
|
package/node/locales/itIT.js
CHANGED
|
@@ -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
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
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}
|
|
118
|
-
//
|
|
119
|
-
|
|
120
|
-
|
|
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
|
-
|
|
123
|
-
// Aggregation
|
|
123
|
+
rowReorderingHeaderName: 'Riordinamento righe' // Aggregation
|
|
124
124
|
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
125
|
// aggregationFunctionLabelSum: 'sum',
|
|
126
126
|
// aggregationFunctionLabelAvg: 'avg',
|
package/node/locales/jaJP.js
CHANGED
|
@@ -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: '...に等しい',
|
package/node/locales/koKR.js
CHANGED
|
@@ -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
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
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
|
-
|
|
108
|
-
|
|
109
|
-
|
|
107
|
+
pinToLeft: '왼쪽에 고정',
|
|
108
|
+
pinToRight: '오른쪽에 고정',
|
|
109
|
+
unpin: '고정 해제',
|
|
110
110
|
// Tree Data
|
|
111
111
|
treeDataGroupingHeaderName: '그룹',
|
|
112
112
|
treeDataExpand: '하위노드 펼치기',
|
|
113
|
-
treeDataCollapse: '하위노드 접기'
|
|
114
|
-
//
|
|
115
|
-
|
|
116
|
-
|
|
113
|
+
treeDataCollapse: '하위노드 접기',
|
|
114
|
+
// Grouping columns
|
|
115
|
+
groupingColumnHeaderName: '그룹',
|
|
116
|
+
groupColumn: name => `${name} 값으로 그룹 생성`,
|
|
117
|
+
unGroupColumn: name => `${name} 값으로 그룹 해제`,
|
|
117
118
|
// Master/detail
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
detailPanelToggle: '상세 패널 토글',
|
|
120
|
+
expandDetailPanel: '열기',
|
|
121
|
+
collapseDetailPanel: '접기',
|
|
121
122
|
// Row reordering text
|
|
122
|
-
|
|
123
|
+
rowReorderingHeaderName: '행 재배치',
|
|
123
124
|
// Aggregation
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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;
|
package/node/locales/nbNO.js
CHANGED
|
@@ -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
|
package/node/locales/nlNL.js
CHANGED
|
@@ -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
|
package/node/locales/plPL.js
CHANGED
|
@@ -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
|
package/node/locales/ptBR.js
CHANGED
|
@@ -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
|
package/node/locales/roRO.js
CHANGED
|
@@ -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
|
package/node/locales/ruRU.js
CHANGED
|
@@ -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
|
package/node/locales/skSK.js
CHANGED
|
@@ -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
|
package/node/locales/svSE.js
CHANGED
|
@@ -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
|
package/node/locales/trTR.js
CHANGED
|
@@ -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
|
package/node/locales/ukUA.js
CHANGED
|
@@ -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
|
package/node/locales/viVN.js
CHANGED
|
@@ -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
|