gd-bs 6.6.7 → 6.6.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "6.6.7",
3
+ "version": "6.6.8",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -419,6 +419,7 @@ class _Dropdown extends Base<IDropdownProps> implements IDropdown {
419
419
  el: menu,
420
420
  items: cbItems,
421
421
  multi: this.props.multi,
422
+ value: this.props.value,
422
423
  onChange: this.props.onChange ? (values, ev) => {
423
424
  // Pass the current values
424
425
  this.props.onChange(this.getValue(), ev);