@apform-ui/core 1.10.13 → 1.10.14
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/apform-ui.css +1 -1
- package/dist/apform-ui.js +2660 -2602
- package/dist/apform-ui.umd.cjs +53 -53
- package/dist/components/Chat/DocumentDetailSummaryCard/DocumentDetailSummaryCard.vue.d.ts +6 -0
- package/dist/components/Chat/DocumentDetailSummaryCard/doc.d.ts +3 -0
- package/dist/components/Chat/DocumentDetailSummaryCard/index.d.ts +2 -0
- package/dist/components/Chat/DocumentDetailSummaryCard/types.d.ts +18 -0
- package/dist/docs/index.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/docs/index.ts +3 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DocumentDetailSummaryItem } from './types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
item: DocumentDetailSummaryItem;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 结构化文档摘要(含要点与章节)
|
|
3
|
+
*/
|
|
4
|
+
export interface DocumentDetailSummaryBody {
|
|
5
|
+
title: string;
|
|
6
|
+
summary: string;
|
|
7
|
+
keyPoints: string[];
|
|
8
|
+
sections: Array<{
|
|
9
|
+
heading: string;
|
|
10
|
+
content: string;
|
|
11
|
+
}>;
|
|
12
|
+
}
|
|
13
|
+
/** DocumentDetailSummaryCard 入参 */
|
|
14
|
+
export interface DocumentDetailSummaryItem {
|
|
15
|
+
documentId?: string;
|
|
16
|
+
filename: string;
|
|
17
|
+
summary: DocumentDetailSummaryBody;
|
|
18
|
+
}
|
package/dist/docs/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export { TokenUsageCardDoc } from '../components/Chat/TokenUsageCard/doc';
|
|
|
34
34
|
export { QuestionnaireCardDoc } from '../components/Chat/QuestionnaireCard/doc';
|
|
35
35
|
export { ChecklistProposalCardDoc } from '../components/Chat/ChecklistProposalCard/doc';
|
|
36
36
|
export { RequirementAnalysisCardDoc } from '../components/Chat/RequirementAnalysisCard/doc';
|
|
37
|
+
export { DocumentDetailSummaryCardDoc } from '../components/Chat/DocumentDetailSummaryCard/doc';
|
|
37
38
|
export { AttachmentPreviewModalDoc } from '../components/Chat/message/AttachmentPreviewModal.doc';
|
|
38
39
|
export { DocumentSummaryListDoc } from '../components/Chat/message/DocumentSummaryList.doc';
|
|
39
40
|
export { MessageAttachmentListDoc } from '../components/Chat/message/MessageAttachmentList.doc';
|
package/dist/index.d.ts
CHANGED
|
@@ -102,6 +102,8 @@ export { ChecklistProposalCard } from './components/Chat/ChecklistProposalCard';
|
|
|
102
102
|
export type { ChecklistProposal, ChecklistProposalItem, ChecklistItemPriority, ChecklistItemKind, } from './components/Chat/ChecklistProposalCard';
|
|
103
103
|
export { RequirementAnalysisCard } from './components/Chat/RequirementAnalysisCard';
|
|
104
104
|
export type { RequirementAnalysis, RequirementConfirmQuestion, } from './components/Chat/RequirementAnalysisCard';
|
|
105
|
+
export { DocumentDetailSummaryCard } from './components/Chat/DocumentDetailSummaryCard';
|
|
106
|
+
export type { DocumentDetailSummaryItem, DocumentDetailSummaryBody, } from './components/Chat/DocumentDetailSummaryCard';
|
|
105
107
|
export { AssistantPicker } from './components/Chat/AssistantPicker';
|
|
106
108
|
export type { AssistantPickerItem } from './components/Chat/AssistantPicker';
|
|
107
109
|
export { ModelPicker } from './components/Chat/ModelPicker';
|
package/package.json
CHANGED
package/src/docs/index.ts
CHANGED
|
@@ -34,6 +34,7 @@ export { TokenUsageCardDoc } from '../components/Chat/TokenUsageCard/doc'
|
|
|
34
34
|
export { QuestionnaireCardDoc } from '../components/Chat/QuestionnaireCard/doc'
|
|
35
35
|
export { ChecklistProposalCardDoc } from '../components/Chat/ChecklistProposalCard/doc'
|
|
36
36
|
export { RequirementAnalysisCardDoc } from '../components/Chat/RequirementAnalysisCard/doc'
|
|
37
|
+
export { DocumentDetailSummaryCardDoc } from '../components/Chat/DocumentDetailSummaryCard/doc'
|
|
37
38
|
export { AttachmentPreviewModalDoc } from '../components/Chat/message/AttachmentPreviewModal.doc'
|
|
38
39
|
export { DocumentSummaryListDoc } from '../components/Chat/message/DocumentSummaryList.doc'
|
|
39
40
|
export { MessageAttachmentListDoc } from '../components/Chat/message/MessageAttachmentList.doc'
|
|
@@ -113,6 +114,7 @@ import { TokenUsageCardDoc } from '../components/Chat/TokenUsageCard/doc'
|
|
|
113
114
|
import { QuestionnaireCardDoc } from '../components/Chat/QuestionnaireCard/doc'
|
|
114
115
|
import { ChecklistProposalCardDoc } from '../components/Chat/ChecklistProposalCard/doc'
|
|
115
116
|
import { RequirementAnalysisCardDoc } from '../components/Chat/RequirementAnalysisCard/doc'
|
|
117
|
+
import { DocumentDetailSummaryCardDoc } from '../components/Chat/DocumentDetailSummaryCard/doc'
|
|
116
118
|
import { AttachmentPreviewModalDoc } from '../components/Chat/message/AttachmentPreviewModal.doc'
|
|
117
119
|
import { DocumentSummaryListDoc } from '../components/Chat/message/DocumentSummaryList.doc'
|
|
118
120
|
import { MessageAttachmentListDoc } from '../components/Chat/message/MessageAttachmentList.doc'
|
|
@@ -193,6 +195,7 @@ export const componentDocs: Record<string, ComponentDoc> = {
|
|
|
193
195
|
QuestionnaireCard: QuestionnaireCardDoc,
|
|
194
196
|
ChecklistProposalCard: ChecklistProposalCardDoc,
|
|
195
197
|
RequirementAnalysisCard: RequirementAnalysisCardDoc,
|
|
198
|
+
DocumentDetailSummaryCard: DocumentDetailSummaryCardDoc,
|
|
196
199
|
AttachmentPreviewModal: AttachmentPreviewModalDoc,
|
|
197
200
|
DocumentSummaryList: DocumentSummaryListDoc,
|
|
198
201
|
MessageAttachmentList: MessageAttachmentListDoc,
|