chore: import/export changes due to code move

This commit is contained in:
Ilia Mashkov
2026-01-13 20:04:02 +03:00
parent 2f15148cdb
commit 170c8546d3
2 changed files with 9 additions and 6 deletions

View File

@@ -3,7 +3,10 @@ import type { Filter } from '$shared/lib';
import { Badge } from '$shared/shadcn/ui/badge';
import { buttonVariants } from '$shared/shadcn/ui/button';
import { Checkbox } from '$shared/shadcn/ui/checkbox';
import * as Collapsible from '$shared/shadcn/ui/collapsible';
import {
Root as CollapsibleRoot,
Trigger as CollapsibleTrigger,
} from '$shared/shadcn/ui/collapsible';
import { Label } from '$shared/shadcn/ui/label';
import ChevronDownIcon from '@lucide/svelte/icons/chevron-down';
import { onMount } from 'svelte';
@@ -66,13 +69,13 @@ const hasSelection = $derived(selectedCount > 0);
</script>
<!-- Collapsible card wrapper with subtle hover state for affordance -->
<Collapsible.Root
<CollapsibleRoot
bind:open={isOpen}
class="w-full rounded-lg border bg-card transition-colors hover:bg-accent/5"
>
<!-- Trigger row: title, expand indicator, and optional count badge -->
<div class="flex items-center justify-between px-4 py-2">
<Collapsible.Trigger
<CollapsibleTrigger
class={buttonVariants({
variant: 'ghost',
size: 'sm',
@@ -101,7 +104,7 @@ const hasSelection = $derived(selectedCount > 0);
>
<ChevronDownIcon class="h-4 w-4" />
</div>
</Collapsible.Trigger>
</CollapsibleTrigger>
</div>
<!-- Expandable content with slide animation -->
@@ -154,4 +157,4 @@ const hasSelection = $derived(selectedCount > 0);
</div>
</div>
{/if}
</Collapsible.Root>
</CollapsibleRoot>

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import { FontSearch } from '$features/FetchFonts';
import { FontSearch } from '$features/GetFonts';
import SetupFontMenu from '$features/SetupFont/ui/SetupFontMenu.svelte';
import {
Content as ItemContent,