@bmx-labs/chat-widget 0.0.3 → 0.0.4
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.
@@ -6,5 +6,5 @@ interface ChatButtonProps {
|
|
6
6
|
rotateOnHover?: boolean;
|
7
7
|
forceHoverState?: boolean;
|
8
8
|
}
|
9
|
-
export declare
|
9
|
+
export declare const ChatButton: import("react").ForwardRefExoticComponent<ChatButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
10
10
|
export {};
|
@@ -7,5 +7,5 @@ interface ChatInputProps {
|
|
7
7
|
placeholder: string;
|
8
8
|
sending: boolean;
|
9
9
|
}
|
10
|
-
export declare
|
10
|
+
export declare const ChatInput: import("react").ForwardRefExoticComponent<ChatInputProps & import("react").RefAttributes<HTMLTextAreaElement>>;
|
11
11
|
export {};
|
@@ -21,5 +21,5 @@ interface ChatPanelProps {
|
|
21
21
|
onRotateOnHoverChange: (rotate: boolean) => void;
|
22
22
|
onSuggestionClick?: (suggestion: string) => void;
|
23
23
|
}
|
24
|
-
export declare
|
24
|
+
export declare const ChatPanel: import("react").ForwardRefExoticComponent<ChatPanelProps & import("react").RefAttributes<HTMLDivElement>>;
|
25
25
|
export {};
|
@@ -6,5 +6,5 @@ interface OrbButtonProps {
|
|
6
6
|
rotateOnHover?: boolean;
|
7
7
|
forceHoverState?: boolean;
|
8
8
|
}
|
9
|
-
export declare
|
9
|
+
export declare const OrbButton: import("react").ForwardRefExoticComponent<OrbButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
10
10
|
export {};
|