@salesforcedevs/docs-components 1.20.18-redocly1 → 1.20.18-redocly3

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.20.18-redocly1",
3
+ "version": "1.20.18-redocly3",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -11,6 +11,8 @@ declare global {
11
11
  }
12
12
  }
13
13
 
14
+ declare const Sprig: (eventType: string, eventName: string) => void;
15
+
14
16
  type ReferenceItem = {
15
17
  source: string;
16
18
  href: string;
@@ -22,8 +24,7 @@ type ReferenceConfig = {
22
24
  refList: ReferenceItem[];
23
25
  };
24
26
 
25
- declare const Sprig: (eventType: string, eventName: string) => void;
26
- const SCROLL_THROTTLE_DELAY = 200;
27
+ const SCROLL_THROTTLE_DELAY = 50;
27
28
  const ELEMENT_TIMEOUT = 10000;
28
29
  const ELEMENT_CHECK_INTERVAL = 100;
29
30