bkui-vue 2.0.2-beta.91 → 2.0.2-beta.92
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 +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +2 -2
- package/lib/index.js +1 -1
- package/lib/popover/index.js +2 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
package/lib/popover/index.js
CHANGED
|
@@ -4914,7 +4914,8 @@ var popContainerId = "id_".concat(esm_browser_v4());
|
|
|
4914
4914
|
var handleClickOutside = function handleClickOutside(e) {
|
|
4915
4915
|
var target = e.target;
|
|
4916
4916
|
if (isClickInside(target)) {
|
|
4917
|
-
|
|
4917
|
+
// 不要阻止默认行为,否则 checkbox 等表单元素无法正常工作
|
|
4918
|
+
// e.preventDefault();
|
|
4918
4919
|
e.stopPropagation();
|
|
4919
4920
|
e.stopImmediatePropagation();
|
|
4920
4921
|
return;
|