pull/768/head
Cory LaViska 2022-05-27 07:43:42 -04:00
rodzic 79306e0618
commit 9e747e7c2e
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -17,6 +17,7 @@ _During the beta period, these restrictions may be relaxed in the event of a mis
- Fixed a bug that caused `<sl-checkbox>` and `<sl-radio>` controls without a `value` to submit as `null` instead of `on` like native inputs [#744](https://github.com/shoelace-style/shoelace/issues/744)
- Fixed a bug that caused `<sl-dropdown>` and dependent components to add unexpected padding around the panel [#743](https://github.com/shoelace-style/shoelace/issues/743)
- Fixed a bug that prevented `valueAsDate` and `valueAsNumber` from updating synchronously [#760](https://github.com/shoelace-style/shoelace/issues/760)
- Fixed a bug that caused `<sl-menu-item>` to load icons from the default library instead of the system library [#765](https://github.com/shoelace-style/shoelace/issues/765)
- Improved behavior of clearable and password toggle buttons in `<sl-input>` and `<sl-select>` [#745](https://github.com/shoelace-style/shoelace/issues/745)
- Improved performance of `<sl-select>` by caching menu items instead of traversing for them each time
- Improved drag utility so initial click/touch events can be accepted [#758](https://github.com/shoelace-style/shoelace/issues/758)

Wyświetl plik

@ -89,7 +89,7 @@ export default class SlMenuItem extends LitElement {
})}
>
<span class="menu-item__check">
<sl-icon name="check-lg" library="default" aria-hidden="true"></sl-icon>
<sl-icon name="check-lg" library="system" aria-hidden="true"></sl-icon>
</span>
<span part="prefix" class="menu-item__prefix">
@ -105,7 +105,7 @@ export default class SlMenuItem extends LitElement {
</span>
<span class="menu-item__chevron">
<sl-icon name="chevron-right" library="default" aria-hidden="true"></sl-icon>
<sl-icon name="chevron-right" library="system" aria-hidden="true"></sl-icon>
</span>
</div>
`;