refactor: move shared components to lib/shared/ sub-packages

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-05 14:40:14 +02:00
parent d6db7a07bd
commit efcc347c00
84 changed files with 43 additions and 43 deletions

View File

@@ -1,6 +1,6 @@
<script lang="ts">
import PersonChip from './PersonChip.svelte';
import OverflowPillDisplay from '$lib/components/OverflowPillDisplay.svelte';
import OverflowPillDisplay from '$lib/shared/primitives/OverflowPillDisplay.svelte';
type Person = { id: string; firstName?: string | null; lastName: string; displayName: string };