@mui/x-data-grid-pro 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/headerFiltering/GridHeaderFilterCell.d.ts +0 -1
- package/components/headerFiltering/GridHeaderFilterCell.js +36 -23
- package/components/headerFiltering/GridHeaderFilterClearButton.js +1 -1
- package/components/headerFiltering/GridHeaderFilterMenu.d.ts +5 -2
- package/components/headerFiltering/GridHeaderFilterMenu.js +36 -15
- package/components/headerFiltering/{GridHeaderFilterAdornment.d.ts → GridHeaderFilterMenuContainer.d.ts} +3 -3
- package/{modern/components/headerFiltering/GridHeaderFilterAdornment.js → components/headerFiltering/GridHeaderFilterMenuContainer.js} +23 -24
- package/components/headerFiltering/index.d.ts +2 -1
- package/components/headerFiltering/index.js +3 -2
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +16 -8
- package/hooks/features/lazyLoader/useGridLazyLoaderPreProcessors.js +2 -2
- package/hooks/features/rowPinning/useGridRowPinningPreProcessors.js +1 -6
- package/index.js +1 -1
- package/legacy/components/headerFiltering/GridHeaderFilterCell.js +39 -27
- package/legacy/components/headerFiltering/GridHeaderFilterClearButton.js +1 -1
- package/legacy/components/headerFiltering/GridHeaderFilterMenu.js +36 -15
- package/legacy/components/headerFiltering/{GridHeaderFilterAdornment.js → GridHeaderFilterMenuContainer.js} +23 -25
- package/legacy/components/headerFiltering/index.js +3 -2
- package/legacy/hooks/features/columnHeaders/useGridColumnHeaders.js +14 -8
- package/legacy/hooks/features/lazyLoader/useGridLazyLoaderPreProcessors.js +2 -2
- package/legacy/hooks/features/rowPinning/useGridRowPinningPreProcessors.js +1 -6
- package/legacy/index.js +1 -1
- package/legacy/material/icons.js +1 -4
- package/legacy/material/index.js +2 -3
- package/legacy/utils/releaseInfo.js +1 -1
- package/legacy/utils/tree/insertDataRowInTree.js +8 -24
- package/legacy/utils/tree/sortRowTree.js +78 -18
- package/legacy/utils/tree/utils.js +27 -40
- package/material/icons.d.ts +0 -3
- package/material/icons.js +1 -4
- package/material/index.d.ts +0 -1
- package/material/index.js +2 -3
- package/models/gridProIconSlotsComponent.d.ts +0 -5
- package/modern/components/headerFiltering/GridHeaderFilterCell.js +36 -23
- package/modern/components/headerFiltering/GridHeaderFilterClearButton.js +1 -1
- package/modern/components/headerFiltering/GridHeaderFilterMenu.js +36 -15
- package/{components/headerFiltering/GridHeaderFilterAdornment.js → modern/components/headerFiltering/GridHeaderFilterMenuContainer.js} +22 -25
- package/modern/components/headerFiltering/index.js +3 -2
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +16 -8
- package/modern/hooks/features/lazyLoader/useGridLazyLoaderPreProcessors.js +2 -2
- package/modern/hooks/features/rowPinning/useGridRowPinningPreProcessors.js +1 -6
- package/modern/index.js +1 -1
- package/modern/material/icons.js +1 -4
- package/modern/material/index.js +2 -3
- package/modern/utils/releaseInfo.js +1 -1
- package/modern/utils/tree/insertDataRowInTree.js +8 -24
- package/modern/utils/tree/sortRowTree.js +64 -18
- package/modern/utils/tree/utils.js +10 -25
- package/node/components/headerFiltering/GridHeaderFilterCell.js +36 -23
- package/node/components/headerFiltering/GridHeaderFilterClearButton.js +1 -1
- package/node/components/headerFiltering/GridHeaderFilterMenu.js +36 -14
- package/node/components/headerFiltering/{GridHeaderFilterAdornment.js → GridHeaderFilterMenuContainer.js} +22 -24
- package/node/components/headerFiltering/index.js +15 -4
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +15 -7
- package/node/hooks/features/lazyLoader/useGridLazyLoaderPreProcessors.js +2 -2
- package/node/hooks/features/rowPinning/useGridRowPinningPreProcessors.js +1 -6
- package/node/index.js +1 -1
- package/node/material/icons.js +2 -6
- package/node/material/index.js +1 -2
- package/node/utils/releaseInfo.js +1 -1
- package/node/utils/tree/insertDataRowInTree.js +7 -23
- package/node/utils/tree/sortRowTree.js +64 -18
- package/node/utils/tree/utils.js +12 -27
- package/package.json +2 -2
- package/themeAugmentation/overrides.d.ts +1 -1
- package/typeOverloads/modules.d.ts +6 -6
- package/utils/releaseInfo.js +1 -1
- package/utils/tree/insertDataRowInTree.js +8 -24
- package/utils/tree/sortRowTree.js +64 -18
- package/utils/tree/utils.d.ts +3 -38
- package/utils/tree/utils.js +10 -25
- package/components/headerFiltering/constants.d.ts +0 -3
- package/components/headerFiltering/constants.js +0 -30
- package/legacy/components/headerFiltering/constants.js +0 -30
- package/modern/components/headerFiltering/constants.js +0 -30
- package/node/components/headerFiltering/constants.js +0 -37
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export const OPERATOR_SYMBOL_MAPPING = {
|
|
2
|
-
contains: '∋',
|
|
3
|
-
equals: '=',
|
|
4
|
-
'=': '=',
|
|
5
|
-
'!=': '≠',
|
|
6
|
-
'>': '>',
|
|
7
|
-
'>=': '≥',
|
|
8
|
-
'<': '<',
|
|
9
|
-
'<=': '≤',
|
|
10
|
-
startsWith: '⊃',
|
|
11
|
-
endsWith: '⊂',
|
|
12
|
-
is: '=',
|
|
13
|
-
not: '≠',
|
|
14
|
-
isNot: '≠',
|
|
15
|
-
isEmpty: '∅',
|
|
16
|
-
isNotEmpty: '∉',
|
|
17
|
-
isIn: '∈',
|
|
18
|
-
isNotIn: '∉',
|
|
19
|
-
isLessThan: '<',
|
|
20
|
-
isLessThanOrEqual: '≤',
|
|
21
|
-
isGreaterThan: '>',
|
|
22
|
-
isGreaterThanOrEqual: '≥',
|
|
23
|
-
isBetween: '∈',
|
|
24
|
-
isNotBetween: '∉',
|
|
25
|
-
isAnyOf: '∈',
|
|
26
|
-
after: '>',
|
|
27
|
-
onOrAfter: '≥',
|
|
28
|
-
before: '<',
|
|
29
|
-
onOrBefore: '≤'
|
|
30
|
-
};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export var OPERATOR_SYMBOL_MAPPING = {
|
|
2
|
-
contains: '∋',
|
|
3
|
-
equals: '=',
|
|
4
|
-
'=': '=',
|
|
5
|
-
'!=': '≠',
|
|
6
|
-
'>': '>',
|
|
7
|
-
'>=': '≥',
|
|
8
|
-
'<': '<',
|
|
9
|
-
'<=': '≤',
|
|
10
|
-
startsWith: '⊃',
|
|
11
|
-
endsWith: '⊂',
|
|
12
|
-
is: '=',
|
|
13
|
-
not: '≠',
|
|
14
|
-
isNot: '≠',
|
|
15
|
-
isEmpty: '∅',
|
|
16
|
-
isNotEmpty: '∉',
|
|
17
|
-
isIn: '∈',
|
|
18
|
-
isNotIn: '∉',
|
|
19
|
-
isLessThan: '<',
|
|
20
|
-
isLessThanOrEqual: '≤',
|
|
21
|
-
isGreaterThan: '>',
|
|
22
|
-
isGreaterThanOrEqual: '≥',
|
|
23
|
-
isBetween: '∈',
|
|
24
|
-
isNotBetween: '∉',
|
|
25
|
-
isAnyOf: '∈',
|
|
26
|
-
after: '>',
|
|
27
|
-
onOrAfter: '≥',
|
|
28
|
-
before: '<',
|
|
29
|
-
onOrBefore: '≤'
|
|
30
|
-
};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export const OPERATOR_SYMBOL_MAPPING = {
|
|
2
|
-
contains: '∋',
|
|
3
|
-
equals: '=',
|
|
4
|
-
'=': '=',
|
|
5
|
-
'!=': '≠',
|
|
6
|
-
'>': '>',
|
|
7
|
-
'>=': '≥',
|
|
8
|
-
'<': '<',
|
|
9
|
-
'<=': '≤',
|
|
10
|
-
startsWith: '⊃',
|
|
11
|
-
endsWith: '⊂',
|
|
12
|
-
is: '=',
|
|
13
|
-
not: '≠',
|
|
14
|
-
isNot: '≠',
|
|
15
|
-
isEmpty: '∅',
|
|
16
|
-
isNotEmpty: '∉',
|
|
17
|
-
isIn: '∈',
|
|
18
|
-
isNotIn: '∉',
|
|
19
|
-
isLessThan: '<',
|
|
20
|
-
isLessThanOrEqual: '≤',
|
|
21
|
-
isGreaterThan: '>',
|
|
22
|
-
isGreaterThanOrEqual: '≥',
|
|
23
|
-
isBetween: '∈',
|
|
24
|
-
isNotBetween: '∉',
|
|
25
|
-
isAnyOf: '∈',
|
|
26
|
-
after: '>',
|
|
27
|
-
onOrAfter: '≥',
|
|
28
|
-
before: '<',
|
|
29
|
-
onOrBefore: '≤'
|
|
30
|
-
};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.OPERATOR_SYMBOL_MAPPING = void 0;
|
|
7
|
-
const OPERATOR_SYMBOL_MAPPING = {
|
|
8
|
-
contains: '∋',
|
|
9
|
-
equals: '=',
|
|
10
|
-
'=': '=',
|
|
11
|
-
'!=': '≠',
|
|
12
|
-
'>': '>',
|
|
13
|
-
'>=': '≥',
|
|
14
|
-
'<': '<',
|
|
15
|
-
'<=': '≤',
|
|
16
|
-
startsWith: '⊃',
|
|
17
|
-
endsWith: '⊂',
|
|
18
|
-
is: '=',
|
|
19
|
-
not: '≠',
|
|
20
|
-
isNot: '≠',
|
|
21
|
-
isEmpty: '∅',
|
|
22
|
-
isNotEmpty: '∉',
|
|
23
|
-
isIn: '∈',
|
|
24
|
-
isNotIn: '∉',
|
|
25
|
-
isLessThan: '<',
|
|
26
|
-
isLessThanOrEqual: '≤',
|
|
27
|
-
isGreaterThan: '>',
|
|
28
|
-
isGreaterThanOrEqual: '≥',
|
|
29
|
-
isBetween: '∈',
|
|
30
|
-
isNotBetween: '∉',
|
|
31
|
-
isAnyOf: '∈',
|
|
32
|
-
after: '>',
|
|
33
|
-
onOrAfter: '≥',
|
|
34
|
-
before: '<',
|
|
35
|
-
onOrBefore: '≤'
|
|
36
|
-
};
|
|
37
|
-
exports.OPERATOR_SYMBOL_MAPPING = OPERATOR_SYMBOL_MAPPING;
|