feat/issue-283-sender-receiver-grouping #284

Merged
marcel merged 8 commits from feat/issue-283-sender-receiver-grouping into main 2026-04-20 11:29:34 +02:00
Showing only changes of commit 4cdec7ec71 - Show all commits

View File

@@ -7,6 +7,8 @@ import type { components } from '$lib/generated/api';
type DocumentSearchItem = components['schemas']['DocumentSearchItem']; type DocumentSearchItem = components['schemas']['DocumentSearchItem'];
type SortMode = 'DATE' | 'TITLE' | 'SENDER' | 'RECEIVER' | 'UPLOAD_DATE' | 'RELEVANCE';
let { let {
items, items,
canWrite, canWrite,
@@ -20,7 +22,7 @@ let {
error?: string | null; error?: string | null;
total?: number; total?: number;
q?: string; q?: string;
sort?: string; sort?: SortMode;
} = $props(); } = $props();
const groups = $derived.by(() => { const groups = $derived.by(() => {