@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
|
@@ -236,6 +236,10 @@ export interface GridClasses {
|
|
|
236
236
|
* Styles applied to the columns management header element.
|
|
237
237
|
*/
|
|
238
238
|
columnsManagementHeader: string;
|
|
239
|
+
/**
|
|
240
|
+
* Styles applied to the columns management search input element.
|
|
241
|
+
*/
|
|
242
|
+
columnsManagementSearchInput: string;
|
|
239
243
|
/**
|
|
240
244
|
* Styles applied to the columns management footer element.
|
|
241
245
|
*/
|
|
@@ -582,6 +586,26 @@ export interface GridClasses {
|
|
|
582
586
|
* Styles applied to the toolbar filter list element.
|
|
583
587
|
*/
|
|
584
588
|
toolbarFilterList: string;
|
|
589
|
+
/**
|
|
590
|
+
* Styles applied to the toolbar prompt control element.
|
|
591
|
+
*/
|
|
592
|
+
toolbarPromptControl: string;
|
|
593
|
+
/**
|
|
594
|
+
* Styles applied to the toolbar prompt control element when recording.
|
|
595
|
+
*/
|
|
596
|
+
'toolbarPromptControl--recording': string;
|
|
597
|
+
/**
|
|
598
|
+
* Styles applied to the toolbar prompt control recording indicator element.
|
|
599
|
+
*/
|
|
600
|
+
toolbarPromptControlRecordingIndicator: string;
|
|
601
|
+
/**
|
|
602
|
+
* Styles applied to the toolbar prompt control record button element.
|
|
603
|
+
*/
|
|
604
|
+
toolbarPromptControlRecordButton: string;
|
|
605
|
+
/**
|
|
606
|
+
* Styles applied to the toolbar prompt control send button element.
|
|
607
|
+
*/
|
|
608
|
+
toolbarPromptControlSendButton: string;
|
|
585
609
|
/**
|
|
586
610
|
* Styles applied the grid if `showColumnVerticalBorder={true}`.
|
|
587
611
|
*/
|
package/constants/gridClasses.js
CHANGED
|
@@ -2,4 +2,4 @@ import { unstable_generateUtilityClasses as generateUtilityClasses, unstable_gen
|
|
|
2
2
|
export function getDataGridUtilityClass(slot) {
|
|
3
3
|
return generateUtilityClass('MuiDataGrid', slot);
|
|
4
4
|
}
|
|
5
|
-
export const gridClasses = 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']);
|
|
5
|
+
export const gridClasses = 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']);
|
|
@@ -21,6 +21,17 @@ export const GRID_DEFAULT_LOCALE_TEXT = {
|
|
|
21
21
|
toolbarQuickFilterPlaceholder: 'Search…',
|
|
22
22
|
toolbarQuickFilterLabel: 'Search',
|
|
23
23
|
toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
24
|
+
// Prompt toolbar field
|
|
25
|
+
toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
26
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
27
|
+
toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
28
|
+
toolbarPromptControlLabel: 'Prompt input',
|
|
29
|
+
toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
30
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
31
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
32
|
+
toolbarPromptControlSendActionLabel: 'Send',
|
|
33
|
+
toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
34
|
+
toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
24
35
|
// Export selector toolbar button text
|
|
25
36
|
toolbarExport: 'Export',
|
|
26
37
|
toolbarExportLabel: 'Export',
|
|
@@ -32,6 +43,7 @@ export const GRID_DEFAULT_LOCALE_TEXT = {
|
|
|
32
43
|
columnsManagementNoColumns: 'No columns',
|
|
33
44
|
columnsManagementShowHideAllText: 'Show/Hide All',
|
|
34
45
|
columnsManagementReset: 'Reset',
|
|
46
|
+
columnsManagementDeleteIconLabel: 'Clear',
|
|
35
47
|
// Filter panel text
|
|
36
48
|
filterPanelAddFilter: 'Add filter',
|
|
37
49
|
filterPanelRemoveAll: 'Remove all',
|
|
@@ -283,7 +283,7 @@ export const useGridColumnHeaders = props => {
|
|
|
283
283
|
fields: headerInfo.fields,
|
|
284
284
|
colIndex: headerInfo.colIndex,
|
|
285
285
|
depth: depth,
|
|
286
|
-
isLastColumn:
|
|
286
|
+
isLastColumn: index === visibleColumnGroupHeader.length - 1,
|
|
287
287
|
maxDepth: headerGroupingMaxDepth,
|
|
288
288
|
height: dimensions.groupHeaderHeight,
|
|
289
289
|
hasFocus: hasFocus,
|
|
@@ -291,7 +291,7 @@ export const useGridColumnHeaders = props => {
|
|
|
291
291
|
pinnedPosition: pinnedPosition,
|
|
292
292
|
style: style,
|
|
293
293
|
indexInSection: indexInSection,
|
|
294
|
-
sectionLength:
|
|
294
|
+
sectionLength: visibleColumnGroupHeader.length,
|
|
295
295
|
gridHasFiller: gridHasFiller
|
|
296
296
|
}, index);
|
|
297
297
|
});
|
package/index.js
CHANGED
package/internals/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { GridHeaders } from '../components/GridHeaders';
|
|
|
8
8
|
export { GridBaseColumnHeaders } from '../components/columnHeaders/GridBaseColumnHeaders';
|
|
9
9
|
export { DATA_GRID_DEFAULT_SLOTS_COMPONENTS } from '../constants/defaultGridSlotsComponents';
|
|
10
10
|
export { getGridFilter } from '../components/panel/filterPanel/GridFilterPanel';
|
|
11
|
+
export { getValueOptions } from '../components/panel/filterPanel/filterPanelUtils';
|
|
11
12
|
export { useGridRegisterPipeProcessor } from '../hooks/core/pipeProcessing';
|
|
12
13
|
export type { GridPipeProcessor } from '../hooks/core/pipeProcessing';
|
|
13
14
|
export { useGridRegisterStrategyProcessor, GRID_DEFAULT_STRATEGY, } from '../hooks/core/strategyProcessing';
|
package/internals/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export { GridHeaders } from "../components/GridHeaders.js";
|
|
|
5
5
|
export { GridBaseColumnHeaders } from "../components/columnHeaders/GridBaseColumnHeaders.js";
|
|
6
6
|
export { DATA_GRID_DEFAULT_SLOTS_COMPONENTS } from "../constants/defaultGridSlotsComponents.js";
|
|
7
7
|
export { getGridFilter } from "../components/panel/filterPanel/GridFilterPanel.js";
|
|
8
|
+
export { getValueOptions } from "../components/panel/filterPanel/filterPanelUtils.js";
|
|
8
9
|
export { useGridRegisterPipeProcessor } from "../hooks/core/pipeProcessing/index.js";
|
|
9
10
|
export { useGridRegisterStrategyProcessor, GRID_DEFAULT_STRATEGY } from "../hooks/core/strategyProcessing/index.js";
|
|
10
11
|
export { useGridInitialization } from "../hooks/core/useGridInitialization.js";
|
package/joy/joySlots.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
2
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
3
|
-
const _excluded = ["slotProps", "variant", "color", "sx"],
|
|
3
|
+
const _excluded = ["slotProps", "variant", "color", "sx", "anchorOrigin"],
|
|
4
4
|
_excluded2 = ["touchRippleRef", "inputProps", "onChange", "color", "size", "checked", "sx", "value", "inputRef"],
|
|
5
5
|
_excluded3 = ["onChange", "label", "placeholder", "value", "inputRef", "type", "size", "variant"],
|
|
6
6
|
_excluded4 = ["startIcon", "color", "endIcon", "size", "sx", "variant"],
|
|
@@ -64,10 +64,15 @@ function convertVariant(variant, defaultVariant = 'plain') {
|
|
|
64
64
|
const Badge = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
65
65
|
let {
|
|
66
66
|
color,
|
|
67
|
-
sx
|
|
67
|
+
sx,
|
|
68
|
+
anchorOrigin
|
|
68
69
|
} = _ref,
|
|
69
70
|
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
70
71
|
return /*#__PURE__*/_jsx(JoyBadge, _extends({}, props, {
|
|
72
|
+
anchorOrigin: anchorOrigin?.horizontal && anchorOrigin?.vertical ? anchorOrigin : {
|
|
73
|
+
vertical: 'top',
|
|
74
|
+
horizontal: 'right'
|
|
75
|
+
},
|
|
71
76
|
color: convertColor(color),
|
|
72
77
|
variant: "plain",
|
|
73
78
|
sx: sx,
|
package/locales/arSD.js
CHANGED
|
@@ -23,6 +23,18 @@ const arSDGrid = {
|
|
|
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 arSDGrid = {
|
|
|
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/locales/beBY.js
CHANGED
|
@@ -37,6 +37,18 @@ const beBYGrid = {
|
|
|
37
37
|
toolbarQuickFilterPlaceholder: 'Пошук…',
|
|
38
38
|
toolbarQuickFilterLabel: 'Пошук',
|
|
39
39
|
toolbarQuickFilterDeleteIconLabel: 'Ачысціць',
|
|
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: 'Экспарт',
|
|
42
54
|
toolbarExportLabel: 'Экспарт',
|
|
@@ -48,6 +60,7 @@ const beBYGrid = {
|
|
|
48
60
|
// columnsManagementNoColumns: 'No columns',
|
|
49
61
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
50
62
|
// columnsManagementReset: 'Reset',
|
|
63
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
51
64
|
|
|
52
65
|
// Filter panel text
|
|
53
66
|
filterPanelAddFilter: 'Дадаць фільтр',
|
package/locales/bgBG.js
CHANGED
|
@@ -23,6 +23,18 @@ const bgBGGrid = {
|
|
|
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 bgBGGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Няма колони',
|
|
35
47
|
columnsManagementShowHideAllText: 'Покажи/Скрий Всичко',
|
|
36
48
|
columnsManagementReset: 'Нулирай',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Добави Филтър',
|
|
39
53
|
filterPanelRemoveAll: 'Премахни всички',
|
package/locales/csCZ.js
CHANGED
|
@@ -31,6 +31,18 @@ const csCZGrid = {
|
|
|
31
31
|
toolbarQuickFilterPlaceholder: 'Hledat…',
|
|
32
32
|
toolbarQuickFilterLabel: 'Hledat',
|
|
33
33
|
toolbarQuickFilterDeleteIconLabel: 'Vymazat',
|
|
34
|
+
// Prompt toolbar field
|
|
35
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
36
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
37
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
38
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
39
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
40
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
41
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
42
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
43
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
44
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
45
|
+
|
|
34
46
|
// Export selector toolbar button text
|
|
35
47
|
toolbarExport: 'Export',
|
|
36
48
|
toolbarExportLabel: 'Export',
|
|
@@ -42,6 +54,8 @@ const csCZGrid = {
|
|
|
42
54
|
columnsManagementNoColumns: 'Žádné sloupce',
|
|
43
55
|
columnsManagementShowHideAllText: 'Zobrazit/skrýt vše',
|
|
44
56
|
columnsManagementReset: 'Resetovat',
|
|
57
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
58
|
+
|
|
45
59
|
// Filter panel text
|
|
46
60
|
filterPanelAddFilter: 'Přidat filtr',
|
|
47
61
|
filterPanelRemoveAll: 'Odstranit vše',
|
package/locales/daDK.js
CHANGED
|
@@ -23,6 +23,18 @@ const daDKGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Søg…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Søg',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Ryd',
|
|
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: 'Eksport',
|
|
28
40
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -34,6 +46,8 @@ const daDKGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Ingen søjler',
|
|
35
47
|
columnsManagementShowHideAllText: 'Vis/Skjul Alle',
|
|
36
48
|
columnsManagementReset: 'Nulstil',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Tilføj filter',
|
|
39
53
|
filterPanelRemoveAll: 'Fjern alle',
|
package/locales/deDE.js
CHANGED
|
@@ -23,6 +23,18 @@ const deDEGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Suchen…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Suchen',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Löschen',
|
|
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: 'Exportieren',
|
|
28
40
|
toolbarExportLabel: 'Exportieren',
|
|
@@ -34,6 +46,8 @@ const deDEGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Keine Spalten',
|
|
35
47
|
columnsManagementShowHideAllText: 'Alle anzeigen/verbergen',
|
|
36
48
|
columnsManagementReset: 'Zurücksetzen',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Filter hinzufügen',
|
|
39
53
|
filterPanelRemoveAll: 'Alle entfernen',
|
package/locales/elGR.js
CHANGED
|
@@ -23,6 +23,18 @@ const elGRGrid = {
|
|
|
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 elGRGrid = {
|
|
|
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/locales/esES.js
CHANGED
|
@@ -23,6 +23,18 @@ const esESGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Buscar…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Buscar',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Limpiar',
|
|
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: 'Exportar',
|
|
28
40
|
toolbarExportLabel: 'Exportar',
|
|
@@ -34,6 +46,8 @@ const esESGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Sin columnas',
|
|
35
47
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar todas',
|
|
36
48
|
columnsManagementReset: 'Restablecer',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Agregar filtro',
|
|
39
53
|
filterPanelRemoveAll: 'Remover todos',
|
|
@@ -47,9 +61,9 @@ const esESGrid = {
|
|
|
47
61
|
filterPanelInputPlaceholder: 'Valor de filtro',
|
|
48
62
|
// Filter operators text
|
|
49
63
|
filterOperatorContains: 'contiene',
|
|
50
|
-
|
|
64
|
+
filterOperatorDoesNotContain: 'no contiene',
|
|
51
65
|
filterOperatorEquals: 'es igual',
|
|
52
|
-
|
|
66
|
+
filterOperatorDoesNotEqual: 'es diferente a',
|
|
53
67
|
filterOperatorStartsWith: 'comienza con',
|
|
54
68
|
filterOperatorEndsWith: 'termina con',
|
|
55
69
|
filterOperatorIs: 'es',
|
|
@@ -69,9 +83,9 @@ const esESGrid = {
|
|
|
69
83
|
'filterOperator<=': '<=',
|
|
70
84
|
// Header filter operators text
|
|
71
85
|
headerFilterOperatorContains: 'Contiene',
|
|
72
|
-
|
|
86
|
+
headerFilterOperatorDoesNotContain: 'No contiene',
|
|
73
87
|
headerFilterOperatorEquals: 'Es igual a',
|
|
74
|
-
|
|
88
|
+
headerFilterOperatorDoesNotEqual: 'Es diferente a',
|
|
75
89
|
headerFilterOperatorStartsWith: 'Comienza con',
|
|
76
90
|
headerFilterOperatorEndsWith: 'Termina con',
|
|
77
91
|
headerFilterOperatorIs: 'Es',
|
package/locales/faIR.js
CHANGED
|
@@ -23,6 +23,18 @@ const faIRGrid = {
|
|
|
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 faIRGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'بدون سطر',
|
|
35
47
|
columnsManagementShowHideAllText: 'نمایش/مخفی کردن همه',
|
|
36
48
|
columnsManagementReset: 'بازنشانی',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'افزودن فیلتر',
|
|
39
53
|
filterPanelRemoveAll: 'حذف همه',
|
package/locales/fiFI.js
CHANGED
|
@@ -23,6 +23,18 @@ const fiFIGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Hae…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Hae',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Tyhjennä',
|
|
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: 'Vie',
|
|
28
40
|
toolbarExportLabel: 'Vie',
|
|
@@ -34,6 +46,8 @@ const fiFIGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Ei sarakkeita näytettäväksi',
|
|
35
47
|
columnsManagementShowHideAllText: 'Näytä/Piilota kaikki',
|
|
36
48
|
columnsManagementReset: 'Palauta',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Lisää suodatin',
|
|
39
53
|
filterPanelRemoveAll: 'Poista kaikki',
|
package/locales/frFR.js
CHANGED
|
@@ -23,6 +23,18 @@ const frFRGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Rechercher…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Recherche',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
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: 'Exporter',
|
|
28
40
|
toolbarExportLabel: 'Exporter',
|
|
@@ -34,6 +46,8 @@ const frFRGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Pas de colonnes',
|
|
35
47
|
columnsManagementShowHideAllText: 'Afficher/masquer toutes',
|
|
36
48
|
columnsManagementReset: 'Réinitialiser',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Ajouter un filtre',
|
|
39
53
|
filterPanelRemoveAll: 'Tout supprimer',
|
package/locales/heIL.js
CHANGED
|
@@ -23,6 +23,18 @@ const heILGrid = {
|
|
|
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 heILGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'אין עמודות',
|
|
35
47
|
columnsManagementShowHideAllText: 'הצג/הסתר הכל',
|
|
36
48
|
columnsManagementReset: 'אתחול',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'הוסף מסנן',
|
|
39
53
|
filterPanelRemoveAll: 'מחק הכל',
|
package/locales/hrHR.js
CHANGED
|
@@ -31,6 +31,18 @@ const hrHRGrid = {
|
|
|
31
31
|
toolbarQuickFilterPlaceholder: 'Traži…',
|
|
32
32
|
toolbarQuickFilterLabel: 'traži',
|
|
33
33
|
toolbarQuickFilterDeleteIconLabel: 'Obriši',
|
|
34
|
+
// Prompt toolbar field
|
|
35
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
36
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
37
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
38
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
39
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
40
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
41
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
42
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
43
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
44
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
45
|
+
|
|
34
46
|
// Export selector toolbar button text
|
|
35
47
|
toolbarExport: 'Izvoz',
|
|
36
48
|
toolbarExportLabel: 'Izvoz',
|
|
@@ -42,6 +54,8 @@ const hrHRGrid = {
|
|
|
42
54
|
columnsManagementNoColumns: 'Nema stupaca',
|
|
43
55
|
columnsManagementShowHideAllText: 'Prikaži/Sakrij sve',
|
|
44
56
|
columnsManagementReset: 'Ponovno namjesti',
|
|
57
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
58
|
+
|
|
45
59
|
// Filter panel text
|
|
46
60
|
filterPanelAddFilter: 'Dodaj filter',
|
|
47
61
|
filterPanelRemoveAll: 'Ukloni sve',
|
package/locales/huHU.js
CHANGED
|
@@ -23,6 +23,18 @@ const huHUGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Keresés…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Keresés',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Törlés',
|
|
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: 'Exportálás',
|
|
28
40
|
toolbarExportLabel: 'Exportálás',
|
|
@@ -34,6 +46,8 @@ const huHUGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Nincsenek oszlopok',
|
|
35
47
|
columnsManagementShowHideAllText: 'Összes',
|
|
36
48
|
columnsManagementReset: 'Visszavon',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Szűrő hozzáadása',
|
|
39
53
|
filterPanelRemoveAll: 'Összes törlése',
|
package/locales/isIS.js
CHANGED
|
@@ -23,6 +23,18 @@ const isISGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Leita…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Leita',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Eyða',
|
|
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: 'Flytja út',
|
|
28
40
|
toolbarExportLabel: 'Flytja út',
|
|
@@ -34,6 +46,7 @@ const isISGrid = {
|
|
|
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: 'Bæta síu',
|