teodor-new-chat-ui 4.3.686 → 4.3.688

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,7 @@ export interface AssistantMessageComponentProps {
11
11
  toolConfig?: ToolConfig;
12
12
  customStyles?: {
13
13
  container?: string;
14
+ bubble?: string;
14
15
  content?: string;
15
16
  header?: string;
16
17
  actions?: string;
@@ -1,4 +1,4 @@
1
- import type { ChatMessage, MessagePart, TextPart, ImagePart, FilePart, ToolCallPart, InterruptPart } from "@/types";
1
+ import type { ChatMessage, MessagePart, TextPart, ImagePart, FilePart, InterruptPart } from "@/types";
2
2
  import type { HumanMessage, AIMessage, SystemMessage, ToolMessage } from "../types";
3
3
  export declare function isHumanMessage(msg: ChatMessage): msg is HumanMessage;
4
4
  export declare function isAIMessage(msg: ChatMessage): msg is AIMessage;
@@ -7,5 +7,4 @@ export declare function isToolMessage(msg: ChatMessage): msg is ToolMessage;
7
7
  export declare function isTextPart(part: MessagePart): part is TextPart;
8
8
  export declare function isImagePart(part: MessagePart): part is ImagePart;
9
9
  export declare function isFilePart(part: MessagePart): part is FilePart;
10
- export declare function isToolCallPart(part: MessagePart): part is ToolCallPart;
11
10
  export declare function isInterruptPart(part: MessagePart): part is InterruptPart;