@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
28 lines (27 loc) • 1.06 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 { TextBoxChangeEvent, TextBoxProps } from '@progress/kendo-react-inputs';
import * as React from 'react';
/**
* Represents the event object of the GridSearchBox `onChange` event.
*/
export interface GridSearchBoxChangeEvent extends TextBoxChangeEvent {
}
/**
* Represents the props of the GridSearchBox component.
*/
export interface GridSearchBoxProps extends TextBoxProps {
/**
* Fires when the value of the search box is changed.
*/
onChange?: (event: GridSearchBoxChangeEvent) => void;
}
/**
* Represents the properties of the KendoReact GridSearchBox component.
*/
export declare const GridSearchBox: (props: GridSearchBoxProps) => React.JSX.Element;