(e: CustomEvent)
| 696 | } |
| 697 | |
| 698 | _handleInputLiveChange(e: CustomEvent) { |
| 699 | if (this._isPhone) { |
| 700 | e.preventDefault(); |
| 701 | } |
| 702 | |
| 703 | const target = e.target as DateTimeInput; |
| 704 | this._updateValueAndFireEvents(target.value, false, ["input"]); |
| 705 | } |
| 706 | |
| 707 | _canOpenPicker() { |
| 708 | return !this.disabled && !this.readonly; |
nothing calls this directly
no test coverage detected