@voxket-ai/voxket-live 1.0.154 → 1.0.156

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.
@@ -11,6 +11,10 @@ export interface CommonPopupTriggerProps {
11
11
  * Scale of the logo inside the circle (0 to 1). Default is 0.75 (75%).
12
12
  */
13
13
  logoScale?: number;
14
+ /**
15
+ * When true, show a subtle pulsing ring to indicate an active running session.
16
+ */
17
+ isRunning?: boolean;
14
18
  }
15
19
  /**
16
20
  * CommonPopupTrigger
@@ -1,3 +1,2 @@
1
- import { VideoTrack } from '@livekit/components-react';
2
1
  import * as React from 'react';
3
- export declare const VideoTile: ({ trackRef, className, ref, }: React.ComponentProps<typeof VideoTrack>) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const VideoTile: React.ForwardRefExoticComponent<Omit<import('@livekit/components-react').VideoTrackProps & React.RefAttributes<HTMLVideoElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;