@salesforcedevs/docs-components 1.3.243-newdocux-alpha6 → 1.3.243-newdocux-alpha7
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
|
@@ -13,6 +13,10 @@ export default class VersionPicker extends LightningElement {
|
|
|
13
13
|
private _latestVersion: boolean = false;
|
|
14
14
|
private _hideBadge: boolean = false;
|
|
15
15
|
|
|
16
|
+
private onVersionChange(e: CustomEvent) {
|
|
17
|
+
this.dispatchEvent(new CustomEvent("change", { detail: e.detail }));
|
|
18
|
+
}
|
|
19
|
+
|
|
16
20
|
@api
|
|
17
21
|
get versions() {
|
|
18
22
|
return this._versions;
|