@ant-design/agentic-ui 2.0.21 → 2.0.22

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.
Files changed (29) hide show
  1. package/dist/Bubble/FileView.js +27 -31
  2. package/dist/Bubble/MessagesContent/VoiceButton/style.js +6 -3
  3. package/dist/ChatBootPage/ButtonTabStyle.js +2 -0
  4. package/dist/ChatBootPage/CaseReply.d.ts +0 -3
  5. package/dist/ChatBootPage/CaseReplyStyle.js +3 -4
  6. package/dist/Components/ActionIconBox/style.js +3 -1
  7. package/dist/Components/lotties/LoadingLottie/loading.json +1989 -1
  8. package/dist/Components/lotties/{ShinyText → TextLoading}/index.d.ts +9 -9
  9. package/dist/Components/lotties/{ShinyText → TextLoading}/index.js +7 -7
  10. package/dist/Components/lotties/{ShinyText → TextLoading}/style.js +4 -4
  11. package/dist/Components/lotties/index.d.ts +1 -1
  12. package/dist/Components/lotties/index.js +1 -1
  13. package/dist/History/components/HistoryItem.js +14 -6
  14. package/dist/History/types/HistoryData.d.ts +2 -0
  15. package/dist/MarkdownEditor/editor/components/ContributorAvatar/index.js +1 -1
  16. package/dist/MarkdownEditor/editor/elements/Table/TableRowIndex/index.js +3 -1
  17. package/dist/MarkdownEditor/editor/elements/TagPopup/index.js +6 -3
  18. package/dist/MarkdownEditor/editor/elements/TagPopup/style.js +5 -1
  19. package/dist/MarkdownInputField/AttachmentButton/style.js +1 -1
  20. package/dist/MarkdownInputField/BeforeToolContainer/BeforeToolContainer.js +2 -1
  21. package/dist/MarkdownInputField/MarkdownInputField.js +1 -1
  22. package/dist/MarkdownInputField/VoiceInput/style.js +1 -1
  23. package/dist/MarkdownInputField/style.js +2 -8
  24. package/dist/Plugins/chart/DonutChart/style.js +1 -0
  25. package/dist/Plugins/chart/LineChart/index.js +66 -55
  26. package/dist/Plugins/chart/LineChart/style.js +8 -0
  27. package/dist/Schema/SchemaRenderer/index.js +1 -1
  28. package/package.json +1 -1
  29. /package/dist/Components/lotties/{ShinyText → TextLoading}/style.d.ts +0 -0
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- export interface ShinyTextProps {
2
+ export interface TextLoadingProps {
3
3
  /**
4
4
  * 要显示的文本内容
5
5
  * @default "Loading..."
@@ -32,22 +32,22 @@ export interface ShinyTextProps {
32
32
  fontSize?: number | string;
33
33
  }
34
34
  /**
35
- * 闪光文字加载组件
35
+ * 文字加载组件
36
36
  *
37
37
  * 使用CSS动画展示闪光文字效果的加载状态组件,支持自定义文本、样式和动画开关。
38
38
  *
39
39
  * @component
40
40
  * @example
41
41
  * // 基础用法
42
- * <ShinyText />
42
+ * <TextLoading />
43
43
  *
44
44
  * @example
45
45
  * // 自定义文本
46
- * <ShinyText text="加载中..." />
46
+ * <TextLoading text="加载中..." />
47
47
  *
48
48
  * @example
49
49
  * // 自定义样式
50
- * <ShinyText
50
+ * <TextLoading
51
51
  * text="正在处理"
52
52
  * fontSize="20px"
53
53
  * style={{ margin: '20px' }}
@@ -55,7 +55,7 @@ export interface ShinyTextProps {
55
55
  *
56
56
  * @example
57
57
  * // 禁用动画
58
- * <ShinyText disabled={true} />
58
+ * <TextLoading disabled={true} />
59
59
  *
60
60
  * @param props - 组件属性
61
61
  * @param props.text - 要显示的文本内容,默认为 "Loading..."
@@ -63,7 +63,7 @@ export interface ShinyTextProps {
63
63
  * @param props.className - 容器类名
64
64
  * @param props.style - 容器自定义样式
65
65
  * @param props.fontSize - 字体大小
66
- * @returns 渲染的闪光文字组件
66
+ * @returns 渲染的文字加载组件
67
67
  */
68
- export declare const ShinyText: React.FC<ShinyTextProps>;
69
- export default ShinyText;
68
+ export declare const TextLoading: React.FC<TextLoadingProps>;
69
+ export default TextLoading;
@@ -15,12 +15,12 @@ var __spreadValues = (a, b) => {
15
15
  return a;
16
16
  };
17
17
 
18
- // src/Components/lotties/ShinyText/index.tsx
18
+ // src/Components/lotties/TextLoading/index.tsx
19
19
  import { ConfigProvider } from "antd";
20
20
  import cx from "classnames";
21
21
  import React, { useContext } from "react";
22
22
  import { useStyle } from "./style";
23
- var ShinyText = ({
23
+ var TextLoading = ({
24
24
  text = "Loading...",
25
25
  disabled = false,
26
26
  theme = "light",
@@ -29,7 +29,7 @@ var ShinyText = ({
29
29
  fontSize
30
30
  }) => {
31
31
  const { getPrefixCls } = useContext(ConfigProvider.ConfigContext);
32
- const prefixCls = getPrefixCls("agentic-shiny-text");
32
+ const prefixCls = getPrefixCls("agentic-text-loading");
33
33
  const { wrapSSR, hashId } = useStyle(prefixCls);
34
34
  const containerStyle = __spreadValues({
35
35
  fontSize
@@ -44,7 +44,7 @@ var ShinyText = ({
44
44
  [`${prefixCls}-light`]: theme === "light"
45
45
  }),
46
46
  style: containerStyle,
47
- "data-testid": "shiny-text",
47
+ "data-testid": "text-loading",
48
48
  "aria-label": text,
49
49
  role: "status",
50
50
  "aria-live": "polite"
@@ -53,8 +53,8 @@ var ShinyText = ({
53
53
  )
54
54
  );
55
55
  };
56
- var ShinyText_default = ShinyText;
56
+ var TextLoading_default = TextLoading;
57
57
  export {
58
- ShinyText,
59
- ShinyText_default as default
58
+ TextLoading,
59
+ TextLoading_default as default
60
60
  };
@@ -18,7 +18,7 @@ var __spreadValues = (a, b) => {
18
18
  };
19
19
  var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
20
 
21
- // src/Components/lotties/ShinyText/style.ts
21
+ // src/Components/lotties/TextLoading/style.ts
22
22
  import { Keyframes } from "@ant-design/cssinjs";
23
23
  import {
24
24
  useEditorStyleRegister
@@ -72,11 +72,11 @@ var genStyle = (token) => {
72
72
  };
73
73
  };
74
74
  function useStyle(prefixCls) {
75
- return useEditorStyleRegister("ShinyText", (token) => {
76
- const shinyTextToken = __spreadProps(__spreadValues({}, token), {
75
+ return useEditorStyleRegister("TextLoading", (token) => {
76
+ const textLoadingToken = __spreadProps(__spreadValues({}, token), {
77
77
  componentCls: `.${prefixCls}`
78
78
  });
79
- return [genStyle(shinyTextToken)];
79
+ return [genStyle(textLoadingToken)];
80
80
  });
81
81
  }
82
82
  export {
@@ -1 +1 @@
1
- export * from './ShinyText';
1
+ export * from './TextLoading';
@@ -1,2 +1,2 @@
1
1
  // src/Components/lotties/index.ts
2
- export * from "./ShinyText";
2
+ export * from "./TextLoading";
@@ -109,7 +109,11 @@ var HistoryItemSingle = React.memo(
109
109
  const { getPrefixCls } = useContext(ConfigProvider.ConfigContext);
110
110
  const prefixCls = getPrefixCls("agentic-chat-history-menu");
111
111
  const { hashId } = useStyle(prefixCls);
112
- const { textRef, isTextOverflow } = useTextOverflow(item.sessionTitle);
112
+ const displayText = React.useMemo(
113
+ () => item.displayTitle || item.sessionTitle,
114
+ [item.displayTitle, item.sessionTitle]
115
+ );
116
+ const { textRef, isTextOverflow } = useTextOverflow(displayText);
113
117
  const isRunning = React.useMemo(
114
118
  () => runningId == null ? void 0 : runningId.includes(String(item.id || "")),
115
119
  [runningId, item.id]
@@ -205,7 +209,7 @@ var HistoryItemSingle = React.memo(
205
209
  /* @__PURE__ */ React.createElement(
206
210
  Tooltip,
207
211
  {
208
- title: isTextOverflow ? item.sessionTitle : null,
212
+ title: isTextOverflow ? displayText : null,
209
213
  mouseEnterDelay: 0.3,
210
214
  open: isTextOverflow ? void 0 : false
211
215
  },
@@ -219,7 +223,7 @@ var HistoryItemSingle = React.memo(
219
223
  color: "var(--color-gray-text-default)"
220
224
  }
221
225
  },
222
- item.sessionTitle
226
+ displayText
223
227
  )
224
228
  )
225
229
  )
@@ -270,7 +274,11 @@ var HistoryItemMulti = React.memo(
270
274
  const { getPrefixCls } = useContext(ConfigProvider.ConfigContext);
271
275
  const prefixCls = getPrefixCls("agentic-chat-history-menu");
272
276
  const { hashId } = useStyle(prefixCls);
273
- const { textRef, isTextOverflow } = useTextOverflow(item.sessionTitle);
277
+ const displayText = React.useMemo(
278
+ () => item.displayTitle || item.sessionTitle,
279
+ [item.displayTitle, item.sessionTitle]
280
+ );
281
+ const { textRef, isTextOverflow } = useTextOverflow(displayText);
274
282
  const isTask = React.useMemo(() => type === "task", [type]);
275
283
  const { locale } = React.useContext(I18nContext);
276
284
  const shouldShowIcon = React.useMemo(
@@ -386,7 +394,7 @@ var HistoryItemMulti = React.memo(
386
394
  /* @__PURE__ */ React.createElement(
387
395
  Tooltip,
388
396
  {
389
- title: isTextOverflow ? item.sessionTitle : null,
397
+ title: isTextOverflow ? displayText : null,
390
398
  mouseEnterDelay: 0.3,
391
399
  open: isTextOverflow ? void 0 : false
392
400
  },
@@ -399,7 +407,7 @@ var HistoryItemMulti = React.memo(
399
407
  color: "var(--color-gray-text-default)"
400
408
  }
401
409
  },
402
- item.sessionTitle
410
+ displayText
403
411
  )
404
412
  )
405
413
  ),
@@ -9,6 +9,8 @@ export type HistoryDataType = {
9
9
  tenantId?: string;
10
10
  /** 会话标题 */
11
11
  sessionTitle?: React.ReactNode;
12
+ /** 展示标题(标题自定义渲染,不参与内置的搜索功能) */
13
+ displayTitle?: React.ReactNode;
12
14
  /** 会话描述/副标题 */
13
15
  description?: React.ReactNode;
14
16
  /** 会话图标 */
@@ -45,7 +45,7 @@ var ContributorAvatar = (props) => {
45
45
  };
46
46
  var AvatarList = ({ displayList, style }) => {
47
47
  const context = React.useContext(ConfigProvider.ConfigContext);
48
- const baseCls = context == null ? void 0 : context.getPrefixCls("agentic-md-editor-contributor-avatar-list");
48
+ const baseCls = context == null ? void 0 : context.getPrefixCls("agentic-contributor-avatar-list");
49
49
  const { wrapSSR, hashId } = useStyle(baseCls);
50
50
  return wrapSSR(
51
51
  /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
@@ -11,7 +11,9 @@ var TableRowIndex = ({
11
11
  tablePath
12
12
  }) => {
13
13
  const context = useContext(ConfigProvider.ConfigContext);
14
- const baseClassName = context == null ? void 0 : context.getPrefixCls("agentic-md-editor-table-row-index");
14
+ const baseClassName = context == null ? void 0 : context.getPrefixCls(
15
+ "agentic-md-editor-table-row-index"
16
+ );
15
17
  const { wrapSSR, hashId } = useStyle(baseClassName);
16
18
  return wrapSSR(
17
19
  /* @__PURE__ */ React.createElement(
@@ -109,7 +109,7 @@ var handleMouseLeave = (domRef) => {
109
109
  return;
110
110
  target.classList.add("no-focus");
111
111
  };
112
- var createDefaultDom = (domRef, baseCls, hashId, loading, selectedItems, children, text, placeholder) => {
112
+ var createDefaultDom = (domRef, baseCls, hashId, loading, selectedItems, children, text, placeholder, isOpen) => {
113
113
  const isEmpty = !(text == null ? void 0 : text.trim());
114
114
  const hasItems = (selectedItems == null ? void 0 : selectedItems.length) > 0;
115
115
  return /* @__PURE__ */ React.createElement(
@@ -131,7 +131,8 @@ var createDefaultDom = (domRef, baseCls, hashId, loading, selectedItems, childre
131
131
  ChevronDown,
132
132
  {
133
133
  className: classNames(`${baseCls}-tag-popup-input-arrow `, hashId, {
134
- empty: isEmpty
134
+ empty: isEmpty,
135
+ open: isOpen
135
136
  })
136
137
  }
137
138
  )
@@ -231,6 +232,7 @@ var TagPopup = (props) => {
231
232
  initializeAutoOpen(props.autoOpen, type, setOpen, suggestionConnext);
232
233
  }, []);
233
234
  const placeholder = props.placeholder;
235
+ const isOpen = type === "dropdown" ? open : (suggestionConnext == null ? void 0 : suggestionConnext.open) || false;
234
236
  const defaultDom = createDefaultDom(
235
237
  domRef,
236
238
  baseCls,
@@ -239,7 +241,8 @@ var TagPopup = (props) => {
239
241
  selectedItems,
240
242
  children,
241
243
  props.text,
242
- placeholder
244
+ placeholder,
245
+ isOpen
243
246
  );
244
247
  const renderDom = getRenderDom(
245
248
  props.tagRender,
@@ -57,7 +57,11 @@ var genStyle = (token) => {
57
57
  right: "4px",
58
58
  top: "50%",
59
59
  transform: "translateY(-50%)",
60
- color: "var(--color-primary-text-disabled)"
60
+ color: "var(--color-primary-text-disabled)",
61
+ transition: "transform 0.2s ease",
62
+ "&.open": {
63
+ transform: "translateY(-50%) rotate(180deg)"
64
+ }
61
65
  }
62
66
  },
63
67
  "&-tag-popup-input-has-arrow": {
@@ -39,7 +39,7 @@ var genStyle = (token) => {
39
39
  color: "var(--color-gray-text-secondary)",
40
40
  gap: 4,
41
41
  "&:hover": {
42
- backgroundColor: "rgba(0, 28, 57, 0.0353)"
42
+ backgroundColor: "var(--color-gray-control-fill-hover)"
43
43
  },
44
44
  [`${token.componentCls}-file-list`]: {
45
45
  "&-item": {
@@ -33,7 +33,8 @@ var SCROLL_STYLE = {
33
33
  overflowY: "hidden",
34
34
  WebkitOverflowScrolling: "touch",
35
35
  overscrollBehavior: "contain",
36
- touchAction: "pan-x"
36
+ touchAction: "pan-x",
37
+ paddingRight: 54
37
38
  };
38
39
  var POPOVER_OVERLAY_STYLE = { padding: 0 };
39
40
  var DraggablePopupItem = React.memo((props) => {
@@ -154,7 +154,7 @@ var MarkdownInputField = (_a) => {
154
154
  if (isEnlarged)
155
155
  return "auto";
156
156
  if (((_a3 = props == null ? void 0 : props.enlargeable) == null ? void 0 : _a3.enable) && ((_b3 = props == null ? void 0 : props.refinePrompt) == null ? void 0 : _b3.enable)) {
157
- return 160;
157
+ return 140;
158
158
  }
159
159
  if (isMultiRowLayout)
160
160
  return 106;
@@ -39,7 +39,7 @@ var genStyle = (token) => {
39
39
  gap: "4px",
40
40
  color: "var(--color-gray-text-secondary)",
41
41
  "&:hover": {
42
- background: "rgba(0, 28, 57, 0.0353)"
42
+ background: "var(--color-gray-control-fill-hover)"
43
43
  },
44
44
  "&&-disabled": {
45
45
  cursor: "not-allowed",
@@ -88,12 +88,6 @@ var genStyle = (token) => {
88
88
  outline: "1px solid transparent"
89
89
  },
90
90
  "&-enlarged": {
91
- "> div:last-child": {
92
- flex: 1,
93
- height: "100%",
94
- minHeight: "100%",
95
- width: "100%"
96
- },
97
91
  [`${token.componentCls}-editor`]: {
98
92
  flex: 1,
99
93
  height: "100%",
@@ -181,9 +175,9 @@ var genStyle = (token) => {
181
175
  "&-quick-actions": {
182
176
  position: "absolute",
183
177
  userSelect: "none",
184
- right: 0,
185
- width: "40px",
178
+ width: "32px",
186
179
  top: 12,
180
+ right: 12,
187
181
  boxSizing: "border-box",
188
182
  zIndex: 99,
189
183
  display: "flex",
@@ -59,6 +59,7 @@ var genStyle = (token) => {
59
59
  "&-row": {
60
60
  display: "flex",
61
61
  alignItems: "center",
62
+ flexDirection: "row",
62
63
  [`@media (max-width: 768px)`]: {
63
64
  flexDirection: "column",
64
65
  alignItems: "stretch"
@@ -42,6 +42,7 @@ import {
42
42
  PointElement,
43
43
  Tooltip
44
44
  } from "chart.js";
45
+ import classNames from "classnames";
45
46
  import React, { useContext, useEffect, useMemo, useRef, useState } from "react";
46
47
  import { Line } from "react-chartjs-2";
47
48
  import {
@@ -56,6 +57,7 @@ import {
56
57
  extractAndSortXValues,
57
58
  findDataPointByXValue
58
59
  } from "../utils";
60
+ import { useStyle } from "./style";
59
61
  ChartJS.register(
60
62
  CategoryScale,
61
63
  LinearScale,
@@ -125,6 +127,7 @@ var LineChart = (_a) => {
125
127
  }, []);
126
128
  const context = useContext(ConfigProvider.ConfigContext);
127
129
  const baseClassName = context == null ? void 0 : context.getPrefixCls("line-chart-container");
130
+ const { wrapSSR, hashId } = useStyle(baseClassName);
128
131
  const chartRef = useRef(null);
129
132
  const statistics = useMemo(() => {
130
133
  if (!statisticConfig)
@@ -325,65 +328,73 @@ var LineChart = (_a) => {
325
328
  const handleDownload = () => {
326
329
  downloadChart(chartRef.current, "line-chart");
327
330
  };
328
- return /* @__PURE__ */ React.createElement(
329
- ChartContainer,
330
- {
331
- baseClassName,
332
- className,
333
- theme,
334
- isMobile,
335
- variant: props.variant,
336
- style: {
337
- width: responsiveWidth
338
- }
339
- },
331
+ return wrapSSR(
340
332
  /* @__PURE__ */ React.createElement(
341
- ChartToolBar,
333
+ ChartContainer,
342
334
  {
343
- title,
335
+ baseClassName,
336
+ className,
344
337
  theme,
345
- onDownload: handleDownload,
346
- extra: toolbarExtra,
347
- dataTime,
348
- filter: renderFilterInToolbar && filterOptions && filterOptions.length > 1 ? /* @__PURE__ */ React.createElement(
349
- ChartFilter,
350
- __spreadProps(__spreadValues({
351
- filterOptions,
352
- selectedFilter,
353
- onFilterChange: setSelectedFilter
354
- }, filterLabels && {
355
- customOptions: filteredDataByFilterLabel,
356
- selectedCustomSelection: selectedFilterLabel,
357
- onSelectionChange: setSelectedFilterLabel
358
- }), {
359
- theme,
360
- variant: "compact"
361
- })
362
- ) : void 0
363
- }
364
- ),
365
- statistics && /* @__PURE__ */ React.createElement("div", { className: `${baseClassName}-statistic-container` }, statistics.map((config, index) => /* @__PURE__ */ React.createElement(ChartStatistic, __spreadProps(__spreadValues({ key: index }, config), { theme })))),
366
- !renderFilterInToolbar && filterOptions && filterOptions.length > 1 && /* @__PURE__ */ React.createElement(
367
- ChartFilter,
368
- __spreadProps(__spreadValues({
369
- filterOptions,
370
- selectedFilter,
371
- onFilterChange: setSelectedFilter
372
- }, filterLabels && {
373
- customOptions: filteredDataByFilterLabel,
374
- selectedCustomSelection: selectedFilterLabel,
375
- onSelectionChange: setSelectedFilterLabel
376
- }), {
377
- theme
378
- })
379
- ),
380
- /* @__PURE__ */ React.createElement(
381
- "div",
382
- {
383
- className: `${baseClassName}-wrapper`,
384
- style: { height: responsiveHeight }
338
+ isMobile,
339
+ variant: props.variant,
340
+ style: {
341
+ width: responsiveWidth
342
+ }
385
343
  },
386
- /* @__PURE__ */ React.createElement(Line, { ref: chartRef, data: processedData, options })
344
+ /* @__PURE__ */ React.createElement(
345
+ ChartToolBar,
346
+ {
347
+ title,
348
+ theme,
349
+ onDownload: handleDownload,
350
+ extra: toolbarExtra,
351
+ dataTime,
352
+ filter: renderFilterInToolbar && filterOptions && filterOptions.length > 1 ? /* @__PURE__ */ React.createElement(
353
+ ChartFilter,
354
+ __spreadProps(__spreadValues({
355
+ filterOptions,
356
+ selectedFilter,
357
+ onFilterChange: setSelectedFilter
358
+ }, filterLabels && {
359
+ customOptions: filteredDataByFilterLabel,
360
+ selectedCustomSelection: selectedFilterLabel,
361
+ onSelectionChange: setSelectedFilterLabel
362
+ }), {
363
+ theme,
364
+ variant: "compact"
365
+ })
366
+ ) : void 0
367
+ }
368
+ ),
369
+ statistics && /* @__PURE__ */ React.createElement(
370
+ "div",
371
+ {
372
+ className: classNames(`${baseClassName}-statistic-container`, hashId)
373
+ },
374
+ statistics.map((config, index) => /* @__PURE__ */ React.createElement(ChartStatistic, __spreadProps(__spreadValues({ key: index }, config), { theme })))
375
+ ),
376
+ !renderFilterInToolbar && filterOptions && filterOptions.length > 1 && /* @__PURE__ */ React.createElement(
377
+ ChartFilter,
378
+ __spreadProps(__spreadValues({
379
+ filterOptions,
380
+ selectedFilter,
381
+ onFilterChange: setSelectedFilter
382
+ }, filterLabels && {
383
+ customOptions: filteredDataByFilterLabel,
384
+ selectedCustomSelection: selectedFilterLabel,
385
+ onSelectionChange: setSelectedFilterLabel
386
+ }), {
387
+ theme
388
+ })
389
+ ),
390
+ /* @__PURE__ */ React.createElement(
391
+ "div",
392
+ {
393
+ className: `${baseClassName}-wrapper`,
394
+ style: { height: responsiveHeight }
395
+ },
396
+ /* @__PURE__ */ React.createElement(Line, { ref: chartRef, data: processedData, options })
397
+ )
387
398
  )
388
399
  );
389
400
  };
@@ -26,6 +26,14 @@ var genStyle = (token) => {
26
26
  return {
27
27
  [token.componentCls]: {
28
28
  // 折线图容器样式
29
+ // 统计数据容器样式
30
+ "&-statistic-container": {
31
+ display: "flex",
32
+ gap: "16px",
33
+ marginBottom: "16px",
34
+ flexWrap: "wrap",
35
+ alignItems: "flex-start"
36
+ },
29
37
  ".chart-wrapper": {
30
38
  width: "100%",
31
39
  height: "calc(100% - 120px)",
@@ -49,11 +49,11 @@ import React, {
49
49
  useState
50
50
  } from "react";
51
51
  import partialParse from "../../MarkdownEditor/editor/parser/json-parse";
52
- import { mdDataSchemaValidator } from "../validator";
53
52
  import {
54
53
  createSandbox,
55
54
  DEFAULT_SANDBOX_CONFIG
56
55
  } from "../../Utils/proxySandbox";
56
+ import { mdDataSchemaValidator } from "../validator";
57
57
  import { TemplateEngine } from "./templateEngine";
58
58
  export * from "./templateEngine";
59
59
  var ErrorBoundary = class extends Component {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ant-design/agentic-ui",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "description": "面向智能体的 UI 组件库,提供多步推理可视化、工具调用展示、任务执行协同等 Agentic UI 能力",
5
5
  "repository": "git@github.com:ant-design/agentic-ui.git",
6
6
  "license": "MIT",