New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/select

Package Overview
Dependencies
Maintainers
14
Versions
423
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/select - npm Package Compare versions

Comparing version 23.2.0-alpha2 to 23.2.0-dev.48e5e3967

30

package.json
{
"name": "@vaadin/select",
"version": "23.2.0-alpha2",
"version": "23.2.0-dev.48e5e3967",
"publishConfig": {

@@ -39,18 +39,18 @@ "access": "public"

"@polymer/polymer": "^3.2.0",
"@vaadin/button": "23.2.0-alpha2",
"@vaadin/component-base": "23.2.0-alpha2",
"@vaadin/field-base": "23.2.0-alpha2",
"@vaadin/input-container": "23.2.0-alpha2",
"@vaadin/item": "23.2.0-alpha2",
"@vaadin/list-box": "23.2.0-alpha2",
"@vaadin/lit-renderer": "23.2.0-alpha2",
"@vaadin/vaadin-list-mixin": "23.2.0-alpha2",
"@vaadin/vaadin-lumo-styles": "23.2.0-alpha2",
"@vaadin/vaadin-material-styles": "23.2.0-alpha2",
"@vaadin/vaadin-overlay": "23.2.0-alpha2",
"@vaadin/vaadin-themable-mixin": "23.2.0-alpha2"
"@vaadin/button": "23.2.0-dev.48e5e3967",
"@vaadin/component-base": "23.2.0-dev.48e5e3967",
"@vaadin/field-base": "23.2.0-dev.48e5e3967",
"@vaadin/input-container": "23.2.0-dev.48e5e3967",
"@vaadin/item": "23.2.0-dev.48e5e3967",
"@vaadin/list-box": "23.2.0-dev.48e5e3967",
"@vaadin/lit-renderer": "23.2.0-dev.48e5e3967",
"@vaadin/vaadin-list-mixin": "23.2.0-dev.48e5e3967",
"@vaadin/vaadin-lumo-styles": "23.2.0-dev.48e5e3967",
"@vaadin/vaadin-material-styles": "23.2.0-dev.48e5e3967",
"@vaadin/vaadin-overlay": "23.2.0-dev.48e5e3967",
"@vaadin/vaadin-themable-mixin": "23.2.0-dev.48e5e3967"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@vaadin/polymer-legacy-adapter": "23.2.0-alpha2",
"@vaadin/polymer-legacy-adapter": "23.2.0-dev.48e5e3967",
"@vaadin/testing-helpers": "^0.3.2",

@@ -60,3 +60,3 @@ "lit": "^2.0.0",

},
"gitHead": "c9b8113d0fa9a602f8b9cb915c1826355af2e8df"
"gitHead": "961bc4ae5b707c3c02f12b99819b3c12c9b478aa"
}

@@ -247,9 +247,2 @@ /**

/**
* Returns true if `value` is valid, and sets the `invalid` flag appropriately.
*
* @returns True if the value is valid and sets the `invalid` flag appropriately
*/
validate(): boolean;
addEventListener<K extends keyof SelectEventMap>(

@@ -256,0 +249,0 @@ type: K,

@@ -700,8 +700,8 @@ /**

/**
* Returns true if `value` is valid, and sets the `invalid` flag appropriately.
* Returns true if the current value satisfies all constraints (if any)
*
* @return {boolean} True if the value is valid and sets the `invalid` flag appropriately
* @return {boolean}
*/
validate() {
return !(this.invalid = !(this.disabled || !this.required || this.value));
checkValidity() {
return this.disabled || !this.required || !!this.value;
}

@@ -708,0 +708,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc