ahdjs 0.0.97 → 0.0.99
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 +2 -0
- package/package.json +1 -1
|
@@ -49,6 +49,7 @@ export default class GuideChimp {
|
|
|
49
49
|
onNextStep: any;
|
|
50
50
|
onPrevStep: any;
|
|
51
51
|
onCloseStep: any;
|
|
52
|
+
onGotoStep: any;
|
|
52
53
|
};
|
|
53
54
|
/**
|
|
54
55
|
* Called after construction, this hook allows you to add some extra setup
|
|
@@ -59,6 +60,7 @@ export default class GuideChimp {
|
|
|
59
60
|
onNextStep(): void;
|
|
60
61
|
onPrevStep(): void;
|
|
61
62
|
onCloseStep(): void;
|
|
63
|
+
onGotoStep(index: any): void;
|
|
62
64
|
setDefaults(): GuideChimp;
|
|
63
65
|
previousStep: any;
|
|
64
66
|
currentStep: any;
|