@voxket-ai/voxket-live 1.0.61 → 1.0.62

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.
@@ -1,4 +1,4 @@
1
- import { ReactNode } from 'react';
1
+ import { ReactNode } from '../../../node_modules/react';
2
2
  export interface SessionContentProps {
3
3
  showChat?: boolean;
4
4
  showTranscriptions?: boolean;
@@ -1,4 +1,4 @@
1
- import { default as React } from 'react';
1
+ import { default as React } from '../../../node_modules/react';
2
2
  export interface SessionControlsProps {
3
3
  showMicrophoneControl?: boolean;
4
4
  showCameraControl?: boolean;
@@ -1,4 +1,4 @@
1
- import { default as React } from 'react';
1
+ import { default as React } from '../../../node_modules/react';
2
2
  export interface SessionFooterProps {
3
3
  showMetrics?: boolean;
4
4
  showParticipants?: boolean;
@@ -1,4 +1,4 @@
1
- import { default as React, ReactNode } from 'react';
1
+ import { default as React, ReactNode } from '../../../node_modules/react';
2
2
  export interface CompoundComponentContext {
3
3
  variant?: 'default' | 'minimal' | 'enterprise';
4
4
  size?: 'sm' | 'md' | 'lg';
@@ -1,4 +1,4 @@
1
- import { default as React, ReactNode } from 'react';
1
+ import { default as React, ReactNode } from '../../../node_modules/react';
2
2
  import { CompoundComponentProps } from './types';
3
3
  import { SessionConfig } from '../../types/core';
4
4
  export interface VoxketSessionProps extends CompoundComponentProps {
@@ -1,4 +1,4 @@
1
- import { RefObject } from 'react';
1
+ import { RefObject } from '../../../../node_modules/react';
2
2
  export declare function useAutoScroll(scrollContentContainerRef: RefObject<Element | null>): void;
3
3
  interface ChatProps extends React.HTMLAttributes<HTMLDivElement> {
4
4
  children?: React.ReactNode;
@@ -1,4 +1,4 @@
1
- import { default as React } from 'react';
1
+ import { default as React } from '../../node_modules/react';
2
2
  import { ThemeType } from '../styles';
3
3
  import { DisplayType } from './widget';
4
4
  interface SessionViewProps {
@@ -1,4 +1,3 @@
1
- import { default as React } from 'react';
2
1
  import { Room, RemoteParticipant, LocalParticipant, ConnectionState, Track } from 'livekit-client';
3
2
  import { VoxketEventEmitter } from './event-emitter';
4
3
  import { PluginManager } from '../plugins/plugin-system';
@@ -6,6 +5,7 @@ import { VoxketConfig, SessionConfig, VoxketSession, VoxketEvents, SessionState,
6
5
  import { VoxketInteractiveView, ViewPresentationMode, InteractiveUIState, RpcEvents } from '../types/rpc';
7
6
  import { WidgetTheme } from '../styles';
8
7
  import { DisplayType, PopupPosition } from '../components/widget';
8
+ import * as React from 'react';
9
9
  export interface RenderUIOptions {
10
10
  target?: string | HTMLElement;
11
11
  modality?: SessionModality[];
@@ -16,7 +16,7 @@ export declare function useVoxketChat(): {
16
16
  */
17
17
  export declare function useVoxketChatInput(): {
18
18
  value: string;
19
- setValue: import('react').Dispatch<import('react').SetStateAction<string>>;
19
+ setValue: React.Dispatch<React.SetStateAction<string>>;
20
20
  send: () => Promise<void>;
21
21
  handleKeyPress: (event: React.KeyboardEvent) => void;
22
22
  isSending: boolean;