@ant-design/agentic-ui 2.29.27 → 2.29.29
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/Bubble/UserBubble.js +7 -7
- package/dist/Bubble/schema-editor/SchemaEditorBridgeManager.d.ts +4 -0
- package/dist/Bubble/schema-editor/SchemaEditorBridgeManager.js +9 -0
- package/dist/MarkdownEditor/BaseMarkdownEditor.js +29 -4
- package/dist/MarkdownEditor/editor/Editor.js +2 -2
- package/dist/MarkdownEditor/editor/elements/index.js +9 -0
- package/dist/MarkdownEditor/editor/plugins/useHighlight.d.ts +1 -1
- package/dist/MarkdownEditor/editor/plugins/useHighlight.js +25 -1
- package/dist/MarkdownEditor/editor/plugins/useKeyboard.js +30 -2
- package/dist/MarkdownEditor/editor/store.d.ts +12 -0
- package/dist/MarkdownEditor/editor/store.js +7 -1
- package/dist/MarkdownEditor/editor/style.js +10 -0
- package/dist/MarkdownEditor/editor/tools/JinjaTemplatePanel/index.d.ts +2 -0
- package/dist/MarkdownEditor/editor/tools/JinjaTemplatePanel/index.js +327 -0
- package/dist/MarkdownEditor/editor/tools/JinjaTemplatePanel/style.d.ts +9 -0
- package/dist/MarkdownEditor/editor/tools/JinjaTemplatePanel/style.js +131 -0
- package/dist/MarkdownEditor/editor/tools/JinjaTemplatePanel/templates.d.ts +5 -0
- package/dist/MarkdownEditor/editor/tools/JinjaTemplatePanel/templates.js +28 -0
- package/dist/MarkdownEditor/editor/utils/media.js +4 -4
- package/dist/MarkdownEditor/el.d.ts +3 -0
- package/dist/MarkdownEditor/plugin.d.ts +5 -0
- package/dist/MarkdownEditor/plugins/jinja.d.ts +21 -0
- package/dist/MarkdownEditor/plugins/jinja.js +70 -0
- package/dist/MarkdownEditor/types.d.ts +38 -1
- package/dist/MarkdownInputField/AttachmentButton/AttachmentFileList/AttachmentFileIcon.js +182 -3
- package/dist/MarkdownInputField/AttachmentButton/utils.d.ts +12 -0
- package/dist/MarkdownInputField/AttachmentButton/utils.js +42 -0
- package/dist/MarkdownInputField/FileMapView/index.js +111 -15
- package/dist/MarkdownInputField/FileMapView/style.js +45 -0
- package/dist/TaskList/index.d.ts +1 -1
- package/dist/ThoughtChainList/CostMillis.d.ts +15 -0
- package/dist/ThoughtChainList/CostMillis.js +1 -1
- package/dist/index.d.ts +16 -15
- package/dist/index.js +16 -15
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
export * from "./Types";
|
|
12
12
|
// ─── 布局组件 ────────────────────────────────────────────────────────────────
|
|
13
13
|
export * from "./AgenticLayout";
|
|
14
|
-
export { default as Workspace } from "./Workspace";
|
|
15
14
|
export * from "./Workspace";
|
|
15
|
+
export { default as Workspace } from "./Workspace";
|
|
16
16
|
export * from "./Workspace/types";
|
|
17
17
|
// ─── 聊天气泡 ────────────────────────────────────────────────────────────────
|
|
18
18
|
export * from "./Bubble";
|
|
19
19
|
export * from "./Bubble/List";
|
|
20
|
+
export * from "./Bubble/MessagesContent/VoiceButton/types";
|
|
20
21
|
export * from "./Bubble/type";
|
|
21
22
|
export * from "./Bubble/types/DocInfo";
|
|
22
|
-
export * from "./Bubble/MessagesContent/VoiceButton/types";
|
|
23
23
|
// ─── 聊天启动页 ──────────────────────────────────────────────────────────────
|
|
24
24
|
export * from "./ChatBootPage";
|
|
25
25
|
export * from "./ChatLayout";
|
|
@@ -38,10 +38,11 @@ export * from "./History/types/HistoryData";
|
|
|
38
38
|
export * from "./History/types/HistoryList";
|
|
39
39
|
// ─── Markdown 编辑器 ─────────────────────────────────────────────────────────
|
|
40
40
|
export * from "./MarkdownEditor";
|
|
41
|
-
export * from "./MarkdownEditor/types";
|
|
42
41
|
export * from "./MarkdownEditor/el";
|
|
43
|
-
export * from "./MarkdownEditor/plugin";
|
|
44
42
|
export { useSelStatus } from "./MarkdownEditor/hooks/editor";
|
|
43
|
+
export * from "./MarkdownEditor/plugin";
|
|
44
|
+
export { createJinjaPlugin, jinjaPlugin } from "./MarkdownEditor/plugins/jinja";
|
|
45
|
+
export * from "./MarkdownEditor/types";
|
|
45
46
|
// MarkdownEditor 内部工具(保持向后兼容,后续版本考虑收敛)
|
|
46
47
|
export * from "./MarkdownEditor/editor/components/index";
|
|
47
48
|
export * from "./MarkdownEditor/editor/elements/Table/Table";
|
|
@@ -52,49 +53,49 @@ export * from "./MarkdownEditor/editor/parser/parserSlateNodeToMarkdown";
|
|
|
52
53
|
export * from "./MarkdownEditor/editor/store";
|
|
53
54
|
export * from "./MarkdownEditor/editor/utils";
|
|
54
55
|
export * from "./MarkdownEditor/editor/utils/docx/index";
|
|
55
|
-
export * from "./MarkdownEditor/editor/utils/markdownToHtml";
|
|
56
56
|
export * from "./MarkdownEditor/editor/utils/htmlToMarkdown";
|
|
57
|
+
export * from "./MarkdownEditor/editor/utils/markdownToHtml";
|
|
57
58
|
export * from "./MarkdownEditor/utils/native-table/native-table-editor";
|
|
58
59
|
// ─── Markdown 输入框 ─────────────────────────────────────────────────────────
|
|
59
|
-
export * from "./MarkdownInputField/MarkdownInputField";
|
|
60
60
|
export * from "./MarkdownInputField/AttachmentButton";
|
|
61
|
-
export * from "./MarkdownInputField/AttachmentButton/types";
|
|
62
61
|
export * from "./MarkdownInputField/AttachmentButton/AttachmentFileList";
|
|
63
62
|
export * from "./MarkdownInputField/AttachmentButton/AttachmentFileList/AttachmentFileListItem";
|
|
63
|
+
export * from "./MarkdownInputField/AttachmentButton/types";
|
|
64
64
|
export * from "./MarkdownInputField/AttachmentButton/utils";
|
|
65
|
+
export { ActionItemContainer } from "./MarkdownInputField/BeforeToolContainer/BeforeToolContainer";
|
|
65
66
|
export * from "./MarkdownInputField/FileMapView";
|
|
67
|
+
export * from "./MarkdownInputField/MarkdownInputField";
|
|
66
68
|
export * from "./MarkdownInputField/VoiceInput";
|
|
67
|
-
export { ActionItemContainer } from "./MarkdownInputField/BeforeToolContainer/BeforeToolContainer";
|
|
68
69
|
// ─── Schema ──────────────────────────────────────────────────────────────────
|
|
69
70
|
export * from "./Schema";
|
|
70
|
-
export * from "./Schema/types";
|
|
71
71
|
export * from "./Schema/SchemaRenderer/templateEngine";
|
|
72
|
+
export * from "./Schema/types";
|
|
72
73
|
export * from "./Schema/validator";
|
|
73
74
|
// ─── 插件 ────────────────────────────────────────────────────────────────────
|
|
74
|
-
export * from "./Plugins/formatter";
|
|
75
75
|
export * from "./Plugins/chart";
|
|
76
|
-
export * from "./Plugins/mermaid";
|
|
77
76
|
export * from "./Plugins/code/components";
|
|
77
|
+
export * from "./Plugins/formatter";
|
|
78
|
+
export * from "./Plugins/mermaid";
|
|
78
79
|
// ─── 基础 UI 组件 ────────────────────────────────────────────────────────────
|
|
79
80
|
export * from "./AILabel";
|
|
80
81
|
export * from "./AnswerAlert";
|
|
81
82
|
export * from "./BackTo";
|
|
82
|
-
export * from "./WelcomeMessage";
|
|
83
83
|
export { default as Quote } from "./Quote";
|
|
84
|
+
export * from "./WelcomeMessage";
|
|
84
85
|
// ─── 通用子组件 ──────────────────────────────────────────────────────────────
|
|
85
86
|
export * from "./Components/ActionIconBox";
|
|
86
87
|
export { ActionItemBox } from "./Components/ActionItemBox";
|
|
87
88
|
export * from "./Components/Button";
|
|
89
|
+
export * from "./Components/GradientText";
|
|
88
90
|
export * from "./Components/LayoutHeader";
|
|
89
91
|
export * from "./Components/Loading";
|
|
90
92
|
export * from "./Components/lotties";
|
|
91
|
-
export * from "./Components/SuggestionList";
|
|
92
|
-
export * from "./Components/VisualList";
|
|
93
93
|
export * from "./Components/Robot";
|
|
94
94
|
export { default as Robot } from "./Components/Robot";
|
|
95
|
-
export * from "./Components/
|
|
95
|
+
export * from "./Components/SuggestionList";
|
|
96
96
|
export * from "./Components/TextAnimate";
|
|
97
97
|
export * from "./Components/TypingAnimation";
|
|
98
|
+
export * from "./Components/VisualList";
|
|
98
99
|
// ─── Hooks ───────────────────────────────────────────────────────────────────
|
|
99
100
|
export * from "./Hooks/useAutoScroll";
|
|
100
101
|
export { useLanguage } from "./Hooks/useLanguage";
|