()
| 130 | } |
| 131 | |
| 132 | get formValidity(): ValidityStateFlags { |
| 133 | return { |
| 134 | valueMissing: this.required && !this.value, |
| 135 | patternMismatch: !!this.value && !this.isValidValue(this.value), |
| 136 | rangeUnderflow: !!this.value && !this.isValidMin(this.value), |
| 137 | rangeOverflow: !!this.value && !this.isValidMax(this.value), |
| 138 | }; |
| 139 | } |
| 140 | |
| 141 | get formFormattedValue() { |
| 142 | const values = this._splitValueByDelimiter(this.value || "").filter(Boolean); |
nothing calls this directly
no test coverage detected