VDialPad
Base class for dial-pad
Props
Name | Type | Description |
---|---|---|
aria-current | Enum:page step location date time true false | Indicates the element that represents the current item within a container or set of related elements. |
helper-text | string | Indicates the helper-text's text. |
placeholder | string | Indicates the placeholder's text. |
value | string | Indicates the value's text. |
pattern | string | Indicates the dial pad's pattern. |
disabled | boolean | Indicates the disabled state of the dial-pad. |
pending | boolean | Indicates the pending state of the dial-pad. |
call-active | boolean | Indicates the active state of the dial-pad. |
no-call | boolean | Indicates the no-call state of the dial-pad. |
no-input | boolean | Indicates the no-input state of the dial-pad. |
end-call-button-label | string | |
call-button-label | string |
Events
Name | Event Type | Description |
---|---|---|
click | MouseEvent | Fires when a pointing device button (such as a mouse's primary mouse button) is both pressed and released while the pointer is located inside the element. |
keydown | KeyboardEvent | Fires when a key is pressed. |
keyup | KeyboardEvent | Fires when a key is released. |
change | CustomEvent<undefined> | Emitted when the text field value changes |
input | CustomEvent<undefined> | Emitted when the text field value changes |
blur | CustomEvent<undefined> | Emitted when the text field loses focus |
focus | CustomEvent<undefined> | Emitted when the text field receives focus |
keypad-click | CustomEvent<HTMLElement> | Emitted when a digit button is clicked |
dial | CustomEvent<undefined> | Emitted when the call button is clicked |
end-call | CustomEvent<undefined> | Emitted when the end call button is clicked |
Methods
Name | Type | Description |
---|---|---|
valueChanged | (_oldValue: string,newValue: string) => unknown |