@salesforcedevs/docs-components 1.3.131 → 1.3.138-coveo-alpha

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.131",
3
+ "version": "1.3.138-coveo-alpha",
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": "b685c8d1d050c0fa402922a7435c43ec37a91a0c"
27
+ "gitHead": "4629fdd9ca18a13480044ad43515b91945d16aad"
28
28
  }
@@ -34,7 +34,6 @@ export default class AmfReference extends LightningElement {
34
34
  @api sidebarHeader!: string;
35
35
  @api coveoOrganizationId!: string;
36
36
  @api coveoPublicAccessToken!: string;
37
- @api coveoAdvancedQueryConfig!: string;
38
37
  @api coveoSearchHub!: string;
39
38
  @api useOldSidebar?: boolean = false;
40
39
  @api tocTitle?: string;
@@ -122,6 +121,21 @@ export default class AmfReference extends LightningElement {
122
121
  }
123
122
  }
124
123
 
124
+ private get coveoAdvancedQueryConfig(config: string): string {
125
+ try {
126
+ const coveoAgConfig = JSON.parse(config);
127
+ if(this.showVersionBanner) {
128
+ coveoAgConfig.version = this.getSelectedVersion();
129
+ } else {
130
+ coveoAgConfig.version = "latest";
131
+ }
132
+
133
+ return JSON.stringify(coveoAgConfig);
134
+ } catch (error) {
135
+ console.log(`Error during version implementation.`)
136
+ }
137
+ }
138
+
125
139
  @api
126
140
  get docPhaseInfo() {
127
141
  return this.selectedReferenceDocPhase;
@@ -214,13 +214,16 @@ export default class ContentLayout extends LightningElement {
214
214
 
215
215
  // sync with the browser to account for any reflows that may have happened
216
216
  requestAnimationFrame(() => {
217
+ // ternary is a temporary fix for the global nav height reporting incorrectly on some browsers
217
218
  const globalNavHeight =
218
- globalNavEl.offsetHeight + contextNavEl.offsetHeight;
219
- const docHeaderHeight = docHeaderEl.offsetHeight;
219
+ (globalNavEl.getBoundingClientRect().height !== 72 ? 0 : 72) +
220
+ contextNavEl.getBoundingClientRect().height;
221
+ const docHeaderHeight = docHeaderEl.getBoundingClientRect().height;
220
222
  sidebarEl.style.setProperty(
221
223
  "--dx-c-content-sidebar-sticky-top",
222
224
  `${globalNavHeight + docHeaderHeight}px`
223
225
  );
226
+
224
227
  docHeaderEl.style.setProperty(
225
228
  "--dx-g-global-header-height",
226
229
  `${globalNavHeight}px`
@@ -234,7 +237,7 @@ export default class ContentLayout extends LightningElement {
234
237
  window.innerWidth < 769
235
238
  ? globalNavHeight +
236
239
  docHeaderHeight +
237
- sidebarEl.offsetHeight
240
+ sidebarEl.getBoundingClientRect().height
238
241
  : globalNavHeight + docHeaderHeight
239
242
  }px`
240
243
  );
@@ -247,7 +250,7 @@ export default class ContentLayout extends LightningElement {
247
250
  docHeadingEl.style.scrollMarginTop = `${
248
251
  globalNavHeight +
249
252
  docHeaderHeight +
250
- docPhaseEl.offsetHeight
253
+ docPhaseEl.getBoundingClientRect().height
251
254
  }px`;
252
255
  });
253
256
 
@@ -259,7 +262,7 @@ export default class ContentLayout extends LightningElement {
259
262
  rightNavBarEl.style.top = `${
260
263
  globalNavHeight +
261
264
  docHeaderHeight +
262
- docPhaseEl.offsetHeight
265
+ docPhaseEl.getBoundingClientRect().height
263
266
  }px`;
264
267
  }
265
268
  }
package/LICENSE DELETED
@@ -1,12 +0,0 @@
1
- Copyright (c) 2020, Salesforce.com, Inc.
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
-
6
- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
-
8
- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9
-
10
- * Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
11
-
12
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.