@salesforcedevs/docs-components 0.55.3 → 0.55.4
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": "0.55.
|
|
3
|
+
"version": "0.55.4",
|
|
4
4
|
"description": "Docs Lightning web components for DSC",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.js",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@types/lodash.orderby": "^4.6.7",
|
|
25
25
|
"@types/lodash.uniqby": "^4.7.7"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "445324f9e54fc1169769990ac3e5315f133a1ca0"
|
|
28
28
|
}
|
|
@@ -180,6 +180,16 @@ export default class DocXmlContent extends LightningElementWithState<{
|
|
|
180
180
|
return this.pageReference.deliverable;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
+
private get useOldSidebar(): boolean {
|
|
184
|
+
// Coveo is enabled and the version is greater than 51 (within the latest 3 versions)
|
|
185
|
+
// TODO: we need a better fix for version number check.
|
|
186
|
+
return !(
|
|
187
|
+
process.env.COVEO_ORGANIZATION_ID &&
|
|
188
|
+
process.env.COVEO_PUBLIC_ACCESS_TOKEN &&
|
|
189
|
+
parseInt(this.version.releaseVersion.replace("v", ""), 10) > 51
|
|
190
|
+
);
|
|
191
|
+
}
|
|
192
|
+
|
|
183
193
|
private get coveoAdvancedQueryConfig(): CoveoAdvancedQueryXMLConfig {
|
|
184
194
|
return {
|
|
185
195
|
// Temporary fix for empty results on apexref page
|