@salesforcedevs/docs-components 1.19.6-alpha4 → 1.19.6-alpha5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/docs-components",
3
- "version": "1.19.6-alpha4",
3
+ "version": "1.19.6-alpha5",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div class="content">
3
- <template lwc:if={showSidebar}>
3
+ <template lwc:if={showSidebar === 'true'}>
4
4
  <dx-sidebar-old
5
5
  class="is-sticky left-nav-bar"
6
6
  trees={sidebarContent}
@@ -40,10 +40,10 @@ export default class ContentLayout extends LightningElement {
40
40
  @api devCenter: any;
41
41
  @api brand: any;
42
42
  @api emptyStateMessage?: string;
43
- _showSidebar?: boolean = true;
43
+ _showSidebar = "true";
44
44
 
45
45
  @api
46
- set showSidebar(value: boolean | undefined) {
46
+ set showSidebar(value) {
47
47
  this._showSidebar = value;
48
48
  }
49
49