@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
17 lines (16 loc) • 728 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* The type of the GridRow component.
*
* The available values are:
* - `groupHeader`—The row is a group header.
* - `groupFooter`—The row is a group footer.
* - `data`—The row corresponds to an item from the `data` collection which is passed to the Grid.
*/
export type GridRowType = 'groupFooter' | 'groupHeader' | 'data';