notebook drag-and-drop, nested list fix, macOS updates, search bar auto-close

This commit is contained in:
Yuri Karamian
2026-02-13 23:35:30 +01:00
parent f32f77dcd5
commit a88fcbefba
14 changed files with 385 additions and 70 deletions
+7
View File
@@ -60,6 +60,13 @@ export async function deleteNotebook(path: string): Promise<void> {
return invoke("delete_notebook", { path });
}
export async function moveNotebook(
notebookPath: string,
destParent: string,
): Promise<string> {
return invoke("move_notebook", { notebookPath, destParent });
}
export async function getNotes(
notebookPath: string | null,
): Promise<NoteEntry[]> {