Skip to content

Commit ed6c747

Browse files
committed
upgrade rc-animate to 3.x
1 parent 1a125a9 commit ed6c747

File tree

3 files changed

+37
-35
lines changed

3 files changed

+37
-35
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# History
22
----
33

4+
## 4.1.0 / 2020-05-08
5+
6+
- upgrade rc-animate to `3.x`
7+
48
## 2.5.0 / 2018-06-05
59

610
- support `alignPoint`

README.md

Lines changed: 32 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -3,52 +3,32 @@
33

44
React Trigger Component
55

6-
76
[![NPM version][npm-image]][npm-url]
87
[![build status][travis-image]][travis-url]
98
[![Test coverage][coveralls-image]][coveralls-url]
10-
[![gemnasium deps][gemnasium-image]][gemnasium-url]
9+
[![Dependencies][david-image]][david-url]
10+
[![DevDependencies][david-dev-image]][david-dev-url]
1111
[![npm download][download-image]][download-url]
12+
[![bundle size][bundlephobia-image]][bundlephobia-url]
1213

1314
[npm-image]: http://img.shields.io/npm/v/rc-trigger.svg?style=flat-square
1415
[npm-url]: http://npmjs.org/package/rc-trigger
15-
[travis-image]: https://img.shields.io/travis/react-component/trigger.svg?style=flat-square
16+
[travis-image]: https://img.shields.io/travis/react-component/trigger/master?style=flat-square
1617
[travis-url]: https://travis-ci.org/react-component/trigger
18+
[circleci-image]: https://img.shields.io/circleci/react-component/trigger/master?style=flat-square
19+
[circleci-url]: https://circleci.com/gh/react-component/trigger
1720
[coveralls-image]: https://img.shields.io/coveralls/react-component/trigger.svg?style=flat-square
1821
[coveralls-url]: https://coveralls.io/r/react-component/trigger?branch=master
19-
[gemnasium-image]: http://img.shields.io/gemnasium/react-component/trigger.svg?style=flat-square
20-
[gemnasium-url]: https://gemnasium.com/react-component/trigger
21-
[node-image]: https://img.shields.io/badge/node.js-%3E=_0.10-green.svg?style=flat-square
22-
[node-url]: http://nodejs.org/download/
22+
[david-url]: https://david-dm.org/react-component/trigger
23+
[david-image]: https://david-dm.org/react-component/trigger/status.svg?style=flat-square
24+
[david-dev-url]: https://david-dm.org/react-component/trigger?type=dev
25+
[david-dev-image]: https://david-dm.org/react-component/trigger/dev-status.svg?style=flat-square
2326
[download-image]: https://img.shields.io/npm/dm/rc-trigger.svg?style=flat-square
2427
[download-url]: https://npmjs.org/package/rc-trigger
28+
[bundlephobia-url]: https://bundlephobia.com/result?p=rc-trigger
29+
[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/rc-trigger
2530

26-
27-
## Browser Support
28-
29-
|![IE](https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png) | ![Chrome](https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png) | ![Firefox](https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png) | ![Opera](https://raw.githubusercontent.com/alrra/browser-logos/master/src/opera/opera_48x48.png) | ![Safari](https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png)|
30-
| --- | --- | --- | --- | --- |
31-
| Edge / IE 8+ ✔ | Chrome 31.0+ ✔ | Firefox 31.0+ ✔ | Opera 30.0+ ✔ | Safari 7.0+ ✔ |
32-
33-
34-
## Development
35-
36-
```
37-
npm install
38-
npm start
39-
```
40-
41-
## Example
42-
43-
http://localhost:8200/examples/
44-
45-
online example: http://react-component.github.io/trigger/examples/
46-
47-
## Feature
48-
49-
* supported on IE 8+, Chrome, Firefox, and Safari
50-
51-
## install
31+
## Install
5232

5333
[![rc-trigger](https://nodei.co/npm/rc-trigger.png)](https://npmjs.org/package/rc-trigger)
5434

@@ -75,6 +55,25 @@ ReactDOM.render((
7555
), container);
7656
```
7757

58+
## Compatibility
59+
60+
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>IE / Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/electron/electron_48x48.png" alt="Electron" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Electron |
61+
| --- | --- | --- | --- | --- |
62+
| IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
63+
64+
## Example
65+
66+
http://localhost:9001
67+
68+
online example: http://react-component.github.io/trigger/
69+
70+
## Development
71+
72+
```
73+
npm install
74+
npm start
75+
```
76+
7877
## API
7978

8079
### props

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,9 @@
6060
},
6161
"dependencies": {
6262
"classnames": "^2.2.6",
63-
"prop-types": "15.x",
6463
"raf": "^3.4.1",
6564
"rc-align": "^3.0.0-rc.0",
66-
"rc-animate": "^2.10.2",
65+
"rc-animate": "^3.0.0",
6766
"rc-util": "^4.20.0"
6867
}
6968
}

0 commit comments

Comments
 (0)