jedison 1.12.1 → 1.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2817,7 +2817,12 @@ class InstanceMultiple extends Instance {
2817
2817
  this.activeInstance.setValue(value, false, initiator);
2818
2818
  }
2819
2819
  this.activeInstance.children.forEach((child) => child.register());
2820
- this.setValue(this.activeInstance.getValueRaw(), true, initiator);
2820
+ const newValue = this.activeInstance.getValueRaw();
2821
+ const valueWillChange = different(this.value, newValue);
2822
+ this.setValue(newValue, true, initiator);
2823
+ if (!valueWillChange) {
2824
+ this.emit("change", initiator);
2825
+ }
2821
2826
  }
2822
2827
  onSetValue() {
2823
2828
  if (different(this.activeInstance.getValueRaw(), this.value)) {