UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

15 lines (12 loc) 609 B
import * as React from 'react'; import { KeyFilterType } from '../keyfilter'; import TooltipOptions from '../tooltip/tooltipoptions'; 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; children?: React.ReactNode; } export declare class InputText extends React.Component<InputTextProps, any> {}