teodor-new-chat-ui 4.3.396 → 4.3.397

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.
@@ -13,8 +13,6 @@ export type { MessageComponentProps } from '../components/chat/MessageComponent'
13
13
  export { MessageList } from '../components/chat/MessageList';
14
14
  export type { MessageListProps } from '../components/chat/MessageList';
15
15
  export { ThreadManager } from '../components/chat/ThreadManager';
16
- export { TimelineColumn } from '../components/chat/TimelineColumn';
17
- export type { TimelineColumnProps } from '../components/chat/TimelineColumn';
18
16
  export { useMessagesReducer } from '@/context/reducers/MessageReducer';
19
17
  export { useStream as useChatStream } from '@/hooks/use-stream';
20
18
  export { ChatApi, chatApiClient } from '../api/chat-api';
@@ -1,5 +1,5 @@
1
1
  import type { StreamCommand } from "./events";
2
- import type { TimelineCheckpoint } from "@/hooks/useCheckpointSelectors";
2
+ import type { TimelineCheckpoint } from "@/hooks/checkpoints";
3
3
  export interface ChatRequest {
4
4
  threadId?: string | null;
5
5
  payload?: Record<string, unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "teodor-new-chat-ui",
3
- "version": "4.3.396",
3
+ "version": "4.3.397",
4
4
  "description": "React chat UI components with streaming support, tool calls, and modern design",
5
5
  "main": "dist/index.umd.js",
6
6
  "module": "dist/index.esm.js",
@@ -1,12 +0,0 @@
1
- import type { TimelineCheckpoint } from "@/hooks/useCheckpointSelectors";
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
- className?: string;
8
- onHoverStart?: () => void;
9
- onHoverEnd?: () => void;
10
- }
11
- export declare const TimelineColumn: ({ timelineEntries, activeCheckpointId, onSelectCheckpoint, messagePreviews, className, onHoverStart, onHoverEnd, }: TimelineColumnProps) => import("react/jsx-runtime").JSX.Element | null;
12
- export default TimelineColumn;