@api-client/ui 0.5.46 → 0.5.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@api-client/ui",
3
- "version": "0.5.46",
3
+ "version": "0.5.47",
4
4
  "description": "Internal UI component library for the API Client ecosystem.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "build/src/index.js",
@@ -297,8 +297,8 @@ export default class UiListItem extends UiElement {
297
297
 
298
298
  protected renderEnd(): TemplateResult {
299
299
  return html`<div class="${classMap(this.getEndClasses())}">
300
- <slot name="end" @slotchange=${this.handleEndSlotChange}></slot>
301
300
  <slot name="end-text" class="trailing-supporting-text" @slotchange=${this.handleEndTextSlotChange}></slot>
301
+ <slot name="end" @slotchange=${this.handleEndSlotChange}></slot>
302
302
  </div>`
303
303
  }
304
304