@mui/x-data-grid 8.25.0 → 8.27.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 +184 -0
- package/DataGrid/DataGrid.d.ts +2 -2
- package/DataGrid/useDataGridComponent.d.ts +4 -4
- package/DataGrid/useDataGridProps.d.ts +2 -2
- package/colDef/gridActionsColDef.d.ts +1 -1
- package/colDef/gridBooleanColDef.d.ts +1 -1
- package/colDef/gridBooleanOperators.d.ts +1 -1
- package/colDef/gridCheckboxSelectionColDef.d.ts +1 -1
- package/colDef/gridDateColDef.d.ts +1 -1
- package/colDef/gridDateOperators.d.ts +2 -2
- package/colDef/gridDefaultColumnTypes.js +3 -1
- package/colDef/gridLongTextColDef.d.ts +2 -0
- package/colDef/gridLongTextColDef.js +17 -0
- package/colDef/gridNumericColDef.d.ts +1 -1
- package/colDef/gridNumericOperators.d.ts +1 -1
- package/colDef/gridSingleSelectColDef.d.ts +1 -1
- package/colDef/gridSingleSelectOperators.d.ts +1 -1
- package/colDef/gridStringColDef.d.ts +1 -1
- package/colDef/gridStringOperators.d.ts +1 -1
- package/colDef/index.d.ts +1 -0
- package/colDef/index.js +11 -0
- package/components/GridColumnHeaders.d.ts +1 -1
- package/components/GridColumnSortButton.d.ts +2 -2
- package/components/GridColumnUnsortedIcon.d.ts +2 -2
- package/components/GridFooter.d.ts +1 -1
- package/components/GridLoadingOverlay.d.ts +1 -1
- package/components/GridNoColumnsOverlay.d.ts +1 -1
- package/components/GridNoResultsOverlay.d.ts +1 -1
- package/components/GridNoRowsOverlay.d.ts +1 -1
- package/components/GridRow.d.ts +2 -2
- package/components/GridRowCount.d.ts +1 -1
- package/components/GridScrollArea.d.ts +2 -2
- package/components/GridSelectedRowCount.d.ts +1 -1
- package/components/GridSkeletonLoadingOverlay.d.ts +1 -1
- package/components/cell/GridActionsCell.d.ts +24 -4
- package/components/cell/GridActionsCell.js +15 -5
- package/components/cell/GridActionsCellItem.d.ts +1 -1
- package/components/cell/GridCell.d.ts +3 -3
- package/components/cell/GridEditBooleanCell.d.ts +1 -1
- package/components/cell/GridEditDateCell.d.ts +2 -2
- package/components/cell/GridEditInputCell.d.ts +2 -2
- package/components/cell/GridEditLongTextCell.d.ts +41 -0
- package/components/cell/GridEditLongTextCell.js +248 -0
- package/components/cell/GridEditSingleSelectCell.d.ts +1 -1
- package/components/cell/GridFooterCell.d.ts +1 -1
- package/components/cell/GridLongTextCell.d.ts +43 -0
- package/components/cell/GridLongTextCell.js +254 -0
- package/components/cell/GridSkeletonCell.d.ts +1 -1
- package/components/cell/index.d.ts +3 -1
- package/components/cell/index.js +24 -0
- package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
- package/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderItem.d.ts +3 -3
- package/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
- package/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +4 -4
- package/components/columnsManagement/GridColumnsManagement.d.ts +1 -1
- package/components/columnsManagement/utils.d.ts +1 -1
- package/components/columnsPanel/ColumnsPanelTrigger.d.ts +1 -1
- package/components/containers/GridFooterContainer.d.ts +1 -1
- package/components/containers/GridOverlay.d.ts +1 -1
- package/components/containers/GridRoot.d.ts +2 -2
- package/components/containers/GridRootStyles.d.ts +1 -1
- package/components/containers/GridToolbarContainer.d.ts +1 -1
- package/components/export/ExportCsv.d.ts +2 -2
- package/components/export/ExportPrint.d.ts +2 -2
- package/components/filterPanel/FilterPanelTrigger.d.ts +1 -1
- package/components/menu/GridMenu.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnMenu.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +2 -2
- package/components/menu/columnMenu/GridColumnMenuProps.d.ts +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +1 -1
- package/components/panel/GridColumnsPanel.d.ts +1 -1
- package/components/panel/GridPanel.d.ts +1 -1
- package/components/panel/GridPanelContent.d.ts +1 -1
- package/components/panel/GridPanelFooter.d.ts +1 -1
- package/components/panel/GridPanelHeader.d.ts +1 -1
- package/components/panel/GridPanelWrapper.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterForm.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -3
- package/components/panel/filterPanel/GridFilterPanel.d.ts +4 -4
- package/components/quickFilter/QuickFilter.d.ts +2 -2
- package/components/quickFilter/QuickFilterClear.d.ts +2 -2
- package/components/quickFilter/QuickFilterControl.d.ts +2 -2
- package/components/quickFilter/QuickFilterTrigger.d.ts +2 -2
- package/components/toolbar/GridToolbar.d.ts +8 -3
- package/components/toolbar/GridToolbar.js +5 -0
- package/components/toolbar/GridToolbarExport.d.ts +1 -1
- package/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
- package/components/toolbarV8/GridToolbar.d.ts +2 -2
- package/components/toolbarV8/GridToolbar.js +26 -24
- package/components/toolbarV8/Toolbar.d.ts +1 -1
- package/components/toolbarV8/ToolbarButton.d.ts +1 -1
- package/components/virtualization/GridMainContainer.d.ts +1 -1
- package/components/virtualization/GridVirtualScrollerContent.d.ts +1 -1
- package/components/virtualization/GridVirtualScrollerRenderZone.d.ts +1 -1
- package/constants/defaultGridSlotsComponents.d.ts +1 -1
- package/constants/gridClasses.d.ts +44 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.d.ts +1 -1
- package/constants/localeTextConstants.js +6 -0
- package/context/GridContextProvider.d.ts +3 -3
- package/esm/DataGrid/DataGrid.d.ts +2 -2
- package/esm/DataGrid/useDataGridComponent.d.ts +4 -4
- package/esm/DataGrid/useDataGridProps.d.ts +2 -2
- package/esm/colDef/gridActionsColDef.d.ts +1 -1
- package/esm/colDef/gridBooleanColDef.d.ts +1 -1
- package/esm/colDef/gridBooleanOperators.d.ts +1 -1
- package/esm/colDef/gridCheckboxSelectionColDef.d.ts +1 -1
- package/esm/colDef/gridDateColDef.d.ts +1 -1
- package/esm/colDef/gridDateOperators.d.ts +2 -2
- package/esm/colDef/gridDefaultColumnTypes.js +3 -1
- package/esm/colDef/gridLongTextColDef.d.ts +2 -0
- package/esm/colDef/gridLongTextColDef.js +10 -0
- package/esm/colDef/gridNumericColDef.d.ts +1 -1
- package/esm/colDef/gridNumericOperators.d.ts +1 -1
- package/esm/colDef/gridSingleSelectColDef.d.ts +1 -1
- package/esm/colDef/gridSingleSelectOperators.d.ts +1 -1
- package/esm/colDef/gridStringColDef.d.ts +1 -1
- package/esm/colDef/gridStringOperators.d.ts +1 -1
- package/esm/colDef/index.d.ts +1 -0
- package/esm/colDef/index.js +1 -0
- package/esm/components/GridColumnHeaders.d.ts +1 -1
- package/esm/components/GridColumnSortButton.d.ts +2 -2
- package/esm/components/GridColumnUnsortedIcon.d.ts +2 -2
- package/esm/components/GridFooter.d.ts +1 -1
- package/esm/components/GridLoadingOverlay.d.ts +1 -1
- package/esm/components/GridNoColumnsOverlay.d.ts +1 -1
- package/esm/components/GridNoResultsOverlay.d.ts +1 -1
- package/esm/components/GridNoRowsOverlay.d.ts +1 -1
- package/esm/components/GridRow.d.ts +2 -2
- package/esm/components/GridRowCount.d.ts +1 -1
- package/esm/components/GridScrollArea.d.ts +2 -2
- package/esm/components/GridSelectedRowCount.d.ts +1 -1
- package/esm/components/GridSkeletonLoadingOverlay.d.ts +1 -1
- package/esm/components/cell/GridActionsCell.d.ts +24 -4
- package/esm/components/cell/GridActionsCell.js +15 -5
- package/esm/components/cell/GridActionsCellItem.d.ts +1 -1
- package/esm/components/cell/GridCell.d.ts +3 -3
- package/esm/components/cell/GridEditBooleanCell.d.ts +1 -1
- package/esm/components/cell/GridEditDateCell.d.ts +2 -2
- package/esm/components/cell/GridEditInputCell.d.ts +2 -2
- package/esm/components/cell/GridEditLongTextCell.d.ts +41 -0
- package/esm/components/cell/GridEditLongTextCell.js +240 -0
- package/esm/components/cell/GridEditSingleSelectCell.d.ts +1 -1
- package/esm/components/cell/GridFooterCell.d.ts +1 -1
- package/esm/components/cell/GridLongTextCell.d.ts +43 -0
- package/esm/components/cell/GridLongTextCell.js +246 -0
- package/esm/components/cell/GridSkeletonCell.d.ts +1 -1
- package/esm/components/cell/index.d.ts +3 -1
- package/esm/components/cell/index.js +3 -1
- package/esm/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
- package/esm/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
- package/esm/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
- package/esm/components/columnHeaders/GridColumnHeaderItem.d.ts +3 -3
- package/esm/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
- package/esm/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +4 -4
- package/esm/components/columnsManagement/GridColumnsManagement.d.ts +1 -1
- package/esm/components/columnsManagement/utils.d.ts +1 -1
- package/esm/components/columnsPanel/ColumnsPanelTrigger.d.ts +1 -1
- package/esm/components/containers/GridFooterContainer.d.ts +1 -1
- package/esm/components/containers/GridOverlay.d.ts +1 -1
- package/esm/components/containers/GridRoot.d.ts +2 -2
- package/esm/components/containers/GridRootStyles.d.ts +1 -1
- package/esm/components/containers/GridToolbarContainer.d.ts +1 -1
- package/esm/components/export/ExportCsv.d.ts +2 -2
- package/esm/components/export/ExportPrint.d.ts +2 -2
- package/esm/components/filterPanel/FilterPanelTrigger.d.ts +1 -1
- package/esm/components/menu/GridMenu.d.ts +1 -1
- package/esm/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
- package/esm/components/menu/columnMenu/GridColumnMenu.d.ts +1 -1
- package/esm/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
- package/esm/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +2 -2
- package/esm/components/menu/columnMenu/GridColumnMenuProps.d.ts +3 -3
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +1 -1
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +1 -1
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +1 -1
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +1 -1
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +1 -1
- package/esm/components/panel/GridColumnsPanel.d.ts +1 -1
- package/esm/components/panel/GridPanel.d.ts +1 -1
- package/esm/components/panel/GridPanelContent.d.ts +1 -1
- package/esm/components/panel/GridPanelFooter.d.ts +1 -1
- package/esm/components/panel/GridPanelHeader.d.ts +1 -1
- package/esm/components/panel/GridPanelWrapper.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterForm.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputBoolean.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputDate.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -3
- package/esm/components/panel/filterPanel/GridFilterPanel.d.ts +4 -4
- package/esm/components/quickFilter/QuickFilter.d.ts +2 -2
- package/esm/components/quickFilter/QuickFilterClear.d.ts +2 -2
- package/esm/components/quickFilter/QuickFilterControl.d.ts +2 -2
- package/esm/components/quickFilter/QuickFilterTrigger.d.ts +2 -2
- package/esm/components/toolbar/GridToolbar.d.ts +8 -3
- package/esm/components/toolbar/GridToolbar.js +5 -0
- package/esm/components/toolbar/GridToolbarExport.d.ts +1 -1
- package/esm/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
- package/esm/components/toolbarV8/GridToolbar.d.ts +2 -2
- package/esm/components/toolbarV8/GridToolbar.js +26 -24
- package/esm/components/toolbarV8/Toolbar.d.ts +1 -1
- package/esm/components/toolbarV8/ToolbarButton.d.ts +1 -1
- package/esm/components/virtualization/GridMainContainer.d.ts +1 -1
- package/esm/components/virtualization/GridVirtualScrollerContent.d.ts +1 -1
- package/esm/components/virtualization/GridVirtualScrollerRenderZone.d.ts +1 -1
- package/esm/constants/defaultGridSlotsComponents.d.ts +1 -1
- package/esm/constants/gridClasses.d.ts +44 -0
- package/esm/constants/gridClasses.js +1 -1
- package/esm/constants/localeTextConstants.d.ts +1 -1
- package/esm/constants/localeTextConstants.js +6 -0
- package/esm/context/GridContextProvider.d.ts +3 -3
- package/esm/hooks/core/gridCoreSelector.d.ts +1 -1
- package/esm/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +10 -10
- package/esm/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
- package/esm/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +3 -3
- package/esm/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +3 -3
- package/esm/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +3 -3
- package/esm/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -3
- package/esm/hooks/core/useGridApiInitialization.d.ts +2 -2
- package/esm/hooks/core/useGridInitialization.d.ts +2 -2
- package/esm/hooks/core/useGridIsRtl.d.ts +2 -2
- package/esm/hooks/core/useGridLocaleText.d.ts +3 -3
- package/esm/hooks/core/useGridLoggerFactory.d.ts +3 -3
- package/esm/hooks/core/useGridProps.js +5 -3
- package/esm/hooks/core/useGridRefs.d.ts +1 -1
- package/esm/hooks/core/useGridStateInitialization.d.ts +1 -1
- package/esm/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
- package/esm/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +1 -1
- package/esm/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +1 -1
- package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -3
- package/esm/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +4 -4
- package/esm/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +8 -8
- package/esm/hooks/features/columnMenu/columnMenuInterfaces.d.ts +1 -1
- package/esm/hooks/features/columnMenu/columnMenuSelector.d.ts +1 -1
- package/esm/hooks/features/columnMenu/useGridColumnMenu.d.ts +3 -3
- package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +2 -2
- package/esm/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
- package/esm/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
- package/esm/hooks/features/columns/gridColumnsSelector.d.ts +2 -2
- package/esm/hooks/features/columns/gridColumnsUtils.d.ts +7 -7
- package/esm/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
- package/esm/hooks/features/columns/useGridColumns.d.ts +4 -4
- package/esm/hooks/features/dataSource/useGridDataSource.d.ts +1 -1
- package/esm/hooks/features/dataSource/useGridDataSourceBase.d.ts +2 -2
- package/esm/hooks/features/density/densitySelector.d.ts +2 -2
- package/esm/hooks/features/density/densityState.d.ts +1 -1
- package/esm/hooks/features/density/useGridDensity.d.ts +4 -4
- package/esm/hooks/features/dimensions/gridDimensionsSelectors.d.ts +1 -1
- package/esm/hooks/features/dimensions/useGridDimensions.d.ts +5 -5
- package/esm/hooks/features/editing/gridEditingSelectors.d.ts +3 -3
- package/esm/hooks/features/editing/useGridCellEditable.d.ts +1 -1
- package/esm/hooks/features/editing/useGridCellEditing.d.ts +3 -3
- package/esm/hooks/features/editing/useGridEditing.d.ts +5 -5
- package/esm/hooks/features/editing/useGridRowEditing.d.ts +3 -3
- package/esm/hooks/features/editing/utils.d.ts +1 -1
- package/esm/hooks/features/events/useGridEvents.d.ts +3 -3
- package/esm/hooks/features/export/serializers/csvSerializer.d.ts +1 -1
- package/esm/hooks/features/export/useGridCsvExport.d.ts +2 -2
- package/esm/hooks/features/export/useGridPrintExport.d.ts +3 -3
- package/esm/hooks/features/export/utils.d.ts +5 -5
- package/esm/hooks/features/filter/gridFilterSelector.d.ts +3 -3
- package/esm/hooks/features/filter/gridFilterState.d.ts +4 -4
- package/esm/hooks/features/filter/gridFilterUtils.d.ts +4 -4
- package/esm/hooks/features/filter/useGridFilter.d.ts +4 -4
- package/esm/hooks/features/focus/gridFocusState.d.ts +1 -1
- package/esm/hooks/features/focus/gridFocusStateSelector.d.ts +2 -2
- package/esm/hooks/features/focus/useGridFocus.d.ts +4 -4
- package/esm/hooks/features/focus/useGridFocus.js +40 -2
- package/esm/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +1 -1
- package/esm/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +4 -4
- package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +3 -3
- package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +3 -0
- package/esm/hooks/features/keyboardNavigation/utils.d.ts +3 -3
- package/esm/hooks/features/listView/gridListViewSelectors.d.ts +1 -1
- package/esm/hooks/features/listView/useGridListView.d.ts +4 -4
- package/esm/hooks/features/overlays/gridOverlaysInterfaces.d.ts +1 -1
- package/esm/hooks/features/overlays/useGridOverlays.d.ts +3 -3
- package/esm/hooks/features/pagination/gridPaginationInterfaces.d.ts +2 -2
- package/esm/hooks/features/pagination/gridPaginationSelector.d.ts +2 -2
- package/esm/hooks/features/pagination/gridPaginationUtils.d.ts +1 -1
- package/esm/hooks/features/pagination/useGridPagination.d.ts +4 -4
- package/esm/hooks/features/pagination/useGridPaginationMeta.d.ts +3 -3
- package/esm/hooks/features/pagination/useGridPaginationModel.d.ts +5 -5
- package/esm/hooks/features/pagination/useGridRowCount.d.ts +3 -3
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -1
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +1 -1
- package/esm/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +4 -4
- package/esm/hooks/features/rowReorder/gridRowReorderSelector.d.ts +1 -1
- package/esm/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +2 -2
- package/esm/hooks/features/rowSelection/useGridRowSelection.d.ts +4 -4
- package/esm/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +3 -3
- package/esm/hooks/features/rowSelection/utils.d.ts +3 -3
- package/esm/hooks/features/rows/gridRowSpanningUtils.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsInterfaces.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsMetaInterfaces.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsMetaSelector.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsMetaState.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsSelector.d.ts +2 -2
- package/esm/hooks/features/rows/gridRowsUtils.d.ts +5 -5
- package/esm/hooks/features/rows/useGridParamsApi.d.ts +3 -3
- package/esm/hooks/features/rows/useGridParamsOverridableMethods.d.ts +2 -2
- package/esm/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
- package/esm/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
- package/esm/hooks/features/rows/useGridRows.d.ts +4 -4
- package/esm/hooks/features/rows/useGridRowsMeta.d.ts +4 -4
- package/esm/hooks/features/rows/useGridRowsOverridableMethods.d.ts +3 -3
- package/esm/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
- package/esm/hooks/features/scroll/useGridScroll.d.ts +3 -3
- package/esm/hooks/features/scroll/useGridScroll.js +3 -3
- package/esm/hooks/features/sorting/gridSortingSelector.d.ts +2 -2
- package/esm/hooks/features/sorting/gridSortingState.d.ts +2 -2
- package/esm/hooks/features/sorting/gridSortingUtils.d.ts +5 -5
- package/esm/hooks/features/sorting/useGridSorting.d.ts +4 -4
- package/esm/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +1 -1
- package/esm/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
- package/esm/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
- package/esm/hooks/features/virtualization/useGridVirtualization.d.ts +5 -5
- package/esm/hooks/utils/useGridApiContext.d.ts +3 -3
- package/esm/hooks/utils/useGridApiMethod.d.ts +2 -2
- package/esm/hooks/utils/useGridApiRef.d.ts +2 -2
- package/esm/hooks/utils/useGridAriaAttributes.d.ts +1 -1
- package/esm/hooks/utils/useGridConfiguration.d.ts +1 -1
- package/esm/hooks/utils/useGridEvent.d.ts +3 -3
- package/esm/hooks/utils/useGridInitializeState.d.ts +4 -4
- package/esm/hooks/utils/useGridLogger.d.ts +3 -3
- package/esm/hooks/utils/useGridNativeEventListener.d.ts +2 -2
- package/esm/hooks/utils/useGridPrivateApiContext.d.ts +3 -3
- package/esm/hooks/utils/useGridSelector.d.ts +1 -1
- package/esm/hooks/utils/useGridVisibleRows.d.ts +2 -2
- package/esm/index.d.ts +2 -2
- package/esm/index.js +1 -1
- package/esm/internals/index.d.ts +1 -1
- package/esm/internals/index.js +1 -1
- package/esm/internals/utils/attachPinnedStyle.d.ts +1 -1
- package/esm/internals/utils/cache.d.ts +1 -1
- package/esm/internals/utils/getPinnedCellOffset.d.ts +1 -1
- package/esm/internals/utils/propValidation.d.ts +1 -1
- package/esm/locales/arSD.d.ts +1 -1
- package/esm/locales/arSD.js +6 -0
- package/esm/locales/beBY.d.ts +1 -1
- package/esm/locales/beBY.js +6 -0
- package/esm/locales/bgBG.d.ts +1 -1
- package/esm/locales/bgBG.js +6 -0
- package/esm/locales/bnBD.d.ts +1 -1
- package/esm/locales/bnBD.js +6 -0
- package/esm/locales/caES.d.ts +1 -1
- package/esm/locales/caES.js +6 -0
- package/esm/locales/csCZ.d.ts +1 -1
- package/esm/locales/csCZ.js +6 -0
- package/esm/locales/daDK.d.ts +1 -1
- package/esm/locales/daDK.js +6 -0
- package/esm/locales/deDE.d.ts +1 -1
- package/esm/locales/deDE.js +6 -0
- package/esm/locales/elGR.d.ts +1 -1
- package/esm/locales/elGR.js +6 -0
- package/esm/locales/enUS.d.ts +1 -1
- package/esm/locales/esES.d.ts +1 -1
- package/esm/locales/esES.js +6 -0
- package/esm/locales/faIR.d.ts +1 -1
- package/esm/locales/faIR.js +6 -0
- package/esm/locales/fiFI.d.ts +1 -1
- package/esm/locales/fiFI.js +6 -0
- package/esm/locales/frFR.d.ts +1 -1
- package/esm/locales/frFR.js +6 -0
- package/esm/locales/heIL.d.ts +1 -1
- package/esm/locales/heIL.js +6 -0
- package/esm/locales/hrHR.js +6 -0
- package/esm/locales/huHU.d.ts +1 -1
- package/esm/locales/huHU.js +6 -0
- package/esm/locales/hyAM.d.ts +1 -1
- package/esm/locales/hyAM.js +6 -0
- package/esm/locales/idID.d.ts +2 -2
- package/esm/locales/idID.js +6 -0
- package/esm/locales/isIS.d.ts +1 -1
- package/esm/locales/isIS.js +6 -0
- package/esm/locales/itIT.d.ts +1 -1
- package/esm/locales/itIT.js +6 -0
- package/esm/locales/jaJP.d.ts +1 -1
- package/esm/locales/jaJP.js +6 -0
- package/esm/locales/koKR.d.ts +1 -1
- package/esm/locales/koKR.js +6 -0
- package/esm/locales/nbNO.d.ts +1 -1
- package/esm/locales/nbNO.js +6 -0
- package/esm/locales/nlNL.d.ts +1 -1
- package/esm/locales/nlNL.js +6 -0
- package/esm/locales/nnNO.d.ts +1 -1
- package/esm/locales/nnNO.js +6 -0
- package/esm/locales/plPL.d.ts +1 -1
- package/esm/locales/plPL.js +6 -0
- package/esm/locales/ptBR.d.ts +1 -1
- package/esm/locales/ptBR.js +6 -0
- package/esm/locales/ptPT.d.ts +1 -1
- package/esm/locales/ptPT.js +6 -0
- package/esm/locales/roRO.d.ts +1 -1
- package/esm/locales/roRO.js +6 -0
- package/esm/locales/ruRU.d.ts +1 -1
- package/esm/locales/ruRU.js +6 -0
- package/esm/locales/skSK.d.ts +1 -1
- package/esm/locales/skSK.js +6 -0
- package/esm/locales/svSE.d.ts +1 -1
- package/esm/locales/svSE.js +6 -0
- package/esm/locales/trTR.d.ts +1 -1
- package/esm/locales/trTR.js +6 -0
- package/esm/locales/ukUA.d.ts +1 -1
- package/esm/locales/ukUA.js +6 -0
- package/esm/locales/urPK.d.ts +1 -1
- package/esm/locales/urPK.js +6 -0
- package/esm/locales/viVN.d.ts +1 -1
- package/esm/locales/viVN.js +6 -0
- package/esm/locales/zhCN.d.ts +1 -1
- package/esm/locales/zhCN.js +6 -0
- package/esm/locales/zhHK.js +6 -0
- package/esm/locales/zhTW.d.ts +1 -1
- package/esm/locales/zhTW.js +6 -0
- package/esm/material/augmentation.d.ts +4 -0
- package/esm/material/icons/createSvgIcon.d.ts +1 -1
- package/esm/material/icons/index.d.ts +5 -1
- package/esm/material/icons/index.js +13 -1
- package/esm/material/index.js +27 -10
- package/esm/models/api/gridColumnApi.d.ts +1 -1
- package/esm/models/api/gridColumnGroupingApi.d.ts +2 -2
- package/esm/models/api/gridColumnSpanning.d.ts +3 -3
- package/esm/models/api/gridCoreApi.d.ts +2 -2
- package/esm/models/api/gridCsvExportApi.d.ts +1 -1
- package/esm/models/api/gridDensityApi.d.ts +2 -2
- package/esm/models/api/gridEditingApi.d.ts +6 -6
- package/esm/models/api/gridFilterApi.d.ts +4 -4
- package/esm/models/api/gridFocusApi.d.ts +3 -3
- package/esm/models/api/gridHeaderFilteringApi.d.ts +2 -2
- package/esm/models/api/gridLocaleTextApi.d.ts +5 -1
- package/esm/models/api/gridLoggerApi.d.ts +1 -1
- package/esm/models/api/gridParamsApi.d.ts +7 -7
- package/esm/models/api/gridPreferencesPanelApi.d.ts +1 -1
- package/esm/models/api/gridPrintExportApi.d.ts +1 -1
- package/esm/models/api/gridRowApi.d.ts +1 -1
- package/esm/models/api/gridRowSelectionApi.d.ts +1 -1
- package/esm/models/api/gridRowsMetaApi.d.ts +2 -2
- package/esm/models/api/gridScrollApi.d.ts +2 -2
- package/esm/models/api/gridSortApi.d.ts +3 -3
- package/esm/models/api/gridStateApi.d.ts +3 -3
- package/esm/models/colDef/gridColDef.d.ts +13 -13
- package/esm/models/colDef/gridColType.d.ts +1 -0
- package/esm/models/colDef/gridColumnTypesRecord.d.ts +2 -2
- package/esm/models/configuration/gridAggregationConfiguration.d.ts +2 -2
- package/esm/models/configuration/gridCellEditableConfiguration.d.ts +4 -4
- package/esm/models/configuration/gridConfiguration.d.ts +1 -1
- package/esm/models/configuration/gridParamsConfiguration.d.ts +2 -2
- package/esm/models/configuration/gridRowConfiguration.d.ts +4 -4
- package/esm/models/controlStateItem.d.ts +1 -1
- package/esm/models/events/gridEventLookup.d.ts +7 -7
- package/esm/models/gridBaseSlots.d.ts +13 -0
- package/esm/models/gridCell.d.ts +1 -1
- package/esm/models/gridCellClass.d.ts +2 -2
- package/esm/models/gridColumnGrouping.d.ts +1 -1
- package/esm/models/gridColumnHeaderClass.d.ts +1 -1
- package/esm/models/gridExport.d.ts +2 -2
- package/esm/models/gridFilterInputComponent.d.ts +3 -3
- package/esm/models/gridFilterItem.d.ts +1 -1
- package/esm/models/gridFilterModel.d.ts +1 -1
- package/esm/models/gridFilterOperator.d.ts +3 -3
- package/esm/models/gridHeaderFilteringModel.d.ts +1 -1
- package/esm/models/gridIconSlotsComponent.d.ts +22 -2
- package/esm/models/gridRowSelectionModel.d.ts +1 -1
- package/esm/models/gridSlotsComponent.d.ts +6 -1
- package/esm/models/gridSlotsComponentsProps.d.ts +4 -2
- package/esm/models/gridSortModel.d.ts +1 -1
- package/esm/models/gridStateCommunity.d.ts +2 -2
- package/esm/models/params/gridCellParams.d.ts +4 -4
- package/esm/models/params/gridColumnGroupHeaderParams.d.ts +1 -1
- package/esm/models/params/gridColumnHeaderParams.d.ts +1 -1
- package/esm/models/params/gridEditCellParams.d.ts +2 -2
- package/esm/models/params/gridPreferencePanelParams.d.ts +1 -1
- package/esm/models/params/gridRowParams.d.ts +1 -1
- package/esm/models/params/gridRowSelectionCheckboxParams.d.ts +1 -1
- package/esm/models/params/gridValueOptionsParams.d.ts +1 -1
- package/esm/models/props/DataGridProps.d.ts +25 -26
- package/esm/themeAugmentation/overrides.d.ts +1 -1
- package/esm/themeAugmentation/props.d.ts +2 -2
- package/esm/utils/assert.d.ts +1 -1
- package/esm/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +1 -1
- package/esm/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +1 -1
- package/esm/utils/createSelector.d.ts +2 -2
- package/esm/utils/exportAs.d.ts +1 -1
- package/esm/utils/getPublicApiRef.d.ts +1 -1
- package/esm/utils/keyboardUtils.d.ts +4 -2
- package/esm/utils/keyboardUtils.js +6 -0
- package/hooks/core/gridCoreSelector.d.ts +1 -1
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +10 -10
- package/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
- package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +3 -3
- package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +3 -3
- package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +3 -3
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -3
- package/hooks/core/useGridApiInitialization.d.ts +2 -2
- package/hooks/core/useGridInitialization.d.ts +2 -2
- package/hooks/core/useGridIsRtl.d.ts +2 -2
- package/hooks/core/useGridLocaleText.d.ts +3 -3
- package/hooks/core/useGridLoggerFactory.d.ts +3 -3
- package/hooks/core/useGridProps.js +5 -3
- package/hooks/core/useGridRefs.d.ts +1 -1
- package/hooks/core/useGridStateInitialization.d.ts +1 -1
- package/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
- package/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +1 -1
- package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +1 -1
- package/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -3
- package/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +4 -4
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +8 -8
- package/hooks/features/columnMenu/columnMenuInterfaces.d.ts +1 -1
- package/hooks/features/columnMenu/columnMenuSelector.d.ts +1 -1
- package/hooks/features/columnMenu/useGridColumnMenu.d.ts +3 -3
- package/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +2 -2
- package/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
- package/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
- package/hooks/features/columns/gridColumnsSelector.d.ts +2 -2
- package/hooks/features/columns/gridColumnsUtils.d.ts +7 -7
- package/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
- package/hooks/features/columns/useGridColumns.d.ts +4 -4
- package/hooks/features/dataSource/useGridDataSource.d.ts +1 -1
- package/hooks/features/dataSource/useGridDataSourceBase.d.ts +2 -2
- package/hooks/features/density/densitySelector.d.ts +2 -2
- package/hooks/features/density/densityState.d.ts +1 -1
- package/hooks/features/density/useGridDensity.d.ts +4 -4
- package/hooks/features/dimensions/gridDimensionsSelectors.d.ts +1 -1
- package/hooks/features/dimensions/useGridDimensions.d.ts +5 -5
- package/hooks/features/editing/gridEditingSelectors.d.ts +3 -3
- package/hooks/features/editing/useGridCellEditable.d.ts +1 -1
- package/hooks/features/editing/useGridCellEditing.d.ts +3 -3
- package/hooks/features/editing/useGridEditing.d.ts +5 -5
- package/hooks/features/editing/useGridRowEditing.d.ts +3 -3
- package/hooks/features/editing/utils.d.ts +1 -1
- package/hooks/features/events/useGridEvents.d.ts +3 -3
- package/hooks/features/export/serializers/csvSerializer.d.ts +1 -1
- package/hooks/features/export/useGridCsvExport.d.ts +2 -2
- package/hooks/features/export/useGridPrintExport.d.ts +3 -3
- package/hooks/features/export/utils.d.ts +5 -5
- package/hooks/features/filter/gridFilterSelector.d.ts +3 -3
- package/hooks/features/filter/gridFilterState.d.ts +4 -4
- package/hooks/features/filter/gridFilterUtils.d.ts +4 -4
- package/hooks/features/filter/useGridFilter.d.ts +4 -4
- package/hooks/features/focus/gridFocusState.d.ts +1 -1
- package/hooks/features/focus/gridFocusStateSelector.d.ts +2 -2
- package/hooks/features/focus/useGridFocus.d.ts +4 -4
- package/hooks/features/focus/useGridFocus.js +39 -1
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +1 -1
- package/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +4 -4
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +3 -3
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +3 -0
- package/hooks/features/keyboardNavigation/utils.d.ts +3 -3
- package/hooks/features/listView/gridListViewSelectors.d.ts +1 -1
- package/hooks/features/listView/useGridListView.d.ts +4 -4
- package/hooks/features/overlays/gridOverlaysInterfaces.d.ts +1 -1
- package/hooks/features/overlays/useGridOverlays.d.ts +3 -3
- package/hooks/features/pagination/gridPaginationInterfaces.d.ts +2 -2
- package/hooks/features/pagination/gridPaginationSelector.d.ts +2 -2
- package/hooks/features/pagination/gridPaginationUtils.d.ts +1 -1
- package/hooks/features/pagination/useGridPagination.d.ts +4 -4
- package/hooks/features/pagination/useGridPaginationMeta.d.ts +3 -3
- package/hooks/features/pagination/useGridPaginationModel.d.ts +5 -5
- package/hooks/features/pagination/useGridRowCount.d.ts +3 -3
- package/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -1
- package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +1 -1
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +4 -4
- package/hooks/features/rowReorder/gridRowReorderSelector.d.ts +1 -1
- package/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +2 -2
- package/hooks/features/rowSelection/useGridRowSelection.d.ts +4 -4
- package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +3 -3
- package/hooks/features/rowSelection/utils.d.ts +3 -3
- package/hooks/features/rows/gridRowSpanningUtils.d.ts +1 -1
- package/hooks/features/rows/gridRowsInterfaces.d.ts +1 -1
- package/hooks/features/rows/gridRowsMetaInterfaces.d.ts +1 -1
- package/hooks/features/rows/gridRowsMetaSelector.d.ts +1 -1
- package/hooks/features/rows/gridRowsMetaState.d.ts +1 -1
- package/hooks/features/rows/gridRowsSelector.d.ts +2 -2
- package/hooks/features/rows/gridRowsUtils.d.ts +5 -5
- package/hooks/features/rows/useGridParamsApi.d.ts +3 -3
- package/hooks/features/rows/useGridParamsOverridableMethods.d.ts +2 -2
- package/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
- package/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
- package/hooks/features/rows/useGridRows.d.ts +4 -4
- package/hooks/features/rows/useGridRowsMeta.d.ts +4 -4
- package/hooks/features/rows/useGridRowsOverridableMethods.d.ts +3 -3
- package/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
- package/hooks/features/scroll/useGridScroll.d.ts +3 -3
- package/hooks/features/scroll/useGridScroll.js +3 -3
- package/hooks/features/sorting/gridSortingSelector.d.ts +2 -2
- package/hooks/features/sorting/gridSortingState.d.ts +2 -2
- package/hooks/features/sorting/gridSortingUtils.d.ts +5 -5
- package/hooks/features/sorting/useGridSorting.d.ts +4 -4
- package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +1 -1
- package/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
- package/hooks/features/virtualization/useGridVirtualization.d.ts +5 -5
- package/hooks/utils/useGridApiContext.d.ts +3 -3
- package/hooks/utils/useGridApiMethod.d.ts +2 -2
- package/hooks/utils/useGridApiRef.d.ts +2 -2
- package/hooks/utils/useGridAriaAttributes.d.ts +1 -1
- package/hooks/utils/useGridConfiguration.d.ts +1 -1
- package/hooks/utils/useGridEvent.d.ts +3 -3
- package/hooks/utils/useGridInitializeState.d.ts +4 -4
- package/hooks/utils/useGridLogger.d.ts +3 -3
- package/hooks/utils/useGridNativeEventListener.d.ts +2 -2
- package/hooks/utils/useGridPrivateApiContext.d.ts +3 -3
- package/hooks/utils/useGridSelector.d.ts +1 -1
- package/hooks/utils/useGridVisibleRows.d.ts +2 -2
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/internals/index.d.ts +1 -1
- package/internals/index.js +14 -0
- package/internals/utils/attachPinnedStyle.d.ts +1 -1
- package/internals/utils/cache.d.ts +1 -1
- package/internals/utils/getPinnedCellOffset.d.ts +1 -1
- package/internals/utils/propValidation.d.ts +1 -1
- package/locales/arSD.d.ts +1 -1
- package/locales/arSD.js +6 -0
- package/locales/beBY.d.ts +1 -1
- package/locales/beBY.js +6 -0
- package/locales/bgBG.d.ts +1 -1
- package/locales/bgBG.js +6 -0
- package/locales/bnBD.d.ts +1 -1
- package/locales/bnBD.js +6 -0
- package/locales/caES.d.ts +1 -1
- package/locales/caES.js +6 -0
- package/locales/csCZ.d.ts +1 -1
- package/locales/csCZ.js +6 -0
- package/locales/daDK.d.ts +1 -1
- package/locales/daDK.js +6 -0
- package/locales/deDE.d.ts +1 -1
- package/locales/deDE.js +6 -0
- package/locales/elGR.d.ts +1 -1
- package/locales/elGR.js +6 -0
- package/locales/enUS.d.ts +1 -1
- package/locales/esES.d.ts +1 -1
- package/locales/esES.js +6 -0
- package/locales/faIR.d.ts +1 -1
- package/locales/faIR.js +6 -0
- package/locales/fiFI.d.ts +1 -1
- package/locales/fiFI.js +6 -0
- package/locales/frFR.d.ts +1 -1
- package/locales/frFR.js +6 -0
- package/locales/heIL.d.ts +1 -1
- package/locales/heIL.js +6 -0
- package/locales/hrHR.js +6 -0
- package/locales/huHU.d.ts +1 -1
- package/locales/huHU.js +6 -0
- package/locales/hyAM.d.ts +1 -1
- package/locales/hyAM.js +6 -0
- package/locales/idID.d.ts +2 -2
- package/locales/idID.js +6 -0
- package/locales/isIS.d.ts +1 -1
- package/locales/isIS.js +6 -0
- package/locales/itIT.d.ts +1 -1
- package/locales/itIT.js +6 -0
- package/locales/jaJP.d.ts +1 -1
- package/locales/jaJP.js +6 -0
- package/locales/koKR.d.ts +1 -1
- package/locales/koKR.js +6 -0
- package/locales/nbNO.d.ts +1 -1
- package/locales/nbNO.js +6 -0
- package/locales/nlNL.d.ts +1 -1
- package/locales/nlNL.js +6 -0
- package/locales/nnNO.d.ts +1 -1
- package/locales/nnNO.js +6 -0
- package/locales/plPL.d.ts +1 -1
- package/locales/plPL.js +6 -0
- package/locales/ptBR.d.ts +1 -1
- package/locales/ptBR.js +6 -0
- package/locales/ptPT.d.ts +1 -1
- package/locales/ptPT.js +6 -0
- package/locales/roRO.d.ts +1 -1
- package/locales/roRO.js +6 -0
- package/locales/ruRU.d.ts +1 -1
- package/locales/ruRU.js +6 -0
- package/locales/skSK.d.ts +1 -1
- package/locales/skSK.js +6 -0
- package/locales/svSE.d.ts +1 -1
- package/locales/svSE.js +6 -0
- package/locales/trTR.d.ts +1 -1
- package/locales/trTR.js +6 -0
- package/locales/ukUA.d.ts +1 -1
- package/locales/ukUA.js +6 -0
- package/locales/urPK.d.ts +1 -1
- package/locales/urPK.js +6 -0
- package/locales/viVN.d.ts +1 -1
- package/locales/viVN.js +6 -0
- package/locales/zhCN.d.ts +1 -1
- package/locales/zhCN.js +6 -0
- package/locales/zhHK.js +6 -0
- package/locales/zhTW.d.ts +1 -1
- package/locales/zhTW.js +6 -0
- package/material/augmentation.d.ts +4 -0
- package/material/icons/createSvgIcon.d.ts +1 -1
- package/material/icons/index.d.ts +5 -1
- package/material/icons/index.js +14 -2
- package/material/index.js +26 -9
- package/models/api/gridColumnApi.d.ts +1 -1
- package/models/api/gridColumnGroupingApi.d.ts +2 -2
- package/models/api/gridColumnSpanning.d.ts +3 -3
- package/models/api/gridCoreApi.d.ts +2 -2
- package/models/api/gridCsvExportApi.d.ts +1 -1
- package/models/api/gridDensityApi.d.ts +2 -2
- package/models/api/gridEditingApi.d.ts +6 -6
- package/models/api/gridFilterApi.d.ts +4 -4
- package/models/api/gridFocusApi.d.ts +3 -3
- package/models/api/gridHeaderFilteringApi.d.ts +2 -2
- package/models/api/gridLocaleTextApi.d.ts +5 -1
- package/models/api/gridLoggerApi.d.ts +1 -1
- package/models/api/gridParamsApi.d.ts +7 -7
- package/models/api/gridPreferencesPanelApi.d.ts +1 -1
- package/models/api/gridPrintExportApi.d.ts +1 -1
- package/models/api/gridRowApi.d.ts +1 -1
- package/models/api/gridRowSelectionApi.d.ts +1 -1
- package/models/api/gridRowsMetaApi.d.ts +2 -2
- package/models/api/gridScrollApi.d.ts +2 -2
- package/models/api/gridSortApi.d.ts +3 -3
- package/models/api/gridStateApi.d.ts +3 -3
- package/models/colDef/gridColDef.d.ts +13 -13
- package/models/colDef/gridColType.d.ts +1 -0
- package/models/colDef/gridColumnTypesRecord.d.ts +2 -2
- package/models/configuration/gridAggregationConfiguration.d.ts +2 -2
- package/models/configuration/gridCellEditableConfiguration.d.ts +4 -4
- package/models/configuration/gridConfiguration.d.ts +1 -1
- package/models/configuration/gridParamsConfiguration.d.ts +2 -2
- package/models/configuration/gridRowConfiguration.d.ts +4 -4
- package/models/controlStateItem.d.ts +1 -1
- package/models/events/gridEventLookup.d.ts +7 -7
- package/models/gridBaseSlots.d.ts +13 -0
- package/models/gridCell.d.ts +1 -1
- package/models/gridCellClass.d.ts +2 -2
- package/models/gridColumnGrouping.d.ts +1 -1
- package/models/gridColumnHeaderClass.d.ts +1 -1
- package/models/gridExport.d.ts +2 -2
- package/models/gridFilterInputComponent.d.ts +3 -3
- package/models/gridFilterItem.d.ts +1 -1
- package/models/gridFilterModel.d.ts +1 -1
- package/models/gridFilterOperator.d.ts +3 -3
- package/models/gridHeaderFilteringModel.d.ts +1 -1
- package/models/gridIconSlotsComponent.d.ts +22 -2
- package/models/gridRowSelectionModel.d.ts +1 -1
- package/models/gridSlotsComponent.d.ts +6 -1
- package/models/gridSlotsComponentsProps.d.ts +4 -2
- package/models/gridSortModel.d.ts +1 -1
- package/models/gridStateCommunity.d.ts +2 -2
- package/models/params/gridCellParams.d.ts +4 -4
- package/models/params/gridColumnGroupHeaderParams.d.ts +1 -1
- package/models/params/gridColumnHeaderParams.d.ts +1 -1
- package/models/params/gridEditCellParams.d.ts +2 -2
- package/models/params/gridPreferencePanelParams.d.ts +1 -1
- package/models/params/gridRowParams.d.ts +1 -1
- package/models/params/gridRowSelectionCheckboxParams.d.ts +1 -1
- package/models/params/gridValueOptionsParams.d.ts +1 -1
- package/models/props/DataGridProps.d.ts +25 -26
- package/package.json +3 -3
- package/themeAugmentation/overrides.d.ts +1 -1
- package/themeAugmentation/props.d.ts +2 -2
- package/utils/assert.d.ts +1 -1
- package/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +1 -1
- package/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +1 -1
- package/utils/createSelector.d.ts +2 -2
- package/utils/exportAs.d.ts +1 -1
- package/utils/getPublicApiRef.d.ts +1 -1
- package/utils/keyboardUtils.d.ts +4 -2
- package/utils/keyboardUtils.js +8 -0
package/locales/nnNO.js
CHANGED
|
@@ -18,6 +18,9 @@ const nnNOGrid = {
|
|
|
18
18
|
toolbarDensityCompact: 'Kompakt',
|
|
19
19
|
toolbarDensityStandard: 'Standard',
|
|
20
20
|
toolbarDensityComfortable: 'Komfortabelt',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: 'Angre',
|
|
23
|
+
toolbarRedo: 'Gjer om',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: 'Kolonner',
|
|
23
26
|
toolbarColumnsLabel: 'Vel kolonner',
|
|
@@ -142,6 +145,9 @@ const nnNOGrid = {
|
|
|
142
145
|
// Boolean cell text
|
|
143
146
|
booleanCellTrueLabel: 'sant',
|
|
144
147
|
booleanCellFalseLabel: 'usant',
|
|
148
|
+
// Long text cell
|
|
149
|
+
longTextCellExpandLabel: 'Vis',
|
|
150
|
+
longTextCellCollapseLabel: 'Gøym',
|
|
145
151
|
// Actions cell more text
|
|
146
152
|
actionsCellMore: 'meir',
|
|
147
153
|
// Column pinning text
|
package/locales/plPL.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const plPL: Localization;
|
package/locales/plPL.js
CHANGED
|
@@ -19,6 +19,9 @@ const plPLGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompakt',
|
|
20
20
|
toolbarDensityStandard: 'Standard',
|
|
21
21
|
toolbarDensityComfortable: 'Komfort',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Cofnij',
|
|
24
|
+
toolbarRedo: 'Ponów',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Kolumny',
|
|
24
27
|
toolbarColumnsLabel: 'Zaznacz kolumny',
|
|
@@ -144,6 +147,9 @@ const plPLGrid = {
|
|
|
144
147
|
// Boolean cell text
|
|
145
148
|
booleanCellTrueLabel: 'tak',
|
|
146
149
|
booleanCellFalseLabel: 'nie',
|
|
150
|
+
// Long text cell
|
|
151
|
+
longTextCellExpandLabel: 'Rozwiń',
|
|
152
|
+
longTextCellCollapseLabel: 'Zwiń',
|
|
147
153
|
// Actions cell more text
|
|
148
154
|
actionsCellMore: 'więcej',
|
|
149
155
|
// Column pinning text
|
package/locales/ptBR.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const ptBR: Localization;
|
package/locales/ptBR.js
CHANGED
|
@@ -18,6 +18,9 @@ const ptBRGrid = {
|
|
|
18
18
|
toolbarDensityCompact: 'Compacto',
|
|
19
19
|
toolbarDensityStandard: 'Padrão',
|
|
20
20
|
toolbarDensityComfortable: 'Confortável',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: 'Desfazer',
|
|
23
|
+
toolbarRedo: 'Refazer',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: 'Colunas',
|
|
23
26
|
toolbarColumnsLabel: 'Exibir seletor de colunas',
|
|
@@ -140,6 +143,9 @@ const ptBRGrid = {
|
|
|
140
143
|
// Boolean cell text
|
|
141
144
|
booleanCellTrueLabel: 'sim',
|
|
142
145
|
booleanCellFalseLabel: 'não',
|
|
146
|
+
// Long text cell
|
|
147
|
+
longTextCellExpandLabel: 'Expandir',
|
|
148
|
+
longTextCellCollapseLabel: 'Recolher',
|
|
143
149
|
// Actions cell more text
|
|
144
150
|
actionsCellMore: 'mais',
|
|
145
151
|
// Column pinning text
|
package/locales/ptPT.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const ptPT: Localization;
|
package/locales/ptPT.js
CHANGED
|
@@ -18,6 +18,9 @@ const ptPTGrid = {
|
|
|
18
18
|
toolbarDensityCompact: 'Compacto',
|
|
19
19
|
toolbarDensityStandard: 'Padrão',
|
|
20
20
|
toolbarDensityComfortable: 'Confortável',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: 'Anular',
|
|
23
|
+
toolbarRedo: 'Refazer',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: 'Colunas',
|
|
23
26
|
toolbarColumnsLabel: 'Selecione colunas',
|
|
@@ -140,6 +143,9 @@ const ptPTGrid = {
|
|
|
140
143
|
// Boolean cell text
|
|
141
144
|
booleanCellTrueLabel: 'sim',
|
|
142
145
|
booleanCellFalseLabel: 'não',
|
|
146
|
+
// Long text cell
|
|
147
|
+
longTextCellExpandLabel: 'Expandir',
|
|
148
|
+
longTextCellCollapseLabel: 'Colapsar',
|
|
143
149
|
// Actions cell more text
|
|
144
150
|
actionsCellMore: 'mais',
|
|
145
151
|
// Column pinning text
|
package/locales/roRO.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const roRO: Localization;
|
package/locales/roRO.js
CHANGED
|
@@ -19,6 +19,9 @@ const roROGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Compact',
|
|
20
20
|
toolbarDensityStandard: 'Standard',
|
|
21
21
|
toolbarDensityComfortable: 'Lat',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Anulează',
|
|
24
|
+
toolbarRedo: 'Refă',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Coloane',
|
|
24
27
|
toolbarColumnsLabel: 'Afișează selecție coloane',
|
|
@@ -146,6 +149,9 @@ const roROGrid = {
|
|
|
146
149
|
// Boolean cell text
|
|
147
150
|
booleanCellTrueLabel: 'Da',
|
|
148
151
|
booleanCellFalseLabel: 'Nu',
|
|
152
|
+
// Long text cell
|
|
153
|
+
longTextCellExpandLabel: 'Extindere',
|
|
154
|
+
longTextCellCollapseLabel: 'Restrângere',
|
|
149
155
|
// Actions cell more text
|
|
150
156
|
actionsCellMore: 'Mai multe',
|
|
151
157
|
// Column pinning text
|
package/locales/ruRU.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const ruRU: Localization;
|
package/locales/ruRU.js
CHANGED
|
@@ -30,6 +30,9 @@ const ruRUGrid = {
|
|
|
30
30
|
toolbarDensityCompact: 'Компактная',
|
|
31
31
|
toolbarDensityStandard: 'Стандартная',
|
|
32
32
|
toolbarDensityComfortable: 'Комфортная',
|
|
33
|
+
// Undo/redo toolbar button text
|
|
34
|
+
toolbarUndo: 'Отменить',
|
|
35
|
+
toolbarRedo: 'Повторить',
|
|
33
36
|
// Columns selector toolbar button text
|
|
34
37
|
toolbarColumns: 'Столбцы',
|
|
35
38
|
toolbarColumnsLabel: 'Выделите столбцы',
|
|
@@ -168,6 +171,9 @@ const ruRUGrid = {
|
|
|
168
171
|
// Boolean cell text
|
|
169
172
|
booleanCellTrueLabel: 'истина',
|
|
170
173
|
booleanCellFalseLabel: 'ложь',
|
|
174
|
+
// Long text cell
|
|
175
|
+
longTextCellExpandLabel: 'Развернуть',
|
|
176
|
+
longTextCellCollapseLabel: 'Свернуть',
|
|
171
177
|
// Actions cell more text
|
|
172
178
|
actionsCellMore: 'ещё',
|
|
173
179
|
// Column pinning text
|
package/locales/skSK.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const skSK: Localization;
|
package/locales/skSK.js
CHANGED
|
@@ -19,6 +19,9 @@ const skSKGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompaktná',
|
|
20
20
|
toolbarDensityStandard: 'Štandartná',
|
|
21
21
|
toolbarDensityComfortable: 'Komfortná',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Späť',
|
|
24
|
+
toolbarRedo: 'Znova',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Stĺpce',
|
|
24
27
|
toolbarColumnsLabel: 'Vybrať stĺpce',
|
|
@@ -174,6 +177,9 @@ const skSKGrid = {
|
|
|
174
177
|
// Boolean cell text
|
|
175
178
|
booleanCellTrueLabel: 'áno',
|
|
176
179
|
booleanCellFalseLabel: 'nie',
|
|
180
|
+
// Long text cell
|
|
181
|
+
longTextCellExpandLabel: 'Rozbaliť',
|
|
182
|
+
longTextCellCollapseLabel: 'Zbaliť',
|
|
177
183
|
// Actions cell more text
|
|
178
184
|
actionsCellMore: 'viac',
|
|
179
185
|
// Column pinning text
|
package/locales/svSE.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const svSE: Localization;
|
package/locales/svSE.js
CHANGED
|
@@ -19,6 +19,9 @@ const svSEGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompakt',
|
|
20
20
|
toolbarDensityStandard: 'Standard',
|
|
21
21
|
toolbarDensityComfortable: 'Luftig',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Ångra',
|
|
24
|
+
toolbarRedo: 'Gör om',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Kolumner',
|
|
24
27
|
toolbarColumnsLabel: 'Välj kolumner',
|
|
@@ -147,6 +150,9 @@ const svSEGrid = {
|
|
|
147
150
|
// Boolean cell text
|
|
148
151
|
booleanCellTrueLabel: 'ja',
|
|
149
152
|
booleanCellFalseLabel: 'nej',
|
|
153
|
+
// Long text cell
|
|
154
|
+
longTextCellExpandLabel: 'Expandera',
|
|
155
|
+
longTextCellCollapseLabel: 'Kollapsa',
|
|
150
156
|
// Actions cell more text
|
|
151
157
|
actionsCellMore: 'mer',
|
|
152
158
|
// Column pinning text
|
package/locales/trTR.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const trTR: Localization;
|
package/locales/trTR.js
CHANGED
|
@@ -19,6 +19,9 @@ const trTRGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Sıkı',
|
|
20
20
|
toolbarDensityStandard: 'Standart',
|
|
21
21
|
toolbarDensityComfortable: 'Rahat',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Geri al',
|
|
24
|
+
toolbarRedo: 'Yinele',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Sütunlar',
|
|
24
27
|
toolbarColumnsLabel: 'Sütun seç',
|
|
@@ -146,6 +149,9 @@ const trTRGrid = {
|
|
|
146
149
|
// Boolean cell text
|
|
147
150
|
booleanCellTrueLabel: 'Evet',
|
|
148
151
|
booleanCellFalseLabel: 'Hayır',
|
|
152
|
+
// Long text cell
|
|
153
|
+
longTextCellExpandLabel: 'Genişlet',
|
|
154
|
+
longTextCellCollapseLabel: 'Gizle',
|
|
149
155
|
// Actions cell more text
|
|
150
156
|
actionsCellMore: 'daha fazla',
|
|
151
157
|
// Column pinning text
|
package/locales/ukUA.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const ukUA: Localization;
|
package/locales/ukUA.js
CHANGED
|
@@ -30,6 +30,9 @@ const ukUAGrid = {
|
|
|
30
30
|
toolbarDensityCompact: 'Компактний',
|
|
31
31
|
toolbarDensityStandard: 'Стандартний',
|
|
32
32
|
toolbarDensityComfortable: 'Комфортний',
|
|
33
|
+
// Undo/redo toolbar button text
|
|
34
|
+
toolbarUndo: 'Скасувати',
|
|
35
|
+
toolbarRedo: 'Повторити',
|
|
33
36
|
// Columns selector toolbar button text
|
|
34
37
|
toolbarColumns: 'Стовпці',
|
|
35
38
|
toolbarColumnsLabel: 'Виділіть стовпці',
|
|
@@ -168,6 +171,9 @@ const ukUAGrid = {
|
|
|
168
171
|
// Boolean cell text
|
|
169
172
|
booleanCellTrueLabel: 'так',
|
|
170
173
|
booleanCellFalseLabel: 'ні',
|
|
174
|
+
// Long text cell
|
|
175
|
+
longTextCellExpandLabel: 'Показати',
|
|
176
|
+
longTextCellCollapseLabel: 'Приховати',
|
|
171
177
|
// Actions cell more text
|
|
172
178
|
actionsCellMore: 'більше',
|
|
173
179
|
// Column pinning text
|
package/locales/urPK.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const urPK: Localization;
|
package/locales/urPK.js
CHANGED
|
@@ -19,6 +19,9 @@ const urPKGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'تنگ',
|
|
20
20
|
toolbarDensityStandard: 'درمیانہ',
|
|
21
21
|
toolbarDensityComfortable: 'مناسب',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'واپس',
|
|
24
|
+
toolbarRedo: 'دوبارہ',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'کالمز',
|
|
24
27
|
toolbarColumnsLabel: 'کالمز کو منتخب کریں',
|
|
@@ -146,6 +149,9 @@ const urPKGrid = {
|
|
|
146
149
|
// Boolean cell text
|
|
147
150
|
booleanCellTrueLabel: 'ہاں',
|
|
148
151
|
booleanCellFalseLabel: 'نہیں',
|
|
152
|
+
// Long text cell
|
|
153
|
+
longTextCellExpandLabel: 'پھیلائیں',
|
|
154
|
+
longTextCellCollapseLabel: 'تنگ کریں',
|
|
149
155
|
// Actions cell more text
|
|
150
156
|
actionsCellMore: 'ذیادہ',
|
|
151
157
|
// Column pinning text
|
package/locales/viVN.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const viVN: Localization;
|
package/locales/viVN.js
CHANGED
|
@@ -19,6 +19,9 @@ const viVNGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Trung bình',
|
|
20
20
|
toolbarDensityStandard: 'Tiêu chuẩn',
|
|
21
21
|
toolbarDensityComfortable: 'Rộng',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Hoàn tác',
|
|
24
|
+
toolbarRedo: 'Làm lại',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Cột',
|
|
24
27
|
toolbarColumnsLabel: 'Chọn cột',
|
|
@@ -147,6 +150,9 @@ const viVNGrid = {
|
|
|
147
150
|
// Boolean cell text
|
|
148
151
|
booleanCellTrueLabel: 'Có',
|
|
149
152
|
booleanCellFalseLabel: 'Không',
|
|
153
|
+
// Long text cell
|
|
154
|
+
longTextCellExpandLabel: 'Mở rộng',
|
|
155
|
+
longTextCellCollapseLabel: 'Thu nhỏ',
|
|
150
156
|
// Actions cell more text
|
|
151
157
|
actionsCellMore: 'Thêm',
|
|
152
158
|
// Column pinning text
|
package/locales/zhCN.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const zhCN: Localization;
|
package/locales/zhCN.js
CHANGED
|
@@ -19,6 +19,9 @@ const zhCNGrid = {
|
|
|
19
19
|
toolbarDensityCompact: '紧密',
|
|
20
20
|
toolbarDensityStandard: '标准',
|
|
21
21
|
toolbarDensityComfortable: '稀疏',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: '撤销',
|
|
24
|
+
toolbarRedo: '重做',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: '列',
|
|
24
27
|
toolbarColumnsLabel: '选择列',
|
|
@@ -145,6 +148,9 @@ const zhCNGrid = {
|
|
|
145
148
|
// Boolean cell text
|
|
146
149
|
booleanCellTrueLabel: '真',
|
|
147
150
|
booleanCellFalseLabel: '假',
|
|
151
|
+
// Long text cell
|
|
152
|
+
longTextCellExpandLabel: '显示',
|
|
153
|
+
longTextCellCollapseLabel: '折叠',
|
|
148
154
|
// Actions cell more text
|
|
149
155
|
actionsCellMore: '更多',
|
|
150
156
|
// Column pinning text
|
package/locales/zhHK.js
CHANGED
|
@@ -19,6 +19,9 @@ const zhHKGrid = {
|
|
|
19
19
|
toolbarDensityCompact: '袖珍的',
|
|
20
20
|
toolbarDensityStandard: '標準',
|
|
21
21
|
toolbarDensityComfortable: '舒服的',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: '復原',
|
|
24
|
+
toolbarRedo: '重做',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: '列',
|
|
24
27
|
toolbarColumnsLabel: '選擇列',
|
|
@@ -145,6 +148,9 @@ const zhHKGrid = {
|
|
|
145
148
|
// Boolean cell text
|
|
146
149
|
booleanCellTrueLabel: '是的',
|
|
147
150
|
booleanCellFalseLabel: '不',
|
|
151
|
+
// Long text cell
|
|
152
|
+
longTextCellExpandLabel: '擴張',
|
|
153
|
+
longTextCellCollapseLabel: '坍塌',
|
|
148
154
|
// Actions cell more text
|
|
149
155
|
actionsCellMore: '更多的',
|
|
150
156
|
// Column pinning text
|
package/locales/zhTW.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const zhTW: Localization;
|
package/locales/zhTW.js
CHANGED
|
@@ -19,6 +19,9 @@ const zhTWGrid = {
|
|
|
19
19
|
toolbarDensityCompact: '緊湊',
|
|
20
20
|
toolbarDensityStandard: '標準',
|
|
21
21
|
toolbarDensityComfortable: '舒適',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: '復原',
|
|
24
|
+
toolbarRedo: '重做',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: '欄位',
|
|
24
27
|
toolbarColumnsLabel: '選擇欄位',
|
|
@@ -145,6 +148,9 @@ const zhTWGrid = {
|
|
|
145
148
|
// Boolean cell text
|
|
146
149
|
booleanCellTrueLabel: '真',
|
|
147
150
|
booleanCellFalseLabel: '假',
|
|
151
|
+
// Long text cell
|
|
152
|
+
longTextCellExpandLabel: '展開',
|
|
153
|
+
longTextCellCollapseLabel: '摺疊',
|
|
148
154
|
// Actions cell more text
|
|
149
155
|
actionsCellMore: '查看更多',
|
|
150
156
|
// Column pinning text
|
|
@@ -15,6 +15,7 @@ import type { TablePaginationProps } from '@mui/material/TablePagination';
|
|
|
15
15
|
import type { PopperProps } from '@mui/material/Popper';
|
|
16
16
|
import type { TooltipProps } from '@mui/material/Tooltip';
|
|
17
17
|
import type { InputProps } from '@mui/material/Input';
|
|
18
|
+
import type { TextareaAutosizeProps } from '@mui/material/TextareaAutosize';
|
|
18
19
|
import type { SelectProps } from '@mui/material/Select';
|
|
19
20
|
import type { SkeletonProps } from '@mui/material/Skeleton';
|
|
20
21
|
import type { ToggleButtonProps } from '@mui/material/ToggleButton';
|
|
@@ -77,6 +78,9 @@ declare module '@mui/x-data-grid' {
|
|
|
77
78
|
interface BaseInputPropsOverrides {
|
|
78
79
|
material?: Partial<InputProps>;
|
|
79
80
|
}
|
|
81
|
+
interface BaseTextareaPropsOverrides {
|
|
82
|
+
material?: Partial<TextareaAutosizeProps>;
|
|
83
|
+
}
|
|
80
84
|
interface BaseSelectPropsOverrides {
|
|
81
85
|
material?: Partial<SelectProps>;
|
|
82
86
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GridBaseIconProps } from "../../models/gridSlotsComponentsProps.js";
|
|
1
|
+
import type { GridBaseIconProps } from "../../models/gridSlotsComponentsProps.js";
|
|
2
2
|
export declare const createSvgIcon: (path: React.ReactNode, displayName?: string) => (props: GridBaseIconProps) => React.ReactNode;
|
|
@@ -7,6 +7,8 @@ export declare const GridFilterAltIcon: (props: import("@mui/x-data-grid").GridB
|
|
|
7
7
|
export declare const GridSearchIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
8
8
|
export declare const GridMenuIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
9
9
|
export declare const GridCheckCircleIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
10
|
+
export declare const GridUndoIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
11
|
+
export declare const GridRedoIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
10
12
|
export declare const GridColumnIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
11
13
|
export declare const GridSeparatorIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
12
14
|
export declare const GridViewHeadlineIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
@@ -25,4 +27,6 @@ export declare const GridViewColumnIcon: (props: import("@mui/x-data-grid").Grid
|
|
|
25
27
|
export declare const GridClearIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
26
28
|
export declare const GridDeleteIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
27
29
|
export declare const GridDeleteForeverIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
28
|
-
export declare const GridDownloadIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
30
|
+
export declare const GridDownloadIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
31
|
+
export declare const GridLongTextCellExpandIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
32
|
+
export declare const GridLongTextCellCollapseIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
package/material/icons/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.GridVisibilityOffIcon = exports.GridViewStreamIcon = exports.GridViewHeadlineIcon = exports.GridViewColumnIcon = exports.GridTripleDotsVerticalIcon = exports.GridTableRowsIcon = exports.GridSeparatorIcon = exports.GridSearchIcon = exports.GridRemoveIcon = exports.GridMoreVertIcon = exports.GridMenuIcon = exports.GridLoadIcon = exports.GridKeyboardArrowRight = exports.GridFilterListIcon = exports.GridFilterAltIcon = exports.GridExpandMoreIcon = exports.GridDragIcon = exports.GridDownloadIcon = exports.GridDeleteIcon = exports.GridDeleteForeverIcon = exports.GridColumnIcon = exports.GridCloseIcon = exports.GridClearIcon = exports.GridCheckIcon = exports.GridCheckCircleIcon = exports.GridArrowUpwardIcon = exports.GridArrowDownwardIcon = exports.GridAddIcon = void 0;
|
|
6
|
+
exports.GridVisibilityOffIcon = exports.GridViewStreamIcon = exports.GridViewHeadlineIcon = exports.GridViewColumnIcon = exports.GridUndoIcon = exports.GridTripleDotsVerticalIcon = exports.GridTableRowsIcon = exports.GridSeparatorIcon = exports.GridSearchIcon = exports.GridRemoveIcon = exports.GridRedoIcon = exports.GridMoreVertIcon = exports.GridMenuIcon = exports.GridLongTextCellExpandIcon = exports.GridLongTextCellCollapseIcon = exports.GridLoadIcon = exports.GridKeyboardArrowRight = exports.GridFilterListIcon = exports.GridFilterAltIcon = exports.GridExpandMoreIcon = exports.GridDragIcon = exports.GridDownloadIcon = exports.GridDeleteIcon = exports.GridDeleteForeverIcon = exports.GridColumnIcon = exports.GridCloseIcon = exports.GridClearIcon = exports.GridCheckIcon = exports.GridCheckCircleIcon = exports.GridArrowUpwardIcon = exports.GridArrowDownwardIcon = exports.GridAddIcon = void 0;
|
|
7
7
|
var _createSvgIcon = require("./createSvgIcon");
|
|
8
8
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
9
|
const GridArrowUpwardIcon = exports.GridArrowUpwardIcon = (0, _createSvgIcon.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -33,6 +33,12 @@ const GridMenuIcon = exports.GridMenuIcon = (0, _createSvgIcon.createSvgIcon)(/*
|
|
|
33
33
|
const GridCheckCircleIcon = exports.GridCheckCircleIcon = (0, _createSvgIcon.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
34
34
|
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
|
|
35
35
|
}), 'CheckCircle');
|
|
36
|
+
const GridUndoIcon = exports.GridUndoIcon = (0, _createSvgIcon.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
37
|
+
d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8"
|
|
38
|
+
}), 'Undo');
|
|
39
|
+
const GridRedoIcon = exports.GridRedoIcon = (0, _createSvgIcon.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
40
|
+
d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7z"
|
|
41
|
+
}), 'Redo');
|
|
36
42
|
const GridColumnIcon = exports.GridColumnIcon = (0, _createSvgIcon.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
37
43
|
d: "M14.67 5v14H9.33V5zm1 14H21V5h-5.33zm-7.34 0V5H3v14z"
|
|
38
44
|
}), 'ColumnIcon');
|
|
@@ -94,4 +100,10 @@ const GridDeleteForeverIcon = exports.GridDeleteForeverIcon = (0, _createSvgIcon
|
|
|
94
100
|
}), 'Delete');
|
|
95
101
|
const GridDownloadIcon = exports.GridDownloadIcon = (0, _createSvgIcon.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
96
102
|
d: "M5 20h14v-2H5zM19 9h-4V3H9v6H5l7 7z"
|
|
97
|
-
}), 'Download');
|
|
103
|
+
}), 'Download');
|
|
104
|
+
const GridLongTextCellExpandIcon = exports.GridLongTextCellExpandIcon = (0, _createSvgIcon.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
105
|
+
d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z"
|
|
106
|
+
}), 'OpenInFull');
|
|
107
|
+
const GridLongTextCellCollapseIcon = exports.GridLongTextCellCollapseIcon = (0, _createSvgIcon.createSvgIcon)(/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
108
|
+
d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5z"
|
|
109
|
+
}), 'NorthWest');
|
package/material/index.js
CHANGED
|
@@ -33,6 +33,7 @@ var _ListItemText = _interopRequireWildcard(require("@mui/material/ListItemText"
|
|
|
33
33
|
var _MenuList = _interopRequireDefault(require("@mui/material/MenuList"));
|
|
34
34
|
var _MenuItem = _interopRequireDefault(require("@mui/material/MenuItem"));
|
|
35
35
|
var _TextField = _interopRequireDefault(require("@mui/material/TextField"));
|
|
36
|
+
var _TextareaAutosize = _interopRequireDefault(require("@mui/material/TextareaAutosize"));
|
|
36
37
|
var _FormControl = _interopRequireDefault(require("@mui/material/FormControl"));
|
|
37
38
|
var _FormControlLabel = _interopRequireWildcard(require("@mui/material/FormControlLabel"));
|
|
38
39
|
var _Select = _interopRequireDefault(require("@mui/material/Select"));
|
|
@@ -81,10 +82,11 @@ const _excluded = ["id", "label", "labelId", "material", "disabled", "slotProps"
|
|
|
81
82
|
_excluded17 = ["key"],
|
|
82
83
|
_excluded18 = ["inputProps", "InputProps", "InputLabelProps"],
|
|
83
84
|
_excluded19 = ["slotProps", "material"],
|
|
84
|
-
_excluded20 = ["
|
|
85
|
-
_excluded21 = ["
|
|
86
|
-
_excluded22 = ["
|
|
87
|
-
_excluded23 = ["
|
|
85
|
+
_excluded20 = ["material"],
|
|
86
|
+
_excluded21 = ["ref", "open", "children", "className", "clickAwayTouchEvent", "clickAwayMouseEvent", "flip", "focusTrap", "onExited", "onClickAway", "onDidShow", "onDidHide", "id", "target", "transition", "placement", "material"],
|
|
87
|
+
_excluded22 = ["native"],
|
|
88
|
+
_excluded23 = ["children", "value", "active"],
|
|
89
|
+
_excluded24 = ["items", "value", "material"];
|
|
88
90
|
/* eslint-disable material-ui/disallow-react-api-in-server-components */
|
|
89
91
|
|
|
90
92
|
const InputAdornment = (0, _styles.styled)(_InputAdornment.default, {
|
|
@@ -590,6 +592,16 @@ function transformInputProps(props, wrapAdornments = true) {
|
|
|
590
592
|
}
|
|
591
593
|
return result;
|
|
592
594
|
}
|
|
595
|
+
const BaseTextarea = (0, _forwardRef.forwardRef)(function BaseTextarea(props, ref) {
|
|
596
|
+
const {
|
|
597
|
+
material
|
|
598
|
+
} = props,
|
|
599
|
+
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded20);
|
|
600
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_TextareaAutosize.default, (0, _extends2.default)({}, other, material, {
|
|
601
|
+
ref: ref
|
|
602
|
+
}));
|
|
603
|
+
});
|
|
604
|
+
if (process.env.NODE_ENV !== "production") BaseTextarea.displayName = "BaseTextarea";
|
|
593
605
|
const transformOrigin = {
|
|
594
606
|
'bottom-start': 'top left',
|
|
595
607
|
'bottom-end': 'top right'
|
|
@@ -609,7 +621,7 @@ function BasePopper(props) {
|
|
|
609
621
|
placement,
|
|
610
622
|
material
|
|
611
623
|
} = props,
|
|
612
|
-
other = (0, _objectWithoutPropertiesLoose2.default)(props,
|
|
624
|
+
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded21);
|
|
613
625
|
const modifiers = React.useMemo(() => {
|
|
614
626
|
const result = [{
|
|
615
627
|
name: 'preventOverflow',
|
|
@@ -704,7 +716,7 @@ function BaseSelectOption(_ref) {
|
|
|
704
716
|
let {
|
|
705
717
|
native
|
|
706
718
|
} = _ref,
|
|
707
|
-
props = (0, _objectWithoutPropertiesLoose2.default)(_ref,
|
|
719
|
+
props = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded22);
|
|
708
720
|
if (native) {
|
|
709
721
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("option", (0, _extends2.default)({}, props));
|
|
710
722
|
}
|
|
@@ -739,7 +751,7 @@ function TabPanel(props) {
|
|
|
739
751
|
children,
|
|
740
752
|
active
|
|
741
753
|
} = props,
|
|
742
|
-
other = (0, _objectWithoutPropertiesLoose2.default)(props,
|
|
754
|
+
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded23);
|
|
743
755
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(StyledTabPanel, (0, _extends2.default)({
|
|
744
756
|
role: "tabpanel",
|
|
745
757
|
style: {
|
|
@@ -755,7 +767,7 @@ function BaseTabs(_ref2) {
|
|
|
755
767
|
value,
|
|
756
768
|
material
|
|
757
769
|
} = _ref2,
|
|
758
|
-
props = (0, _objectWithoutPropertiesLoose2.default)(_ref2,
|
|
770
|
+
props = (0, _objectWithoutPropertiesLoose2.default)(_ref2, _excluded24);
|
|
759
771
|
const id = (0, _useId.default)();
|
|
760
772
|
const labelId = `${id}-tab-${value}`;
|
|
761
773
|
const panelId = `${id}-tabpanel-${value}`;
|
|
@@ -786,6 +798,8 @@ const iconSlots = {
|
|
|
786
798
|
columnMenuIcon: _icons.GridTripleDotsVerticalIcon,
|
|
787
799
|
openFilterButtonIcon: _icons.GridFilterListIcon,
|
|
788
800
|
filterPanelDeleteIcon: _icons.GridCloseIcon,
|
|
801
|
+
undoIcon: _icons.GridUndoIcon,
|
|
802
|
+
redoIcon: _icons.GridRedoIcon,
|
|
789
803
|
columnFilteredIcon: _icons.GridFilterAltIcon,
|
|
790
804
|
columnSelectorIcon: _icons.GridColumnIcon,
|
|
791
805
|
columnUnsortedIcon: _GridColumnUnsortedIcon.GridColumnUnsortedIcon,
|
|
@@ -817,7 +831,9 @@ const iconSlots = {
|
|
|
817
831
|
filterPanelAddIcon: _icons.GridAddIcon,
|
|
818
832
|
filterPanelRemoveAllIcon: _icons.GridDeleteForeverIcon,
|
|
819
833
|
columnReorderIcon: _icons.GridDragIcon,
|
|
820
|
-
menuItemCheckIcon: _icons.GridCheckIcon
|
|
834
|
+
menuItemCheckIcon: _icons.GridCheckIcon,
|
|
835
|
+
longTextCellExpandIcon: _icons.GridLongTextCellExpandIcon,
|
|
836
|
+
longTextCellCollapseIcon: _icons.GridLongTextCellCollapseIcon
|
|
821
837
|
};
|
|
822
838
|
const baseSlots = {
|
|
823
839
|
baseAutocomplete: BaseAutocomplete,
|
|
@@ -827,6 +843,7 @@ const baseSlots = {
|
|
|
827
843
|
baseCircularProgress: BaseCircularProgress,
|
|
828
844
|
baseDivider: BaseDivider,
|
|
829
845
|
baseInput: BaseInput,
|
|
846
|
+
baseTextarea: BaseTextarea,
|
|
830
847
|
baseLinearProgress: BaseLinearProgress,
|
|
831
848
|
baseMenuList: BaseMenuList,
|
|
832
849
|
baseMenuItem: BaseMenuItem,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridColDef, GridStateColDef } from "../colDef/gridColDef.js";
|
|
1
|
+
import type { GridColDef, GridStateColDef } from "../colDef/gridColDef.js";
|
|
2
2
|
import type { GridColumnVisibilityModel } from "../../hooks/features/columns/gridColumnsInterfaces.js";
|
|
3
3
|
/**
|
|
4
4
|
* The column API interface that is available in the grid [[apiRef]].
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GridColumnGroupLookup } from "../../hooks/features/columnGrouping/gridColumnGroupsInterfaces.js";
|
|
2
|
-
import { GridColumnGroup } from "../gridColumnGrouping.js";
|
|
1
|
+
import type { GridColumnGroupLookup } from "../../hooks/features/columnGrouping/gridColumnGroupsInterfaces.js";
|
|
2
|
+
import type { GridColumnGroup } from "../gridColumnGrouping.js";
|
|
3
3
|
/**
|
|
4
4
|
* The column grouping API interface that is available in the grid [[apiRef]].
|
|
5
5
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { GridStateColDef } from "../colDef/gridColDef.js";
|
|
2
|
-
import { GridColumnIndex, GridCellColSpanInfo } from "../gridColumnSpanning.js";
|
|
3
|
-
import { GridRowId } from "../gridRows.js";
|
|
1
|
+
import type { GridStateColDef } from "../colDef/gridColDef.js";
|
|
2
|
+
import type { GridColumnIndex, GridCellColSpanInfo } from "../gridColumnSpanning.js";
|
|
3
|
+
import type { GridRowId } from "../gridRows.js";
|
|
4
4
|
/**
|
|
5
5
|
* The Column Spanning API interface that is available in the grid `apiRef`.
|
|
6
6
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { EventManager, EventListenerOptions } from '@mui/x-internals/EventManager';
|
|
1
|
+
import type * as React from 'react';
|
|
2
|
+
import type { EventManager, EventListenerOptions } from '@mui/x-internals/EventManager';
|
|
3
3
|
import type { Store } from '@mui/x-internals/store';
|
|
4
4
|
import type { GridEventPublisher, GridEventListener, GridEvents } from "../events/index.js";
|
|
5
5
|
import type { GridApiCaches } from "../gridApiCaches.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { MuiBaseEvent } from '@mui/x-internals/types';
|
|
2
|
-
import { GridCellMode, GridRowMode } from "../gridCell.js";
|
|
3
|
-
import { GridCellModes, GridRowModes } from "../gridEditRowModel.js";
|
|
4
|
-
import { GridRowId, GridRowModel } from "../gridRows.js";
|
|
5
|
-
import { GridCellParams } from "../params/gridCellParams.js";
|
|
6
|
-
import { GridEditCellValueParams } from "../params/gridEditCellParams.js";
|
|
1
|
+
import type { MuiBaseEvent } from '@mui/x-internals/types';
|
|
2
|
+
import type { GridCellMode, GridRowMode } from "../gridCell.js";
|
|
3
|
+
import type { GridCellModes, GridRowModes } from "../gridEditRowModel.js";
|
|
4
|
+
import type { GridRowId, GridRowModel } from "../gridRows.js";
|
|
5
|
+
import type { GridCellParams } from "../params/gridCellParams.js";
|
|
6
|
+
import type { GridEditCellValueParams } from "../params/gridEditCellParams.js";
|
|
7
7
|
export type GridCellModesModelProps = ({
|
|
8
8
|
mode: GridCellModes.View;
|
|
9
9
|
} & Omit<GridStopCellEditModeParams, 'id' | 'field'>) | ({
|