@salesforcedevs/docs-components 1.17.5-search-alpha1 → 1.17.5-search-alpha2
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
|
@@ -36,6 +36,7 @@ type NavigationItem = {
|
|
|
36
36
|
isExpanded: boolean;
|
|
37
37
|
children: ParsedMarkdownTopic[];
|
|
38
38
|
isChildrenLoading: boolean;
|
|
39
|
+
endpointNames?: string[];
|
|
39
40
|
};
|
|
40
41
|
|
|
41
42
|
export default class AmfReference extends LightningElement {
|
|
@@ -458,7 +459,8 @@ export default class AmfReference extends LightningElement {
|
|
|
458
459
|
amfConfig.isSelected ||
|
|
459
460
|
this.isExpandChildrenEnabled(amfConfig.id),
|
|
460
461
|
children: navItemChildren,
|
|
461
|
-
isChildrenLoading
|
|
462
|
+
isChildrenLoading,
|
|
463
|
+
endpointNames: amfConfig.endpointNames || []
|
|
462
464
|
};
|
|
463
465
|
this.parentReferenceUrls.push(amfConfig.href);
|
|
464
466
|
}
|