Fix autocomplete select bug

pull/268/head
Cory LaViska 2020-11-05 09:10:02 -05:00
rodzic 688802b792
commit c82dd0bb3c
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -12,6 +12,7 @@ _During the beta period, these restrictions may be relaxed in the event of a mis
- Added experimental `sl-theme` utility and updated theming documentation
- Added `closable` prop to `sl-tab`
- Fixed a bug where `sl-menu-item` wouldn't render properly in the dark theme
- Fixed a bug where `sl-select` would show an autocomplete menu
- Improved placeholder contrast in dark theme
- Updated Boostrap Icons to 1.1.0

Wyświetl plik

@ -454,6 +454,9 @@ export class Select {
invalid={this.invalid}
clearable={this.clearable}
required={this.required}
autocapitalize="off"
autocomplete="off"
autocorrect="off"
aria-labelledby={this.labelId}
aria-describedby={this.helpTextId}
onSl-focus={this.handleFocus}