@voxket-ai/voxket-live 1.0.60 → 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,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;
@@ -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[];