bge-ui 1.6.3 → 1.6.4
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.js +2 -0
- package/package.json +1 -1
- package/src/dialog/index.vue +2 -0
package/dist/index.js
CHANGED
|
@@ -8767,6 +8767,8 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
8767
8767
|
height.value = 48 + 64 + 16 + Number(offsetHeight);
|
|
8768
8768
|
});
|
|
8769
8769
|
document.body.classList.add("ui-parent--hidden");
|
|
8770
|
+
} else {
|
|
8771
|
+
document.body.classList.remove("ui-parent--hidden");
|
|
8770
8772
|
}
|
|
8771
8773
|
}, {
|
|
8772
8774
|
immediate: true
|
package/package.json
CHANGED
package/src/dialog/index.vue
CHANGED
|
@@ -75,6 +75,8 @@ watch(() => [props.visible, props.resetState], ([value]) => {
|
|
|
75
75
|
height.value = 48 + 64 + 16 + Number(offsetHeight)
|
|
76
76
|
})
|
|
77
77
|
document.body.classList.add('ui-parent--hidden')
|
|
78
|
+
} else {
|
|
79
|
+
document.body.classList.remove('ui-parent--hidden')
|
|
78
80
|
}
|
|
79
81
|
}, {
|
|
80
82
|
immediate: true
|