@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/locales/heIL.js
CHANGED
|
@@ -47,7 +47,9 @@ const heILGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'ערך מסנן',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'מכיל',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'שווה',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'מתחיל ב-',
|
|
52
54
|
filterOperatorEndsWith: 'נגמר ב-',
|
|
53
55
|
filterOperatorIs: 'הינו',
|
|
@@ -67,7 +69,9 @@ const heILGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'מכיל',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'שווה',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'מתחיל ב-',
|
|
72
76
|
headerFilterOperatorEndsWith: 'נגמר ב-',
|
|
73
77
|
headerFilterOperatorIs: 'הינו',
|
package/locales/hrHR.js
CHANGED
|
@@ -48,7 +48,9 @@ const hrHRGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Vrijednost filtra',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'sadrži',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'jednaki',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'počinje sa',
|
|
53
55
|
filterOperatorEndsWith: 'završava sa',
|
|
54
56
|
filterOperatorIs: 'je',
|
|
@@ -68,7 +70,9 @@ const hrHRGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Sadrži',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Jednako',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Počinje sa',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Završava s',
|
|
74
78
|
headerFilterOperatorIs: 'Je',
|
package/locales/huHU.js
CHANGED
|
@@ -30,11 +30,10 @@ const huHUGrid = {
|
|
|
30
30
|
toolbarExportPrint: 'Nyomtatás',
|
|
31
31
|
toolbarExportExcel: 'Mentés Excel fájlként',
|
|
32
32
|
// Columns management text
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
columnsManagementSearchTitle: 'Keresés',
|
|
34
|
+
columnsManagementNoColumns: 'Nincsenek oszlopok',
|
|
35
|
+
columnsManagementShowHideAllText: 'Összes',
|
|
36
|
+
columnsManagementReset: 'Visszavon',
|
|
38
37
|
// Filter panel text
|
|
39
38
|
filterPanelAddFilter: 'Szűrő hozzáadása',
|
|
40
39
|
filterPanelRemoveAll: 'Összes törlése',
|
|
@@ -48,7 +47,9 @@ const huHUGrid = {
|
|
|
48
47
|
filterPanelInputPlaceholder: 'Érték szűrése',
|
|
49
48
|
// Filter operators text
|
|
50
49
|
filterOperatorContains: 'tartalmazza:',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
51
|
filterOperatorEquals: 'egyenlő ezzel:',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
53
|
filterOperatorStartsWith: 'ezzel kezdődik:',
|
|
53
54
|
filterOperatorEndsWith: 'ezzel végződik:',
|
|
54
55
|
filterOperatorIs: 'a következő:',
|
|
@@ -68,13 +69,15 @@ const huHUGrid = {
|
|
|
68
69
|
'filterOperator<=': '<=',
|
|
69
70
|
// Header filter operators text
|
|
70
71
|
headerFilterOperatorContains: 'Tartalmazza:',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
73
|
headerFilterOperatorEquals: 'Egyenlő ezzel:',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
75
|
headerFilterOperatorStartsWith: 'Ezzel kezdődik:',
|
|
73
76
|
headerFilterOperatorEndsWith: 'Ezzel végződik:',
|
|
74
77
|
// headerFilterOperatorIs: 'Is',
|
|
75
78
|
// headerFilterOperatorNot: 'Is not',
|
|
76
79
|
headerFilterOperatorAfter: 'Ezutáni:',
|
|
77
|
-
headerFilterOperatorOnOrAfter: '
|
|
80
|
+
headerFilterOperatorOnOrAfter: 'Ekkori vagy ezutáni:',
|
|
78
81
|
headerFilterOperatorBefore: 'Ezelőtti:',
|
|
79
82
|
headerFilterOperatorOnOrBefore: 'Ekkori vagy ezelőtti:',
|
|
80
83
|
headerFilterOperatorIsEmpty: 'Üres',
|
|
@@ -84,8 +87,8 @@ const huHUGrid = {
|
|
|
84
87
|
'headerFilterOperator!=': 'Nem egyenlő',
|
|
85
88
|
'headerFilterOperator>': 'Nagyobb mint',
|
|
86
89
|
'headerFilterOperator>=': 'Nagyobb vagy egyenlő',
|
|
87
|
-
'headerFilterOperator<': '
|
|
88
|
-
'headerFilterOperator<=': '
|
|
90
|
+
'headerFilterOperator<': 'Kisebb mint',
|
|
91
|
+
'headerFilterOperator<=': 'Kisebb vagy egyenlő',
|
|
89
92
|
// Filter values text
|
|
90
93
|
filterValueAny: 'bármilyen',
|
|
91
94
|
filterValueTrue: 'igaz',
|
package/locales/isIS.js
CHANGED
|
@@ -48,7 +48,9 @@ const isISGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Síu gildi',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'inniheldur',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'jafnt og',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'byrjar með',
|
|
53
55
|
filterOperatorEndsWith: 'endar með',
|
|
54
56
|
filterOperatorIs: 'er líka með',
|
|
@@ -68,7 +70,9 @@ const isISGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Inniheldur',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Jafnt og',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Byrjar með',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Endar með',
|
|
74
78
|
headerFilterOperatorIs: 'Er jafnt og',
|
package/locales/itIT.js
CHANGED
|
@@ -48,7 +48,9 @@ const itITGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filtra il valore',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'contiene',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'uguale a',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'comincia per',
|
|
53
55
|
filterOperatorEndsWith: 'termina per',
|
|
54
56
|
filterOperatorIs: 'uguale a',
|
|
@@ -68,7 +70,9 @@ const itITGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Contiene',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'uguale a',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'comincia per',
|
|
73
77
|
headerFilterOperatorEndsWith: 'termina per',
|
|
74
78
|
headerFilterOperatorIs: 'uguale a',
|
package/locales/jaJP.js
CHANGED
|
@@ -48,7 +48,9 @@ const jaJPGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: '値を入力…',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: '...を含む',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: '...に等しい',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: '...で始まる',
|
|
53
55
|
filterOperatorEndsWith: '...で終わる',
|
|
54
56
|
filterOperatorIs: '...である',
|
|
@@ -68,7 +70,9 @@ const jaJPGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: '含む',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: '等しい',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'で始まる',
|
|
73
77
|
headerFilterOperatorEndsWith: 'で終わる',
|
|
74
78
|
headerFilterOperatorIs: 'である',
|
package/locales/koKR.js
CHANGED
|
@@ -48,7 +48,9 @@ const koKRGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: '값 입력',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: '포함하는',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: '값이 같은',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: '시작하는',
|
|
53
55
|
filterOperatorEndsWith: '끝나는',
|
|
54
56
|
filterOperatorIs: '~인',
|
|
@@ -69,7 +71,9 @@ const koKRGrid = {
|
|
|
69
71
|
|
|
70
72
|
// Header filter operators text
|
|
71
73
|
// headerFilterOperatorContains: 'Contains',
|
|
74
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
72
75
|
// headerFilterOperatorEquals: 'Equals',
|
|
76
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
73
77
|
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
78
|
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
79
|
// headerFilterOperatorIs: 'Is',
|
package/locales/nbNO.js
CHANGED
|
@@ -47,7 +47,9 @@ const nbNOGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filter verdi',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'inneholder',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'er lik',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'starter med',
|
|
52
54
|
filterOperatorEndsWith: 'slutter med',
|
|
53
55
|
filterOperatorIs: 'er',
|
|
@@ -67,7 +69,9 @@ const nbNOGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Inneholder',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Lik',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Starter på',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Slutter på',
|
|
73
77
|
headerFilterOperatorIs: 'Er',
|
package/locales/nlNL.js
CHANGED
|
@@ -47,7 +47,9 @@ const nlNLGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filter waarde',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'bevat',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'gelijk aan',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'begint met',
|
|
52
54
|
filterOperatorEndsWith: 'eindigt met',
|
|
53
55
|
filterOperatorIs: 'is',
|
|
@@ -67,7 +69,9 @@ const nlNLGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Bevat',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Gelijk aan',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Begint met',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Eindigt met',
|
|
73
77
|
headerFilterOperatorIs: 'Is',
|
package/locales/nnNO.js
CHANGED
|
@@ -47,7 +47,9 @@ const nnNOGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filter verdi',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'inneheld',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'er lik',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'startar med',
|
|
52
54
|
filterOperatorEndsWith: 'sluttar med',
|
|
53
55
|
filterOperatorIs: 'er',
|
|
@@ -67,7 +69,9 @@ const nnNOGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Inneheld',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Lik',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Startar på',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Sluttar på',
|
|
73
77
|
headerFilterOperatorIs: 'Er',
|
package/locales/plPL.js
CHANGED
|
@@ -48,7 +48,9 @@ const plPLGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filtrowana wartość',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'zawiera',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'równa się',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'zaczyna się od',
|
|
53
55
|
filterOperatorEndsWith: 'kończy się na',
|
|
54
56
|
filterOperatorIs: 'równa się',
|
|
@@ -69,7 +71,9 @@ const plPLGrid = {
|
|
|
69
71
|
|
|
70
72
|
// Header filter operators text
|
|
71
73
|
headerFilterOperatorContains: 'Zawiera',
|
|
74
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
72
75
|
headerFilterOperatorEquals: 'Równa się',
|
|
76
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
73
77
|
headerFilterOperatorStartsWith: 'Zaczyna się od',
|
|
74
78
|
headerFilterOperatorEndsWith: 'Kończy się na',
|
|
75
79
|
// headerFilterOperatorIs: 'Is',
|
package/locales/ptBR.js
CHANGED
|
@@ -47,7 +47,9 @@ const ptBRGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filtrar valor',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'contém',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'é igual a',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'começa com',
|
|
52
54
|
filterOperatorEndsWith: 'termina com',
|
|
53
55
|
filterOperatorIs: 'é',
|
|
@@ -67,7 +69,9 @@ const ptBRGrid = {
|
|
|
67
69
|
'filterOperator<=': 'menor ou igual que',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Contém',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Igual',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Começa com',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Termina com',
|
|
73
77
|
headerFilterOperatorIs: 'É',
|
package/locales/ptPT.js
CHANGED
|
@@ -47,7 +47,9 @@ const ptPTGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Valor do filtro',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'contém',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'é igual a',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'começa com',
|
|
52
54
|
filterOperatorEndsWith: 'termina com',
|
|
53
55
|
filterOperatorIs: 'é',
|
|
@@ -67,7 +69,9 @@ const ptPTGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Contém',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'É igual a',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Começa com',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Termina com',
|
|
73
77
|
headerFilterOperatorIs: 'É',
|
package/locales/roRO.js
CHANGED
|
@@ -48,7 +48,9 @@ const roROGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filtrare valoare',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'conține',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'este egal cu',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'începe cu',
|
|
53
55
|
filterOperatorEndsWith: 'se termină cu',
|
|
54
56
|
filterOperatorIs: 'este',
|
|
@@ -68,7 +70,9 @@ const roROGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Conține',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Egal cu',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Începe cu',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Se termină cu',
|
|
74
78
|
headerFilterOperatorIs: 'Este',
|
package/locales/ruRU.js
CHANGED
|
@@ -62,7 +62,9 @@ const ruRUGrid = {
|
|
|
62
62
|
filterPanelInputPlaceholder: 'Значение фильтра',
|
|
63
63
|
// Filter operators text
|
|
64
64
|
filterOperatorContains: 'содержит',
|
|
65
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
65
66
|
filterOperatorEquals: 'равен',
|
|
67
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
66
68
|
filterOperatorStartsWith: 'начинается с',
|
|
67
69
|
filterOperatorEndsWith: 'заканчивается на',
|
|
68
70
|
filterOperatorIs: 'равен',
|
|
@@ -82,7 +84,9 @@ const ruRUGrid = {
|
|
|
82
84
|
'filterOperator<=': '<=',
|
|
83
85
|
// Header filter operators text
|
|
84
86
|
headerFilterOperatorContains: 'содержит',
|
|
87
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
85
88
|
headerFilterOperatorEquals: 'равен',
|
|
89
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
86
90
|
headerFilterOperatorStartsWith: 'начинается с',
|
|
87
91
|
headerFilterOperatorEndsWith: 'заканчивается на',
|
|
88
92
|
headerFilterOperatorIs: 'равен',
|
package/locales/skSK.js
CHANGED
|
@@ -56,7 +56,9 @@ const skSKGrid = {
|
|
|
56
56
|
filterPanelInputPlaceholder: 'Hodnota filtra',
|
|
57
57
|
// Filter operators text
|
|
58
58
|
filterOperatorContains: 'obsahuje',
|
|
59
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
59
60
|
filterOperatorEquals: 'rovná sa',
|
|
61
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
60
62
|
filterOperatorStartsWith: 'začína s',
|
|
61
63
|
filterOperatorEndsWith: 'končí na',
|
|
62
64
|
filterOperatorIs: 'je',
|
|
@@ -76,7 +78,9 @@ const skSKGrid = {
|
|
|
76
78
|
'filterOperator<=': '<=',
|
|
77
79
|
// Header filter operators text
|
|
78
80
|
headerFilterOperatorContains: 'Obsahuje',
|
|
81
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
79
82
|
headerFilterOperatorEquals: 'Rovná sa',
|
|
83
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
80
84
|
headerFilterOperatorStartsWith: 'Začína s',
|
|
81
85
|
headerFilterOperatorEndsWith: 'Končí na',
|
|
82
86
|
headerFilterOperatorIs: 'Je',
|
package/locales/svSE.js
CHANGED
|
@@ -48,7 +48,9 @@ const svSEGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filtervärde',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'innehåller',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'lika med',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'börjar med',
|
|
53
55
|
filterOperatorEndsWith: 'slutar med',
|
|
54
56
|
filterOperatorIs: 'är',
|
|
@@ -68,7 +70,9 @@ const svSEGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Innehåller',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Lika med',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Börjar med',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Slutar med',
|
|
74
78
|
headerFilterOperatorIs: 'Är',
|
package/locales/trTR.js
CHANGED
|
@@ -47,7 +47,9 @@ const trTRGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filtre değeri',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'içerir',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'eşittir',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'ile başlar',
|
|
52
54
|
filterOperatorEndsWith: 'ile biter',
|
|
53
55
|
filterOperatorIs: 'eşittir',
|
|
@@ -67,7 +69,9 @@ const trTRGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Şunu içerir',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Şuna eşittir',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Şununla başlar',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Şununla biter',
|
|
73
77
|
headerFilterOperatorIs: 'Eşittir',
|
package/locales/ukUA.js
CHANGED
|
@@ -63,7 +63,9 @@ const ukUAGrid = {
|
|
|
63
63
|
filterPanelInputPlaceholder: 'Значення фільтра',
|
|
64
64
|
// Filter operators text
|
|
65
65
|
filterOperatorContains: 'містить',
|
|
66
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
66
67
|
filterOperatorEquals: 'дорівнює',
|
|
68
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
67
69
|
filterOperatorStartsWith: 'починається з',
|
|
68
70
|
filterOperatorEndsWith: 'закінчується на',
|
|
69
71
|
filterOperatorIs: 'дорівнює',
|
|
@@ -83,7 +85,9 @@ const ukUAGrid = {
|
|
|
83
85
|
'filterOperator<=': '<=',
|
|
84
86
|
// Header filter operators text
|
|
85
87
|
headerFilterOperatorContains: 'Містить',
|
|
88
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
86
89
|
headerFilterOperatorEquals: 'Дорівнює',
|
|
90
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
87
91
|
headerFilterOperatorStartsWith: 'Починається з',
|
|
88
92
|
headerFilterOperatorEndsWith: 'Закінчується на',
|
|
89
93
|
headerFilterOperatorIs: 'Дорівнює',
|
package/locales/urPK.js
CHANGED
|
@@ -48,7 +48,9 @@ const urPKGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'ویلیو کو فلٹر کریں',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'شامل ہے',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'برابر ہے',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'شروع ہوتا ہے',
|
|
53
55
|
filterOperatorEndsWith: 'ختم ہوتا ہے',
|
|
54
56
|
filterOperatorIs: 'ہے',
|
|
@@ -68,7 +70,9 @@ const urPKGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'شامل ہے',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'برابر ہے',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'شروع ہوتا ہے',
|
|
73
77
|
headerFilterOperatorEndsWith: 'ختم ہوتا ہے',
|
|
74
78
|
headerFilterOperatorIs: 'ہے',
|
package/locales/viVN.js
CHANGED
|
@@ -47,7 +47,9 @@ const viVNGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Lọc giá trị',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'Chứa',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'Bằng',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'Bắt đầu bằng',
|
|
52
54
|
filterOperatorEndsWith: 'Kết thúc bằng',
|
|
53
55
|
filterOperatorIs: 'Là',
|
|
@@ -67,7 +69,9 @@ const viVNGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Chứa',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Bằng',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Bắt đầu với',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Kết thúc với',
|
|
73
77
|
headerFilterOperatorIs: 'là',
|
package/locales/zhCN.js
CHANGED
|
@@ -47,7 +47,9 @@ const zhCNGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: '筛选值',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: '包含',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: '等于',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: '开始于',
|
|
52
54
|
filterOperatorEndsWith: '结束于',
|
|
53
55
|
filterOperatorIs: '是',
|
|
@@ -67,7 +69,9 @@ const zhCNGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: '包含',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: '等于',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: '开始于',
|
|
72
76
|
headerFilterOperatorEndsWith: '结束于',
|
|
73
77
|
headerFilterOperatorIs: '是',
|
package/locales/zhHK.js
CHANGED
|
@@ -48,7 +48,9 @@ const zhHKGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: '過濾值',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: '包含',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: '等於',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: '以。。開始',
|
|
53
55
|
filterOperatorEndsWith: '以。。結束',
|
|
54
56
|
filterOperatorIs: '是',
|
|
@@ -68,7 +70,9 @@ const zhHKGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: '包含',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: '等於',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: '以。。開始',
|
|
73
77
|
headerFilterOperatorEndsWith: '以。。結束',
|
|
74
78
|
headerFilterOperatorIs: '是',
|
package/locales/zhTW.js
CHANGED
|
@@ -48,7 +48,9 @@ const zhTWGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: '篩選值',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: '包含',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: '等於',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: '以...開頭',
|
|
53
55
|
filterOperatorEndsWith: '以...結束',
|
|
54
56
|
filterOperatorIs: '為',
|
|
@@ -68,7 +70,9 @@ const zhTWGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: '包含',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: '等於',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: '以...開頭',
|
|
73
77
|
headerFilterOperatorEndsWith: '以...結束',
|
|
74
78
|
headerFilterOperatorIs: '為',
|
|
@@ -46,7 +46,9 @@ export interface GridLocaleText {
|
|
|
46
46
|
filterPanelInputLabel: string;
|
|
47
47
|
filterPanelInputPlaceholder: string;
|
|
48
48
|
filterOperatorContains: string;
|
|
49
|
+
filterOperatorDoesNotContain: string;
|
|
49
50
|
filterOperatorEquals: string;
|
|
51
|
+
filterOperatorDoesNotEqual: string;
|
|
50
52
|
filterOperatorStartsWith: string;
|
|
51
53
|
filterOperatorEndsWith: string;
|
|
52
54
|
filterOperatorIs: string;
|
|
@@ -65,7 +67,9 @@ export interface GridLocaleText {
|
|
|
65
67
|
'filterOperator<': string;
|
|
66
68
|
'filterOperator<=': string;
|
|
67
69
|
headerFilterOperatorContains: string;
|
|
70
|
+
headerFilterOperatorDoesNotContain: string;
|
|
68
71
|
headerFilterOperatorEquals: string;
|
|
72
|
+
headerFilterOperatorDoesNotEqual: string;
|
|
69
73
|
headerFilterOperatorStartsWith: string;
|
|
70
74
|
headerFilterOperatorEndsWith: string;
|
|
71
75
|
headerFilterOperatorIs: string;
|
|
@@ -129,6 +129,10 @@ export interface GridBaseColDef<R extends GridValidRowModel = GridValidRowModel,
|
|
|
129
129
|
* Function that allows to get a specific data instead of field to render in the cell.
|
|
130
130
|
*/
|
|
131
131
|
valueGetter?: GridValueGetter<R, V, F>;
|
|
132
|
+
/**
|
|
133
|
+
* Function that allows to provide a specific value to be used in row spanning.
|
|
134
|
+
*/
|
|
135
|
+
rowSpanValueGetter?: GridValueGetter<R, V, F>;
|
|
132
136
|
/**
|
|
133
137
|
* Function that allows to customize how the entered value is stored in the row.
|
|
134
138
|
* It only works with cell/row editing.
|
|
@@ -5,6 +5,7 @@ import { GridHeaderFilteringState } from './gridHeaderFilteringModel';
|
|
|
5
5
|
import type { GridRowSelectionModel } from './gridRowSelectionModel';
|
|
6
6
|
import type { GridVisibleRowsLookupState } from '../hooks/features/filter/gridFilterState';
|
|
7
7
|
import type { GridColumnResizeState } from '../hooks/features/columnResize';
|
|
8
|
+
import type { GridRowSpanningState } from '../hooks/features/rows/useGridRowSpanning';
|
|
8
9
|
/**
|
|
9
10
|
* The state of `DataGrid`.
|
|
10
11
|
*/
|
|
@@ -30,6 +31,7 @@ export interface GridStateCommunity {
|
|
|
30
31
|
density: GridDensityState;
|
|
31
32
|
virtualization: GridVirtualizationState;
|
|
32
33
|
columnResize: GridColumnResizeState;
|
|
34
|
+
rowSpanning: GridRowSpanningState;
|
|
33
35
|
}
|
|
34
36
|
/**
|
|
35
37
|
* The initial state of `DataGrid`.
|
|
@@ -357,6 +357,11 @@ export interface DataGridPropsWithDefaultValues<R extends GridValidRowModel = an
|
|
|
357
357
|
* @default false
|
|
358
358
|
*/
|
|
359
359
|
disableAutosize: boolean;
|
|
360
|
+
/**
|
|
361
|
+
* If `true`, the Data Grid will auto span the cells over the rows having the same value.
|
|
362
|
+
* @default false
|
|
363
|
+
*/
|
|
364
|
+
unstable_rowSpanning: boolean;
|
|
360
365
|
}
|
|
361
366
|
/**
|
|
362
367
|
* The `DataGrid` props with no default value.
|
|
@@ -748,6 +753,11 @@ export interface DataGridPropsWithoutDefaultValue<R extends GridValidRowModel =
|
|
|
748
753
|
*/
|
|
749
754
|
onProcessRowUpdateError?: (error: any) => void;
|
|
750
755
|
columnGroupingModel?: GridColumnGroupingModel;
|
|
756
|
+
/**
|
|
757
|
+
* Sets the height in pixels of the column group headers in the Data Grid.
|
|
758
|
+
* Inherits the `columnHeaderHeight` value if not set.
|
|
759
|
+
*/
|
|
760
|
+
columnGroupHeaderHeight?: number;
|
|
751
761
|
/**
|
|
752
762
|
* Callback called when the data is copied to the clipboard.
|
|
753
763
|
* @param {string} data The data copied to the clipboard.
|
|
@@ -118,6 +118,11 @@ DataGridRaw.propTypes = {
|
|
|
118
118
|
* @default 150
|
|
119
119
|
*/
|
|
120
120
|
columnBufferPx: PropTypes.number,
|
|
121
|
+
/**
|
|
122
|
+
* Sets the height in pixels of the column group headers in the Data Grid.
|
|
123
|
+
* Inherits the `columnHeaderHeight` value if not set.
|
|
124
|
+
*/
|
|
125
|
+
columnGroupHeaderHeight: PropTypes.number,
|
|
121
126
|
columnGroupingModel: PropTypes.arrayOf(PropTypes.object),
|
|
122
127
|
/**
|
|
123
128
|
* Sets the height in pixel of the column headers in the Data Grid.
|
|
@@ -743,5 +748,10 @@ DataGridRaw.propTypes = {
|
|
|
743
748
|
/**
|
|
744
749
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
745
750
|
*/
|
|
746
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
751
|
+
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
752
|
+
/**
|
|
753
|
+
* If `true`, the Data Grid will auto span the cells over the rows having the same value.
|
|
754
|
+
* @default false
|
|
755
|
+
*/
|
|
756
|
+
unstable_rowSpanning: PropTypes.bool
|
|
747
757
|
};
|