@salesforcedevs/dx-components 0.10.1-alpha.96 → 0.10.1-alpha.97

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/dx-components",
3
- "version": "0.10.1-alpha.96",
3
+ "version": "0.10.1-alpha.97",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -14,7 +14,7 @@
14
14
  "access": "public"
15
15
  },
16
16
  "dependencies": {
17
- "@coveo/headless": "^1.23.0",
17
+ "@coveo/headless": "^1.32.0",
18
18
  "@popperjs/core": "^2.9.1",
19
19
  "@sfdocs-internal/wires": "^0.6.3",
20
20
  "classnames": "^2.2.6",
@@ -1,28 +1,7 @@
1
1
  import { html } from "lit-html";
2
+ import { coveoXMLDocsConfig, coveoSFDocsConfig } from "../../utils/coveo/coveo";
2
3
  import { SAMPLE_TREES, SAMPLE_TREES_WITH_METHODS } from "./__tests__/mockProps";
3
4
 
4
- const coveoXMLDocsConfig = {
5
- coveoOrganizationId: "coveosalesforcetestakshatha",
6
- coveoPublicAccessToken: "xxfeb39525-e402-4e41-a870-7132441f7875",
7
- coveoSearchHub: "Developer_Docs_SS",
8
- coveoAdvancedQueryConfig: JSON.stringify({
9
- objecttype: "HTDeveloperDocumentsC",
10
- sflanguage: "en_US",
11
- sfrelease__c: "232.0",
12
- sfdelivarable__c: "apexcode"
13
- })
14
- };
15
-
16
- const coveoSFDocsConfig = {
17
- coveoOrganizationId: "coveosalesforcetestakshatha",
18
- coveoPublicAccessToken: "xxfeb39525-e402-4e41-a870-7132441f7875",
19
- coveoSearchHub: "Developer_MdDocs_SS",
20
- coveoAdvancedQueryConfig: JSON.stringify({
21
- source: "Sitemap - Developer Docs",
22
- path_segment_3: "pardot"
23
- })
24
- };
25
-
26
5
  export default {
27
6
  title: "dx/dx-sidebar",
28
7
  component: "dx-sidebar",
@@ -191,7 +191,7 @@ export default class Sidebar extends LightningElement {
191
191
  (r) => r.selected
192
192
  );
193
193
  }
194
- this.isSearchLoading = e.detail.firstLoad;
194
+ this.isSearchLoading = e.detail;
195
195
  }
196
196
 
197
197
  private onSidebarSearchContentScroll() {