xv-webcomponents 1.10.4-qa.0 → 1.11.1-qa.0

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.
@@ -77759,6 +77759,8 @@ const XvDropdown = class {
77759
77759
  componentDidLoad() {
77760
77760
  this.openChangeHandle();
77761
77761
  this.multiple && this.multipleChangeHandle();
77762
+ if (this.defaultValue)
77763
+ this.value = this.defaultValue;
77762
77764
  }
77763
77765
  disconnectedCallback() {
77764
77766
  this.removeListeners();
@@ -150,6 +150,8 @@ export class XvDropdown {
150
150
  componentDidLoad() {
151
151
  this.openChangeHandle();
152
152
  this.multiple && this.multipleChangeHandle();
153
+ if (this.defaultValue)
154
+ this.value = this.defaultValue;
153
155
  }
154
156
  disconnectedCallback() {
155
157
  this.removeListeners();
@@ -77757,6 +77757,8 @@ const XvDropdown = class {
77757
77757
  componentDidLoad() {
77758
77758
  this.openChangeHandle();
77759
77759
  this.multiple && this.multipleChangeHandle();
77760
+ if (this.defaultValue)
77761
+ this.value = this.defaultValue;
77760
77762
  }
77761
77763
  disconnectedCallback() {
77762
77764
  this.removeListeners();