@livechat/design-system-react-components 2.28.1 → 2.30.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 +10 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1122 -1118
- package/package.json +2 -2
|
@@ -97,4 +97,14 @@ export interface IOnboardingChecklistProps {
|
|
|
97
97
|
* Complete element which will be displayed when `isCompleted` is true
|
|
98
98
|
*/
|
|
99
99
|
completionMessageData: ICompletionMessageDataProps;
|
|
100
|
+
/**
|
|
101
|
+
* Controls whether the checklist is initially open
|
|
102
|
+
* Only applies when isCompleted is true.
|
|
103
|
+
* Incomplete checklist is always open.
|
|
104
|
+
*/
|
|
105
|
+
isInitiallyOpen?: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Callback function when the open state of the checklist changes
|
|
108
|
+
*/
|
|
109
|
+
onOpenChange?: (isOpen: boolean) => void;
|
|
100
110
|
}
|