package.lib.Selector.Input.d.ts Maven / Gradle / Ivy
The newest version!
import * as React from 'react';
type InputRef = HTMLInputElement | HTMLTextAreaElement;
interface InputProps {
prefixCls: string;
id: string;
inputElement: React.ReactElement;
disabled: boolean;
autoFocus: boolean;
autoComplete: string;
editable: boolean;
activeDescendantId?: string;
value: string;
maxLength?: number;
open: boolean;
tabIndex: number;
/** Pass accessibility props to input */
attrs: Record;
onKeyDown: React.KeyboardEventHandler;
onMouseDown: React.MouseEventHandler;
onChange: React.ChangeEventHandler;
onPaste: React.ClipboardEventHandler;
onCompositionStart: React.CompositionEventHandler;
onCompositionEnd: React.CompositionEventHandler;
}
declare const RefInput: React.ForwardRefExoticComponent>;
export default RefInput;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy