ahdjs 0.0.79 → 0.0.80
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/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 +11 -0
- package/package.json +1 -1
|
@@ -32,6 +32,15 @@ export default class GuideChimp {
|
|
|
32
32
|
* @return {boolean}
|
|
33
33
|
*/
|
|
34
34
|
static isFixed(el: any): boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Parse offset value"
|
|
37
|
+
* @param offset
|
|
38
|
+
* @return {{top: number, left: number}}
|
|
39
|
+
*/
|
|
40
|
+
static parseOffset(offset: any): {
|
|
41
|
+
top: number;
|
|
42
|
+
left: number;
|
|
43
|
+
};
|
|
35
44
|
/**
|
|
36
45
|
* GuideChimp constructor
|
|
37
46
|
* @param tour
|
|
@@ -162,12 +171,14 @@ export default class GuideChimp {
|
|
|
162
171
|
createFakeStepEl(data?: {}): Element;
|
|
163
172
|
mountFakeStepEl(data?: {}): any;
|
|
164
173
|
removeFakeStepEl(): GuideChimp;
|
|
174
|
+
mountOffsetFakeStepEl(data?: {}): any;
|
|
165
175
|
getPreloaderTmpl(): any;
|
|
166
176
|
createPreloaderEl(data?: {}): Element;
|
|
167
177
|
mountPreloaderEl(data?: {}): any;
|
|
168
178
|
removePreloaderEl(): GuideChimp;
|
|
169
179
|
getOverlayDocumentPath(): string;
|
|
170
180
|
getOverlayStepPath(step: any): string;
|
|
181
|
+
getOverlayOffsetPath(step: any): string;
|
|
171
182
|
getOverlayElPath(el: any): string;
|
|
172
183
|
getOverlayTmpl(): any;
|
|
173
184
|
createOverlayEl(data?: {}): Element;
|