@@ -57,7 +57,7 @@ Extends File with additional props.
57
57
| crossOrigin | CORS settings attributes | ` 'anonymous' ` \| ` 'use-credentials' ` \| ` '' ` | - | 4.20.0 |
58
58
| name | File name | string | - | - |
59
59
| percent | Upload progress percent | number | - | - |
60
- | status | Upload status. Show different style when configured | ` error ` \| ` success ` \| ` done ` \| ` uploading ` \| ` removed ` | - | - |
60
+ | status | Upload status. Show different style when configured | ` error ` \| ` success ` \| ` done ` \| ` uploading ` | - | - |
61
61
| thumbUrl | Thumb image url | string | - | - |
62
62
| uid | unique id. Will auto generate when not provided | string | - | - |
63
63
| url | Download url | string | - | - |
@@ -82,7 +82,7 @@ When uploading state change, it returns:
82
82
{
83
83
uid: ' uid' , // unique identifier, negative is recommend, to prevent interference with internal generated id
84
84
name: ' xx.png' , // file name
85
- status: ' done' , // options:uploading, done, error, removed . Intercepted file by beforeUpload don't have status field.
85
+ status: ' done' , // options:uploading, done, error. Intercepted file by beforeUpload don't have status field.
86
86
response: ' {"status": "success"}' , // response from server
87
87
linkProps: ' {"download": "image"}' , // additional html props of file link
88
88
xhr: ' XMLHttpRequest{ ... }' , // XMLHttpRequest Header
0 commit comments