changed onChange to onInput according to standard HTML

This commit is contained in:
Martin Berg Alstad 2023-01-10 22:49:47 +01:00
parent fc67148815
commit c3e6414504

View File

@ -22,7 +22,7 @@ export interface TitleProps extends ChildProps {
} }
export interface InputProps<T> extends TitleProps { export interface InputProps<T> extends TitleProps {
onChange?: JSX.EventHandlerUnion<T, Event>, onInput?: JSX.EventHandlerUnion<T, Event>,
placeholder?: string | null, placeholder?: string | null,
required?: boolean, required?: boolean,
type?: string, type?: string,