@livechat/design-system-react-components 2.24.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.
@@ -15,7 +15,11 @@ export interface IChecklistItemProps {
15
15
  /**
16
16
  * Set the description of the item
17
17
  */
18
- description: string;
18
+ description?: string;
19
+ /**
20
+ * Set the custom content of the item
21
+ */
22
+ customContent?: React.ReactElement;
19
23
  /**
20
24
  * The element to display when the item is active
21
25
  */
@@ -4,6 +4,7 @@ import { DateRange } from 'react-day-picker';
4
4
  interface IRangeDatePickerV2LabelProps {
5
5
  tempDate?: DateRange;
6
6
  date?: DateRange;
7
+ selectedOptionName?: string;
7
8
  }
8
9
  export declare const RangeDatePickerV2Label: FC<IRangeDatePickerV2LabelProps>;
9
10
  export {};
@@ -1,14 +1,10 @@
1
- import { ReactElement, ReactNode } from 'react';
1
+ import { ReactNode } from 'react';
2
2
 
3
3
  export interface IUserGuideBubbleStepProps {
4
4
  /**
5
5
  * The message for the first bubble
6
6
  */
7
7
  headerMessage: string;
8
- /**
9
- * The optional icon for the first bubble
10
- */
11
- headerIcon?: ReactElement;
12
8
  /**
13
9
  * The message for the second bubble
14
10
  */
@@ -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
  */