@mui/x-data-grid 8.0.0-alpha.0 → 8.0.0-alpha.2
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 +651 -6
- package/DataGrid/DataGrid.js +9 -9
- package/README.md +2 -2
- package/components/GridLoadingOverlay.d.ts +2 -2
- package/components/GridLoadingOverlay.js +4 -4
- package/components/GridPagination.js +2 -1
- package/components/base/GridOverlays.d.ts +4 -3
- package/components/base/GridOverlays.js +2 -24
- package/components/base/index.d.ts +0 -1
- package/components/base/index.js +1 -2
- package/components/cell/GridCell.js +10 -10
- package/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/components/columnSelection/GridHeaderCheckbox.js +2 -3
- package/components/columnsManagement/GridColumnsManagement.d.ts +2 -0
- package/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/components/toolbar/GridToolbarColumnsButton.js +3 -4
- package/components/toolbar/GridToolbarDensitySelector.js +3 -4
- package/components/toolbar/GridToolbarExportContainer.js +3 -4
- package/components/toolbar/GridToolbarFilterButton.d.ts +2 -0
- package/components/toolbar/GridToolbarFilterButton.js +7 -6
- package/components/toolbar/GridToolbarQuickFilter.js +1 -0
- package/components/virtualization/GridVirtualScroller.js +5 -3
- package/constants/dataGridPropsDefaultValues.js +2 -3
- package/constants/gridClasses.d.ts +24 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +11 -0
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/hooks/features/dimensions/gridDimensionsApi.d.ts +0 -4
- package/hooks/features/dimensions/useGridDimensions.js +3 -19
- package/hooks/features/index.d.ts +1 -0
- package/hooks/features/index.js +1 -0
- package/hooks/features/listView/gridListViewSelectors.d.ts +3 -1
- package/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/hooks/features/listView/index.d.ts +1 -0
- package/hooks/features/listView/index.js +1 -0
- package/hooks/features/overlays/useGridOverlays.d.ts +7 -4
- package/hooks/features/overlays/useGridOverlays.js +19 -1
- package/hooks/features/rowSelection/useGridRowSelection.js +0 -9
- package/hooks/features/rowSelection/utils.js +2 -2
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +1 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
- 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 +12 -0
- package/locales/beBY.js +12 -0
- package/locales/bgBG.js +13 -0
- package/locales/csCZ.js +13 -0
- package/locales/daDK.js +13 -0
- package/locales/deDE.js +11 -0
- package/locales/elGR.js +12 -0
- package/locales/esES.js +15 -4
- package/locales/faIR.js +13 -0
- package/locales/fiFI.js +13 -0
- package/locales/frFR.js +13 -0
- package/locales/heIL.js +13 -0
- package/locales/hrHR.js +13 -0
- package/locales/huHU.js +13 -0
- package/locales/isIS.js +12 -0
- package/locales/itIT.js +13 -0
- package/locales/jaJP.js +13 -0
- package/locales/koKR.js +12 -0
- package/locales/nbNO.js +13 -0
- package/locales/nlNL.js +13 -0
- package/locales/nnNO.js +13 -0
- package/locales/plPL.js +13 -0
- package/locales/ptBR.js +11 -0
- package/locales/ptPT.js +11 -0
- package/locales/roRO.js +12 -0
- package/locales/ruRU.js +13 -0
- package/locales/skSK.js +12 -0
- package/locales/svSE.js +17 -5
- package/locales/trTR.js +13 -0
- package/locales/ukUA.js +12 -0
- package/locales/urPK.js +12 -0
- package/locales/viVN.js +13 -0
- package/locales/zhCN.js +15 -4
- package/locales/zhHK.js +12 -0
- package/locales/zhTW.js +12 -0
- package/models/api/gridCoreApi.d.ts +1 -1
- package/models/api/gridLocaleTextApi.d.ts +10 -0
- package/models/colDef/gridColDef.d.ts +28 -24
- package/models/gridDataSource.d.ts +12 -12
- package/models/props/DataGridProps.d.ts +9 -9
- package/modern/DataGrid/DataGrid.js +9 -9
- package/modern/components/GridLoadingOverlay.js +4 -4
- package/modern/components/GridPagination.js +2 -1
- package/modern/components/base/GridOverlays.js +2 -24
- package/modern/components/base/index.js +1 -2
- package/modern/components/cell/GridCell.js +10 -10
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/modern/components/columnSelection/GridHeaderCheckbox.js +2 -3
- package/modern/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/modern/components/toolbar/GridToolbarColumnsButton.js +3 -4
- package/modern/components/toolbar/GridToolbarDensitySelector.js +3 -4
- package/modern/components/toolbar/GridToolbarExportContainer.js +3 -4
- package/modern/components/toolbar/GridToolbarFilterButton.js +7 -6
- package/modern/components/toolbar/GridToolbarQuickFilter.js +1 -0
- package/modern/components/virtualization/GridVirtualScroller.js +5 -3
- package/modern/constants/dataGridPropsDefaultValues.js +2 -3
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +11 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/modern/hooks/features/dimensions/useGridDimensions.js +3 -19
- package/modern/hooks/features/index.js +1 -0
- package/modern/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/modern/hooks/features/listView/index.js +1 -0
- package/modern/hooks/features/overlays/useGridOverlays.js +19 -1
- package/modern/hooks/features/rowSelection/useGridRowSelection.js +0 -9
- package/modern/hooks/features/rowSelection/utils.js +2 -2
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
- 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 +12 -0
- package/modern/locales/beBY.js +12 -0
- package/modern/locales/bgBG.js +13 -0
- package/modern/locales/csCZ.js +13 -0
- package/modern/locales/daDK.js +13 -0
- package/modern/locales/deDE.js +11 -0
- package/modern/locales/elGR.js +12 -0
- package/modern/locales/esES.js +15 -4
- package/modern/locales/faIR.js +13 -0
- package/modern/locales/fiFI.js +13 -0
- package/modern/locales/frFR.js +13 -0
- package/modern/locales/heIL.js +13 -0
- package/modern/locales/hrHR.js +13 -0
- package/modern/locales/huHU.js +13 -0
- package/modern/locales/isIS.js +12 -0
- package/modern/locales/itIT.js +13 -0
- package/modern/locales/jaJP.js +13 -0
- package/modern/locales/koKR.js +12 -0
- package/modern/locales/nbNO.js +13 -0
- package/modern/locales/nlNL.js +13 -0
- package/modern/locales/nnNO.js +13 -0
- package/modern/locales/plPL.js +13 -0
- package/modern/locales/ptBR.js +11 -0
- package/modern/locales/ptPT.js +11 -0
- package/modern/locales/roRO.js +12 -0
- package/modern/locales/ruRU.js +13 -0
- package/modern/locales/skSK.js +12 -0
- package/modern/locales/svSE.js +17 -5
- package/modern/locales/trTR.js +13 -0
- package/modern/locales/ukUA.js +12 -0
- package/modern/locales/urPK.js +12 -0
- package/modern/locales/viVN.js +13 -0
- package/modern/locales/zhCN.js +15 -4
- package/modern/locales/zhHK.js +12 -0
- package/modern/locales/zhTW.js +12 -0
- package/node/DataGrid/DataGrid.js +9 -9
- package/node/components/GridLoadingOverlay.js +4 -4
- package/node/components/GridPagination.js +2 -1
- package/node/components/base/GridOverlays.js +2 -24
- package/node/components/base/index.js +0 -11
- package/node/components/cell/GridCell.js +10 -10
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/node/components/columnSelection/GridHeaderCheckbox.js +2 -3
- package/node/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/node/components/toolbar/GridToolbarColumnsButton.js +3 -4
- package/node/components/toolbar/GridToolbarDensitySelector.js +3 -4
- package/node/components/toolbar/GridToolbarExportContainer.js +3 -4
- package/node/components/toolbar/GridToolbarFilterButton.js +7 -6
- package/node/components/toolbar/GridToolbarQuickFilter.js +1 -0
- package/node/components/virtualization/GridVirtualScroller.js +5 -3
- package/node/constants/dataGridPropsDefaultValues.js +2 -3
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +11 -0
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/node/hooks/features/dimensions/useGridDimensions.js +2 -18
- package/node/hooks/features/index.js +11 -0
- package/node/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/node/hooks/features/listView/index.js +16 -0
- package/node/hooks/features/overlays/useGridOverlays.js +21 -1
- package/node/hooks/features/rowSelection/useGridRowSelection.js +0 -9
- package/node/hooks/features/rowSelection/utils.js +2 -2
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
- 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 +12 -0
- package/node/locales/beBY.js +12 -0
- package/node/locales/bgBG.js +13 -0
- package/node/locales/csCZ.js +13 -0
- package/node/locales/daDK.js +13 -0
- package/node/locales/deDE.js +11 -0
- package/node/locales/elGR.js +12 -0
- package/node/locales/esES.js +15 -4
- package/node/locales/faIR.js +13 -0
- package/node/locales/fiFI.js +13 -0
- package/node/locales/frFR.js +13 -0
- package/node/locales/heIL.js +13 -0
- package/node/locales/hrHR.js +13 -0
- package/node/locales/huHU.js +13 -0
- package/node/locales/isIS.js +12 -0
- package/node/locales/itIT.js +13 -0
- package/node/locales/jaJP.js +13 -0
- package/node/locales/koKR.js +12 -0
- package/node/locales/nbNO.js +13 -0
- package/node/locales/nlNL.js +13 -0
- package/node/locales/nnNO.js +13 -0
- package/node/locales/plPL.js +13 -0
- package/node/locales/ptBR.js +11 -0
- package/node/locales/ptPT.js +11 -0
- package/node/locales/roRO.js +12 -0
- package/node/locales/ruRU.js +13 -0
- package/node/locales/skSK.js +12 -0
- package/node/locales/svSE.js +17 -5
- package/node/locales/trTR.js +13 -0
- package/node/locales/ukUA.js +12 -0
- package/node/locales/urPK.js +12 -0
- package/node/locales/viVN.js +13 -0
- package/node/locales/zhCN.js +15 -4
- package/node/locales/zhHK.js +12 -0
- package/node/locales/zhTW.js +12 -0
- package/package.json +4 -4
|
@@ -15,8 +15,8 @@ var ReactDOM = _interopRequireWildcard(require("react-dom"));
|
|
|
15
15
|
var _utils = require("@mui/utils");
|
|
16
16
|
var _useLazyRef = _interopRequireDefault(require("@mui/utils/useLazyRef"));
|
|
17
17
|
var _useTimeout = _interopRequireDefault(require("@mui/utils/useTimeout"));
|
|
18
|
-
var _useResizeObserver = require("@mui/x-internals/useResizeObserver");
|
|
19
18
|
var _RtlProvider = require("@mui/system/RtlProvider");
|
|
19
|
+
var _reactMajor = _interopRequireDefault(require("@mui/x-internals/reactMajor"));
|
|
20
20
|
var _useGridPrivateApiContext = require("../../utils/useGridPrivateApiContext");
|
|
21
21
|
var _useGridRootProps = require("../../utils/useGridRootProps");
|
|
22
22
|
var _useGridSelector = require("../../utils/useGridSelector");
|
|
@@ -59,7 +59,7 @@ const createScrollCache = (isRtl, rowBufferPx, columnBufferPx, verticalBuffer, h
|
|
|
59
59
|
let isJSDOM = false;
|
|
60
60
|
try {
|
|
61
61
|
if (typeof window !== 'undefined') {
|
|
62
|
-
isJSDOM = /jsdom/.test(window.navigator.userAgent);
|
|
62
|
+
isJSDOM = /jsdom|HappyDOM/.test(window.navigator.userAgent);
|
|
63
63
|
}
|
|
64
64
|
} catch (_) {
|
|
65
65
|
/* ignore */
|
|
@@ -97,7 +97,44 @@ const useGridVirtualScroller = () => {
|
|
|
97
97
|
const contentHeight = dimensions.contentSize.height;
|
|
98
98
|
const columnsTotalWidth = dimensions.columnsTotalWidth;
|
|
99
99
|
const hasColSpan = (0, _useGridSelector.useGridSelector)(apiRef, _gridColumnsSelector.gridHasColSpanSelector);
|
|
100
|
-
|
|
100
|
+
const mainRefCallback = React.useCallback(node => {
|
|
101
|
+
mainRef.current = node;
|
|
102
|
+
if (!node) {
|
|
103
|
+
return undefined;
|
|
104
|
+
}
|
|
105
|
+
const initialRect = node.getBoundingClientRect();
|
|
106
|
+
let lastSize = {
|
|
107
|
+
width: initialRect.width,
|
|
108
|
+
height: initialRect.height
|
|
109
|
+
};
|
|
110
|
+
apiRef.current.publishEvent('resize', lastSize);
|
|
111
|
+
if (typeof ResizeObserver === 'undefined') {
|
|
112
|
+
return undefined;
|
|
113
|
+
}
|
|
114
|
+
const observer = new ResizeObserver(entries => {
|
|
115
|
+
const entry = entries[0];
|
|
116
|
+
if (!entry) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
const newSize = {
|
|
120
|
+
width: entry.contentRect.width,
|
|
121
|
+
height: entry.contentRect.height
|
|
122
|
+
};
|
|
123
|
+
if (newSize.width === lastSize.width && newSize.height === lastSize.height) {
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
apiRef.current.publishEvent('resize', newSize);
|
|
127
|
+
lastSize = newSize;
|
|
128
|
+
});
|
|
129
|
+
observer.observe(node);
|
|
130
|
+
if (_reactMajor.default >= 19) {
|
|
131
|
+
return () => {
|
|
132
|
+
mainRef.current = null;
|
|
133
|
+
observer.disconnect();
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
return undefined;
|
|
137
|
+
}, [apiRef, mainRef]);
|
|
101
138
|
|
|
102
139
|
/*
|
|
103
140
|
* Scroll context logic
|
|
@@ -148,9 +185,13 @@ const useGridVirtualScroller = () => {
|
|
|
148
185
|
previousContextScrollPosition.current = scrollPosition.current;
|
|
149
186
|
}, [apiRef, dimensions.isReady]);
|
|
150
187
|
const triggerUpdateRenderContext = (0, _utils.unstable_useEventCallback)(() => {
|
|
188
|
+
const scroller = scrollerRef.current;
|
|
189
|
+
if (!scroller) {
|
|
190
|
+
return undefined;
|
|
191
|
+
}
|
|
151
192
|
const newScroll = {
|
|
152
|
-
top:
|
|
153
|
-
left:
|
|
193
|
+
top: scroller.scrollTop,
|
|
194
|
+
left: scroller.scrollLeft
|
|
154
195
|
};
|
|
155
196
|
const dx = newScroll.left - scrollPosition.current.left;
|
|
156
197
|
const dy = newScroll.top - scrollPosition.current.top;
|
|
@@ -400,10 +441,6 @@ const useGridVirtualScroller = () => {
|
|
|
400
441
|
React.useEffect(() => {
|
|
401
442
|
apiRef.current.publishEvent('virtualScrollerContentSizeChange');
|
|
402
443
|
}, [apiRef, contentSize]);
|
|
403
|
-
(0, _utils.unstable_useEnhancedEffect)(() => {
|
|
404
|
-
// FIXME: Is this really necessary?
|
|
405
|
-
apiRef.current.resize();
|
|
406
|
-
}, [apiRef, rowsMeta.currentPageTotalHeight]);
|
|
407
444
|
(0, _utils.unstable_useEnhancedEffect)(() => {
|
|
408
445
|
// TODO a scroll reset should not be necessary
|
|
409
446
|
if (enabledForColumns) {
|
|
@@ -439,7 +476,7 @@ const useGridVirtualScroller = () => {
|
|
|
439
476
|
setPanels,
|
|
440
477
|
getRows,
|
|
441
478
|
getContainerProps: () => ({
|
|
442
|
-
ref:
|
|
479
|
+
ref: mainRefCallback
|
|
443
480
|
}),
|
|
444
481
|
getScrollerProps: () => ({
|
|
445
482
|
ref: scrollerRef,
|
|
@@ -497,7 +534,8 @@ function inputsSelector(apiRef, rootProps, enabledForRows, enabledForColumns) {
|
|
|
497
534
|
pinnedColumns: (0, _gridColumnsSelector.gridVisiblePinnedColumnDefinitionsSelector)(apiRef),
|
|
498
535
|
visibleColumns,
|
|
499
536
|
hiddenCellsOriginMap,
|
|
500
|
-
listView: rootProps.unstable_listView ?? false
|
|
537
|
+
listView: rootProps.unstable_listView ?? false,
|
|
538
|
+
virtualizeColumnsWithAutoRowHeight: rootProps.virtualizeColumnsWithAutoRowHeight
|
|
501
539
|
};
|
|
502
540
|
}
|
|
503
541
|
function computeRenderContext(inputs, scrollPosition, scrollCache) {
|
|
@@ -545,11 +583,13 @@ function computeRenderContext(inputs, scrollPosition, scrollCache) {
|
|
|
545
583
|
positions: inputs.rowsMeta.positions,
|
|
546
584
|
lastSize: inputs.lastRowHeight
|
|
547
585
|
});
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
586
|
+
if (!inputs.virtualizeColumnsWithAutoRowHeight) {
|
|
587
|
+
for (let i = firstRowToRender; i < lastRowToRender && !hasRowWithAutoHeight; i += 1) {
|
|
588
|
+
const row = inputs.rows[i];
|
|
589
|
+
hasRowWithAutoHeight = inputs.apiRef.current.rowHasAutoHeight(row.id);
|
|
590
|
+
}
|
|
551
591
|
}
|
|
552
|
-
if (!hasRowWithAutoHeight) {
|
|
592
|
+
if (!hasRowWithAutoHeight || inputs.virtualizeColumnsWithAutoRowHeight) {
|
|
553
593
|
firstColumnIndex = binarySearch(realLeft, inputs.columnPositions, {
|
|
554
594
|
atStart: true,
|
|
555
595
|
lastPosition: inputs.columnsTotalWidth
|
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,17 @@ 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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'تصدير',
|
|
34
45
|
toolbarExportLabel: 'تصدير',
|
|
@@ -40,6 +51,7 @@ const arSDGrid = {
|
|
|
40
51
|
// columnsManagementNoColumns: 'No columns',
|
|
41
52
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
53
|
// columnsManagementReset: 'Reset',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
55
|
|
|
44
56
|
// Filter panel text
|
|
45
57
|
filterPanelAddFilter: 'إضافة مرشِح',
|
package/node/locales/beBY.js
CHANGED
|
@@ -43,6 +43,17 @@ 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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
52
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
53
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
54
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
55
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
56
|
+
|
|
46
57
|
// Export selector toolbar button text
|
|
47
58
|
toolbarExport: 'Экспарт',
|
|
48
59
|
toolbarExportLabel: 'Экспарт',
|
|
@@ -54,6 +65,7 @@ const beBYGrid = {
|
|
|
54
65
|
// columnsManagementNoColumns: 'No columns',
|
|
55
66
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
56
67
|
// columnsManagementReset: 'Reset',
|
|
68
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
57
69
|
|
|
58
70
|
// Filter panel text
|
|
59
71
|
filterPanelAddFilter: 'Дадаць фільтр',
|
package/node/locales/bgBG.js
CHANGED
|
@@ -29,6 +29,17 @@ 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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Изтегли',
|
|
34
45
|
toolbarExportLabel: 'Изтегли',
|
|
@@ -40,6 +51,8 @@ const bgBGGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Няма колони',
|
|
41
52
|
columnsManagementShowHideAllText: 'Покажи/Скрий Всичко',
|
|
42
53
|
columnsManagementReset: 'Нулирай',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Добави Филтър',
|
|
45
58
|
filterPanelRemoveAll: 'Премахни всички',
|
package/node/locales/csCZ.js
CHANGED
|
@@ -37,6 +37,17 @@ 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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
46
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
47
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
48
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
49
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
50
|
+
|
|
40
51
|
// Export selector toolbar button text
|
|
41
52
|
toolbarExport: 'Export',
|
|
42
53
|
toolbarExportLabel: 'Export',
|
|
@@ -48,6 +59,8 @@ const csCZGrid = {
|
|
|
48
59
|
columnsManagementNoColumns: 'Žádné sloupce',
|
|
49
60
|
columnsManagementShowHideAllText: 'Zobrazit/skrýt vše',
|
|
50
61
|
columnsManagementReset: 'Resetovat',
|
|
62
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
63
|
+
|
|
51
64
|
// Filter panel text
|
|
52
65
|
filterPanelAddFilter: 'Přidat filtr',
|
|
53
66
|
filterPanelRemoveAll: 'Odstranit vše',
|
package/node/locales/daDK.js
CHANGED
|
@@ -29,6 +29,17 @@ 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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Eksport',
|
|
34
45
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -40,6 +51,8 @@ const daDKGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Ingen søjler',
|
|
41
52
|
columnsManagementShowHideAllText: 'Vis/Skjul Alle',
|
|
42
53
|
columnsManagementReset: 'Nulstil',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Tilføj filter',
|
|
45
58
|
filterPanelRemoveAll: 'Fjern alle',
|
package/node/locales/deDE.js
CHANGED
|
@@ -29,6 +29,16 @@ const deDEGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Suchen…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Suchen',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Löschen',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Prompt eingeben…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Prompt eingeben oder aufnehmen…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'Hört Prompteingabe zu…',
|
|
36
|
+
toolbarPromptControlLabel: 'Prompteingabe',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Aufnahme starten',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Aufnahme stoppen',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Senden',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'Prompt senden',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'Ein Fehler ist während der Bearbeitung der Anfrage aufgetreten. Bitte versuche es nochmal mit einem anderen Prompt.',
|
|
32
42
|
// Export selector toolbar button text
|
|
33
43
|
toolbarExport: 'Exportieren',
|
|
34
44
|
toolbarExportLabel: 'Exportieren',
|
|
@@ -40,6 +50,7 @@ const deDEGrid = {
|
|
|
40
50
|
columnsManagementNoColumns: 'Keine Spalten',
|
|
41
51
|
columnsManagementShowHideAllText: 'Alle anzeigen/verbergen',
|
|
42
52
|
columnsManagementReset: 'Zurücksetzen',
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Löschen',
|
|
43
54
|
// Filter panel text
|
|
44
55
|
filterPanelAddFilter: 'Filter hinzufügen',
|
|
45
56
|
filterPanelRemoveAll: 'Alle entfernen',
|
package/node/locales/elGR.js
CHANGED
|
@@ -29,6 +29,17 @@ 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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Εξαγωγή',
|
|
34
45
|
toolbarExportLabel: 'Εξαγωγή',
|
|
@@ -40,6 +51,7 @@ const elGRGrid = {
|
|
|
40
51
|
// columnsManagementNoColumns: 'No columns',
|
|
41
52
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
53
|
// columnsManagementReset: 'Reset',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
55
|
|
|
44
56
|
// Filter panel text
|
|
45
57
|
filterPanelAddFilter: 'Προσθήκη φίλτρου',
|
package/node/locales/esES.js
CHANGED
|
@@ -29,6 +29,16 @@ const esESGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Buscar…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Buscar',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Limpiar',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Escriba un prompt…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Escriba o grabe un prompt…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'Esperando por un prompt…',
|
|
36
|
+
toolbarPromptControlLabel: 'Introduzca un prompt',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Grabar',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Parar de grabar',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Enviar',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'Enviar prompt',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'Ocurrió un error mientras se procesaba la petición. Por favor, intente de nuevo con otro prompt.',
|
|
32
42
|
// Export selector toolbar button text
|
|
33
43
|
toolbarExport: 'Exportar',
|
|
34
44
|
toolbarExportLabel: 'Exportar',
|
|
@@ -40,6 +50,7 @@ const esESGrid = {
|
|
|
40
50
|
columnsManagementNoColumns: 'Sin columnas',
|
|
41
51
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar todas',
|
|
42
52
|
columnsManagementReset: 'Restablecer',
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Limpiar',
|
|
43
54
|
// Filter panel text
|
|
44
55
|
filterPanelAddFilter: 'Agregar filtro',
|
|
45
56
|
filterPanelRemoveAll: 'Remover todos',
|
|
@@ -53,9 +64,9 @@ const esESGrid = {
|
|
|
53
64
|
filterPanelInputPlaceholder: 'Valor de filtro',
|
|
54
65
|
// Filter operators text
|
|
55
66
|
filterOperatorContains: 'contiene',
|
|
56
|
-
|
|
67
|
+
filterOperatorDoesNotContain: 'no contiene',
|
|
57
68
|
filterOperatorEquals: 'es igual',
|
|
58
|
-
|
|
69
|
+
filterOperatorDoesNotEqual: 'es diferente a',
|
|
59
70
|
filterOperatorStartsWith: 'comienza con',
|
|
60
71
|
filterOperatorEndsWith: 'termina con',
|
|
61
72
|
filterOperatorIs: 'es',
|
|
@@ -75,9 +86,9 @@ const esESGrid = {
|
|
|
75
86
|
'filterOperator<=': '<=',
|
|
76
87
|
// Header filter operators text
|
|
77
88
|
headerFilterOperatorContains: 'Contiene',
|
|
78
|
-
|
|
89
|
+
headerFilterOperatorDoesNotContain: 'No contiene',
|
|
79
90
|
headerFilterOperatorEquals: 'Es igual a',
|
|
80
|
-
|
|
91
|
+
headerFilterOperatorDoesNotEqual: 'Es diferente a',
|
|
81
92
|
headerFilterOperatorStartsWith: 'Comienza con',
|
|
82
93
|
headerFilterOperatorEndsWith: 'Termina con',
|
|
83
94
|
headerFilterOperatorIs: 'Es',
|
package/node/locales/faIR.js
CHANGED
|
@@ -29,6 +29,17 @@ const faIRGrid = {
|
|
|
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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'خروجی',
|
|
34
45
|
toolbarExportLabel: 'خروجی',
|
|
@@ -40,6 +51,8 @@ const faIRGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'بدون سطر',
|
|
41
52
|
columnsManagementShowHideAllText: 'نمایش/مخفی کردن همه',
|
|
42
53
|
columnsManagementReset: 'بازنشانی',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'افزودن فیلتر',
|
|
45
58
|
filterPanelRemoveAll: 'حذف همه',
|
package/node/locales/fiFI.js
CHANGED
|
@@ -29,6 +29,17 @@ const fiFIGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Hae…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Hae',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Tyhjennä',
|
|
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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Vie',
|
|
34
45
|
toolbarExportLabel: 'Vie',
|
|
@@ -40,6 +51,8 @@ const fiFIGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Ei sarakkeita näytettäväksi',
|
|
41
52
|
columnsManagementShowHideAllText: 'Näytä/Piilota kaikki',
|
|
42
53
|
columnsManagementReset: 'Palauta',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Lisää suodatin',
|
|
45
58
|
filterPanelRemoveAll: 'Poista kaikki',
|
package/node/locales/frFR.js
CHANGED
|
@@ -29,6 +29,17 @@ const frFRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Rechercher…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Recherche',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Exporter',
|
|
34
45
|
toolbarExportLabel: 'Exporter',
|
|
@@ -40,6 +51,8 @@ const frFRGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Pas de colonnes',
|
|
41
52
|
columnsManagementShowHideAllText: 'Afficher/masquer toutes',
|
|
42
53
|
columnsManagementReset: 'Réinitialiser',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Ajouter un filtre',
|
|
45
58
|
filterPanelRemoveAll: 'Tout supprimer',
|
package/node/locales/heIL.js
CHANGED
|
@@ -29,6 +29,17 @@ const heILGrid = {
|
|
|
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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'ייצוא',
|
|
34
45
|
toolbarExportLabel: 'ייצוא',
|
|
@@ -40,6 +51,8 @@ const heILGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'אין עמודות',
|
|
41
52
|
columnsManagementShowHideAllText: 'הצג/הסתר הכל',
|
|
42
53
|
columnsManagementReset: 'אתחול',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'הוסף מסנן',
|
|
45
58
|
filterPanelRemoveAll: 'מחק הכל',
|
package/node/locales/hrHR.js
CHANGED
|
@@ -37,6 +37,17 @@ const hrHRGrid = {
|
|
|
37
37
|
toolbarQuickFilterPlaceholder: 'Traži…',
|
|
38
38
|
toolbarQuickFilterLabel: 'traži',
|
|
39
39
|
toolbarQuickFilterDeleteIconLabel: 'Obriši',
|
|
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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
46
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
47
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
48
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
49
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
50
|
+
|
|
40
51
|
// Export selector toolbar button text
|
|
41
52
|
toolbarExport: 'Izvoz',
|
|
42
53
|
toolbarExportLabel: 'Izvoz',
|
|
@@ -48,6 +59,8 @@ const hrHRGrid = {
|
|
|
48
59
|
columnsManagementNoColumns: 'Nema stupaca',
|
|
49
60
|
columnsManagementShowHideAllText: 'Prikaži/Sakrij sve',
|
|
50
61
|
columnsManagementReset: 'Ponovno namjesti',
|
|
62
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
63
|
+
|
|
51
64
|
// Filter panel text
|
|
52
65
|
filterPanelAddFilter: 'Dodaj filter',
|
|
53
66
|
filterPanelRemoveAll: 'Ukloni sve',
|
package/node/locales/huHU.js
CHANGED
|
@@ -29,6 +29,17 @@ const huHUGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Keresés…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Keresés',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Törlés',
|
|
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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Exportálás',
|
|
34
45
|
toolbarExportLabel: 'Exportálás',
|
|
@@ -40,6 +51,8 @@ const huHUGrid = {
|
|
|
40
51
|
columnsManagementNoColumns: 'Nincsenek oszlopok',
|
|
41
52
|
columnsManagementShowHideAllText: 'Összes',
|
|
42
53
|
columnsManagementReset: 'Visszavon',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
55
|
+
|
|
43
56
|
// Filter panel text
|
|
44
57
|
filterPanelAddFilter: 'Szűrő hozzáadása',
|
|
45
58
|
filterPanelRemoveAll: 'Összes törlése',
|
package/node/locales/isIS.js
CHANGED
|
@@ -29,6 +29,17 @@ const isISGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Leita…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Leita',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Eyða',
|
|
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
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
38
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
39
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
40
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
41
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
42
|
+
|
|
32
43
|
// Export selector toolbar button text
|
|
33
44
|
toolbarExport: 'Flytja út',
|
|
34
45
|
toolbarExportLabel: 'Flytja út',
|
|
@@ -40,6 +51,7 @@ const isISGrid = {
|
|
|
40
51
|
// columnsManagementNoColumns: 'No columns',
|
|
41
52
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
53
|
// columnsManagementReset: 'Reset',
|
|
54
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
55
|
|
|
44
56
|
// Filter panel text
|
|
45
57
|
filterPanelAddFilter: 'Bæta síu',
|