@apform-ui/core 1.10.8 → 1.10.9
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 +1406 -1322
- package/dist/apform-ui.umd.cjs +41 -41
- package/dist/components/Chat/ThinkingBlock/ThinkingBlock.vue.d.ts +14 -0
- package/dist/components/Chat/ThinkingBlock/doc.d.ts +3 -0
- package/dist/components/Chat/ThinkingBlock/index.d.ts +1 -0
- package/dist/docs/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/docs/index.ts +3 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
content: string;
|
|
3
|
+
title?: string;
|
|
4
|
+
/** 副标题徽章(如「表单专家」) */
|
|
5
|
+
badge?: string;
|
|
6
|
+
defaultCollapsed?: boolean;
|
|
7
|
+
statusLabel?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
10
|
+
title: string;
|
|
11
|
+
defaultCollapsed: boolean;
|
|
12
|
+
statusLabel: string;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ThinkingBlock } from './ThinkingBlock.vue';
|
package/dist/docs/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export { RunStatusBarDoc } from '../components/Chat/RunStatusBar/doc';
|
|
|
23
23
|
export { SessionSidebarDoc } from '../components/Chat/SessionSidebar/doc';
|
|
24
24
|
export { StreamStatusBannerDoc } from '../components/Chat/StreamStatusBanner/doc';
|
|
25
25
|
export { MentionInputDoc } from '../components/Chat/MentionInput/doc';
|
|
26
|
+
export { ThinkingBlockDoc } from '../components/Chat/ThinkingBlock/doc';
|
|
26
27
|
export { AttachmentPreviewModalDoc } from '../components/Chat/message/AttachmentPreviewModal.doc';
|
|
27
28
|
export { DocumentSummaryListDoc } from '../components/Chat/message/DocumentSummaryList.doc';
|
|
28
29
|
export { MessageAttachmentListDoc } from '../components/Chat/message/MessageAttachmentList.doc';
|
package/dist/index.d.ts
CHANGED
|
@@ -85,6 +85,7 @@ export { ConversationHeader } from './components/Chat/ConversationHeader';
|
|
|
85
85
|
export { PendingAttachmentChip } from './components/Chat/PendingAttachmentChip';
|
|
86
86
|
export { MentionInput } from './components/Chat/MentionInput';
|
|
87
87
|
export type { MentionTab, MentionResultItem, MentionChip, MentionSearchFn, } from './components/Chat/MentionInput';
|
|
88
|
+
export { ThinkingBlock } from './components/Chat/ThinkingBlock';
|
|
88
89
|
export { AssistantPicker } from './components/Chat/AssistantPicker';
|
|
89
90
|
export type { AssistantPickerItem } from './components/Chat/AssistantPicker';
|
|
90
91
|
export { ModelPicker } from './components/Chat/ModelPicker';
|
package/package.json
CHANGED
package/src/docs/index.ts
CHANGED
|
@@ -23,6 +23,7 @@ export { RunStatusBarDoc } from '../components/Chat/RunStatusBar/doc'
|
|
|
23
23
|
export { SessionSidebarDoc } from '../components/Chat/SessionSidebar/doc'
|
|
24
24
|
export { StreamStatusBannerDoc } from '../components/Chat/StreamStatusBanner/doc'
|
|
25
25
|
export { MentionInputDoc } from '../components/Chat/MentionInput/doc'
|
|
26
|
+
export { ThinkingBlockDoc } from '../components/Chat/ThinkingBlock/doc'
|
|
26
27
|
export { AttachmentPreviewModalDoc } from '../components/Chat/message/AttachmentPreviewModal.doc'
|
|
27
28
|
export { DocumentSummaryListDoc } from '../components/Chat/message/DocumentSummaryList.doc'
|
|
28
29
|
export { MessageAttachmentListDoc } from '../components/Chat/message/MessageAttachmentList.doc'
|
|
@@ -91,6 +92,7 @@ import { RunStatusBarDoc } from '../components/Chat/RunStatusBar/doc'
|
|
|
91
92
|
import { SessionSidebarDoc } from '../components/Chat/SessionSidebar/doc'
|
|
92
93
|
import { StreamStatusBannerDoc } from '../components/Chat/StreamStatusBanner/doc'
|
|
93
94
|
import { MentionInputDoc } from '../components/Chat/MentionInput/doc'
|
|
95
|
+
import { ThinkingBlockDoc } from '../components/Chat/ThinkingBlock/doc'
|
|
94
96
|
import { AttachmentPreviewModalDoc } from '../components/Chat/message/AttachmentPreviewModal.doc'
|
|
95
97
|
import { DocumentSummaryListDoc } from '../components/Chat/message/DocumentSummaryList.doc'
|
|
96
98
|
import { MessageAttachmentListDoc } from '../components/Chat/message/MessageAttachmentList.doc'
|
|
@@ -160,6 +162,7 @@ export const componentDocs: Record<string, ComponentDoc> = {
|
|
|
160
162
|
SessionSidebar: SessionSidebarDoc,
|
|
161
163
|
StreamStatusBanner: StreamStatusBannerDoc,
|
|
162
164
|
MentionInput: MentionInputDoc,
|
|
165
|
+
ThinkingBlock: ThinkingBlockDoc,
|
|
163
166
|
AttachmentPreviewModal: AttachmentPreviewModalDoc,
|
|
164
167
|
DocumentSummaryList: DocumentSummaryListDoc,
|
|
165
168
|
MessageAttachmentList: MessageAttachmentListDoc,
|