()
| 235 | } |
| 236 | |
| 237 | get formValidity(): ValidityStateFlags { |
| 238 | return { |
| 239 | valueMissing: this.required && !this.value, |
| 240 | patternMismatch: !this.isValidValue(this.value), |
| 241 | rangeUnderflow: !this.isValidMin(this.value), |
| 242 | rangeOverflow: !this.isValidMax(this.value), |
| 243 | }; |
| 244 | } |
| 245 | |
| 246 | get _formatPattern() { |
| 247 | const formatPattern = this.formatPattern || this.valueFormat || "medium"; |
nothing calls this directly
no test coverage detected