Skip to content

Commit

Permalink
Merge eb30067 into c1c956b
Browse files Browse the repository at this point in the history
  • Loading branch information
ztplz committed Aug 8, 2019
2 parents c1c956b + eb30067 commit 54d08f6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/Collapse.jsx
Expand Up @@ -141,11 +141,19 @@ Collapse.propTypes = {
prefixCls: PropTypes.string,
activeKey: PropTypes.oneOfType([
PropTypes.string,
PropTypes.arrayOf(PropTypes.string),
PropTypes.number,
PropTypes.arrayOf(PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
])),
]),
defaultActiveKey: PropTypes.oneOfType([
PropTypes.string,
PropTypes.arrayOf(PropTypes.string),
PropTypes.number,
PropTypes.arrayOf(PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
])),
]),
openAnimation: PropTypes.object,
onChange: PropTypes.func,
Expand Down

0 comments on commit 54d08f6

Please sign in to comment.