bkui-vue 0.0.1-beta.351 → 0.0.1-beta.352
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.cjs.js +27 -27
- package/dist/index.esm.js +9 -2
- package/dist/index.umd.js +24 -24
- package/lib/divider/index.js +1 -1
- package/lib/table/index.js +1 -1
- package/package.json +1 -1
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": ["
|
20521
|
+
"class": [resolveClassName("divider-info"), resolveClassName(`divider-info-${this.align}`)]
|
20515
20522
|
}, [this.$slots.default()]);
|
20516
20523
|
}
|
20517
20524
|
return createVNode("div", {
|
20518
|
-
"class": ["
|
20525
|
+
"class": [resolveClassName("divider"), resolveClassName(`divider-${this.direction}`)],
|
20519
20526
|
"style": styles()
|
20520
20527
|
}, [slots]);
|
20521
20528
|
}
|