14 lines
576 B
TypeScript
14 lines
576 B
TypeScript
|
import * as React from 'react';
|
||
|
import TooltipOptions from '../tooltip/tooltipoptions';
|
||
|
import { KeyFilterType } from '../keyfilter';
|
||
|
|
||
|
export interface InputTextProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'onInput'|'ref'> {
|
||
|
keyfilter?: KeyFilterType;
|
||
|
validateOnly?: boolean;
|
||
|
tooltip?: string;
|
||
|
tooltipOptions?: TooltipOptions;
|
||
|
onInput?(event: React.FormEvent<HTMLInputElement>, validatePattern: boolean): void;
|
||
|
}
|
||
|
|
||
|
export declare class InputText extends React.Component<InputTextProps, any> { }
|