@@ -26,16 +26,28 @@ export interface ImageCardUploadProps extends CommonDisplayFileProps {
26
26
cancelUpload ?: ( context : { e : MouseEvent < HTMLElement > ; file : UploadFile } ) => void ;
27
27
onPreview ?: TdUploadProps [ 'onPreview' ] ;
28
28
showImageFileName ?: boolean ;
29
+ imageProps ?: TdUploadProps [ 'imageProps' ] ;
29
30
}
30
31
31
32
const ImageCard = ( props : ImageCardUploadProps ) => {
32
- const { displayFiles, locale, classPrefix, multiple, max = 0 , onRemove, disabled, fileListDisplay } = props ;
33
+ const {
34
+ displayFiles,
35
+ locale,
36
+ classPrefix,
37
+ multiple,
38
+ max = 0 ,
39
+ onRemove,
40
+ disabled,
41
+ fileListDisplay,
42
+ imageProps = { } ,
43
+ } = props ;
33
44
const { BrowseIcon, DeleteIcon, AddIcon, ErrorCircleFilledIcon } = useGlobalIcon ( {
34
45
AddIcon : TdAddIcon ,
35
46
BrowseIcon : TdBrowseIcon ,
36
47
DeleteIcon : TdDeleteIcon ,
37
48
ErrorCircleFilledIcon : TdErrorCircleFilledIcon ,
38
49
} ) ;
50
+ const { className : imageClassName , ...restImageProps } = imageProps ;
39
51
40
52
const showTrigger = React . useMemo ( ( ) => {
41
53
if ( multiple ) {
@@ -47,11 +59,10 @@ const ImageCard = (props: ImageCardUploadProps) => {
47
59
const renderMainContent = ( file : UploadFile , index : number ) => (
48
60
< div className = { `${ classPrefix } -upload__card-content ${ classPrefix } -upload__card-box` } >
49
61
< Image
50
- className = { `${ classPrefix } -upload__card-image` }
51
62
fit = "contain"
63
+ className = { classNames ( `${ classPrefix } -upload__card-image` , imageClassName ) }
64
+ { ...restImageProps }
52
65
src = { file . url || file . raw }
53
- error = ""
54
- loading = ""
55
66
/>
56
67
< div className = { `${ classPrefix } -upload__card-mask` } >
57
68
< span className = { `${ classPrefix } -upload__card-mask-item` } onClick = { ( e ) => e . stopPropagation ( ) } >
0 commit comments