react: All the <Dashboard /> propTypes

This commit is contained in:
Renée Kooi 2017-09-13 18:01:14 +02:00
parent cfe636d849
commit 6cf3f45bc3
No known key found for this signature in database
GPG key ID: 30516CF2A8E63718

View file

@ -41,8 +41,15 @@ class Dashboard extends React.Component {
Dashboard.propTypes = {
uppy: PropTypes.instanceOf(UppyCore).isRequired,
plugins: PropTypes.arrayOf(PropTypes.string),
inline: PropTypes.bool,
plugins: PropTypes.arrayOf(PropTypes.string)
width: PropTypes.number,
height: PropTypes.number,
semiTransparent: PropTypes.bool,
showProgressDetails: PropTypes.bool,
hideUploadButton: PropTypes.bool,
note: PropTypes.string,
locale: PropTypes.object
}
Dashboard.defaultProps = {
inline: true