@mui/x-data-grid 6.4.0 → 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 +56 -0
- package/DataGrid/useDataGridProps.js +5 -12
- package/colDef/gridNumericOperators.js +0 -6
- package/components/cell/GridEditInputCell.js +4 -1
- 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/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/features/columnHeaders/useGridColumnHeaders.d.ts +9 -2
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +4 -2
- package/hooks/features/dimensions/useGridDimensions.js +2 -2
- package/hooks/features/editing/useGridEditing.js +0 -3
- 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 +113 -4
- package/hooks/features/rows/useGridRows.js +16 -1
- package/index.js +1 -1
- package/internals/index.d.ts +6 -1
- package/internals/index.js +4 -0
- 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/legacy/DataGrid/useDataGridProps.js +8 -8
- package/legacy/colDef/gridNumericOperators.js +0 -6
- package/legacy/components/cell/GridEditInputCell.js +4 -1
- package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +79 -35
- package/legacy/components/panel/filterPanel/GridFilterInputDate.js +26 -5
- 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/columnHeaders/useGridColumnHeaders.js +5 -5
- package/legacy/hooks/features/dimensions/useGridDimensions.js +2 -2
- package/legacy/hooks/features/editing/useGridEditing.js +0 -3
- 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 +113 -4
- package/legacy/hooks/features/rows/useGridRows.js +16 -1
- package/legacy/index.js +1 -1
- package/legacy/internals/index.js +4 -0
- package/legacy/internals/utils/index.js +2 -1
- package/legacy/internals/utils/useProps.js +11 -0
- 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 +28 -0
- 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 +28 -0
- 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 +28 -0
- 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 +28 -0
- 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 +2 -0
- package/legacy/models/api/gridHeaderFilteringApi.js +1 -0
- package/legacy/models/gridHeaderFilteringModel.js +1 -0
- package/legacy/models/index.js +0 -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 +28 -0
- 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 +28 -0
- 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 +28 -0
- 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 +28 -0
- 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 -66
- package/material/index.js +2 -0
- package/models/api/gridApiCommon.d.ts +3 -2
- package/models/api/gridCoreApi.d.ts +4 -0
- package/models/api/gridFocusApi.d.ts +6 -0
- package/models/api/gridHeaderFilteringApi.d.ts +30 -0
- package/models/api/gridHeaderFilteringApi.js +1 -0
- package/models/api/gridLocaleTextApi.d.ts +25 -0
- package/models/events/gridEventLookup.d.ts +27 -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 +16 -4
- package/models/gridStateCommunity.d.ts +2 -0
- package/models/index.d.ts +1 -1
- package/models/index.js +0 -1
- package/modern/DataGrid/useDataGridProps.js +5 -12
- package/modern/colDef/gridNumericOperators.js +0 -6
- package/modern/components/cell/GridEditInputCell.js +4 -1
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +80 -36
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +27 -6
- 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/columnHeaders/useGridColumnHeaders.js +4 -2
- package/modern/hooks/features/dimensions/useGridDimensions.js +2 -2
- package/modern/hooks/features/editing/useGridEditing.js +0 -3
- 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 +113 -4
- package/modern/hooks/features/rows/useGridRows.js +16 -1
- package/modern/index.js +1 -1
- package/modern/internals/index.js +4 -0
- package/modern/internals/utils/index.js +2 -1
- package/modern/internals/utils/useProps.js +13 -0
- 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 +28 -0
- 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 +28 -0
- 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 +28 -0
- 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 +28 -0
- 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 +2 -0
- package/modern/models/api/gridHeaderFilteringApi.js +1 -0
- package/modern/models/gridHeaderFilteringModel.js +1 -0
- package/modern/models/index.js +0 -1
- package/node/DataGrid/useDataGridProps.js +4 -11
- package/node/colDef/gridNumericOperators.js +0 -6
- package/node/components/cell/GridEditInputCell.js +4 -1
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +78 -35
- package/node/components/panel/filterPanel/GridFilterInputDate.js +27 -6
- 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/columnHeaders/useGridColumnHeaders.js +4 -2
- package/node/hooks/features/dimensions/useGridDimensions.js +2 -2
- package/node/hooks/features/editing/useGridEditing.js +0 -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 +113 -4
- package/node/hooks/features/rows/useGridRows.js +16 -1
- package/node/index.js +1 -1
- package/node/internals/index.js +46 -0
- package/node/internals/utils/index.js +11 -0
- package/node/internals/utils/useProps.js +22 -0
- 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 +28 -0
- 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 +28 -0
- 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 +28 -0
- 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 +28 -0
- 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 +2 -0
- package/node/models/api/gridHeaderFilteringApi.js +5 -0
- package/node/models/gridHeaderFilteringModel.js +5 -0
- package/node/models/index.js +0 -11
- package/package.json +1 -1
package/node/locales/trTR.js
CHANGED
|
@@ -66,6 +66,34 @@ const trTRGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'boş',
|
|
67
67
|
filterOperatorIsNotEmpty: 'dolu',
|
|
68
68
|
filterOperatorIsAnyOf: 'herhangi biri',
|
|
69
|
+
// filterOperator=: '=',
|
|
70
|
+
// filterOperator!=: '!=',
|
|
71
|
+
// filterOperator>: '>',
|
|
72
|
+
// filterOperator>=: '>=',
|
|
73
|
+
// filterOperator<: '<',
|
|
74
|
+
// filterOperator<=: '<=',
|
|
75
|
+
|
|
76
|
+
// Header filter operators text
|
|
77
|
+
// headerFilterOperatorContains: 'Contains',
|
|
78
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
79
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
80
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
81
|
+
// headerFilterOperatorIs: 'Is',
|
|
82
|
+
// headerFilterOperatorNot: 'Is not',
|
|
83
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
84
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
85
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
86
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
87
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
+
// headerFilterOperator=: 'Equals',
|
|
91
|
+
// headerFilterOperator!=: 'Not equals',
|
|
92
|
+
// headerFilterOperator>: 'Is greater than',
|
|
93
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
94
|
+
// headerFilterOperator<: 'Is less than',
|
|
95
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
96
|
+
|
|
69
97
|
// Filter values text
|
|
70
98
|
filterValueAny: 'herhangi',
|
|
71
99
|
filterValueTrue: 'doğru',
|
package/node/locales/ukUA.js
CHANGED
|
@@ -80,6 +80,34 @@ const ukUAGrid = {
|
|
|
80
80
|
filterOperatorIsEmpty: 'порожній',
|
|
81
81
|
filterOperatorIsNotEmpty: 'не порожній',
|
|
82
82
|
filterOperatorIsAnyOf: 'будь-що із',
|
|
83
|
+
// filterOperator=: '=',
|
|
84
|
+
// filterOperator!=: '!=',
|
|
85
|
+
// filterOperator>: '>',
|
|
86
|
+
// filterOperator>=: '>=',
|
|
87
|
+
// filterOperator<: '<',
|
|
88
|
+
// filterOperator<=: '<=',
|
|
89
|
+
|
|
90
|
+
// Header filter operators text
|
|
91
|
+
// headerFilterOperatorContains: 'Contains',
|
|
92
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
93
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
94
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
95
|
+
// headerFilterOperatorIs: 'Is',
|
|
96
|
+
// headerFilterOperatorNot: 'Is not',
|
|
97
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
98
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
99
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
100
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
101
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
102
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
103
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
104
|
+
// headerFilterOperator=: 'Equals',
|
|
105
|
+
// headerFilterOperator!=: 'Not equals',
|
|
106
|
+
// headerFilterOperator>: 'Is greater than',
|
|
107
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
108
|
+
// headerFilterOperator<: 'Is less than',
|
|
109
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
110
|
+
|
|
83
111
|
// Filter values text
|
|
84
112
|
filterValueAny: 'будь-який',
|
|
85
113
|
filterValueTrue: 'так',
|
package/node/locales/urPK.js
CHANGED
|
@@ -66,6 +66,34 @@ const urPKGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'خالی ہے',
|
|
67
67
|
filterOperatorIsNotEmpty: 'خالی نہیں ہے',
|
|
68
68
|
filterOperatorIsAnyOf: 'ان میں سے کوئی ہے',
|
|
69
|
+
// filterOperator=: '=',
|
|
70
|
+
// filterOperator!=: '!=',
|
|
71
|
+
// filterOperator>: '>',
|
|
72
|
+
// filterOperator>=: '>=',
|
|
73
|
+
// filterOperator<: '<',
|
|
74
|
+
// filterOperator<=: '<=',
|
|
75
|
+
|
|
76
|
+
// Header filter operators text
|
|
77
|
+
// headerFilterOperatorContains: 'Contains',
|
|
78
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
79
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
80
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
81
|
+
// headerFilterOperatorIs: 'Is',
|
|
82
|
+
// headerFilterOperatorNot: 'Is not',
|
|
83
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
84
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
85
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
86
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
87
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
+
// headerFilterOperator=: 'Equals',
|
|
91
|
+
// headerFilterOperator!=: 'Not equals',
|
|
92
|
+
// headerFilterOperator>: 'Is greater than',
|
|
93
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
94
|
+
// headerFilterOperator<: 'Is less than',
|
|
95
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
96
|
+
|
|
69
97
|
// Filter values text
|
|
70
98
|
filterValueAny: 'کوئی بھی',
|
|
71
99
|
filterValueTrue: 'صحیح',
|
package/node/locales/viVN.js
CHANGED
|
@@ -66,6 +66,33 @@ const viVNGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'Rỗng',
|
|
67
67
|
filterOperatorIsNotEmpty: 'Khác rỗng',
|
|
68
68
|
// filterOperatorIsAnyOf: 'is any of',
|
|
69
|
+
// filterOperator=: '=',
|
|
70
|
+
// filterOperator!=: '!=',
|
|
71
|
+
// filterOperator>: '>',
|
|
72
|
+
// filterOperator>=: '>=',
|
|
73
|
+
// filterOperator<: '<',
|
|
74
|
+
// filterOperator<=: '<=',
|
|
75
|
+
|
|
76
|
+
// Header filter operators text
|
|
77
|
+
// headerFilterOperatorContains: 'Contains',
|
|
78
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
79
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
80
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
81
|
+
// headerFilterOperatorIs: 'Is',
|
|
82
|
+
// headerFilterOperatorNot: 'Is not',
|
|
83
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
84
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
85
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
86
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
87
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
+
// headerFilterOperator=: 'Equals',
|
|
91
|
+
// headerFilterOperator!=: 'Not equals',
|
|
92
|
+
// headerFilterOperator>: 'Is greater than',
|
|
93
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
94
|
+
// headerFilterOperator<: 'Is less than',
|
|
95
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
69
96
|
|
|
70
97
|
// Filter values text
|
|
71
98
|
filterValueAny: 'bất kỳ giá trị nào',
|
package/node/locales/zhCN.js
CHANGED
|
@@ -66,6 +66,34 @@ const zhCNGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: '为空',
|
|
67
67
|
filterOperatorIsNotEmpty: '不为空',
|
|
68
68
|
filterOperatorIsAnyOf: '属于',
|
|
69
|
+
// filterOperator=: '=',
|
|
70
|
+
// filterOperator!=: '!=',
|
|
71
|
+
// filterOperator>: '>',
|
|
72
|
+
// filterOperator>=: '>=',
|
|
73
|
+
// filterOperator<: '<',
|
|
74
|
+
// filterOperator<=: '<=',
|
|
75
|
+
|
|
76
|
+
// Header filter operators text
|
|
77
|
+
// headerFilterOperatorContains: 'Contains',
|
|
78
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
79
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
80
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
81
|
+
// headerFilterOperatorIs: 'Is',
|
|
82
|
+
// headerFilterOperatorNot: 'Is not',
|
|
83
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
84
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
85
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
86
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
87
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
+
// headerFilterOperator=: 'Equals',
|
|
91
|
+
// headerFilterOperator!=: 'Not equals',
|
|
92
|
+
// headerFilterOperator>: 'Is greater than',
|
|
93
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
94
|
+
// headerFilterOperator<: 'Is less than',
|
|
95
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
96
|
+
|
|
69
97
|
// Filter values text
|
|
70
98
|
filterValueAny: '任何',
|
|
71
99
|
filterValueTrue: '真',
|
package/node/locales/zhTW.js
CHANGED
|
@@ -66,6 +66,34 @@ const zhTWGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: '為空',
|
|
67
67
|
filterOperatorIsNotEmpty: '不為空',
|
|
68
68
|
filterOperatorIsAnyOf: '是其中之一',
|
|
69
|
+
// filterOperator=: '=',
|
|
70
|
+
// filterOperator!=: '!=',
|
|
71
|
+
// filterOperator>: '>',
|
|
72
|
+
// filterOperator>=: '>=',
|
|
73
|
+
// filterOperator<: '<',
|
|
74
|
+
// filterOperator<=: '<=',
|
|
75
|
+
|
|
76
|
+
// Header filter operators text
|
|
77
|
+
// headerFilterOperatorContains: 'Contains',
|
|
78
|
+
// headerFilterOperatorEquals: 'Equals',
|
|
79
|
+
// headerFilterOperatorStartsWith: 'Starts with',
|
|
80
|
+
// headerFilterOperatorEndsWith: 'Ends with',
|
|
81
|
+
// headerFilterOperatorIs: 'Is',
|
|
82
|
+
// headerFilterOperatorNot: 'Is not',
|
|
83
|
+
// headerFilterOperatorAfter: 'Is after',
|
|
84
|
+
// headerFilterOperatorOnOrAfter: 'Is on or after',
|
|
85
|
+
// headerFilterOperatorBefore: 'Is before',
|
|
86
|
+
// headerFilterOperatorOnOrBefore: 'Is on or before',
|
|
87
|
+
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
|
+
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
|
+
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
+
// headerFilterOperator=: 'Equals',
|
|
91
|
+
// headerFilterOperator!=: 'Not equals',
|
|
92
|
+
// headerFilterOperator>: 'Is greater than',
|
|
93
|
+
// headerFilterOperator>=: 'Is greater than or equal to',
|
|
94
|
+
// headerFilterOperator<: 'Is less than',
|
|
95
|
+
// headerFilterOperator<=: 'Is less than or equal to',
|
|
96
|
+
|
|
69
97
|
// Filter values text
|
|
70
98
|
filterValueAny: '任何值',
|
|
71
99
|
filterValueTrue: '真',
|
package/node/material/index.js
CHANGED
|
@@ -13,6 +13,7 @@ var _Select = _interopRequireDefault(require("@mui/material/Select"));
|
|
|
13
13
|
var _Switch = _interopRequireDefault(require("@mui/material/Switch"));
|
|
14
14
|
var _Button = _interopRequireDefault(require("@mui/material/Button"));
|
|
15
15
|
var _IconButton = _interopRequireDefault(require("@mui/material/IconButton"));
|
|
16
|
+
var _InputAdornment = _interopRequireDefault(require("@mui/material/InputAdornment"));
|
|
16
17
|
var _Tooltip = _interopRequireDefault(require("@mui/material/Tooltip"));
|
|
17
18
|
var _Popper = _interopRequireDefault(require("@mui/material/Popper"));
|
|
18
19
|
var _InputLabel = _interopRequireDefault(require("@mui/material/InputLabel"));
|
|
@@ -65,6 +66,7 @@ const materialSlots = (0, _extends2.default)({}, iconSlots, {
|
|
|
65
66
|
BaseSwitch: _Switch.default,
|
|
66
67
|
BaseButton: _Button.default,
|
|
67
68
|
BaseIconButton: _IconButton.default,
|
|
69
|
+
BaseInputAdornment: _InputAdornment.default,
|
|
68
70
|
BaseTooltip: _Tooltip.default,
|
|
69
71
|
BasePopper: _Popper.default,
|
|
70
72
|
BaseInputLabel: _InputLabel.default,
|
package/node/models/index.js
CHANGED
|
@@ -201,17 +201,6 @@ Object.keys(_gridIconSlotsComponent).forEach(function (key) {
|
|
|
201
201
|
}
|
|
202
202
|
});
|
|
203
203
|
});
|
|
204
|
-
var _gridSlotsComponent = require("./gridSlotsComponent");
|
|
205
|
-
Object.keys(_gridSlotsComponent).forEach(function (key) {
|
|
206
|
-
if (key === "default" || key === "__esModule") return;
|
|
207
|
-
if (key in exports && exports[key] === _gridSlotsComponent[key]) return;
|
|
208
|
-
Object.defineProperty(exports, key, {
|
|
209
|
-
enumerable: true,
|
|
210
|
-
get: function () {
|
|
211
|
-
return _gridSlotsComponent[key];
|
|
212
|
-
}
|
|
213
|
-
});
|
|
214
|
-
});
|
|
215
204
|
var _gridSlotsComponentsProps = require("./gridSlotsComponentsProps");
|
|
216
205
|
Object.keys(_gridSlotsComponentsProps).forEach(function (key) {
|
|
217
206
|
if (key === "default" || key === "__esModule") return;
|