UNPKG

@progress/kendo-react-grid

Version:

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

32 lines (31 loc) 1.02 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 { GridColumnProps } from '../interfaces/GridColumnProps.js'; import { GridComponentProps } from '../interfaces/GridProps.js'; /** * @hidden */ export declare const isPremiumGridByProps: (props: GridComponentProps) => { [key: string]: boolean; }; /** * @hidden */ export declare const isPremiumGridByColumns: (columns: GridColumnProps[]) => { [key: string]: boolean; }; /** * @hidden */ export declare const isPremiumGridByComponents: (props: GridComponentProps) => { [key: string]: boolean; }; /** * @hidden */ export declare const gridPremiumFeatures: (props: GridComponentProps, columns: GridColumnProps[]) => string[];