@livechat/design-system-react-components 2.27.1 → 2.27.2
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/dist/components/UserGuide/components/UserGuideBubbleStep/types.d.ts +8 -0
- package/dist/components/UserGuide/components/UserGuideStep/types.d.ts +8 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +2951 -3018
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/components/PromoBanner/PromoBanner.d.ts +0 -43
- package/dist/components/PromoBanner/index.d.ts +0 -1
|
@@ -29,4 +29,12 @@ export interface IUserGuideBubbleStepProps {
|
|
|
29
29
|
* Additional CSS class name to apply to the step container
|
|
30
30
|
*/
|
|
31
31
|
className?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Typing animation speed
|
|
34
|
+
*/
|
|
35
|
+
typingSpeed?: number;
|
|
36
|
+
/**
|
|
37
|
+
* Delay before typing starts
|
|
38
|
+
*/
|
|
39
|
+
typingDelay?: number;
|
|
32
40
|
}
|
|
@@ -51,4 +51,12 @@ export interface IUserGuideStepProps {
|
|
|
51
51
|
* Additional CSS class name to apply to the step container
|
|
52
52
|
*/
|
|
53
53
|
className?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Typing animation speed
|
|
56
|
+
*/
|
|
57
|
+
typingSpeed?: number;
|
|
58
|
+
/**
|
|
59
|
+
* Delay before typing starts
|
|
60
|
+
*/
|
|
61
|
+
typingDelay?: number;
|
|
54
62
|
}
|