diff --git a/src/components/tree-item/tree-item.component.ts b/src/components/tree-item/tree-item.component.ts index 4fe9f733..d5d78539 100644 --- a/src/components/tree-item/tree-item.component.ts +++ b/src/components/tree-item/tree-item.component.ts @@ -46,6 +46,8 @@ import type { CSSResultGroup, PropertyValueMap } from 'lit'; * @csspart item--selected - Applied when the tree item is selected. * @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. @@ -257,7 +259,7 @@ export default class SlTreeItem extends ShoelaceElement { })} aria-hidden="true" > - ${when(this.loading, () => html` `)} + ${when(this.loading, () => html` `)}