update changelog

This commit is contained in:
Cory LaViska
2023-09-13 11:51:50 -04:00
parent 317d567fe8
commit c858bc3723
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ New versions of Shoelace are released as-needed and generally occur when a criti
## Next
- Fixed a bug in the autoloader causing it to register non-Shoelace elements [#1563]
- Fixed a bug in `<sl-switch>` that resulted in improper spacing between the label and the required asterisk [#1540]
- Updated `@ctrl/tinycolor` to 4.0.1 [#1542]
- Updated Bootstrap Icons to 1.11.0

View File

@@ -20,7 +20,7 @@ export async function discover(root: Element | ShadowRoot) {
.map(el => el.tagName.toLowerCase())
.filter(tag => tag.startsWith('sl-'));
// If the root element is an undefined shoelace custom element, add it to the list
// If the root element is an undefined Shoelace component, add it to the list
if (rootIsShoelaceElement && !customElements.get(rootTagName)) {
tags.push(rootTagName);
}