@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.
Files changed (187) hide show
  1. package/CHANGELOG.md +72 -0
  2. package/components/containers/GridRootStyles.js +8 -1
  3. package/components/panel/GridColumnsPanel.d.ts +14 -0
  4. package/components/panel/GridColumnsPanel.js +14 -0
  5. package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +0 -1
  6. package/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  7. package/components/panel/filterPanel/GridFilterInputDate.d.ts +0 -1
  8. package/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  9. package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +0 -1
  10. package/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  11. package/components/panel/filterPanel/GridFilterInputValue.d.ts +0 -1
  12. package/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  13. package/components/panel/filterPanel/GridFilterPanel.d.ts +8 -0
  14. package/components/panel/filterPanel/GridFilterPanel.js +8 -0
  15. package/constants/gridClasses.d.ts +4 -0
  16. package/constants/gridClasses.js +1 -1
  17. package/constants/localeTextConstants.js +4 -4
  18. package/hooks/features/filter/useGridFilter.js +2 -1
  19. package/hooks/features/focus/useGridFocus.js +1 -0
  20. package/hooks/features/rows/useGridRowsMeta.js +1 -1
  21. package/hooks/features/sorting/useGridSorting.js +2 -1
  22. package/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
  23. package/index.js +1 -1
  24. package/legacy/components/containers/GridRootStyles.js +8 -4
  25. package/legacy/components/panel/GridColumnsPanel.js +14 -0
  26. package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +7 -7
  27. package/legacy/components/panel/filterPanel/GridFilterInputDate.js +1 -5
  28. package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -6
  29. package/legacy/components/panel/filterPanel/GridFilterInputValue.js +1 -5
  30. package/legacy/components/panel/filterPanel/GridFilterPanel.js +8 -0
  31. package/legacy/constants/gridClasses.js +1 -1
  32. package/legacy/constants/localeTextConstants.js +4 -4
  33. package/legacy/hooks/features/filter/useGridFilter.js +2 -1
  34. package/legacy/hooks/features/focus/useGridFocus.js +1 -0
  35. package/legacy/hooks/features/rows/useGridRowsMeta.js +1 -1
  36. package/legacy/hooks/features/sorting/useGridSorting.js +2 -1
  37. package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
  38. package/legacy/index.js +1 -1
  39. package/legacy/locales/arSD.js +4 -4
  40. package/legacy/locales/beBY.js +4 -4
  41. package/legacy/locales/bgBG.js +4 -4
  42. package/legacy/locales/csCZ.js +25 -27
  43. package/legacy/locales/daDK.js +4 -4
  44. package/legacy/locales/deDE.js +25 -27
  45. package/legacy/locales/elGR.js +4 -4
  46. package/legacy/locales/esES.js +4 -4
  47. package/legacy/locales/faIR.js +4 -4
  48. package/legacy/locales/fiFI.js +4 -4
  49. package/legacy/locales/heIL.js +4 -4
  50. package/legacy/locales/huHU.js +4 -4
  51. package/legacy/locales/itIT.js +4 -4
  52. package/legacy/locales/jaJP.js +4 -4
  53. package/legacy/locales/koKR.js +4 -4
  54. package/legacy/locales/nbNO.js +4 -4
  55. package/legacy/locales/plPL.js +4 -4
  56. package/legacy/locales/ptBR.js +4 -4
  57. package/legacy/locales/roRO.js +4 -4
  58. package/legacy/locales/ruRU.js +4 -4
  59. package/legacy/locales/skSK.js +4 -4
  60. package/legacy/locales/svSE.js +4 -4
  61. package/legacy/locales/trTR.js +16 -17
  62. package/legacy/locales/ukUA.js +4 -4
  63. package/legacy/locales/urPK.js +4 -4
  64. package/legacy/locales/viVN.js +4 -4
  65. package/legacy/locales/zhCN.js +4 -4
  66. package/legacy/locales/zhTW.js +4 -4
  67. package/legacy/utils/EventManager.js +2 -2
  68. package/locales/arSD.js +4 -4
  69. package/locales/beBY.js +4 -4
  70. package/locales/bgBG.js +4 -4
  71. package/locales/csCZ.js +25 -27
  72. package/locales/daDK.js +4 -4
  73. package/locales/deDE.js +25 -27
  74. package/locales/elGR.js +4 -4
  75. package/locales/esES.js +4 -4
  76. package/locales/faIR.js +4 -4
  77. package/locales/fiFI.js +4 -4
  78. package/locales/heIL.js +4 -4
  79. package/locales/huHU.js +4 -4
  80. package/locales/itIT.js +4 -4
  81. package/locales/jaJP.js +4 -4
  82. package/locales/koKR.js +4 -4
  83. package/locales/nbNO.js +4 -4
  84. package/locales/plPL.js +4 -4
  85. package/locales/ptBR.js +4 -4
  86. package/locales/roRO.js +4 -4
  87. package/locales/ruRU.js +4 -4
  88. package/locales/skSK.js +4 -4
  89. package/locales/svSE.js +4 -4
  90. package/locales/trTR.js +16 -17
  91. package/locales/ukUA.js +4 -4
  92. package/locales/urPK.js +4 -4
  93. package/locales/viVN.js +4 -4
  94. package/locales/zhCN.js +4 -4
  95. package/locales/zhTW.js +4 -4
  96. package/models/events/gridEventLookup.d.ts +8 -0
  97. package/modern/components/containers/GridRootStyles.js +8 -1
  98. package/modern/components/panel/GridColumnsPanel.js +14 -0
  99. package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  100. package/modern/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  101. package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  102. package/modern/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  103. package/modern/components/panel/filterPanel/GridFilterPanel.js +8 -0
  104. package/modern/constants/gridClasses.js +1 -1
  105. package/modern/constants/localeTextConstants.js +4 -4
  106. package/modern/hooks/features/filter/useGridFilter.js +2 -1
  107. package/modern/hooks/features/focus/useGridFocus.js +1 -0
  108. package/modern/hooks/features/rows/useGridRowsMeta.js +1 -1
  109. package/modern/hooks/features/sorting/useGridSorting.js +2 -1
  110. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
  111. package/modern/index.js +1 -1
  112. package/modern/locales/arSD.js +4 -4
  113. package/modern/locales/beBY.js +4 -4
  114. package/modern/locales/bgBG.js +4 -4
  115. package/modern/locales/csCZ.js +25 -27
  116. package/modern/locales/daDK.js +4 -4
  117. package/modern/locales/deDE.js +25 -27
  118. package/modern/locales/elGR.js +4 -4
  119. package/modern/locales/esES.js +4 -4
  120. package/modern/locales/faIR.js +4 -4
  121. package/modern/locales/fiFI.js +4 -4
  122. package/modern/locales/heIL.js +4 -4
  123. package/modern/locales/huHU.js +4 -4
  124. package/modern/locales/itIT.js +4 -4
  125. package/modern/locales/jaJP.js +4 -4
  126. package/modern/locales/koKR.js +4 -4
  127. package/modern/locales/nbNO.js +4 -4
  128. package/modern/locales/plPL.js +4 -4
  129. package/modern/locales/ptBR.js +4 -4
  130. package/modern/locales/roRO.js +4 -4
  131. package/modern/locales/ruRU.js +4 -4
  132. package/modern/locales/skSK.js +4 -4
  133. package/modern/locales/svSE.js +4 -4
  134. package/modern/locales/trTR.js +16 -17
  135. package/modern/locales/ukUA.js +4 -4
  136. package/modern/locales/urPK.js +4 -4
  137. package/modern/locales/viVN.js +4 -4
  138. package/modern/locales/zhCN.js +4 -4
  139. package/modern/locales/zhTW.js +4 -4
  140. package/modern/utils/EventManager.js +2 -2
  141. package/node/components/containers/GridRootStyles.js +8 -1
  142. package/node/components/panel/GridColumnsPanel.js +14 -0
  143. package/node/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
  144. package/node/components/panel/filterPanel/GridFilterInputDate.js +1 -6
  145. package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
  146. package/node/components/panel/filterPanel/GridFilterInputValue.js +1 -6
  147. package/node/components/panel/filterPanel/GridFilterPanel.js +8 -0
  148. package/node/constants/gridClasses.js +1 -1
  149. package/node/constants/localeTextConstants.js +4 -4
  150. package/node/hooks/features/filter/useGridFilter.js +5 -4
  151. package/node/hooks/features/focus/useGridFocus.js +1 -0
  152. package/node/hooks/features/rows/useGridRowsMeta.js +1 -1
  153. package/node/hooks/features/sorting/useGridSorting.js +2 -1
  154. package/node/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
  155. package/node/index.js +1 -1
  156. package/node/locales/arSD.js +4 -4
  157. package/node/locales/beBY.js +4 -4
  158. package/node/locales/bgBG.js +4 -4
  159. package/node/locales/csCZ.js +25 -27
  160. package/node/locales/daDK.js +4 -4
  161. package/node/locales/deDE.js +25 -27
  162. package/node/locales/elGR.js +4 -4
  163. package/node/locales/esES.js +4 -4
  164. package/node/locales/faIR.js +4 -4
  165. package/node/locales/fiFI.js +4 -4
  166. package/node/locales/heIL.js +4 -4
  167. package/node/locales/huHU.js +4 -4
  168. package/node/locales/itIT.js +4 -4
  169. package/node/locales/jaJP.js +4 -4
  170. package/node/locales/koKR.js +4 -4
  171. package/node/locales/nbNO.js +4 -4
  172. package/node/locales/plPL.js +4 -4
  173. package/node/locales/ptBR.js +4 -4
  174. package/node/locales/roRO.js +4 -4
  175. package/node/locales/ruRU.js +4 -4
  176. package/node/locales/skSK.js +4 -4
  177. package/node/locales/svSE.js +4 -4
  178. package/node/locales/trTR.js +16 -17
  179. package/node/locales/ukUA.js +4 -4
  180. package/node/locales/urPK.js +4 -4
  181. package/node/locales/viVN.js +4 -4
  182. package/node/locales/zhCN.js +4 -4
  183. package/node/locales/zhTW.js +4 -4
  184. package/node/utils/EventManager.js +2 -2
  185. package/package.json +1 -1
  186. package/themeAugmentation/overrides.d.ts +1 -1
  187. 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
- var _excluded = ["item", "applyValue", "apiRef", "focusElementRef", "headerFilterMenu", "isFilterActive", "clearButton", "tabIndex", "label"];
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: 'flex-end',
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", "headerFilterMenu", "isFilterActive", "clearButton", "tabIndex", "disabled"];
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", "headerFilterMenu", "isFilterActive", "clearButton"];
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", "headerFilterMenu", "isFilterActive", "clearButton", "InputProps"];
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>': 'Is greater than',
86
- 'headerFilterOperator>=': 'Is greater than or equal to',
87
- 'headerFilterOperator<': 'Is less than',
88
- 'headerFilterOperator<=': 'Is less than or equal to',
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
- React.useEffect(function () {
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
- React.useEffect(function () {
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
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid v6.6.0
2
+ * @mui/x-data-grid v6.7.0
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -85,10 +85,10 @@ var arSDGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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: 'أي',
@@ -99,10 +99,10 @@ var beBYGrid = {
99
99
  // headerFilterOperatorIsAnyOf: 'Is any of',
100
100
  // 'headerFilterOperator=': 'Equals',
101
101
  // 'headerFilterOperator!=': 'Not equals',
102
- // 'headerFilterOperator>': 'Is greater than',
103
- // 'headerFilterOperator>=': 'Is greater than or equal to',
104
- // 'headerFilterOperator<': 'Is less than',
105
- // 'headerFilterOperator<=': 'Is less than or equal to',
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: 'усякі',
@@ -85,10 +85,10 @@ var bgBGGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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: 'всякакви',
@@ -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
- // 'filterOperator=': '=',
72
- // 'filterOperator!=': '!=',
73
- // 'filterOperator>': '>',
74
- // 'filterOperator>=': '>=',
75
- // 'filterOperator<': '<',
76
- // 'filterOperator<=': '<=',
77
-
71
+ 'filterOperator=': '=',
72
+ 'filterOperator!=': '!=',
73
+ 'filterOperator>': '>',
74
+ 'filterOperator>=': '>=',
75
+ 'filterOperator<': '<',
76
+ 'filterOperator<=': '<=',
78
77
  // Header filter operators text
79
- // headerFilterOperatorContains: 'Contains',
80
- // headerFilterOperatorEquals: 'Equals',
81
- // headerFilterOperatorStartsWith: 'Starts with',
82
- // headerFilterOperatorEndsWith: 'Ends with',
83
- // headerFilterOperatorIs: 'Is',
84
- // headerFilterOperatorNot: 'Is not',
85
- // headerFilterOperatorAfter: 'Is after',
86
- // headerFilterOperatorOnOrAfter: 'Is on or after',
87
- // headerFilterOperatorBefore: 'Is before',
88
- // headerFilterOperatorOnOrBefore: 'Is on or before',
89
- // headerFilterOperatorIsEmpty: 'Is empty',
90
- // headerFilterOperatorIsNotEmpty: 'Is not empty',
91
- // headerFilterOperatorIsAnyOf: 'Is any of',
92
- // 'headerFilterOperator=': 'Equals',
93
- // 'headerFilterOperator!=': 'Not equals',
94
- // 'headerFilterOperator>': 'Is greater than',
95
- // 'headerFilterOperator>=': 'Is greater than or equal to',
96
- // 'headerFilterOperator<': 'Is less than',
97
- // 'headerFilterOperator<=': 'Is less than or equal to',
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',
@@ -85,10 +85,10 @@ var daDKGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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',
@@ -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
- // 'filterOperator=': '=',
66
- // 'filterOperator!=': '!=',
67
- // 'filterOperator>': '>',
68
- // 'filterOperator>=': '>=',
69
- // 'filterOperator<': '<',
70
- // 'filterOperator<=': '<=',
71
-
65
+ 'filterOperator=': '=',
66
+ 'filterOperator!=': '!=',
67
+ 'filterOperator>': '>',
68
+ 'filterOperator>=': '>=',
69
+ 'filterOperator<': '<',
70
+ 'filterOperator<=': '<=',
72
71
  // Header filter operators text
73
- // headerFilterOperatorContains: 'Contains',
74
- // headerFilterOperatorEquals: 'Equals',
75
- // headerFilterOperatorStartsWith: 'Starts with',
76
- // headerFilterOperatorEndsWith: 'Ends with',
77
- // headerFilterOperatorIs: 'Is',
78
- // headerFilterOperatorNot: 'Is not',
79
- // headerFilterOperatorAfter: 'Is after',
80
- // headerFilterOperatorOnOrAfter: 'Is on or after',
81
- // headerFilterOperatorBefore: 'Is before',
82
- // headerFilterOperatorOnOrBefore: 'Is on or before',
83
- // headerFilterOperatorIsEmpty: 'Is empty',
84
- // headerFilterOperatorIsNotEmpty: 'Is not empty',
85
- // headerFilterOperatorIsAnyOf: 'Is any of',
86
- // 'headerFilterOperator=': 'Equals',
87
- // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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',
@@ -86,10 +86,10 @@ var elGRGrid = {
86
86
  // headerFilterOperatorIsAnyOf: 'Is any of',
87
87
  // 'headerFilterOperator=': 'Equals',
88
88
  // 'headerFilterOperator!=': 'Not equals',
89
- // 'headerFilterOperator>': 'Is greater than',
90
- // 'headerFilterOperator>=': 'Is greater than or equal to',
91
- // 'headerFilterOperator<': 'Is less than',
92
- // 'headerFilterOperator<=': 'Is less than or equal to',
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',
@@ -85,10 +85,10 @@ var esESGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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',
@@ -85,10 +85,10 @@ var faIRGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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: 'هرچیزی',
@@ -85,10 +85,10 @@ var fiFIGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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',
@@ -85,10 +85,10 @@ var heILGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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: 'כל ערך',
@@ -85,10 +85,10 @@ var huHUGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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',
@@ -85,10 +85,10 @@ var itITGrid = {
85
85
  // headerFilterOperatorIsAnyOf: 'Is any of',
86
86
  // 'headerFilterOperator=': 'Equals',
87
87
  // 'headerFilterOperator!=': 'Not equals',
88
- // 'headerFilterOperator>': 'Is greater than',
89
- // 'headerFilterOperator>=': 'Is greater than or equal to',
90
- // 'headerFilterOperator<': 'Is less than',
91
- // 'headerFilterOperator<=': 'Is less than or equal to',
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',