chore(SetupFont): rename controlManager to typographySettingsStore for better semantic #37

Merged
ilia merged 83 commits from feature/united-widget into main 2026-04-22 10:04:41 +00:00
2 changed files with 15 additions and 1 deletions
Showing only changes of commit b12dc6257d - Show all commits
+1 -1
View File
@@ -20,7 +20,7 @@ let {
}: Props = $props(); }: Props = $props();
</script> </script>
<Input bind:value variant="underline" {...rest}> <Input bind:value variant="default" {...rest}>
{#snippet rightIcon(size)} {#snippet rightIcon(size)}
<SearchIcon size={inputIconSize[size]} /> <SearchIcon size={inputIconSize[size]} />
{/snippet} {/snippet}
@@ -0,0 +1,14 @@
<script lang="ts">
import { filterManager } from '$features/GetFonts';
import { SearchBar } from '$shared/ui';
</script>
<div class="p-6 border-b border-black/5">
<SearchBar
id="font-search"
class="w-full"
placeholder="Typeface Search"
bind:value={filterManager.queryValue}
fullWidth
/>
</div>