Add missing PropType declarations.
This commit is contained in:
parent
702380c591
commit
369cbdaaf6
1 changed files with 10 additions and 0 deletions
|
@ -30,11 +30,21 @@ module.exports = {
|
||||||
ContextualMenuContainerId: "mx_ContextualMenu_Container",
|
ContextualMenuContainerId: "mx_ContextualMenu_Container",
|
||||||
|
|
||||||
propTypes: {
|
propTypes: {
|
||||||
|
top: PropTypes.number,
|
||||||
|
bottom: PropTypes.number,
|
||||||
|
left: PropTypes.number,
|
||||||
|
right: PropTypes.number,
|
||||||
menuWidth: PropTypes.number,
|
menuWidth: PropTypes.number,
|
||||||
menuHeight: PropTypes.number,
|
menuHeight: PropTypes.number,
|
||||||
chevronOffset: PropTypes.number,
|
chevronOffset: PropTypes.number,
|
||||||
menuColour: PropTypes.string,
|
menuColour: PropTypes.string,
|
||||||
chevronFace: PropTypes.string, // top, bottom, left, right
|
chevronFace: PropTypes.string, // top, bottom, left, right
|
||||||
|
// Function to be called on menu close
|
||||||
|
onFinished: PropTypes.func,
|
||||||
|
menuPaddingTop: PropTypes.number,
|
||||||
|
menuPaddingRight: PropTypes.number,
|
||||||
|
menuPaddingBottom: PropTypes.number,
|
||||||
|
menuPaddingLeft: PropTypes.number,
|
||||||
},
|
},
|
||||||
|
|
||||||
getOrCreateContainer: function() {
|
getOrCreateContainer: function() {
|
||||||
|
|
Loading…
Reference in a new issue