You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'aria-labelledby': PropTypes.string,// HTML ID of an element that should be used as the label (for assistive tech)
54
-
arrowRenderer: PropTypes.func,// Create drop-down caret element
53
+
'aria-labelledby': PropTypes.string,// HTML ID of an element that should be used as the label (for assistive tech)
54
+
arrowRenderer: PropTypes.func,// Create drop-down caret element
55
55
autoBlur: PropTypes.bool,// automatically blur the component when an option is selected
56
56
autofocus: PropTypes.bool,// autofocus the component on mount
57
57
autosize: PropTypes.bool,// whether to enable autosizing or not
58
58
backspaceRemoves: PropTypes.bool,// whether backspace removes an item if there is no text input
59
59
backspaceToRemoveMessage: PropTypes.string,// Message to use for screenreaders to press backspace to remove the current item - {label} is replaced with the item label
60
60
className: PropTypes.string,// className for the outer element
61
-
clearAllText: stringOrNode,// title for the "clear" control when multi: true
61
+
clearAllText: stringOrNode,// title for the "clear" control when multi: true
62
62
clearRenderer: PropTypes.func,// create clearable x element
63
-
clearValueText: stringOrNode,// title for the "clear" control
63
+
clearValueText: stringOrNode,// title for the "clear" control
64
64
clearable: PropTypes.bool,// should it be possible to reset value
65
65
deleteRemoves: PropTypes.bool,// whether backspace removes an item if there is no text input
66
66
delimiter: PropTypes.string,// delimiter to use to join multiple values for the hidden field value
@@ -84,12 +84,12 @@ const Select = createClass({
84
84
menuStyle: PropTypes.object,// optional style to apply to the menu
85
85
multi: PropTypes.bool,// multi-value input
86
86
name: PropTypes.string,// generates a hidden <input /> tag with this field name for html forms
87
-
noResultsText: stringOrNode,// placeholder displayed when there are no matching search results
87
+
noResultsText: stringOrNode,// placeholder displayed when there are no matching search results
88
88
onBlur: PropTypes.func,// onBlur handler: function (event) {}
89
89
onBlurResetsInput: PropTypes.bool,// whether input is cleared on blur
90
90
onChange: PropTypes.func,// onChange handler: function (newValue) {}
91
91
onClose: PropTypes.func,// fires when the menu is closed
92
-
onCloseResetsInput: PropTypes.bool,// whether input is cleared when menu is closed through the arrow
92
+
onCloseResetsInput: PropTypes.bool,// whether input is cleared when menu is closed through the arrow
93
93
onFocus: PropTypes.func,// onFocus handler: function (event) {}
94
94
onInputChange: PropTypes.func,// onInputChange handler: function (inputValue) {}
95
95
onInputKeyDown: PropTypes.func,// input keyDown handler: function (event) {}
@@ -103,7 +103,7 @@ const Select = createClass({
103
103
optionRenderer: PropTypes.func,// optionRenderer: function (option) {}
104
104
options: PropTypes.array,// array of options
105
105
pageSize: PropTypes.number,// number of entries to page when using page up/down keys
106
-
placeholder: stringOrNode,// field placeholder, displayed when there's no value
106
+
placeholder: stringOrNode,// field placeholder, displayed when there's no value
107
107
required: PropTypes.bool,// applies HTML5 required attribute when needed
108
108
resetValue: PropTypes.any,// value to use when you clear the control
109
109
scrollMenuIntoView: PropTypes.bool,// boolean to enable the viewport to shift so that the full menu fully visible when engaged
0 commit comments