@mui/x-data-grid 7.16.0 → 7.18.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 +184 -4
- package/DataGrid/DataGrid.js +11 -1
- package/DataGrid/useDataGridComponent.js +3 -0
- package/DataGrid/useDataGridProps.js +2 -1
- package/colDef/gridStringOperators.js +49 -33
- package/components/GridRow.js +1 -0
- package/components/cell/GridCell.js +30 -5
- package/components/columnHeaders/GridColumnHeaderItem.d.ts +2 -0
- package/components/columnHeaders/GridColumnHeaderItem.js +9 -2
- package/components/columnHeaders/GridColumnHeaderTitle.js +3 -1
- package/components/columnHeaders/GridGenericColumnHeaderItem.js +1 -2
- package/components/containers/GridRootStyles.js +3 -7
- package/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/constants/gridClasses.d.ts +10 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +4 -0
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +0 -1
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +17 -12
- package/hooks/features/columnResize/useGridColumnResize.js +6 -6
- package/hooks/features/dimensions/gridDimensionsApi.d.ts +4 -0
- package/hooks/features/dimensions/useGridDimensions.d.ts +1 -1
- package/hooks/features/dimensions/useGridDimensions.js +4 -1
- package/hooks/features/editing/useGridCellEditing.js +3 -19
- package/hooks/features/editing/useGridRowEditing.js +7 -2
- package/hooks/features/editing/utils.d.ts +2 -0
- package/hooks/features/editing/utils.js +15 -0
- package/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/hooks/features/export/useGridPrintExport.js +2 -1
- package/hooks/features/filter/gridFilterUtils.js +1 -1
- package/hooks/features/focus/useGridFocus.js +2 -1
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +10 -46
- package/hooks/features/keyboardNavigation/utils.d.ts +17 -0
- package/hooks/features/keyboardNavigation/utils.js +58 -0
- package/hooks/features/rows/gridRowSpanningSelectors.d.ts +4 -0
- package/hooks/features/rows/gridRowSpanningSelectors.js +5 -0
- package/hooks/features/rows/gridRowSpanningUtils.d.ts +10 -0
- package/hooks/features/rows/gridRowSpanningUtils.js +42 -0
- package/hooks/features/rows/useGridRowSpanning.d.ts +27 -0
- package/hooks/features/rows/useGridRowSpanning.js +257 -0
- package/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +1 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +17 -7
- package/hooks/utils/useGridApiEventHandler.js +0 -1
- package/hooks/utils/useGridSelector.js +1 -1
- package/index.js +1 -1
- package/internals/index.d.ts +1 -0
- package/internals/index.js +1 -0
- package/internals/utils/index.d.ts +0 -1
- package/internals/utils/index.js +1 -2
- package/internals/utils/propValidation.js +1 -1
- package/locales/arSD.js +4 -0
- package/locales/beBY.js +4 -0
- package/locales/bgBG.js +4 -0
- package/locales/csCZ.js +4 -0
- package/locales/daDK.js +4 -0
- package/locales/deDE.js +4 -0
- package/locales/elGR.js +4 -0
- package/locales/esES.js +4 -0
- package/locales/faIR.js +4 -0
- package/locales/fiFI.js +4 -0
- package/locales/frFR.js +4 -0
- package/locales/heIL.js +4 -0
- package/locales/hrHR.js +4 -0
- package/locales/huHU.js +11 -8
- package/locales/isIS.js +4 -0
- package/locales/itIT.js +4 -0
- package/locales/jaJP.js +4 -0
- package/locales/koKR.js +4 -0
- package/locales/nbNO.js +4 -0
- package/locales/nlNL.js +4 -0
- package/locales/nnNO.js +4 -0
- package/locales/plPL.js +4 -0
- package/locales/ptBR.js +4 -0
- package/locales/ptPT.js +4 -0
- package/locales/roRO.js +4 -0
- package/locales/ruRU.js +4 -0
- package/locales/skSK.js +4 -0
- package/locales/svSE.js +4 -0
- package/locales/trTR.js +4 -0
- package/locales/ukUA.js +4 -0
- package/locales/urPK.js +4 -0
- package/locales/viVN.js +4 -0
- package/locales/zhCN.js +4 -0
- package/locales/zhHK.js +4 -0
- package/locales/zhTW.js +4 -0
- package/models/api/gridLocaleTextApi.d.ts +4 -0
- package/models/colDef/gridColDef.d.ts +4 -0
- package/models/gridStateCommunity.d.ts +2 -0
- package/models/props/DataGridProps.d.ts +10 -0
- package/modern/DataGrid/DataGrid.js +11 -1
- package/modern/DataGrid/useDataGridComponent.js +3 -0
- package/modern/DataGrid/useDataGridProps.js +2 -1
- package/modern/colDef/gridStringOperators.js +49 -33
- package/modern/components/GridRow.js +1 -0
- package/modern/components/cell/GridCell.js +30 -5
- package/modern/components/columnHeaders/GridColumnHeaderItem.js +9 -2
- package/modern/components/columnHeaders/GridColumnHeaderTitle.js +3 -1
- package/modern/components/columnHeaders/GridGenericColumnHeaderItem.js +1 -2
- package/modern/components/containers/GridRootStyles.js +3 -7
- package/modern/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +4 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +17 -12
- package/modern/hooks/features/columnResize/useGridColumnResize.js +6 -6
- package/modern/hooks/features/dimensions/useGridDimensions.js +4 -1
- package/modern/hooks/features/editing/useGridCellEditing.js +3 -19
- package/modern/hooks/features/editing/useGridRowEditing.js +7 -2
- package/modern/hooks/features/editing/utils.js +15 -0
- package/modern/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/modern/hooks/features/export/useGridPrintExport.js +2 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +1 -1
- package/modern/hooks/features/focus/useGridFocus.js +2 -1
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +10 -46
- package/modern/hooks/features/keyboardNavigation/utils.js +58 -0
- package/modern/hooks/features/rows/gridRowSpanningSelectors.js +5 -0
- package/modern/hooks/features/rows/gridRowSpanningUtils.js +42 -0
- package/modern/hooks/features/rows/useGridRowSpanning.js +257 -0
- package/modern/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +17 -7
- package/modern/hooks/utils/useGridApiEventHandler.js +0 -1
- package/modern/hooks/utils/useGridSelector.js +1 -1
- package/modern/index.js +1 -1
- package/modern/internals/index.js +1 -0
- package/modern/internals/utils/index.js +1 -2
- package/modern/internals/utils/propValidation.js +1 -1
- package/modern/locales/arSD.js +4 -0
- package/modern/locales/beBY.js +4 -0
- package/modern/locales/bgBG.js +4 -0
- package/modern/locales/csCZ.js +4 -0
- package/modern/locales/daDK.js +4 -0
- package/modern/locales/deDE.js +4 -0
- package/modern/locales/elGR.js +4 -0
- package/modern/locales/esES.js +4 -0
- package/modern/locales/faIR.js +4 -0
- package/modern/locales/fiFI.js +4 -0
- package/modern/locales/frFR.js +4 -0
- package/modern/locales/heIL.js +4 -0
- package/modern/locales/hrHR.js +4 -0
- package/modern/locales/huHU.js +11 -8
- package/modern/locales/isIS.js +4 -0
- package/modern/locales/itIT.js +4 -0
- package/modern/locales/jaJP.js +4 -0
- package/modern/locales/koKR.js +4 -0
- package/modern/locales/nbNO.js +4 -0
- package/modern/locales/nlNL.js +4 -0
- package/modern/locales/nnNO.js +4 -0
- package/modern/locales/plPL.js +4 -0
- package/modern/locales/ptBR.js +4 -0
- package/modern/locales/ptPT.js +4 -0
- package/modern/locales/roRO.js +4 -0
- package/modern/locales/ruRU.js +4 -0
- package/modern/locales/skSK.js +4 -0
- package/modern/locales/svSE.js +4 -0
- package/modern/locales/trTR.js +4 -0
- package/modern/locales/ukUA.js +4 -0
- package/modern/locales/urPK.js +4 -0
- package/modern/locales/viVN.js +4 -0
- package/modern/locales/zhCN.js +4 -0
- package/modern/locales/zhHK.js +4 -0
- package/modern/locales/zhTW.js +4 -0
- package/modern/utils/createSelector.js +1 -1
- package/modern/utils/domUtils.js +12 -12
- package/node/DataGrid/DataGrid.js +11 -1
- package/node/DataGrid/useDataGridComponent.js +3 -0
- package/node/DataGrid/useDataGridProps.js +2 -1
- package/node/colDef/gridStringOperators.js +49 -33
- package/node/components/GridRow.js +1 -0
- package/node/components/cell/GridCell.js +30 -5
- package/node/components/columnHeaders/GridColumnHeaderItem.js +9 -2
- package/node/components/columnHeaders/GridColumnHeaderTitle.js +3 -1
- package/node/components/columnHeaders/GridGenericColumnHeaderItem.js +1 -2
- package/node/components/containers/GridRootStyles.js +3 -7
- package/node/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +4 -0
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +17 -12
- package/node/hooks/features/columnResize/useGridColumnResize.js +6 -6
- package/node/hooks/features/dimensions/useGridDimensions.js +4 -1
- package/node/hooks/features/editing/useGridCellEditing.js +3 -19
- package/node/hooks/features/editing/useGridRowEditing.js +7 -2
- package/node/hooks/features/editing/utils.js +22 -0
- package/node/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/node/hooks/features/export/useGridPrintExport.js +2 -1
- package/node/hooks/features/filter/gridFilterUtils.js +1 -1
- package/node/hooks/features/focus/useGridFocus.js +2 -1
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +16 -53
- package/node/hooks/features/keyboardNavigation/utils.js +68 -0
- package/node/hooks/features/rows/gridRowSpanningSelectors.js +11 -0
- package/node/hooks/features/rows/gridRowSpanningUtils.js +52 -0
- package/node/hooks/features/rows/useGridRowSpanning.js +267 -0
- package/node/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +17 -7
- package/node/hooks/utils/useGridApiEventHandler.js +0 -1
- package/node/hooks/utils/useGridSelector.js +1 -1
- package/node/index.js +1 -1
- package/node/internals/index.js +15 -0
- package/node/internals/utils/index.js +0 -11
- package/node/internals/utils/propValidation.js +1 -1
- package/node/locales/arSD.js +4 -0
- package/node/locales/beBY.js +4 -0
- package/node/locales/bgBG.js +4 -0
- package/node/locales/csCZ.js +4 -0
- package/node/locales/daDK.js +4 -0
- package/node/locales/deDE.js +4 -0
- package/node/locales/elGR.js +4 -0
- package/node/locales/esES.js +4 -0
- package/node/locales/faIR.js +4 -0
- package/node/locales/fiFI.js +4 -0
- package/node/locales/frFR.js +4 -0
- package/node/locales/heIL.js +4 -0
- package/node/locales/hrHR.js +4 -0
- package/node/locales/huHU.js +11 -8
- package/node/locales/isIS.js +4 -0
- package/node/locales/itIT.js +4 -0
- package/node/locales/jaJP.js +4 -0
- package/node/locales/koKR.js +4 -0
- package/node/locales/nbNO.js +4 -0
- package/node/locales/nlNL.js +4 -0
- package/node/locales/nnNO.js +4 -0
- package/node/locales/plPL.js +4 -0
- package/node/locales/ptBR.js +4 -0
- package/node/locales/ptPT.js +4 -0
- package/node/locales/roRO.js +4 -0
- package/node/locales/ruRU.js +4 -0
- package/node/locales/skSK.js +4 -0
- package/node/locales/svSE.js +4 -0
- package/node/locales/trTR.js +4 -0
- package/node/locales/ukUA.js +4 -0
- package/node/locales/urPK.js +4 -0
- package/node/locales/viVN.js +4 -0
- package/node/locales/zhCN.js +4 -0
- package/node/locales/zhHK.js +4 -0
- package/node/locales/zhTW.js +4 -0
- package/node/utils/createSelector.js +1 -1
- package/node/utils/domUtils.js +12 -12
- package/package.json +3 -3
- package/utils/createSelector.js +1 -1
- package/utils/domUtils.d.ts +4 -4
- package/utils/domUtils.js +12 -12
- package/internals/utils/warning.d.ts +0 -2
- package/internals/utils/warning.js +0 -21
- package/modern/internals/utils/warning.js +0 -21
- package/node/internals/utils/warning.js +0 -28
package/node/locales/frFR.js
CHANGED
|
@@ -53,7 +53,9 @@ const frFRGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'Filtrer la valeur',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'contient',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'est égal à',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'commence par',
|
|
58
60
|
filterOperatorEndsWith: 'se termine par',
|
|
59
61
|
filterOperatorIs: 'est',
|
|
@@ -73,7 +75,9 @@ const frFRGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'Contient',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'Est égal à',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'Commence par',
|
|
78
82
|
headerFilterOperatorEndsWith: 'Se termine par',
|
|
79
83
|
headerFilterOperatorIs: 'Est',
|
package/node/locales/heIL.js
CHANGED
|
@@ -53,7 +53,9 @@ const heILGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'ערך מסנן',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'מכיל',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'שווה',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'מתחיל ב-',
|
|
58
60
|
filterOperatorEndsWith: 'נגמר ב-',
|
|
59
61
|
filterOperatorIs: 'הינו',
|
|
@@ -73,7 +75,9 @@ const heILGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'מכיל',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'שווה',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'מתחיל ב-',
|
|
78
82
|
headerFilterOperatorEndsWith: 'נגמר ב-',
|
|
79
83
|
headerFilterOperatorIs: 'הינו',
|
package/node/locales/hrHR.js
CHANGED
|
@@ -54,7 +54,9 @@ const hrHRGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: 'Vrijednost filtra',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: 'sadrži',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: 'jednaki',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: 'počinje sa',
|
|
59
61
|
filterOperatorEndsWith: 'završava sa',
|
|
60
62
|
filterOperatorIs: 'je',
|
|
@@ -74,7 +76,9 @@ const hrHRGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: 'Sadrži',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: 'Jednako',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: 'Počinje sa',
|
|
79
83
|
headerFilterOperatorEndsWith: 'Završava s',
|
|
80
84
|
headerFilterOperatorIs: 'Je',
|
package/node/locales/huHU.js
CHANGED
|
@@ -36,11 +36,10 @@ const huHUGrid = {
|
|
|
36
36
|
toolbarExportPrint: 'Nyomtatás',
|
|
37
37
|
toolbarExportExcel: 'Mentés Excel fájlként',
|
|
38
38
|
// Columns management text
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
columnsManagementSearchTitle: 'Keresés',
|
|
40
|
+
columnsManagementNoColumns: 'Nincsenek oszlopok',
|
|
41
|
+
columnsManagementShowHideAllText: 'Összes',
|
|
42
|
+
columnsManagementReset: 'Visszavon',
|
|
44
43
|
// Filter panel text
|
|
45
44
|
filterPanelAddFilter: 'Szűrő hozzáadása',
|
|
46
45
|
filterPanelRemoveAll: 'Összes törlése',
|
|
@@ -54,7 +53,9 @@ const huHUGrid = {
|
|
|
54
53
|
filterPanelInputPlaceholder: 'Érték szűrése',
|
|
55
54
|
// Filter operators text
|
|
56
55
|
filterOperatorContains: 'tartalmazza:',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
57
|
filterOperatorEquals: 'egyenlő ezzel:',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
59
|
filterOperatorStartsWith: 'ezzel kezdődik:',
|
|
59
60
|
filterOperatorEndsWith: 'ezzel végződik:',
|
|
60
61
|
filterOperatorIs: 'a következő:',
|
|
@@ -74,13 +75,15 @@ const huHUGrid = {
|
|
|
74
75
|
'filterOperator<=': '<=',
|
|
75
76
|
// Header filter operators text
|
|
76
77
|
headerFilterOperatorContains: 'Tartalmazza:',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
79
|
headerFilterOperatorEquals: 'Egyenlő ezzel:',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
81
|
headerFilterOperatorStartsWith: 'Ezzel kezdődik:',
|
|
79
82
|
headerFilterOperatorEndsWith: 'Ezzel végződik:',
|
|
80
83
|
// headerFilterOperatorIs: 'Is',
|
|
81
84
|
// headerFilterOperatorNot: 'Is not',
|
|
82
85
|
headerFilterOperatorAfter: 'Ezutáni:',
|
|
83
|
-
headerFilterOperatorOnOrAfter: '
|
|
86
|
+
headerFilterOperatorOnOrAfter: 'Ekkori vagy ezutáni:',
|
|
84
87
|
headerFilterOperatorBefore: 'Ezelőtti:',
|
|
85
88
|
headerFilterOperatorOnOrBefore: 'Ekkori vagy ezelőtti:',
|
|
86
89
|
headerFilterOperatorIsEmpty: 'Üres',
|
|
@@ -90,8 +93,8 @@ const huHUGrid = {
|
|
|
90
93
|
'headerFilterOperator!=': 'Nem egyenlő',
|
|
91
94
|
'headerFilterOperator>': 'Nagyobb mint',
|
|
92
95
|
'headerFilterOperator>=': 'Nagyobb vagy egyenlő',
|
|
93
|
-
'headerFilterOperator<': '
|
|
94
|
-
'headerFilterOperator<=': '
|
|
96
|
+
'headerFilterOperator<': 'Kisebb mint',
|
|
97
|
+
'headerFilterOperator<=': 'Kisebb vagy egyenlő',
|
|
95
98
|
// Filter values text
|
|
96
99
|
filterValueAny: 'bármilyen',
|
|
97
100
|
filterValueTrue: 'igaz',
|
package/node/locales/isIS.js
CHANGED
|
@@ -54,7 +54,9 @@ const isISGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: 'Síu gildi',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: 'inniheldur',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: 'jafnt og',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: 'byrjar með',
|
|
59
61
|
filterOperatorEndsWith: 'endar með',
|
|
60
62
|
filterOperatorIs: 'er líka með',
|
|
@@ -74,7 +76,9 @@ const isISGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: 'Inniheldur',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: 'Jafnt og',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: 'Byrjar með',
|
|
79
83
|
headerFilterOperatorEndsWith: 'Endar með',
|
|
80
84
|
headerFilterOperatorIs: 'Er jafnt og',
|
package/node/locales/itIT.js
CHANGED
|
@@ -54,7 +54,9 @@ const itITGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: 'Filtra il valore',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: 'contiene',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: 'uguale a',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: 'comincia per',
|
|
59
61
|
filterOperatorEndsWith: 'termina per',
|
|
60
62
|
filterOperatorIs: 'uguale a',
|
|
@@ -74,7 +76,9 @@ const itITGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: 'Contiene',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: 'uguale a',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: 'comincia per',
|
|
79
83
|
headerFilterOperatorEndsWith: 'termina per',
|
|
80
84
|
headerFilterOperatorIs: 'uguale a',
|
package/node/locales/jaJP.js
CHANGED
|
@@ -54,7 +54,9 @@ const jaJPGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: '値を入力…',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: '...を含む',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: '...に等しい',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: '...で始まる',
|
|
59
61
|
filterOperatorEndsWith: '...で終わる',
|
|
60
62
|
filterOperatorIs: '...である',
|
|
@@ -74,7 +76,9 @@ const jaJPGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: '含む',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: '等しい',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: 'で始まる',
|
|
79
83
|
headerFilterOperatorEndsWith: 'で終わる',
|
|
80
84
|
headerFilterOperatorIs: 'である',
|
package/node/locales/koKR.js
CHANGED
|
@@ -54,7 +54,9 @@ const koKRGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: '값 입력',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: '포함하는',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: '값이 같은',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: '시작하는',
|
|
59
61
|
filterOperatorEndsWith: '끝나는',
|
|
60
62
|
filterOperatorIs: '~인',
|
|
@@ -75,7 +77,9 @@ const koKRGrid = {
|
|
|
75
77
|
|
|
76
78
|
// Header filter operators text
|
|
77
79
|
// headerFilterOperatorContains: 'Contains',
|
|
80
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
78
81
|
// headerFilterOperatorEquals: 'Equals',
|
|
82
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
79
83
|
// headerFilterOperatorStartsWith: 'Starts with',
|
|
80
84
|
// headerFilterOperatorEndsWith: 'Ends with',
|
|
81
85
|
// headerFilterOperatorIs: 'Is',
|
package/node/locales/nbNO.js
CHANGED
|
@@ -53,7 +53,9 @@ const nbNOGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'Filter verdi',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'inneholder',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'er lik',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'starter med',
|
|
58
60
|
filterOperatorEndsWith: 'slutter med',
|
|
59
61
|
filterOperatorIs: 'er',
|
|
@@ -73,7 +75,9 @@ const nbNOGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'Inneholder',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'Lik',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'Starter på',
|
|
78
82
|
headerFilterOperatorEndsWith: 'Slutter på',
|
|
79
83
|
headerFilterOperatorIs: 'Er',
|
package/node/locales/nlNL.js
CHANGED
|
@@ -53,7 +53,9 @@ const nlNLGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'Filter waarde',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'bevat',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'gelijk aan',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'begint met',
|
|
58
60
|
filterOperatorEndsWith: 'eindigt met',
|
|
59
61
|
filterOperatorIs: 'is',
|
|
@@ -73,7 +75,9 @@ const nlNLGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'Bevat',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'Gelijk aan',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'Begint met',
|
|
78
82
|
headerFilterOperatorEndsWith: 'Eindigt met',
|
|
79
83
|
headerFilterOperatorIs: 'Is',
|
package/node/locales/nnNO.js
CHANGED
|
@@ -53,7 +53,9 @@ const nnNOGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'Filter verdi',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'inneheld',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'er lik',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'startar med',
|
|
58
60
|
filterOperatorEndsWith: 'sluttar med',
|
|
59
61
|
filterOperatorIs: 'er',
|
|
@@ -73,7 +75,9 @@ const nnNOGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'Inneheld',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'Lik',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'Startar på',
|
|
78
82
|
headerFilterOperatorEndsWith: 'Sluttar på',
|
|
79
83
|
headerFilterOperatorIs: 'Er',
|
package/node/locales/plPL.js
CHANGED
|
@@ -54,7 +54,9 @@ const plPLGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: 'Filtrowana wartość',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: 'zawiera',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: 'równa się',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: 'zaczyna się od',
|
|
59
61
|
filterOperatorEndsWith: 'kończy się na',
|
|
60
62
|
filterOperatorIs: 'równa się',
|
|
@@ -75,7 +77,9 @@ const plPLGrid = {
|
|
|
75
77
|
|
|
76
78
|
// Header filter operators text
|
|
77
79
|
headerFilterOperatorContains: 'Zawiera',
|
|
80
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
78
81
|
headerFilterOperatorEquals: 'Równa się',
|
|
82
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
79
83
|
headerFilterOperatorStartsWith: 'Zaczyna się od',
|
|
80
84
|
headerFilterOperatorEndsWith: 'Kończy się na',
|
|
81
85
|
// headerFilterOperatorIs: 'Is',
|
package/node/locales/ptBR.js
CHANGED
|
@@ -53,7 +53,9 @@ const ptBRGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'Filtrar valor',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'contém',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'é igual a',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'começa com',
|
|
58
60
|
filterOperatorEndsWith: 'termina com',
|
|
59
61
|
filterOperatorIs: 'é',
|
|
@@ -73,7 +75,9 @@ const ptBRGrid = {
|
|
|
73
75
|
'filterOperator<=': 'menor ou igual que',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'Contém',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'Igual',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'Começa com',
|
|
78
82
|
headerFilterOperatorEndsWith: 'Termina com',
|
|
79
83
|
headerFilterOperatorIs: 'É',
|
package/node/locales/ptPT.js
CHANGED
|
@@ -53,7 +53,9 @@ const ptPTGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'Valor do filtro',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'contém',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'é igual a',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'começa com',
|
|
58
60
|
filterOperatorEndsWith: 'termina com',
|
|
59
61
|
filterOperatorIs: 'é',
|
|
@@ -73,7 +75,9 @@ const ptPTGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'Contém',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'É igual a',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'Começa com',
|
|
78
82
|
headerFilterOperatorEndsWith: 'Termina com',
|
|
79
83
|
headerFilterOperatorIs: 'É',
|
package/node/locales/roRO.js
CHANGED
|
@@ -54,7 +54,9 @@ const roROGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: 'Filtrare valoare',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: 'conține',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: 'este egal cu',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: 'începe cu',
|
|
59
61
|
filterOperatorEndsWith: 'se termină cu',
|
|
60
62
|
filterOperatorIs: 'este',
|
|
@@ -74,7 +76,9 @@ const roROGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: 'Conține',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: 'Egal cu',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: 'Începe cu',
|
|
79
83
|
headerFilterOperatorEndsWith: 'Se termină cu',
|
|
80
84
|
headerFilterOperatorIs: 'Este',
|
package/node/locales/ruRU.js
CHANGED
|
@@ -68,7 +68,9 @@ const ruRUGrid = {
|
|
|
68
68
|
filterPanelInputPlaceholder: 'Значение фильтра',
|
|
69
69
|
// Filter operators text
|
|
70
70
|
filterOperatorContains: 'содержит',
|
|
71
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
71
72
|
filterOperatorEquals: 'равен',
|
|
73
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
72
74
|
filterOperatorStartsWith: 'начинается с',
|
|
73
75
|
filterOperatorEndsWith: 'заканчивается на',
|
|
74
76
|
filterOperatorIs: 'равен',
|
|
@@ -88,7 +90,9 @@ const ruRUGrid = {
|
|
|
88
90
|
'filterOperator<=': '<=',
|
|
89
91
|
// Header filter operators text
|
|
90
92
|
headerFilterOperatorContains: 'содержит',
|
|
93
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
91
94
|
headerFilterOperatorEquals: 'равен',
|
|
95
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
92
96
|
headerFilterOperatorStartsWith: 'начинается с',
|
|
93
97
|
headerFilterOperatorEndsWith: 'заканчивается на',
|
|
94
98
|
headerFilterOperatorIs: 'равен',
|
package/node/locales/skSK.js
CHANGED
|
@@ -62,7 +62,9 @@ const skSKGrid = {
|
|
|
62
62
|
filterPanelInputPlaceholder: 'Hodnota filtra',
|
|
63
63
|
// Filter operators text
|
|
64
64
|
filterOperatorContains: 'obsahuje',
|
|
65
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
65
66
|
filterOperatorEquals: 'rovná sa',
|
|
67
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
66
68
|
filterOperatorStartsWith: 'začína s',
|
|
67
69
|
filterOperatorEndsWith: 'končí na',
|
|
68
70
|
filterOperatorIs: 'je',
|
|
@@ -82,7 +84,9 @@ const skSKGrid = {
|
|
|
82
84
|
'filterOperator<=': '<=',
|
|
83
85
|
// Header filter operators text
|
|
84
86
|
headerFilterOperatorContains: 'Obsahuje',
|
|
87
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
85
88
|
headerFilterOperatorEquals: 'Rovná sa',
|
|
89
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
86
90
|
headerFilterOperatorStartsWith: 'Začína s',
|
|
87
91
|
headerFilterOperatorEndsWith: 'Končí na',
|
|
88
92
|
headerFilterOperatorIs: 'Je',
|
package/node/locales/svSE.js
CHANGED
|
@@ -54,7 +54,9 @@ const svSEGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: 'Filtervärde',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: 'innehåller',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: 'lika med',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: 'börjar med',
|
|
59
61
|
filterOperatorEndsWith: 'slutar med',
|
|
60
62
|
filterOperatorIs: 'är',
|
|
@@ -74,7 +76,9 @@ const svSEGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: 'Innehåller',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: 'Lika med',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: 'Börjar med',
|
|
79
83
|
headerFilterOperatorEndsWith: 'Slutar med',
|
|
80
84
|
headerFilterOperatorIs: 'Är',
|
package/node/locales/trTR.js
CHANGED
|
@@ -53,7 +53,9 @@ const trTRGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'Filtre değeri',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'içerir',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'eşittir',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'ile başlar',
|
|
58
60
|
filterOperatorEndsWith: 'ile biter',
|
|
59
61
|
filterOperatorIs: 'eşittir',
|
|
@@ -73,7 +75,9 @@ const trTRGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'Şunu içerir',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'Şuna eşittir',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'Şununla başlar',
|
|
78
82
|
headerFilterOperatorEndsWith: 'Şununla biter',
|
|
79
83
|
headerFilterOperatorIs: 'Eşittir',
|
package/node/locales/ukUA.js
CHANGED
|
@@ -69,7 +69,9 @@ const ukUAGrid = {
|
|
|
69
69
|
filterPanelInputPlaceholder: 'Значення фільтра',
|
|
70
70
|
// Filter operators text
|
|
71
71
|
filterOperatorContains: 'містить',
|
|
72
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
72
73
|
filterOperatorEquals: 'дорівнює',
|
|
74
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
73
75
|
filterOperatorStartsWith: 'починається з',
|
|
74
76
|
filterOperatorEndsWith: 'закінчується на',
|
|
75
77
|
filterOperatorIs: 'дорівнює',
|
|
@@ -89,7 +91,9 @@ const ukUAGrid = {
|
|
|
89
91
|
'filterOperator<=': '<=',
|
|
90
92
|
// Header filter operators text
|
|
91
93
|
headerFilterOperatorContains: 'Містить',
|
|
94
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
92
95
|
headerFilterOperatorEquals: 'Дорівнює',
|
|
96
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
93
97
|
headerFilterOperatorStartsWith: 'Починається з',
|
|
94
98
|
headerFilterOperatorEndsWith: 'Закінчується на',
|
|
95
99
|
headerFilterOperatorIs: 'Дорівнює',
|
package/node/locales/urPK.js
CHANGED
|
@@ -54,7 +54,9 @@ const urPKGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: 'ویلیو کو فلٹر کریں',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: 'شامل ہے',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: 'برابر ہے',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: 'شروع ہوتا ہے',
|
|
59
61
|
filterOperatorEndsWith: 'ختم ہوتا ہے',
|
|
60
62
|
filterOperatorIs: 'ہے',
|
|
@@ -74,7 +76,9 @@ const urPKGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: 'شامل ہے',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: 'برابر ہے',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: 'شروع ہوتا ہے',
|
|
79
83
|
headerFilterOperatorEndsWith: 'ختم ہوتا ہے',
|
|
80
84
|
headerFilterOperatorIs: 'ہے',
|
package/node/locales/viVN.js
CHANGED
|
@@ -53,7 +53,9 @@ const viVNGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: 'Lọc giá trị',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: 'Chứa',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: 'Bằng',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: 'Bắt đầu bằng',
|
|
58
60
|
filterOperatorEndsWith: 'Kết thúc bằng',
|
|
59
61
|
filterOperatorIs: 'Là',
|
|
@@ -73,7 +75,9 @@ const viVNGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: 'Chứa',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: 'Bằng',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: 'Bắt đầu với',
|
|
78
82
|
headerFilterOperatorEndsWith: 'Kết thúc với',
|
|
79
83
|
headerFilterOperatorIs: 'là',
|
package/node/locales/zhCN.js
CHANGED
|
@@ -53,7 +53,9 @@ const zhCNGrid = {
|
|
|
53
53
|
filterPanelInputPlaceholder: '筛选值',
|
|
54
54
|
// Filter operators text
|
|
55
55
|
filterOperatorContains: '包含',
|
|
56
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
56
57
|
filterOperatorEquals: '等于',
|
|
58
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
57
59
|
filterOperatorStartsWith: '开始于',
|
|
58
60
|
filterOperatorEndsWith: '结束于',
|
|
59
61
|
filterOperatorIs: '是',
|
|
@@ -73,7 +75,9 @@ const zhCNGrid = {
|
|
|
73
75
|
'filterOperator<=': '<=',
|
|
74
76
|
// Header filter operators text
|
|
75
77
|
headerFilterOperatorContains: '包含',
|
|
78
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
76
79
|
headerFilterOperatorEquals: '等于',
|
|
80
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
77
81
|
headerFilterOperatorStartsWith: '开始于',
|
|
78
82
|
headerFilterOperatorEndsWith: '结束于',
|
|
79
83
|
headerFilterOperatorIs: '是',
|
package/node/locales/zhHK.js
CHANGED
|
@@ -54,7 +54,9 @@ const zhHKGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: '過濾值',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: '包含',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: '等於',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: '以。。開始',
|
|
59
61
|
filterOperatorEndsWith: '以。。結束',
|
|
60
62
|
filterOperatorIs: '是',
|
|
@@ -74,7 +76,9 @@ const zhHKGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: '包含',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: '等於',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: '以。。開始',
|
|
79
83
|
headerFilterOperatorEndsWith: '以。。結束',
|
|
80
84
|
headerFilterOperatorIs: '是',
|
package/node/locales/zhTW.js
CHANGED
|
@@ -54,7 +54,9 @@ const zhTWGrid = {
|
|
|
54
54
|
filterPanelInputPlaceholder: '篩選值',
|
|
55
55
|
// Filter operators text
|
|
56
56
|
filterOperatorContains: '包含',
|
|
57
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
57
58
|
filterOperatorEquals: '等於',
|
|
59
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
58
60
|
filterOperatorStartsWith: '以...開頭',
|
|
59
61
|
filterOperatorEndsWith: '以...結束',
|
|
60
62
|
filterOperatorIs: '為',
|
|
@@ -74,7 +76,9 @@ const zhTWGrid = {
|
|
|
74
76
|
'filterOperator<=': '<=',
|
|
75
77
|
// Header filter operators text
|
|
76
78
|
headerFilterOperatorContains: '包含',
|
|
79
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
77
80
|
headerFilterOperatorEquals: '等於',
|
|
81
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
78
82
|
headerFilterOperatorStartsWith: '以...開頭',
|
|
79
83
|
headerFilterOperatorEndsWith: '以...結束',
|
|
80
84
|
headerFilterOperatorIs: '為',
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.createSelectorV8 = exports.createSelectorMemoizedV8 = exports.createSelectorMemoized = exports.createSelector = void 0;
|
|
7
7
|
var _reselect = require("reselect");
|
|
8
|
-
var _warning = require("
|
|
8
|
+
var _warning = require("@mui/x-internals/warning");
|
|
9
9
|
const reselectCreateSelector = (0, _reselect.createSelectorCreator)({
|
|
10
10
|
memoize: _reselect.lruMemoize,
|
|
11
11
|
memoizeOptions: {
|
package/node/utils/domUtils.js
CHANGED
|
@@ -146,22 +146,22 @@ const findPinnedCells = ({
|
|
|
146
146
|
});
|
|
147
147
|
return cells;
|
|
148
148
|
};
|
|
149
|
-
function findLeftPinnedCellsAfterCol(api, col) {
|
|
149
|
+
function findLeftPinnedCellsAfterCol(api, col, isRtl) {
|
|
150
150
|
const colIndex = parseCellColIndex(col);
|
|
151
151
|
return findPinnedCells({
|
|
152
152
|
api,
|
|
153
153
|
colIndex,
|
|
154
|
-
position: 'left',
|
|
155
|
-
filterFn: index => index > colIndex
|
|
154
|
+
position: isRtl ? 'right' : 'left',
|
|
155
|
+
filterFn: index => isRtl ? index < colIndex : index > colIndex
|
|
156
156
|
});
|
|
157
157
|
}
|
|
158
|
-
function findRightPinnedCellsBeforeCol(api, col) {
|
|
158
|
+
function findRightPinnedCellsBeforeCol(api, col, isRtl) {
|
|
159
159
|
const colIndex = parseCellColIndex(col);
|
|
160
160
|
return findPinnedCells({
|
|
161
161
|
api,
|
|
162
162
|
colIndex,
|
|
163
|
-
position: 'right',
|
|
164
|
-
filterFn: index => index < colIndex
|
|
163
|
+
position: isRtl ? 'left' : 'right',
|
|
164
|
+
filterFn: index => isRtl ? index > colIndex : index < colIndex
|
|
165
165
|
});
|
|
166
166
|
}
|
|
167
167
|
const findPinnedHeaders = ({
|
|
@@ -185,22 +185,22 @@ const findPinnedHeaders = ({
|
|
|
185
185
|
});
|
|
186
186
|
return elements;
|
|
187
187
|
};
|
|
188
|
-
function findLeftPinnedHeadersAfterCol(api, col) {
|
|
188
|
+
function findLeftPinnedHeadersAfterCol(api, col, isRtl) {
|
|
189
189
|
const colIndex = parseCellColIndex(col);
|
|
190
190
|
return findPinnedHeaders({
|
|
191
191
|
api,
|
|
192
|
-
position: 'left',
|
|
192
|
+
position: isRtl ? 'right' : 'left',
|
|
193
193
|
colIndex,
|
|
194
|
-
filterFn: index => index > colIndex
|
|
194
|
+
filterFn: index => isRtl ? index < colIndex : index > colIndex
|
|
195
195
|
});
|
|
196
196
|
}
|
|
197
|
-
function findRightPinnedHeadersBeforeCol(api, col) {
|
|
197
|
+
function findRightPinnedHeadersBeforeCol(api, col, isRtl) {
|
|
198
198
|
const colIndex = parseCellColIndex(col);
|
|
199
199
|
return findPinnedHeaders({
|
|
200
200
|
api,
|
|
201
|
-
position: 'right',
|
|
201
|
+
position: isRtl ? 'left' : 'right',
|
|
202
202
|
colIndex,
|
|
203
|
-
filterFn: index => index < colIndex
|
|
203
|
+
filterFn: index => isRtl ? index > colIndex : index < colIndex
|
|
204
204
|
});
|
|
205
205
|
}
|
|
206
206
|
function findGridHeader(api, field) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.18.0",
|
|
4
4
|
"description": "The Community plan edition of the Data Grid components (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
],
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
36
|
-
"url": "https://github.com/mui/mui-x.git",
|
|
36
|
+
"url": "git+https://github.com/mui/mui-x.git",
|
|
37
37
|
"directory": "packages/x-data-grid"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"clsx": "^2.1.1",
|
|
43
43
|
"prop-types": "^15.8.1",
|
|
44
44
|
"reselect": "^5.1.1",
|
|
45
|
-
"@mui/x-internals": "7.
|
|
45
|
+
"@mui/x-internals": "7.18.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@emotion/react": "^11.9.0",
|