@livechat/design-system-react-components 2.29.0 → 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 +4 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1052 -1051
- package/package.json +2 -2
|
@@ -103,4 +103,8 @@ export interface IOnboardingChecklistProps {
|
|
|
103
103
|
* Incomplete checklist is always open.
|
|
104
104
|
*/
|
|
105
105
|
isInitiallyOpen?: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Callback function when the open state of the checklist changes
|
|
108
|
+
*/
|
|
109
|
+
onOpenChange?: (isOpen: boolean) => void;
|
|
106
110
|
}
|