@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.
- package/dist/components/OnboardingChecklist/types.d.ts +5 -1
- package/dist/components/RangeDatePickerV2/components/RangeDatePickerV2Label.d.ts +1 -0
- package/dist/components/UserGuide/components/UserGuideBubbleStep/types.d.ts +1 -5
- package/dist/index.cjs +1 -1
- package/dist/index.js +1697 -1675
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -15,7 +15,11 @@ export interface IChecklistItemProps {
|
|
|
15
15
|
/**
|
|
16
16
|
* Set the description of the item
|
|
17
17
|
*/
|
|
18
|
-
description
|
|
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
|
*/
|
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
import {
|
|
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
|
*/
|