feat: add inline editing for extracted data and autocomplete for tagging

- Add EditableField component for inline editing of any field
- Update DataRow, LocataireCard, OperationCard to support inline editing
- Add CRUD operations for locataires and operations (add/remove)
- Update JsonViewer to propagate changes via v-model
- Add TagAutocomplete component with search/filter functionality
- Replace select dropdown with autocomplete in TaggingStep
This commit is contained in:
2026-01-19 22:02:28 +01:00
parent aac4d194e3
commit cae8d5b963
8 changed files with 1041 additions and 129 deletions

View File

@@ -106,7 +106,8 @@
<!-- JSON Viewer (only shown when not tagging) -->
<JsonViewer
v-if="pdfFile && !showTagging"
:data="extractedData"
:data="extractedData"
@update:data="extractedData = $event"
:is-loading="isExtracting"
class="flex-1 overflow-hidden"
/>