@mui/x-data-grid 6.5.0 → 6.7.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.
- package/CHANGELOG.md +150 -2
- package/DataGrid/DataGrid.js +10 -3
- package/README.md +2 -2
- package/components/GridColumnHeaders.js +4 -9
- package/components/GridHeader.d.ts +2 -2
- package/components/base/GridBody.d.ts +1 -1
- package/components/base/GridFooterPlaceholder.d.ts +2 -2
- package/components/base/GridOverlays.d.ts +2 -2
- package/components/cell/GridActionsCell.d.ts +3 -3
- package/components/cell/GridActionsCell.js +3 -3
- package/components/cell/GridBooleanCell.d.ts +1 -1
- package/components/cell/GridEditBooleanCell.d.ts +2 -2
- package/components/cell/GridEditDateCell.d.ts +2 -2
- package/components/cell/GridEditInputCell.d.ts +1 -1
- package/components/cell/GridEditSingleSelectCell.d.ts +3 -3
- package/components/cell/GridEditSingleSelectCell.js +5 -5
- package/components/cell/GridSkeletonCell.d.ts +1 -1
- package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
- package/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -3
- package/components/columnHeaders/GridColumnGroupHeader.d.ts +2 -2
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.js +13 -4
- package/components/columnHeaders/GridColumnHeaderItem.d.ts +2 -2
- package/components/columnHeaders/GridColumnHeaderSeparator.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderTitle.d.ts +1 -1
- package/components/containers/GridRoot.js +1 -3
- package/components/containers/GridRootStyles.js +8 -1
- package/components/index.d.ts +0 -1
- package/components/index.js +1 -2
- package/components/menu/GridMenu.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +2 -2
- package/components/panel/GridColumnsPanel.d.ts +16 -2
- package/components/panel/GridColumnsPanel.js +14 -0
- package/components/panel/GridPanelContent.d.ts +1 -1
- package/components/panel/GridPanelFooter.d.ts +1 -1
- package/components/panel/GridPanelHeader.d.ts +1 -1
- package/components/panel/GridPreferencesPanel.js +3 -1
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +1 -2
- package/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +1 -2
- package/components/panel/filterPanel/GridFilterInputDate.js +1 -6
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +1 -2
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -6
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +1 -2
- package/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/components/panel/filterPanel/GridFilterPanel.d.ts +8 -0
- package/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/components/toolbar/GridToolbarColumnsButton.js +11 -6
- package/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/components/toolbar/GridToolbarExport.d.ts +2 -2
- package/components/toolbar/GridToolbarExportContainer.js +7 -7
- package/components/toolbar/GridToolbarFilterButton.js +11 -4
- package/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
- package/constants/gridClasses.d.ts +4 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +4 -4
- package/context/GridContextProvider.d.ts +1 -1
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +10 -2
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -1
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +1 -1
- package/hooks/features/filter/gridFilterSelector.d.ts +2 -2
- package/hooks/features/filter/gridFilterSelector.js +2 -2
- package/hooks/features/filter/gridFilterState.d.ts +6 -6
- package/hooks/features/filter/gridFilterState.js +6 -0
- package/hooks/features/filter/useGridFilter.js +31 -10
- package/hooks/features/focus/useGridFocus.js +1 -0
- package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +2 -0
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/hooks/features/rows/useGridRowsMeta.js +12 -13
- package/hooks/features/sorting/useGridSorting.js +2 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- package/index.js +1 -1
- package/internals/utils/useProps.js +21 -1
- package/legacy/DataGrid/DataGrid.js +10 -3
- package/legacy/components/GridColumnHeaders.js +4 -9
- package/legacy/components/cell/GridActionsCell.js +3 -3
- package/legacy/components/cell/GridEditSingleSelectCell.js +5 -5
- package/legacy/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -3
- package/legacy/components/columnHeaders/GridColumnHeaderFilterIconButton.js +13 -4
- package/legacy/components/containers/GridRoot.js +1 -3
- package/legacy/components/containers/GridRootStyles.js +8 -4
- package/legacy/components/index.js +1 -2
- package/legacy/components/panel/GridColumnsPanel.js +14 -0
- package/legacy/components/panel/GridPreferencesPanel.js +3 -1
- package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +7 -7
- package/legacy/components/panel/filterPanel/GridFilterInputDate.js +1 -5
- package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +7 -6
- package/legacy/components/panel/filterPanel/GridFilterInputValue.js +1 -5
- package/legacy/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/legacy/components/toolbar/GridToolbarColumnsButton.js +11 -5
- package/legacy/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/legacy/components/toolbar/GridToolbarExportContainer.js +7 -7
- package/legacy/components/toolbar/GridToolbarFilterButton.js +11 -4
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +4 -4
- package/legacy/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -1
- package/legacy/hooks/features/filter/gridFilterSelector.js +4 -4
- package/legacy/hooks/features/filter/gridFilterState.js +6 -0
- package/legacy/hooks/features/filter/useGridFilter.js +31 -10
- package/legacy/hooks/features/focus/useGridFocus.js +1 -0
- package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/legacy/hooks/features/rows/useGridRowsMeta.js +13 -21
- package/legacy/hooks/features/sorting/useGridSorting.js +2 -1
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- package/legacy/index.js +1 -1
- package/legacy/internals/utils/useProps.js +23 -1
- package/legacy/locales/arSD.js +12 -12
- package/legacy/locales/beBY.js +12 -12
- package/legacy/locales/bgBG.js +12 -12
- package/legacy/locales/csCZ.js +25 -27
- package/legacy/locales/daDK.js +12 -12
- package/legacy/locales/deDE.js +25 -27
- package/legacy/locales/elGR.js +12 -12
- package/legacy/locales/esES.js +12 -12
- package/legacy/locales/faIR.js +12 -12
- package/legacy/locales/fiFI.js +12 -12
- package/legacy/locales/frFR.js +25 -27
- package/legacy/locales/heIL.js +12 -12
- package/legacy/locales/huHU.js +12 -12
- package/legacy/locales/itIT.js +12 -12
- package/legacy/locales/jaJP.js +12 -12
- package/legacy/locales/koKR.js +12 -12
- package/legacy/locales/nbNO.js +12 -12
- package/legacy/locales/nlNL.js +25 -27
- package/legacy/locales/plPL.js +12 -12
- package/legacy/locales/ptBR.js +12 -12
- package/legacy/locales/roRO.js +12 -12
- package/legacy/locales/ruRU.js +12 -12
- package/legacy/locales/skSK.js +12 -12
- package/legacy/locales/svSE.js +12 -12
- package/legacy/locales/trTR.js +18 -19
- package/legacy/locales/ukUA.js +12 -12
- package/legacy/locales/urPK.js +12 -12
- package/legacy/locales/viVN.js +12 -12
- package/legacy/locales/zhCN.js +12 -12
- package/legacy/locales/zhTW.js +12 -12
- package/legacy/models/gridFilterItem.js +1 -1
- package/legacy/utils/EventManager.js +2 -2
- package/locales/arSD.js +12 -12
- package/locales/beBY.js +12 -12
- package/locales/bgBG.js +12 -12
- package/locales/csCZ.js +25 -27
- package/locales/daDK.js +12 -12
- package/locales/deDE.js +25 -27
- package/locales/elGR.js +12 -12
- package/locales/esES.js +12 -12
- package/locales/faIR.js +12 -12
- package/locales/fiFI.js +12 -12
- package/locales/frFR.js +25 -27
- package/locales/heIL.js +12 -12
- package/locales/huHU.js +12 -12
- package/locales/itIT.js +12 -12
- package/locales/jaJP.js +12 -12
- package/locales/koKR.js +12 -12
- package/locales/nbNO.js +12 -12
- package/locales/nlNL.js +25 -27
- package/locales/plPL.js +12 -12
- package/locales/ptBR.js +12 -12
- package/locales/roRO.js +12 -12
- package/locales/ruRU.js +12 -12
- package/locales/skSK.js +12 -12
- package/locales/svSE.js +12 -12
- package/locales/trTR.js +18 -19
- package/locales/ukUA.js +12 -12
- package/locales/urPK.js +12 -12
- package/locales/viVN.js +12 -12
- package/locales/zhCN.js +12 -12
- package/locales/zhTW.js +12 -12
- package/material/components/MUISelectOption.d.ts +2 -2
- package/models/api/gridFilterApi.d.ts +3 -1
- package/models/api/gridPreferencesPanelApi.d.ts +3 -1
- package/models/events/gridEventLookup.d.ts +8 -0
- package/models/gridFilterItem.d.ts +1 -1
- package/models/gridFilterItem.js +1 -1
- package/models/gridFilterOperator.d.ts +1 -1
- package/models/gridStateCommunity.d.ts +2 -0
- package/models/props/DataGridProps.d.ts +5 -0
- package/modern/DataGrid/DataGrid.js +10 -3
- package/modern/components/GridColumnHeaders.js +4 -9
- package/modern/components/cell/GridActionsCell.js +3 -3
- package/modern/components/cell/GridEditSingleSelectCell.js +5 -5
- package/modern/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -3
- package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.js +13 -4
- package/modern/components/containers/GridRoot.js +1 -3
- package/modern/components/containers/GridRootStyles.js +8 -1
- package/modern/components/index.js +1 -2
- package/modern/components/panel/GridColumnsPanel.js +14 -0
- package/modern/components/panel/GridPreferencesPanel.js +3 -1
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +1 -6
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -6
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/modern/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/modern/components/toolbar/GridToolbarColumnsButton.js +11 -6
- package/modern/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/modern/components/toolbar/GridToolbarExportContainer.js +7 -7
- package/modern/components/toolbar/GridToolbarFilterButton.js +11 -4
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +4 -4
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -1
- package/modern/hooks/features/filter/gridFilterSelector.js +2 -2
- package/modern/hooks/features/filter/gridFilterState.js +6 -0
- package/modern/hooks/features/filter/useGridFilter.js +31 -10
- package/modern/hooks/features/focus/useGridFocus.js +1 -0
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/modern/hooks/features/rows/useGridRowsMeta.js +12 -13
- package/modern/hooks/features/sorting/useGridSorting.js +2 -1
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- package/modern/index.js +1 -1
- package/modern/internals/utils/useProps.js +20 -1
- package/modern/locales/arSD.js +12 -12
- package/modern/locales/beBY.js +12 -12
- package/modern/locales/bgBG.js +12 -12
- package/modern/locales/csCZ.js +25 -27
- package/modern/locales/daDK.js +12 -12
- package/modern/locales/deDE.js +25 -27
- package/modern/locales/elGR.js +12 -12
- package/modern/locales/esES.js +12 -12
- package/modern/locales/faIR.js +12 -12
- package/modern/locales/fiFI.js +12 -12
- package/modern/locales/frFR.js +25 -27
- package/modern/locales/heIL.js +12 -12
- package/modern/locales/huHU.js +12 -12
- package/modern/locales/itIT.js +12 -12
- package/modern/locales/jaJP.js +12 -12
- package/modern/locales/koKR.js +12 -12
- package/modern/locales/nbNO.js +12 -12
- package/modern/locales/nlNL.js +25 -27
- package/modern/locales/plPL.js +12 -12
- package/modern/locales/ptBR.js +12 -12
- package/modern/locales/roRO.js +12 -12
- package/modern/locales/ruRU.js +12 -12
- package/modern/locales/skSK.js +12 -12
- package/modern/locales/svSE.js +12 -12
- package/modern/locales/trTR.js +18 -19
- package/modern/locales/ukUA.js +12 -12
- package/modern/locales/urPK.js +12 -12
- package/modern/locales/viVN.js +12 -12
- package/modern/locales/zhCN.js +12 -12
- package/modern/locales/zhTW.js +12 -12
- package/modern/models/gridFilterItem.js +1 -1
- package/modern/utils/EventManager.js +2 -2
- package/node/DataGrid/DataGrid.js +10 -3
- package/node/components/GridColumnHeaders.js +3 -8
- package/node/components/cell/GridActionsCell.js +3 -3
- package/node/components/cell/GridEditSingleSelectCell.js +5 -5
- package/node/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -3
- package/node/components/columnHeaders/GridColumnHeaderFilterIconButton.js +12 -3
- package/node/components/containers/GridRoot.js +1 -3
- package/node/components/containers/GridRootStyles.js +8 -1
- package/node/components/index.js +0 -11
- package/node/components/panel/GridColumnsPanel.js +14 -0
- package/node/components/panel/GridPreferencesPanel.js +3 -1
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
- package/node/components/panel/filterPanel/GridFilterInputDate.js +1 -6
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -6
- package/node/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/node/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/node/components/toolbar/GridToolbarColumnsButton.js +11 -6
- package/node/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/node/components/toolbar/GridToolbarExportContainer.js +7 -7
- package/node/components/toolbar/GridToolbarFilterButton.js +10 -3
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +4 -4
- package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -1
- package/node/hooks/features/filter/gridFilterSelector.js +2 -2
- package/node/hooks/features/filter/gridFilterState.js +6 -0
- package/node/hooks/features/filter/useGridFilter.js +35 -14
- package/node/hooks/features/focus/useGridFocus.js +1 -0
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/node/hooks/features/rows/useGridRowsMeta.js +12 -13
- package/node/hooks/features/sorting/useGridSorting.js +2 -1
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- package/node/index.js +1 -1
- package/node/internals/utils/useProps.js +20 -1
- package/node/locales/arSD.js +12 -12
- package/node/locales/beBY.js +12 -12
- package/node/locales/bgBG.js +12 -12
- package/node/locales/csCZ.js +25 -27
- package/node/locales/daDK.js +12 -12
- package/node/locales/deDE.js +25 -27
- package/node/locales/elGR.js +12 -12
- package/node/locales/esES.js +12 -12
- package/node/locales/faIR.js +12 -12
- package/node/locales/fiFI.js +12 -12
- package/node/locales/frFR.js +25 -27
- package/node/locales/heIL.js +12 -12
- package/node/locales/huHU.js +12 -12
- package/node/locales/itIT.js +12 -12
- package/node/locales/jaJP.js +12 -12
- package/node/locales/koKR.js +12 -12
- package/node/locales/nbNO.js +12 -12
- package/node/locales/nlNL.js +25 -27
- package/node/locales/plPL.js +12 -12
- package/node/locales/ptBR.js +12 -12
- package/node/locales/roRO.js +12 -12
- package/node/locales/ruRU.js +12 -12
- package/node/locales/skSK.js +12 -12
- package/node/locales/svSE.js +12 -12
- package/node/locales/trTR.js +18 -19
- package/node/locales/ukUA.js +12 -12
- package/node/locales/urPK.js +12 -12
- package/node/locales/viVN.js +12 -12
- package/node/locales/zhCN.js +12 -12
- package/node/locales/zhTW.js +12 -12
- package/node/models/gridFilterItem.js +1 -1
- package/node/utils/EventManager.js +2 -2
- package/package.json +4 -4
- package/themeAugmentation/overrides.d.ts +1 -1
- package/utils/EventManager.js +2 -2
- package/components/GridScrollArea.d.ts +0 -10
- package/components/GridScrollArea.js +0 -117
- package/legacy/components/GridScrollArea.js +0 -119
- package/legacy/lib/createDetectElementResize/index.js +0 -145
- package/lib/createDetectElementResize/index.d.ts +0 -18
- package/lib/createDetectElementResize/index.js +0 -145
- package/lib/createDetectElementResize/types.d.ts +0 -9
- package/modern/components/GridScrollArea.js +0 -117
- package/modern/lib/createDetectElementResize/index.js +0 -145
- package/node/components/GridScrollArea.js +0 -126
- package/node/lib/createDetectElementResize/index.js +0 -151
|
@@ -51,7 +51,7 @@ const useGridRowsMeta = (apiRef, props) => {
|
|
|
51
51
|
getRowSpacing,
|
|
52
52
|
getEstimatedRowHeight
|
|
53
53
|
} = props;
|
|
54
|
-
const rowsHeightLookup = React.useRef(
|
|
54
|
+
const rowsHeightLookup = React.useRef(Object.create(null));
|
|
55
55
|
|
|
56
56
|
// Inspired by https://github.com/bvaughn/react-virtualized/blob/master/source/Grid/utils/CellSizeAndPositionManager.js
|
|
57
57
|
const lastMeasuredRowIndex = React.useRef(-1);
|
|
@@ -114,17 +114,14 @@ const useGridRowsMeta = (apiRef, props) => {
|
|
|
114
114
|
} else {
|
|
115
115
|
rowsHeightLookup.current[row.id].needsFirstMeasurement = false;
|
|
116
116
|
}
|
|
117
|
-
const
|
|
117
|
+
const initialHeights = {};
|
|
118
|
+
/* eslint-disable-next-line no-restricted-syntax */
|
|
119
|
+
for (const key in sizes) {
|
|
118
120
|
if (/^base[A-Z]/.test(key)) {
|
|
119
|
-
|
|
121
|
+
initialHeights[key] = sizes[key];
|
|
120
122
|
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
// We use an object to make simple to check if a height is already added or not
|
|
125
|
-
const initialHeights = (0, _extends2.default)({}, existingBaseSizes, {
|
|
126
|
-
baseCenter: baseRowHeight
|
|
127
|
-
});
|
|
123
|
+
}
|
|
124
|
+
initialHeights.baseCenter = baseRowHeight;
|
|
128
125
|
if (getRowSpacing) {
|
|
129
126
|
const indexRelativeToCurrentPage = apiRef.current.getRowIndexRelativeToVisibleRows(row.id);
|
|
130
127
|
const spacing = getRowSpacing((0, _extends2.default)({}, row, {
|
|
@@ -145,13 +142,15 @@ const useGridRowsMeta = (apiRef, props) => {
|
|
|
145
142
|
let maximumBaseSize = 0;
|
|
146
143
|
let otherSizes = 0;
|
|
147
144
|
const processedSizes = calculateRowProcessedSizes(row);
|
|
148
|
-
|
|
149
|
-
|
|
145
|
+
/* eslint-disable-next-line no-restricted-syntax, guard-for-in */
|
|
146
|
+
for (const key in processedSizes) {
|
|
147
|
+
const value = processedSizes[key];
|
|
148
|
+
if (/^base[A-Z]/.test(key)) {
|
|
150
149
|
maximumBaseSize = value > maximumBaseSize ? value : maximumBaseSize;
|
|
151
150
|
} else {
|
|
152
151
|
otherSizes += value;
|
|
153
152
|
}
|
|
154
|
-
}
|
|
153
|
+
}
|
|
155
154
|
return acc + maximumBaseSize + otherSizes;
|
|
156
155
|
}, 0);
|
|
157
156
|
pinnedRows?.top?.forEach(row => {
|
|
@@ -7,6 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.useGridSorting = exports.sortingStateInitializer = void 0;
|
|
8
8
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
9
9
|
var React = _interopRequireWildcard(require("react"));
|
|
10
|
+
var _utils = require("@mui/utils");
|
|
10
11
|
var _keyboardUtils = require("../../../utils/keyboardUtils");
|
|
11
12
|
var _useGridApiEventHandler = require("../../utils/useGridApiEventHandler");
|
|
12
13
|
var _useGridApiMethod = require("../../utils/useGridApiMethod");
|
|
@@ -248,7 +249,7 @@ const useGridSorting = (apiRef, props) => {
|
|
|
248
249
|
/**
|
|
249
250
|
* EFFECTS
|
|
250
251
|
*/
|
|
251
|
-
|
|
252
|
+
(0, _utils.unstable_useEnhancedEffect)(() => {
|
|
252
253
|
if (props.sortModel !== undefined) {
|
|
253
254
|
apiRef.current.setSortModel(props.sortModel);
|
|
254
255
|
}
|
|
@@ -101,7 +101,7 @@ const useGridVirtualScroller = props => {
|
|
|
101
101
|
height: null
|
|
102
102
|
});
|
|
103
103
|
const prevTotalWidth = React.useRef(columnsTotalWidth);
|
|
104
|
-
const rowStyleCache = React.useRef(
|
|
104
|
+
const rowStyleCache = React.useRef(Object.create(null));
|
|
105
105
|
const prevGetRowProps = React.useRef();
|
|
106
106
|
const prevRootRowStyle = React.useRef();
|
|
107
107
|
const getRenderedColumnsRef = React.useRef((0, _reselect.defaultMemoize)((columns, firstColumnToRender, lastColumnToRender) => {
|
|
@@ -385,7 +385,7 @@ const useGridVirtualScroller = props => {
|
|
|
385
385
|
rootRowProps = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded);
|
|
386
386
|
const invalidatesCachedRowStyle = prevGetRowProps.current !== getRowProps || prevRootRowStyle.current !== rootRowStyle;
|
|
387
387
|
if (invalidatesCachedRowStyle) {
|
|
388
|
-
rowStyleCache.current =
|
|
388
|
+
rowStyleCache.current = Object.create(null);
|
|
389
389
|
}
|
|
390
390
|
const rows = [];
|
|
391
391
|
for (let i = 0; i < renderedRows.length; i += 1) {
|
package/node/index.js
CHANGED
|
@@ -10,6 +10,25 @@ var React = _interopRequireWildcard(require("react"));
|
|
|
10
10
|
const _excluded = ["components", "componentsProps"];
|
|
11
11
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
12
12
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
13
|
+
/** Gathers props for the root element into a single `.forwardedProps` field */
|
|
14
|
+
function groupForwardedProps(props) {
|
|
15
|
+
const keys = Object.keys(props);
|
|
16
|
+
if (!keys.some(key => key.startsWith('aria-') || key.startsWith('data-'))) {
|
|
17
|
+
return props;
|
|
18
|
+
}
|
|
19
|
+
const newProps = {};
|
|
20
|
+
const forwardedProps = props.forwardedProps ?? {};
|
|
21
|
+
for (let i = 0; i < keys.length; i += 1) {
|
|
22
|
+
const key = keys[i];
|
|
23
|
+
if (key.startsWith('aria-') || key.startsWith('data-')) {
|
|
24
|
+
forwardedProps[key] = props[key];
|
|
25
|
+
} else {
|
|
26
|
+
newProps[key] = props[key];
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
newProps.forwardedProps = forwardedProps;
|
|
30
|
+
return newProps;
|
|
31
|
+
}
|
|
13
32
|
function useProps(allProps) {
|
|
14
33
|
return React.useMemo(() => {
|
|
15
34
|
const {
|
|
@@ -17,6 +36,6 @@ function useProps(allProps) {
|
|
|
17
36
|
componentsProps
|
|
18
37
|
} = allProps,
|
|
19
38
|
themedProps = (0, _objectWithoutPropertiesLoose2.default)(allProps, _excluded);
|
|
20
|
-
return [components, componentsProps, themedProps];
|
|
39
|
+
return [components, componentsProps, groupForwardedProps(themedProps)];
|
|
21
40
|
}, [allProps]);
|
|
22
41
|
}
|
package/node/locales/arSD.js
CHANGED
|
@@ -66,12 +66,12 @@ const arSDGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'خالي',
|
|
67
67
|
filterOperatorIsNotEmpty: 'غير خالي',
|
|
68
68
|
filterOperatorIsAnyOf: 'أي من',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const arSDGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'أي',
|
package/node/locales/beBY.js
CHANGED
|
@@ -80,12 +80,12 @@ const beBYGrid = {
|
|
|
80
80
|
filterOperatorIsEmpty: 'пусты',
|
|
81
81
|
filterOperatorIsNotEmpty: 'не пусты',
|
|
82
82
|
filterOperatorIsAnyOf: 'усякі з',
|
|
83
|
-
// filterOperator
|
|
84
|
-
// filterOperator
|
|
85
|
-
// filterOperator
|
|
86
|
-
// filterOperator
|
|
87
|
-
// filterOperator
|
|
88
|
-
// filterOperator
|
|
83
|
+
// 'filterOperator=': '=',
|
|
84
|
+
// 'filterOperator!=': '!=',
|
|
85
|
+
// 'filterOperator>': '>',
|
|
86
|
+
// 'filterOperator>=': '>=',
|
|
87
|
+
// 'filterOperator<': '<',
|
|
88
|
+
// 'filterOperator<=': '<=',
|
|
89
89
|
|
|
90
90
|
// Header filter operators text
|
|
91
91
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -101,12 +101,12 @@ const beBYGrid = {
|
|
|
101
101
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
102
102
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
103
103
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
104
|
-
// headerFilterOperator
|
|
105
|
-
// headerFilterOperator
|
|
106
|
-
// headerFilterOperator
|
|
107
|
-
// headerFilterOperator
|
|
108
|
-
// headerFilterOperator
|
|
109
|
-
// headerFilterOperator
|
|
104
|
+
// 'headerFilterOperator=': 'Equals',
|
|
105
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
106
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
107
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
108
|
+
// 'headerFilterOperator<': 'Less than',
|
|
109
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
110
110
|
|
|
111
111
|
// Filter values text
|
|
112
112
|
filterValueAny: 'усякі',
|
package/node/locales/bgBG.js
CHANGED
|
@@ -66,12 +66,12 @@ const bgBGGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'е празен',
|
|
67
67
|
filterOperatorIsNotEmpty: 'не е празен',
|
|
68
68
|
filterOperatorIsAnyOf: 'е някой от',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const bgBGGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'всякакви',
|
package/node/locales/csCZ.js
CHANGED
|
@@ -74,34 +74,32 @@ const csCZGrid = {
|
|
|
74
74
|
filterOperatorIsEmpty: 'je prázdný',
|
|
75
75
|
filterOperatorIsNotEmpty: 'není prázdný',
|
|
76
76
|
filterOperatorIsAnyOf: 'je jeden z',
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
77
|
+
'filterOperator=': '=',
|
|
78
|
+
'filterOperator!=': '!=',
|
|
79
|
+
'filterOperator>': '>',
|
|
80
|
+
'filterOperator>=': '>=',
|
|
81
|
+
'filterOperator<': '<',
|
|
82
|
+
'filterOperator<=': '<=',
|
|
84
83
|
// Header filter operators text
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
84
|
+
headerFilterOperatorContains: 'Obsahuje',
|
|
85
|
+
headerFilterOperatorEquals: 'Rovná se',
|
|
86
|
+
headerFilterOperatorStartsWith: 'Začíná na',
|
|
87
|
+
headerFilterOperatorEndsWith: 'Končí na',
|
|
88
|
+
headerFilterOperatorIs: 'Je',
|
|
89
|
+
headerFilterOperatorNot: 'Není',
|
|
90
|
+
headerFilterOperatorAfter: 'Je po',
|
|
91
|
+
headerFilterOperatorOnOrAfter: 'Je po včetně',
|
|
92
|
+
headerFilterOperatorBefore: 'Je před',
|
|
93
|
+
headerFilterOperatorOnOrBefore: 'Je před včetně',
|
|
94
|
+
headerFilterOperatorIsEmpty: 'Je prázdný',
|
|
95
|
+
headerFilterOperatorIsNotEmpty: 'Není prázdný',
|
|
96
|
+
headerFilterOperatorIsAnyOf: 'Je jeden z',
|
|
97
|
+
'headerFilterOperator=': 'Rovná se',
|
|
98
|
+
'headerFilterOperator!=': 'Nerovná se',
|
|
99
|
+
'headerFilterOperator>': 'Větší než',
|
|
100
|
+
'headerFilterOperator>=': 'Větší než nebo rovno',
|
|
101
|
+
'headerFilterOperator<': 'Menší než',
|
|
102
|
+
'headerFilterOperator<=': 'Menší než nebo rovno',
|
|
105
103
|
// Filter values text
|
|
106
104
|
filterValueAny: 'jakýkoliv',
|
|
107
105
|
filterValueTrue: 'ano',
|
package/node/locales/daDK.js
CHANGED
|
@@ -66,12 +66,12 @@ const daDKGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'Indeholder ikke data',
|
|
67
67
|
filterOperatorIsNotEmpty: 'Indeholder data',
|
|
68
68
|
filterOperatorIsAnyOf: 'indeholder en af',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const daDKGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'hvilken som helst',
|
package/node/locales/deDE.js
CHANGED
|
@@ -66,34 +66,32 @@ const deDEGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'ist leer',
|
|
67
67
|
filterOperatorIsNotEmpty: 'ist nicht leer',
|
|
68
68
|
filterOperatorIsAnyOf: 'ist einer der Werte',
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
'filterOperator=': '=',
|
|
70
|
+
'filterOperator!=': '!=',
|
|
71
|
+
'filterOperator>': '>',
|
|
72
|
+
'filterOperator>=': '>=',
|
|
73
|
+
'filterOperator<': '<',
|
|
74
|
+
'filterOperator<=': '<=',
|
|
76
75
|
// Header filter operators text
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
76
|
+
headerFilterOperatorContains: 'Enthält',
|
|
77
|
+
headerFilterOperatorEquals: 'Gleich',
|
|
78
|
+
headerFilterOperatorStartsWith: 'Beginnt mit',
|
|
79
|
+
headerFilterOperatorEndsWith: 'Endet mit',
|
|
80
|
+
headerFilterOperatorIs: 'Ist',
|
|
81
|
+
headerFilterOperatorNot: 'Ist nicht',
|
|
82
|
+
headerFilterOperatorAfter: 'Ist nach',
|
|
83
|
+
headerFilterOperatorOnOrAfter: 'Ist am oder nach',
|
|
84
|
+
headerFilterOperatorBefore: 'Ist vor',
|
|
85
|
+
headerFilterOperatorOnOrBefore: 'Ist am oder vor',
|
|
86
|
+
headerFilterOperatorIsEmpty: 'Ist leer',
|
|
87
|
+
headerFilterOperatorIsNotEmpty: 'Ist nicht leer',
|
|
88
|
+
headerFilterOperatorIsAnyOf: 'Ist eines von',
|
|
89
|
+
'headerFilterOperator=': 'Gleich',
|
|
90
|
+
'headerFilterOperator!=': 'Ungleich',
|
|
91
|
+
'headerFilterOperator>': 'Größer als',
|
|
92
|
+
'headerFilterOperator>=': 'Größer als oder gleich',
|
|
93
|
+
'headerFilterOperator<': 'Kleiner als',
|
|
94
|
+
'headerFilterOperator<=': 'Kleiner als oder gleich',
|
|
97
95
|
// Filter values text
|
|
98
96
|
filterValueAny: 'Beliebig',
|
|
99
97
|
filterValueTrue: 'Ja',
|
package/node/locales/elGR.js
CHANGED
|
@@ -67,12 +67,12 @@ const elGRGrid = {
|
|
|
67
67
|
filterOperatorIsEmpty: 'είναι κενό',
|
|
68
68
|
filterOperatorIsNotEmpty: 'δεν είναι κενό',
|
|
69
69
|
// filterOperatorIsAnyOf: 'is any of',
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
75
|
-
// filterOperator
|
|
70
|
+
// 'filterOperator=': '=',
|
|
71
|
+
// 'filterOperator!=': '!=',
|
|
72
|
+
// 'filterOperator>': '>',
|
|
73
|
+
// 'filterOperator>=': '>=',
|
|
74
|
+
// 'filterOperator<': '<',
|
|
75
|
+
// 'filterOperator<=': '<=',
|
|
76
76
|
|
|
77
77
|
// Header filter operators text
|
|
78
78
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -88,12 +88,12 @@ const elGRGrid = {
|
|
|
88
88
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
89
89
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
90
90
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
96
|
-
// headerFilterOperator
|
|
91
|
+
// 'headerFilterOperator=': 'Equals',
|
|
92
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
93
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
94
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
95
|
+
// 'headerFilterOperator<': 'Less than',
|
|
96
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
97
97
|
|
|
98
98
|
// Filter values text
|
|
99
99
|
// filterValueAny: 'any',
|
package/node/locales/esES.js
CHANGED
|
@@ -66,12 +66,12 @@ const esESGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'está vacío',
|
|
67
67
|
filterOperatorIsNotEmpty: 'no esta vacío',
|
|
68
68
|
filterOperatorIsAnyOf: 'es cualquiera de',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const esESGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'cualquiera',
|
package/node/locales/faIR.js
CHANGED
|
@@ -66,12 +66,12 @@ const faIRGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'خالی است',
|
|
67
67
|
filterOperatorIsNotEmpty: 'خالی نیست',
|
|
68
68
|
filterOperatorIsAnyOf: 'هر یک از',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const faIRGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'هرچیزی',
|
package/node/locales/fiFI.js
CHANGED
|
@@ -66,12 +66,12 @@ const fiFIGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'on tyhjä',
|
|
67
67
|
filterOperatorIsNotEmpty: 'ei ole tyhjä',
|
|
68
68
|
filterOperatorIsAnyOf: 'mikä tahansa seuraavista',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const fiFIGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'mikä tahansa',
|