@livechat/design-system-react-components 2.28.0 → 2.29.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 +6 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +984 -963
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -97,4 +97,10 @@ 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;
|
|
100
106
|
}
|