@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/legacy/locales/jaJP.js
CHANGED
|
@@ -85,10 +85,10 @@ var jaJPGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'いずれか',
|
package/legacy/locales/koKR.js
CHANGED
|
@@ -85,10 +85,10 @@ var koKRGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: '아무값',
|
package/legacy/locales/nbNO.js
CHANGED
|
@@ -85,10 +85,10 @@ var nbNOGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'noen',
|
package/legacy/locales/plPL.js
CHANGED
|
@@ -85,10 +85,10 @@ var plPLGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'dowolny',
|
package/legacy/locales/ptBR.js
CHANGED
|
@@ -85,10 +85,10 @@ var ptBRGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'qualquer',
|
package/legacy/locales/roRO.js
CHANGED
|
@@ -85,10 +85,10 @@ var roROGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'Aleatoriu',
|
package/legacy/locales/ruRU.js
CHANGED
|
@@ -92,10 +92,10 @@ var 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/legacy/locales/skSK.js
CHANGED
|
@@ -91,10 +91,10 @@ var 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/legacy/locales/svSE.js
CHANGED
|
@@ -85,10 +85,10 @@ var svSEGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'något',
|
package/legacy/locales/trTR.js
CHANGED
|
@@ -62,18 +62,17 @@ var trTRGrid = {
|
|
|
62
62
|
filterOperatorIsEmpty: 'boş',
|
|
63
63
|
filterOperatorIsNotEmpty: 'dolu',
|
|
64
64
|
filterOperatorIsAnyOf: 'herhangi biri',
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
65
|
+
'filterOperator=': '=',
|
|
66
|
+
'filterOperator!=': '!=',
|
|
67
|
+
'filterOperator>': '>',
|
|
68
|
+
'filterOperator>=': '>=',
|
|
69
|
+
'filterOperator<': '<',
|
|
70
|
+
'filterOperator<=': '<=',
|
|
72
71
|
// Header filter operators text
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
72
|
+
headerFilterOperatorContains: 'Şunu içerir',
|
|
73
|
+
headerFilterOperatorEquals: 'Şuna eşittir',
|
|
74
|
+
headerFilterOperatorStartsWith: 'Şununla başlar',
|
|
75
|
+
headerFilterOperatorEndsWith: 'Şununla biter',
|
|
77
76
|
// headerFilterOperatorIs: 'Is',
|
|
78
77
|
// headerFilterOperatorNot: 'Is not',
|
|
79
78
|
// headerFilterOperatorAfter: 'Is after',
|
|
@@ -85,10 +84,10 @@ var trTRGrid = {
|
|
|
85
84
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
85
|
// 'headerFilterOperator=': 'Equals',
|
|
87
86
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
87
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
88
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
89
|
+
// 'headerFilterOperator<': 'Less than',
|
|
90
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
91
|
|
|
93
92
|
// Filter values text
|
|
94
93
|
filterValueAny: 'herhangi',
|
|
@@ -98,9 +97,9 @@ var trTRGrid = {
|
|
|
98
97
|
columnMenuLabel: 'Menü',
|
|
99
98
|
columnMenuShowColumns: 'Sütunları göster',
|
|
100
99
|
columnMenuManageColumns: 'Sütunları yönet',
|
|
101
|
-
columnMenuFilter: 'Filtre
|
|
100
|
+
columnMenuFilter: 'Filtre Ekle',
|
|
102
101
|
columnMenuHideColumn: 'Gizle',
|
|
103
|
-
columnMenuUnsort: 'Sıralama',
|
|
102
|
+
columnMenuUnsort: 'Varsayılan Sıralama',
|
|
104
103
|
columnMenuSortAsc: 'Sırala - Artan',
|
|
105
104
|
columnMenuSortDesc: 'Sırala - Azalan',
|
|
106
105
|
// Column header text
|
package/legacy/locales/ukUA.js
CHANGED
|
@@ -99,10 +99,10 @@ var ukUAGrid = {
|
|
|
99
99
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
100
100
|
// 'headerFilterOperator=': 'Equals',
|
|
101
101
|
// 'headerFilterOperator!=': 'Not equals',
|
|
102
|
-
// 'headerFilterOperator>': '
|
|
103
|
-
// 'headerFilterOperator>=': '
|
|
104
|
-
// 'headerFilterOperator<': '
|
|
105
|
-
// 'headerFilterOperator<=': '
|
|
102
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
103
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
104
|
+
// 'headerFilterOperator<': 'Less than',
|
|
105
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
106
106
|
|
|
107
107
|
// Filter values text
|
|
108
108
|
filterValueAny: 'будь-який',
|
package/legacy/locales/urPK.js
CHANGED
|
@@ -85,10 +85,10 @@ var urPKGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'کوئی بھی',
|
package/legacy/locales/viVN.js
CHANGED
|
@@ -85,10 +85,10 @@ var viVNGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: 'bất kỳ giá trị nào',
|
package/legacy/locales/zhCN.js
CHANGED
|
@@ -85,10 +85,10 @@ var zhCNGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: '任何',
|
package/legacy/locales/zhTW.js
CHANGED
|
@@ -85,10 +85,10 @@ var zhTWGrid = {
|
|
|
85
85
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
86
86
|
// 'headerFilterOperator=': 'Equals',
|
|
87
87
|
// 'headerFilterOperator!=': 'Not equals',
|
|
88
|
-
// 'headerFilterOperator>': '
|
|
89
|
-
// 'headerFilterOperator>=': '
|
|
90
|
-
// 'headerFilterOperator<': '
|
|
91
|
-
// 'headerFilterOperator<=': '
|
|
88
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
89
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
90
|
+
// 'headerFilterOperator<': 'Less than',
|
|
91
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
92
92
|
|
|
93
93
|
// Filter values text
|
|
94
94
|
filterValueAny: '任何值',
|
|
@@ -6,7 +6,7 @@ import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
|
6
6
|
export var EventManager = /*#__PURE__*/function () {
|
|
7
7
|
function EventManager() {
|
|
8
8
|
_classCallCheck(this, EventManager);
|
|
9
|
-
this.maxListeners =
|
|
9
|
+
this.maxListeners = 20;
|
|
10
10
|
this.warnOnce = false;
|
|
11
11
|
this.events = {};
|
|
12
12
|
}
|
|
@@ -31,7 +31,7 @@ export var EventManager = /*#__PURE__*/function () {
|
|
|
31
31
|
var 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. ".concat(collectionSize, " ").concat(eventName, " listeners added.")
|
|
34
|
+
console.warn(["Possible EventEmitter memory leak detected. ".concat(collectionSize, " ").concat(eventName, " listeners added.")].join('\n'));
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
}
|
package/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/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/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/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/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/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/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/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/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/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/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/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/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',
|