teodor-new-chat-ui 4.3.265 → 4.3.266

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.
@@ -38,6 +38,7 @@ export interface MessageListProps {
38
38
  activeCheckpointId?: string | null;
39
39
  onSelectCheckpoint?: (checkpointId: string | null) => Promise<void> | void;
40
40
  timelineCheckpoints?: TimelineCheckpoint[];
41
+ messagePreviews?: Map<string, string>;
41
42
  /** If true, creates a synthetic thinking message when isStreaming=true and no assistant message exists */
42
43
  createSyntheticThinkingMessage?: boolean;
43
44
  }
@@ -3,6 +3,7 @@ export interface TimelineColumnProps {
3
3
  timelineEntries: TimelineCheckpoint[];
4
4
  activeCheckpointId?: string | null;
5
5
  onSelectCheckpoint?: (checkpointId: string | null) => Promise<void> | void;
6
+ messagePreviews?: Map<string, string>;
6
7
  }
7
- export declare const TimelineColumn: ({ timelineEntries, activeCheckpointId, onSelectCheckpoint, }: TimelineColumnProps) => import("react/jsx-runtime").JSX.Element | null;
8
+ export declare const TimelineColumn: ({ timelineEntries, activeCheckpointId, onSelectCheckpoint, messagePreviews, }: TimelineColumnProps) => import("react/jsx-runtime").JSX.Element | null;
8
9
  export default TimelineColumn;