Browse Source
chore: 🔨 replace css-animation by @ant-design/css-animation (#23932)
* 🆙 use @ant-design/css-animation
* fix ci
* fix ci
pull/23938/head
偏右
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
5 additions and
5 deletions
-
.jest.js
-
components/_util/openAnimation.tsx
-
components/_util/wave.tsx
-
package.json
-
typings/custom-typings.d.ts
|
|
@ -2,7 +2,7 @@ const transformIgnorePatterns = [ |
|
|
|
'/dist/', |
|
|
|
// Ignore modules without es dir.
|
|
|
|
// Update: @babel/runtime should also be transformed
|
|
|
|
'node_modules/(?!.*@babel)[^/]+?/(?!(es|node_modules)/)', |
|
|
|
'node_modules/(?!.*@(babel|ant-design))[^/]+?/(?!(es|node_modules)/)', |
|
|
|
]; |
|
|
|
|
|
|
|
function getTestRegex(libDir) { |
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
|
* Deprecated. We should replace the animation with pure react motion instead of modify style directly. |
|
|
|
* If you are creating new component with animation, please use `./motion`. |
|
|
|
*/ |
|
|
|
import cssAnimation from 'css-animation'; |
|
|
|
import cssAnimation from '@ant-design/css-animation'; |
|
|
|
import raf from 'raf'; |
|
|
|
|
|
|
|
function animate(node: HTMLElement, show: boolean, done: () => void) { |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
import * as React from 'react'; |
|
|
|
import { findDOMNode } from 'react-dom'; |
|
|
|
import TransitionEvents from 'css-animation/lib/Event'; |
|
|
|
import TransitionEvents from '@ant-design/css-animation/lib/Event'; |
|
|
|
import raf from './raf'; |
|
|
|
import { ConfigConsumer, ConfigConsumerProps, CSPConfig } from '../config-provider'; |
|
|
|
|
|
|
|
|
|
@ -96,12 +96,12 @@ |
|
|
|
"ie >= 11" |
|
|
|
], |
|
|
|
"dependencies": { |
|
|
|
"@ant-design/css-animation": "^1.7.1", |
|
|
|
"@ant-design/icons": "^4.1.0", |
|
|
|
"@ant-design/react-slick": "~0.25.5", |
|
|
|
"array-tree-filter": "^2.1.0", |
|
|
|
"classnames": "~2.2.6", |
|
|
|
"copy-to-clipboard": "^3.2.0", |
|
|
|
"css-animation": "^1.5.0", |
|
|
|
"lodash": "^4.17.13", |
|
|
|
"moment": "~2.25.3", |
|
|
|
"omit.js": "^1.0.2", |
|
|
|
|
|
@ -24,7 +24,7 @@ declare module 'rc-animate*'; |
|
|
|
|
|
|
|
declare module 'rc-util*'; |
|
|
|
|
|
|
|
declare module 'css-animation*'; |
|
|
|
declare module '@ant-design/css-animation*'; |
|
|
|
|
|
|
|
declare module 'rc-checkbox'; |
|
|
|
|
|
|
|