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

svelte-select

Package Overview
Dependencies
Maintainers
1
Versions
196
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-select - npm Package Compare versions

Comparing version 1.5.4 to 1.5.5

3

CHANGELOG.md
# svelte-select changelog
## 1.5.5
* isMulti on:select bug fix
## 1.5.4

@@ -5,0 +8,0 @@

9

index.js

@@ -1233,7 +1233,12 @@ (function (global, factory) {

if (changed.selectedValue && current.selectedValue) {
if (!previous.selectedValue || current.selectedValue[current.optionIdentifier] != previous.selectedValue[current.optionIdentifier])
if (!current.isMulti && changed.selectedValue && current.selectedValue) {
if (!previous.selectedValue || JSON.stringify(current.selectedValue[current.optionIdentifier]) != JSON.stringify(previous.selectedValue[current.optionIdentifier])) {
this.fire('select', current.selectedValue);
}
}
if (current.isMulti && JSON.stringify(current.selectedValue) != JSON.stringify(previous.selectedValue)) {
this.fire('select', current.selectedValue);
}
if (changed.listOpen) {

@@ -1240,0 +1245,0 @@ if (current.listOpen) {

{
"name": "svelte-select",
"version": "1.5.4",
"version": "1.5.5",
"repository": "https://bob-bea-fre@github.com/bob-bea-fre/svelte-select.git",

@@ -5,0 +5,0 @@ "description": "A <Select> component for Svelte apps",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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