mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
fixes #1138
This commit is contained in:
@@ -20,6 +20,7 @@ New versions of Shoelace are released as-needed and generally occur when a criti
|
||||
- Fixed a bug in `<sl-select>` that prevented placeholders from showing when `multiple` was used [#1109](https://github.com/shoelace-style/shoelace/issues/1109)
|
||||
- Fixed a bug in `<sl-select>` that caused tags to not be rounded when using the `pill` attribute [#1117](https://github.com/shoelace-style/shoelace/issues/1117)
|
||||
- Fixed a bug in `<sl-select>` where the `sl-change` and `sl-input` events didn't weren't emitted when removing tags [#1119](https://github.com/shoelace-style/shoelace/issues/1119)
|
||||
- Fixed a bug in `<sl-select>` that caused the listbox to scroll to the first selected item when selecting multiple items [#1138](https://github.com/shoelace-style/shoelace/issues/1138)
|
||||
- Fixed a bug in `<sl-color-picker>` that logged a console error when parsing swatches with whitespace
|
||||
- Fixed a bug in `<sl-color-picker>` that caused selected colors to be wrong due to incorrect HSV calculations
|
||||
- Fixed a bug in `<sl-radio-button>` that caused the checked button's right border to be incorrect [#1110](https://github.com/shoelace-style/shoelace/issues/1110)
|
||||
|
||||
@@ -460,7 +460,6 @@ export default class SlSelect extends ShoelaceElement implements ShoelaceFormCon
|
||||
option.current = true;
|
||||
option.tabIndex = 0;
|
||||
option.focus();
|
||||
scrollIntoView(option, this.listbox);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -475,9 +474,6 @@ export default class SlSelect extends ShoelaceElement implements ShoelaceFormCon
|
||||
// Set the new selection
|
||||
if (newSelectedOptions.length) {
|
||||
newSelectedOptions.forEach(el => (el.selected = true));
|
||||
|
||||
// Scroll the first selected option into view
|
||||
scrollIntoView(newSelectedOptions[0]!, this.listbox);
|
||||
}
|
||||
|
||||
// Update selection, value, and display label
|
||||
|
||||
Reference in New Issue
Block a user