afc163
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
components/upload/style/motion.ts
|
|
@ -1,6 +1,7 @@ |
|
|
|
import { Keyframes } from '@ant-design/cssinjs'; |
|
|
|
import type { UploadToken } from '.'; |
|
|
|
import type { GenerateStyle } from '../../theme/internal'; |
|
|
|
import { initFadeMotion } from '../../style/motion'; |
|
|
|
|
|
|
|
const uploadAnimateInlineIn = new Keyframes('uploadAnimateInlineIn', { |
|
|
|
from: { |
|
|
@ -44,6 +45,9 @@ const genMotionStyle: GenerateStyle<UploadToken> = (token) => { |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
[`${componentCls}-wrapper`]: initFadeMotion(token), |
|
|
|
}, |
|
|
|
uploadAnimateInlineIn, |
|
|
|
uploadAnimateInlineOut, |
|
|
|
]; |
|
|
|