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
parent
commit
22c313d032
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .jest.js
  2. 2
      components/_util/openAnimation.tsx
  3. 2
      components/_util/wave.tsx
  4. 2
      package.json
  5. 2
      typings/custom-typings.d.ts

2
.jest.js

@ -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
components/_util/openAnimation.tsx

@ -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) {

2
components/_util/wave.tsx

@ -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';

2
package.json

@ -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",

2
typings/custom-typings.d.ts

@ -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';

Loading…
Cancel
Save