()
| 1965 | } |
| 1966 | |
| 1967 | handleOK() { |
| 1968 | if (isPhone()) { |
| 1969 | const changePrevented = this.fireSelectionChange(); |
| 1970 | |
| 1971 | if (changePrevented) { |
| 1972 | this._revertSelection(); |
| 1973 | } |
| 1974 | } |
| 1975 | |
| 1976 | if (!this.noValidation) { |
| 1977 | this.value = ""; |
| 1978 | } |
| 1979 | |
| 1980 | this._toggleTokenizerPopover(); |
| 1981 | } |
| 1982 | |
| 1983 | _forwardFocusToInner() { |
| 1984 | this._innerInput.focus(); |
nothing calls this directly
no test coverage detected