@voxket-ai/voxket-live 1.0.106 → 1.0.107
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/livekit/agent-control-bar/agent-control-bar.d.ts +0 -5
- package/dist/components/ui/button.d.ts +2 -2
- package/dist/components/welcome.d.ts +1 -3
- package/dist/index.cjs +37 -1139
- package/dist/index.js +11004 -12129
- package/dist/styles.d.ts +0 -18
- package/package.json +3 -5
- package/dist/style.css +0 -1
|
@@ -3,11 +3,6 @@ import { AppConfig } from '../../../lib/types';
|
|
|
3
3
|
import { UseAgentControlBarProps } from './hooks/use-agent-control-bar';
|
|
4
4
|
import { ThemeType } from '../../../styles';
|
|
5
5
|
import * as React from 'react';
|
|
6
|
-
declare module 'react' {
|
|
7
|
-
interface HTMLAttributes<T> {
|
|
8
|
-
inert?: boolean | '';
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
6
|
export interface AgentControlBarProps extends React.HTMLAttributes<HTMLDivElement>, UseAgentControlBarProps {
|
|
12
7
|
capabilities: Pick<AppConfig, 'suportsChatInput' | 'suportsVideoInput' | 'suportsScreenShare'>;
|
|
13
8
|
onChatOpenChange?: (open: boolean) => void;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
declare const buttonVariants: (props?: ({
|
|
4
|
-
variant?: "default" | "destructive" | "
|
|
5
|
-
size?: "default" | "
|
|
4
|
+
variant?: "default" | "destructive" | "link" | "outline" | "primary" | "secondary" | "ghost" | null | undefined;
|
|
5
|
+
size?: "default" | "icon" | "sm" | "lg" | null | undefined;
|
|
6
6
|
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
7
7
|
declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<'button'> & VariantProps<typeof buttonVariants> & {
|
|
8
8
|
asChild?: boolean;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ThemeType } from '../styles';
|
|
2
2
|
import { SessionModality } from '../types/core';
|
|
3
|
-
import { DisplayType } from './widget';
|
|
4
3
|
interface WelcomeProps {
|
|
5
4
|
disabled: boolean;
|
|
6
5
|
onStartCall: () => void;
|
|
@@ -16,7 +15,6 @@ interface WelcomeProps {
|
|
|
16
15
|
subTitle?: string;
|
|
17
16
|
theme?: ThemeType;
|
|
18
17
|
modalities?: SessionModality[];
|
|
19
|
-
displayType?: DisplayType;
|
|
20
18
|
}
|
|
21
|
-
export declare const Welcome: ({ disabled, onStartCall, onStartChat, onStartVideo, prompts, statusMessage, title, subTitle, theme, modalities,
|
|
19
|
+
export declare const Welcome: ({ disabled, onStartCall, onStartChat, onStartVideo, prompts, statusMessage, title, subTitle, theme, modalities, }: WelcomeProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
20
|
export {};
|