pull/1392/head
Cory LaViska 2023-06-21 09:46:32 -04:00
rodzic 854db13bd7
commit c683902b8d
2 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -12,6 +12,10 @@ Components with the <sl-badge variant="warning" pill>Experimental</sl-badge> bad
New versions of Shoelace are released as-needed and generally occur when a critical mass of changes have accumulated. At any time, you can see what's coming in the next release by visiting [next.shoelace.style](https://next.shoelace.style).
## Next
- Fixed a regression that caused slotted styles to not work in `<sl-select>` [#1387](https://github.com/shoelace-style/shoelace/issues/1387)
## 2.5.0
This release [unbundles Lit](https://github.com/shoelace-style/shoelace/issues/559) (and other dependencies) from Shoelace. There are now two distributions for the project:

Wyświetl plik

@ -311,11 +311,11 @@ export default css`
max-height: var(--auto-size-available-height);
}
.select__listbox::slotted(sl-divider) {
.select__listbox ::slotted(sl-divider) {
--spacing: var(--sl-spacing-x-small);
}
.select__listbox::slotted(small) {
.select__listbox ::slotted(small) {
font-size: var(--sl-font-size-small);
font-weight: var(--sl-font-weight-semibold);
color: var(--sl-color-neutral-500);