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.cjs.js +19 -19
- package/dist/index.esm.js +5 -5
- package/dist/index.umd.js +20 -20
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/loading/loading.css +1 -0
- package/lib/loading/loading.less +1 -0
- package/lib/loading/loading.variable.css +1 -0
- package/lib/table/index.js +1 -1
- package/lib/table/plugins/use-fixed-column.d.ts +1 -1
- package/lib/table/table.css +2 -1
- package/lib/table/table.less +2 -1
- package/lib/table/table.variable.css +2 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -18518,8 +18518,7 @@ var Settings = defineComponent({
|
|
18518
18518
|
}) : "";
|
18519
18519
|
}
|
18520
18520
|
});
|
18521
|
-
var useFixedColumn = (
|
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:
|
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
|