fix(dees-simple-appdash): Fix icon rendering in dees-simple-appdash to respect provided icon strings

This commit is contained in:
2025-09-05 15:26:19 +00:00
parent c0dbc3c0d0
commit 911159ee55
3 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## 2025-09-05 - 1.10.12 - fix(dees-simple-appdash)
Fix icon rendering in dees-simple-appdash to respect provided icon strings
- dees-simple-appdash: stop forcing a 'lucide:' prefix when rendering view icons — use the icon string as provided.
- Prevents incorrect/missing icons when the iconName already includes a library prefix (e.g. 'fa:' or 'lucide:').
## 2025-09-05 - 1.10.11 - fix(dees-simple-appdash) ## 2025-09-05 - 1.10.11 - fix(dees-simple-appdash)
Bump deps and fix dees-simple-appdash icon binding and terminal sizing Bump deps and fix dees-simple-appdash icon binding and terminal sizing

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.10.11', version: '1.10.12',
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
} }

View File

@@ -250,7 +250,7 @@ export class DeesSimpleAppDash extends DeesElement {
@click=${() => this.loadView(view)} @click=${() => this.loadView(view)}
> >
${view.iconName ? html` ${view.iconName ? html`
<dees-icon .icon="${`lucide:${view.iconName}`}"></dees-icon> <dees-icon .icon="${`${view.iconName}`}"></dees-icon>
` : ''} ` : ''}
<span style="flex: 1;">${view.name}</span> <span style="flex: 1;">${view.name}</span>
</div> </div>