@uiwwsw/virtual-keyboard
Version:
**A revolutionary virtual keyboard solution for React that solves the Korean `composition` issue.**
11 lines (10 loc) • 463 B
TypeScript
export interface VirtualInputHandle {
handleKeyDown: (e: KeyboardEvent | React.KeyboardEvent) => void;
}
export interface VirtualInputProps {
value?: string;
defaultValue?: string;
placeholder?: string;
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
}
export declare function VirtualInput({ value: controlledValue, defaultValue, placeholder, onChange, ...props }: VirtualInputProps): import("react/jsx-runtime").JSX.Element;