@nextclaw/agent-chat-ui 0.3.2 → 0.3.3
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/index.d.ts +4 -0
- package/dist/index.js +1035 -950
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -244,12 +244,16 @@ type ChatMessageViewModel = {
|
|
|
244
244
|
parts: ChatMessagePartViewModel[];
|
|
245
245
|
status?: string;
|
|
246
246
|
};
|
|
247
|
+
type ChatAttachmentCategory = "archive" | "audio" | "code" | "data" | "document" | "generic" | "image" | "pdf" | "sheet" | "video";
|
|
247
248
|
type ChatMessageTexts = {
|
|
248
249
|
copyCodeLabel: string;
|
|
249
250
|
copiedCodeLabel: string;
|
|
250
251
|
copyMessageLabel: string;
|
|
251
252
|
copiedMessageLabel: string;
|
|
252
253
|
typingLabel: string;
|
|
254
|
+
attachmentOpenLabel?: string;
|
|
255
|
+
attachmentAttachedLabel?: string;
|
|
256
|
+
attachmentCategoryLabels?: Partial<Record<ChatAttachmentCategory, string>>;
|
|
253
257
|
};
|
|
254
258
|
type ChatMessageListProps = {
|
|
255
259
|
messages: ChatMessageViewModel[];
|