feat: table view overhaul - drag resize, drag reorder, multi-sort headers, tree grouping

This commit is contained in:
Agent Zero
2026-07-28 15:21:03 +02:00
parent 0a92717710
commit dbf804f0e3
2 changed files with 575 additions and 91 deletions
+8
View File
@@ -571,6 +571,10 @@ export function ContactsListPage() {
sortBy={sortBy}
sortOrder={sortOrder}
onSortChange={handleSortChange}
sortState={sortState}
onSortStateChange={setSortState}
groupState={groupState}
groupedContacts={groupedContacts}
/>
</div>
</ResizablePanel>
@@ -642,6 +646,10 @@ export function ContactsListPage() {
sortBy={sortBy}
sortOrder={sortOrder}
onSortChange={handleSortChange}
sortState={sortState}
onSortStateChange={setSortState}
groupState={groupState}
groupedContacts={groupedContacts}
/>
</div>
)}