UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

11 lines (10 loc) 500 B
import * as React from 'react'; import { InputProps } from '../../../components/Input'; import { CSSProperties } from 'react'; export type AdaptableFormControlTextClearProps = { OnTextChange: (textValue: string) => void; focusOnClear?: boolean; autoFocus?: boolean; inputStyle?: CSSProperties; } & InputProps; export declare const AdaptableFormControlTextClear: React.ForwardRefExoticComponent<Omit<AdaptableFormControlTextClearProps, "ref"> & React.RefAttributes<HTMLInputElement>>;