@salesforcedevs/docs-components 1.20.13 → 1.20.14

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.20.13",
3
+ "version": "1.20.14",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -25,7 +25,7 @@
25
25
  "@types/lodash.orderby": "4.6.9",
26
26
  "@types/lodash.uniqby": "4.7.9"
27
27
  },
28
- "gitHead": "533981cf67f89f660ad584fa977baf14825f51a6",
28
+ "gitHead": "46333948bff1d98623a7c9eb06794d420851255d",
29
29
  "volta": {
30
30
  "node": "20.19.0",
31
31
  "yarn": "1.22.19"
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable @lwc/lwc/no-document-query */
2
- import { LightningElement, api } from "lwc";
2
+ import { LightningElement, api, track } from "lwc";
3
3
  import { closest } from "kagekiri";
4
4
  import { toJson } from "dxUtils/normalizers";
5
5
  import { highlightTerms } from "dxUtils/highlight";
@@ -81,10 +81,12 @@ export default class ContentLayout extends LightningElement {
81
81
  );
82
82
  }
83
83
 
84
+ @track
84
85
  protected _sidebarContent: unknown;
85
86
 
86
87
  protected _breadcrumbs = null;
87
88
 
89
+ @track
88
90
  protected _tocOptions!: Array<unknown>;
89
91
 
90
92
  protected tocOptionIdsSet = new Set();