UNPKG

@progress/kendo-react-grid

Version:

React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package

25 lines (24 loc) 1.16 kB
/** * @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 './GridColumnMenuColumnsChooserBaseProps.js'; import { GridColumnMenuFilterBaseProps } from './GridColumnMenuFilterBaseProps.js'; import { GridColumnMenuGroupBaseProps } from './GridColumnMenuGroupBaseProps.js'; import { GridColumnMenuSortBaseProps } from './GridColumnMenuSortBaseProps.js'; /** * The props which the ColumnMenu passes to its children. */ export interface GridColumnMenuProps extends GridColumnMenuFilterBaseProps, GridColumnMenuSortBaseProps, GridColumnMenuGroupBaseProps, GridColumnMenuColumnsChooserBaseProps { /** * Determines if the column menu supports keyboard navigation. */ navigatable?: boolean; /** * Determines if the column menu is visible. */ show?: boolean; }