bkui-vue 0.0.1-beta.97 → 0.0.1-beta.98
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 +5 -1
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/lib/navigation/index.d.ts +20 -1
- package/lib/navigation/index.js +1 -1
- package/lib/navigation/navigation.css +0 -1
- package/lib/navigation/navigation.d.ts +9 -0
- package/lib/navigation/navigation.less +0 -1
- package/lib/navigation/navigation.variable.css +0 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -17398,6 +17398,10 @@ const NavigationProps = {
|
|
17398
17398
|
type: [Number, String],
|
17399
17399
|
default: 260
|
17400
17400
|
},
|
17401
|
+
showSideNavTitle: {
|
17402
|
+
type: Boolean,
|
17403
|
+
default: true
|
17404
|
+
},
|
17401
17405
|
sideTitle: {
|
17402
17406
|
type: String,
|
17403
17407
|
default: ""
|
@@ -17523,7 +17527,7 @@ var Component$8 = defineComponent({
|
|
17523
17527
|
width: !this.nav.hover ? `${this.navWidth}px` : `${this.hoverWidth}px`,
|
17524
17528
|
borderRight: this.navigationType !== "top-bottom" ? "none" : "1px solid #DCDEE5"
|
17525
17529
|
}
|
17526
|
-
}, [this.navigationType !== "top-bottom" && createVNode(NavigationTitle, {
|
17530
|
+
}, [this.navigationType !== "top-bottom" && this.showSideNavTitle && createVNode(NavigationTitle, {
|
17527
17531
|
"style": {
|
17528
17532
|
flexBasis: `${this.headHeight}px`
|
17529
17533
|
},
|