ahdjs 0.0.213 → 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 +4 -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
|
|
@@ -154,6 +155,9 @@ export default class GuideChimp {
|
|
|
154
155
|
scrollToStepEl(el: any, behavior?: string, scrollPadding?: number): GuideChimp;
|
|
155
156
|
highlightStepEl(animation?: boolean): GuideChimp;
|
|
156
157
|
resetHighlightStepEl(): GuideChimp;
|
|
158
|
+
getHighlightStyleCss(): string;
|
|
159
|
+
updateHighlightVisualEl(): GuideChimp;
|
|
160
|
+
removeHighlightVisualEl(): GuideChimp;
|
|
157
161
|
setInteractionPosition(interactionEl: any): GuideChimp;
|
|
158
162
|
setControlPosition(controlEl: any): GuideChimp;
|
|
159
163
|
setTooltipPosition(tooltipEl: any, options?: {}): GuideChimp;
|