bkui-vue 0.0.1-beta.351 → 0.0.1-beta.353

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
@@ -17219,6 +17219,13 @@ const resolveColumnWidth = (root, colgroups, autoWidth = COL_MIN_WIDTH, offsetWi
17219
17219
  } = colgroups[idx];
17220
17220
  avgWidth = avgWidth - calcWidth;
17221
17221
  });
17222
+ } else {
17223
+ avgColIndexList.forEach((idx) => {
17224
+ const calcWidth = getMinWidth(colgroups[idx], COL_MIN_WIDTH);
17225
+ Object.assign(colgroups[idx], {
17226
+ calcWidth
17227
+ });
17228
+ });
17222
17229
  }
17223
17230
  }
17224
17231
  };
@@ -20511,11 +20518,11 @@ var bkDivider = defineComponent({
20511
20518
  let slots;
20512
20519
  if (this.$slots.default) {
20513
20520
  slots = createVNode("div", {
20514
- "class": ["bk-divider-info", `bk-divider-info-${this.align}`]
20521
+ "class": [resolveClassName("divider-info"), resolveClassName(`divider-info-${this.align}`)]
20515
20522
  }, [this.$slots.default()]);
20516
20523
  }
20517
20524
  return createVNode("div", {
20518
- "class": ["bk-divider", `bk-divider-${this.direction}`],
20525
+ "class": [resolveClassName("divider"), resolveClassName(`divider-${this.direction}`)],
20519
20526
  "style": styles()
20520
20527
  }, [slots]);
20521
20528
  }