Skip to content

Commit bd0fd68

Browse files
authored
make it clearer that it works for 5 too (#861)
1 parent 319d2f5 commit bd0fd68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ highlightOnlyResult | boolean | false | Highlights the menu item if there is onl
4444
id `required` | string or number | | An html id attribute, required for assistive technologies such as screen readers.
4545
ignoreDiacritics | boolean | true | Whether the filter should ignore accents and other diacritical marks.
4646
inputProps | object | {} | Props to be applied directly to the input. `onBlur`, `onChange`, `onFocus`, and `onKeyDown` are ignored.
47-
isInvalid | boolean | false | Adds the `is-invalid` classname to the `form-control`. Only affects Bootstrap 4.
47+
isInvalid | boolean | false | Adds the `is-invalid` classname to the `form-control`. Only affects Bootstrap 4 and above.
4848
isLoading | boolean | false | Indicate whether an asynchronous data fetch is happening.
49-
isValid | boolean | false | Adds the `is-valid` classname to the `form-control`. Only affects Bootstrap 4.
49+
isValid | boolean | false | Adds the `is-valid` classname to the `form-control`. Only affects Bootstrap 4 and above.
5050
labelKey | string \| function | `'label'` | See full documentation in the [Rendering section](Rendering.md#labelkey-string--function).
5151
minLength | number | 0 | Minimum user input before displaying results.
5252
onChange | function | | Invoked when the set of selections changes (ie: an item is added or removed). For consistency, `selected` is always an array of selections, even if multi-selection is not enabled. <br><br><pre>`(selected: Array<Object\|string>) => void`</pre>

0 commit comments

Comments
 (0)