-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
I found that the plugin had issues when used with createReactClass
example:
var SelectBox = createReactClass({
propTypes: {
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
selectId: PropTypes.string.isRequired,
fullwidth: PropTypes.bool.isRequired
},
...
});
Seems to somewhat work on createReactClass components as long as the the propTypes declaration is not two deep like a PropTypes.string.isRequired
or as long as functions are not used like: PropTypes.oneOfType()
, PropTypes.arrayOf()
, or PropTypes.shape()
. Almost like PropTypes is being replaced with an empty object.
nspector
Metadata
Metadata
Assignees
Labels
No labels