Files
EasyFlow/easyflow-ui-admin/packages/effects/common-ui/src/components/chat-timeline/index.ts
陈子默 1e6158be77 feat: 完善智能体图片聊天与会话恢复
- 增加私有图片上传、绑定、历史回显与生命周期清理

- 支持输入草稿恢复、图片交互和模型图片能力约束

- 修复旧脏会话幂等删除与前端会话恢复
2026-07-17 19:54:26 +08:00

33 lines
1.3 KiB
TypeScript

export { ChatTimelineBuilder } from './builder';
export { default as ChatErrorNotice } from './ChatErrorNotice.vue';
export { default as ChatKnowledgeCard } from './ChatKnowledgeCard.vue';
export { default as ChatImageAttachments } from './ChatImageAttachments.vue';
export { default as ChatMessageToolbar } from './ChatMessageToolbar.vue';
export { default as ChatTextBlock } from './ChatTextBlock.vue';
export { default as ChatTimeline } from './ChatTimeline.vue';
export { default as ChatTimelineItemView } from './ChatTimelineItem.vue';
export { default as ChatTimelineStatusRow } from './ChatTimelineStatusRow.vue';
export { default as ChatToolApprovalCard } from './ChatToolApprovalCard.vue';
export { default as ChatToolCard } from './ChatToolCard.vue';
export { default as ChatVariantNavigator } from './ChatVariantNavigator.vue';
export type {
ChatTimelineErrorItem,
ChatImageAttachment,
ChatImageLoader,
ChatTimelineItem,
ChatTimelineItemStatus,
ChatTimelineKnowledgeHit,
ChatTimelineKnowledgeItem,
ChatTimelineMessageItem,
ChatTimelineMessagePart,
ChatTimelineRole,
ChatTimelineThinkingStatus,
ChatTimelineStatusItem,
ChatTimelineStatusStatus,
ChatTimelineStatusTone,
ChatTimelineToolApprovalItem,
ChatTimelineToolApprovalPayload,
ChatTimelineToolItem,
ChatTimelineToolStatus,
} from './types';