bkui-vue 0.0.1-beta.106 → 0.0.1-beta.107
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 +10 -10
- package/dist/index.esm.js +4 -5
- package/dist/index.umd.js +13 -13
- package/dist/style.css +1 -1
- package/lib/components.d.ts +51 -0
- package/lib/tab/index.js +1 -1
- package/lib/tab/tab.css +4 -0
- package/lib/tab/tab.less +5 -0
- package/lib/tab/tab.variable.css +4 -0
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -18496,7 +18496,7 @@ var TabNav = defineComponent({
|
|
18496
18496
|
}, null)]);
|
18497
18497
|
});
|
18498
18498
|
const renderSlot = () => {
|
18499
|
-
var _a, _b
|
18499
|
+
var _a, _b;
|
18500
18500
|
const list = [];
|
18501
18501
|
if (typeof this.$slots.add === "function") {
|
18502
18502
|
list.push((_b = (_a = this.$slots).add) == null ? void 0 : _b.call(_a, h$1));
|
@@ -18508,9 +18508,6 @@ var TabNav = defineComponent({
|
|
18508
18508
|
"height": 26
|
18509
18509
|
}, null)]));
|
18510
18510
|
}
|
18511
|
-
if (typeof this.$slots.setting === "function") {
|
18512
|
-
list.push((_d = (_c = this.$slots).setting) == null ? void 0 : _d.call(_c, h$1));
|
18513
|
-
}
|
18514
18511
|
if (list.length) {
|
18515
18512
|
return createVNode("div", {
|
18516
18513
|
"class": "bk-tab-header-operation"
|
@@ -18528,7 +18525,9 @@ var TabNav = defineComponent({
|
|
18528
18525
|
"class": "bk-tab-header"
|
18529
18526
|
}, [createVNode("div", {
|
18530
18527
|
"class": "bk-tab-header-nav"
|
18531
|
-
}, [renderNavs()]), renderSlot()
|
18528
|
+
}, [renderNavs()]), renderSlot(), typeof this.$slots.setting === "function" && createVNode("div", {
|
18529
|
+
"class": "bk-tab-header-setting"
|
18530
|
+
}, [this.$slots.setting()])]);
|
18532
18531
|
}
|
18533
18532
|
});
|
18534
18533
|
var Tab = defineComponent({
|