@livechat/design-system-react-components 2.3.2 → 2.4.1
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/AppFrame/components/SideNavigationGroup/types.d.ts +0 -4
- package/dist/components/InviteAgents/helpers.d.ts +0 -1
- package/dist/components/InviteAgents/types.d.ts +5 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +2564 -2531
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -25,8 +25,4 @@ export interface ISideNavigationGroupProps extends ComponentCoreProps {
|
|
|
25
25
|
* Specify whether the list should be open on the first render
|
|
26
26
|
*/
|
|
27
27
|
shouldOpenOnInit?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* Specify whether the list should be open if an item within the group is active
|
|
30
|
-
*/
|
|
31
|
-
shouldOpenOnActive?: boolean;
|
|
32
28
|
}
|
|
@@ -5,6 +5,7 @@ export interface Agent {
|
|
|
5
5
|
email: string;
|
|
6
6
|
status: 'available' | 'unavailable' | 'unknown';
|
|
7
7
|
avatar?: string;
|
|
8
|
+
isBot: boolean;
|
|
8
9
|
}
|
|
9
10
|
export interface InviteAgentsProps extends ComponentCoreProps {
|
|
10
11
|
/**
|
|
@@ -31,4 +32,8 @@ export interface InviteAgentsProps extends ComponentCoreProps {
|
|
|
31
32
|
* The function to call when the "Available" button is clicked
|
|
32
33
|
*/
|
|
33
34
|
onAvailableAgentsClick: () => void;
|
|
35
|
+
/**
|
|
36
|
+
* Whether to show bots in the tooltip
|
|
37
|
+
*/
|
|
38
|
+
showBotsInTooltip?: boolean;
|
|
34
39
|
}
|