ahdjs 0.0.188 → 0.0.191
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/README.md +1 -1
- package/build/css/index.css +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/build/types/GuideChimp.d.ts +1 -0
- package/build/types/index.d.ts +3 -0
- package/build/types/utils/constants.d.ts +2 -0
- package/package.json +4 -1
|
@@ -147,6 +147,7 @@ export default class GuideChimp {
|
|
|
147
147
|
setInteractionPosition(interactionEl: any): GuideChimp;
|
|
148
148
|
setControlPosition(controlEl: any): GuideChimp;
|
|
149
149
|
setTooltipPosition(tooltipEl: any, options?: {}): GuideChimp;
|
|
150
|
+
_tooltipShowTimer: any;
|
|
150
151
|
startPreloader(): GuideChimp;
|
|
151
152
|
stopPreloader(): GuideChimp;
|
|
152
153
|
getDefaultTmplData(): {
|
package/build/types/index.d.ts
CHANGED
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
import GuideChimp from "./GuideChimp";
|
|
8
8
|
import "./index.scss";
|
|
9
9
|
declare class AHD extends GuideChimp {
|
|
10
|
+
private static _instances;
|
|
10
11
|
private _lastPageUrl;
|
|
11
12
|
private _lastRenderedIdentifier;
|
|
12
13
|
constructor(tour: any, options?: {});
|
|
14
|
+
stop(...args: any[]): void;
|
|
13
15
|
attachPlugins(): void;
|
|
14
16
|
initializeSiteMap(refetch: boolean): Promise<void>;
|
|
15
17
|
getHelpContent(url: string, refetch: boolean): Promise<any>;
|
|
@@ -26,6 +28,7 @@ declare class AHD extends GuideChimp {
|
|
|
26
28
|
fetchFaqs(slug: any): Promise<any>;
|
|
27
29
|
showPageBeacons(url: string): Promise<void>;
|
|
28
30
|
setBeacons(beacons: any): Promise<void>;
|
|
31
|
+
private resolveSlugPatternForUrl;
|
|
29
32
|
showHighlights(url: string, refetch: boolean): Promise<void>;
|
|
30
33
|
showPageHighlights(url: string, refetch: boolean, force?: boolean): Promise<void>;
|
|
31
34
|
clearCachedData(): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ahdjs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.191",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/types/index.d.ts",
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"author": "Ishaan Puniani <ishaan.puniani@gamil.com> (https://github.com/ishaan-puniani)",
|
|
24
24
|
"license": "MIT",
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
25
28
|
"bugs": {
|
|
26
29
|
"url": "/issues"
|
|
27
30
|
},
|