feature/fetch-fonts #14

Merged
ilia merged 76 commits from feature/fetch-fonts into main 2026-01-14 11:01:44 +00:00
Showing only changes of commit c863bea2dc - Show all commits

View File

@@ -0,0 +1,20 @@
<script lang="ts">
import {
Content as ItemContent,
Root as ItemRoot,
Title as ItemTitle,
} from '$shared/shadcn/ui/item';
import { VirtualList } from '$shared/ui';
import { fontCollection } from '../../model';
</script>
<VirtualList items={fontCollection.filteredFonts}>
{#snippet children({ item, index })}
<ItemRoot>
<ItemContent>
<ItemTitle>{item.name}</ItemTitle>
{item.name}
</ItemContent>
</ItemRoot>
{/snippet}
</VirtualList>