* Checks if the provided value is valid and within valid range. * @protected * @param value
(value: string)
| 687 | * @param value |
| 688 | */ |
| 689 | _checkDisplayValueValidity(value: string): boolean { |
| 690 | if (value === "") { |
| 691 | return true; |
| 692 | } |
| 693 | return this.isValidDisplayValue(value) && this.isInValidRangeDisplayValue(value); |
| 694 | } |
| 695 | |
| 696 | _click(e: MouseEvent) { |
| 697 | if (isPhone()) { |
no test coverage detected