@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
|
@@ -436,6 +436,50 @@ export interface GridClasses {
|
|
|
436
436
|
* Styles applied to the root of the input component.
|
|
437
437
|
*/
|
|
438
438
|
editInputCell: string;
|
|
439
|
+
/**
|
|
440
|
+
* Styles applied to the long text cell root element.
|
|
441
|
+
*/
|
|
442
|
+
longTextCell: string;
|
|
443
|
+
/**
|
|
444
|
+
* Styles applied to the long text cell content element.
|
|
445
|
+
*/
|
|
446
|
+
longTextCellContent: string;
|
|
447
|
+
/**
|
|
448
|
+
* Styles applied to the long text cell expand button.
|
|
449
|
+
*/
|
|
450
|
+
longTextCellExpandButton: string;
|
|
451
|
+
/**
|
|
452
|
+
* Styles applied to the long text cell collapse button.
|
|
453
|
+
*/
|
|
454
|
+
longTextCellCollapseButton: string;
|
|
455
|
+
/**
|
|
456
|
+
* Styles applied to the long text cell popup.
|
|
457
|
+
*/
|
|
458
|
+
longTextCellPopup: string;
|
|
459
|
+
/**
|
|
460
|
+
* Styles applied to the long text cell popper content.
|
|
461
|
+
*/
|
|
462
|
+
longTextCellPopperContent: string;
|
|
463
|
+
/**
|
|
464
|
+
* Styles applied to the edit long text cell root element.
|
|
465
|
+
*/
|
|
466
|
+
editLongTextCell: string;
|
|
467
|
+
/**
|
|
468
|
+
* Styles applied to the edit long text cell value element.
|
|
469
|
+
*/
|
|
470
|
+
editLongTextCellValue: string;
|
|
471
|
+
/**
|
|
472
|
+
* Styles applied to the edit long text cell popup.
|
|
473
|
+
*/
|
|
474
|
+
editLongTextCellPopup: string;
|
|
475
|
+
/**
|
|
476
|
+
* Styles applied to the edit long text cell popper content.
|
|
477
|
+
*/
|
|
478
|
+
editLongTextCellPopperContent: string;
|
|
479
|
+
/**
|
|
480
|
+
* Styles applied to the edit long text cell textarea.
|
|
481
|
+
*/
|
|
482
|
+
editLongTextCellTextarea: string;
|
|
439
483
|
/**
|
|
440
484
|
* Styles applied to the filter icon element.
|
|
441
485
|
*/
|
package/constants/gridClasses.js
CHANGED
|
@@ -11,6 +11,6 @@ var _generateUtilityClasses = _interopRequireDefault(require("@mui/utils/generat
|
|
|
11
11
|
function getDataGridUtilityClass(slot) {
|
|
12
12
|
return (0, _generateUtilityClass.default)('MuiDataGrid', slot);
|
|
13
13
|
}
|
|
14
|
-
const gridClasses = exports.gridClasses = (0, _generateUtilityClasses.default)('MuiDataGrid', ['aiAssistantPanel', 'aiAssistantPanelHeader', 'aiAssistantPanelTitleContainer', 'aiAssistantPanelTitle', 'aiAssistantPanelBody', 'aiAssistantPanelEmptyText', 'aiAssistantPanelFooter', 'aiAssistantPanelConversation', 'aiAssistantPanelConversationList', 'aiAssistantPanelConversationTitle', 'aiAssistantPanelSuggestions', 'aiAssistantPanelSuggestionsList', 'aiAssistantPanelSuggestionsItem', 'aiAssistantPanelSuggestionsLabel', 'actionsCell', 'aggregationColumnHeader', 'aggregationColumnHeader--alignLeft', 'aggregationColumnHeader--alignCenter', 'aggregationColumnHeader--alignRight', 'aggregationColumnHeaderLabel', 'aggregationRowOverlayWrapper', 'autoHeight', 'autosizing', 'mainContent', 'withSidePanel', 'booleanCell', 'cell--editable', 'cell--editing', 'cell--flex', 'cell--textCenter', 'cell--textLeft', 'cell--textRight', 'cell--rangeTop', 'cell--rangeBottom', 'cell--rangeLeft', 'cell--rangeRight', 'cell--pinnedLeft', 'cell--pinnedRight', 'cell--selectionMode', 'cell', 'cellCheckbox', 'cellEmpty', 'cellSkeleton', 'cellOffsetLeft', 'checkboxInput', 'collapsible', 'collapsibleTrigger', 'collapsibleIcon', 'collapsiblePanel', 'columnHeader', 'columnHeader--alignCenter', 'columnHeader--alignLeft', 'columnHeader--alignRight', 'columnHeader--dragging', 'columnHeader--moving', 'columnHeader--numeric', 'columnHeader--sortable', 'columnHeader--sorted', 'columnHeader--filtered', 'columnHeader--pinnedLeft', 'columnHeader--pinnedRight', 'columnHeader--last', 'columnHeader--siblingFocused', 'columnHeader--filter', 'columnHeaderFilterInput', 'columnHeaderFilterOperatorLabel', 'columnHeaderCheckbox', 'columnHeaderDraggableContainer', 'columnHeaderTitle', 'columnHeaderTitleContainer', 'columnHeaderTitleContainerContent', 'columnHeader--filledGroup', 'columnHeader--emptyGroup', 'columnHeaders', 'columnSeparator--resizable', 'columnSeparator--resizing', 'columnSeparator--sideLeft', 'columnSeparator--sideRight', 'columnSeparator', 'columnsManagement', 'columnsManagementRow', 'columnsManagementHeader', 'columnsManagementSearchInput', 'columnsManagementFooter', 'columnsManagementScrollArea', 'columnsManagementEmptyText', 'container--top', 'container--bottom', 'detailPanel', 'detailPanelToggleCell', 'detailPanelToggleCell--expanded', 'footerCell', 'panel', 'panelHeader', 'panelWrapper', 'panelContent', 'panelFooter', 'paper', 'editBooleanCell', 'editInputCell', 'filler', 'filler--borderBottom', 'filler--pinnedLeft', 'filler--pinnedRight', 'filterForm', 'filterFormDeleteIcon', 'filterFormLogicOperatorInput', 'filterFormColumnInput', 'filterFormOperatorInput', 'filterFormValueInput', 'filterIcon', 'footerContainer', 'headerFilterRow', 'iconButtonContainer', 'iconSeparator', 'main', 'main--hasPinnedRight', 'main--hiddenContent', 'menu', 'menuIcon', 'menuIconButton', 'menuOpen', 'menuList', 'overlay', 'overlayWrapper', 'overlayWrapperInner', 'root', 'root--densityStandard', 'root--densityComfortable', 'root--densityCompact', 'root--disableUserSelection', 'root--noToolbar', 'row', 'row--editable', 'row--editing', 'row--firstVisible', 'row--lastVisible',
|
|
14
|
+
const gridClasses = exports.gridClasses = (0, _generateUtilityClasses.default)('MuiDataGrid', ['aiAssistantPanel', 'aiAssistantPanelHeader', 'aiAssistantPanelTitleContainer', 'aiAssistantPanelTitle', 'aiAssistantPanelBody', 'aiAssistantPanelEmptyText', 'aiAssistantPanelFooter', 'aiAssistantPanelConversation', 'aiAssistantPanelConversationList', 'aiAssistantPanelConversationTitle', 'aiAssistantPanelSuggestions', 'aiAssistantPanelSuggestionsList', 'aiAssistantPanelSuggestionsItem', 'aiAssistantPanelSuggestionsLabel', 'actionsCell', 'aggregationColumnHeader', 'aggregationColumnHeader--alignLeft', 'aggregationColumnHeader--alignCenter', 'aggregationColumnHeader--alignRight', 'aggregationColumnHeaderLabel', 'aggregationRowOverlayWrapper', 'autoHeight', 'autosizing', 'mainContent', 'withSidePanel', 'booleanCell', 'cell--editable', 'cell--editing', 'cell--flex', 'cell--textCenter', 'cell--textLeft', 'cell--textRight', 'cell--rangeTop', 'cell--rangeBottom', 'cell--rangeLeft', 'cell--rangeRight', 'cell--pinnedLeft', 'cell--pinnedRight', 'cell--selectionMode', 'cell', 'cellCheckbox', 'cellEmpty', 'cellSkeleton', 'cellOffsetLeft', 'checkboxInput', 'collapsible', 'collapsibleTrigger', 'collapsibleIcon', 'collapsiblePanel', 'columnHeader', 'columnHeader--alignCenter', 'columnHeader--alignLeft', 'columnHeader--alignRight', 'columnHeader--dragging', 'columnHeader--moving', 'columnHeader--numeric', 'columnHeader--sortable', 'columnHeader--sorted', 'columnHeader--filtered', 'columnHeader--pinnedLeft', 'columnHeader--pinnedRight', 'columnHeader--last', 'columnHeader--siblingFocused', 'columnHeader--filter', 'columnHeaderFilterInput', 'columnHeaderFilterOperatorLabel', 'columnHeaderCheckbox', 'columnHeaderDraggableContainer', 'columnHeaderTitle', 'columnHeaderTitleContainer', 'columnHeaderTitleContainerContent', 'columnHeader--filledGroup', 'columnHeader--emptyGroup', 'columnHeaders', 'columnSeparator--resizable', 'columnSeparator--resizing', 'columnSeparator--sideLeft', 'columnSeparator--sideRight', 'columnSeparator', 'columnsManagement', 'columnsManagementRow', 'columnsManagementHeader', 'columnsManagementSearchInput', 'columnsManagementFooter', 'columnsManagementScrollArea', 'columnsManagementEmptyText', 'container--top', 'container--bottom', 'detailPanel', 'detailPanelToggleCell', 'detailPanelToggleCell--expanded', 'footerCell', 'panel', 'panelHeader', 'panelWrapper', 'panelContent', 'panelFooter', 'paper', 'editBooleanCell', 'editInputCell', 'longTextCell', 'longTextCellContent', 'longTextCellExpandButton', 'longTextCellCollapseButton', 'longTextCellPopup', 'longTextCellPopperContent', 'editLongTextCell', 'editLongTextCellValue', 'editLongTextCellPopup', 'editLongTextCellPopperContent', 'editLongTextCellTextarea', 'filler', 'filler--borderBottom', 'filler--pinnedLeft', 'filler--pinnedRight', 'filterForm', 'filterFormDeleteIcon', 'filterFormLogicOperatorInput', 'filterFormColumnInput', 'filterFormOperatorInput', 'filterFormValueInput', 'filterIcon', 'footerContainer', 'headerFilterRow', 'iconButtonContainer', 'iconSeparator', 'main', 'main--hasPinnedRight', 'main--hiddenContent', 'menu', 'menuIcon', 'menuIconButton', 'menuOpen', 'menuList', 'overlay', 'overlayWrapper', 'overlayWrapperInner', 'root', 'root--densityStandard', 'root--densityComfortable', 'root--densityCompact', 'root--disableUserSelection', 'root--noToolbar', 'row', 'row--editable', 'row--editing', 'row--firstVisible', 'row--lastVisible',
|
|
15
15
|
// TODO v9: Rename to `cell--dragging`
|
|
16
16
|
'row--dragging', 'row--beingDragged', 'row--dynamicHeight', 'row--detailPanelExpanded', 'row--borderBottom', 'rowReorderCellPlaceholder', 'rowCount', 'rowReorderCellContainer', 'rowReorderCell', 'rowReorderCell--draggable', 'rowReorderIcon', 'rowSkeleton', 'scrollArea--left', 'scrollArea--right', 'scrollArea--up', 'scrollArea--down', 'scrollArea', 'scrollbar', 'scrollbar--vertical', 'scrollbar--horizontal', 'scrollbarFiller', 'scrollbarFiller--pinnedRight', 'scrollShadow', 'scrollShadow--vertical', 'scrollShadow--horizontal', 'selectedRowCount', 'sortButton', 'sortIcon', 'shadowScrollArea', 'sidebar', 'sidebarHeader', 'toolbarContainer', 'toolbar', 'toolbarLabel', 'toolbarDivider', 'toolbarFilterList', 'toolbarQuickFilter', 'toolbarQuickFilterTrigger', 'toolbarQuickFilterControl', 'virtualScroller', 'virtualScroller--hasScrollX', 'virtualScrollerContent', 'virtualScrollerContent--overflowed', 'virtualScrollerRenderZone', 'withVerticalBorder', 'withBorderColor', 'cell--withRightBorder', 'cell--withLeftBorder', 'columnHeader--withRightBorder', 'columnHeader--withLeftBorder', 'treeDataGroupingCell', 'treeDataGroupingCellToggle', 'treeDataGroupingCellLoadingContainer', 'groupingCriteriaCell', 'groupingCriteriaCellToggle', 'groupingCriteriaCellLoadingContainer', 'pinnedRows', 'pinnedRows--top', 'pinnedRows--bottom', 'pivotPanelAvailableFields', 'pivotPanelField', 'pivotPanelField--sorted', 'pivotPanelFieldActionContainer', 'pivotPanelFieldCheckbox', 'pivotPanelFieldDragIcon', 'pivotPanelFieldList', 'pivotPanelFieldName', 'pivotPanelHeader', 'pivotPanelPlaceholder', 'pivotPanelScrollArea', 'pivotPanelSearchContainer', 'pivotPanelSection', 'pivotPanelSectionTitle', 'pivotPanelSections', 'pivotPanelSwitch', 'pivotPanelSwitchLabel', 'prompt', 'promptContent', 'promptText', 'promptFeedback', 'promptChangeList', 'promptChangesToggle', 'promptChangesToggleIcon', 'promptIcon', 'promptIconContainer', 'promptError', 'promptAction']);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GridLocaleText } from "../models/api/gridLocaleTextApi.js";
|
|
1
|
+
import type { GridLocaleText } from "../models/api/gridLocaleTextApi.js";
|
|
2
2
|
export declare const GRID_DEFAULT_LOCALE_TEXT: GridLocaleText;
|
|
@@ -17,6 +17,9 @@ const GRID_DEFAULT_LOCALE_TEXT = exports.GRID_DEFAULT_LOCALE_TEXT = {
|
|
|
17
17
|
toolbarDensityCompact: 'Compact',
|
|
18
18
|
toolbarDensityStandard: 'Standard',
|
|
19
19
|
toolbarDensityComfortable: 'Comfortable',
|
|
20
|
+
// Undo/redo toolbar button text
|
|
21
|
+
toolbarUndo: 'Undo',
|
|
22
|
+
toolbarRedo: 'Redo',
|
|
20
23
|
// Columns selector toolbar button text
|
|
21
24
|
toolbarColumns: 'Columns',
|
|
22
25
|
toolbarColumnsLabel: 'Select columns',
|
|
@@ -139,6 +142,9 @@ const GRID_DEFAULT_LOCALE_TEXT = exports.GRID_DEFAULT_LOCALE_TEXT = {
|
|
|
139
142
|
// Boolean cell text
|
|
140
143
|
booleanCellTrueLabel: 'yes',
|
|
141
144
|
booleanCellFalseLabel: 'no',
|
|
145
|
+
// Long text cell
|
|
146
|
+
longTextCellExpandLabel: 'Expand',
|
|
147
|
+
longTextCellCollapseLabel: 'Collapse',
|
|
142
148
|
// Actions cell more text
|
|
143
149
|
actionsCellMore: 'more',
|
|
144
150
|
// Column pinning text
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { RefObject } from '@mui/x-internals/types';
|
|
3
|
-
import { GridPrivateApiCommunity } from "../models/api/gridApiCommunity.js";
|
|
4
|
-
import { GridConfiguration } from "../models/configuration/gridConfiguration.js";
|
|
2
|
+
import type { RefObject } from '@mui/x-internals/types';
|
|
3
|
+
import type { GridPrivateApiCommunity } from "../models/api/gridApiCommunity.js";
|
|
4
|
+
import type { GridConfiguration } from "../models/configuration/gridConfiguration.js";
|
|
5
5
|
type GridContextProviderProps = {
|
|
6
6
|
privateApiRef: RefObject<GridPrivateApiCommunity>;
|
|
7
7
|
configuration: GridConfiguration;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { DataGridProps } from "../models/props/DataGridProps.js";
|
|
3
|
-
import { GridValidRowModel } from "../models/gridRows.js";
|
|
2
|
+
import type { DataGridProps } from "../models/props/DataGridProps.js";
|
|
3
|
+
import type { GridValidRowModel } from "../models/gridRows.js";
|
|
4
4
|
export type { GridSlotsComponent as GridSlots } from "../models/index.js";
|
|
5
5
|
interface DataGridComponent {
|
|
6
6
|
<R extends GridValidRowModel = any>(props: DataGridProps<R> & React.RefAttributes<HTMLDivElement>): React.JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RefObject } from '@mui/x-internals/types';
|
|
2
|
-
import { DataGridProcessedProps } from "../models/props/DataGridProps.js";
|
|
3
|
-
import { GridPrivateApiCommunity } from "../models/api/gridApiCommunity.js";
|
|
4
|
-
import { GridConfiguration } from "../models/configuration/gridConfiguration.js";
|
|
1
|
+
import type { RefObject } from '@mui/x-internals/types';
|
|
2
|
+
import type { DataGridProcessedProps } from "../models/props/DataGridProps.js";
|
|
3
|
+
import type { GridPrivateApiCommunity } from "../models/api/gridApiCommunity.js";
|
|
4
|
+
import type { GridConfiguration } from "../models/configuration/gridConfiguration.js";
|
|
5
5
|
export declare const useDataGridComponent: (apiRef: RefObject<GridPrivateApiCommunity>, props: DataGridProcessedProps, configuration: GridConfiguration) => void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { DataGridProcessedProps, DataGridProps } from "../models/props/DataGridProps.js";
|
|
2
|
-
import { GridValidRowModel } from "../models/index.js";
|
|
1
|
+
import type { DataGridProcessedProps, DataGridProps } from "../models/props/DataGridProps.js";
|
|
2
|
+
import type { GridValidRowModel } from "../models/index.js";
|
|
3
3
|
export declare const useDataGridProps: <R extends GridValidRowModel>(inProps: DataGridProps<R>) => DataGridProcessedProps<R>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GridColTypeDef } from "../models/colDef/gridColDef.js";
|
|
1
|
+
import type { GridColTypeDef } from "../models/colDef/gridColDef.js";
|
|
2
2
|
export declare const GRID_BOOLEAN_COL_DEF: GridColTypeDef<boolean | null, any>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
1
|
+
import type { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
2
2
|
export declare const getGridBooleanOperators: () => GridFilterOperator<any, boolean | null, any>[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridColTypeDef, GridValueFormatter } from "../models/colDef/gridColDef.js";
|
|
1
|
+
import type { GridColTypeDef, GridValueFormatter } from "../models/colDef/gridColDef.js";
|
|
2
2
|
export declare const gridDateFormatter: GridValueFormatter;
|
|
3
3
|
export declare const gridDateTimeFormatter: GridValueFormatter;
|
|
4
4
|
export declare const GRID_DATE_COL_DEF: GridColTypeDef<Date, string>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { GridFilterInputDateProps } from "../components/panel/filterPanel/GridFilterInputDate.js";
|
|
2
|
-
import { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
1
|
+
import { type GridFilterInputDateProps } from "../components/panel/filterPanel/GridFilterInputDate.js";
|
|
2
|
+
import type { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
3
3
|
export declare const getGridDateOperators: (showTime?: boolean) => GridFilterOperator<any, Date, any, GridFilterInputDateProps>[];
|
|
@@ -4,6 +4,7 @@ import { GRID_DATE_COL_DEF, GRID_DATETIME_COL_DEF } from "./gridDateColDef.js";
|
|
|
4
4
|
import { GRID_BOOLEAN_COL_DEF } from "./gridBooleanColDef.js";
|
|
5
5
|
import { GRID_SINGLE_SELECT_COL_DEF } from "./gridSingleSelectColDef.js";
|
|
6
6
|
import { GRID_ACTIONS_COL_DEF, GRID_ACTIONS_COLUMN_TYPE } from "./gridActionsColDef.js";
|
|
7
|
+
import { GRID_LONG_TEXT_COL_DEF } from "./gridLongTextColDef.js";
|
|
7
8
|
export const DEFAULT_GRID_COL_TYPE_KEY = 'string';
|
|
8
9
|
export const getGridDefaultColumnTypes = () => {
|
|
9
10
|
const nativeColumnTypes = {
|
|
@@ -14,7 +15,8 @@ export const getGridDefaultColumnTypes = () => {
|
|
|
14
15
|
boolean: GRID_BOOLEAN_COL_DEF,
|
|
15
16
|
singleSelect: GRID_SINGLE_SELECT_COL_DEF,
|
|
16
17
|
[GRID_ACTIONS_COLUMN_TYPE]: GRID_ACTIONS_COL_DEF,
|
|
17
|
-
custom: GRID_STRING_COL_DEF
|
|
18
|
+
custom: GRID_STRING_COL_DEF,
|
|
19
|
+
longText: GRID_LONG_TEXT_COL_DEF
|
|
18
20
|
};
|
|
19
21
|
return nativeColumnTypes;
|
|
20
22
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
+
import { GRID_STRING_COL_DEF } from "./gridStringColDef.js";
|
|
3
|
+
import { renderLongTextCell } from "../components/cell/GridLongTextCell.js";
|
|
4
|
+
import { renderEditLongTextCell } from "../components/cell/GridEditLongTextCell.js";
|
|
5
|
+
export const GRID_LONG_TEXT_COL_DEF = _extends({}, GRID_STRING_COL_DEF, {
|
|
6
|
+
type: 'longText',
|
|
7
|
+
display: 'flex',
|
|
8
|
+
renderCell: renderLongTextCell,
|
|
9
|
+
renderEditCell: renderEditLongTextCell
|
|
10
|
+
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GridColTypeDef } from "../models/colDef/gridColDef.js";
|
|
1
|
+
import type { GridColTypeDef } from "../models/colDef/gridColDef.js";
|
|
2
2
|
export declare const GRID_NUMERIC_COL_DEF: GridColTypeDef<number | string | null, string>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
1
|
+
import type { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
2
2
|
import type { GridFilterInputValueProps } from "../models/gridFilterInputComponent.js";
|
|
3
3
|
import type { GetApplyQuickFilterFn } from "../models/colDef/gridColDef.js";
|
|
4
4
|
export declare const getGridNumericQuickFilterFn: GetApplyQuickFilterFn<any, number | string | null>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GridSingleSelectColDef } from "../models/colDef/gridColDef.js";
|
|
1
|
+
import type { GridSingleSelectColDef } from "../models/colDef/gridColDef.js";
|
|
2
2
|
export declare const GRID_SINGLE_SELECT_COL_DEF: Omit<GridSingleSelectColDef, 'field'>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
1
|
+
import type { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
2
2
|
export declare const getGridSingleSelectOperators: () => GridFilterOperator[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { GetApplyQuickFilterFn } from "../models/colDef/gridColDef.js";
|
|
2
|
-
import { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
2
|
+
import type { GridFilterOperator } from "../models/gridFilterOperator.js";
|
|
3
3
|
export declare const getGridStringQuickFilterFn: GetApplyQuickFilterFn<any, unknown>;
|
|
4
4
|
export declare const getGridStringOperators: (disableTrim?: boolean) => GridFilterOperator<any, number | string | null, any>[];
|
package/esm/colDef/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from "./gridDateColDef.js";
|
|
|
5
5
|
export * from "./gridNumericColDef.js";
|
|
6
6
|
export * from "./gridSingleSelectColDef.js";
|
|
7
7
|
export * from "./gridStringColDef.js";
|
|
8
|
+
export * from "./gridLongTextColDef.js";
|
|
8
9
|
export * from "./gridBooleanOperators.js";
|
|
9
10
|
export * from "./gridDateOperators.js";
|
|
10
11
|
export * from "./gridNumericOperators.js";
|
package/esm/colDef/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export * from "./gridDateColDef.js";
|
|
|
5
5
|
export * from "./gridNumericColDef.js";
|
|
6
6
|
export * from "./gridSingleSelectColDef.js";
|
|
7
7
|
export * from "./gridStringColDef.js";
|
|
8
|
+
export * from "./gridLongTextColDef.js";
|
|
8
9
|
export * from "./gridBooleanOperators.js";
|
|
9
10
|
export * from "./gridDateOperators.js";
|
|
10
11
|
export * from "./gridNumericOperators.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { UseGridColumnHeadersProps } from "../hooks/features/columnHeaders/useGridColumnHeaders.js";
|
|
2
|
+
import { type UseGridColumnHeadersProps } from "../hooks/features/columnHeaders/useGridColumnHeaders.js";
|
|
3
3
|
export interface GridColumnHeadersProps extends React.HTMLAttributes<HTMLDivElement>, UseGridColumnHeadersProps {
|
|
4
4
|
ref?: React.Ref<HTMLDivElement>;
|
|
5
5
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridSlotProps } from "../models/index.js";
|
|
3
|
-
import { GridSortDirection } from "../models/gridSortModel.js";
|
|
2
|
+
import type { GridSlotProps } from "../models/index.js";
|
|
3
|
+
import type { GridSortDirection } from "../models/gridSortModel.js";
|
|
4
4
|
export type GridColumnSortButtonProps = GridSlotProps['baseIconButton'] & {
|
|
5
5
|
field: string;
|
|
6
6
|
direction: GridSortDirection;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridBaseIconProps } from "../models/gridSlotsComponentsProps.js";
|
|
3
|
-
import { GridSortDirection } from "../models/gridSortModel.js";
|
|
2
|
+
import type { GridBaseIconProps } from "../models/gridSlotsComponentsProps.js";
|
|
3
|
+
import type { GridSortDirection } from "../models/gridSortModel.js";
|
|
4
4
|
export interface GridColumnUnsortedIconProps extends GridBaseIconProps {
|
|
5
5
|
sortingOrder: GridSortDirection[];
|
|
6
6
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridFooterContainerProps } from "./containers/GridFooterContainer.js";
|
|
1
|
+
import { type GridFooterContainerProps } from "./containers/GridFooterContainer.js";
|
|
2
2
|
declare const GridFooter: import("react").ForwardRefExoticComponent<GridFooterContainerProps> | import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
3
3
|
sx?: import("@mui/system").SxProps<import("@mui/system").Theme>;
|
|
4
4
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridOverlayProps } from "./containers/GridOverlay.js";
|
|
2
|
+
import { type GridOverlayProps } from "./containers/GridOverlay.js";
|
|
3
3
|
import type { GridLoadingOverlayVariant } from "../hooks/features/overlays/gridOverlaysInterfaces.js";
|
|
4
4
|
export interface GridLoadingOverlayProps extends GridOverlayProps {
|
|
5
5
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridOverlayProps } from "./containers/GridOverlay.js";
|
|
1
|
+
import { type GridOverlayProps } from "./containers/GridOverlay.js";
|
|
2
2
|
declare const GridNoColumnsOverlay: import("react").ForwardRefExoticComponent<GridOverlayProps> | import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
3
3
|
sx?: import("@mui/system").SxProps<import("@mui/system").Theme>;
|
|
4
4
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridOverlayProps } from "./containers/GridOverlay.js";
|
|
1
|
+
import { type GridOverlayProps } from "./containers/GridOverlay.js";
|
|
2
2
|
export declare const GridNoResultsOverlay: import("react").ForwardRefExoticComponent<GridOverlayProps> | import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
3
3
|
sx?: import("@mui/system").SxProps<import("@mui/system").Theme>;
|
|
4
4
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridOverlayProps } from "./containers/GridOverlay.js";
|
|
1
|
+
import { type GridOverlayProps } from "./containers/GridOverlay.js";
|
|
2
2
|
declare const GridNoRowsOverlay: import("react").ForwardRefExoticComponent<GridOverlayProps> | import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & {
|
|
3
3
|
sx?: import("@mui/system").SxProps<import("@mui/system").Theme>;
|
|
4
4
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridRowId, GridRowModel } from "../models/gridRows.js";
|
|
3
|
-
import { GridPinnedColumns } from "../hooks/features/columns/index.js";
|
|
2
|
+
import type { GridRowId, GridRowModel } from "../models/gridRows.js";
|
|
3
|
+
import type { GridPinnedColumns } from "../hooks/features/columns/index.js";
|
|
4
4
|
import type { GridStateColDef } from "../models/colDef/gridColDef.js";
|
|
5
5
|
export interface GridRowProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
6
6
|
row: GridRowModel;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RefObject } from '@mui/x-internals/types';
|
|
2
|
-
import { GridScrollParams } from "../models/params/gridScrollParams.js";
|
|
1
|
+
import type { RefObject } from '@mui/x-internals/types';
|
|
2
|
+
import type { GridScrollParams } from "../models/params/gridScrollParams.js";
|
|
3
3
|
interface ScrollAreaProps {
|
|
4
4
|
scrollDirection: 'left' | 'right' | 'up' | 'down';
|
|
5
5
|
scrollPosition: RefObject<GridScrollParams>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridColDef } from "../models/index.js";
|
|
2
|
+
import type { GridColDef } from "../models/index.js";
|
|
3
3
|
type GridSkeletonLoadingOverlayInnerProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
4
4
|
skeletonRowsCount: number;
|
|
5
5
|
showFirstRowBorder?: boolean;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
2
|
+
import type { GridRowParams } from "../../models/params/gridRowParams.js";
|
|
3
|
+
import type { GridRenderCellParams } from "../../models/params/gridCellParams.js";
|
|
4
|
+
import { type GridMenuProps } from "../menu/GridMenu.js";
|
|
5
|
+
import type { GridValidRowModel, GridTreeNodeWithRender } from "../../models/gridRows.js";
|
|
6
|
+
interface GridActionsCellProps<R extends GridValidRowModel = any, V = any, F = V, N extends GridTreeNodeWithRender = GridTreeNodeWithRender> extends Omit<GridRenderCellParams<R, V, F, N>, 'api'> {
|
|
5
7
|
api?: GridRenderCellParams['api'];
|
|
6
8
|
position?: GridMenuProps['position'];
|
|
7
9
|
children: React.ReactNode;
|
|
@@ -12,8 +14,26 @@ interface GridActionsCellProps extends Omit<GridRenderCellParams, 'api'> {
|
|
|
12
14
|
* @default false
|
|
13
15
|
*/
|
|
14
16
|
suppressChildrenValidation?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Callback to fire before the menu gets opened.
|
|
19
|
+
* Use this callback to prevent the menu from opening.
|
|
20
|
+
*
|
|
21
|
+
* @param {GridRowParams<R>} params Row parameters.
|
|
22
|
+
* @param {React.MouseEvent<HTMLElement>} event The event triggering this callback.
|
|
23
|
+
* @returns {boolean} if the menu should be opened.
|
|
24
|
+
*/
|
|
25
|
+
onMenuOpen?: (params: GridRowParams<R>, event: React.MouseEvent<HTMLElement>) => boolean;
|
|
26
|
+
/**
|
|
27
|
+
* Callback to fire before the menu gets closed.
|
|
28
|
+
* Use this callback to prevent the menu from closing.
|
|
29
|
+
*
|
|
30
|
+
* @param {GridRowParams<R>} params Row parameters.
|
|
31
|
+
* @param {React.MouseEvent<HTMLElement> | React.KeyboardEvent | MouseEvent | TouchEvent | undefined} event The event triggering this callback.
|
|
32
|
+
* @returns {boolean} if the menu should be closed.
|
|
33
|
+
*/
|
|
34
|
+
onMenuClose?: (params: GridRowParams<R>, event: React.MouseEvent<HTMLElement> | React.KeyboardEvent | MouseEvent | TouchEvent | undefined) => boolean;
|
|
15
35
|
}
|
|
16
|
-
declare function GridActionsCell(props: GridActionsCellProps): import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
declare function GridActionsCell<R extends GridValidRowModel = any, V = any, F = V, N extends GridTreeNodeWithRender = GridTreeNodeWithRender>(props: GridActionsCellProps<R, V, F, N>): import("react/jsx-runtime").JSX.Element;
|
|
17
37
|
declare namespace GridActionsCell {
|
|
18
38
|
var propTypes: any;
|
|
19
39
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
4
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
5
|
-
const _excluded = ["api", "colDef", "id", "hasFocus", "isEditable", "field", "value", "formattedValue", "row", "rowNode", "cellMode", "tabIndex", "position", "children", "suppressChildrenValidation"];
|
|
5
|
+
const _excluded = ["api", "colDef", "id", "hasFocus", "isEditable", "field", "value", "formattedValue", "row", "rowNode", "cellMode", "tabIndex", "position", "onMenuOpen", "onMenuClose", "children", "suppressChildrenValidation"];
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import PropTypes from 'prop-types';
|
|
8
8
|
import { useRtl } from '@mui/system/RtlProvider';
|
|
@@ -17,9 +17,12 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
17
17
|
const hasActions = colDef => typeof colDef.getActions === 'function';
|
|
18
18
|
function GridActionsCell(props) {
|
|
19
19
|
const {
|
|
20
|
+
id,
|
|
20
21
|
hasFocus,
|
|
21
22
|
tabIndex,
|
|
22
23
|
position = 'bottom-end',
|
|
24
|
+
onMenuOpen,
|
|
25
|
+
onMenuClose,
|
|
23
26
|
children,
|
|
24
27
|
suppressChildrenValidation
|
|
25
28
|
} = props,
|
|
@@ -35,6 +38,7 @@ function GridActionsCell(props) {
|
|
|
35
38
|
const menuId = useId();
|
|
36
39
|
const buttonId = useId();
|
|
37
40
|
const rootProps = useGridRootProps();
|
|
41
|
+
const rowParams = apiRef.current.getRowParams(id);
|
|
38
42
|
const actions = [];
|
|
39
43
|
React.Children.forEach(children, child => {
|
|
40
44
|
// Unwrap React.Fragment
|
|
@@ -93,21 +97,27 @@ If this is intentional, you can suppress this warning by passing the \`suppressC
|
|
|
93
97
|
setFocusedButtonIndex(numberOfButtons - 1);
|
|
94
98
|
}
|
|
95
99
|
}, [focusedButtonIndex, numberOfButtons]);
|
|
96
|
-
const showMenu =
|
|
100
|
+
const showMenu = event => {
|
|
101
|
+
if (onMenuOpen && !onMenuOpen(rowParams, event)) {
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
97
104
|
setOpen(true);
|
|
98
105
|
setFocusedButtonIndex(numberOfButtons - 1);
|
|
99
106
|
ignoreCallToFocus.current = true;
|
|
100
107
|
};
|
|
101
|
-
const hideMenu =
|
|
108
|
+
const hideMenu = event => {
|
|
109
|
+
if (onMenuClose && !onMenuClose(rowParams, event)) {
|
|
110
|
+
return;
|
|
111
|
+
}
|
|
102
112
|
setOpen(false);
|
|
103
113
|
};
|
|
104
114
|
const toggleMenu = event => {
|
|
105
115
|
event.stopPropagation();
|
|
106
116
|
event.preventDefault();
|
|
107
117
|
if (open) {
|
|
108
|
-
hideMenu();
|
|
118
|
+
hideMenu(event);
|
|
109
119
|
} else {
|
|
110
|
-
showMenu();
|
|
120
|
+
showMenu(event);
|
|
111
121
|
}
|
|
112
122
|
};
|
|
113
123
|
const handleTouchRippleRef = index => instance => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridSlotProps, GridBaseIconProps } from "../../models/gridSlotsComponentsProps.js";
|
|
2
|
+
import type { GridSlotProps, GridBaseIconProps } from "../../models/gridSlotsComponentsProps.js";
|
|
3
3
|
interface GridActionsCellItemCommonProps {
|
|
4
4
|
icon?: React.JSXElementConstructor<GridBaseIconProps> | React.ReactNode;
|
|
5
5
|
/** from https://mui.com/material-ui/api/button-base/#ButtonBase-prop-component */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridRowId } from "../../models/index.js";
|
|
3
|
-
import { GridAlignment, GridStateColDef } from "../../models/colDef/gridColDef.js";
|
|
4
|
-
import { GridRowModel, GridTreeNode } from "../../models/gridRows.js";
|
|
2
|
+
import { type GridRowId } from "../../models/index.js";
|
|
3
|
+
import type { GridAlignment, GridStateColDef } from "../../models/colDef/gridColDef.js";
|
|
4
|
+
import type { GridRowModel, GridTreeNode } from "../../models/gridRows.js";
|
|
5
5
|
import { GridPinnedColumnPosition } from "../../hooks/features/columns/gridColumnsInterfaces.js";
|
|
6
6
|
import { PinnedColumnPosition } from "../../internals/constants.js";
|
|
7
7
|
export declare const gridPinnedColumnPositionLookup: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridRenderEditCellParams } from "../../models/params/gridCellParams.js";
|
|
2
|
+
import type { GridRenderEditCellParams } from "../../models/params/gridCellParams.js";
|
|
3
3
|
export interface GridEditBooleanCellProps extends GridRenderEditCellParams, Omit<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, 'id' | 'tabIndex'> {
|
|
4
4
|
/**
|
|
5
5
|
* Callback called when the value is changed by the user.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridSlotProps } from "../../models/gridSlotsComponent.js";
|
|
3
|
-
import { GridRenderEditCellParams } from "../../models/params/gridCellParams.js";
|
|
2
|
+
import type { GridSlotProps } from "../../models/gridSlotsComponent.js";
|
|
3
|
+
import type { GridRenderEditCellParams } from "../../models/params/gridCellParams.js";
|
|
4
4
|
export interface GridEditDateCellProps extends GridRenderEditCellParams {
|
|
5
5
|
/**
|
|
6
6
|
* Callback called when the value is changed by the user.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { GridSlotProps } from "../../models/gridSlotsComponent.js";
|
|
3
|
-
import { GridRenderEditCellParams } from "../../models/params/gridCellParams.js";
|
|
2
|
+
import type { GridSlotProps } from "../../models/gridSlotsComponent.js";
|
|
3
|
+
import type { GridRenderEditCellParams } from "../../models/params/gridCellParams.js";
|
|
4
4
|
export interface GridEditInputCellProps extends GridRenderEditCellParams {
|
|
5
5
|
debounceMs?: number;
|
|
6
6
|
/**
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { GridRenderEditCellParams } from "../../models/params/gridCellParams.js";
|
|
3
|
+
import type { GridSlotProps } from "../../models/gridSlotsComponent.js";
|
|
4
|
+
export interface GridEditLongTextCellProps extends GridRenderEditCellParams<any, string | null> {
|
|
5
|
+
debounceMs?: number;
|
|
6
|
+
/**
|
|
7
|
+
* Callback called when the value is changed by the user.
|
|
8
|
+
* @param {React.ChangeEvent<HTMLTextAreaElement>} event The event source of the callback.
|
|
9
|
+
* @param {string} newValue The value that is going to be passed to `apiRef.current.setEditCellValue`.
|
|
10
|
+
* @returns {Promise<void> | void} A promise to be awaited before calling `apiRef.current.setEditCellValue`
|
|
11
|
+
*/
|
|
12
|
+
onValueChange?: (event: React.ChangeEvent<HTMLTextAreaElement>, newValue: string) => Promise<void> | void;
|
|
13
|
+
/**
|
|
14
|
+
* Props passed to internal components.
|
|
15
|
+
*/
|
|
16
|
+
slotProps?: {
|
|
17
|
+
/**
|
|
18
|
+
* Props passed to the root element.
|
|
19
|
+
*/
|
|
20
|
+
root?: React.HTMLAttributes<HTMLDivElement>;
|
|
21
|
+
/**
|
|
22
|
+
* Props passed to the value element.
|
|
23
|
+
*/
|
|
24
|
+
value?: React.HTMLAttributes<HTMLDivElement>;
|
|
25
|
+
/**
|
|
26
|
+
* Props passed to the popper element.
|
|
27
|
+
*/
|
|
28
|
+
popper?: Partial<GridSlotProps['basePopper']>;
|
|
29
|
+
/**
|
|
30
|
+
* Props passed to the popper content element.
|
|
31
|
+
*/
|
|
32
|
+
popperContent?: React.HTMLAttributes<HTMLDivElement>;
|
|
33
|
+
/**
|
|
34
|
+
* Props passed to the textarea element.
|
|
35
|
+
*/
|
|
36
|
+
textarea?: Partial<GridSlotProps['baseTextarea']>;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
declare function GridEditLongTextCell(props: GridEditLongTextCellProps): import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
export { GridEditLongTextCell };
|
|
41
|
+
export declare const renderEditLongTextCell: (params: GridEditLongTextCellProps) => import("react/jsx-runtime").JSX.Element;
|