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

@vaadin/multi-select-combo-box

Package Overview
Dependencies
Maintainers
12
Versions
367
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/multi-select-combo-box - npm Package Compare versions

Comparing version 23.3.0-alpha1 to 23.3.0-alpha2

20

package.json
{
"name": "@vaadin/multi-select-combo-box",
"version": "23.3.0-alpha1",
"version": "23.3.0-alpha2",
"publishConfig": {

@@ -40,10 +40,10 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/combo-box": "23.3.0-alpha1",
"@vaadin/component-base": "23.3.0-alpha1",
"@vaadin/field-base": "23.3.0-alpha1",
"@vaadin/input-container": "23.3.0-alpha1",
"@vaadin/lit-renderer": "23.3.0-alpha1",
"@vaadin/vaadin-lumo-styles": "23.3.0-alpha1",
"@vaadin/vaadin-material-styles": "23.3.0-alpha1",
"@vaadin/vaadin-themable-mixin": "23.3.0-alpha1"
"@vaadin/combo-box": "23.3.0-alpha2",
"@vaadin/component-base": "23.3.0-alpha2",
"@vaadin/field-base": "23.3.0-alpha2",
"@vaadin/input-container": "23.3.0-alpha2",
"@vaadin/lit-renderer": "23.3.0-alpha2",
"@vaadin/vaadin-lumo-styles": "23.3.0-alpha2",
"@vaadin/vaadin-material-styles": "23.3.0-alpha2",
"@vaadin/vaadin-themable-mixin": "23.3.0-alpha2"
},

@@ -59,3 +59,3 @@ "devDependencies": {

],
"gitHead": "beabc527d4b1274eb798ff701d406fed45cfe638"
"gitHead": "ae61027c62ffa7f7d70cfc50e43f333addfc74b6"
}

@@ -329,4 +329,19 @@ /**

}
/**
* Override method inherited from the combo-box
* to not clear the data provider cache when read-only.
*
* @protected
* @override
*/
clearCache() {
if (this.readonly) {
return;
}
super.clearCache();
}
}
customElements.define(MultiSelectComboBoxInternal.is, MultiSelectComboBoxInternal);

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

this.addController(this._tooltipController);
this._tooltipController.setPosition('top');
this._tooltipController.setShouldShow((target) => !target.opened);

@@ -664,2 +665,6 @@

}
if (this.dataProvider) {
this.clearCache();
}
}

@@ -666,0 +671,0 @@

{
"$schema": "https://json.schemastore.org/web-types",
"name": "@vaadin/multi-select-combo-box",
"version": "23.3.0-alpha1",
"version": "23.3.0-alpha2",
"description-markup": "markdown",

@@ -659,6 +659,2 @@ "contributions": {

"description": "Fired when the `invalid` property changes."
},
{
"name": "selectedItems-changed",
"description": "Fired when the `selectedItems` property changes."
}

@@ -665,0 +661,0 @@ ]

{
"$schema": "https://json.schemastore.org/web-types",
"name": "@vaadin/multi-select-combo-box",
"version": "23.3.0-alpha1",
"version": "23.3.0-alpha2",
"description-markup": "markdown",

@@ -280,9 +280,2 @@ "framework": "lit",

}
},
{
"name": "@selectedItems-changed",
"description": "Fired when the `selectedItems` property changes.",
"value": {
"kind": "expression"
}
}

@@ -289,0 +282,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