@fe-free/ai 4.0.3 → 4.0.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/sender/files.tsx +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @fe-free/ai
|
|
2
2
|
|
|
3
|
+
## 4.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix ai
|
|
8
|
+
- @fe-free/core@4.0.5
|
|
9
|
+
- @fe-free/icons@4.0.5
|
|
10
|
+
- @fe-free/tool@4.0.5
|
|
11
|
+
|
|
12
|
+
## 4.0.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @fe-free/core@4.0.4
|
|
18
|
+
- @fe-free/icons@4.0.4
|
|
19
|
+
- @fe-free/tool@4.0.4
|
|
20
|
+
|
|
3
21
|
## 4.0.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.0.
|
|
3
|
+
"version": "4.0.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"author": "",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"ahooks": "^3.7.8",
|
|
14
14
|
"classnames": "^2.5.1",
|
|
15
|
-
"@fe-free/core": "4.0.
|
|
15
|
+
"@fe-free/core": "4.0.5"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"antd": "^5.27.1",
|
|
19
19
|
"dayjs": "~1.11.10",
|
|
20
20
|
"react": "^19.2.0",
|
|
21
|
-
"@fe-free/icons": "4.0.
|
|
22
|
-
"@fe-free/tool": "4.0.
|
|
21
|
+
"@fe-free/icons": "4.0.5",
|
|
22
|
+
"@fe-free/tool": "4.0.5"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"test": "echo \"Error: no test specified\" && exit 1"
|
package/src/sender/files.tsx
CHANGED
|
@@ -130,8 +130,10 @@ function UploadFileItem({ file, onDelete }: { file: UploadFile; onDelete: () =>
|
|
|
130
130
|
className="h-[53px] w-[53px] rounded-lg border border-01 bg-01 object-cover"
|
|
131
131
|
/>
|
|
132
132
|
) : (
|
|
133
|
-
<div className="flex h-[53px] w-[200px] items-center rounded bg-01 px-1">
|
|
134
|
-
<
|
|
133
|
+
<div className="flex h-[53px] w-[200px] items-center overflow-hidden rounded bg-01 px-1">
|
|
134
|
+
<div className="min-w-0">
|
|
135
|
+
<FileCard name={file.name} size={file.size} />
|
|
136
|
+
</div>
|
|
135
137
|
</div>
|
|
136
138
|
)}
|
|
137
139
|
{!isDone && (
|