@fe-free/ai 4.2.3 → 4.2.5
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/CHANGELOG.md +18 -0
- package/package.json +4 -4
- package/src/messages/messages.tsx +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @fe-free/ai
|
|
2
2
|
|
|
3
|
+
## 4.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @fe-free/core@4.2.5
|
|
9
|
+
- @fe-free/icons@4.2.5
|
|
10
|
+
- @fe-free/tool@4.2.5
|
|
11
|
+
|
|
12
|
+
## 4.2.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- fix: ai
|
|
17
|
+
- @fe-free/core@4.2.4
|
|
18
|
+
- @fe-free/icons@4.2.4
|
|
19
|
+
- @fe-free/tool@4.2.4
|
|
20
|
+
|
|
3
21
|
## 4.2.3
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fe-free/ai",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"author": "",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"lodash-es": "^4.17.21",
|
|
19
19
|
"uuid": "^13.0.0",
|
|
20
20
|
"zustand": "^4.5.7",
|
|
21
|
-
"@fe-free/core": "4.2.
|
|
21
|
+
"@fe-free/core": "4.2.5"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"antd": "^5.27.1",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"i18next-icu": "^2.4.1",
|
|
29
29
|
"react": "^19.2.0",
|
|
30
30
|
"react-i18next": "^16.4.0",
|
|
31
|
-
"@fe-free/icons": "4.2.
|
|
32
|
-
"@fe-free/tool": "4.2.
|
|
31
|
+
"@fe-free/icons": "4.2.5",
|
|
32
|
+
"@fe-free/tool": "4.2.5"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -145,14 +145,14 @@ function Messages<UserData, AIData>(props: MessagesProps<UserData, AIData>) {
|
|
|
145
145
|
</div>
|
|
146
146
|
);
|
|
147
147
|
})}
|
|
148
|
-
<div className="sticky bottom-2 mx-auto flex justify-center">
|
|
148
|
+
<div className="pointer-events-none sticky bottom-2 mx-auto flex justify-center">
|
|
149
149
|
<Button
|
|
150
150
|
shape="circle"
|
|
151
151
|
icon={<ArrowDownOutlined />}
|
|
152
152
|
onClick={() => {
|
|
153
153
|
scrollToBottom();
|
|
154
154
|
}}
|
|
155
|
-
className="bg-white text-2xl shadow-[0px_1px_12px_0px_#2921391F]"
|
|
155
|
+
className="pointer-events-auto bg-white text-2xl shadow-[0px_1px_12px_0px_#2921391F]"
|
|
156
156
|
style={{
|
|
157
157
|
transform: `translateY(${showScrollBottom ? 0 : 30}px) scale(${showScrollBottom ? 1 : 0})`,
|
|
158
158
|
width: 44,
|