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

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
@@ -15851,16 +15851,21 @@ var Component$j = defineComponent({
15851
15851
  suffix: () => suffixIcon()
15852
15852
  });
15853
15853
  };
15854
- const renderSelectTrigger = () => createVNode("div", {
15855
- "class": resolveClassName("select-trigger"),
15856
- "style": {
15857
- height: this.autoHeight && this.collapseTags ? "32px" : ""
15858
- },
15859
- "ref": "triggerRef",
15860
- "onClick": this.handleTogglePopover,
15861
- "onMouseenter": this.setHover,
15862
- "onMouseleave": this.cancelHover
15863
- }, [renderTriggerInput()]);
15854
+ const renderSelectTrigger = () => {
15855
+ var _a, _b;
15856
+ return createVNode("div", {
15857
+ "class": resolveClassName("select-trigger"),
15858
+ "style": {
15859
+ height: this.autoHeight && this.collapseTags ? "32px" : ""
15860
+ },
15861
+ "ref": "triggerRef",
15862
+ "onClick": this.handleTogglePopover,
15863
+ "onMouseenter": this.setHover,
15864
+ "onMouseleave": this.cancelHover
15865
+ }, [((_b = (_a = this.$slots).trigger) == null ? void 0 : _b.call(_a, {
15866
+ selected: this.selected
15867
+ })) || renderTriggerInput()]);
15868
+ };
15864
15869
  const renderSelectContent = () => {
15865
15870
  var _a, _b;
15866
15871
  return createVNode("div", {
@@ -18518,8 +18523,7 @@ var Settings = defineComponent({
18518
18523
  }) : "";
18519
18524
  }
18520
18525
  });
18521
- var useFixedColumn = (props2, colgroups, hasScrollY) => {
18522
- const footHeight = computed(() => props2.pagination && props2.data.length ? LINE_HEIGHT : 0);
18526
+ var useFixedColumn = (_props, colgroups, hasScrollY) => {
18523
18527
  const resolveColumnClass = (column, scrollX, offsetRight) => ({
18524
18528
  column_fixed: !!column.fixed,
18525
18529
  column_fixed_left: column.fixed !== "right",
@@ -18577,7 +18581,7 @@ var useFixedColumn = (props2, colgroups, hasScrollY) => {
18577
18581
  };
18578
18582
  const resolveColumnStyle = (colPos) => ({
18579
18583
  width: `${resolveFixOffset[colPos](false)}px`,
18580
- bottom: `${footHeight.value}px`
18584
+ bottom: "0px"
18581
18585
  });
18582
18586
  const colPosExist = {
18583
18587
  left: false,
@@ -20004,7 +20008,7 @@ var Component$e = defineComponent({
20004
20008
  display: "none"
20005
20009
  };
20006
20010
  const footerStyle = computed(() => ({
20007
- "--footer-height": `${props2.paginationHeihgt}px`
20011
+ "--footer-height": hasFooter.value ? `${props2.paginationHeihgt}px` : "0"
20008
20012
  }));
20009
20013
  const {
20010
20014
  renderScrollLoading
@@ -20044,7 +20048,8 @@ var Component$e = defineComponent({
20044
20048
  }, null)
20045
20049
  }),
20046
20050
  createVNode("div", {
20047
- "class": fixedWrapperClass
20051
+ "class": fixedWrapperClass,
20052
+ "style": footerStyle.value
20048
20053
  }, [renderFixedColumns(reactiveSchema.scrollTranslateX, tableOffsetRight.value), createVNode("div", {
20049
20054
  "class": resizeColumnClass,
20050
20055
  "style": resizeColumnStyle.value