@ant-design/agentic-ui 2.0.17 → 2.0.20
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/FileView.js +1 -1
- package/dist/Bubble/type.d.ts +2 -2
- package/dist/ChatBootPage/ButtonTabStyle.js +2 -2
- package/dist/ChatBootPage/CaseReply.d.ts +10 -2
- package/dist/ChatBootPage/CaseReply.js +20 -2
- package/dist/ChatBootPage/CaseReplyStyle.js +51 -9
- package/dist/Components/ActionIconBox/index.js +102 -46
- package/dist/Components/Button/ToggleButton/index.js +3 -3
- package/dist/Components/Button/ToggleButton/style.js +1 -1
- package/dist/Components/GradientText/index.d.ts +8 -0
- package/dist/Components/GradientText/index.js +32 -0
- package/dist/Components/GradientText/style.d.ts +5 -0
- package/dist/Components/GradientText/style.js +76 -0
- package/dist/Components/TextAnimate/index.d.ts +56 -0
- package/dist/Components/TextAnimate/index.js +388 -0
- package/dist/Components/TextAnimate/style.d.ts +5 -0
- package/dist/Components/TextAnimate/style.js +53 -0
- package/dist/Components/TypingAnimation/index.d.ts +19 -0
- package/dist/Components/TypingAnimation/index.js +182 -0
- package/dist/Components/TypingAnimation/style.d.ts +5 -0
- package/dist/Components/TypingAnimation/style.js +59 -0
- package/dist/Components/lotties/ShinyText/index.d.ts +69 -0
- package/dist/Components/lotties/ShinyText/index.js +60 -0
- package/dist/Components/lotties/ShinyText/style.d.ts +5 -0
- package/dist/Components/lotties/ShinyText/style.js +84 -0
- package/dist/Components/lotties/index.d.ts +1 -2
- package/dist/Components/lotties/index.js +1 -2
- package/dist/MarkdownInputField/AttachmentButton/AttachmentButtonPopover.js +6 -32
- package/dist/MarkdownInputField/AttachmentButton/AttachmentFileList/style.js +1 -1
- package/dist/MarkdownInputField/AttachmentButton/index.js +5 -3
- package/dist/MarkdownInputField/FileMapView/FileMapViewItem.d.ts +2 -2
- package/dist/MarkdownInputField/FileMapView/FileMapViewItem.js +166 -152
- package/dist/MarkdownInputField/FileMapView/index.d.ts +3 -3
- package/dist/MarkdownInputField/FileMapView/index.js +12 -26
- package/dist/MarkdownInputField/FileMapView/style.js +8 -3
- package/dist/MarkdownInputField/MarkdownInputField.js +156 -174
- package/dist/MarkdownInputField/QuickActions/index.js +6 -0
- package/dist/MarkdownInputField/VoiceInput/index.js +2 -1
- package/dist/MarkdownInputField/style.js +5 -9
- package/dist/WelcomeMessage/index.d.ts +12 -2
- package/dist/WelcomeMessage/index.js +40 -4
- package/dist/WelcomeMessage/style.js +1 -0
- package/dist/Workspace/File/FileComponent.js +23 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export * from "./Components/ActionIconBox";
|
|
|
10
10
|
export * from "./Components/Button";
|
|
11
11
|
export * from "./Components/LayoutHeader";
|
|
12
12
|
export * from "./Components/Loading";
|
|
13
|
+
export * from "./Components/lotties";
|
|
13
14
|
export * from "./Components/SuggestionList";
|
|
14
15
|
export * from "./Components/VisualList";
|
|
15
16
|
export * from "./Hooks/useAutoScroll";
|
|
@@ -74,6 +75,9 @@ export * from "./MarkdownInputField/VoiceInput";
|
|
|
74
75
|
export * from "./Schema/SchemaRenderer/templateEngine";
|
|
75
76
|
export * from "./Schema/validator";
|
|
76
77
|
export * from "./Utils/proxySandbox";
|
|
78
|
+
export * from "./Components/GradientText";
|
|
79
|
+
export * from "./Components/TextAnimate";
|
|
80
|
+
export * from "./Components/TypingAnimation";
|
|
77
81
|
export * from "./MarkdownInputField/AttachmentButton/AttachmentFileList/AttachmentFileListItem";
|
|
78
82
|
export * from "./MarkdownInputField/AttachmentButton/AttachmentFileList";
|
|
79
83
|
export * from "./MarkdownInputField/AttachmentButton/utils";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ant-design/agentic-ui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.20",
|
|
4
4
|
"description": "面向智能体的 UI 组件库,提供多步推理可视化、工具调用展示、任务执行协同等 Agentic UI 能力",
|
|
5
5
|
"repository": "git@github.com:ant-design/agentic-ui.git",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@ant-design/cssinjs": "^1.24.0",
|
|
45
45
|
"@ant-design/icons": "^5.6.1",
|
|
46
46
|
"@ant-design/pro-components": "^2.8.10",
|
|
47
|
-
"@ant-design/theme-token": "^0.0.
|
|
47
|
+
"@ant-design/theme-token": "^0.0.20",
|
|
48
48
|
"@babel/runtime": "^7.28.4",
|
|
49
49
|
"@better-scroll/core": "^2.5.1",
|
|
50
50
|
"@better-scroll/mouse-wheel": "^2.5.1",
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
"ace-builds": "^1.43.4",
|
|
56
56
|
"ajv": "^8.17.1",
|
|
57
57
|
"ajv-formats": "^3.0.1",
|
|
58
|
-
"antd": "^5.
|
|
58
|
+
"antd": "^5.28.0",
|
|
59
59
|
"blob-util": "^2.0.2",
|
|
60
60
|
"chart.js": "^4.5.1",
|
|
61
61
|
"chartjs-plugin-datalabels": "^2.2.0",
|
|
62
62
|
"classnames": "^2.5.1",
|
|
63
63
|
"copy-to-clipboard": "^3.3.3",
|
|
64
|
-
"dayjs": "^1.11.
|
|
64
|
+
"dayjs": "^1.11.19",
|
|
65
65
|
"diacritics": "^1.3.0",
|
|
66
66
|
"direction": "^1.0.4",
|
|
67
67
|
"dompurify": "^3.3.0",
|