ahdjs 0.0.214 → 0.0.215
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 +3 -0
- package/package.json +1 -1
|
@@ -31,6 +31,7 @@ export default class GuideChimp {
|
|
|
31
31
|
* @return {boolean}
|
|
32
32
|
*/
|
|
33
33
|
static isFixed(el: any): boolean;
|
|
34
|
+
static toHighlightFill(color: any, alphaPct: any): string;
|
|
34
35
|
/**
|
|
35
36
|
* GuideChimp constructor
|
|
36
37
|
* @param tour
|
|
@@ -155,6 +156,8 @@ export default class GuideChimp {
|
|
|
155
156
|
highlightStepEl(animation?: boolean): GuideChimp;
|
|
156
157
|
resetHighlightStepEl(): GuideChimp;
|
|
157
158
|
getHighlightStyleCss(): string;
|
|
159
|
+
updateHighlightVisualEl(): GuideChimp;
|
|
160
|
+
removeHighlightVisualEl(): GuideChimp;
|
|
158
161
|
setInteractionPosition(interactionEl: any): GuideChimp;
|
|
159
162
|
setControlPosition(controlEl: any): GuideChimp;
|
|
160
163
|
setTooltipPosition(tooltipEl: any, options?: {}): GuideChimp;
|