bkui-vue 0.0.1-beta.197 → 0.0.1-beta.199
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 +1 -1
- package/dist/index.esm.js +10 -10
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/select/index.js +1 -1
- package/lib/select/select.css +2 -0
- package/lib/select/select.less +2 -0
- package/lib/select/select.variable.css +2 -0
- package/lib/table/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -15616,7 +15616,7 @@ var Component$j = defineComponent({
|
|
15616
15616
|
"value": item[this.idKey],
|
15617
15617
|
"label": item[this.displayKey]
|
15618
15618
|
}, null))
|
15619
|
-
}) : this.
|
15619
|
+
}) : this.filterList.map((item) => createVNode(BkOption, {
|
15620
15620
|
"value": item[this.idKey],
|
15621
15621
|
"label": item[this.displayKey]
|
15622
15622
|
}, null)), (_b = (_a = this.$slots).default) == null ? void 0 : _b.call(_a), this.scrollLoading && createVNode("li", {
|
@@ -18764,10 +18764,10 @@ var Component$e = defineComponent({
|
|
18764
18764
|
const tableBodyClass = computed(() => __spreadProps(__spreadValues({}, contentClass), {
|
18765
18765
|
"__is-empty": !pageData.length
|
18766
18766
|
}));
|
18767
|
-
const tableBodyContentClass = {
|
18767
|
+
const tableBodyContentClass = computed(() => ({
|
18768
18768
|
[resolveClassName("table-body-content")]: true,
|
18769
18769
|
"with-virtual-render": props2.virtualEnabled
|
18770
|
-
};
|
18770
|
+
}));
|
18771
18771
|
const resizeColumnClass = {
|
18772
18772
|
column_drag_line: true,
|
18773
18773
|
"offset-x": true
|
@@ -18779,10 +18779,10 @@ var Component$e = defineComponent({
|
|
18779
18779
|
"scroll-loading": true,
|
18780
18780
|
_bottom: true
|
18781
18781
|
};
|
18782
|
-
const fixedBottomBorder = {
|
18782
|
+
const fixedBottomBorder = computed(() => ({
|
18783
18783
|
[resolveClassName("fixed-bottom-border")]: true,
|
18784
18784
|
"_is-empty": !props2.data.length
|
18785
|
-
};
|
18785
|
+
}));
|
18786
18786
|
const columnGhostStyle = {
|
18787
18787
|
zIndex: -1,
|
18788
18788
|
width: 0,
|
@@ -18792,10 +18792,10 @@ var Component$e = defineComponent({
|
|
18792
18792
|
const {
|
18793
18793
|
renderScrollLoading
|
18794
18794
|
} = useScrollLoading(props2, ctx);
|
18795
|
-
const scrollClass = props2.virtualEnabled ? {} : {
|
18795
|
+
const scrollClass = computed(() => props2.virtualEnabled ? {} : {
|
18796
18796
|
scrollXName: "",
|
18797
18797
|
scrollYName: ""
|
18798
|
-
};
|
18798
|
+
});
|
18799
18799
|
return () => {
|
18800
18800
|
var _a, _b;
|
18801
18801
|
return createVNode("div", {
|
@@ -18813,8 +18813,8 @@ var Component$e = defineComponent({
|
|
18813
18813
|
"class": tableBodyClass.value,
|
18814
18814
|
"style": contentStyle,
|
18815
18815
|
"list": pageData
|
18816
|
-
}, scrollClass, {
|
18817
|
-
"contentClassName": tableBodyContentClass,
|
18816
|
+
}, scrollClass.value, {
|
18817
|
+
"contentClassName": tableBodyContentClass.value,
|
18818
18818
|
"onContentScroll": handleScrollChanged,
|
18819
18819
|
"throttleDelay": 0,
|
18820
18820
|
"scrollEvent": true,
|
@@ -18822,7 +18822,7 @@ var Component$e = defineComponent({
|
|
18822
18822
|
}), {
|
18823
18823
|
default: (scope) => tableRender.renderTableBodySchema(scope.data || props2.data),
|
18824
18824
|
afterSection: () => createVNode("div", {
|
18825
|
-
"class": fixedBottomBorder
|
18825
|
+
"class": fixedBottomBorder.value
|
18826
18826
|
}, null)
|
18827
18827
|
}),
|
18828
18828
|
createVNode("div", {
|