@salesforcedevs/docs-components 1.3.242-newdocux-alpha5 → 1.3.243-newdocux-alpha6

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.3.242-newdocux-alpha5",
3
+ "version": "1.3.243-newdocux-alpha6",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -1,4 +1,4 @@
1
- import { LightningElement, api } from "lwc";
1
+ import { LightningElement, api, track } from "lwc";
2
2
 
3
3
  import { AnalyticsPayload, OptionWithNested } from "typings/custom";
4
4
 
@@ -8,7 +8,7 @@ export default class VersionPicker extends LightningElement {
8
8
  @api analyticsEvent?: string;
9
9
  @api analyticsPayload?: AnalyticsPayload;
10
10
 
11
- private _versions!: OptionWithNested[];
11
+ @track private _versions!: OptionWithNested[];
12
12
  private _selectedVersion?: OptionWithNested;
13
13
  private _latestVersion: boolean = false;
14
14
  private _hideBadge: boolean = false;
@@ -66,7 +66,7 @@ export default class DocXmlContent extends LightningElementWithState<{
66
66
  }
67
67
 
68
68
  private availableLanguages: Array<DocLanguage> = [];
69
- private availableVersions: Array<DocVersion> = [];
69
+ @track private availableVersions: Array<DocVersion> = [];
70
70
  private contentProvider?: FetchContent;
71
71
  private docContent = "";
72
72
  private language?: DocLanguage | null = null;