OryNodeInputInputProps
type OryNodeInputInputProps = {
autoComplete?: string
disabled?: boolean
maxLength?: number
name: string
onBlur: () => void
onChange: (event: any) => void
onClick: MouseEventHandler
placeholder: string
ref: (instance: any) => void
type: string
value: string | number | readonly string[] | undefined
}
Properties
autoComplete?
optional autoComplete: string;
disabled?
optional disabled: boolean;
maxLength?
optional maxLength: number;
name
name: string
onBlur()
onBlur: () => void;
Returns
void
onChange()
onChange: (event: any) => void;
Parameters
| Parameter | Type |
|---|---|
event | any |
Returns
void
onClick
onClick: MouseEventHandler
placeholder
placeholder: string
ref()
ref: (instance: any) => void;
Parameters
| Parameter | Type |
|---|---|
instance | any |
Returns
void
type
type: string
value
value: string | number | readonly string[] | undefined;