@ant-design/agentic-ui 2.0.21 → 2.0.23
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 +27 -31
- package/dist/Bubble/MessagesContent/VoiceButton/style.js +6 -3
- package/dist/ChatBootPage/ButtonTabStyle.js +2 -0
- package/dist/ChatBootPage/CaseReply.d.ts +0 -3
- package/dist/ChatBootPage/CaseReplyStyle.js +3 -4
- package/dist/Components/ActionIconBox/style.js +3 -1
- package/dist/Components/GradientText/index.d.ts +2 -1
- package/dist/Components/GradientText/index.js +3 -2
- package/dist/Components/GradientText/style.js +3 -8
- package/dist/Components/TextAnimate/index.d.ts +1 -0
- package/dist/Components/TextAnimate/index.js +27 -16
- package/dist/Components/TypingAnimation/index.d.ts +1 -1
- package/dist/Components/TypingAnimation/index.js +9 -9
- package/dist/Components/lotties/LoadingLottie/loading.json +1989 -1
- package/dist/Components/lotties/{ShinyText → TextLoading}/index.d.ts +9 -9
- package/dist/Components/lotties/{ShinyText → TextLoading}/index.js +7 -7
- package/dist/Components/lotties/{ShinyText → TextLoading}/style.js +4 -4
- package/dist/Components/lotties/index.d.ts +1 -1
- package/dist/Components/lotties/index.js +1 -1
- package/dist/History/components/HistoryItem.js +14 -6
- package/dist/History/types/HistoryData.d.ts +2 -0
- package/dist/MarkdownEditor/editor/components/ContributorAvatar/index.js +1 -1
- package/dist/MarkdownEditor/editor/components/LazyElement/index.js +36 -4
- package/dist/MarkdownEditor/editor/elements/Table/TableRowIndex/index.js +3 -1
- package/dist/MarkdownEditor/editor/elements/TagPopup/index.js +6 -3
- package/dist/MarkdownEditor/editor/elements/TagPopup/style.js +5 -1
- package/dist/MarkdownEditor/editor/parser/parserMarkdownToSlateNode.d.ts +4 -0
- package/dist/MarkdownEditor/editor/parser/parserMarkdownToSlateNode.js +245 -344
- package/dist/MarkdownEditor/editor/parser/parserSlateNodeToMarkdown.js +74 -56
- package/dist/MarkdownEditor/editor/store.d.ts +36 -0
- package/dist/MarkdownEditor/editor/store.js +208 -76
- package/dist/MarkdownInputField/AttachmentButton/style.js +1 -1
- package/dist/MarkdownInputField/BeforeToolContainer/BeforeToolContainer.js +2 -1
- package/dist/MarkdownInputField/MarkdownInputField.js +1 -1
- package/dist/MarkdownInputField/VoiceInput/style.js +1 -1
- package/dist/MarkdownInputField/style.js +2 -8
- package/dist/Plugins/chart/DonutChart/style.js +1 -0
- package/dist/Plugins/chart/LineChart/index.js +66 -55
- package/dist/Plugins/chart/LineChart/style.js +8 -0
- package/dist/Schema/SchemaRenderer/index.js +81 -56
- package/dist/Utils/proxySandbox/ProxySandbox.d.ts +32 -0
- package/dist/Utils/proxySandbox/ProxySandbox.js +176 -128
- package/dist/WelcomeMessage/index.d.ts +2 -2
- package/dist/WelcomeMessage/index.js +8 -5
- package/dist/WelcomeMessage/style.js +0 -1
- package/package.json +1 -1
- /package/dist/Components/lotties/{ShinyText → TextLoading}/style.d.ts +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { TextAnimateProps } from '../Components/TextAnimate';
|
|
3
3
|
import { TypingAnimationProps } from '../Components/TypingAnimation';
|
|
4
|
-
export type WelcomeMessageTitleAnimateProps = Pick<
|
|
5
|
-
export type WelcomeMessageDescriptionAnimateProps = Pick<
|
|
4
|
+
export type WelcomeMessageTitleAnimateProps = Pick<TypingAnimationProps, 'duration' | 'typeSpeed' | 'deleteSpeed' | 'delay' | 'pauseDelay' | 'loop' | 'startOnView' | 'showCursor' | 'blinkCursor' | 'cursorStyle'>;
|
|
5
|
+
export type WelcomeMessageDescriptionAnimateProps = Pick<TextAnimateProps, 'delay' | 'duration' | 'variants' | 'by' | 'startOnView' | 'once' | 'animation'>;
|
|
6
6
|
/**
|
|
7
7
|
* WelcomeMessage 组件的属性接口
|
|
8
8
|
* @interface WelcomeMessageProps
|
|
@@ -41,18 +41,21 @@ var WelcomeMessage = ({
|
|
|
41
41
|
const { wrapSSR, hashId } = useStyle(prefixCls);
|
|
42
42
|
return wrapSSR(
|
|
43
43
|
/* @__PURE__ */ React.createElement("div", { className: classnames(prefixCls, hashId, rootClassName), style }, title && /* @__PURE__ */ React.createElement(
|
|
44
|
-
|
|
44
|
+
TypingAnimation,
|
|
45
45
|
__spreadProps(__spreadValues({
|
|
46
|
-
|
|
46
|
+
as: "div"
|
|
47
47
|
}, titleAnimateProps), {
|
|
48
|
-
as: "div",
|
|
49
48
|
className: classnames(`${prefixCls}-title`, classNames == null ? void 0 : classNames.title)
|
|
50
49
|
}),
|
|
51
50
|
title
|
|
52
51
|
), description && /* @__PURE__ */ React.createElement(
|
|
53
|
-
|
|
54
|
-
__spreadProps(__spreadValues({
|
|
52
|
+
TextAnimate,
|
|
53
|
+
__spreadProps(__spreadValues({
|
|
55
54
|
as: "div",
|
|
55
|
+
animation: "blurInUp",
|
|
56
|
+
by: "character",
|
|
57
|
+
once: true
|
|
58
|
+
}, descriptionAnimateProps), {
|
|
56
59
|
className: classnames(
|
|
57
60
|
`${prefixCls}-description`,
|
|
58
61
|
classNames == null ? void 0 : classNames.description
|
package/package.json
CHANGED
|
File without changes
|