@livechat/design-system-react-components 2.24.0 → 2.25.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
  */