@vaadin/field-base
Advanced tools
Comparing version 22.0.3 to 22.0.4
{ | ||
"name": "@vaadin/field-base", | ||
"version": "22.0.3", | ||
"version": "22.0.4", | ||
"publishConfig": { | ||
@@ -34,3 +34,3 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "^22.0.3", | ||
"@vaadin/component-base": "^22.0.4", | ||
"lit": "^2.0.0" | ||
@@ -43,3 +43,3 @@ }, | ||
}, | ||
"gitHead": "935ad1ea65a79b0f9ecb10d767689479b36c4e07" | ||
"gitHead": "55891f68d4da41e846e06dfe51dceba1665e41ce" | ||
} |
@@ -124,2 +124,17 @@ /** | ||
/** | ||
* Override an event listener from `InputMixin` | ||
* to mark as valid after user started typing. | ||
* @param {Event} event | ||
* @protected | ||
* @override | ||
*/ | ||
_onInput(event) { | ||
super._onInput(event); | ||
if (this.invalid) { | ||
this.validate(); | ||
} | ||
} | ||
/** | ||
* Override a method from `InputMixin` to validate the field | ||
@@ -126,0 +141,0 @@ * when a new value is set programmatically. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
107005
53
2920