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.cjs.js +19 -19
- package/dist/index.esm.js +20 -15
- 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/select/index.js +1 -1
- 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
@@ -15851,16 +15851,21 @@ var Component$j = defineComponent({
|
|
15851
15851
|
suffix: () => suffixIcon()
|
15852
15852
|
});
|
15853
15853
|
};
|
15854
|
-
const renderSelectTrigger = () =>
|
15855
|
-
|
15856
|
-
"
|
15857
|
-
|
15858
|
-
|
15859
|
-
|
15860
|
-
|
15861
|
-
|
15862
|
-
|
15863
|
-
|
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 = (
|
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:
|
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
|