refactor(features, widgets): update ThemeManager, FontSampler, FontSearch, and SampleList

This commit is contained in:
Ilia Mashkov
2026-03-02 22:20:48 +03:00
parent 0fa3437661
commit 55e2efc222
14 changed files with 1512 additions and 115 deletions

View File

@@ -20,11 +20,18 @@ import {
import { fly } from 'svelte/transition';
interface Props {
/** Font info */
/**
* Font info
*/
font: UnifiedFont;
/** Editable sample text */
/**
* Sample text
*/
text: string;
/** Position index — drives the staggered entrance delay */
/**
* Position index
* @default 0
*/
index?: number;
}