@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
26 lines (25 loc) • 844 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
*-------------------------------------------------------------------------------------------
*/
/**
* @hidden
*/
export type BooleanOrConfig<T = {}> = boolean | T;
/**
* Configuration options for the SmartBox history feature.
*/
export interface GridSmartBoxHistoryProps {
/**
* Sets the maximum number of history items to store.
*/
size: number;
/**
* Sets the format string for displaying timestamps in history items.
* Uses Intl date format patterns (e.g., 'HH:mm', 'dd/MM/yyyy HH:mm').
*/
timestampFormat: string;
}