@livechat/design-system-react-components 2.25.0 → 2.26.0

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.
@@ -47,4 +47,8 @@ export interface IUserGuideStepProps {
47
47
  * The function to be called when the the skip button is clicked
48
48
  */
49
49
  handleCloseAction?: (ev: KeyboardEvent | MouseEvent) => void;
50
+ /**
51
+ * Additional CSS class name to apply to the step container
52
+ */
53
+ className?: string;
50
54
  }
@@ -1,4 +1,3 @@
1
- import { CSSProperties } from 'react';
2
1
  import { Placement } from '@floating-ui/react';
3
2
 
4
3
  export type CursorTiming = 'fast1' | 'fast2' | 'moderate1' | 'moderate2';
@@ -8,9 +7,9 @@ export interface IUserGuide {
8
7
  */
9
8
  className?: string;
10
9
  /**
11
- * The CSS properties for the highlighted element
10
+ * The class name for the highlighted element
12
11
  */
13
- elementStyles?: CSSProperties;
12
+ elementClassName?: string;
14
13
  /**
15
14
  * The position for the floating element which sets the cursor position
16
15
  */