@dev-blinq/ui-systems 1.0.147 → 1.0.149
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.
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
handleJoyrideCallback: Callback;
|
|
4
|
-
showTour: boolean;
|
|
5
|
-
stepIndex?: number;
|
|
6
|
-
}
|
|
7
|
-
export declare function GuidedTour({ handleJoyrideCallback, showTour, ...rest }: GuidedTourProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
export {};
|
|
1
|
+
import { Props } from 'react-joyride';
|
|
2
|
+
export declare function GuidedTour(rest: Props): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Placement } from 'react-joyride';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const guideTourSteps: ({
|
|
3
3
|
target: string;
|
|
4
4
|
content: import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
disableBeacon: boolean;
|
|
@@ -7,6 +7,7 @@ export declare const steps: ({
|
|
|
7
7
|
placement?: undefined;
|
|
8
8
|
spotlightClicks?: undefined;
|
|
9
9
|
styles?: undefined;
|
|
10
|
+
spotlightPadding?: undefined;
|
|
10
11
|
} | {
|
|
11
12
|
target: string;
|
|
12
13
|
content: import("react/jsx-runtime").JSX.Element;
|
|
@@ -20,6 +21,7 @@ export declare const steps: ({
|
|
|
20
21
|
backgroundColor: string;
|
|
21
22
|
};
|
|
22
23
|
};
|
|
24
|
+
spotlightPadding?: undefined;
|
|
23
25
|
} | {
|
|
24
26
|
target: string;
|
|
25
27
|
content: import("react/jsx-runtime").JSX.Element;
|
|
@@ -28,4 +30,14 @@ export declare const steps: ({
|
|
|
28
30
|
placement: Placement;
|
|
29
31
|
spotlightClicks?: undefined;
|
|
30
32
|
styles?: undefined;
|
|
33
|
+
spotlightPadding?: undefined;
|
|
34
|
+
} | {
|
|
35
|
+
target: string;
|
|
36
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
title: string;
|
|
38
|
+
disableBeacon: boolean;
|
|
39
|
+
spotlightPadding: number;
|
|
40
|
+
placement: Placement;
|
|
41
|
+
spotlightClicks?: undefined;
|
|
42
|
+
styles?: undefined;
|
|
31
43
|
})[];
|