feat: refactor frontend sidepanel to detailPanel naming.

This commit is contained in:
2025-12-10 03:56:17 +01:00
parent 9d13365348
commit ae002b99f0
3 changed files with 8 additions and 6 deletions
@@ -45,6 +45,8 @@ interface UseDetailWorkspaceResult {
openDetailPanel: ReturnType<typeof useDetailPanel>['openDetailPanel'];
closeDetailPanel: ReturnType<typeof useDetailPanel>['closeDetailPanel'];
handleDetailPanelClose: () => void;
previewActive: boolean;
previewWorkspaceDocument: Document | null;
resolveThumbnailUrlForDoc: (doc: Document | null) => string | null;
resolveFolderPath: (folderId?: Identifier | 'root') => Array<{ id: Identifier | 'root'; name: string }>;
}