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
(event.type==='blur'&&autoCheckElement.validateAfterFirstBlur)||// Only validate on blur if validate-after-first-blur is set
218
-
(autoCheckElement.validateAfterFirstBlur&&autoCheckElement.shouldValidate)// Only validate on key inputs in validate-after-first-blur mode if should-validate is set (when input is invalid)
(event.type==='blur'&&autoCheckElement.onlyValidateOnBlur)||// Only validate on blur if only-validate-on-blur is set
226
+
(autoCheckElement.onlyValidateOnBlur&&autoCheckElement.validateOnKeystroke)// Only validate on key inputs in only-validate-on-blur mode if validate-on-keystroke is set (when input is invalid)
219
227
){
220
228
checker()
221
229
setLoadingState(event)
@@ -333,12 +341,18 @@ async function check(autoCheckElement: AutoCheckElement) {
0 commit comments