ahdjs 0.0.79 → 0.0.81

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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ahdjs",
3
- "version": "0.0.79",
3
+ "version": "0.0.81",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/types/index.d.ts",