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
- Allow additional props such as data-testid to be passed to the inner select component.
- Add more useful select autocomplete styleguide example.
- Set the input icon button loading style to transparent.
{!isValueInOptions &&<Alert type="warning" style={{ marginTop:10 }}>"{value}" is not an option</Alert>}
65
-
</>
64
+
{!isValueInOptions && (
65
+
<Alert type="warning" style={{ marginTop:10 }}>
66
+
"{value}" is not an option
67
+
</Alert>
68
+
)}
69
+
</>;
66
70
```
67
71
68
72
## Variations
69
73
70
74
### Autocomplete
71
75
72
-
With `type` set to `autocomplete`, the `Select` input will accept text and provide filtered menu options accordingly. Full keyboard navigation of the menu options is retained.
76
+
With `type` set to `autocomplete`, the `Select` input will accept text and the menu options can be filtered accordingly. Full keyboard navigation of the menu options is retained.
0 commit comments