gd-bs 6.9.0 → 6.9.1

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.
@@ -104,6 +104,11 @@ var _Dropdown = /** @class */ (function (_super) {
104
104
  }
105
105
  // Render the items
106
106
  this.renderItems();
107
+ // See if values were defined
108
+ if (this.props.value) {
109
+ // Set the values
110
+ this.setValue(this.props.value);
111
+ }
107
112
  // Set the menu element
108
113
  this._elMenu = this.el.querySelector(".dropdown-menu");
109
114
  if (this._elMenu) {