@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
34 lines (33 loc) • 1.22 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { GridColumnMenuProps } from '../interfaces/GridColumnMenuProps.js';
import { SVGIcon } from '@progress/kendo-react-common';
import * as React from 'react';
/**
* The props of the GridColumnMenuWrapper component.
*/
export interface GridColumnMenuWrapperProps extends GridColumnMenuProps {
/**
* The component to be rendered as content of the Grid column menu.
*/
columnMenu?: React.ComponentType<GridColumnMenuProps> | null;
/**
* The icon that overrides the default(three vertical dots) icon displayed in the column menu of each column.
*/
columnMenuIcon?: SVGIcon;
}
/**
* @hidden
*/
export interface ColumnMenuStateProps {
show: boolean;
}
/**
* The GridColumnMenuWrapper component.
*/
export declare const GridColumnMenuWrapper: (props: GridColumnMenuWrapperProps) => React.JSX.Element;