Socket
Socket
Sign inDemoInstall

@vaadin/field-base

Package Overview
Dependencies
Maintainers
17
Versions
366
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/field-base - npm Package Compare versions

Comparing version 22.0.3 to 22.0.4

src/slot-target-controller.d.ts

6

package.json
{
"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.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc