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 23.0.0-alpha5 to 23.0.0-beta1

src/slot-target-controller.d.ts

6

package.json
{
"name": "@vaadin/field-base",
"version": "23.0.0-alpha5",
"version": "23.0.0-beta1",
"publishConfig": {

@@ -35,3 +35,3 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "23.0.0-alpha5",
"@vaadin/component-base": "23.0.0-beta1",
"lit": "^2.0.0"

@@ -44,3 +44,3 @@ },

},
"gitHead": "74f9294964eb8552d96578c14af6ad214f5257bc"
"gitHead": "467244b76021176c109df675799b07029b293e58"
}

@@ -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