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.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
  },