Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/combo-box

Package Overview
Dependencies
Maintainers
14
Versions
405
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/combo-box - npm Package Compare versions

Comparing version 23.0.0-beta4 to 23.0.0-beta5

26

package.json
{
"name": "@vaadin/combo-box",
"version": "23.0.0-beta4",
"version": "23.0.0-beta5",
"publishConfig": {

@@ -37,21 +37,21 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "23.0.0-beta4",
"@vaadin/field-base": "23.0.0-beta4",
"@vaadin/input-container": "23.0.0-beta4",
"@vaadin/item": "23.0.0-beta4",
"@vaadin/vaadin-lumo-styles": "23.0.0-beta4",
"@vaadin/vaadin-material-styles": "23.0.0-beta4",
"@vaadin/vaadin-overlay": "23.0.0-beta4",
"@vaadin/vaadin-themable-mixin": "23.0.0-beta4"
"@vaadin/component-base": "23.0.0-beta5",
"@vaadin/field-base": "23.0.0-beta5",
"@vaadin/input-container": "23.0.0-beta5",
"@vaadin/item": "23.0.0-beta5",
"@vaadin/vaadin-lumo-styles": "23.0.0-beta5",
"@vaadin/vaadin-material-styles": "23.0.0-beta5",
"@vaadin/vaadin-overlay": "23.0.0-beta5",
"@vaadin/vaadin-themable-mixin": "23.0.0-beta5"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@vaadin/dialog": "23.0.0-beta4",
"@vaadin/polymer-legacy-adapter": "23.0.0-beta4",
"@vaadin/dialog": "23.0.0-beta5",
"@vaadin/polymer-legacy-adapter": "23.0.0-beta5",
"@vaadin/testing-helpers": "^0.3.2",
"@vaadin/text-field": "23.0.0-beta4",
"@vaadin/text-field": "23.0.0-beta5",
"lit": "^2.0.0",
"sinon": "^9.2.0"
},
"gitHead": "d0b447f1c31ca4256a5e26f2dcd27784447ff79b"
"gitHead": "4c388aeec6623869c70896c909799804fc95d0f9"
}

@@ -711,3 +711,2 @@ /**

if (this.allowCustomValue) {
delete this._lastCustomValue;
this.value = '';

@@ -729,17 +728,6 @@ }

) {
const customValue = this._inputElementValue;
// User's logic in `custom-value-set` event listener might cause input to blur,
// which will result in attempting to commit the same custom value once again.
if (this._lastCustomValue === customValue) {
return;
}
// Store reference to the last custom value for checking it
this._lastCustomValue = customValue;
// An item matching by label was not found, but custom values are allowed.
// Dispatch a custom-value-set event with the input value.
const e = new CustomEvent('custom-value-set', {
detail: customValue,
detail: this._inputElementValue,
composed: true,

@@ -751,2 +739,3 @@ cancelable: true,

if (!e.defaultPrevented) {
const customValue = this._inputElementValue;
this._selectItemForValue(customValue);

@@ -753,0 +742,0 @@ this.value = customValue;

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