ahdjs 0.0.198 → 0.0.200
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 +8 -0
- package/package.json +1 -1
|
@@ -127,6 +127,9 @@ export default class GuideChimp {
|
|
|
127
127
|
previous(...args: any[]): Promise<boolean>;
|
|
128
128
|
next(...args: any[]): Promise<boolean>;
|
|
129
129
|
stop(...args: any[]): Promise<GuideChimp>;
|
|
130
|
+
_savedBodyOverflow: string;
|
|
131
|
+
_savedHtmlOverflow: string;
|
|
132
|
+
_savedRootOverflow: any;
|
|
130
133
|
getSteps(tour: any): any;
|
|
131
134
|
getDataSteps(tour: any): {
|
|
132
135
|
element: Element;
|
|
@@ -144,6 +147,11 @@ export default class GuideChimp {
|
|
|
144
147
|
getScrollableParentEl(el: any): any;
|
|
145
148
|
scrollParentsToEl(el: any, scrollPadding?: number): GuideChimp;
|
|
146
149
|
scrollTo(el: any, behavior?: string, scrollPadding?: number): GuideChimp;
|
|
150
|
+
_saveScrollState(): GuideChimp;
|
|
151
|
+
_lockScroll(): GuideChimp;
|
|
152
|
+
_unlockScroll(): GuideChimp;
|
|
153
|
+
_isHeaderOrFooterEl(el: any): boolean;
|
|
154
|
+
scrollToStepEl(el: any, behavior?: string, scrollPadding?: number): GuideChimp;
|
|
147
155
|
highlightStepEl(animation?: boolean): GuideChimp;
|
|
148
156
|
resetHighlightStepEl(): GuideChimp;
|
|
149
157
|
setInteractionPosition(interactionEl: any): GuideChimp;
|