feat(controlManager): integrate persistent storage into control manager to keep typography settings between sessions

This commit is contained in:
Ilia Mashkov
2026-02-07 11:28:13 +03:00
parent 0ff8aec8f9
commit 49f5564cc9
2 changed files with 150 additions and 28 deletions

View File

@@ -45,7 +45,7 @@ let {
}: Props = $props();
const fontWeight = $derived(controlManager.weight);
const fontSize = $derived(controlManager.size);
const fontSize = $derived(controlManager.renderedSize);
const lineHeight = $derived(controlManager.height);
const letterSpacing = $derived(controlManager.spacing);