Email input
A field to input an email address. The email input supports the validation of the required field and regular expression patterns.
Method | Description |
---|---|
setValue(value: string) | sets value for the input |
setDisabled(disabled: boolean) | sets input's state (enabled/ disabled) |
reset() | resets input to the initial value |
validate() | triggers input's validation |
focus() | sets focus on the component |
resetValidation() | clears validation errors |
Triggers allow you to launch certain actions upon different events.
on Change | Calls for an action when the state of the input changes |
on Init | Calls for an action on component initialization |
on Enter | Calls for an action on Enter click |
Last modified 2mo ago