bkui-vue 0.0.1-beta.357 → 0.0.1-beta.358
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +6 -2
- package/dist/index.umd.js +1 -1
- package/lib/dropdown/dropdown.d.ts +1 -0
- package/lib/dropdown/index.d.ts +3 -0
- package/lib/dropdown/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -29441,9 +29441,11 @@ var Dropdown = defineComponent({
|
|
29441
29441
|
emit("hide");
|
29442
29442
|
handleShowChagne(false);
|
29443
29443
|
};
|
29444
|
+
const popoverRef = ref(null);
|
29444
29445
|
return {
|
29445
29446
|
afterShow,
|
29446
|
-
afterHidden
|
29447
|
+
afterHidden,
|
29448
|
+
popoverRef
|
29447
29449
|
};
|
29448
29450
|
},
|
29449
29451
|
render() {
|
@@ -29461,7 +29463,9 @@ var Dropdown = defineComponent({
|
|
29461
29463
|
const popoverOptions = lodash.exports.merge(basePopoverOptions, this.popoverOptions);
|
29462
29464
|
return createVNode("div", {
|
29463
29465
|
"class": wrapperClasses
|
29464
|
-
}, [createVNode(BkPopover, mergeProps(
|
29466
|
+
}, [createVNode(BkPopover, mergeProps({
|
29467
|
+
"ref": "popoverRef"
|
29468
|
+
}, popoverOptions, {
|
29465
29469
|
"onAfterShow": this.afterShow,
|
29466
29470
|
"onAfterHidden": this.afterHidden
|
29467
29471
|
}), {
|