@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.
@@ -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
  }
@@ -1,4 +1,3 @@
1
1
  import { Agent } from './types';
2
2
 
3
3
  export declare const getSortedAgents: (agents: Agent[]) => Agent[];
4
- export declare const getAvailableAgentsTooltipText: (availableAgentsNumber: number) => string;
@@ -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
  }