@mui/x-data-grid 6.6.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 +72 -0
- package/components/containers/GridRootStyles.js +8 -1
- package/components/panel/GridColumnsPanel.d.ts +14 -0
- package/components/panel/GridColumnsPanel.js +14 -0
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +0 -1
- package/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +0 -1
- package/components/panel/filterPanel/GridFilterInputDate.js +1 -6
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +0 -1
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +0 -1
- 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/constants/gridClasses.d.ts +4 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +4 -4
- package/hooks/features/filter/useGridFilter.js +2 -1
- package/hooks/features/focus/useGridFocus.js +1 -0
- package/hooks/features/rows/useGridRowsMeta.js +1 -1
- package/hooks/features/sorting/useGridSorting.js +2 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- package/index.js +1 -1
- package/legacy/components/containers/GridRootStyles.js +8 -4
- package/legacy/components/panel/GridColumnsPanel.js +14 -0
- 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 +6 -6
- package/legacy/components/panel/filterPanel/GridFilterInputValue.js +1 -5
- package/legacy/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +4 -4
- package/legacy/hooks/features/filter/useGridFilter.js +2 -1
- package/legacy/hooks/features/focus/useGridFocus.js +1 -0
- package/legacy/hooks/features/rows/useGridRowsMeta.js +1 -1
- 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/locales/arSD.js +4 -4
- package/legacy/locales/beBY.js +4 -4
- package/legacy/locales/bgBG.js +4 -4
- package/legacy/locales/csCZ.js +25 -27
- package/legacy/locales/daDK.js +4 -4
- package/legacy/locales/deDE.js +25 -27
- package/legacy/locales/elGR.js +4 -4
- package/legacy/locales/esES.js +4 -4
- package/legacy/locales/faIR.js +4 -4
- package/legacy/locales/fiFI.js +4 -4
- package/legacy/locales/heIL.js +4 -4
- package/legacy/locales/huHU.js +4 -4
- package/legacy/locales/itIT.js +4 -4
- package/legacy/locales/jaJP.js +4 -4
- package/legacy/locales/koKR.js +4 -4
- package/legacy/locales/nbNO.js +4 -4
- package/legacy/locales/plPL.js +4 -4
- package/legacy/locales/ptBR.js +4 -4
- package/legacy/locales/roRO.js +4 -4
- package/legacy/locales/ruRU.js +4 -4
- package/legacy/locales/skSK.js +4 -4
- package/legacy/locales/svSE.js +4 -4
- package/legacy/locales/trTR.js +16 -17
- package/legacy/locales/ukUA.js +4 -4
- package/legacy/locales/urPK.js +4 -4
- package/legacy/locales/viVN.js +4 -4
- package/legacy/locales/zhCN.js +4 -4
- package/legacy/locales/zhTW.js +4 -4
- package/legacy/utils/EventManager.js +2 -2
- package/locales/arSD.js +4 -4
- package/locales/beBY.js +4 -4
- package/locales/bgBG.js +4 -4
- package/locales/csCZ.js +25 -27
- package/locales/daDK.js +4 -4
- package/locales/deDE.js +25 -27
- package/locales/elGR.js +4 -4
- package/locales/esES.js +4 -4
- package/locales/faIR.js +4 -4
- package/locales/fiFI.js +4 -4
- package/locales/heIL.js +4 -4
- package/locales/huHU.js +4 -4
- package/locales/itIT.js +4 -4
- package/locales/jaJP.js +4 -4
- package/locales/koKR.js +4 -4
- package/locales/nbNO.js +4 -4
- package/locales/plPL.js +4 -4
- package/locales/ptBR.js +4 -4
- package/locales/roRO.js +4 -4
- package/locales/ruRU.js +4 -4
- package/locales/skSK.js +4 -4
- package/locales/svSE.js +4 -4
- package/locales/trTR.js +16 -17
- package/locales/ukUA.js +4 -4
- package/locales/urPK.js +4 -4
- package/locales/viVN.js +4 -4
- package/locales/zhCN.js +4 -4
- package/locales/zhTW.js +4 -4
- package/models/events/gridEventLookup.d.ts +8 -0
- package/modern/components/containers/GridRootStyles.js +8 -1
- package/modern/components/panel/GridColumnsPanel.js +14 -0
- 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 +5 -6
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/modern/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +4 -4
- package/modern/hooks/features/filter/useGridFilter.js +2 -1
- package/modern/hooks/features/focus/useGridFocus.js +1 -0
- package/modern/hooks/features/rows/useGridRowsMeta.js +1 -1
- 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/locales/arSD.js +4 -4
- package/modern/locales/beBY.js +4 -4
- package/modern/locales/bgBG.js +4 -4
- package/modern/locales/csCZ.js +25 -27
- package/modern/locales/daDK.js +4 -4
- package/modern/locales/deDE.js +25 -27
- package/modern/locales/elGR.js +4 -4
- package/modern/locales/esES.js +4 -4
- package/modern/locales/faIR.js +4 -4
- package/modern/locales/fiFI.js +4 -4
- package/modern/locales/heIL.js +4 -4
- package/modern/locales/huHU.js +4 -4
- package/modern/locales/itIT.js +4 -4
- package/modern/locales/jaJP.js +4 -4
- package/modern/locales/koKR.js +4 -4
- package/modern/locales/nbNO.js +4 -4
- package/modern/locales/plPL.js +4 -4
- package/modern/locales/ptBR.js +4 -4
- package/modern/locales/roRO.js +4 -4
- package/modern/locales/ruRU.js +4 -4
- package/modern/locales/skSK.js +4 -4
- package/modern/locales/svSE.js +4 -4
- package/modern/locales/trTR.js +16 -17
- package/modern/locales/ukUA.js +4 -4
- package/modern/locales/urPK.js +4 -4
- package/modern/locales/viVN.js +4 -4
- package/modern/locales/zhCN.js +4 -4
- package/modern/locales/zhTW.js +4 -4
- package/modern/utils/EventManager.js +2 -2
- package/node/components/containers/GridRootStyles.js +8 -1
- package/node/components/panel/GridColumnsPanel.js +14 -0
- 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 +5 -6
- package/node/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/node/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +4 -4
- package/node/hooks/features/filter/useGridFilter.js +5 -4
- package/node/hooks/features/focus/useGridFocus.js +1 -0
- package/node/hooks/features/rows/useGridRowsMeta.js +1 -1
- 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/locales/arSD.js +4 -4
- package/node/locales/beBY.js +4 -4
- package/node/locales/bgBG.js +4 -4
- package/node/locales/csCZ.js +25 -27
- package/node/locales/daDK.js +4 -4
- package/node/locales/deDE.js +25 -27
- package/node/locales/elGR.js +4 -4
- package/node/locales/esES.js +4 -4
- package/node/locales/faIR.js +4 -4
- package/node/locales/fiFI.js +4 -4
- package/node/locales/heIL.js +4 -4
- package/node/locales/huHU.js +4 -4
- package/node/locales/itIT.js +4 -4
- package/node/locales/jaJP.js +4 -4
- package/node/locales/koKR.js +4 -4
- package/node/locales/nbNO.js +4 -4
- package/node/locales/plPL.js +4 -4
- package/node/locales/ptBR.js +4 -4
- package/node/locales/roRO.js +4 -4
- package/node/locales/ruRU.js +4 -4
- package/node/locales/skSK.js +4 -4
- package/node/locales/svSE.js +4 -4
- package/node/locales/trTR.js +16 -17
- package/node/locales/ukUA.js +4 -4
- package/node/locales/urPK.js +4 -4
- package/node/locales/viVN.js +4 -4
- package/node/locales/zhCN.js +4 -4
- package/node/locales/zhTW.js +4 -4
- package/node/utils/EventManager.js +2 -2
- package/package.json +1 -1
- package/themeAugmentation/overrides.d.ts +1 -1
- package/utils/EventManager.js +2 -2
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
2
|
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
3
3
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
-
|
|
4
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
5
|
+
var _excluded = ["item", "applyValue", "apiRef", "focusElementRef", "isFilterActive", "clearButton", "tabIndex", "label"];
|
|
5
6
|
import * as React from 'react';
|
|
6
7
|
import PropTypes from 'prop-types';
|
|
7
8
|
import { unstable_useId as useId } from '@mui/utils';
|
|
@@ -9,18 +10,19 @@ import { styled } from '@mui/material/styles';
|
|
|
9
10
|
import { useGridRootProps } from '../../../hooks/utils/useGridRootProps';
|
|
10
11
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
11
12
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
12
|
-
var BooleanOperatorContainer = styled('div')({
|
|
13
|
+
var BooleanOperatorContainer = styled('div')(_defineProperty({
|
|
13
14
|
display: 'flex',
|
|
14
|
-
alignItems: '
|
|
15
|
+
alignItems: 'center',
|
|
15
16
|
width: '100%'
|
|
16
|
-
}
|
|
17
|
+
}, "& button", {
|
|
18
|
+
margin: 'auto 0px 5px 5px'
|
|
19
|
+
}));
|
|
17
20
|
function GridFilterInputBoolean(props) {
|
|
18
21
|
var _rootProps$slotProps, _baseSelectProps$nati, _rootProps$slotProps2, _rootProps$slotProps3;
|
|
19
22
|
var item = props.item,
|
|
20
23
|
applyValue = props.applyValue,
|
|
21
24
|
apiRef = props.apiRef,
|
|
22
25
|
focusElementRef = props.focusElementRef,
|
|
23
|
-
headerFilterMenu = props.headerFilterMenu,
|
|
24
26
|
isFilterActive = props.isFilterActive,
|
|
25
27
|
clearButton = props.clearButton,
|
|
26
28
|
tabIndex = props.tabIndex,
|
|
@@ -64,7 +66,6 @@ function GridFilterInputBoolean(props) {
|
|
|
64
66
|
variant: "standard",
|
|
65
67
|
native: isSelectNative,
|
|
66
68
|
displayEmpty: true,
|
|
67
|
-
startAdornment: isFilterActive ? headerFilterMenu : null,
|
|
68
69
|
inputProps: {
|
|
69
70
|
ref: focusElementRef,
|
|
70
71
|
tabIndex: tabIndex
|
|
@@ -100,7 +101,6 @@ process.env.NODE_ENV !== "production" ? GridFilterInputBoolean.propTypes = {
|
|
|
100
101
|
focusElementRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
|
|
101
102
|
current: PropTypes.any.isRequired
|
|
102
103
|
})]),
|
|
103
|
-
headerFilterMenu: PropTypes.node,
|
|
104
104
|
/**
|
|
105
105
|
* It is `true` if the filter either has a value or an operator with no value
|
|
106
106
|
* required is selected (e.g. `isEmpty`)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
2
|
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
3
3
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
-
var _excluded = ["item", "applyValue", "type", "apiRef", "focusElementRef", "InputProps", "
|
|
4
|
+
var _excluded = ["item", "applyValue", "type", "apiRef", "focusElementRef", "InputProps", "isFilterActive", "clearButton", "tabIndex", "disabled"];
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import PropTypes from 'prop-types';
|
|
7
7
|
import { unstable_useId as useId } from '@mui/utils';
|
|
@@ -16,7 +16,6 @@ function GridFilterInputDate(props) {
|
|
|
16
16
|
apiRef = props.apiRef,
|
|
17
17
|
focusElementRef = props.focusElementRef,
|
|
18
18
|
InputProps = props.InputProps,
|
|
19
|
-
headerFilterMenu = props.headerFilterMenu,
|
|
20
19
|
isFilterActive = props.isFilterActive,
|
|
21
20
|
clearButton = props.clearButton,
|
|
22
21
|
tabIndex = props.tabIndex,
|
|
@@ -73,8 +72,6 @@ function GridFilterInputDate(props) {
|
|
|
73
72
|
fontSize: "small",
|
|
74
73
|
color: "action"
|
|
75
74
|
}) : clearButton
|
|
76
|
-
} : {}, headerFilterMenu && isFilterActive ? {
|
|
77
|
-
startAdornment: headerFilterMenu
|
|
78
75
|
} : {}, {
|
|
79
76
|
disabled: disabled
|
|
80
77
|
}, InputProps, {
|
|
@@ -96,7 +93,6 @@ process.env.NODE_ENV !== "production" ? GridFilterInputDate.propTypes = {
|
|
|
96
93
|
applyValue: PropTypes.func.isRequired,
|
|
97
94
|
clearButton: PropTypes.node,
|
|
98
95
|
focusElementRef: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.func, PropTypes.object]),
|
|
99
|
-
headerFilterMenu: PropTypes.node,
|
|
100
96
|
/**
|
|
101
97
|
* It is `true` if the filter either has a value or an operator with no value
|
|
102
98
|
* required is selected (e.g. `isEmpty`)
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
3
4
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
5
|
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
5
|
-
var _excluded = ["item", "applyValue", "type", "apiRef", "focusElementRef", "getOptionLabel", "getOptionValue", "placeholder", "tabIndex", "label", "
|
|
6
|
+
var _excluded = ["item", "applyValue", "type", "apiRef", "focusElementRef", "getOptionLabel", "getOptionValue", "placeholder", "tabIndex", "label", "isFilterActive", "clearButton"];
|
|
6
7
|
import * as React from 'react';
|
|
7
8
|
import PropTypes from 'prop-types';
|
|
8
9
|
import { unstable_useId as useId } from '@mui/utils';
|
|
@@ -34,11 +35,13 @@ var renderSingleSelectOptions = function renderSingleSelectOptions(_ref) {
|
|
|
34
35
|
}), label);
|
|
35
36
|
});
|
|
36
37
|
};
|
|
37
|
-
var SingleSelectOperatorContainer = styled('div')({
|
|
38
|
+
var SingleSelectOperatorContainer = styled('div')(_defineProperty({
|
|
38
39
|
display: 'flex',
|
|
39
40
|
alignItems: 'flex-end',
|
|
40
41
|
width: '100%'
|
|
41
|
-
}
|
|
42
|
+
}, "& button", {
|
|
43
|
+
margin: 'auto 0px 5px 5px'
|
|
44
|
+
}));
|
|
42
45
|
function GridFilterInputSingleSelect(props) {
|
|
43
46
|
var _item$value, _rootProps$slotProps$, _rootProps$slotProps, _rootProps$slotProps$2, _resolvedColumn, _resolvedColumn2, _rootProps$slotProps2, _rootProps$slotProps3, _rootProps$slotProps4;
|
|
44
47
|
var item = props.item,
|
|
@@ -51,7 +54,6 @@ function GridFilterInputSingleSelect(props) {
|
|
|
51
54
|
placeholder = props.placeholder,
|
|
52
55
|
tabIndex = props.tabIndex,
|
|
53
56
|
labelProp = props.label,
|
|
54
|
-
headerFilterMenu = props.headerFilterMenu,
|
|
55
57
|
isFilterActive = props.isFilterActive,
|
|
56
58
|
clearButton = props.clearButton,
|
|
57
59
|
others = _objectWithoutProperties(props, _excluded);
|
|
@@ -129,7 +131,6 @@ function GridFilterInputSingleSelect(props) {
|
|
|
129
131
|
labelId: labelId,
|
|
130
132
|
value: filterValueState,
|
|
131
133
|
onChange: onFilterChange,
|
|
132
|
-
startAdornment: isFilterActive ? headerFilterMenu : null,
|
|
133
134
|
variant: "standard",
|
|
134
135
|
type: type || 'text',
|
|
135
136
|
inputProps: {
|
|
@@ -174,7 +175,6 @@ process.env.NODE_ENV !== "production" ? GridFilterInputSingleSelect.propTypes =
|
|
|
174
175
|
* @returns {string} The value to be used.
|
|
175
176
|
*/
|
|
176
177
|
getOptionValue: PropTypes.func,
|
|
177
|
-
headerFilterMenu: PropTypes.node,
|
|
178
178
|
/**
|
|
179
179
|
* It is `true` if the filter either has a value or an operator with no value
|
|
180
180
|
* required is selected (e.g. `isEmpty`)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
2
|
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
3
3
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
-
var _excluded = ["item", "applyValue", "type", "apiRef", "focusElementRef", "tabIndex", "disabled", "
|
|
4
|
+
var _excluded = ["item", "applyValue", "type", "apiRef", "focusElementRef", "tabIndex", "disabled", "isFilterActive", "clearButton", "InputProps"];
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import PropTypes from 'prop-types';
|
|
7
7
|
import { unstable_useId as useId } from '@mui/utils';
|
|
@@ -17,7 +17,6 @@ function GridFilterInputValue(props) {
|
|
|
17
17
|
focusElementRef = props.focusElementRef,
|
|
18
18
|
tabIndex = props.tabIndex,
|
|
19
19
|
disabled = props.disabled,
|
|
20
|
-
headerFilterMenu = props.headerFilterMenu,
|
|
21
20
|
isFilterActive = props.isFilterActive,
|
|
22
21
|
clearButton = props.clearButton,
|
|
23
22
|
InputProps = props.InputProps,
|
|
@@ -68,8 +67,6 @@ function GridFilterInputValue(props) {
|
|
|
68
67
|
fontSize: "small",
|
|
69
68
|
color: "action"
|
|
70
69
|
}) : clearButton
|
|
71
|
-
} : {}, headerFilterMenu && isFilterActive ? {
|
|
72
|
-
startAdornment: headerFilterMenu
|
|
73
70
|
} : {}, {
|
|
74
71
|
disabled: disabled
|
|
75
72
|
}, InputProps, {
|
|
@@ -94,7 +91,6 @@ process.env.NODE_ENV !== "production" ? GridFilterInputValue.propTypes = {
|
|
|
94
91
|
applyValue: PropTypes.func.isRequired,
|
|
95
92
|
clearButton: PropTypes.node,
|
|
96
93
|
focusElementRef: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.func, PropTypes.object]),
|
|
97
|
-
headerFilterMenu: PropTypes.node,
|
|
98
94
|
/**
|
|
99
95
|
* It is `true` if the filter either has a value or an operator with no value
|
|
100
96
|
* required is selected (e.g. `isEmpty`)
|
|
@@ -188,7 +188,15 @@ process.env.NODE_ENV !== "production" ? GridFilterPanel.propTypes = {
|
|
|
188
188
|
* If not specified, the order is derived from the `columns` prop.
|
|
189
189
|
*/
|
|
190
190
|
columnsSort: PropTypes.oneOf(['asc', 'desc']),
|
|
191
|
+
/**
|
|
192
|
+
* If `true`, the `Add filter` button will not be displayed.
|
|
193
|
+
* @default false
|
|
194
|
+
*/
|
|
191
195
|
disableAddFilterButton: PropTypes.bool,
|
|
196
|
+
/**
|
|
197
|
+
* If `true`, the `Remove all` button will be disabled
|
|
198
|
+
* @default false
|
|
199
|
+
*/
|
|
192
200
|
disableRemoveAllButton: PropTypes.bool,
|
|
193
201
|
/**
|
|
194
202
|
* Props passed to each filter form.
|
|
@@ -2,4 +2,4 @@ import { unstable_generateUtilityClasses as generateUtilityClasses, unstable_gen
|
|
|
2
2
|
export function getDataGridUtilityClass(slot) {
|
|
3
3
|
return generateUtilityClass('MuiDataGrid', slot);
|
|
4
4
|
}
|
|
5
|
-
export var gridClasses = generateUtilityClasses('MuiDataGrid', ['actionsCell', 'aggregationColumnHeader', 'aggregationColumnHeader--alignLeft', 'aggregationColumnHeader--alignCenter', 'aggregationColumnHeader--alignRight', 'aggregationColumnHeaderLabel', 'autoHeight', 'booleanCell', 'cell--editable', 'cell--editing', 'cell--textCenter', 'cell--textLeft', 'cell--textRight', 'cell--withRenderer', 'cell--rangeTop', 'cell--rangeBottom', 'cell--rangeLeft', 'cell--rangeRight', 'cell', 'cellContent', 'cellCheckbox', 'cellSkeleton', 'checkboxInput', 'columnHeader--alignCenter', 'columnHeader--alignLeft', 'columnHeader--alignRight', 'columnHeader--dragging', 'columnHeader--moving', 'columnHeader--numeric', 'columnHeader--sortable', 'columnHeader--sorted', 'columnHeader--filtered', 'columnHeader', 'columnHeaderCheckbox', 'columnHeaderDraggableContainer', 'columnHeaderDropZone', 'columnHeaderTitle', 'columnHeaderTitleContainer', 'columnHeaderTitleContainerContent', 'columnGroupHeader', 'columnHeader--filledGroup', 'columnHeader--emptyGroup', 'columnHeader--showColumnBorder', 'columnHeaders', 'columnHeadersInner', 'columnHeadersInner--scrollable', 'columnSeparator--resizable', 'columnSeparator--resizing', 'columnSeparator--sideLeft', 'columnSeparator--sideRight', 'columnSeparator', 'columnsPanel', 'columnsPanelRow', 'detailPanel', 'detailPanels', 'detailPanelToggleCell', 'detailPanelToggleCell--expanded', 'footerCell', 'panel', 'panelHeader', 'panelWrapper', 'panelContent', 'panelFooter', 'paper', 'editBooleanCell', 'editInputCell', 'filterForm', 'filterFormDeleteIcon', 'filterFormLogicOperatorInput', 'filterFormColumnInput', 'filterFormOperatorInput', 'filterFormValueInput', 'filterIcon', 'footerContainer', 'iconButtonContainer', 'iconSeparator', 'main', 'menu', 'menuIcon', 'menuIconButton', 'menuOpen', 'menuList', 'overlay', 'overlayWrapper', 'overlayWrapperInner', 'root', 'root--densityStandard', 'root--densityComfortable', 'root--densityCompact', 'root--disableUserSelection', 'row', 'row--editable', 'row--editing', 'row--lastVisible', 'row--dragging', 'row--dynamicHeight', 'row--detailPanelExpanded', 'rowReorderCellPlaceholder', 'rowCount', 'rowReorderCellContainer', 'rowReorderCell', 'rowReorderCell--draggable', 'scrollArea--left', 'scrollArea--right', 'scrollArea', 'selectedRowCount', 'sortIcon', 'toolbarContainer', 'toolbarFilterList', 'virtualScroller', 'virtualScrollerContent', 'virtualScrollerContent--overflowed', 'virtualScrollerRenderZone', 'pinnedColumns', 'pinnedColumns--left', 'pinnedColumns--right', 'pinnedColumnHeaders', 'pinnedColumnHeaders--left', 'pinnedColumnHeaders--right', 'withBorderColor', 'cell--withRightBorder', 'columnHeader--withRightBorder', 'treeDataGroupingCell', 'treeDataGroupingCellToggle', 'groupingCriteriaCell', 'groupingCriteriaCellToggle', 'pinnedRows', 'pinnedRows--top', 'pinnedRows--bottom', 'pinnedRowsRenderZone']);
|
|
5
|
+
export var gridClasses = generateUtilityClasses('MuiDataGrid', ['actionsCell', 'aggregationColumnHeader', 'aggregationColumnHeader--alignLeft', 'aggregationColumnHeader--alignCenter', 'aggregationColumnHeader--alignRight', 'aggregationColumnHeaderLabel', 'autoHeight', 'booleanCell', 'cell--editable', 'cell--editing', 'cell--textCenter', 'cell--textLeft', 'cell--textRight', 'cell--withRenderer', 'cell--rangeTop', 'cell--rangeBottom', 'cell--rangeLeft', 'cell--rangeRight', 'cell', 'cellContent', 'cellCheckbox', 'cellSkeleton', 'checkboxInput', 'columnHeader--alignCenter', 'columnHeader--alignLeft', 'columnHeader--alignRight', 'columnHeader--dragging', 'columnHeader--moving', 'columnHeader--numeric', 'columnHeader--sortable', 'columnHeader--sorted', 'columnHeader--filtered', 'columnHeader', 'columnHeaderCheckbox', 'columnHeaderDraggableContainer', 'columnHeaderDropZone', 'columnHeaderTitle', 'columnHeaderTitleContainer', 'columnHeaderTitleContainerContent', 'columnGroupHeader', 'columnHeader--filledGroup', 'columnHeader--emptyGroup', 'columnHeader--showColumnBorder', 'columnHeaders', 'columnHeadersInner', 'columnHeadersInner--scrollable', 'columnSeparator--resizable', 'columnSeparator--resizing', 'columnSeparator--sideLeft', 'columnSeparator--sideRight', 'columnSeparator', 'columnsPanel', 'columnsPanelRow', 'detailPanel', 'detailPanels', 'detailPanelToggleCell', 'detailPanelToggleCell--expanded', 'footerCell', 'panel', 'panelHeader', 'panelWrapper', 'panelContent', 'panelFooter', 'paper', 'editBooleanCell', 'editInputCell', 'filterForm', 'filterFormDeleteIcon', 'filterFormLogicOperatorInput', 'filterFormColumnInput', 'filterFormOperatorInput', 'filterFormValueInput', 'filterIcon', 'footerContainer', 'headerFilterRow', 'iconButtonContainer', 'iconSeparator', 'main', 'menu', 'menuIcon', 'menuIconButton', 'menuOpen', 'menuList', 'overlay', 'overlayWrapper', 'overlayWrapperInner', 'root', 'root--densityStandard', 'root--densityComfortable', 'root--densityCompact', 'root--disableUserSelection', 'row', 'row--editable', 'row--editing', 'row--lastVisible', 'row--dragging', 'row--dynamicHeight', 'row--detailPanelExpanded', 'rowReorderCellPlaceholder', 'rowCount', 'rowReorderCellContainer', 'rowReorderCell', 'rowReorderCell--draggable', 'scrollArea--left', 'scrollArea--right', 'scrollArea', 'selectedRowCount', 'sortIcon', 'toolbarContainer', 'toolbarFilterList', 'virtualScroller', 'virtualScrollerContent', 'virtualScrollerContent--overflowed', 'virtualScrollerRenderZone', 'pinnedColumns', 'pinnedColumns--left', 'pinnedColumns--right', 'pinnedColumnHeaders', 'pinnedColumnHeaders--left', 'pinnedColumnHeaders--right', 'withBorderColor', 'cell--withRightBorder', 'columnHeader--withRightBorder', 'treeDataGroupingCell', 'treeDataGroupingCellToggle', 'groupingCriteriaCell', 'groupingCriteriaCellToggle', 'pinnedRows', 'pinnedRows--top', 'pinnedRows--bottom', 'pinnedRowsRenderZone']);
|
|
@@ -82,10 +82,10 @@ export var GRID_DEFAULT_LOCALE_TEXT = {
|
|
|
82
82
|
headerFilterOperatorIsAnyOf: 'Is any of',
|
|
83
83
|
'headerFilterOperator=': 'Equals',
|
|
84
84
|
'headerFilterOperator!=': 'Not equals',
|
|
85
|
-
'headerFilterOperator>': '
|
|
86
|
-
'headerFilterOperator>=': '
|
|
87
|
-
'headerFilterOperator<': '
|
|
88
|
-
'headerFilterOperator<=': '
|
|
85
|
+
'headerFilterOperator>': 'Greater than',
|
|
86
|
+
'headerFilterOperator>=': 'Greater than or equal to',
|
|
87
|
+
'headerFilterOperator<': 'Less than',
|
|
88
|
+
'headerFilterOperator<=': 'Less than or equal to',
|
|
89
89
|
// Filter values text
|
|
90
90
|
filterValueAny: 'any',
|
|
91
91
|
filterValueTrue: 'true',
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
2
2
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
3
3
|
import * as React from 'react';
|
|
4
|
+
import { unstable_useEnhancedEffect as useEnhancedEffect } from '@mui/utils';
|
|
4
5
|
import { useGridApiEventHandler } from '../../utils/useGridApiEventHandler';
|
|
5
6
|
import { useGridApiMethod } from '../../utils/useGridApiMethod';
|
|
6
7
|
import { useGridLogger } from '../../utils/useGridLogger';
|
|
@@ -348,7 +349,7 @@ export var useGridFilter = function useGridFilter(apiRef, props) {
|
|
|
348
349
|
/**
|
|
349
350
|
* EFFECTS
|
|
350
351
|
*/
|
|
351
|
-
|
|
352
|
+
useEnhancedEffect(function () {
|
|
352
353
|
if (props.filterModel !== undefined) {
|
|
353
354
|
apiRef.current.setFilterModel(props.filterModel);
|
|
354
355
|
}
|
|
@@ -362,6 +362,7 @@ export var useGridFocus = function useGridFocus(apiRef, props) {
|
|
|
362
362
|
};
|
|
363
363
|
}, [apiRef, handleDocumentClick]);
|
|
364
364
|
useGridApiEventHandler(apiRef, 'columnHeaderBlur', handleBlur);
|
|
365
|
+
useGridApiEventHandler(apiRef, 'headerFilterBlur', handleBlur);
|
|
365
366
|
useGridApiEventHandler(apiRef, 'cellDoubleClick', handleCellDoubleClick);
|
|
366
367
|
useGridApiEventHandler(apiRef, 'cellMouseDown', handleCellMouseDown);
|
|
367
368
|
useGridApiEventHandler(apiRef, 'cellKeyDown', handleCellKeyDown);
|
|
@@ -41,7 +41,7 @@ export var useGridRowsMeta = function useGridRowsMeta(apiRef, props) {
|
|
|
41
41
|
var getRowHeightProp = props.getRowHeight,
|
|
42
42
|
getRowSpacing = props.getRowSpacing,
|
|
43
43
|
getEstimatedRowHeight = props.getEstimatedRowHeight;
|
|
44
|
-
var rowsHeightLookup = React.useRef(
|
|
44
|
+
var rowsHeightLookup = React.useRef(Object.create(null));
|
|
45
45
|
|
|
46
46
|
// Inspired by https://github.com/bvaughn/react-virtualized/blob/master/source/Grid/utils/CellSizeAndPositionManager.js
|
|
47
47
|
var lastMeasuredRowIndex = React.useRef(-1);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
2
2
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
3
3
|
import * as React from 'react';
|
|
4
|
+
import { unstable_useEnhancedEffect as useEnhancedEffect } from '@mui/utils';
|
|
4
5
|
import { isEnterKey } from '../../../utils/keyboardUtils';
|
|
5
6
|
import { useGridApiEventHandler } from '../../utils/useGridApiEventHandler';
|
|
6
7
|
import { useGridApiMethod } from '../../utils/useGridApiMethod';
|
|
@@ -261,7 +262,7 @@ export var useGridSorting = function useGridSorting(apiRef, props) {
|
|
|
261
262
|
/**
|
|
262
263
|
* EFFECTS
|
|
263
264
|
*/
|
|
264
|
-
|
|
265
|
+
useEnhancedEffect(function () {
|
|
265
266
|
if (props.sortModel !== undefined) {
|
|
266
267
|
apiRef.current.setSortModel(props.sortModel);
|
|
267
268
|
}
|
|
@@ -99,7 +99,7 @@ export var useGridVirtualScroller = function useGridVirtualScroller(props) {
|
|
|
99
99
|
containerDimensions = _React$useState4[0],
|
|
100
100
|
setContainerDimensions = _React$useState4[1];
|
|
101
101
|
var prevTotalWidth = React.useRef(columnsTotalWidth);
|
|
102
|
-
var rowStyleCache = React.useRef(
|
|
102
|
+
var rowStyleCache = React.useRef(Object.create(null));
|
|
103
103
|
var prevGetRowProps = React.useRef();
|
|
104
104
|
var prevRootRowStyle = React.useRef();
|
|
105
105
|
var getRenderedColumnsRef = React.useRef(defaultMemoize(function (columns, firstColumnToRender, lastColumnToRender) {
|
|
@@ -401,7 +401,7 @@ export var useGridVirtualScroller = function useGridVirtualScroller(props) {
|
|
|
401
401
|
rootRowProps = _objectWithoutProperties(_ref4, _excluded);
|
|
402
402
|
var invalidatesCachedRowStyle = prevGetRowProps.current !== getRowProps || prevRootRowStyle.current !== rootRowStyle;
|
|
403
403
|
if (invalidatesCachedRowStyle) {
|
|
404
|
-
rowStyleCache.current =
|
|
404
|
+
rowStyleCache.current = Object.create(null);
|
|
405
405
|
}
|
|
406
406
|
var rows = [];
|
|
407
407
|
for (var _i = 0; _i < renderedRows.length; _i += 1) {
|
package/legacy/index.js
CHANGED
package/legacy/locales/arSD.js
CHANGED
|
@@ -85,10 +85,10 @@ var arSDGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'أي',
|
package/legacy/locales/beBY.js
CHANGED
|
@@ -99,10 +99,10 @@ var beBYGrid = {
|
|
|
99
99
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
100
100
|
// 'headerFilterOperator=': 'Equals',
|
|
101
101
|
// 'headerFilterOperator!=': 'Not equals',
|
|
102
|
-
// 'headerFilterOperator>': '
|
|
103
|
-
// 'headerFilterOperator>=': '
|
|
104
|
-
// 'headerFilterOperator<': '
|
|
105
|
-
// 'headerFilterOperator<=': '
|
|
102
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
103
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
104
|
+
// 'headerFilterOperator<': 'Less than',
|
|
105
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
106
106
|
|
|
107
107
|
// Filter values text
|
|
108
108
|
filterValueAny: 'усякі',
|
package/legacy/locales/bgBG.js
CHANGED
|
@@ -85,10 +85,10 @@ var bgBGGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'всякакви',
|
package/legacy/locales/csCZ.js
CHANGED
|
@@ -68,34 +68,32 @@ var csCZGrid = {
|
|
|
68
68
|
filterOperatorIsEmpty: 'je prázdný',
|
|
69
69
|
filterOperatorIsNotEmpty: 'není prázdný',
|
|
70
70
|
filterOperatorIsAnyOf: 'je jeden z',
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
71
|
+
'filterOperator=': '=',
|
|
72
|
+
'filterOperator!=': '!=',
|
|
73
|
+
'filterOperator>': '>',
|
|
74
|
+
'filterOperator>=': '>=',
|
|
75
|
+
'filterOperator<': '<',
|
|
76
|
+
'filterOperator<=': '<=',
|
|
78
77
|
// Header filter operators text
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
78
|
+
headerFilterOperatorContains: 'Obsahuje',
|
|
79
|
+
headerFilterOperatorEquals: 'Rovná se',
|
|
80
|
+
headerFilterOperatorStartsWith: 'Začíná na',
|
|
81
|
+
headerFilterOperatorEndsWith: 'Končí na',
|
|
82
|
+
headerFilterOperatorIs: 'Je',
|
|
83
|
+
headerFilterOperatorNot: 'Není',
|
|
84
|
+
headerFilterOperatorAfter: 'Je po',
|
|
85
|
+
headerFilterOperatorOnOrAfter: 'Je po včetně',
|
|
86
|
+
headerFilterOperatorBefore: 'Je před',
|
|
87
|
+
headerFilterOperatorOnOrBefore: 'Je před včetně',
|
|
88
|
+
headerFilterOperatorIsEmpty: 'Je prázdný',
|
|
89
|
+
headerFilterOperatorIsNotEmpty: 'Není prázdný',
|
|
90
|
+
headerFilterOperatorIsAnyOf: 'Je jeden z',
|
|
91
|
+
'headerFilterOperator=': 'Rovná se',
|
|
92
|
+
'headerFilterOperator!=': 'Nerovná se',
|
|
93
|
+
'headerFilterOperator>': 'Větší než',
|
|
94
|
+
'headerFilterOperator>=': 'Větší než nebo rovno',
|
|
95
|
+
'headerFilterOperator<': 'Menší než',
|
|
96
|
+
'headerFilterOperator<=': 'Menší než nebo rovno',
|
|
99
97
|
// Filter values text
|
|
100
98
|
filterValueAny: 'jakýkoliv',
|
|
101
99
|
filterValueTrue: 'ano',
|
package/legacy/locales/daDK.js
CHANGED
|
@@ -85,10 +85,10 @@ var daDKGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'hvilken som helst',
|
package/legacy/locales/deDE.js
CHANGED
|
@@ -62,34 +62,32 @@ var deDEGrid = {
|
|
|
62
62
|
filterOperatorIsEmpty: 'ist leer',
|
|
63
63
|
filterOperatorIsNotEmpty: 'ist nicht leer',
|
|
64
64
|
filterOperatorIsAnyOf: 'ist einer der Werte',
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
65
|
+
'filterOperator=': '=',
|
|
66
|
+
'filterOperator!=': '!=',
|
|
67
|
+
'filterOperator>': '>',
|
|
68
|
+
'filterOperator>=': '>=',
|
|
69
|
+
'filterOperator<': '<',
|
|
70
|
+
'filterOperator<=': '<=',
|
|
72
71
|
// Header filter operators text
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
72
|
+
headerFilterOperatorContains: 'Enthält',
|
|
73
|
+
headerFilterOperatorEquals: 'Gleich',
|
|
74
|
+
headerFilterOperatorStartsWith: 'Beginnt mit',
|
|
75
|
+
headerFilterOperatorEndsWith: 'Endet mit',
|
|
76
|
+
headerFilterOperatorIs: 'Ist',
|
|
77
|
+
headerFilterOperatorNot: 'Ist nicht',
|
|
78
|
+
headerFilterOperatorAfter: 'Ist nach',
|
|
79
|
+
headerFilterOperatorOnOrAfter: 'Ist am oder nach',
|
|
80
|
+
headerFilterOperatorBefore: 'Ist vor',
|
|
81
|
+
headerFilterOperatorOnOrBefore: 'Ist am oder vor',
|
|
82
|
+
headerFilterOperatorIsEmpty: 'Ist leer',
|
|
83
|
+
headerFilterOperatorIsNotEmpty: 'Ist nicht leer',
|
|
84
|
+
headerFilterOperatorIsAnyOf: 'Ist eines von',
|
|
85
|
+
'headerFilterOperator=': 'Gleich',
|
|
86
|
+
'headerFilterOperator!=': 'Ungleich',
|
|
87
|
+
'headerFilterOperator>': 'Größer als',
|
|
88
|
+
'headerFilterOperator>=': 'Größer als oder gleich',
|
|
89
|
+
'headerFilterOperator<': 'Kleiner als',
|
|
90
|
+
'headerFilterOperator<=': 'Kleiner als oder gleich',
|
|
93
91
|
// Filter values text
|
|
94
92
|
filterValueAny: 'Beliebig',
|
|
95
93
|
filterValueTrue: 'Ja',
|
package/legacy/locales/elGR.js
CHANGED
|
@@ -86,10 +86,10 @@ var elGRGrid = {
|
|
|
86
86
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
87
87
|
// 'headerFilterOperator=': 'Equals',
|
|
88
88
|
// 'headerFilterOperator!=': 'Not equals',
|
|
89
|
-
// 'headerFilterOperator>': '
|
|
90
|
-
// 'headerFilterOperator>=': '
|
|
91
|
-
// 'headerFilterOperator<': '
|
|
92
|
-
// 'headerFilterOperator<=': '
|
|
89
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
90
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
91
|
+
// 'headerFilterOperator<': 'Less than',
|
|
92
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
93
93
|
|
|
94
94
|
// Filter values text
|
|
95
95
|
// filterValueAny: 'any',
|
package/legacy/locales/esES.js
CHANGED
|
@@ -85,10 +85,10 @@ var esESGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'cualquiera',
|
package/legacy/locales/faIR.js
CHANGED
|
@@ -85,10 +85,10 @@ var faIRGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'هرچیزی',
|
package/legacy/locales/fiFI.js
CHANGED
|
@@ -85,10 +85,10 @@ var fiFIGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'mikä tahansa',
|
package/legacy/locales/heIL.js
CHANGED
|
@@ -85,10 +85,10 @@ var heILGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'כל ערך',
|
package/legacy/locales/huHU.js
CHANGED
|
@@ -85,10 +85,10 @@ var huHUGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'bármilyen',
|
package/legacy/locales/itIT.js
CHANGED
|
@@ -85,10 +85,10 @@ var itITGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'qualunque',
|