@mui/x-data-grid 6.3.1 → 6.5.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 +113 -0
- package/DataGrid/DataGrid.js +20 -1
- package/DataGrid/useDataGridComponent.js +2 -2
- package/DataGrid/useDataGridProps.js +8 -13
- package/colDef/gridBooleanColDef.js +19 -1
- package/colDef/gridDateColDef.js +6 -2
- package/colDef/gridNumericOperators.js +0 -6
- package/colDef/gridSingleSelectColDef.js +21 -1
- package/components/base/GridBody.js +2 -1
- package/components/cell/GridEditInputCell.js +4 -1
- package/components/containers/GridRootStyles.js +1 -0
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +15 -2
- package/components/panel/filterPanel/GridFilterInputBoolean.js +80 -36
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +8 -1
- package/components/panel/filterPanel/GridFilterInputDate.js +27 -6
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +1 -2
- package/components/panel/filterPanel/GridFilterInputMultipleValue.js +1 -2
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +8 -1
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +55 -32
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +11 -4
- package/components/panel/filterPanel/GridFilterInputValue.js +29 -6
- package/components/panel/filterPanel/GridFilterPanel.d.ts +2 -1
- package/components/panel/filterPanel/GridFilterPanel.js +1 -1
- package/components/panel/filterPanel/index.d.ts +3 -1
- package/components/panel/filterPanel/index.js +2 -1
- package/constants/localeTextConstants.js +26 -0
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +12 -1
- package/hooks/features/clipboard/useGridClipboard.d.ts +2 -1
- package/hooks/features/clipboard/useGridClipboard.js +43 -26
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +9 -2
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +4 -2
- package/hooks/features/dimensions/useGridDimensions.js +4 -6
- package/hooks/features/editing/useGridCellEditing.js +7 -3
- package/hooks/features/editing/useGridEditing.js +0 -3
- package/hooks/features/editing/useGridRowEditing.js +7 -3
- package/hooks/features/export/serializers/csvSerializer.d.ts +5 -0
- package/hooks/features/export/serializers/csvSerializer.js +46 -6
- package/hooks/features/export/useGridCsvExport.d.ts +2 -1
- package/hooks/features/export/useGridCsvExport.js +7 -5
- package/hooks/features/focus/gridFocusState.d.ts +2 -0
- package/hooks/features/focus/gridFocusStateSelector.d.ts +2 -0
- package/hooks/features/focus/gridFocusStateSelector.js +6 -0
- package/hooks/features/focus/useGridFocus.js +55 -9
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +4 -0
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +5 -0
- package/hooks/features/headerFiltering/index.d.ts +1 -0
- package/hooks/features/headerFiltering/index.js +1 -0
- package/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +6 -0
- package/hooks/features/headerFiltering/useGridHeaderFiltering.js +91 -0
- package/hooks/features/index.d.ts +1 -0
- package/hooks/features/index.js +2 -1
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +1 -1
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +124 -4
- package/hooks/features/rows/useGridRows.js +16 -1
- package/index.js +1 -1
- package/internals/index.d.ts +9 -3
- package/internals/index.js +7 -2
- package/internals/utils/index.d.ts +1 -0
- package/internals/utils/index.js +2 -1
- package/internals/utils/useProps.d.ts +8 -0
- package/internals/utils/useProps.js +13 -0
- package/joy/icons.d.ts +33 -0
- package/joy/icons.js +433 -0
- package/joy/joySlots.js +114 -4
- package/legacy/DataGrid/DataGrid.js +20 -1
- package/legacy/DataGrid/useDataGridComponent.js +2 -2
- package/legacy/DataGrid/useDataGridProps.js +11 -9
- package/legacy/colDef/gridBooleanColDef.js +21 -1
- package/legacy/colDef/gridDateColDef.js +10 -2
- package/legacy/colDef/gridNumericOperators.js +0 -6
- package/legacy/colDef/gridSingleSelectColDef.js +21 -1
- package/legacy/components/base/GridBody.js +2 -1
- package/legacy/components/cell/GridEditInputCell.js +4 -1
- package/legacy/components/containers/GridRootStyles.js +1 -0
- package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +79 -35
- package/legacy/components/panel/filterPanel/GridFilterInputDate.js +26 -5
- package/legacy/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +1 -2
- package/legacy/components/panel/filterPanel/GridFilterInputMultipleValue.js +1 -2
- package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +54 -31
- package/legacy/components/panel/filterPanel/GridFilterInputValue.js +28 -5
- package/legacy/components/panel/filterPanel/GridFilterPanel.js +1 -1
- package/legacy/components/panel/filterPanel/index.js +2 -1
- package/legacy/constants/localeTextConstants.js +26 -0
- package/legacy/hooks/features/clipboard/useGridClipboard.js +44 -26
- package/legacy/hooks/features/columnHeaders/useGridColumnHeaders.js +5 -5
- package/legacy/hooks/features/dimensions/useGridDimensions.js +4 -6
- package/legacy/hooks/features/editing/useGridCellEditing.js +7 -3
- package/legacy/hooks/features/editing/useGridEditing.js +0 -3
- package/legacy/hooks/features/editing/useGridRowEditing.js +7 -3
- package/legacy/hooks/features/export/serializers/csvSerializer.js +43 -6
- package/legacy/hooks/features/export/useGridCsvExport.js +8 -5
- package/legacy/hooks/features/focus/gridFocusStateSelector.js +10 -0
- package/legacy/hooks/features/focus/useGridFocus.js +58 -9
- package/legacy/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +11 -0
- package/legacy/hooks/features/headerFiltering/index.js +1 -0
- package/legacy/hooks/features/headerFiltering/useGridHeaderFiltering.js +93 -0
- package/legacy/hooks/features/index.js +2 -1
- package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +123 -4
- package/legacy/hooks/features/rows/useGridRows.js +16 -1
- package/legacy/index.js +1 -1
- package/legacy/internals/index.js +7 -2
- package/legacy/internals/utils/index.js +2 -1
- package/legacy/internals/utils/useProps.js +11 -0
- package/legacy/joy/icons.js +432 -0
- package/legacy/joy/joySlots.js +118 -4
- package/legacy/locales/arSD.js +28 -0
- package/legacy/locales/beBY.js +28 -0
- package/legacy/locales/bgBG.js +28 -0
- package/legacy/locales/csCZ.js +36 -8
- package/legacy/locales/daDK.js +28 -0
- package/legacy/locales/deDE.js +30 -2
- package/legacy/locales/elGR.js +27 -0
- package/legacy/locales/esES.js +28 -0
- package/legacy/locales/faIR.js +28 -0
- package/legacy/locales/fiFI.js +28 -0
- package/legacy/locales/frFR.js +34 -6
- package/legacy/locales/heIL.js +30 -2
- package/legacy/locales/huHU.js +28 -0
- package/legacy/locales/itIT.js +28 -0
- package/legacy/locales/jaJP.js +28 -0
- package/legacy/locales/koKR.js +28 -0
- package/legacy/locales/nbNO.js +28 -0
- package/legacy/locales/nlNL.js +28 -0
- package/legacy/locales/plPL.js +28 -0
- package/legacy/locales/ptBR.js +29 -1
- package/legacy/locales/roRO.js +28 -0
- package/legacy/locales/ruRU.js +28 -0
- package/legacy/locales/skSK.js +28 -0
- package/legacy/locales/svSE.js +28 -0
- package/legacy/locales/trTR.js +28 -0
- package/legacy/locales/ukUA.js +36 -9
- package/legacy/locales/urPK.js +28 -0
- package/legacy/locales/viVN.js +27 -0
- package/legacy/locales/zhCN.js +28 -0
- package/legacy/locales/zhTW.js +28 -0
- package/legacy/material/index.js +5 -1
- package/legacy/models/api/index.js +0 -1
- package/legacy/models/index.js +0 -1
- package/legacy/utils/domUtils.js +14 -1
- package/locales/arSD.js +28 -0
- package/locales/beBY.js +28 -0
- package/locales/bgBG.js +28 -0
- package/locales/csCZ.js +36 -8
- package/locales/daDK.js +28 -0
- package/locales/deDE.js +30 -2
- package/locales/elGR.js +27 -0
- package/locales/esES.js +28 -0
- package/locales/faIR.js +28 -0
- package/locales/fiFI.js +28 -0
- package/locales/frFR.js +34 -6
- package/locales/heIL.js +30 -2
- package/locales/huHU.js +28 -0
- package/locales/itIT.js +28 -0
- package/locales/jaJP.js +28 -0
- package/locales/koKR.js +28 -0
- package/locales/nbNO.js +28 -0
- package/locales/nlNL.js +28 -0
- package/locales/plPL.js +28 -0
- package/locales/ptBR.js +29 -1
- package/locales/roRO.js +28 -0
- package/locales/ruRU.js +28 -0
- package/locales/skSK.js +28 -0
- package/locales/svSE.js +28 -0
- package/locales/trTR.js +28 -0
- package/locales/ukUA.js +36 -9
- package/locales/urPK.js +28 -0
- package/locales/viVN.js +27 -0
- package/locales/zhCN.js +28 -0
- package/locales/zhTW.js +28 -0
- package/material/index.d.ts +3 -65
- package/material/index.js +5 -1
- package/models/api/gridApiCommon.d.ts +3 -3
- package/models/api/gridCoreApi.d.ts +8 -0
- package/models/api/gridFocusApi.d.ts +6 -0
- package/models/api/gridHeaderFilteringApi.d.ts +30 -0
- package/models/api/gridLocaleTextApi.d.ts +25 -0
- package/models/api/index.d.ts +0 -1
- package/models/api/index.js +0 -1
- package/models/events/gridEventLookup.d.ts +33 -1
- package/models/gridFilterOperator.d.ts +4 -0
- package/models/gridHeaderFilteringModel.d.ts +5 -0
- package/models/gridHeaderFilteringModel.js +1 -0
- package/models/gridSlotsComponent.d.ts +21 -4
- package/models/gridSlotsComponentsProps.d.ts +4 -0
- package/models/gridStateCommunity.d.ts +2 -0
- package/models/index.d.ts +1 -1
- package/models/index.js +0 -1
- package/models/props/DataGridProps.d.ts +19 -0
- package/modern/DataGrid/DataGrid.js +20 -1
- package/modern/DataGrid/useDataGridComponent.js +2 -2
- package/modern/DataGrid/useDataGridProps.js +8 -13
- package/modern/colDef/gridBooleanColDef.js +19 -1
- package/modern/colDef/gridDateColDef.js +6 -2
- package/modern/colDef/gridNumericOperators.js +0 -6
- package/modern/colDef/gridSingleSelectColDef.js +21 -1
- package/modern/components/base/GridBody.js +2 -1
- package/modern/components/cell/GridEditInputCell.js +4 -1
- package/modern/components/containers/GridRootStyles.js +1 -0
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +80 -36
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +27 -6
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +1 -2
- package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.js +1 -2
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +55 -32
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +29 -6
- package/modern/components/panel/filterPanel/GridFilterPanel.js +1 -1
- package/modern/components/panel/filterPanel/index.js +2 -1
- package/modern/constants/localeTextConstants.js +26 -0
- package/modern/hooks/features/clipboard/useGridClipboard.js +43 -26
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +4 -2
- package/modern/hooks/features/dimensions/useGridDimensions.js +3 -5
- package/modern/hooks/features/editing/useGridCellEditing.js +7 -3
- package/modern/hooks/features/editing/useGridEditing.js +0 -3
- package/modern/hooks/features/editing/useGridRowEditing.js +7 -3
- package/modern/hooks/features/export/serializers/csvSerializer.js +44 -6
- package/modern/hooks/features/export/useGridCsvExport.js +7 -5
- package/modern/hooks/features/focus/gridFocusStateSelector.js +6 -0
- package/modern/hooks/features/focus/useGridFocus.js +55 -9
- package/modern/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +5 -0
- package/modern/hooks/features/headerFiltering/index.js +1 -0
- package/modern/hooks/features/headerFiltering/useGridHeaderFiltering.js +90 -0
- package/modern/hooks/features/index.js +2 -1
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +124 -4
- package/modern/hooks/features/rows/useGridRows.js +16 -1
- package/modern/index.js +1 -1
- package/modern/internals/index.js +7 -2
- package/modern/internals/utils/index.js +2 -1
- package/modern/internals/utils/useProps.js +13 -0
- package/modern/joy/icons.js +433 -0
- package/modern/joy/joySlots.js +110 -4
- package/modern/locales/arSD.js +28 -0
- package/modern/locales/beBY.js +28 -0
- package/modern/locales/bgBG.js +28 -0
- package/modern/locales/csCZ.js +36 -8
- package/modern/locales/daDK.js +28 -0
- package/modern/locales/deDE.js +30 -2
- package/modern/locales/elGR.js +27 -0
- package/modern/locales/esES.js +28 -0
- package/modern/locales/faIR.js +28 -0
- package/modern/locales/fiFI.js +28 -0
- package/modern/locales/frFR.js +34 -6
- package/modern/locales/heIL.js +30 -2
- package/modern/locales/huHU.js +28 -0
- package/modern/locales/itIT.js +28 -0
- package/modern/locales/jaJP.js +28 -0
- package/modern/locales/koKR.js +28 -0
- package/modern/locales/nbNO.js +28 -0
- package/modern/locales/nlNL.js +28 -0
- package/modern/locales/plPL.js +28 -0
- package/modern/locales/ptBR.js +29 -1
- package/modern/locales/roRO.js +28 -0
- package/modern/locales/ruRU.js +28 -0
- package/modern/locales/skSK.js +28 -0
- package/modern/locales/svSE.js +28 -0
- package/modern/locales/trTR.js +28 -0
- package/modern/locales/ukUA.js +36 -9
- package/modern/locales/urPK.js +28 -0
- package/modern/locales/viVN.js +27 -0
- package/modern/locales/zhCN.js +28 -0
- package/modern/locales/zhTW.js +28 -0
- package/modern/material/index.js +5 -1
- package/modern/models/api/gridHeaderFilteringApi.js +1 -0
- package/modern/models/api/index.js +0 -1
- package/modern/models/gridHeaderFilteringModel.js +1 -0
- package/modern/models/index.js +0 -1
- package/modern/utils/domUtils.js +13 -1
- package/node/DataGrid/DataGrid.js +20 -1
- package/node/DataGrid/useDataGridComponent.js +2 -2
- package/node/DataGrid/useDataGridProps.js +7 -12
- package/node/colDef/gridBooleanColDef.js +19 -1
- package/node/colDef/gridDateColDef.js +6 -2
- package/node/colDef/gridNumericOperators.js +0 -6
- package/node/colDef/gridSingleSelectColDef.js +21 -1
- package/node/components/base/GridBody.js +2 -1
- package/node/components/cell/GridEditInputCell.js +4 -1
- package/node/components/containers/GridRootStyles.js +1 -0
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +78 -35
- package/node/components/panel/filterPanel/GridFilterInputDate.js +27 -6
- package/node/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +1 -2
- package/node/components/panel/filterPanel/GridFilterInputMultipleValue.js +1 -2
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +55 -32
- package/node/components/panel/filterPanel/GridFilterInputValue.js +29 -6
- package/node/components/panel/filterPanel/GridFilterPanel.js +2 -1
- package/node/components/panel/filterPanel/index.js +26 -8
- package/node/constants/localeTextConstants.js +26 -0
- package/node/hooks/features/clipboard/useGridClipboard.js +42 -25
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +4 -2
- package/node/hooks/features/dimensions/useGridDimensions.js +3 -5
- package/node/hooks/features/editing/useGridCellEditing.js +7 -3
- package/node/hooks/features/editing/useGridEditing.js +0 -3
- package/node/hooks/features/editing/useGridRowEditing.js +7 -3
- package/node/hooks/features/export/serializers/csvSerializer.js +46 -6
- package/node/hooks/features/export/useGridCsvExport.js +6 -3
- package/node/hooks/features/focus/gridFocusStateSelector.js +9 -1
- package/node/hooks/features/focus/useGridFocus.js +55 -9
- package/node/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +15 -0
- package/node/hooks/features/headerFiltering/index.js +16 -0
- package/node/hooks/features/headerFiltering/useGridHeaderFiltering.js +101 -0
- package/node/hooks/features/index.js +11 -0
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +124 -4
- package/node/hooks/features/rows/useGridRows.js +16 -1
- package/node/index.js +1 -1
- package/node/internals/index.js +69 -1
- package/node/internals/utils/index.js +11 -0
- package/node/internals/utils/useProps.js +22 -0
- package/node/joy/icons.js +471 -0
- package/node/joy/joySlots.js +110 -3
- package/node/locales/arSD.js +28 -0
- package/node/locales/beBY.js +28 -0
- package/node/locales/bgBG.js +28 -0
- package/node/locales/csCZ.js +36 -8
- package/node/locales/daDK.js +28 -0
- package/node/locales/deDE.js +30 -2
- package/node/locales/elGR.js +27 -0
- package/node/locales/esES.js +28 -0
- package/node/locales/faIR.js +28 -0
- package/node/locales/fiFI.js +28 -0
- package/node/locales/frFR.js +34 -6
- package/node/locales/heIL.js +30 -2
- package/node/locales/huHU.js +28 -0
- package/node/locales/itIT.js +28 -0
- package/node/locales/jaJP.js +28 -0
- package/node/locales/koKR.js +28 -0
- package/node/locales/nbNO.js +28 -0
- package/node/locales/nlNL.js +28 -0
- package/node/locales/plPL.js +28 -0
- package/node/locales/ptBR.js +29 -1
- package/node/locales/roRO.js +28 -0
- package/node/locales/ruRU.js +28 -0
- package/node/locales/skSK.js +28 -0
- package/node/locales/svSE.js +28 -0
- package/node/locales/trTR.js +28 -0
- package/node/locales/ukUA.js +36 -9
- package/node/locales/urPK.js +28 -0
- package/node/locales/viVN.js +27 -0
- package/node/locales/zhCN.js +28 -0
- package/node/locales/zhTW.js +28 -0
- package/node/material/index.js +5 -1
- package/node/models/api/index.js +0 -11
- package/node/models/gridHeaderFilteringModel.js +5 -0
- package/node/models/index.js +0 -11
- package/node/utils/domUtils.js +15 -1
- package/package.json +1 -1
- package/utils/domUtils.d.ts +1 -0
- package/utils/domUtils.js +13 -1
- package/models/api/gridClipboardApi.d.ts +0 -11
- /package/legacy/models/api/{gridClipboardApi.js → gridHeaderFilteringApi.js} +0 -0
- /package/{models/api/gridClipboardApi.js → legacy/models/gridHeaderFilteringModel.js} +0 -0
- /package/{modern/models/api/gridClipboardApi.js → models/api/gridHeaderFilteringApi.js} +0 -0
- /package/node/models/api/{gridClipboardApi.js → gridHeaderFilteringApi.js} +0 -0
package/modern/locales/nbNO.js
CHANGED
|
@@ -60,6 +60,34 @@ const nbNOGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'er tom',
|
|
61
61
|
filterOperatorIsNotEmpty: 'er ikke tom',
|
|
62
62
|
filterOperatorIsAnyOf: 'er en av',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: 'noen',
|
|
65
93
|
filterValueTrue: 'sant',
|
package/modern/locales/nlNL.js
CHANGED
|
@@ -60,6 +60,34 @@ const nlNLGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'is leeg',
|
|
61
61
|
filterOperatorIsNotEmpty: 'is niet leeg',
|
|
62
62
|
filterOperatorIsAnyOf: 'is een van',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: 'alles',
|
|
65
93
|
filterValueTrue: 'waar',
|
package/modern/locales/plPL.js
CHANGED
|
@@ -60,6 +60,34 @@ const plPLGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'jest pusty',
|
|
61
61
|
filterOperatorIsNotEmpty: 'nie jest pusty',
|
|
62
62
|
filterOperatorIsAnyOf: 'jest jednym z',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: 'dowolny',
|
|
65
93
|
filterValueTrue: 'prawda',
|
package/modern/locales/ptBR.js
CHANGED
|
@@ -37,7 +37,7 @@ const ptBRGrid = {
|
|
|
37
37
|
columnsPanelHideAllButton: 'Ocultar todas',
|
|
38
38
|
// Filter panel text
|
|
39
39
|
filterPanelAddFilter: 'Adicionar filtro',
|
|
40
|
-
|
|
40
|
+
filterPanelRemoveAll: 'Remover todos',
|
|
41
41
|
filterPanelDeleteIconLabel: 'Excluir',
|
|
42
42
|
filterPanelLogicOperator: 'Operador lógico',
|
|
43
43
|
filterPanelOperator: 'Operador',
|
|
@@ -60,6 +60,34 @@ const ptBRGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'está vazio',
|
|
61
61
|
filterOperatorIsNotEmpty: 'não está vazio',
|
|
62
62
|
filterOperatorIsAnyOf: 'é qualquer um dos',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: 'qualquer',
|
|
65
93
|
filterValueTrue: 'verdadeiro',
|
package/modern/locales/roRO.js
CHANGED
|
@@ -60,6 +60,34 @@ const roROGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'este gol',
|
|
61
61
|
filterOperatorIsNotEmpty: 'nu este gol',
|
|
62
62
|
filterOperatorIsAnyOf: 'este una din valori',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: 'Aleatoriu',
|
|
65
93
|
filterValueTrue: 'Da',
|
package/modern/locales/ruRU.js
CHANGED
|
@@ -69,6 +69,34 @@ const ruRUGrid = {
|
|
|
69
69
|
filterOperatorIsEmpty: 'пустой',
|
|
70
70
|
filterOperatorIsNotEmpty: 'не пустой',
|
|
71
71
|
filterOperatorIsAnyOf: 'любой из',
|
|
72
|
+
// filterOperator=: '=',
|
|
73
|
+
// filterOperator!=: '!=',
|
|
74
|
+
// filterOperator>: '>',
|
|
75
|
+
// filterOperator>=: '>=',
|
|
76
|
+
// filterOperator<: '<',
|
|
77
|
+
// filterOperator<=: '<=',
|
|
78
|
+
|
|
79
|
+
// Header filter operators text
|
|
80
|
+
// headerFilterOperatorContains: 'Contains',
|
|
81
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
82
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
83
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
84
|
+
// headerFilterOperatorIs: 'Is',
|
|
85
|
+
// headerFilterOperatorNot: 'Is not',
|
|
86
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
87
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
88
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
89
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
90
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
91
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
92
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
93
|
+
// headerFilterOperator=: 'Equals',
|
|
94
|
+
// headerFilterOperator!=: 'Not equals',
|
|
95
|
+
// headerFilterOperator>: 'Is greater than',
|
|
96
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
97
|
+
// headerFilterOperator<: 'Is less than',
|
|
98
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
99
|
+
|
|
72
100
|
// Filter values text
|
|
73
101
|
filterValueAny: 'любой',
|
|
74
102
|
filterValueTrue: 'истина',
|
package/modern/locales/skSK.js
CHANGED
|
@@ -68,6 +68,34 @@ const skSKGrid = {
|
|
|
68
68
|
filterOperatorIsEmpty: 'je prázdny',
|
|
69
69
|
filterOperatorIsNotEmpty: 'nie je prázdny',
|
|
70
70
|
filterOperatorIsAnyOf: 'je jeden z',
|
|
71
|
+
// filterOperator=: '=',
|
|
72
|
+
// filterOperator!=: '!=',
|
|
73
|
+
// filterOperator>: '>',
|
|
74
|
+
// filterOperator>=: '>=',
|
|
75
|
+
// filterOperator<: '<',
|
|
76
|
+
// filterOperator<=: '<=',
|
|
77
|
+
|
|
78
|
+
// Header filter operators text
|
|
79
|
+
// headerFilterOperatorContains: 'Contains',
|
|
80
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
81
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
82
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
83
|
+
// headerFilterOperatorIs: 'Is',
|
|
84
|
+
// headerFilterOperatorNot: 'Is not',
|
|
85
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
86
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
87
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
88
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
89
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
90
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
91
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
92
|
+
// headerFilterOperator=: 'Equals',
|
|
93
|
+
// headerFilterOperator!=: 'Not equals',
|
|
94
|
+
// headerFilterOperator>: 'Is greater than',
|
|
95
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
96
|
+
// headerFilterOperator<: 'Is less than',
|
|
97
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
98
|
+
|
|
71
99
|
// Filter values text
|
|
72
100
|
filterValueAny: 'akýkoľvek',
|
|
73
101
|
filterValueTrue: 'áno',
|
package/modern/locales/svSE.js
CHANGED
|
@@ -60,6 +60,34 @@ const svSEGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'är tom',
|
|
61
61
|
filterOperatorIsNotEmpty: 'är inte tom',
|
|
62
62
|
filterOperatorIsAnyOf: 'är någon av',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: 'något',
|
|
65
93
|
filterValueTrue: 'sant',
|
package/modern/locales/trTR.js
CHANGED
|
@@ -60,6 +60,34 @@ const trTRGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'boş',
|
|
61
61
|
filterOperatorIsNotEmpty: 'dolu',
|
|
62
62
|
filterOperatorIsAnyOf: 'herhangi biri',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: 'herhangi',
|
|
65
93
|
filterValueTrue: 'doğru',
|
package/modern/locales/ukUA.js
CHANGED
|
@@ -51,7 +51,7 @@ const ukUAGrid = {
|
|
|
51
51
|
columnsPanelHideAllButton: 'Приховати всі',
|
|
52
52
|
// Filter panel text
|
|
53
53
|
filterPanelAddFilter: 'Додати фільтр',
|
|
54
|
-
|
|
54
|
+
filterPanelRemoveAll: 'Видалити всі',
|
|
55
55
|
filterPanelDeleteIconLabel: 'Видалити',
|
|
56
56
|
filterPanelLogicOperator: 'Логічна функція',
|
|
57
57
|
filterPanelOperator: 'Оператори',
|
|
@@ -74,6 +74,34 @@ const ukUAGrid = {
|
|
|
74
74
|
filterOperatorIsEmpty: 'порожній',
|
|
75
75
|
filterOperatorIsNotEmpty: 'не порожній',
|
|
76
76
|
filterOperatorIsAnyOf: 'будь-що із',
|
|
77
|
+
// filterOperator=: '=',
|
|
78
|
+
// filterOperator!=: '!=',
|
|
79
|
+
// filterOperator>: '>',
|
|
80
|
+
// filterOperator>=: '>=',
|
|
81
|
+
// filterOperator<: '<',
|
|
82
|
+
// filterOperator<=: '<=',
|
|
83
|
+
|
|
84
|
+
// Header filter operators text
|
|
85
|
+
// headerFilterOperatorContains: 'Contains',
|
|
86
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
87
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
88
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
89
|
+
// headerFilterOperatorIs: 'Is',
|
|
90
|
+
// headerFilterOperatorNot: 'Is not',
|
|
91
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
92
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
93
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
94
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
95
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
96
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
97
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
98
|
+
// headerFilterOperator=: 'Equals',
|
|
99
|
+
// headerFilterOperator!=: 'Not equals',
|
|
100
|
+
// headerFilterOperator>: 'Is greater than',
|
|
101
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
102
|
+
// headerFilterOperator<: 'Is less than',
|
|
103
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
104
|
+
|
|
77
105
|
// Filter values text
|
|
78
106
|
filterValueAny: 'будь-який',
|
|
79
107
|
filterValueTrue: 'так',
|
|
@@ -81,7 +109,7 @@ const ukUAGrid = {
|
|
|
81
109
|
// Column menu text
|
|
82
110
|
columnMenuLabel: 'Меню',
|
|
83
111
|
columnMenuShowColumns: 'Показати стовпці',
|
|
84
|
-
|
|
112
|
+
columnMenuManageColumns: 'Керування стовпцями',
|
|
85
113
|
columnMenuFilter: 'Фільтр',
|
|
86
114
|
columnMenuHideColumn: 'Приховати',
|
|
87
115
|
columnMenuUnsort: 'Скасувати сортування',
|
|
@@ -135,12 +163,11 @@ const ukUAGrid = {
|
|
|
135
163
|
// Row reordering text
|
|
136
164
|
rowReorderingHeaderName: 'Порядок рядків',
|
|
137
165
|
// Aggregation
|
|
138
|
-
aggregationMenuItemHeader: 'Агрегація'
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
166
|
+
aggregationMenuItemHeader: 'Агрегація',
|
|
167
|
+
aggregationFunctionLabelSum: 'сума',
|
|
168
|
+
aggregationFunctionLabelAvg: 'сер',
|
|
169
|
+
aggregationFunctionLabelMin: 'мін',
|
|
170
|
+
aggregationFunctionLabelMax: 'макс',
|
|
171
|
+
aggregationFunctionLabelSize: 'кількість'
|
|
144
172
|
};
|
|
145
|
-
|
|
146
173
|
export const ukUA = getGridLocalization(ukUAGrid, ukUACore);
|
package/modern/locales/urPK.js
CHANGED
|
@@ -60,6 +60,34 @@ const urPKGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'خالی ہے',
|
|
61
61
|
filterOperatorIsNotEmpty: 'خالی نہیں ہے',
|
|
62
62
|
filterOperatorIsAnyOf: 'ان میں سے کوئی ہے',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: 'کوئی بھی',
|
|
65
93
|
filterValueTrue: 'صحیح',
|
package/modern/locales/viVN.js
CHANGED
|
@@ -60,6 +60,33 @@ const viVNGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'Rỗng',
|
|
61
61
|
filterOperatorIsNotEmpty: 'Khác rỗng',
|
|
62
62
|
// filterOperatorIsAnyOf: 'is any of',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
63
90
|
|
|
64
91
|
// Filter values text
|
|
65
92
|
filterValueAny: 'bất kỳ giá trị nào',
|
package/modern/locales/zhCN.js
CHANGED
|
@@ -60,6 +60,34 @@ const zhCNGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: '为空',
|
|
61
61
|
filterOperatorIsNotEmpty: '不为空',
|
|
62
62
|
filterOperatorIsAnyOf: '属于',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: '任何',
|
|
65
93
|
filterValueTrue: '真',
|
package/modern/locales/zhTW.js
CHANGED
|
@@ -60,6 +60,34 @@ const zhTWGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: '為空',
|
|
61
61
|
filterOperatorIsNotEmpty: '不為空',
|
|
62
62
|
filterOperatorIsAnyOf: '是其中之一',
|
|
63
|
+
// filterOperator=: '=',
|
|
64
|
+
// filterOperator!=: '!=',
|
|
65
|
+
// filterOperator>: '>',
|
|
66
|
+
// filterOperator>=: '>=',
|
|
67
|
+
// filterOperator<: '<',
|
|
68
|
+
// filterOperator<=: '<=',
|
|
69
|
+
|
|
70
|
+
// Header filter operators text
|
|
71
|
+
// headerFilterOperatorContains: 'Contains',
|
|
72
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
73
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
|
+
// headerFilterOperatorIs: 'Is',
|
|
76
|
+
// headerFilterOperatorNot: 'Is not',
|
|
77
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
78
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
79
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
80
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
81
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
+
// headerFilterOperator=: 'Equals',
|
|
85
|
+
// headerFilterOperator!=: 'Not equals',
|
|
86
|
+
// headerFilterOperator>: 'Is greater than',
|
|
87
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
88
|
+
// headerFilterOperator<: 'Is less than',
|
|
89
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
90
|
+
|
|
63
91
|
// Filter values text
|
|
64
92
|
filterValueAny: '任何值',
|
|
65
93
|
filterValueTrue: '真',
|
package/modern/material/index.js
CHANGED
|
@@ -6,9 +6,11 @@ import MUISelect from '@mui/material/Select';
|
|
|
6
6
|
import MUISwitch from '@mui/material/Switch';
|
|
7
7
|
import MUIButton from '@mui/material/Button';
|
|
8
8
|
import MUIIconButton from '@mui/material/IconButton';
|
|
9
|
+
import MUIInputAdornment from '@mui/material/InputAdornment';
|
|
9
10
|
import MUITooltip from '@mui/material/Tooltip';
|
|
10
11
|
import MUIPopper from '@mui/material/Popper';
|
|
11
12
|
import MUIInputLabel from '@mui/material/InputLabel';
|
|
13
|
+
import MUIChip from '@mui/material/Chip';
|
|
12
14
|
import { GridColumnUnsortedIcon } from './icons/GridColumnUnsortedIcon';
|
|
13
15
|
import { GridAddIcon, GridArrowDownwardIcon, GridArrowUpwardIcon, GridCheckIcon, GridCloseIcon, GridColumnIcon, GridDragIcon, GridExpandMoreIcon, GridFilterAltIcon, GridFilterListIcon, GridKeyboardArrowRight, GridMoreVertIcon, GridRemoveIcon, GridSaveAltIcon, GridSearchIcon, GridSeparatorIcon, GridTableRowsIcon, GridTripleDotsVerticalIcon, GridViewHeadlineIcon, GridViewStreamIcon, GridVisibilityOffIcon, GridViewColumnIcon, GridClearIcon, GridLoadIcon, GridDeleteForeverIcon } from './icons';
|
|
14
16
|
import MUISelectOption from './components/MUISelectOption';
|
|
@@ -57,9 +59,11 @@ const materialSlots = _extends({}, iconSlots, {
|
|
|
57
59
|
BaseSwitch: MUISwitch,
|
|
58
60
|
BaseButton: MUIButton,
|
|
59
61
|
BaseIconButton: MUIIconButton,
|
|
62
|
+
BaseInputAdornment: MUIInputAdornment,
|
|
60
63
|
BaseTooltip: MUITooltip,
|
|
61
64
|
BasePopper: MUIPopper,
|
|
62
65
|
BaseInputLabel: MUIInputLabel,
|
|
63
|
-
BaseSelectOption: MUISelectOption
|
|
66
|
+
BaseSelectOption: MUISelectOption,
|
|
67
|
+
BaseChip: MUIChip
|
|
64
68
|
});
|
|
65
69
|
export default materialSlots;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -11,7 +11,6 @@ export * from './gridColumnMenuApi';
|
|
|
11
11
|
export * from './gridPreferencesPanelApi';
|
|
12
12
|
export * from './gridPrintExportApi';
|
|
13
13
|
export * from './gridDisableVirtualizationApi';
|
|
14
|
-
export * from './gridClipboardApi';
|
|
15
14
|
export * from './gridCallbackDetails';
|
|
16
15
|
export * from './gridScrollApi';
|
|
17
16
|
export * from './gridVirtualScrollerApi';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/modern/models/index.js
CHANGED
|
@@ -16,7 +16,6 @@ export * from './gridCell';
|
|
|
16
16
|
export * from './gridColumnHeaderClass';
|
|
17
17
|
export * from './api';
|
|
18
18
|
export * from './gridIconSlotsComponent';
|
|
19
|
-
export * from './gridSlotsComponent';
|
|
20
19
|
export * from './gridSlotsComponentsProps';
|
|
21
20
|
export * from './gridDensity';
|
|
22
21
|
export * from './logger';
|
package/modern/utils/domUtils.js
CHANGED
|
@@ -39,4 +39,16 @@ export function getGridCellElement(root, {
|
|
|
39
39
|
const cellSelector = `.${gridClasses.cell}[data-field="${escapeOperandAttributeSelector(field)}"]`;
|
|
40
40
|
const selector = `${rowSelector} ${cellSelector}`;
|
|
41
41
|
return root.querySelector(selector);
|
|
42
|
-
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// https://www.abeautifulsite.net/posts/finding-the-active-element-in-a-shadow-root/
|
|
45
|
+
export const getActiveElement = (root = document) => {
|
|
46
|
+
const activeEl = root.activeElement;
|
|
47
|
+
if (!activeEl) {
|
|
48
|
+
return null;
|
|
49
|
+
}
|
|
50
|
+
if (activeEl.shadowRoot) {
|
|
51
|
+
return getActiveElement(activeEl.shadowRoot);
|
|
52
|
+
}
|
|
53
|
+
return activeEl;
|
|
54
|
+
};
|
|
@@ -77,6 +77,11 @@ DataGridRaw.propTypes = {
|
|
|
77
77
|
* Override or extend the styles applied to the component.
|
|
78
78
|
*/
|
|
79
79
|
classes: _propTypes.default.object,
|
|
80
|
+
/**
|
|
81
|
+
* The character used to separate cell values when copying to the clipboard.
|
|
82
|
+
* @default '\t'
|
|
83
|
+
*/
|
|
84
|
+
clipboardCopyCellDelimiter: _propTypes.default.string,
|
|
80
85
|
/**
|
|
81
86
|
* Number of extra columns to be rendered before/after the visible slice.
|
|
82
87
|
* @default 3
|
|
@@ -335,6 +340,11 @@ DataGridRaw.propTypes = {
|
|
|
335
340
|
* @param {GridCallbackDetails} details Additional details for this callback.
|
|
336
341
|
*/
|
|
337
342
|
onCellModesModelChange: _propTypes.default.func,
|
|
343
|
+
/**
|
|
344
|
+
* Callback called when the data is copied to the clipboard.
|
|
345
|
+
* @param {string} data The data copied to the clipboard.
|
|
346
|
+
*/
|
|
347
|
+
onClipboardCopy: _propTypes.default.func,
|
|
338
348
|
/**
|
|
339
349
|
* Callback fired when a click event comes from a column header element.
|
|
340
350
|
* @param {GridColumnHeaderParams} params With all properties from [[GridColumnHeaderParams]].
|
|
@@ -620,5 +630,14 @@ DataGridRaw.propTypes = {
|
|
|
620
630
|
/**
|
|
621
631
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
622
632
|
*/
|
|
623
|
-
sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object])
|
|
633
|
+
sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]),
|
|
634
|
+
/**
|
|
635
|
+
* If `true`, the grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
|
|
636
|
+
* If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
|
|
637
|
+
* @default: false
|
|
638
|
+
*/
|
|
639
|
+
unstable_ignoreValueFormatterDuringExport: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
640
|
+
clipboardExport: _propTypes.default.bool,
|
|
641
|
+
csvExport: _propTypes.default.bool
|
|
642
|
+
}), _propTypes.default.bool])
|
|
624
643
|
};
|