chore(FontSearch): documentation change

This commit is contained in:
Ilia Mashkov
2026-01-17 09:19:47 +03:00
parent 8c0c91deb7
commit 247b683c87

View File

@@ -1,3 +1,8 @@
<!--
Component: FontSearch
Combines search input with font list display
-->
<script lang="ts"> <script lang="ts">
import { import {
FontList, FontList,
@@ -8,12 +13,6 @@ import { onMount } from 'svelte';
import { mapManagerToParams } from '../../lib'; import { mapManagerToParams } from '../../lib';
import { filterManager } from '../../model'; import { filterManager } from '../../model';
/**
* FontSearch
*
* Font search component with search input and font list display.
* Uses unifiedFontStore for all font operations and search state.
*/
onMount(() => { onMount(() => {
/** /**
* The Pairing: * The Pairing:
@@ -24,8 +23,6 @@ onMount(() => {
return unbind; return unbind;
}); });
$inspect(filterManager.queryValue, filterManager.debouncedQueryValue);
</script> </script>
<SearchBar <SearchBar