Opens the connected timepicker.
(event: Event)
| 85 | |
| 86 | /** Opens the connected timepicker. */ |
| 87 | protected _open(event: Event): void { |
| 88 | if (this.timepicker() && !this._isDisabled()) { |
| 89 | this.timepicker().open(); |
| 90 | event.stopPropagation(); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Checks for ariaLabelledby and if empty uses custom |
nothing calls this directly
no test coverage detected