bkui-vue 0.0.1-beta.371 → 0.0.1-beta.372

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.esm.js CHANGED
@@ -18518,8 +18518,7 @@ var Settings = defineComponent({
18518
18518
  }) : "";
18519
18519
  }
18520
18520
  });
18521
- var useFixedColumn = (props2, colgroups, hasScrollY) => {
18522
- const footHeight = computed(() => props2.pagination && props2.data.length ? LINE_HEIGHT : 0);
18521
+ var useFixedColumn = (_props, colgroups, hasScrollY) => {
18523
18522
  const resolveColumnClass = (column, scrollX, offsetRight) => ({
18524
18523
  column_fixed: !!column.fixed,
18525
18524
  column_fixed_left: column.fixed !== "right",
@@ -18577,7 +18576,7 @@ var useFixedColumn = (props2, colgroups, hasScrollY) => {
18577
18576
  };
18578
18577
  const resolveColumnStyle = (colPos) => ({
18579
18578
  width: `${resolveFixOffset[colPos](false)}px`,
18580
- bottom: `${footHeight.value}px`
18579
+ bottom: "0px"
18581
18580
  });
18582
18581
  const colPosExist = {
18583
18582
  left: false,
@@ -20004,7 +20003,7 @@ var Component$e = defineComponent({
20004
20003
  display: "none"
20005
20004
  };
20006
20005
  const footerStyle = computed(() => ({
20007
- "--footer-height": `${props2.paginationHeihgt}px`
20006
+ "--footer-height": hasFooter.value ? `${props2.paginationHeihgt}px` : "0"
20008
20007
  }));
20009
20008
  const {
20010
20009
  renderScrollLoading
@@ -20044,7 +20043,8 @@ var Component$e = defineComponent({
20044
20043
  }, null)
20045
20044
  }),
20046
20045
  createVNode("div", {
20047
- "class": fixedWrapperClass
20046
+ "class": fixedWrapperClass,
20047
+ "style": footerStyle.value
20048
20048
  }, [renderFixedColumns(reactiveSchema.scrollTranslateX, tableOffsetRight.value), createVNode("div", {
20049
20049
  "class": resizeColumnClass,
20050
20050
  "style": resizeColumnStyle.value