teodor-new-chat-ui 4.3.264 → 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.
- package/dist/components/chat/MessageList.d.ts +1 -0
- package/dist/components/chat/TimelineColumn.d.ts +9 -0
- package/dist/index.esm.js +3282 -3242
- package/dist/index.umd.js +35 -35
- package/dist/types/models.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { TimelineCheckpoint } from "@/types/timeline";
|
|
2
|
+
export interface TimelineColumnProps {
|
|
3
|
+
timelineEntries: TimelineCheckpoint[];
|
|
4
|
+
activeCheckpointId?: string | null;
|
|
5
|
+
onSelectCheckpoint?: (checkpointId: string | null) => Promise<void> | void;
|
|
6
|
+
messagePreviews?: Map<string, string>;
|
|
7
|
+
}
|
|
8
|
+
export declare const TimelineColumn: ({ timelineEntries, activeCheckpointId, onSelectCheckpoint, messagePreviews, }: TimelineColumnProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
9
|
+
export default TimelineColumn;
|