@mui/x-data-grid 8.0.0-alpha.0 → 8.0.0-alpha.1
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 +429 -5
- package/README.md +2 -2
- package/components/GridLoadingOverlay.d.ts +2 -2
- package/components/GridLoadingOverlay.js +4 -4
- package/components/cell/GridCell.js +3 -0
- package/components/columnsManagement/GridColumnsManagement.d.ts +2 -0
- package/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/constants/gridClasses.d.ts +24 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +12 -0
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/index.js +1 -1
- package/internals/index.d.ts +1 -0
- package/internals/index.js +1 -0
- package/joy/joySlots.js +7 -2
- package/locales/arSD.js +13 -0
- package/locales/beBY.js +13 -0
- package/locales/bgBG.js +14 -0
- package/locales/csCZ.js +14 -0
- package/locales/daDK.js +14 -0
- package/locales/deDE.js +14 -0
- package/locales/elGR.js +13 -0
- package/locales/esES.js +18 -4
- package/locales/faIR.js +14 -0
- package/locales/fiFI.js +14 -0
- package/locales/frFR.js +14 -0
- package/locales/heIL.js +14 -0
- package/locales/hrHR.js +14 -0
- package/locales/huHU.js +14 -0
- package/locales/isIS.js +13 -0
- package/locales/itIT.js +14 -0
- package/locales/jaJP.js +14 -0
- package/locales/koKR.js +13 -0
- package/locales/nbNO.js +14 -0
- package/locales/nlNL.js +14 -0
- package/locales/nnNO.js +14 -0
- package/locales/plPL.js +14 -0
- package/locales/ptBR.js +14 -0
- package/locales/ptPT.js +14 -0
- package/locales/roRO.js +13 -0
- package/locales/ruRU.js +14 -0
- package/locales/skSK.js +13 -0
- package/locales/svSE.js +18 -5
- package/locales/trTR.js +14 -0
- package/locales/ukUA.js +13 -0
- package/locales/urPK.js +13 -0
- package/locales/viVN.js +14 -0
- package/locales/zhCN.js +18 -4
- package/locales/zhHK.js +13 -0
- package/locales/zhTW.js +13 -0
- package/models/api/gridLocaleTextApi.d.ts +11 -0
- package/models/colDef/gridColDef.d.ts +4 -0
- package/models/gridDataSource.d.ts +12 -12
- package/modern/components/GridLoadingOverlay.js +4 -4
- package/modern/components/cell/GridCell.js +3 -0
- package/modern/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +12 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/modern/index.js +1 -1
- package/modern/internals/index.js +1 -0
- package/modern/joy/joySlots.js +7 -2
- package/modern/locales/arSD.js +13 -0
- package/modern/locales/beBY.js +13 -0
- package/modern/locales/bgBG.js +14 -0
- package/modern/locales/csCZ.js +14 -0
- package/modern/locales/daDK.js +14 -0
- package/modern/locales/deDE.js +14 -0
- package/modern/locales/elGR.js +13 -0
- package/modern/locales/esES.js +18 -4
- package/modern/locales/faIR.js +14 -0
- package/modern/locales/fiFI.js +14 -0
- package/modern/locales/frFR.js +14 -0
- package/modern/locales/heIL.js +14 -0
- package/modern/locales/hrHR.js +14 -0
- package/modern/locales/huHU.js +14 -0
- package/modern/locales/isIS.js +13 -0
- package/modern/locales/itIT.js +14 -0
- package/modern/locales/jaJP.js +14 -0
- package/modern/locales/koKR.js +13 -0
- package/modern/locales/nbNO.js +14 -0
- package/modern/locales/nlNL.js +14 -0
- package/modern/locales/nnNO.js +14 -0
- package/modern/locales/plPL.js +14 -0
- package/modern/locales/ptBR.js +14 -0
- package/modern/locales/ptPT.js +14 -0
- package/modern/locales/roRO.js +13 -0
- package/modern/locales/ruRU.js +14 -0
- package/modern/locales/skSK.js +13 -0
- package/modern/locales/svSE.js +18 -5
- package/modern/locales/trTR.js +14 -0
- package/modern/locales/ukUA.js +13 -0
- package/modern/locales/urPK.js +13 -0
- package/modern/locales/viVN.js +14 -0
- package/modern/locales/zhCN.js +18 -4
- package/modern/locales/zhHK.js +13 -0
- package/modern/locales/zhTW.js +13 -0
- package/node/components/GridLoadingOverlay.js +4 -4
- package/node/components/cell/GridCell.js +3 -0
- package/node/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +12 -0
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/node/index.js +1 -1
- package/node/internals/index.js +9 -2
- package/node/joy/joySlots.js +7 -2
- package/node/locales/arSD.js +13 -0
- package/node/locales/beBY.js +13 -0
- package/node/locales/bgBG.js +14 -0
- package/node/locales/csCZ.js +14 -0
- package/node/locales/daDK.js +14 -0
- package/node/locales/deDE.js +14 -0
- package/node/locales/elGR.js +13 -0
- package/node/locales/esES.js +18 -4
- package/node/locales/faIR.js +14 -0
- package/node/locales/fiFI.js +14 -0
- package/node/locales/frFR.js +14 -0
- package/node/locales/heIL.js +14 -0
- package/node/locales/hrHR.js +14 -0
- package/node/locales/huHU.js +14 -0
- package/node/locales/isIS.js +13 -0
- package/node/locales/itIT.js +14 -0
- package/node/locales/jaJP.js +14 -0
- package/node/locales/koKR.js +13 -0
- package/node/locales/nbNO.js +14 -0
- package/node/locales/nlNL.js +14 -0
- package/node/locales/nnNO.js +14 -0
- package/node/locales/plPL.js +14 -0
- package/node/locales/ptBR.js +14 -0
- package/node/locales/ptPT.js +14 -0
- package/node/locales/roRO.js +13 -0
- package/node/locales/ruRU.js +14 -0
- package/node/locales/skSK.js +13 -0
- package/node/locales/svSE.js +18 -5
- package/node/locales/trTR.js +14 -0
- package/node/locales/ukUA.js +13 -0
- package/node/locales/urPK.js +13 -0
- package/node/locales/viVN.js +14 -0
- package/node/locales/zhCN.js +18 -4
- package/node/locales/zhHK.js +13 -0
- package/node/locales/zhTW.js +13 -0
- package/package.json +4 -4
package/modern/locales/viVN.js
CHANGED
|
@@ -23,6 +23,18 @@ const viVNGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Tìm kiếm…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Tìm kiếm',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Xóa tìm kiếm',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Xuất',
|
|
28
40
|
toolbarExportLabel: 'Xuất',
|
|
@@ -34,6 +46,8 @@ const viVNGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Không có cột',
|
|
35
47
|
columnsManagementShowHideAllText: 'Hiện/Ẩn Tất cả',
|
|
36
48
|
columnsManagementReset: 'Đặt lại',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Thêm bộ lọc',
|
|
39
53
|
filterPanelRemoveAll: 'Xóa tất cả',
|
package/modern/locales/zhCN.js
CHANGED
|
@@ -23,6 +23,18 @@ const zhCNGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: '搜索…',
|
|
24
24
|
toolbarQuickFilterLabel: '搜索',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: '导出',
|
|
28
40
|
toolbarExportLabel: '导出',
|
|
@@ -34,6 +46,8 @@ const zhCNGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: '没有列',
|
|
35
47
|
columnsManagementShowHideAllText: '显示/隐藏所有',
|
|
36
48
|
columnsManagementReset: '重置',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: '添加筛选器',
|
|
39
53
|
filterPanelRemoveAll: '清除全部',
|
|
@@ -47,9 +61,9 @@ const zhCNGrid = {
|
|
|
47
61
|
filterPanelInputPlaceholder: '筛选值',
|
|
48
62
|
// Filter operators text
|
|
49
63
|
filterOperatorContains: '包含',
|
|
50
|
-
|
|
64
|
+
filterOperatorDoesNotContain: '不包含',
|
|
51
65
|
filterOperatorEquals: '等于',
|
|
52
|
-
|
|
66
|
+
filterOperatorDoesNotEqual: '不等于',
|
|
53
67
|
filterOperatorStartsWith: '开始于',
|
|
54
68
|
filterOperatorEndsWith: '结束于',
|
|
55
69
|
filterOperatorIs: '是',
|
|
@@ -69,9 +83,9 @@ const zhCNGrid = {
|
|
|
69
83
|
'filterOperator<=': '<=',
|
|
70
84
|
// Header filter operators text
|
|
71
85
|
headerFilterOperatorContains: '包含',
|
|
72
|
-
|
|
86
|
+
headerFilterOperatorDoesNotContain: '不包含',
|
|
73
87
|
headerFilterOperatorEquals: '等于',
|
|
74
|
-
|
|
88
|
+
headerFilterOperatorDoesNotEqual: '不等于',
|
|
75
89
|
headerFilterOperatorStartsWith: '开始于',
|
|
76
90
|
headerFilterOperatorEndsWith: '结束于',
|
|
77
91
|
headerFilterOperatorIs: '是',
|
package/modern/locales/zhHK.js
CHANGED
|
@@ -23,6 +23,18 @@ const zhHKGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: '搜尋…',
|
|
24
24
|
toolbarQuickFilterLabel: '搜尋',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: '出口',
|
|
28
40
|
toolbarExportLabel: '出口',
|
|
@@ -34,6 +46,7 @@ const zhHKGrid = {
|
|
|
34
46
|
// columnsManagementNoColumns: 'No columns',
|
|
35
47
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
48
|
// columnsManagementReset: 'Reset',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
50
|
|
|
38
51
|
// Filter panel text
|
|
39
52
|
filterPanelAddFilter: '新增過濾器',
|
package/modern/locales/zhTW.js
CHANGED
|
@@ -23,6 +23,18 @@ const zhTWGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: '搜尋…',
|
|
24
24
|
toolbarQuickFilterLabel: '搜尋',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: '匯出',
|
|
28
40
|
toolbarExportLabel: '匯出',
|
|
@@ -34,6 +46,7 @@ const zhTWGrid = {
|
|
|
34
46
|
// columnsManagementNoColumns: 'No columns',
|
|
35
47
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
48
|
// columnsManagementReset: 'Reset',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
50
|
|
|
38
51
|
// Filter panel text
|
|
39
52
|
filterPanelAddFilter: '增加篩選器',
|
|
@@ -38,8 +38,8 @@ const LOADING_VARIANTS = {
|
|
|
38
38
|
};
|
|
39
39
|
const GridLoadingOverlay = exports.GridLoadingOverlay = /*#__PURE__*/React.forwardRef(function GridLoadingOverlay(props, ref) {
|
|
40
40
|
const {
|
|
41
|
-
variant = '
|
|
42
|
-
noRowsVariant = '
|
|
41
|
+
variant = 'linear-progress',
|
|
42
|
+
noRowsVariant = 'skeleton',
|
|
43
43
|
style
|
|
44
44
|
} = props,
|
|
45
45
|
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
|
|
@@ -60,13 +60,13 @@ process.env.NODE_ENV !== "production" ? GridLoadingOverlay.propTypes = {
|
|
|
60
60
|
// ----------------------------------------------------------------------
|
|
61
61
|
/**
|
|
62
62
|
* The variant of the overlay when no rows are displayed.
|
|
63
|
-
* @default '
|
|
63
|
+
* @default 'skeleton'
|
|
64
64
|
*/
|
|
65
65
|
noRowsVariant: _propTypes.default.oneOf(['circular-progress', 'linear-progress', 'skeleton']),
|
|
66
66
|
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]),
|
|
67
67
|
/**
|
|
68
68
|
* The variant of the overlay.
|
|
69
|
-
* @default '
|
|
69
|
+
* @default 'linear-progress'
|
|
70
70
|
*/
|
|
71
71
|
variant: _propTypes.default.oneOf(['circular-progress', 'linear-progress', 'skeleton'])
|
|
72
72
|
} : void 0;
|
|
@@ -237,6 +237,9 @@ const GridCell = /*#__PURE__*/React.forwardRef(function GridCell(props, ref) {
|
|
|
237
237
|
if (rowSpan > 1) {
|
|
238
238
|
cellStyle.height = `calc(var(--height) * ${rowSpan})`;
|
|
239
239
|
cellStyle.zIndex = 5;
|
|
240
|
+
if (isLeftPinned || isRightPinned) {
|
|
241
|
+
cellStyle.zIndex = 6;
|
|
242
|
+
}
|
|
240
243
|
}
|
|
241
244
|
return cellStyle;
|
|
242
245
|
}, [width, isNotVisible, styleProp, pinnedOffset, pinnedPosition, isRtl, rowSpan]);
|
|
@@ -12,6 +12,8 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
12
12
|
var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
|
|
13
13
|
var _FormControlLabel = _interopRequireDefault(require("@mui/material/FormControlLabel"));
|
|
14
14
|
var _styles = require("@mui/material/styles");
|
|
15
|
+
var _TextField = _interopRequireDefault(require("@mui/material/TextField"));
|
|
16
|
+
var _InputBase = require("@mui/material/InputBase");
|
|
15
17
|
var _gridColumnsSelector = require("../../hooks/features/columns/gridColumnsSelector");
|
|
16
18
|
var _useGridSelector = require("../../hooks/utils/useGridSelector");
|
|
17
19
|
var _useGridApiContext = require("../../hooks/utils/useGridApiContext");
|
|
@@ -29,6 +31,7 @@ const useUtilityClasses = ownerState => {
|
|
|
29
31
|
const slots = {
|
|
30
32
|
root: ['columnsManagement'],
|
|
31
33
|
header: ['columnsManagementHeader'],
|
|
34
|
+
searchInput: ['columnsManagementSearchInput'],
|
|
32
35
|
footer: ['columnsManagementFooter'],
|
|
33
36
|
row: ['columnsManagementRow']
|
|
34
37
|
};
|
|
@@ -51,7 +54,8 @@ function GridColumnsManagement(props) {
|
|
|
51
54
|
disableShowHideToggle = false,
|
|
52
55
|
disableResetButton = false,
|
|
53
56
|
toggleAllMode = 'all',
|
|
54
|
-
getTogglableColumns
|
|
57
|
+
getTogglableColumns,
|
|
58
|
+
searchInputProps
|
|
55
59
|
} = props;
|
|
56
60
|
const isResetDisabled = React.useMemo(() => (0, _utils.checkColumnVisibilityModelsSame)(columnVisibilityModel, initialColumnVisibilityModel), [columnVisibilityModel, initialColumnVisibilityModel]);
|
|
57
61
|
const sortedColumns = React.useMemo(() => {
|
|
@@ -118,28 +122,52 @@ function GridColumnsManagement(props) {
|
|
|
118
122
|
}
|
|
119
123
|
return false;
|
|
120
124
|
};
|
|
125
|
+
const handleSearchReset = React.useCallback(() => {
|
|
126
|
+
setSearchValue('');
|
|
127
|
+
searchInputRef.current.focus();
|
|
128
|
+
}, []);
|
|
121
129
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
122
130
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(GridColumnsManagementHeader, {
|
|
123
131
|
className: classes.header,
|
|
124
132
|
ownerState: rootProps,
|
|
125
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
133
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(SearchInput, (0, _extends2.default)({
|
|
134
|
+
as: rootProps.slots.baseTextField,
|
|
135
|
+
ownerState: rootProps,
|
|
126
136
|
placeholder: apiRef.current.getLocaleText('columnsManagementSearchTitle'),
|
|
127
137
|
inputRef: searchInputRef,
|
|
138
|
+
className: classes.searchInput,
|
|
128
139
|
value: searchValue,
|
|
129
140
|
onChange: handleSearchValueChange,
|
|
130
141
|
variant: "outlined",
|
|
131
142
|
size: "small",
|
|
143
|
+
type: "search",
|
|
132
144
|
InputProps: {
|
|
133
145
|
startAdornment: /*#__PURE__*/(0, _jsxRuntime.jsx)(rootProps.slots.baseInputAdornment, {
|
|
134
146
|
position: "start",
|
|
135
147
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(rootProps.slots.quickFilterIcon, {})
|
|
136
148
|
}),
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
149
|
+
endAdornment: /*#__PURE__*/(0, _jsxRuntime.jsx)(rootProps.slots.baseIconButton, (0, _extends2.default)({
|
|
150
|
+
"aria-label": apiRef.current.getLocaleText('columnsManagementDeleteIconLabel'),
|
|
151
|
+
size: "small",
|
|
152
|
+
sx: [searchValue ? {
|
|
153
|
+
visibility: 'visible'
|
|
154
|
+
} : {
|
|
155
|
+
visibility: 'hidden'
|
|
156
|
+
}],
|
|
157
|
+
tabIndex: -1,
|
|
158
|
+
onClick: handleSearchReset
|
|
159
|
+
}, rootProps.slotProps?.baseIconButton, {
|
|
160
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(rootProps.slots.quickFilterClearIcon, {
|
|
161
|
+
fontSize: "small"
|
|
162
|
+
})
|
|
163
|
+
}))
|
|
164
|
+
},
|
|
165
|
+
inputProps: {
|
|
166
|
+
'aria-label': apiRef.current.getLocaleText('columnsManagementSearchTitle')
|
|
140
167
|
},
|
|
168
|
+
autoComplete: "off",
|
|
141
169
|
fullWidth: true
|
|
142
|
-
}, rootProps.slotProps?.baseTextField))
|
|
170
|
+
}, rootProps.slotProps?.baseTextField, searchInputProps))
|
|
143
171
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(GridColumnsManagementBody, {
|
|
144
172
|
className: classes.root,
|
|
145
173
|
ownerState: rootProps,
|
|
@@ -214,6 +242,7 @@ process.env.NODE_ENV !== "production" ? GridColumnsManagement.propTypes = {
|
|
|
214
242
|
* @returns {GridColDef['field'][]} The list of togglable columns' field names.
|
|
215
243
|
*/
|
|
216
244
|
getTogglableColumns: _propTypes.default.func,
|
|
245
|
+
searchInputProps: _propTypes.default.object,
|
|
217
246
|
searchPredicate: _propTypes.default.func,
|
|
218
247
|
sort: _propTypes.default.oneOf(['asc', 'desc']),
|
|
219
248
|
/**
|
|
@@ -248,6 +277,24 @@ const GridColumnsManagementHeader = (0, _styles.styled)('div', {
|
|
|
248
277
|
}) => ({
|
|
249
278
|
padding: theme.spacing(1.5, 3)
|
|
250
279
|
}));
|
|
280
|
+
const SearchInput = (0, _styles.styled)(_TextField.default, {
|
|
281
|
+
name: 'MuiDataGrid',
|
|
282
|
+
slot: 'ColumnsManagementSearchInput',
|
|
283
|
+
overridesResolver: (props, styles) => styles.columnsManagementSearchInput
|
|
284
|
+
})(({
|
|
285
|
+
theme
|
|
286
|
+
}) => ({
|
|
287
|
+
[`& .${_InputBase.inputBaseClasses.root}`]: {
|
|
288
|
+
padding: theme.spacing(0, 1.5, 0, 1.5)
|
|
289
|
+
},
|
|
290
|
+
[`& .${_InputBase.inputBaseClasses.input}::-webkit-search-decoration,
|
|
291
|
+
& .${_InputBase.inputBaseClasses.input}::-webkit-search-cancel-button,
|
|
292
|
+
& .${_InputBase.inputBaseClasses.input}::-webkit-search-results-button,
|
|
293
|
+
& .${_InputBase.inputBaseClasses.input}::-webkit-search-results-decoration`]: {
|
|
294
|
+
/* clears the 'X' icon from Chrome */
|
|
295
|
+
display: 'none'
|
|
296
|
+
}
|
|
297
|
+
}));
|
|
251
298
|
const GridColumnsManagementFooter = (0, _styles.styled)('div', {
|
|
252
299
|
name: 'MuiDataGrid',
|
|
253
300
|
slot: 'ColumnsManagementFooter',
|
|
@@ -9,4 +9,4 @@ var _utils = require("@mui/utils");
|
|
|
9
9
|
function getDataGridUtilityClass(slot) {
|
|
10
10
|
return (0, _utils.unstable_generateUtilityClass)('MuiDataGrid', slot);
|
|
11
11
|
}
|
|
12
|
-
const gridClasses = exports.gridClasses = (0, _utils.unstable_generateUtilityClasses)('MuiDataGrid', ['actionsCell', 'aggregationColumnHeader', 'aggregationColumnHeader--alignLeft', 'aggregationColumnHeader--alignCenter', 'aggregationColumnHeader--alignRight', 'aggregationColumnHeaderLabel', 'autoHeight', 'autosizing', 'booleanCell', 'cell--editable', 'cell--editing', 'cell--flex', 'cell--textCenter', 'cell--textLeft', 'cell--textRight', 'cell--rangeTop', 'cell--rangeBottom', 'cell--rangeLeft', 'cell--rangeRight', 'cell--pinnedLeft', 'cell--pinnedRight', 'cell--selectionMode', 'cell', 'cellCheckbox', 'cellEmpty', 'cellSkeleton', 'cellOffsetLeft', 'checkboxInput', 'columnHeader', 'columnHeader--alignCenter', 'columnHeader--alignLeft', 'columnHeader--alignRight', 'columnHeader--dragging', 'columnHeader--moving', 'columnHeader--numeric', 'columnHeader--sortable', 'columnHeader--sorted', 'columnHeader--filtered', 'columnHeader--pinnedLeft', 'columnHeader--pinnedRight', 'columnHeader--last', 'columnHeader--lastUnpinned', 'columnHeader--siblingFocused', 'columnHeaderCheckbox', 'columnHeaderDraggableContainer', 'columnHeaderTitle', 'columnHeaderTitleContainer', 'columnHeaderTitleContainerContent', 'columnHeader--filledGroup', 'columnHeader--emptyGroup', 'columnHeaders', 'columnSeparator--resizable', 'columnSeparator--resizing', 'columnSeparator--sideLeft', 'columnSeparator--sideRight', 'columnSeparator', 'columnsManagement', 'columnsManagementRow', 'columnsManagementHeader', 'columnsManagementFooter', 'container--top', 'container--bottom', 'detailPanel', 'detailPanels', 'detailPanelToggleCell', 'detailPanelToggleCell--expanded', 'footerCell', 'panel', 'panelHeader', 'panelWrapper', 'panelContent', 'panelFooter', 'paper', 'editBooleanCell', 'editInputCell', 'filler', 'filler--borderBottom', 'filler--pinnedLeft', 'filler--pinnedRight', 'filterForm', 'filterFormDeleteIcon', 'filterFormLogicOperatorInput', 'filterFormColumnInput', 'filterFormOperatorInput', 'filterFormValueInput', 'filterIcon', 'footerContainer', 'headerFilterRow', 'iconButtonContainer', 'iconSeparator', 'main', 'main--hasPinnedRight', 'main--hasSkeletonLoadingOverlay', 'menu', 'menuIcon', 'menuIconButton', 'menuOpen', 'menuList', 'overlay', 'overlayWrapper', 'overlayWrapperInner', 'root', 'root--densityStandard', 'root--densityComfortable', 'root--densityCompact', 'root--disableUserSelection', 'root--noToolbar', 'row', 'row--editable', 'row--editing', 'row--firstVisible', 'row--lastVisible', 'row--dragging', 'row--dynamicHeight', 'row--detailPanelExpanded', 'row--borderBottom', 'rowReorderCellPlaceholder', 'rowCount', 'rowReorderCellContainer', 'rowReorderCell', 'rowReorderCell--draggable', 'rowSkeleton', 'scrollArea--left', 'scrollArea--right', 'scrollArea', 'scrollbar', 'scrollbar--vertical', 'scrollbar--horizontal', 'scrollbarFiller', 'scrollbarFiller--header', 'scrollbarFiller--borderTop', 'scrollbarFiller--borderBottom', 'scrollbarFiller--pinnedRight', 'selectedRowCount', 'sortIcon', 'toolbarContainer', 'toolbarFilterList', 'virtualScroller', 'virtualScroller--hasScrollX', 'virtualScrollerContent', 'virtualScrollerContent--overflowed', 'virtualScrollerRenderZone', 'pinnedColumns', 'withVerticalBorder', 'withBorderColor', 'cell--withRightBorder', 'cell--withLeftBorder', 'columnHeader--withRightBorder', 'columnHeader--withLeftBorder', 'treeDataGroupingCell', 'treeDataGroupingCellToggle', 'treeDataGroupingCellLoadingContainer', 'groupingCriteriaCell', 'groupingCriteriaCellToggle', 'groupingCriteriaCellLoadingContainer', 'pinnedRows', 'pinnedRows--top', 'pinnedRows--bottom', 'pinnedRowsRenderZone']);
|
|
12
|
+
const gridClasses = exports.gridClasses = (0, _utils.unstable_generateUtilityClasses)('MuiDataGrid', ['actionsCell', 'aggregationColumnHeader', 'aggregationColumnHeader--alignLeft', 'aggregationColumnHeader--alignCenter', 'aggregationColumnHeader--alignRight', 'aggregationColumnHeaderLabel', 'autoHeight', 'autosizing', 'booleanCell', 'cell--editable', 'cell--editing', 'cell--flex', 'cell--textCenter', 'cell--textLeft', 'cell--textRight', 'cell--rangeTop', 'cell--rangeBottom', 'cell--rangeLeft', 'cell--rangeRight', 'cell--pinnedLeft', 'cell--pinnedRight', 'cell--selectionMode', 'cell', 'cellCheckbox', 'cellEmpty', 'cellSkeleton', 'cellOffsetLeft', 'checkboxInput', 'columnHeader', 'columnHeader--alignCenter', 'columnHeader--alignLeft', 'columnHeader--alignRight', 'columnHeader--dragging', 'columnHeader--moving', 'columnHeader--numeric', 'columnHeader--sortable', 'columnHeader--sorted', 'columnHeader--filtered', 'columnHeader--pinnedLeft', 'columnHeader--pinnedRight', 'columnHeader--last', 'columnHeader--lastUnpinned', 'columnHeader--siblingFocused', 'columnHeaderCheckbox', 'columnHeaderDraggableContainer', 'columnHeaderTitle', 'columnHeaderTitleContainer', 'columnHeaderTitleContainerContent', 'columnHeader--filledGroup', 'columnHeader--emptyGroup', 'columnHeaders', 'columnSeparator--resizable', 'columnSeparator--resizing', 'columnSeparator--sideLeft', 'columnSeparator--sideRight', 'columnSeparator', 'columnsManagement', 'columnsManagementRow', 'columnsManagementHeader', 'columnsManagementSearchInput', 'columnsManagementFooter', 'container--top', 'container--bottom', 'detailPanel', 'detailPanels', 'detailPanelToggleCell', 'detailPanelToggleCell--expanded', 'footerCell', 'panel', 'panelHeader', 'panelWrapper', 'panelContent', 'panelFooter', 'paper', 'editBooleanCell', 'editInputCell', 'filler', 'filler--borderBottom', 'filler--pinnedLeft', 'filler--pinnedRight', 'filterForm', 'filterFormDeleteIcon', 'filterFormLogicOperatorInput', 'filterFormColumnInput', 'filterFormOperatorInput', 'filterFormValueInput', 'filterIcon', 'footerContainer', 'headerFilterRow', 'iconButtonContainer', 'iconSeparator', 'main', 'main--hasPinnedRight', 'main--hasSkeletonLoadingOverlay', 'menu', 'menuIcon', 'menuIconButton', 'menuOpen', 'menuList', 'overlay', 'overlayWrapper', 'overlayWrapperInner', 'root', 'root--densityStandard', 'root--densityComfortable', 'root--densityCompact', 'root--disableUserSelection', 'root--noToolbar', 'row', 'row--editable', 'row--editing', 'row--firstVisible', 'row--lastVisible', 'row--dragging', 'row--dynamicHeight', 'row--detailPanelExpanded', 'row--borderBottom', 'rowReorderCellPlaceholder', 'rowCount', 'rowReorderCellContainer', 'rowReorderCell', 'rowReorderCell--draggable', 'rowSkeleton', 'scrollArea--left', 'scrollArea--right', 'scrollArea', 'scrollbar', 'scrollbar--vertical', 'scrollbar--horizontal', 'scrollbarFiller', 'scrollbarFiller--header', 'scrollbarFiller--borderTop', 'scrollbarFiller--borderBottom', 'scrollbarFiller--pinnedRight', 'selectedRowCount', 'sortIcon', 'toolbarContainer', 'toolbarFilterList', 'toolbarPromptControl', 'toolbarPromptControl--recording', 'toolbarPromptControlRecordingIndicator', 'toolbarPromptControlRecordButton', 'toolbarPromptControlSendButton', 'virtualScroller', 'virtualScroller--hasScrollX', 'virtualScrollerContent', 'virtualScrollerContent--overflowed', 'virtualScrollerRenderZone', 'pinnedColumns', 'withVerticalBorder', 'withBorderColor', 'cell--withRightBorder', 'cell--withLeftBorder', 'columnHeader--withRightBorder', 'columnHeader--withLeftBorder', 'treeDataGroupingCell', 'treeDataGroupingCellToggle', 'treeDataGroupingCellLoadingContainer', 'groupingCriteriaCell', 'groupingCriteriaCellToggle', 'groupingCriteriaCellLoadingContainer', 'pinnedRows', 'pinnedRows--top', 'pinnedRows--bottom', 'pinnedRowsRenderZone']);
|
|
@@ -27,6 +27,17 @@ const GRID_DEFAULT_LOCALE_TEXT = exports.GRID_DEFAULT_LOCALE_TEXT = {
|
|
|
27
27
|
toolbarQuickFilterPlaceholder: 'Search…',
|
|
28
28
|
toolbarQuickFilterLabel: 'Search',
|
|
29
29
|
toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
30
|
+
// Prompt toolbar field
|
|
31
|
+
toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
32
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
33
|
+
toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
34
|
+
toolbarPromptControlLabel: 'Prompt input',
|
|
35
|
+
toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
36
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
37
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
38
|
+
toolbarPromptControlSendActionLabel: 'Send',
|
|
39
|
+
toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
40
|
+
toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
30
41
|
// Export selector toolbar button text
|
|
31
42
|
toolbarExport: 'Export',
|
|
32
43
|
toolbarExportLabel: 'Export',
|
|
@@ -38,6 +49,7 @@ const GRID_DEFAULT_LOCALE_TEXT = exports.GRID_DEFAULT_LOCALE_TEXT = {
|
|
|
38
49
|
columnsManagementNoColumns: 'No columns',
|
|
39
50
|
columnsManagementShowHideAllText: 'Show/Hide All',
|
|
40
51
|
columnsManagementReset: 'Reset',
|
|
52
|
+
columnsManagementDeleteIconLabel: 'Clear',
|
|
41
53
|
// Filter panel text
|
|
42
54
|
filterPanelAddFilter: 'Add filter',
|
|
43
55
|
filterPanelRemoveAll: 'Remove all',
|
|
@@ -291,7 +291,7 @@ const useGridColumnHeaders = props => {
|
|
|
291
291
|
fields: headerInfo.fields,
|
|
292
292
|
colIndex: headerInfo.colIndex,
|
|
293
293
|
depth: depth,
|
|
294
|
-
isLastColumn:
|
|
294
|
+
isLastColumn: index === visibleColumnGroupHeader.length - 1,
|
|
295
295
|
maxDepth: headerGroupingMaxDepth,
|
|
296
296
|
height: dimensions.groupHeaderHeight,
|
|
297
297
|
hasFocus: hasFocus,
|
|
@@ -299,7 +299,7 @@ const useGridColumnHeaders = props => {
|
|
|
299
299
|
pinnedPosition: pinnedPosition,
|
|
300
300
|
style: style,
|
|
301
301
|
indexInSection: indexInSection,
|
|
302
|
-
sectionLength:
|
|
302
|
+
sectionLength: visibleColumnGroupHeader.length,
|
|
303
303
|
gridHasFiller: gridHasFiller
|
|
304
304
|
}, index);
|
|
305
305
|
});
|
package/node/index.js
CHANGED
package/node/internals/index.js
CHANGED
|
@@ -11,6 +11,8 @@ var _exportNames = {
|
|
|
11
11
|
GridBaseColumnHeaders: true,
|
|
12
12
|
DATA_GRID_DEFAULT_SLOTS_COMPONENTS: true,
|
|
13
13
|
getGridFilter: true,
|
|
14
|
+
getValueOptions: true,
|
|
15
|
+
isSingleSelectColDef: true,
|
|
14
16
|
useGridRegisterPipeProcessor: true,
|
|
15
17
|
useGridRegisterStrategyProcessor: true,
|
|
16
18
|
GRID_DEFAULT_STRATEGY: true,
|
|
@@ -35,7 +37,6 @@ var _exportNames = {
|
|
|
35
37
|
passFilterLogic: true,
|
|
36
38
|
gridFilteredChildrenCountLookupSelector: true,
|
|
37
39
|
gridExpandedSortedRowTreeLevelPositionLookupSelector: true,
|
|
38
|
-
isSingleSelectColDef: true,
|
|
39
40
|
useGridFocus: true,
|
|
40
41
|
focusStateInitializer: true,
|
|
41
42
|
useGridKeyboardNavigation: true,
|
|
@@ -302,6 +303,12 @@ Object.defineProperty(exports, "getTreeNodeDescendants", {
|
|
|
302
303
|
return _gridRowsUtils.getTreeNodeDescendants;
|
|
303
304
|
}
|
|
304
305
|
});
|
|
306
|
+
Object.defineProperty(exports, "getValueOptions", {
|
|
307
|
+
enumerable: true,
|
|
308
|
+
get: function () {
|
|
309
|
+
return _filterPanelUtils.getValueOptions;
|
|
310
|
+
}
|
|
311
|
+
});
|
|
305
312
|
Object.defineProperty(exports, "getVisibleRows", {
|
|
306
313
|
enumerable: true,
|
|
307
314
|
get: function () {
|
|
@@ -705,6 +712,7 @@ var _GridHeaders = require("../components/GridHeaders");
|
|
|
705
712
|
var _GridBaseColumnHeaders = require("../components/columnHeaders/GridBaseColumnHeaders");
|
|
706
713
|
var _defaultGridSlotsComponents = require("../constants/defaultGridSlotsComponents");
|
|
707
714
|
var _GridFilterPanel = require("../components/panel/filterPanel/GridFilterPanel");
|
|
715
|
+
var _filterPanelUtils = require("../components/panel/filterPanel/filterPanelUtils");
|
|
708
716
|
var _pipeProcessing = require("../hooks/core/pipeProcessing");
|
|
709
717
|
var _strategyProcessing = require("../hooks/core/strategyProcessing");
|
|
710
718
|
var _useGridInitialization = require("../hooks/core/useGridInitialization");
|
|
@@ -757,7 +765,6 @@ var _useGridPrintExport = require("../hooks/features/export/useGridPrintExport")
|
|
|
757
765
|
var _useGridFilter = require("../hooks/features/filter/useGridFilter");
|
|
758
766
|
var _gridFilterUtils = require("../hooks/features/filter/gridFilterUtils");
|
|
759
767
|
var _gridFilterSelector = require("../hooks/features/filter/gridFilterSelector");
|
|
760
|
-
var _filterPanelUtils = require("../components/panel/filterPanel/filterPanelUtils");
|
|
761
768
|
var _useGridFocus = require("../hooks/features/focus/useGridFocus");
|
|
762
769
|
var _useGridKeyboardNavigation = require("../hooks/features/keyboardNavigation/useGridKeyboardNavigation");
|
|
763
770
|
var _useGridPagination = require("../hooks/features/pagination/useGridPagination");
|
package/node/joy/joySlots.js
CHANGED
|
@@ -30,7 +30,7 @@ var _useGridRootProps = require("../hooks/utils/useGridRootProps");
|
|
|
30
30
|
var _hooks = require("../hooks");
|
|
31
31
|
var _GridOverlay = require("../components/containers/GridOverlay");
|
|
32
32
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
33
|
-
const _excluded = ["slotProps", "variant", "color", "sx"],
|
|
33
|
+
const _excluded = ["slotProps", "variant", "color", "sx", "anchorOrigin"],
|
|
34
34
|
_excluded2 = ["touchRippleRef", "inputProps", "onChange", "color", "size", "checked", "sx", "value", "inputRef"],
|
|
35
35
|
_excluded3 = ["onChange", "label", "placeholder", "value", "inputRef", "type", "size", "variant"],
|
|
36
36
|
_excluded4 = ["startIcon", "color", "endIcon", "size", "sx", "variant"],
|
|
@@ -72,10 +72,15 @@ function convertVariant(variant, defaultVariant = 'plain') {
|
|
|
72
72
|
const Badge = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
73
73
|
let {
|
|
74
74
|
color,
|
|
75
|
-
sx
|
|
75
|
+
sx,
|
|
76
|
+
anchorOrigin
|
|
76
77
|
} = _ref,
|
|
77
78
|
props = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded);
|
|
78
79
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Badge.default, (0, _extends2.default)({}, props, {
|
|
80
|
+
anchorOrigin: anchorOrigin?.horizontal && anchorOrigin?.vertical ? anchorOrigin : {
|
|
81
|
+
vertical: 'top',
|
|
82
|
+
horizontal: 'right'
|
|
83
|
+
},
|
|
79
84
|
color: convertColor(color),
|
|
80
85
|
variant: "plain",
|
|
81
86
|
sx: sx,
|
package/node/locales/arSD.js
CHANGED
|
@@ -29,6 +29,18 @@ const arSDGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'بحث...',
|
|
30
30
|
toolbarQuickFilterLabel: 'بحث',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'أزال',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'تصدير',
|
|
34
46
|
toolbarExportLabel: 'تصدير',
|
|
@@ -40,6 +52,7 @@ const arSDGrid = {
|
|
|
40
52
|
// columnsManagementNoColumns: 'No columns',
|
|
41
53
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
54
|
// columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: 'إضافة مرشِح',
|
package/node/locales/beBY.js
CHANGED
|
@@ -43,6 +43,18 @@ const beBYGrid = {
|
|
|
43
43
|
toolbarQuickFilterPlaceholder: 'Пошук…',
|
|
44
44
|
toolbarQuickFilterLabel: 'Пошук',
|
|
45
45
|
toolbarQuickFilterDeleteIconLabel: 'Ачысціць',
|
|
46
|
+
// Prompt toolbar field
|
|
47
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
48
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
49
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
50
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
51
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
52
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
53
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
54
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
55
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
56
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
57
|
+
|
|
46
58
|
// Export selector toolbar button text
|
|
47
59
|
toolbarExport: 'Экспарт',
|
|
48
60
|
toolbarExportLabel: 'Экспарт',
|
|
@@ -54,6 +66,7 @@ const beBYGrid = {
|
|
|
54
66
|
// columnsManagementNoColumns: 'No columns',
|
|
55
67
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
56
68
|
// columnsManagementReset: 'Reset',
|
|
69
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
57
70
|
|
|
58
71
|
// Filter panel text
|
|
59
72
|
filterPanelAddFilter: 'Дадаць фільтр',
|
package/node/locales/bgBG.js
CHANGED
|
@@ -29,6 +29,18 @@ const bgBGGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Търси…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Търсене',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Изчисти',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Изтегли',
|
|
34
46
|
toolbarExportLabel: 'Изтегли',
|
|
@@ -40,6 +52,8 @@ const bgBGGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Няма колони',
|
|
41
53
|
columnsManagementShowHideAllText: 'Покажи/Скрий Всичко',
|
|
42
54
|
columnsManagementReset: 'Нулирай',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Добави Филтър',
|
|
45
59
|
filterPanelRemoveAll: 'Премахни всички',
|
package/node/locales/csCZ.js
CHANGED
|
@@ -37,6 +37,18 @@ const csCZGrid = {
|
|
|
37
37
|
toolbarQuickFilterPlaceholder: 'Hledat…',
|
|
38
38
|
toolbarQuickFilterLabel: 'Hledat',
|
|
39
39
|
toolbarQuickFilterDeleteIconLabel: 'Vymazat',
|
|
40
|
+
// Prompt toolbar field
|
|
41
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
42
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
43
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
44
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
45
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
46
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
47
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
48
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
49
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
50
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
51
|
+
|
|
40
52
|
// Export selector toolbar button text
|
|
41
53
|
toolbarExport: 'Export',
|
|
42
54
|
toolbarExportLabel: 'Export',
|
|
@@ -48,6 +60,8 @@ const csCZGrid = {
|
|
|
48
60
|
columnsManagementNoColumns: 'Žádné sloupce',
|
|
49
61
|
columnsManagementShowHideAllText: 'Zobrazit/skrýt vše',
|
|
50
62
|
columnsManagementReset: 'Resetovat',
|
|
63
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
64
|
+
|
|
51
65
|
// Filter panel text
|
|
52
66
|
filterPanelAddFilter: 'Přidat filtr',
|
|
53
67
|
filterPanelRemoveAll: 'Odstranit vše',
|
package/node/locales/daDK.js
CHANGED
|
@@ -29,6 +29,18 @@ const daDKGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Søg…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Søg',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Ryd',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Eksport',
|
|
34
46
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -40,6 +52,8 @@ const daDKGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Ingen søjler',
|
|
41
53
|
columnsManagementShowHideAllText: 'Vis/Skjul Alle',
|
|
42
54
|
columnsManagementReset: 'Nulstil',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Tilføj filter',
|
|
45
59
|
filterPanelRemoveAll: 'Fjern alle',
|
package/node/locales/deDE.js
CHANGED
|
@@ -29,6 +29,18 @@ const deDEGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Suchen…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Suchen',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Löschen',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Exportieren',
|
|
34
46
|
toolbarExportLabel: 'Exportieren',
|
|
@@ -40,6 +52,8 @@ const deDEGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Keine Spalten',
|
|
41
53
|
columnsManagementShowHideAllText: 'Alle anzeigen/verbergen',
|
|
42
54
|
columnsManagementReset: 'Zurücksetzen',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Filter hinzufügen',
|
|
45
59
|
filterPanelRemoveAll: 'Alle entfernen',
|
package/node/locales/elGR.js
CHANGED
|
@@ -29,6 +29,18 @@ const elGRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Αναζήτηση…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Αναζήτηση',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Καθαρισμός',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Εξαγωγή',
|
|
34
46
|
toolbarExportLabel: 'Εξαγωγή',
|
|
@@ -40,6 +52,7 @@ const elGRGrid = {
|
|
|
40
52
|
// columnsManagementNoColumns: 'No columns',
|
|
41
53
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
54
|
// columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: 'Προσθήκη φίλτρου',
|