()
| 399 | } |
| 400 | |
| 401 | get formValidity(): ValidityStateFlags { |
| 402 | return { |
| 403 | valueMissing: this.required && !this.value, |
| 404 | patternMismatch: !this.isValidValue(this.value), |
| 405 | }; |
| 406 | } |
| 407 | |
| 408 | async formElementAnchor() { |
| 409 | return (await this.getFocusDomRefAsync() as UI5Element)?.getFocusDomRefAsync(); |
nothing calls this directly
no test coverage detected