@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.
@@ -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
  }