-
-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from ant-design/update-dependencies
Update dependencies
- Loading branch information
Showing
207 changed files
with
3,261 additions
and
13,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
_site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
const eslintrc = { | ||
extends: ['eslint-config-airbnb'], | ||
env: { | ||
browser: true, | ||
node: true, | ||
jasmine: true, | ||
jest: true, | ||
es6: true, | ||
}, | ||
parser: 'babel-eslint', | ||
parserOptions: { | ||
ecmaVersion: 6, | ||
ecmaFeatures: { | ||
jsx: true, | ||
experimentalObjectRestSpread: true, | ||
}, | ||
}, | ||
plugins: [ | ||
'markdown', | ||
'react', | ||
'babel', | ||
], | ||
rules: { | ||
'func-names': 0, | ||
'arrow-body-style': 0, | ||
'react/sort-comp': 0, | ||
'react/prop-types': 0, | ||
'react/jsx-first-prop-new-line': 0, | ||
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx', '.md'] }], | ||
'import/extensions': 0, | ||
'import/no-unresolved': 0, | ||
'import/no-extraneous-dependencies': 0, | ||
'prefer-destructuring': 0, | ||
'no-param-reassign': 0, | ||
'no-return-assign': 0, | ||
'max-len': 0, | ||
'consistent-return': 0, | ||
'no-redeclare': 0, | ||
'react/require-extension': 0, | ||
'jsx-a11y/no-static-element-interactions': 0, | ||
'jsx-a11y/anchor-has-content': 0, | ||
'jsx-a11y/click-events-have-key-events': 0, | ||
'jsx-a11y/no-noninteractive-element-interactions': 0, | ||
'jsx-a11y/anchor-is-valid': 0, | ||
'react/no-danger': 0, | ||
'comma-dangle': ['error', 'always-multiline'], | ||
'function-paren-newline': 0, | ||
'object-curly-newline': 0, | ||
'no-restricted-globals': 0, | ||
'jsx-a11y/mouse-events-have-key-events': 0, | ||
'react/jsx-no-target-blank': 0, | ||
'react/no-find-dom-node': 0, | ||
'react/no-unescaped-entities': 0, | ||
'react/prefer-stateless-function': 0, | ||
'import/no-webpack-loader-syntax': 0, | ||
'react/forbid-prop-types': 0, | ||
'react/destructuring-assignment': 0, | ||
'react/no-access-state-in-setstate': 0, | ||
'react/require-default-props': 0, | ||
'jsx-a11y/accessible-emoji': 0 | ||
}, | ||
}; | ||
|
||
if (process.env.RUN_ENV === 'DEMO') { | ||
eslintrc.globals = { | ||
React: true, | ||
ReactDOM: true, | ||
mountNode: true, | ||
}; | ||
|
||
Object.assign(eslintrc.rules, { | ||
indent: 0, | ||
'no-console': 0, | ||
'no-plusplus': 0, | ||
'eol-last': 0, | ||
'prefer-rest-params': 0, | ||
'react/no-multi-comp': 0, | ||
'jsx-a11y/href-no-hash': 0, | ||
'import/newline-after-import': 0, | ||
}); | ||
} | ||
|
||
module.exports = eslintrc; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"extends": "stylelint-config-standard", | ||
"rules": { | ||
"comment-empty-line-before": null, | ||
"declaration-empty-line-before": null, | ||
"function-comma-newline-after": null, | ||
"function-name-case": null, | ||
"function-parentheses-newline-inside": null, | ||
"function-max-empty-lines": null, | ||
"function-whitespace-after": null, | ||
"indentation": null, | ||
"number-leading-zero": null, | ||
"number-no-trailing-zeros": null, | ||
"rule-empty-line-before": null, | ||
"selector-combinator-space-after": null, | ||
"selector-list-comma-newline-after": null, | ||
"selector-pseudo-element-colon-notation": null, | ||
"unit-no-unknown": null, | ||
"value-list-max-empty-lines": null, | ||
"no-descending-specificity": null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
--- | ||
order: 1 | ||
title: Animate | ||
--- | ||
|
||
Animate the individual elements according to the state, and use them together with css or other third-party animation classes; specific ref [API](/api/animate) | ||
|
||
## When To Use | ||
|
||
- When the element state is switched; | ||
|
||
--- | ||
|
||
## How To Use | ||
|
||
### Install | ||
|
||
```bash | ||
$ npm install rc-animate --save | ||
``` | ||
|
||
### Usage | ||
|
||
```jsx | ||
var Animate = require('rc-animate'); | ||
var ReactDOM = require('react-dom'); | ||
ReactDOM.render(( | ||
<Animate showProp="visible" transitionName="fade"> | ||
{show ? <div visible key="1">demo</div> : null} | ||
</Animate> | ||
), container); | ||
``` | ||
> [Detailed use](https://github.com/react-component/animate/blob/master/docs/zh-cn/intro.md) | ||
## API | ||
|
||
### props | ||
|
||
| name | type | default | description | | ||
|-----------|----------|------------|-------------------| | ||
| showProp | String | null | using prop for show and hide. [demo](http://react-component.github.io/animate/examples/hide-todo.html) | | ||
| exclusive | Boolean | false | whether allow only one set of animations(enter and leave) at the same time. | | ||
| transitionName | String | null | specify corresponding css, see ReactCSSTransitionGroup | | ||
| transitionAppear | Boolean | false | whether support transition appear animate | | ||
| transitionEnter | Boolean | true | whether support transition enter animate | | ||
| transitionLeave | Boolean | true | whether support transition leave animate | | ||
| onEnd | Func | true | animation end callback, callBack(key: String, exists: Boolean); | | ||
| animation | Object | {} | to animate with js. see animation format below. | | ||
| component | React.Element/String | `span` | wrap dom node or component for children. set to '' if you do not wrap for only one child | | ||
| componentProps | Object | {} | extra props that will be passed to component | | ||
|
||
> `animation` case to see [demo](http://react-component.github.io/animate/) |
5 changes: 3 additions & 2 deletions
5
components/animate/index.md → components/animate/index.zh-CN.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.