@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
package/node/locales/elGR.js
CHANGED
|
@@ -90,10 +90,10 @@ const elGRGrid = {
|
|
|
90
90
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
91
91
|
// 'headerFilterOperator=': 'Equals',
|
|
92
92
|
// 'headerFilterOperator!=': 'Not equals',
|
|
93
|
-
// 'headerFilterOperator>': '
|
|
94
|
-
// 'headerFilterOperator>=': '
|
|
95
|
-
// 'headerFilterOperator<': '
|
|
96
|
-
// 'headerFilterOperator<=': '
|
|
93
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
94
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
95
|
+
// 'headerFilterOperator<': 'Less than',
|
|
96
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
97
97
|
|
|
98
98
|
// Filter values text
|
|
99
99
|
// filterValueAny: 'any',
|
package/node/locales/esES.js
CHANGED
|
@@ -89,10 +89,10 @@ const esESGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'cualquiera',
|
package/node/locales/faIR.js
CHANGED
|
@@ -89,10 +89,10 @@ const faIRGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'هرچیزی',
|
package/node/locales/fiFI.js
CHANGED
|
@@ -89,10 +89,10 @@ const fiFIGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'mikä tahansa',
|
package/node/locales/heIL.js
CHANGED
|
@@ -89,10 +89,10 @@ const heILGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'כל ערך',
|
package/node/locales/huHU.js
CHANGED
|
@@ -89,10 +89,10 @@ const huHUGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'bármilyen',
|
package/node/locales/itIT.js
CHANGED
|
@@ -89,10 +89,10 @@ const itITGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'qualunque',
|
package/node/locales/jaJP.js
CHANGED
|
@@ -89,10 +89,10 @@ const jaJPGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'いずれか',
|
package/node/locales/koKR.js
CHANGED
|
@@ -89,10 +89,10 @@ const koKRGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: '아무값',
|
package/node/locales/nbNO.js
CHANGED
|
@@ -89,10 +89,10 @@ const nbNOGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'noen',
|
package/node/locales/plPL.js
CHANGED
|
@@ -89,10 +89,10 @@ const plPLGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'dowolny',
|
package/node/locales/ptBR.js
CHANGED
|
@@ -89,10 +89,10 @@ const ptBRGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'qualquer',
|
package/node/locales/roRO.js
CHANGED
|
@@ -89,10 +89,10 @@ const roROGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'Aleatoriu',
|
package/node/locales/ruRU.js
CHANGED
|
@@ -98,10 +98,10 @@ const ruRUGrid = {
|
|
|
98
98
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
99
99
|
// 'headerFilterOperator=': 'Equals',
|
|
100
100
|
// 'headerFilterOperator!=': 'Not equals',
|
|
101
|
-
// 'headerFilterOperator>': '
|
|
102
|
-
// 'headerFilterOperator>=': '
|
|
103
|
-
// 'headerFilterOperator<': '
|
|
104
|
-
// 'headerFilterOperator<=': '
|
|
101
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
102
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
103
|
+
// 'headerFilterOperator<': 'Less than',
|
|
104
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
105
105
|
|
|
106
106
|
// Filter values text
|
|
107
107
|
filterValueAny: 'любой',
|
package/node/locales/skSK.js
CHANGED
|
@@ -97,10 +97,10 @@ const skSKGrid = {
|
|
|
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: 'akýkoľvek',
|
package/node/locales/svSE.js
CHANGED
|
@@ -89,10 +89,10 @@ const svSEGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'något',
|
package/node/locales/trTR.js
CHANGED
|
@@ -66,18 +66,17 @@ const trTRGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'boş',
|
|
67
67
|
filterOperatorIsNotEmpty: 'dolu',
|
|
68
68
|
filterOperatorIsAnyOf: 'herhangi biri',
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
'filterOperator=': '=',
|
|
70
|
+
'filterOperator!=': '!=',
|
|
71
|
+
'filterOperator>': '>',
|
|
72
|
+
'filterOperator>=': '>=',
|
|
73
|
+
'filterOperator<': '<',
|
|
74
|
+
'filterOperator<=': '<=',
|
|
76
75
|
// Header filter operators text
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
76
|
+
headerFilterOperatorContains: 'Şunu içerir',
|
|
77
|
+
headerFilterOperatorEquals: 'Şuna eşittir',
|
|
78
|
+
headerFilterOperatorStartsWith: 'Şununla başlar',
|
|
79
|
+
headerFilterOperatorEndsWith: 'Şununla biter',
|
|
81
80
|
// headerFilterOperatorIs: 'Is',
|
|
82
81
|
// headerFilterOperatorNot: 'Is not',
|
|
83
82
|
// headerFilterOperatorAfter: 'Is after',
|
|
@@ -89,10 +88,10 @@ const trTRGrid = {
|
|
|
89
88
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
89
|
// 'headerFilterOperator=': 'Equals',
|
|
91
90
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
91
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
92
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
93
|
+
// 'headerFilterOperator<': 'Less than',
|
|
94
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
95
|
|
|
97
96
|
// Filter values text
|
|
98
97
|
filterValueAny: 'herhangi',
|
|
@@ -102,9 +101,9 @@ const trTRGrid = {
|
|
|
102
101
|
columnMenuLabel: 'Menü',
|
|
103
102
|
columnMenuShowColumns: 'Sütunları göster',
|
|
104
103
|
columnMenuManageColumns: 'Sütunları yönet',
|
|
105
|
-
columnMenuFilter: 'Filtre
|
|
104
|
+
columnMenuFilter: 'Filtre Ekle',
|
|
106
105
|
columnMenuHideColumn: 'Gizle',
|
|
107
|
-
columnMenuUnsort: 'Sıralama',
|
|
106
|
+
columnMenuUnsort: 'Varsayılan Sıralama',
|
|
108
107
|
columnMenuSortAsc: 'Sırala - Artan',
|
|
109
108
|
columnMenuSortDesc: 'Sırala - Azalan',
|
|
110
109
|
// Column header text
|
package/node/locales/ukUA.js
CHANGED
|
@@ -103,10 +103,10 @@ const ukUAGrid = {
|
|
|
103
103
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
104
104
|
// 'headerFilterOperator=': 'Equals',
|
|
105
105
|
// 'headerFilterOperator!=': 'Not equals',
|
|
106
|
-
// 'headerFilterOperator>': '
|
|
107
|
-
// 'headerFilterOperator>=': '
|
|
108
|
-
// 'headerFilterOperator<': '
|
|
109
|
-
// 'headerFilterOperator<=': '
|
|
106
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
107
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
108
|
+
// 'headerFilterOperator<': 'Less than',
|
|
109
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
110
110
|
|
|
111
111
|
// Filter values text
|
|
112
112
|
filterValueAny: 'будь-який',
|
package/node/locales/urPK.js
CHANGED
|
@@ -89,10 +89,10 @@ const urPKGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'کوئی بھی',
|
package/node/locales/viVN.js
CHANGED
|
@@ -89,10 +89,10 @@ const viVNGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'bất kỳ giá trị nào',
|
package/node/locales/zhCN.js
CHANGED
|
@@ -89,10 +89,10 @@ const zhCNGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: '任何',
|
package/node/locales/zhTW.js
CHANGED
|
@@ -89,10 +89,10 @@ const zhTWGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
90
|
// 'headerFilterOperator=': 'Equals',
|
|
91
91
|
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
-
// 'headerFilterOperator>': '
|
|
93
|
-
// 'headerFilterOperator>=': '
|
|
94
|
-
// 'headerFilterOperator<': '
|
|
95
|
-
// 'headerFilterOperator<=': '
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: '任何值',
|
|
@@ -9,7 +9,7 @@ exports.EventManager = void 0;
|
|
|
9
9
|
// the Node.js (https://nodejs.org/api/events.html) polyfill used by webpack.
|
|
10
10
|
class EventManager {
|
|
11
11
|
constructor() {
|
|
12
|
-
this.maxListeners =
|
|
12
|
+
this.maxListeners = 20;
|
|
13
13
|
this.warnOnce = false;
|
|
14
14
|
this.events = {};
|
|
15
15
|
}
|
|
@@ -31,7 +31,7 @@ class EventManager {
|
|
|
31
31
|
const collectionSize = collection.highPriority.size + collection.regular.size;
|
|
32
32
|
if (collectionSize > this.maxListeners && !this.warnOnce) {
|
|
33
33
|
this.warnOnce = true;
|
|
34
|
-
console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added
|
|
34
|
+
console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added.`].join('\n'));
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import { GridClassKey } from '../constants/gridClasses';
|
|
|
2
2
|
export interface DataGridComponentNameToClassKey {
|
|
3
3
|
MuiDataGrid: GridClassKey;
|
|
4
4
|
}
|
|
5
|
-
declare module '@mui/material/styles
|
|
5
|
+
declare module '@mui/material/styles' {
|
|
6
6
|
interface ComponentNameToClassKey extends DataGridComponentNameToClassKey {
|
|
7
7
|
}
|
|
8
8
|
}
|
package/utils/EventManager.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// the Node.js (https://nodejs.org/api/events.html) polyfill used by webpack.
|
|
4
4
|
export class EventManager {
|
|
5
5
|
constructor() {
|
|
6
|
-
this.maxListeners =
|
|
6
|
+
this.maxListeners = 20;
|
|
7
7
|
this.warnOnce = false;
|
|
8
8
|
this.events = {};
|
|
9
9
|
}
|
|
@@ -25,7 +25,7 @@ export class EventManager {
|
|
|
25
25
|
const collectionSize = collection.highPriority.size + collection.regular.size;
|
|
26
26
|
if (collectionSize > this.maxListeners && !this.warnOnce) {
|
|
27
27
|
this.warnOnce = true;
|
|
28
|
-
console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added
|
|
28
|
+
console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added.`].join('\n'));
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
}
|