@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 535 B
TypeScript
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;
actionTools?: React.ReactNode;
} & InputProps;
export declare const AdaptableFormControlTextClear: React.ForwardRefExoticComponent<Omit<AdaptableFormControlTextClearProps, "ref"> & React.RefAttributes<HTMLInputElement>>;