gd-bs 6.6.67 → 6.6.69
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/build/bs.js +1 -0
- package/build/components/dropdown/index.js +3 -3
- package/build/icons/svgs/index.d.ts +4100 -0
- package/dist/gd-bs-icons.js +2 -0
- package/dist/gd-bs-icons.js.LICENSE.txt +9771 -0
- package/dist/gd-bs-icons.min.js +1 -0
- package/dist/gd-bs.d.ts +3268 -0
- package/dist/gd-bs.js +2 -0
- package/dist/gd-bs.js.LICENSE.txt +1403 -0
- package/dist/gd-bs.min.js +1 -0
- package/package.json +1 -1
- package/src/components/checkboxGroup/types.d.ts +7 -2
- package/src/components/dropdown/index.ts +3 -3
|
@@ -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 (
|
|
494
|
+
onChange: this.props.onChange ? function (selectedItems, allItems, ev) {
|
|
495
495
|
// Pass the current values
|
|
496
|
-
_this.props.onChange(
|
|
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++) {
|