* Returns the inner input element DOM reference. * @param input the Input component * @returns inner input element
(input: Input)
| 117 | * @returns inner input element |
| 118 | */ |
| 119 | _innerInput(input: Input): HTMLInputElement | null { |
| 120 | return input && input.getInputDOMRefSync(); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Creates clock and button components according to the display format pattern. |
no test coverage detected