Add spinner__base to exportparts of tree-item

pull/1937/head
mwalklandIDBS 2024-03-25 14:50:23 +00:00
rodzic e22b4eb492
commit f951083003
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -47,6 +47,7 @@ import type { CSSResultGroup, PropertyValueMap } from 'lit';
* @csspart indentation - The tree item's indentation container.
* @csspart expand-button - The container that wraps the tree item's expand button and spinner.
* @csspart spinner - The spinner that shows when a lazy tree item is in the loading state.
* @csspart spinner__base - The spinner's base part.
* @csspart label - The tree item's label.
* @csspart children - The container that wraps the tree item's nested children.
* @csspart checkbox - The checkbox that shows when using multiselect.
@ -258,7 +259,7 @@ export default class SlTreeItem extends ShoelaceElement {
})}
aria-hidden="true"
>
${when(this.loading, () => html` <sl-spinner part="spinner"></sl-spinner> `)}
${when(this.loading, () => html` <sl-spinner part="spinner" exportparts="base:spinner__base"></sl-spinner> `)}
<slot class="tree-item__expand-icon-slot" name="expand-icon">
<sl-icon library="system" name=${isRtl ? 'chevron-left' : 'chevron-right'}></sl-icon>
</slot>