We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41b5bf3 commit e518233Copy full SHA for e518233
packages/common/src/select/index.js
@@ -35,6 +35,7 @@ const Select = ({
35
onChange,
36
loadOptionsChangeCounter,
37
SelectComponent,
38
+ noValueUpdates,
39
...props
40
}) => {
41
const [state, dispatch] = useReducer(reducer, {
@@ -175,7 +176,8 @@ Select.propTypes = {
175
176
updatingMessage: PropTypes.node,
177
noOptionsMessage: PropTypes.node,
178
isSearchable: PropTypes.bool,
- SelectComponent: PropTypes.elementType.isRequired
179
+ SelectComponent: PropTypes.elementType.isRequired,
180
+ noValueUpdates: PropTypes.bool
181
};
182
183
Select.defaultProps = {
0 commit comments