wip: in-progress feature work (manual entry, collection view)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-07 15:28:34 +02:00
parent bd023acdd2
commit 41e58d0153
9 changed files with 42 additions and 23 deletions

View File

@@ -223,6 +223,7 @@ export const iconGroups: IconGroup[] = [
// --- LucideIcon render component ---
function toPascalCase(str: string): string {
if (!str) return "Package";
return str
.split("-")
.map((s) => s.charAt(0).toUpperCase() + s.slice(1))