(e: CustomEvent)
| 685 | } |
| 686 | |
| 687 | _handleInputChange(e: CustomEvent) { |
| 688 | const target = e.target as DateTimeInput; |
| 689 | this._updateValueAndFireEvents(target.value, true, ["change", "value-changed"]); |
| 690 | } |
| 691 | |
| 692 | _onInputRequestSubmit() { |
| 693 | if (this._internals.form) { |
nothing calls this directly
no test coverage detected