You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|||`badInput`|[The value is invalid somehow](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-bad-input).|
102
-
|[`max`](https://html.spec.whatwg.org/multipage/input.html#attr-input-max)|`Number`|`rangeOverflow`| The value is too high|
103
-
|[`maxLength`](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-maxlength)|`Number`|`tooLong`| The value is too long. |
104
-
|[`min`](https://html.spec.whatwg.org/multipage/input.html#attr-input-min)|`Number`|`rangeUnderflow`| The value is too small. |
105
-
|[`minLength`](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-minlength)|`Number`|`tooShort`| The value is too short. |
106
-
|[`pattern`](https://html.spec.whatwg.org/multipage/input.html#attr-input-pattern)|`string`|`patternMismatch`| The value does not match the regular expression. |
107
-
|`required`|`boolean`|`valueMissing`|[The value is missing](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-being-missing).|
108
-
|[`step`](https://html.spec.whatwg.org/multipage/input.html#attr-input-step)|`Number`|`stepMismatch`| The value does not match the step granularity. |
109
-
|||`typeMismatch`|[The value does not match the specified `type`](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-a-type-mismatch).|
|||`badInput`|[The value is invalid somehow](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-bad-input)|
102
+
|[`max`](https://html.spec.whatwg.org/multipage/input.html#attr-input-max)|`Number`|`rangeOverflow`|[The value is too high](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-an-overflow)|
103
+
|[`maxLength`](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-maxlength)|`Number`|`tooLong`|[The value is too long](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-being-too-long)|
104
+
|[`min`](https://html.spec.whatwg.org/multipage/input.html#attr-input-min)|`Number`|`rangeUnderflow`|[The value is too small](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-an-underflow)|
105
+
|[`minLength`](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-minlength)|`Number`|`tooShort`|[The value is too short](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-being-too-short)|
106
+
|[`pattern`](https://html.spec.whatwg.org/multipage/input.html#attr-input-pattern)|`string`|`patternMismatch`|[The value does not match the regular expression](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-a-pattern-mismatch)|
107
+
|[`required`](https://html.spec.whatwg.org/multipage/input.html#the-required-attribute)|`boolean`|`valueMissing`|[The value is missing](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-being-missing)|
108
+
|[`step`](https://html.spec.whatwg.org/multipage/input.html#attr-input-step)|`Number`|`stepMismatch`|[The value does not match the step granularity](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-a-step-mismatch)|
109
+
|||`typeMismatch`|[The value does not match the specified `type`](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-a-type-mismatch)|
0 commit comments