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

multiselect-combo-box

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multiselect-combo-box - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

2

package.json

@@ -15,3 +15,3 @@ {

"name": "multiselect-combo-box",
"version": "2.3.0",
"version": "2.3.1",
"main": "multiselect-combo-box.js",

@@ -18,0 +18,0 @@ "directories": {

@@ -425,5 +425,17 @@ import {PolymerElement} from '@polymer/polymer/polymer-element.js';

this._comboBoxValueChanged(event, event.detail.item);
// When using a data provider, i.e. in the flow wrapper,
// we close the overlay after a selection is made and if
// a filter is present. This is to ensure that the overlay
// does not immediatelly re-open with the initial items page
if (this._hasDataProvider() && this.$.comboBox.filter) {
this.$.comboBox.close();
}
}
}
_hasDataProvider() {
return this.$.comboBox.dataProvider && typeof this.$.comboBox.dataProvider === 'function';
}
_setTemplateFromNodes(nodes) {

@@ -430,0 +442,0 @@ this._itemTemplate = nodes.filter(node => node.localName && node.localName === 'template')[0] || this._itemTemplate;

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