feat(enrich): field reordering, required-fields progress bar, and no-PDF upload state #267

Merged
marcel merged 20 commits from feat/issue-261-enrich-field-reorder-progress-bar-upload into main 2026-04-18 23:36:33 +02:00
Showing only changes of commit 3f07c4fe58 - Show all commits

View File

@@ -15,6 +15,7 @@ import type { Tag } from '$lib/components/TagInput.svelte';
import type { components } from '$lib/generated/api';
type Person = components['schemas']['Person'];
type Doc = components['schemas']['Document'];
let {
doc,
@@ -29,19 +30,7 @@ let {
topbar,
actionbar
}: {
doc: {
id: string;
filePath?: string | null;
originalFilename?: string | null;
title?: string | null;
documentDate?: string | null;
location?: string | null;
documentLocation?: string | null;
summary?: string | null;
sender?: { id: string; displayName: string } | null;
receivers?: Person[] | null;
tags?: Tag[] | null;
};
doc: Doc;
formId: string;
formAction: string;
formError?: string | null;