@skippr/live-agent-sdk 0.30.0 → 0.32.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.
@@ -0,0 +1 @@
1
+ export declare function LauncherStatusPill(): import("react/jsx-runtime").JSX.Element | null;
@@ -14,7 +14,6 @@ interface LiveAgentBaseProps {
14
14
  hideHeader?: boolean;
15
15
  startSessionLabel?: string;
16
16
  autoFocusChat?: boolean;
17
- showAgentStateBanner?: boolean;
18
17
  children?: ReactNode;
19
18
  }
20
19
  export type LiveAgentProps = (LiveAgentBaseProps & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skippr/live-agent-sdk",
3
- "version": "0.30.0",
3
+ "version": "0.32.0",
4
4
  "type": "module",
5
5
  "main": "dist/esm/lib-exports.js",
6
6
  "module": "dist/esm/lib-exports.js",
@@ -1 +0,0 @@
1
- export declare function AgentStateBanner(): import("react/jsx-runtime").JSX.Element | null;
@@ -1,10 +0,0 @@
1
- import type { ReactNode } from 'react';
2
- type TooltipAlign = 'center' | 'start' | 'end';
3
- interface TooltipProps {
4
- label: string;
5
- children: ReactNode;
6
- position?: 'top' | 'bottom';
7
- align?: TooltipAlign;
8
- }
9
- export declare function Tooltip({ label, children, position, align }: TooltipProps): import("react/jsx-runtime").JSX.Element;
10
- export {};