bge-ui 1.5.1 → 1.5.2
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 +4 -1
- package/package.json +1 -1
- package/src/dialog/index.vue +5 -1
package/dist/index.js
CHANGED
|
@@ -8753,7 +8753,10 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
8753
8753
|
const children = DialogBody.value.children;
|
|
8754
8754
|
for (let i = 0; i < children.length; i++) {
|
|
8755
8755
|
const child = children[i];
|
|
8756
|
-
|
|
8756
|
+
const styles = window.getComputedStyle(child);
|
|
8757
|
+
const marginTop = parseFloat(styles.getPropertyValue("margin-top"));
|
|
8758
|
+
const marginBottom = parseFloat(styles.getPropertyValue("margin-bottom"));
|
|
8759
|
+
offsetHeight += child.offsetHeight + marginTop + marginBottom;
|
|
8757
8760
|
}
|
|
8758
8761
|
height.value = 48 + 64 + 16 + Number(offsetHeight);
|
|
8759
8762
|
}
|
package/package.json
CHANGED
package/src/dialog/index.vue
CHANGED
|
@@ -84,7 +84,11 @@ function updateHeight() {
|
|
|
84
84
|
const children = DialogBody.value.children
|
|
85
85
|
for (let i = 0; i < children.length; i++) {
|
|
86
86
|
const child = children[i]
|
|
87
|
-
|
|
87
|
+
// 从样式对象中获取顶部和底部的margin值
|
|
88
|
+
const styles = window.getComputedStyle(child)
|
|
89
|
+
const marginTop = parseFloat(styles.getPropertyValue('margin-top'));
|
|
90
|
+
const marginBottom = parseFloat(styles.getPropertyValue('margin-bottom'));
|
|
91
|
+
offsetHeight += child.offsetHeight + marginTop + marginBottom
|
|
88
92
|
}
|
|
89
93
|
height.value = 48 + 64 + 16 + Number(offsetHeight)
|
|
90
94
|
}
|