()
| 432 | } |
| 433 | |
| 434 | get formValidity(): ValidityStateFlags { |
| 435 | return { |
| 436 | valueMissing: this.required && !this.value, |
| 437 | patternMismatch: !this.isValidValue(this.value), |
| 438 | rangeUnderflow: !this.isValidMin(this.value), |
| 439 | rangeOverflow: !this.isValidMax(this.value), |
| 440 | }; |
| 441 | } |
| 442 | |
| 443 | async formElementAnchor() { |
| 444 | return (await this.getFocusDomRefAsync() as UI5Element)?.getFocusDomRefAsync(); |
nothing calls this directly
no test coverage detected