data? | DataAttributeMap | | Sets data attributes for the component. |
type? | 'text' | 'password' | 'email' | 'search' | 'number' | 'tel' | 'url' | 'text' | Sets the type attribute for the component. |
onBlur? | React.FocusEventHandler<HTMLInputElement> | | Callback function when input field component loses focuses. |
onFocus? | React.FocusEventHandler<HTMLInputElement> | | Callback function when the input field component is in focus. |
onChange? | React.FormEventHandler<HTMLInputElement> | | Callback function when value of the input field has been changed. |
placeholder? | string | | Specifies a short hint that describes the expected value (type of value) of the input field. |
value? | string | number | readonly string[] | | Specifies the value of the input field. |