@voxket-ai/voxket-live 1.0.60 → 1.0.61
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/scoped-widget-wrapper.d.ts +0 -13
- package/dist/hooks/sdk/use-chat.d.ts +1 -1
- package/dist/index.cjs +95 -77
- package/dist/index.css +1 -0
- package/dist/index.js +10793 -10191
- package/package.json +6 -8
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
interface ScopedWidgetWrapperProps {
|
|
3
|
-
children: React.ReactNode;
|
|
4
|
-
className?: string;
|
|
5
|
-
theme?: 'dark' | 'light' | 'vox';
|
|
6
|
-
style?: React.CSSProperties;
|
|
7
|
-
}
|
|
8
|
-
/**
|
|
9
|
-
* ScopedWidgetWrapper ensures all Voxket styles are isolated within .voxket-widget-root
|
|
10
|
-
* This prevents CSS from leaking into the consumer's application
|
|
11
|
-
*/
|
|
12
|
-
export declare function ScopedWidgetWrapper({ children, className, theme, style }: ScopedWidgetWrapperProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
export default ScopedWidgetWrapper;
|
|
@@ -16,7 +16,7 @@ export declare function useVoxketChat(): {
|
|
|
16
16
|
*/
|
|
17
17
|
export declare function useVoxketChatInput(): {
|
|
18
18
|
value: string;
|
|
19
|
-
setValue:
|
|
19
|
+
setValue: import('react').Dispatch<import('react').SetStateAction<string>>;
|
|
20
20
|
send: () => Promise<void>;
|
|
21
21
|
handleKeyPress: (event: React.KeyboardEvent) => void;
|
|
22
22
|
isSending: boolean;
|