@mui/x-data-grid 9.11.0 → 9.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +317 -0
- package/DataGrid/DataGrid.js +4 -2
- package/DataGrid/DataGrid.mjs +4 -2
- package/DataGrid/useDataGridProps.d.mts +1 -1
- package/DataGrid/useDataGridProps.d.ts +1 -1
- package/components/GridPagination.js +1 -1
- package/components/GridPagination.mjs +1 -1
- package/components/GridRow.d.mts +1 -0
- package/components/GridRow.d.ts +1 -0
- package/components/GridRow.js +41 -6
- package/components/GridRow.mjs +41 -6
- package/components/cell/GridCell.js +21 -5
- package/components/cell/GridCell.mjs +21 -5
- package/components/cell/GridEditBooleanCell.d.mts +1 -1
- package/components/cell/GridEditBooleanCell.d.ts +1 -1
- package/components/cell/GridEditBooleanCell.js +4 -4
- package/components/cell/GridEditBooleanCell.mjs +4 -4
- package/components/cell/GridEditDateCell.d.mts +1 -1
- package/components/cell/GridEditDateCell.d.ts +1 -1
- package/components/cell/GridEditDateCell.js +5 -5
- package/components/cell/GridEditDateCell.mjs +5 -5
- package/components/cell/GridEditInputCell.d.mts +1 -1
- package/components/cell/GridEditInputCell.d.ts +1 -1
- package/components/cell/GridEditInputCell.js +1 -1
- package/components/cell/GridEditInputCell.mjs +1 -1
- package/components/cell/GridEditLongTextCell.d.mts +1 -1
- package/components/cell/GridEditLongTextCell.d.ts +1 -1
- package/components/cell/GridEditLongTextCell.js +2 -2
- package/components/cell/GridEditLongTextCell.mjs +2 -2
- package/components/cell/GridEditSingleSelectCell.d.mts +1 -1
- package/components/cell/GridEditSingleSelectCell.d.ts +1 -1
- package/components/cell/GridEditSingleSelectCell.js +4 -4
- package/components/cell/GridEditSingleSelectCell.mjs +4 -4
- package/components/columnHeaders/GridBaseColumnHeaders.js +1 -1
- package/components/columnHeaders/GridBaseColumnHeaders.mjs +1 -1
- package/components/columnHeaders/GridColumnHeaderItem.js +4 -0
- package/components/columnHeaders/GridColumnHeaderItem.mjs +4 -0
- package/components/columnHeaders/GridGenericColumnHeaderItem.d.mts +7 -0
- package/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +7 -0
- package/components/columnHeaders/GridGenericColumnHeaderItem.js +5 -4
- package/components/columnHeaders/GridGenericColumnHeaderItem.mjs +5 -4
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +18 -6
- package/components/panel/filterPanel/GridFilterInputSingleSelect.mjs +18 -6
- package/components/toolbarV8/Toolbar.d.mts +5 -1
- package/components/toolbarV8/Toolbar.d.ts +5 -1
- package/components/toolbarV8/Toolbar.js +34 -12
- package/components/toolbarV8/Toolbar.mjs +33 -11
- package/constants/gridClasses.d.mts +12 -0
- package/constants/gridClasses.d.ts +12 -0
- package/constants/gridClasses.js +1 -1
- package/constants/gridClasses.mjs +1 -1
- package/constants/localeTextConstants.js +4 -0
- package/constants/localeTextConstants.mjs +4 -0
- package/hooks/core/useGridApiInitialization.js +5 -1
- package/hooks/core/useGridApiInitialization.mjs +5 -1
- package/hooks/core/useGridStateInitialization.js +3 -1
- package/hooks/core/useGridStateInitialization.mjs +3 -1
- package/hooks/core/useGridVirtualizer.js +17 -1
- package/hooks/core/useGridVirtualizer.mjs +17 -1
- package/hooks/features/columnResize/useGridColumnResize.js +5 -0
- package/hooks/features/columnResize/useGridColumnResize.mjs +5 -0
- package/hooks/features/columns/gridColumnsUtils.d.mts +1 -1
- package/hooks/features/columns/gridColumnsUtils.d.ts +1 -1
- package/hooks/features/columns/gridColumnsUtils.js +2 -2
- package/hooks/features/columns/gridColumnsUtils.mjs +2 -2
- package/hooks/features/dataSource/gridDataSourceSelector.js +6 -2
- package/hooks/features/dataSource/gridDataSourceSelector.mjs +6 -2
- package/hooks/features/dataSource/models.d.mts +2 -2
- package/hooks/features/dataSource/models.d.ts +2 -2
- package/hooks/features/dataSource/useGridDataSourceBase.js +25 -8
- package/hooks/features/dataSource/useGridDataSourceBase.mjs +26 -9
- package/hooks/features/dataSource/useGridDataSourceFilterModelChange.d.mts +9 -0
- package/hooks/features/dataSource/useGridDataSourceFilterModelChange.d.ts +9 -0
- package/hooks/features/dataSource/useGridDataSourceFilterModelChange.js +57 -0
- package/hooks/features/dataSource/useGridDataSourceFilterModelChange.mjs +49 -0
- package/hooks/features/editing/useGridCellEditing.js +3 -1
- package/hooks/features/editing/useGridCellEditing.mjs +3 -1
- package/hooks/features/editing/useGridRowEditing.js +3 -1
- package/hooks/features/editing/useGridRowEditing.mjs +3 -1
- package/hooks/features/filter/gridFilterUtils.d.mts +13 -0
- package/hooks/features/filter/gridFilterUtils.d.ts +13 -0
- package/hooks/features/filter/gridFilterUtils.js +32 -1
- package/hooks/features/filter/gridFilterUtils.mjs +29 -1
- package/hooks/features/filter/useGridFilter.js +1 -21
- package/hooks/features/filter/useGridFilter.mjs +2 -22
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +1 -1
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.mjs +1 -1
- package/hooks/features/pivoting/gridPivotingInterfaces.d.mts +2 -2
- package/hooks/features/pivoting/gridPivotingInterfaces.d.ts +2 -2
- package/hooks/features/rowSelection/useGridRowSelection.js +1 -1
- package/hooks/features/rowSelection/useGridRowSelection.mjs +2 -2
- package/hooks/features/rows/gridRowsUtils.d.mts +37 -3
- package/hooks/features/rows/gridRowsUtils.d.ts +37 -3
- package/hooks/features/rows/gridRowsUtils.js +120 -23
- package/hooks/features/rows/gridRowsUtils.mjs +115 -22
- package/hooks/features/rows/useGridRowSpanning.js +5 -0
- package/hooks/features/rows/useGridRowSpanning.mjs +5 -0
- package/hooks/features/rows/useGridRows.js +10 -1
- package/hooks/features/rows/useGridRows.mjs +10 -1
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.mts +1 -1
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
- package/hooks/utils/useGridEvent.d.mts +2 -2
- package/hooks/utils/useGridEvent.d.ts +2 -2
- package/hooks/utils/useGridEvent.js +2 -0
- package/hooks/utils/useGridEvent.mjs +2 -0
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/internals/index.d.mts +4 -2
- package/internals/index.d.ts +4 -2
- package/internals/index.js +48 -0
- package/internals/index.mjs +4 -2
- package/locales/arSD.js +5 -0
- package/locales/arSD.mjs +5 -0
- package/locales/beBY.js +5 -0
- package/locales/beBY.mjs +5 -0
- package/locales/bgBG.js +5 -0
- package/locales/bgBG.mjs +5 -0
- package/locales/bnBD.js +5 -0
- package/locales/bnBD.mjs +5 -0
- package/locales/caES.js +5 -0
- package/locales/caES.mjs +5 -0
- package/locales/csCZ.js +5 -0
- package/locales/csCZ.mjs +5 -0
- package/locales/daDK.js +5 -0
- package/locales/daDK.mjs +5 -0
- package/locales/deDE.js +5 -0
- package/locales/deDE.mjs +5 -0
- package/locales/elGR.js +5 -0
- package/locales/elGR.mjs +5 -0
- package/locales/esES.js +5 -0
- package/locales/esES.mjs +5 -0
- package/locales/faIR.js +5 -0
- package/locales/faIR.mjs +5 -0
- package/locales/fiFI.js +5 -0
- package/locales/fiFI.mjs +5 -0
- package/locales/frFR.js +5 -0
- package/locales/frFR.mjs +5 -0
- package/locales/heIL.js +5 -0
- package/locales/heIL.mjs +5 -0
- package/locales/hrHR.js +5 -0
- package/locales/hrHR.mjs +5 -0
- package/locales/huHU.js +5 -0
- package/locales/huHU.mjs +5 -0
- package/locales/hyAM.js +5 -0
- package/locales/hyAM.mjs +5 -0
- package/locales/idID.js +5 -0
- package/locales/idID.mjs +5 -0
- package/locales/isIS.js +5 -0
- package/locales/isIS.mjs +5 -0
- package/locales/itIT.js +5 -0
- package/locales/itIT.mjs +5 -0
- package/locales/jaJP.js +5 -0
- package/locales/jaJP.mjs +5 -0
- package/locales/koKR.js +5 -0
- package/locales/koKR.mjs +5 -0
- package/locales/nbNO.js +5 -0
- package/locales/nbNO.mjs +5 -0
- package/locales/nlNL.js +5 -0
- package/locales/nlNL.mjs +5 -0
- package/locales/nnNO.js +5 -0
- package/locales/nnNO.mjs +5 -0
- package/locales/plPL.js +5 -0
- package/locales/plPL.mjs +5 -0
- package/locales/ptBR.js +5 -0
- package/locales/ptBR.mjs +5 -0
- package/locales/ptPT.js +5 -0
- package/locales/ptPT.mjs +5 -0
- package/locales/roRO.js +5 -0
- package/locales/roRO.mjs +5 -0
- package/locales/ruRU.js +5 -0
- package/locales/ruRU.mjs +5 -0
- package/locales/skSK.js +5 -0
- package/locales/skSK.mjs +5 -0
- package/locales/svSE.js +5 -0
- package/locales/svSE.mjs +5 -0
- package/locales/thTH.js +5 -0
- package/locales/thTH.mjs +5 -0
- package/locales/trTR.js +5 -0
- package/locales/trTR.mjs +5 -0
- package/locales/ukUA.js +5 -0
- package/locales/ukUA.mjs +5 -0
- package/locales/urPK.js +5 -0
- package/locales/urPK.mjs +5 -0
- package/locales/viVN.js +5 -0
- package/locales/viVN.mjs +5 -0
- package/locales/zhCN.js +5 -0
- package/locales/zhCN.mjs +5 -0
- package/locales/zhHK.js +5 -0
- package/locales/zhHK.mjs +5 -0
- package/locales/zhTW.js +5 -0
- package/locales/zhTW.mjs +5 -0
- package/material/variables.d.mts +6 -1
- package/material/variables.d.ts +6 -1
- package/material/variables.js +17 -3
- package/material/variables.mjs +14 -4
- package/models/api/gridApiCommon.d.mts +2 -2
- package/models/api/gridApiCommon.d.ts +2 -2
- package/models/api/gridCallbackDetails.d.mts +11 -1
- package/models/api/gridCallbackDetails.d.ts +11 -1
- package/models/api/gridLocaleTextApi.d.mts +3 -0
- package/models/api/gridLocaleTextApi.d.ts +3 -0
- package/models/api/gridRowApi.d.mts +19 -7
- package/models/api/gridRowApi.d.ts +19 -7
- package/models/api/gridStateApi.d.mts +3 -2
- package/models/api/gridStateApi.d.ts +3 -2
- package/models/api/index.d.mts +1 -1
- package/models/api/index.d.ts +1 -1
- package/models/colDef/gridColDef.d.mts +5 -0
- package/models/colDef/gridColDef.d.ts +5 -0
- package/models/configuration/gridConfiguration.d.mts +13 -1
- package/models/configuration/gridConfiguration.d.ts +13 -1
- package/models/controlStateItem.d.mts +3 -2
- package/models/controlStateItem.d.ts +3 -2
- package/models/events/gridEventListener.d.mts +3 -2
- package/models/events/gridEventListener.d.ts +3 -2
- package/models/gridDataSource.d.mts +3 -0
- package/models/gridDataSource.d.ts +3 -0
- package/models/gridRows.d.mts +28 -1
- package/models/gridRows.d.ts +28 -1
- package/models/props/DataGridProps.d.mts +41 -38
- package/models/props/DataGridProps.d.ts +41 -38
- package/package.json +6 -6
- package/utils/domUtils.js +1 -1
- package/utils/domUtils.mjs +1 -1
- package/utils/getPublicApiRef.d.mts +2 -2
- package/utils/getPublicApiRef.d.ts +2 -2
- package/utils/getPublicApiRef.js +15 -3
- package/utils/getPublicApiRef.mjs +15 -3
- package/utils/keyboardUtils.d.mts +1 -0
- package/utils/keyboardUtils.d.ts +1 -0
- package/utils/keyboardUtils.js +6 -0
- package/utils/keyboardUtils.mjs +5 -0
|
@@ -15,6 +15,7 @@ var _useGridVisibleRows = require("../../utils/useGridVisibleRows");
|
|
|
15
15
|
var _gridVirtualizationSelectors = require("../virtualization/gridVirtualizationSelectors");
|
|
16
16
|
var _gridRowSpanningUtils = require("./gridRowSpanningUtils");
|
|
17
17
|
var _useGridEvent = require("../../utils/useGridEvent");
|
|
18
|
+
var _useGridApiMethod = require("../../utils/useGridApiMethod");
|
|
18
19
|
var _utils = require("../../../utils/utils");
|
|
19
20
|
var _useRunOncePerLoop = require("../../utils/useRunOncePerLoop");
|
|
20
21
|
const EMPTY_CACHES = {
|
|
@@ -200,6 +201,10 @@ const useGridRowSpanning = (apiRef, props) => {
|
|
|
200
201
|
(0, _useGridEvent.useGridEvent)(apiRef, 'filteredRowsSet', (0, _utils.runIf)(props.rowSpanning, resetRowSpanningState));
|
|
201
202
|
(0, _useGridEvent.useGridEvent)(apiRef, 'columnsChange', (0, _utils.runIf)(props.rowSpanning, resetRowSpanningState));
|
|
202
203
|
(0, _useGridEvent.useGridEvent)(apiRef, 'rowExpansionChange', (0, _utils.runIf)(props.rowSpanning, resetRowSpanningState));
|
|
204
|
+
const rowSpanningPrivateApi = {
|
|
205
|
+
resetRowSpanningState: (0, _utils.runIf)(props.rowSpanning, resetRowSpanningState)
|
|
206
|
+
};
|
|
207
|
+
(0, _useGridApiMethod.useGridApiMethod)(apiRef, rowSpanningPrivateApi, 'private');
|
|
203
208
|
React.useEffect(() => {
|
|
204
209
|
const store = apiRef.current.virtualizer?.store;
|
|
205
210
|
if (!store) {
|
|
@@ -8,6 +8,7 @@ import { getVisibleRows } from "../../utils/useGridVisibleRows.mjs";
|
|
|
8
8
|
import { gridRenderContextSelector } from "../virtualization/gridVirtualizationSelectors.mjs";
|
|
9
9
|
import { getUnprocessedRange, isRowContextInitialized, getCellValue } from "./gridRowSpanningUtils.mjs";
|
|
10
10
|
import { useGridEvent } from "../../utils/useGridEvent.mjs";
|
|
11
|
+
import { useGridApiMethod } from "../../utils/useGridApiMethod.mjs";
|
|
11
12
|
import { runIf } from "../../../utils/utils.mjs";
|
|
12
13
|
import { useRunOncePerLoop } from "../../utils/useRunOncePerLoop.mjs";
|
|
13
14
|
const EMPTY_CACHES = {
|
|
@@ -192,6 +193,10 @@ export const useGridRowSpanning = (apiRef, props) => {
|
|
|
192
193
|
useGridEvent(apiRef, 'filteredRowsSet', runIf(props.rowSpanning, resetRowSpanningState));
|
|
193
194
|
useGridEvent(apiRef, 'columnsChange', runIf(props.rowSpanning, resetRowSpanningState));
|
|
194
195
|
useGridEvent(apiRef, 'rowExpansionChange', runIf(props.rowSpanning, resetRowSpanningState));
|
|
196
|
+
const rowSpanningPrivateApi = {
|
|
197
|
+
resetRowSpanningState: runIf(props.rowSpanning, resetRowSpanningState)
|
|
198
|
+
};
|
|
199
|
+
useGridApiMethod(apiRef, rowSpanningPrivateApi, 'private');
|
|
195
200
|
React.useEffect(() => {
|
|
196
201
|
const store = apiRef.current.virtualizer?.store;
|
|
197
202
|
if (!store) {
|
|
@@ -57,6 +57,7 @@ const useGridRows = (apiRef, props, configuration) => {
|
|
|
57
57
|
const logger = (0, _useGridLogger.useGridLogger)(apiRef, 'useGridRows');
|
|
58
58
|
const lastUpdateMs = React.useRef(Date.now());
|
|
59
59
|
const lastRowCount = React.useRef(props.rowCount);
|
|
60
|
+
const lastGetRowId = React.useRef(props.getRowId);
|
|
60
61
|
const timeout = (0, _useTimeout.useTimeout)();
|
|
61
62
|
|
|
62
63
|
// Get overridable methods from configuration
|
|
@@ -450,8 +451,16 @@ You need to upgrade to DataGridPro or DataGridPremium component to unlock this f
|
|
|
450
451
|
isRowCountPropUpdated = true;
|
|
451
452
|
lastRowCount.current = props.rowCount;
|
|
452
453
|
}
|
|
454
|
+
let isGetRowIdPropUpdated = false;
|
|
455
|
+
if (props.getRowId !== lastGetRowId.current) {
|
|
456
|
+
isGetRowIdPropUpdated = true;
|
|
457
|
+
lastGetRowId.current = props.getRowId;
|
|
458
|
+
}
|
|
453
459
|
const currentRows = props.dataSource ? (0, _gridRowsSelector.gridDataRowsSelector)(apiRef) : props.rows;
|
|
454
|
-
|
|
460
|
+
// Data source rows live in the state, not in props: there is never a new set to apply, and
|
|
461
|
+
// `gridDataRowsSelector` returns a new array each time so the identity check never holds.
|
|
462
|
+
// Only a new `getRowId` needs a rebuild, to re-key them.
|
|
463
|
+
const areNewRowsAlreadyInState = props.dataSource ? !isGetRowIdPropUpdated : apiRef.current.caches.rows.rowsBeforePartialUpdates === currentRows;
|
|
455
464
|
const isNewLoadingAlreadyInState = apiRef.current.caches.rows.loadingPropBeforePartialUpdates === props.loading;
|
|
456
465
|
const isNewRowCountAlreadyInState = apiRef.current.caches.rows.rowCountPropBeforePartialUpdates === props.rowCount;
|
|
457
466
|
|
|
@@ -49,6 +49,7 @@ export const useGridRows = (apiRef, props, configuration) => {
|
|
|
49
49
|
const logger = useGridLogger(apiRef, 'useGridRows');
|
|
50
50
|
const lastUpdateMs = React.useRef(Date.now());
|
|
51
51
|
const lastRowCount = React.useRef(props.rowCount);
|
|
52
|
+
const lastGetRowId = React.useRef(props.getRowId);
|
|
52
53
|
const timeout = useTimeout();
|
|
53
54
|
|
|
54
55
|
// Get overridable methods from configuration
|
|
@@ -442,8 +443,16 @@ You need to upgrade to DataGridPro or DataGridPremium component to unlock this f
|
|
|
442
443
|
isRowCountPropUpdated = true;
|
|
443
444
|
lastRowCount.current = props.rowCount;
|
|
444
445
|
}
|
|
446
|
+
let isGetRowIdPropUpdated = false;
|
|
447
|
+
if (props.getRowId !== lastGetRowId.current) {
|
|
448
|
+
isGetRowIdPropUpdated = true;
|
|
449
|
+
lastGetRowId.current = props.getRowId;
|
|
450
|
+
}
|
|
445
451
|
const currentRows = props.dataSource ? gridDataRowsSelector(apiRef) : props.rows;
|
|
446
|
-
|
|
452
|
+
// Data source rows live in the state, not in props: there is never a new set to apply, and
|
|
453
|
+
// `gridDataRowsSelector` returns a new array each time so the identity check never holds.
|
|
454
|
+
// Only a new `getRowId` needs a rebuild, to re-key them.
|
|
455
|
+
const areNewRowsAlreadyInState = props.dataSource ? !isGetRowIdPropUpdated : apiRef.current.caches.rows.rowsBeforePartialUpdates === currentRows;
|
|
447
456
|
const isNewLoadingAlreadyInState = apiRef.current.caches.rows.loadingPropBeforePartialUpdates === props.loading;
|
|
448
457
|
const isNewRowCountAlreadyInState = apiRef.current.caches.rows.rowCountPropBeforePartialUpdates === props.rowCount;
|
|
449
458
|
|
|
@@ -34,7 +34,7 @@ export declare const gridVirtualizationRowEnabledSelector: (args_0: import("reac
|
|
|
34
34
|
*/
|
|
35
35
|
export declare const gridVirtualizationLayoutModeSelector: (args_0: import("react").RefObject<{
|
|
36
36
|
state: GridStateCommunity;
|
|
37
|
-
} | null>) => "controlled" | "uncontrolled";
|
|
37
|
+
} | null>) => "controlled" | "sticky" | "uncontrolled";
|
|
38
38
|
/**
|
|
39
39
|
* Get the render context
|
|
40
40
|
* @category Virtualization
|
|
@@ -34,7 +34,7 @@ export declare const gridVirtualizationRowEnabledSelector: (args_0: import("reac
|
|
|
34
34
|
*/
|
|
35
35
|
export declare const gridVirtualizationLayoutModeSelector: (args_0: import("react").RefObject<{
|
|
36
36
|
state: GridStateCommunity;
|
|
37
|
-
} | null>) => "controlled" | "uncontrolled";
|
|
37
|
+
} | null>) => "controlled" | "sticky" | "uncontrolled";
|
|
38
38
|
/**
|
|
39
39
|
* Get the render context
|
|
40
40
|
* @category Virtualization
|
|
@@ -4,8 +4,8 @@ import type { GridEventListener, GridEvents } from "../../models/events/index.mj
|
|
|
4
4
|
import { TimerBasedCleanupTracking } from "../../utils/cleanupTracking/TimerBasedCleanupTracking.mjs";
|
|
5
5
|
import { FinalizationRegistryBasedCleanupTracking } from "../../utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.mjs";
|
|
6
6
|
import type { GridApiCommon } from "../../models/index.mjs";
|
|
7
|
-
export declare function useGridEvent<Api extends GridApiCommon, E extends GridEvents>(apiRef: RefObject<Api>, eventName: E, handler?: GridEventListener<E>, options?: EventListenerOptions): void;
|
|
8
|
-
export declare function useGridEventPriority<Api extends GridApiCommon, E extends GridEvents>(apiRef: RefObject<Api>, eventName: E, handler?: GridEventListener<E>): void;
|
|
7
|
+
export declare function useGridEvent<Api extends GridApiCommon, E extends GridEvents>(apiRef: RefObject<Api>, eventName: E, handler?: GridEventListener<E, Api>, options?: EventListenerOptions): void;
|
|
8
|
+
export declare function useGridEventPriority<Api extends GridApiCommon, E extends GridEvents>(apiRef: RefObject<Api>, eventName: E, handler?: GridEventListener<E, Api>): void;
|
|
9
9
|
export declare function unstable_resetCleanupTracking(): void;
|
|
10
10
|
export declare const internal_registryContainer: {
|
|
11
11
|
current: FinalizationRegistryBasedCleanupTracking | TimerBasedCleanupTracking;
|
|
@@ -4,8 +4,8 @@ import type { GridEventListener, GridEvents } from "../../models/events/index.js
|
|
|
4
4
|
import { TimerBasedCleanupTracking } from "../../utils/cleanupTracking/TimerBasedCleanupTracking.js";
|
|
5
5
|
import { FinalizationRegistryBasedCleanupTracking } from "../../utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js";
|
|
6
6
|
import type { GridApiCommon } from "../../models/index.js";
|
|
7
|
-
export declare function useGridEvent<Api extends GridApiCommon, E extends GridEvents>(apiRef: RefObject<Api>, eventName: E, handler?: GridEventListener<E>, options?: EventListenerOptions): void;
|
|
8
|
-
export declare function useGridEventPriority<Api extends GridApiCommon, E extends GridEvents>(apiRef: RefObject<Api>, eventName: E, handler?: GridEventListener<E>): void;
|
|
7
|
+
export declare function useGridEvent<Api extends GridApiCommon, E extends GridEvents>(apiRef: RefObject<Api>, eventName: E, handler?: GridEventListener<E, Api>, options?: EventListenerOptions): void;
|
|
8
|
+
export declare function useGridEventPriority<Api extends GridApiCommon, E extends GridEvents>(apiRef: RefObject<Api>, eventName: E, handler?: GridEventListener<E, Api>): void;
|
|
9
9
|
export declare function unstable_resetCleanupTracking(): void;
|
|
10
10
|
export declare const internal_registryContainer: {
|
|
11
11
|
current: FinalizationRegistryBasedCleanupTracking | TimerBasedCleanupTracking;
|
|
@@ -32,6 +32,8 @@ function useGridEvent(apiRef, eventName, handler, options) {
|
|
|
32
32
|
handlerRef.current = handler;
|
|
33
33
|
const cleanupTokenRef = React.useRef(null);
|
|
34
34
|
if (!subscription.current && handlerRef.current) {
|
|
35
|
+
// The event system is typed against `GridApiCommon`, while the handler can be typed
|
|
36
|
+
// against the package-specific API: `any` bridges the two at this single boundary.
|
|
35
37
|
const enhancedHandler = (params, event, details) => {
|
|
36
38
|
// Check for the existence of the event once more to avoid Safari 26 issue
|
|
37
39
|
// https://github.com/mui/mui-x/issues/20159
|
|
@@ -23,6 +23,8 @@ export function useGridEvent(apiRef, eventName, handler, options) {
|
|
|
23
23
|
handlerRef.current = handler;
|
|
24
24
|
const cleanupTokenRef = React.useRef(null);
|
|
25
25
|
if (!subscription.current && handlerRef.current) {
|
|
26
|
+
// The event system is typed against `GridApiCommon`, while the handler can be typed
|
|
27
|
+
// against the package-specific API: `any` bridges the two at this single boundary.
|
|
26
28
|
const enhancedHandler = (params, event, details) => {
|
|
27
29
|
// Check for the existence of the event once more to avoid Safari 26 issue
|
|
28
30
|
// https://github.com/mui/mui-x/issues/20159
|
package/index.js
CHANGED
package/index.mjs
CHANGED
package/internals/index.d.mts
CHANGED
|
@@ -67,7 +67,7 @@ export type { GridRowTreeCreationParams, GridRowTreeCreationValue, GridHydrateRo
|
|
|
67
67
|
export { getTreeNodeDescendants, buildRootGroup } from "../hooks/features/rows/gridRowsUtils.mjs";
|
|
68
68
|
export { useGridRowsMeta, rowsMetaStateInitializer } from "../hooks/features/rows/useGridRowsMeta.mjs";
|
|
69
69
|
export { useGridParamsApi } from "../hooks/features/rows/useGridParamsApi.mjs";
|
|
70
|
-
export { getRowIdFromRowModel, GRID_ID_AUTOGENERATED, getRowValue } from "../hooks/features/rows/gridRowsUtils.mjs";
|
|
70
|
+
export { getRowIdFromRowModel, GRID_ID_AUTOGENERATED, getRowValue, isReplaceUpdate, getReplaceRow, warnIfReplaceLosesPrototype } from "../hooks/features/rows/gridRowsUtils.mjs";
|
|
71
71
|
export { gridAdditionalRowGroupsSelector, gridPinnedRowsSelector, gridRowSelector } from "../hooks/features/rows/gridRowsSelector.mjs";
|
|
72
72
|
export { headerFilteringStateInitializer, useGridHeaderFiltering } from "../hooks/features/headerFiltering/useGridHeaderFiltering.mjs";
|
|
73
73
|
export { useGridRowSelection, rowSelectionStateInitializer } from "../hooks/features/rowSelection/useGridRowSelection.mjs";
|
|
@@ -101,14 +101,16 @@ export { DataSourceRowsUpdateStrategy } from "../hooks/features/dataSource/utils
|
|
|
101
101
|
export { useGridDataSourceBase } from "../hooks/features/dataSource/useGridDataSourceBase.mjs";
|
|
102
102
|
export { CacheChunkManager } from "../hooks/features/dataSource/utils.mjs";
|
|
103
103
|
export { gridGetRowsParamsSelector } from "../hooks/features/dataSource/gridDataSourceSelector.mjs";
|
|
104
|
+
export { useGridDataSourceFilterModelChange } from "../hooks/features/dataSource/useGridDataSourceFilterModelChange.mjs";
|
|
104
105
|
export { getColumnsToExport, defaultGetRowsToExport } from "../hooks/features/export/utils.mjs";
|
|
105
106
|
export * from "../utils/createControllablePromise.mjs";
|
|
107
|
+
export * from "../utils/focusElement.mjs";
|
|
106
108
|
export * from "../utils/rtlFlipSide.mjs";
|
|
107
109
|
export { NotRendered } from "../utils/assert.mjs";
|
|
108
110
|
export { createSelector, createRootSelector, createSelectorMemoized } from "../utils/createSelector.mjs";
|
|
109
111
|
export { gridRowGroupsToFetchSelector } from "../hooks/features/rows/gridRowsSelector.mjs";
|
|
110
112
|
export { findParentElementFromClassName, getActiveElement, getGridCellElement, isEventTargetInPortal } from "../utils/domUtils.mjs";
|
|
111
|
-
export { isNavigationKey, isPasteShortcut, isCopyShortcut, isUndoShortcut, isRedoShortcut, isFillDownShortcut, isFillRightShortcut } from "../utils/keyboardUtils.mjs";
|
|
113
|
+
export { isNavigationKey, isPasteShortcut, isCopyShortcut, isSelectAllShortcut, isUndoShortcut, isRedoShortcut, isFillDownShortcut, isFillRightShortcut } from "../utils/keyboardUtils.mjs";
|
|
112
114
|
export * from "../utils/utils.mjs";
|
|
113
115
|
export { exportAs } from "../utils/exportAs.mjs";
|
|
114
116
|
export * from "../utils/getPublicApiRef.mjs";
|
package/internals/index.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ export type { GridRowTreeCreationParams, GridRowTreeCreationValue, GridHydrateRo
|
|
|
67
67
|
export { getTreeNodeDescendants, buildRootGroup } from "../hooks/features/rows/gridRowsUtils.js";
|
|
68
68
|
export { useGridRowsMeta, rowsMetaStateInitializer } from "../hooks/features/rows/useGridRowsMeta.js";
|
|
69
69
|
export { useGridParamsApi } from "../hooks/features/rows/useGridParamsApi.js";
|
|
70
|
-
export { getRowIdFromRowModel, GRID_ID_AUTOGENERATED, getRowValue } from "../hooks/features/rows/gridRowsUtils.js";
|
|
70
|
+
export { getRowIdFromRowModel, GRID_ID_AUTOGENERATED, getRowValue, isReplaceUpdate, getReplaceRow, warnIfReplaceLosesPrototype } from "../hooks/features/rows/gridRowsUtils.js";
|
|
71
71
|
export { gridAdditionalRowGroupsSelector, gridPinnedRowsSelector, gridRowSelector } from "../hooks/features/rows/gridRowsSelector.js";
|
|
72
72
|
export { headerFilteringStateInitializer, useGridHeaderFiltering } from "../hooks/features/headerFiltering/useGridHeaderFiltering.js";
|
|
73
73
|
export { useGridRowSelection, rowSelectionStateInitializer } from "../hooks/features/rowSelection/useGridRowSelection.js";
|
|
@@ -101,14 +101,16 @@ export { DataSourceRowsUpdateStrategy } from "../hooks/features/dataSource/utils
|
|
|
101
101
|
export { useGridDataSourceBase } from "../hooks/features/dataSource/useGridDataSourceBase.js";
|
|
102
102
|
export { CacheChunkManager } from "../hooks/features/dataSource/utils.js";
|
|
103
103
|
export { gridGetRowsParamsSelector } from "../hooks/features/dataSource/gridDataSourceSelector.js";
|
|
104
|
+
export { useGridDataSourceFilterModelChange } from "../hooks/features/dataSource/useGridDataSourceFilterModelChange.js";
|
|
104
105
|
export { getColumnsToExport, defaultGetRowsToExport } from "../hooks/features/export/utils.js";
|
|
105
106
|
export * from "../utils/createControllablePromise.js";
|
|
107
|
+
export * from "../utils/focusElement.js";
|
|
106
108
|
export * from "../utils/rtlFlipSide.js";
|
|
107
109
|
export { NotRendered } from "../utils/assert.js";
|
|
108
110
|
export { createSelector, createRootSelector, createSelectorMemoized } from "../utils/createSelector.js";
|
|
109
111
|
export { gridRowGroupsToFetchSelector } from "../hooks/features/rows/gridRowsSelector.js";
|
|
110
112
|
export { findParentElementFromClassName, getActiveElement, getGridCellElement, isEventTargetInPortal } from "../utils/domUtils.js";
|
|
111
|
-
export { isNavigationKey, isPasteShortcut, isCopyShortcut, isUndoShortcut, isRedoShortcut, isFillDownShortcut, isFillRightShortcut } from "../utils/keyboardUtils.js";
|
|
113
|
+
export { isNavigationKey, isPasteShortcut, isCopyShortcut, isSelectAllShortcut, isUndoShortcut, isRedoShortcut, isFillDownShortcut, isFillRightShortcut } from "../utils/keyboardUtils.js";
|
|
112
114
|
export * from "../utils/utils.js";
|
|
113
115
|
export { exportAs } from "../utils/exportAs.js";
|
|
114
116
|
export * from "../utils/getPublicApiRef.js";
|
package/internals/index.js
CHANGED
|
@@ -80,6 +80,9 @@ var _exportNames = {
|
|
|
80
80
|
getRowIdFromRowModel: true,
|
|
81
81
|
GRID_ID_AUTOGENERATED: true,
|
|
82
82
|
getRowValue: true,
|
|
83
|
+
isReplaceUpdate: true,
|
|
84
|
+
getReplaceRow: true,
|
|
85
|
+
warnIfReplaceLosesPrototype: true,
|
|
83
86
|
useGridRowsMeta: true,
|
|
84
87
|
rowsMetaStateInitializer: true,
|
|
85
88
|
useGridParamsApi: true,
|
|
@@ -117,6 +120,7 @@ var _exportNames = {
|
|
|
117
120
|
CacheChunkManager: true,
|
|
118
121
|
useGridDataSourceBase: true,
|
|
119
122
|
gridGetRowsParamsSelector: true,
|
|
123
|
+
useGridDataSourceFilterModelChange: true,
|
|
120
124
|
getColumnsToExport: true,
|
|
121
125
|
defaultGetRowsToExport: true,
|
|
122
126
|
NotRendered: true,
|
|
@@ -130,6 +134,7 @@ var _exportNames = {
|
|
|
130
134
|
isNavigationKey: true,
|
|
131
135
|
isPasteShortcut: true,
|
|
132
136
|
isCopyShortcut: true,
|
|
137
|
+
isSelectAllShortcut: true,
|
|
133
138
|
isUndoShortcut: true,
|
|
134
139
|
isRedoShortcut: true,
|
|
135
140
|
isFillDownShortcut: true,
|
|
@@ -388,6 +393,12 @@ Object.defineProperty(exports, "getGridFilter", {
|
|
|
388
393
|
return _GridFilterPanel.getGridFilter;
|
|
389
394
|
}
|
|
390
395
|
});
|
|
396
|
+
Object.defineProperty(exports, "getReplaceRow", {
|
|
397
|
+
enumerable: true,
|
|
398
|
+
get: function () {
|
|
399
|
+
return _gridRowsUtils.getReplaceRow;
|
|
400
|
+
}
|
|
401
|
+
});
|
|
391
402
|
Object.defineProperty(exports, "getRowIdFromRowModel", {
|
|
392
403
|
enumerable: true,
|
|
393
404
|
get: function () {
|
|
@@ -580,6 +591,18 @@ Object.defineProperty(exports, "isRedoShortcut", {
|
|
|
580
591
|
return _keyboardUtils.isRedoShortcut;
|
|
581
592
|
}
|
|
582
593
|
});
|
|
594
|
+
Object.defineProperty(exports, "isReplaceUpdate", {
|
|
595
|
+
enumerable: true,
|
|
596
|
+
get: function () {
|
|
597
|
+
return _gridRowsUtils.isReplaceUpdate;
|
|
598
|
+
}
|
|
599
|
+
});
|
|
600
|
+
Object.defineProperty(exports, "isSelectAllShortcut", {
|
|
601
|
+
enumerable: true,
|
|
602
|
+
get: function () {
|
|
603
|
+
return _keyboardUtils.isSelectAllShortcut;
|
|
604
|
+
}
|
|
605
|
+
});
|
|
583
606
|
Object.defineProperty(exports, "isSingleSelectColDef", {
|
|
584
607
|
enumerable: true,
|
|
585
608
|
get: function () {
|
|
@@ -736,6 +759,12 @@ Object.defineProperty(exports, "useGridDataSourceBase", {
|
|
|
736
759
|
return _useGridDataSourceBase.useGridDataSourceBase;
|
|
737
760
|
}
|
|
738
761
|
});
|
|
762
|
+
Object.defineProperty(exports, "useGridDataSourceFilterModelChange", {
|
|
763
|
+
enumerable: true,
|
|
764
|
+
get: function () {
|
|
765
|
+
return _useGridDataSourceFilterModelChange.useGridDataSourceFilterModelChange;
|
|
766
|
+
}
|
|
767
|
+
});
|
|
739
768
|
Object.defineProperty(exports, "useGridDensity", {
|
|
740
769
|
enumerable: true,
|
|
741
770
|
get: function () {
|
|
@@ -964,6 +993,12 @@ Object.defineProperty(exports, "vars", {
|
|
|
964
993
|
return _cssVariables.vars;
|
|
965
994
|
}
|
|
966
995
|
});
|
|
996
|
+
Object.defineProperty(exports, "warnIfReplaceLosesPrototype", {
|
|
997
|
+
enumerable: true,
|
|
998
|
+
get: function () {
|
|
999
|
+
return _gridRowsUtils.warnIfReplaceLosesPrototype;
|
|
1000
|
+
}
|
|
1001
|
+
});
|
|
967
1002
|
var _gridStringColDef = require("../colDef/gridStringColDef");
|
|
968
1003
|
var _gridColumnTypesRegistry = require("../colDef/gridColumnTypesRegistry");
|
|
969
1004
|
var _gridPropsSelectors = require("../hooks/core/gridPropsSelectors");
|
|
@@ -1108,6 +1143,7 @@ var _usePinnedScrollOffset = require("../hooks/utils/usePinnedScrollOffset");
|
|
|
1108
1143
|
var _utils2 = require("../hooks/features/dataSource/utils");
|
|
1109
1144
|
var _useGridDataSourceBase = require("../hooks/features/dataSource/useGridDataSourceBase");
|
|
1110
1145
|
var _gridDataSourceSelector = require("../hooks/features/dataSource/gridDataSourceSelector");
|
|
1146
|
+
var _useGridDataSourceFilterModelChange = require("../hooks/features/dataSource/useGridDataSourceFilterModelChange");
|
|
1111
1147
|
var _utils3 = require("../hooks/features/export/utils");
|
|
1112
1148
|
var _createControllablePromise = require("../utils/createControllablePromise");
|
|
1113
1149
|
Object.keys(_createControllablePromise).forEach(function (key) {
|
|
@@ -1121,6 +1157,18 @@ Object.keys(_createControllablePromise).forEach(function (key) {
|
|
|
1121
1157
|
}
|
|
1122
1158
|
});
|
|
1123
1159
|
});
|
|
1160
|
+
var _focusElement = require("../utils/focusElement");
|
|
1161
|
+
Object.keys(_focusElement).forEach(function (key) {
|
|
1162
|
+
if (key === "default" || key === "__esModule") return;
|
|
1163
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1164
|
+
if (key in exports && exports[key] === _focusElement[key]) return;
|
|
1165
|
+
Object.defineProperty(exports, key, {
|
|
1166
|
+
enumerable: true,
|
|
1167
|
+
get: function () {
|
|
1168
|
+
return _focusElement[key];
|
|
1169
|
+
}
|
|
1170
|
+
});
|
|
1171
|
+
});
|
|
1124
1172
|
var _rtlFlipSide = require("../utils/rtlFlipSide");
|
|
1125
1173
|
Object.keys(_rtlFlipSide).forEach(function (key) {
|
|
1126
1174
|
if (key === "default" || key === "__esModule") return;
|
package/internals/index.mjs
CHANGED
|
@@ -54,7 +54,7 @@ export { useGridRowsPreProcessors } from "../hooks/features/rows/useGridRowsPreP
|
|
|
54
54
|
export { getTreeNodeDescendants, buildRootGroup } from "../hooks/features/rows/gridRowsUtils.mjs";
|
|
55
55
|
export { useGridRowsMeta, rowsMetaStateInitializer } from "../hooks/features/rows/useGridRowsMeta.mjs";
|
|
56
56
|
export { useGridParamsApi } from "../hooks/features/rows/useGridParamsApi.mjs";
|
|
57
|
-
export { getRowIdFromRowModel, GRID_ID_AUTOGENERATED, getRowValue } from "../hooks/features/rows/gridRowsUtils.mjs";
|
|
57
|
+
export { getRowIdFromRowModel, GRID_ID_AUTOGENERATED, getRowValue, isReplaceUpdate, getReplaceRow, warnIfReplaceLosesPrototype } from "../hooks/features/rows/gridRowsUtils.mjs";
|
|
58
58
|
export { gridAdditionalRowGroupsSelector, gridPinnedRowsSelector, gridRowSelector } from "../hooks/features/rows/gridRowsSelector.mjs";
|
|
59
59
|
export { headerFilteringStateInitializer, useGridHeaderFiltering } from "../hooks/features/headerFiltering/useGridHeaderFiltering.mjs";
|
|
60
60
|
export { useGridRowSelection, rowSelectionStateInitializer } from "../hooks/features/rowSelection/useGridRowSelection.mjs";
|
|
@@ -79,14 +79,16 @@ export { DataSourceRowsUpdateStrategy } from "../hooks/features/dataSource/utils
|
|
|
79
79
|
export { useGridDataSourceBase } from "../hooks/features/dataSource/useGridDataSourceBase.mjs";
|
|
80
80
|
export { CacheChunkManager } from "../hooks/features/dataSource/utils.mjs";
|
|
81
81
|
export { gridGetRowsParamsSelector } from "../hooks/features/dataSource/gridDataSourceSelector.mjs";
|
|
82
|
+
export { useGridDataSourceFilterModelChange } from "../hooks/features/dataSource/useGridDataSourceFilterModelChange.mjs";
|
|
82
83
|
export { getColumnsToExport, defaultGetRowsToExport } from "../hooks/features/export/utils.mjs";
|
|
83
84
|
export * from "../utils/createControllablePromise.mjs";
|
|
85
|
+
export * from "../utils/focusElement.mjs";
|
|
84
86
|
export * from "../utils/rtlFlipSide.mjs";
|
|
85
87
|
export { NotRendered } from "../utils/assert.mjs";
|
|
86
88
|
export { createSelector, createRootSelector, createSelectorMemoized } from "../utils/createSelector.mjs";
|
|
87
89
|
export { gridRowGroupsToFetchSelector } from "../hooks/features/rows/gridRowsSelector.mjs";
|
|
88
90
|
export { findParentElementFromClassName, getActiveElement, getGridCellElement, isEventTargetInPortal } from "../utils/domUtils.mjs";
|
|
89
|
-
export { isNavigationKey, isPasteShortcut, isCopyShortcut, isUndoShortcut, isRedoShortcut, isFillDownShortcut, isFillRightShortcut } from "../utils/keyboardUtils.mjs";
|
|
91
|
+
export { isNavigationKey, isPasteShortcut, isCopyShortcut, isSelectAllShortcut, isUndoShortcut, isRedoShortcut, isFillDownShortcut, isFillRightShortcut } from "../utils/keyboardUtils.mjs";
|
|
90
92
|
export * from "../utils/utils.mjs";
|
|
91
93
|
export { exportAs } from "../utils/exportAs.mjs";
|
|
92
94
|
export * from "../utils/getPublicApiRef.mjs";
|
package/locales/arSD.js
CHANGED
|
@@ -51,6 +51,11 @@ const arSDGrid = {
|
|
|
51
51
|
// Toolbar AI Assistant button
|
|
52
52
|
// toolbarAssistant: 'AI Assistant',
|
|
53
53
|
|
|
54
|
+
// Formula bar (Premium formulas)
|
|
55
|
+
// formulaBarLabel: 'Formula bar',
|
|
56
|
+
// formulaBarInputLabel: 'Formula',
|
|
57
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
58
|
+
|
|
54
59
|
// Columns management text
|
|
55
60
|
columnsManagementSearchTitle: 'بحث',
|
|
56
61
|
columnsManagementNoColumns: 'لا يوجد أعمدة',
|
package/locales/arSD.mjs
CHANGED
|
@@ -45,6 +45,11 @@ const arSDGrid = {
|
|
|
45
45
|
// Toolbar AI Assistant button
|
|
46
46
|
// toolbarAssistant: 'AI Assistant',
|
|
47
47
|
|
|
48
|
+
// Formula bar (Premium formulas)
|
|
49
|
+
// formulaBarLabel: 'Formula bar',
|
|
50
|
+
// formulaBarInputLabel: 'Formula',
|
|
51
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
52
|
+
|
|
48
53
|
// Columns management text
|
|
49
54
|
columnsManagementSearchTitle: 'بحث',
|
|
50
55
|
columnsManagementNoColumns: 'لا يوجد أعمدة',
|
package/locales/beBY.js
CHANGED
|
@@ -64,6 +64,11 @@ const beBYGrid = {
|
|
|
64
64
|
// Toolbar AI Assistant button
|
|
65
65
|
// toolbarAssistant: 'AI Assistant',
|
|
66
66
|
|
|
67
|
+
// Formula bar (Premium formulas)
|
|
68
|
+
// formulaBarLabel: 'Formula bar',
|
|
69
|
+
// formulaBarInputLabel: 'Formula',
|
|
70
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
71
|
+
|
|
67
72
|
// Columns management text
|
|
68
73
|
// columnsManagementSearchTitle: 'Search',
|
|
69
74
|
// columnsManagementNoColumns: 'No columns',
|
package/locales/beBY.mjs
CHANGED
|
@@ -58,6 +58,11 @@ const beBYGrid = {
|
|
|
58
58
|
// Toolbar AI Assistant button
|
|
59
59
|
// toolbarAssistant: 'AI Assistant',
|
|
60
60
|
|
|
61
|
+
// Formula bar (Premium formulas)
|
|
62
|
+
// formulaBarLabel: 'Formula bar',
|
|
63
|
+
// formulaBarInputLabel: 'Formula',
|
|
64
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
65
|
+
|
|
61
66
|
// Columns management text
|
|
62
67
|
// columnsManagementSearchTitle: 'Search',
|
|
63
68
|
// columnsManagementNoColumns: 'No columns',
|
package/locales/bgBG.js
CHANGED
|
@@ -50,6 +50,11 @@ const bgBGGrid = {
|
|
|
50
50
|
// Toolbar AI Assistant button
|
|
51
51
|
// toolbarAssistant: 'AI Assistant',
|
|
52
52
|
|
|
53
|
+
// Formula bar (Premium formulas)
|
|
54
|
+
// formulaBarLabel: 'Formula bar',
|
|
55
|
+
// formulaBarInputLabel: 'Formula',
|
|
56
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
57
|
+
|
|
53
58
|
// Columns management text
|
|
54
59
|
columnsManagementSearchTitle: 'Търсене',
|
|
55
60
|
columnsManagementNoColumns: 'Няма колони',
|
package/locales/bgBG.mjs
CHANGED
|
@@ -44,6 +44,11 @@ const bgBGGrid = {
|
|
|
44
44
|
// Toolbar AI Assistant button
|
|
45
45
|
// toolbarAssistant: 'AI Assistant',
|
|
46
46
|
|
|
47
|
+
// Formula bar (Premium formulas)
|
|
48
|
+
// formulaBarLabel: 'Formula bar',
|
|
49
|
+
// formulaBarInputLabel: 'Formula',
|
|
50
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
51
|
+
|
|
47
52
|
// Columns management text
|
|
48
53
|
columnsManagementSearchTitle: 'Търсене',
|
|
49
54
|
columnsManagementNoColumns: 'Няма колони',
|
package/locales/bnBD.js
CHANGED
|
@@ -50,6 +50,11 @@ const bnBDGrid = {
|
|
|
50
50
|
// Toolbar AI Assistant button
|
|
51
51
|
// toolbarAssistant: 'AI Assistant',
|
|
52
52
|
|
|
53
|
+
// Formula bar (Premium formulas)
|
|
54
|
+
// formulaBarLabel: 'Formula bar',
|
|
55
|
+
// formulaBarInputLabel: 'Formula',
|
|
56
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
57
|
+
|
|
53
58
|
// Columns management text
|
|
54
59
|
columnsManagementSearchTitle: 'অনুসন্ধান',
|
|
55
60
|
columnsManagementNoColumns: 'কোনো কলাম নেই',
|
package/locales/bnBD.mjs
CHANGED
|
@@ -44,6 +44,11 @@ const bnBDGrid = {
|
|
|
44
44
|
// Toolbar AI Assistant button
|
|
45
45
|
// toolbarAssistant: 'AI Assistant',
|
|
46
46
|
|
|
47
|
+
// Formula bar (Premium formulas)
|
|
48
|
+
// formulaBarLabel: 'Formula bar',
|
|
49
|
+
// formulaBarInputLabel: 'Formula',
|
|
50
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
51
|
+
|
|
47
52
|
// Columns management text
|
|
48
53
|
columnsManagementSearchTitle: 'অনুসন্ধান',
|
|
49
54
|
columnsManagementNoColumns: 'কোনো কলাম নেই',
|
package/locales/caES.js
CHANGED
|
@@ -47,6 +47,11 @@ const caESGrid = {
|
|
|
47
47
|
toolbarCharts: 'Gràfics',
|
|
48
48
|
// Toolbar AI Assistant button
|
|
49
49
|
toolbarAssistant: "Assistent d'IA",
|
|
50
|
+
// Formula bar (Premium formulas)
|
|
51
|
+
// formulaBarLabel: 'Formula bar',
|
|
52
|
+
// formulaBarInputLabel: 'Formula',
|
|
53
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
54
|
+
|
|
50
55
|
// Columns management text
|
|
51
56
|
columnsManagementSearchTitle: 'Cerca',
|
|
52
57
|
columnsManagementNoColumns: 'Sense columnes',
|
package/locales/caES.mjs
CHANGED
|
@@ -41,6 +41,11 @@ const caESGrid = {
|
|
|
41
41
|
toolbarCharts: 'Gràfics',
|
|
42
42
|
// Toolbar AI Assistant button
|
|
43
43
|
toolbarAssistant: "Assistent d'IA",
|
|
44
|
+
// Formula bar (Premium formulas)
|
|
45
|
+
// formulaBarLabel: 'Formula bar',
|
|
46
|
+
// formulaBarInputLabel: 'Formula',
|
|
47
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
48
|
+
|
|
44
49
|
// Columns management text
|
|
45
50
|
columnsManagementSearchTitle: 'Cerca',
|
|
46
51
|
columnsManagementNoColumns: 'Sense columnes',
|
package/locales/csCZ.js
CHANGED
|
@@ -59,6 +59,11 @@ const csCZGrid = {
|
|
|
59
59
|
// Toolbar AI Assistant button
|
|
60
60
|
// toolbarAssistant: 'AI Assistant',
|
|
61
61
|
|
|
62
|
+
// Formula bar (Premium formulas)
|
|
63
|
+
// formulaBarLabel: 'Formula bar',
|
|
64
|
+
// formulaBarInputLabel: 'Formula',
|
|
65
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
66
|
+
|
|
62
67
|
// Columns management text
|
|
63
68
|
columnsManagementSearchTitle: 'Hledat sloupce',
|
|
64
69
|
columnsManagementNoColumns: 'Žádné sloupce',
|
package/locales/csCZ.mjs
CHANGED
|
@@ -53,6 +53,11 @@ const csCZGrid = {
|
|
|
53
53
|
// Toolbar AI Assistant button
|
|
54
54
|
// toolbarAssistant: 'AI Assistant',
|
|
55
55
|
|
|
56
|
+
// Formula bar (Premium formulas)
|
|
57
|
+
// formulaBarLabel: 'Formula bar',
|
|
58
|
+
// formulaBarInputLabel: 'Formula',
|
|
59
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
60
|
+
|
|
56
61
|
// Columns management text
|
|
57
62
|
columnsManagementSearchTitle: 'Hledat sloupce',
|
|
58
63
|
columnsManagementNoColumns: 'Žádné sloupce',
|
package/locales/daDK.js
CHANGED
|
@@ -50,6 +50,11 @@ const daDKGrid = {
|
|
|
50
50
|
// Toolbar AI Assistant button
|
|
51
51
|
// toolbarAssistant: 'AI Assistant',
|
|
52
52
|
|
|
53
|
+
// Formula bar (Premium formulas)
|
|
54
|
+
// formulaBarLabel: 'Formula bar',
|
|
55
|
+
// formulaBarInputLabel: 'Formula',
|
|
56
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
57
|
+
|
|
53
58
|
// Columns management text
|
|
54
59
|
columnsManagementSearchTitle: 'Søg',
|
|
55
60
|
columnsManagementNoColumns: 'Ingen søjler',
|
package/locales/daDK.mjs
CHANGED
|
@@ -44,6 +44,11 @@ const daDKGrid = {
|
|
|
44
44
|
// Toolbar AI Assistant button
|
|
45
45
|
// toolbarAssistant: 'AI Assistant',
|
|
46
46
|
|
|
47
|
+
// Formula bar (Premium formulas)
|
|
48
|
+
// formulaBarLabel: 'Formula bar',
|
|
49
|
+
// formulaBarInputLabel: 'Formula',
|
|
50
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
51
|
+
|
|
47
52
|
// Columns management text
|
|
48
53
|
columnsManagementSearchTitle: 'Søg',
|
|
49
54
|
columnsManagementNoColumns: 'Ingen søjler',
|
package/locales/deDE.js
CHANGED
|
@@ -48,6 +48,11 @@ const deDEGrid = {
|
|
|
48
48
|
|
|
49
49
|
// Toolbar AI Assistant button
|
|
50
50
|
toolbarAssistant: 'KI-Assistent',
|
|
51
|
+
// Formula bar (Premium formulas)
|
|
52
|
+
// formulaBarLabel: 'Formula bar',
|
|
53
|
+
// formulaBarInputLabel: 'Formula',
|
|
54
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
55
|
+
|
|
51
56
|
// Columns management text
|
|
52
57
|
columnsManagementSearchTitle: 'Suche',
|
|
53
58
|
columnsManagementNoColumns: 'Keine Spalten',
|
package/locales/deDE.mjs
CHANGED
|
@@ -42,6 +42,11 @@ const deDEGrid = {
|
|
|
42
42
|
|
|
43
43
|
// Toolbar AI Assistant button
|
|
44
44
|
toolbarAssistant: 'KI-Assistent',
|
|
45
|
+
// Formula bar (Premium formulas)
|
|
46
|
+
// formulaBarLabel: 'Formula bar',
|
|
47
|
+
// formulaBarInputLabel: 'Formula',
|
|
48
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
49
|
+
|
|
45
50
|
// Columns management text
|
|
46
51
|
columnsManagementSearchTitle: 'Suche',
|
|
47
52
|
columnsManagementNoColumns: 'Keine Spalten',
|
package/locales/elGR.js
CHANGED
|
@@ -50,6 +50,11 @@ const elGRGrid = {
|
|
|
50
50
|
// Toolbar AI Assistant button
|
|
51
51
|
// toolbarAssistant: 'AI Assistant',
|
|
52
52
|
|
|
53
|
+
// Formula bar (Premium formulas)
|
|
54
|
+
// formulaBarLabel: 'Formula bar',
|
|
55
|
+
// formulaBarInputLabel: 'Formula',
|
|
56
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
57
|
+
|
|
53
58
|
// Columns management text
|
|
54
59
|
// columnsManagementSearchTitle: 'Search',
|
|
55
60
|
// columnsManagementNoColumns: 'No columns',
|
package/locales/elGR.mjs
CHANGED
|
@@ -44,6 +44,11 @@ const elGRGrid = {
|
|
|
44
44
|
// Toolbar AI Assistant button
|
|
45
45
|
// toolbarAssistant: 'AI Assistant',
|
|
46
46
|
|
|
47
|
+
// Formula bar (Premium formulas)
|
|
48
|
+
// formulaBarLabel: 'Formula bar',
|
|
49
|
+
// formulaBarInputLabel: 'Formula',
|
|
50
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
51
|
+
|
|
47
52
|
// Columns management text
|
|
48
53
|
// columnsManagementSearchTitle: 'Search',
|
|
49
54
|
// columnsManagementNoColumns: 'No columns',
|
package/locales/esES.js
CHANGED
|
@@ -47,6 +47,11 @@ const esESGrid = {
|
|
|
47
47
|
toolbarCharts: 'Gráficos',
|
|
48
48
|
// Toolbar AI Assistant button
|
|
49
49
|
toolbarAssistant: 'Asistente de IA',
|
|
50
|
+
// Formula bar (Premium formulas)
|
|
51
|
+
// formulaBarLabel: 'Formula bar',
|
|
52
|
+
// formulaBarInputLabel: 'Formula',
|
|
53
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
54
|
+
|
|
50
55
|
// Columns management text
|
|
51
56
|
columnsManagementSearchTitle: 'Buscar',
|
|
52
57
|
columnsManagementNoColumns: 'Sin columnas',
|
package/locales/esES.mjs
CHANGED
|
@@ -41,6 +41,11 @@ const esESGrid = {
|
|
|
41
41
|
toolbarCharts: 'Gráficos',
|
|
42
42
|
// Toolbar AI Assistant button
|
|
43
43
|
toolbarAssistant: 'Asistente de IA',
|
|
44
|
+
// Formula bar (Premium formulas)
|
|
45
|
+
// formulaBarLabel: 'Formula bar',
|
|
46
|
+
// formulaBarInputLabel: 'Formula',
|
|
47
|
+
// formulaBarAddressLabel: 'Active cell',
|
|
48
|
+
|
|
44
49
|
// Columns management text
|
|
45
50
|
columnsManagementSearchTitle: 'Buscar',
|
|
46
51
|
columnsManagementNoColumns: 'Sin columnas',
|