@factorialco/f0-react 1.347.0 → 1.348.0

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/f0.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import { AgentState } from '@livekit/components-react';
1
2
  import { AIMessage } from '@copilotkit/shared';
2
3
  import { AlertTagCellValue } from '../../value-display/types/alertTag';
3
4
  import { AlertTagCellValue as AlertTagCellValue_2 } from './types/alertTag';
@@ -62,6 +63,7 @@ import { internalAvatarTypes as internalAvatarTypes_2 } from '../../../ui/Avatar
62
63
  import { JSX as JSX_2 } from 'react';
63
64
  import { LineChartConfig } from '../../ui/chart';
64
65
  import { LineChartPropsBase } from './utils/types';
66
+ import { LocalAudioTrack } from 'livekit-client';
65
67
  import { LongTextCellValue } from './types/longText';
66
68
  import { Message } from '@copilotkit/shared';
67
69
  import { MessagesProps } from '@copilotkit/react-ui';
@@ -84,6 +86,7 @@ import { ReactElement } from 'react';
84
86
  import { ReactNode } from 'react';
85
87
  import { RefAttributes } from 'react';
86
88
  import { RefObject } from 'react';
89
+ import { RemoteAudioTrack } from 'livekit-client';
87
90
  import { SearchFilterOptions } from './SearchFilter/SearchFilter';
88
91
  import { StatusCellValue } from '../../value-display/types/status';
89
92
  import { StatusCellValue as StatusCellValue_2 } from './types/status';
@@ -98,6 +101,7 @@ import { TeamCellValue } from '../../value-display/types/team';
98
101
  import { TeamCellValue as TeamCellValue_2 } from './types/team';
99
102
  import { TextCellValue } from '../../value-display/types/text';
100
103
  import { TextCellValue as TextCellValue_2 } from './types/text';
104
+ import { TrackReferenceOrPlaceholder } from '@livekit/components-react';
101
105
  import { ValueDisplayRendererContext } from '../../value-display';
102
106
  import { VariantProps } from 'cva';
103
107
 
@@ -255,6 +259,8 @@ declare type ActionVariant = (typeof actionVariants)[number];
255
259
 
256
260
  declare const actionVariants: readonly ["default", "outline", "critical", "neutral", "ghost", "promote", "outlinePromote", "ai", "link", "unstyled", "mention"];
257
261
 
262
+ /* Excluded from this release type: AgentState */
263
+
258
264
  /**
259
265
  * Props for the AiChatProvider component
260
266
  */
@@ -2438,6 +2444,28 @@ export declare interface F0AlertProps {
2438
2444
  variant: AlertVariant;
2439
2445
  }
2440
2446
 
2447
+ export declare function F0AuraVoiceAnimation({ size, state, color, colorShift, audioTrack, themeMode, className, ref, ...props }: F0AuraVoiceAnimationProps & ComponentProps<"div"> & VariantProps<typeof F0AuraVoiceAnimationVariants>): JSX_2.Element;
2448
+
2449
+ export declare interface F0AuraVoiceAnimationProps {
2450
+ className?: string;
2451
+ size?: "icon" | "sm" | "md" | "lg" | "xl";
2452
+ state?: AgentState;
2453
+ color?: string;
2454
+ colorShift?: number;
2455
+ themeMode?: "dark" | "light";
2456
+ audioTrack?: LocalAudioTrack | RemoteAudioTrack | TrackReferenceOrPlaceholder;
2457
+ }
2458
+
2459
+ declare const F0AuraVoiceAnimationVariants: (props?: ({
2460
+ size?: "lg" | "md" | "sm" | "icon" | "xl" | undefined;
2461
+ } & ({
2462
+ class?: ClassValue;
2463
+ className?: never;
2464
+ } | {
2465
+ class?: never;
2466
+ className?: ClassValue;
2467
+ })) | undefined) => string;
2468
+
2441
2469
  export declare const F0Avatar: ({ avatar, size }: AvatarProps) => ReactNode;
2442
2470
 
2443
2471
  export declare const F0AvatarAlert: ({ type, size, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, }: AlertAvatarProps) => JSX_2.Element;