gd-bs 6.6.67 → 6.6.68

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.
@@ -491,9 +491,9 @@ var _Dropdown = /** @class */ (function (_super) {
491
491
  items: this.generateCheckboxItems(),
492
492
  multi: this.props.multi,
493
493
  value: this.generateCheckboxValue(this.props.value),
494
- onChange: this.props.onChange ? function (values, ev) {
494
+ onChange: this.props.onChange ? function (selectedItems, allItems, ev) {
495
495
  // Pass the current values
496
- _this.props.onChange(_this.getValue(), ev);
496
+ _this.props.onChange(selectedItems, ev);
497
497
  } : null
498
498
  });
499
499
  }
@@ -552,7 +552,7 @@ var _Dropdown = /** @class */ (function (_super) {
552
552
  // See if the checkboxes exist
553
553
  if (this._cb) {
554
554
  // Get the values
555
- var items = this._cb.getValue();
555
+ var items = (this._cb.getValue().selectedItems);
556
556
  items = typeof (items["length"]) === "number" ? items : [items];
557
557
  // Parse the items
558
558
  for (var i = 0; i < items.length; i++) {