@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
31 lines (30 loc) • 1.3 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 { GridColumnMenuColumnsChooserBaseProps } from '../interfaces/GridColumnMenuColumnsChooserBaseProps.js';
import * as React from 'react';
/**
* The props of the GridColumnMenuColumnsChooser component.
*/
export interface GridColumnMenuColumnsChooserProps extends GridColumnMenuColumnsChooserBaseProps {
/**
* If set to `true`, column chooser expand button will not be rendered and column chooser menu will be expanded.
*/
alwaysExpand?: boolean;
/**
* Controls the expand state of the column chooser component.
*/
expanded?: boolean;
/**
* Triggered on each subsequent expand state of the column chooser component.
*/
onExpandChange?: (nextExpandState: boolean) => void;
}
/**
* Represents the KendoReact GridColumnMenuColumnsChooser component.
*/
export declare const GridColumnMenuColumnsChooser: React.FunctionComponent<GridColumnMenuColumnsChooserProps>;