From 19d97136a55217de51f1a70afcb0755d44516f5d Mon Sep 17 00:00:00 2001 From: oconnorct1 Date: Tue, 9 May 2017 21:06:11 -0400 Subject: [PATCH] grumbles --- js/src/ui/Dropdown/dropdown.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/src/ui/Dropdown/dropdown.js b/js/src/ui/Dropdown/dropdown.js index 5a071f032..401bfef1f 100644 --- a/js/src/ui/Dropdown/dropdown.js +++ b/js/src/ui/Dropdown/dropdown.js @@ -61,6 +61,7 @@ export default function Dropdown ({ defaultValue, disabled, fullWidth, fluid, hi Dropdown.propTypes = { defaultValue: PropTypes.number, // Initial value via index. disabled: PropTypes.bool, // A disabled dropdown menu or item does not allow user interaction. + fullWidth: PropTypes.bool, // A dropdown can take the full width of its parent. fluid: PropTypes.bool, // A dropdown can take the full width of its parent. icon: PropTypes.any, // Shorthand for Icon. name: PropTypes.func, // Name of the hidden input which holds the value. @@ -70,6 +71,7 @@ Dropdown.propTypes = { onClose: PropTypes.func, // Called on close. onFocus: PropTypes.func, // Called on focus. options: PropTypes.any, // Array of Dropdown.Item props e.g. `{ text: '', value: '' }` + hint: PropTypes.string, // Placeholder text. placeholder: PropTypes.string, // Placeholder text. scrolling: PropTypes.bool, // A dropdown can have its menu scroll. search: PropTypes.bool, // A selection dropdown can allow a user to search through a large list of choices.