@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
|
@@ -90,7 +90,7 @@ export const useGridVirtualScroller = props => {
|
|
|
90
90
|
height: null
|
|
91
91
|
});
|
|
92
92
|
const prevTotalWidth = React.useRef(columnsTotalWidth);
|
|
93
|
-
const rowStyleCache = React.useRef(
|
|
93
|
+
const rowStyleCache = React.useRef(Object.create(null));
|
|
94
94
|
const prevGetRowProps = React.useRef();
|
|
95
95
|
const prevRootRowStyle = React.useRef();
|
|
96
96
|
const getRenderedColumnsRef = React.useRef(defaultMemoize((columns, firstColumnToRender, lastColumnToRender) => {
|
|
@@ -374,7 +374,7 @@ export const useGridVirtualScroller = props => {
|
|
|
374
374
|
rootRowProps = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
375
375
|
const invalidatesCachedRowStyle = prevGetRowProps.current !== getRowProps || prevRootRowStyle.current !== rootRowStyle;
|
|
376
376
|
if (invalidatesCachedRowStyle) {
|
|
377
|
-
rowStyleCache.current =
|
|
377
|
+
rowStyleCache.current = Object.create(null);
|
|
378
378
|
}
|
|
379
379
|
const rows = [];
|
|
380
380
|
for (let i = 0; i < renderedRows.length; i += 1) {
|
package/modern/index.js
CHANGED
package/modern/locales/arSD.js
CHANGED
|
@@ -83,10 +83,10 @@ const arSDGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'أي',
|
package/modern/locales/beBY.js
CHANGED
|
@@ -97,10 +97,10 @@ const beBYGrid = {
|
|
|
97
97
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
98
98
|
// 'headerFilterOperator=': 'Equals',
|
|
99
99
|
// 'headerFilterOperator!=': 'Not equals',
|
|
100
|
-
// 'headerFilterOperator>': '
|
|
101
|
-
// 'headerFilterOperator>=': '
|
|
102
|
-
// 'headerFilterOperator<': '
|
|
103
|
-
// 'headerFilterOperator<=': '
|
|
100
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
101
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
102
|
+
// 'headerFilterOperator<': 'Less than',
|
|
103
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
104
104
|
|
|
105
105
|
// Filter values text
|
|
106
106
|
filterValueAny: 'усякі',
|
package/modern/locales/bgBG.js
CHANGED
|
@@ -83,10 +83,10 @@ const bgBGGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'всякакви',
|
package/modern/locales/csCZ.js
CHANGED
|
@@ -68,34 +68,32 @@ const 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/modern/locales/daDK.js
CHANGED
|
@@ -83,10 +83,10 @@ const daDKGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'hvilken som helst',
|
package/modern/locales/deDE.js
CHANGED
|
@@ -60,34 +60,32 @@ const deDEGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'ist leer',
|
|
61
61
|
filterOperatorIsNotEmpty: 'ist nicht leer',
|
|
62
62
|
filterOperatorIsAnyOf: 'ist einer der Werte',
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
'filterOperator=': '=',
|
|
64
|
+
'filterOperator!=': '!=',
|
|
65
|
+
'filterOperator>': '>',
|
|
66
|
+
'filterOperator>=': '>=',
|
|
67
|
+
'filterOperator<': '<',
|
|
68
|
+
'filterOperator<=': '<=',
|
|
70
69
|
// Header filter operators text
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
70
|
+
headerFilterOperatorContains: 'Enthält',
|
|
71
|
+
headerFilterOperatorEquals: 'Gleich',
|
|
72
|
+
headerFilterOperatorStartsWith: 'Beginnt mit',
|
|
73
|
+
headerFilterOperatorEndsWith: 'Endet mit',
|
|
74
|
+
headerFilterOperatorIs: 'Ist',
|
|
75
|
+
headerFilterOperatorNot: 'Ist nicht',
|
|
76
|
+
headerFilterOperatorAfter: 'Ist nach',
|
|
77
|
+
headerFilterOperatorOnOrAfter: 'Ist am oder nach',
|
|
78
|
+
headerFilterOperatorBefore: 'Ist vor',
|
|
79
|
+
headerFilterOperatorOnOrBefore: 'Ist am oder vor',
|
|
80
|
+
headerFilterOperatorIsEmpty: 'Ist leer',
|
|
81
|
+
headerFilterOperatorIsNotEmpty: 'Ist nicht leer',
|
|
82
|
+
headerFilterOperatorIsAnyOf: 'Ist eines von',
|
|
83
|
+
'headerFilterOperator=': 'Gleich',
|
|
84
|
+
'headerFilterOperator!=': 'Ungleich',
|
|
85
|
+
'headerFilterOperator>': 'Größer als',
|
|
86
|
+
'headerFilterOperator>=': 'Größer als oder gleich',
|
|
87
|
+
'headerFilterOperator<': 'Kleiner als',
|
|
88
|
+
'headerFilterOperator<=': 'Kleiner als oder gleich',
|
|
91
89
|
// Filter values text
|
|
92
90
|
filterValueAny: 'Beliebig',
|
|
93
91
|
filterValueTrue: 'Ja',
|
package/modern/locales/elGR.js
CHANGED
|
@@ -84,10 +84,10 @@ const elGRGrid = {
|
|
|
84
84
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
85
85
|
// 'headerFilterOperator=': 'Equals',
|
|
86
86
|
// 'headerFilterOperator!=': 'Not equals',
|
|
87
|
-
// 'headerFilterOperator>': '
|
|
88
|
-
// 'headerFilterOperator>=': '
|
|
89
|
-
// 'headerFilterOperator<': '
|
|
90
|
-
// 'headerFilterOperator<=': '
|
|
87
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
88
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
89
|
+
// 'headerFilterOperator<': 'Less than',
|
|
90
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
91
91
|
|
|
92
92
|
// Filter values text
|
|
93
93
|
// filterValueAny: 'any',
|
package/modern/locales/esES.js
CHANGED
|
@@ -83,10 +83,10 @@ const esESGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'cualquiera',
|
package/modern/locales/faIR.js
CHANGED
|
@@ -83,10 +83,10 @@ const faIRGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'هرچیزی',
|
package/modern/locales/fiFI.js
CHANGED
|
@@ -83,10 +83,10 @@ const fiFIGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'mikä tahansa',
|
package/modern/locales/heIL.js
CHANGED
|
@@ -83,10 +83,10 @@ const heILGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'כל ערך',
|
package/modern/locales/huHU.js
CHANGED
|
@@ -83,10 +83,10 @@ const huHUGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'bármilyen',
|
package/modern/locales/itIT.js
CHANGED
|
@@ -83,10 +83,10 @@ const itITGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'qualunque',
|
package/modern/locales/jaJP.js
CHANGED
|
@@ -83,10 +83,10 @@ const jaJPGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'いずれか',
|
package/modern/locales/koKR.js
CHANGED
|
@@ -83,10 +83,10 @@ const koKRGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: '아무값',
|
package/modern/locales/nbNO.js
CHANGED
|
@@ -83,10 +83,10 @@ const nbNOGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'noen',
|
package/modern/locales/plPL.js
CHANGED
|
@@ -83,10 +83,10 @@ const plPLGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'dowolny',
|
package/modern/locales/ptBR.js
CHANGED
|
@@ -83,10 +83,10 @@ const ptBRGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'qualquer',
|
package/modern/locales/roRO.js
CHANGED
|
@@ -83,10 +83,10 @@ const roROGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'Aleatoriu',
|
package/modern/locales/ruRU.js
CHANGED
|
@@ -92,10 +92,10 @@ const ruRUGrid = {
|
|
|
92
92
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
93
93
|
// 'headerFilterOperator=': 'Equals',
|
|
94
94
|
// 'headerFilterOperator!=': 'Not equals',
|
|
95
|
-
// 'headerFilterOperator>': '
|
|
96
|
-
// 'headerFilterOperator>=': '
|
|
97
|
-
// 'headerFilterOperator<': '
|
|
98
|
-
// 'headerFilterOperator<=': '
|
|
95
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
96
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
97
|
+
// 'headerFilterOperator<': 'Less than',
|
|
98
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
99
99
|
|
|
100
100
|
// Filter values text
|
|
101
101
|
filterValueAny: 'любой',
|
package/modern/locales/skSK.js
CHANGED
|
@@ -91,10 +91,10 @@ const skSKGrid = {
|
|
|
91
91
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
92
92
|
// 'headerFilterOperator=': 'Equals',
|
|
93
93
|
// 'headerFilterOperator!=': 'Not equals',
|
|
94
|
-
// 'headerFilterOperator>': '
|
|
95
|
-
// 'headerFilterOperator>=': '
|
|
96
|
-
// 'headerFilterOperator<': '
|
|
97
|
-
// 'headerFilterOperator<=': '
|
|
94
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
95
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
96
|
+
// 'headerFilterOperator<': 'Less than',
|
|
97
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
98
98
|
|
|
99
99
|
// Filter values text
|
|
100
100
|
filterValueAny: 'akýkoľvek',
|
package/modern/locales/svSE.js
CHANGED
|
@@ -83,10 +83,10 @@ const svSEGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'något',
|
package/modern/locales/trTR.js
CHANGED
|
@@ -60,18 +60,17 @@ const trTRGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'boş',
|
|
61
61
|
filterOperatorIsNotEmpty: 'dolu',
|
|
62
62
|
filterOperatorIsAnyOf: 'herhangi biri',
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
'filterOperator=': '=',
|
|
64
|
+
'filterOperator!=': '!=',
|
|
65
|
+
'filterOperator>': '>',
|
|
66
|
+
'filterOperator>=': '>=',
|
|
67
|
+
'filterOperator<': '<',
|
|
68
|
+
'filterOperator<=': '<=',
|
|
70
69
|
// Header filter operators text
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
headerFilterOperatorContains: 'Şunu içerir',
|
|
71
|
+
headerFilterOperatorEquals: 'Şuna eşittir',
|
|
72
|
+
headerFilterOperatorStartsWith: 'Şununla başlar',
|
|
73
|
+
headerFilterOperatorEndsWith: 'Şununla biter',
|
|
75
74
|
// headerFilterOperatorIs: 'Is',
|
|
76
75
|
// headerFilterOperatorNot: 'Is not',
|
|
77
76
|
// headerFilterOperatorAfter: 'Is after',
|
|
@@ -83,10 +82,10 @@ const trTRGrid = {
|
|
|
83
82
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
83
|
// 'headerFilterOperator=': 'Equals',
|
|
85
84
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
85
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
86
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
87
|
+
// 'headerFilterOperator<': 'Less than',
|
|
88
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
89
|
|
|
91
90
|
// Filter values text
|
|
92
91
|
filterValueAny: 'herhangi',
|
|
@@ -96,9 +95,9 @@ const trTRGrid = {
|
|
|
96
95
|
columnMenuLabel: 'Menü',
|
|
97
96
|
columnMenuShowColumns: 'Sütunları göster',
|
|
98
97
|
columnMenuManageColumns: 'Sütunları yönet',
|
|
99
|
-
columnMenuFilter: 'Filtre
|
|
98
|
+
columnMenuFilter: 'Filtre Ekle',
|
|
100
99
|
columnMenuHideColumn: 'Gizle',
|
|
101
|
-
columnMenuUnsort: 'Sıralama',
|
|
100
|
+
columnMenuUnsort: 'Varsayılan Sıralama',
|
|
102
101
|
columnMenuSortAsc: 'Sırala - Artan',
|
|
103
102
|
columnMenuSortDesc: 'Sırala - Azalan',
|
|
104
103
|
// Column header text
|
package/modern/locales/ukUA.js
CHANGED
|
@@ -97,10 +97,10 @@ const ukUAGrid = {
|
|
|
97
97
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
98
98
|
// 'headerFilterOperator=': 'Equals',
|
|
99
99
|
// 'headerFilterOperator!=': 'Not equals',
|
|
100
|
-
// 'headerFilterOperator>': '
|
|
101
|
-
// 'headerFilterOperator>=': '
|
|
102
|
-
// 'headerFilterOperator<': '
|
|
103
|
-
// 'headerFilterOperator<=': '
|
|
100
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
101
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
102
|
+
// 'headerFilterOperator<': 'Less than',
|
|
103
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
104
104
|
|
|
105
105
|
// Filter values text
|
|
106
106
|
filterValueAny: 'будь-який',
|
package/modern/locales/urPK.js
CHANGED
|
@@ -83,10 +83,10 @@ const urPKGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'کوئی بھی',
|
package/modern/locales/viVN.js
CHANGED
|
@@ -83,10 +83,10 @@ const viVNGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'bất kỳ giá trị nào',
|
package/modern/locales/zhCN.js
CHANGED
|
@@ -83,10 +83,10 @@ const zhCNGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: '任何',
|