- Backend: ListWorkspaceTree/ListWorkspaceChildren filter to container types only (case, client, project, folder, document, recipe) - TreeNode: full-row context menu (removed label stopPropagation), double-click toggles expand, icon-click toggles expand, DnD auto-expand on 500ms hover, auto-scroll near edges, drag-over highlight via classList - App.svelte: toggleExpand uses ListWorkspaceChildren, submitCreateNode uses ListWorkspaceChildren for child tree population - Note/file nodes no longer appear in the sidebar workspace tree
26 lines
673 B
HTML
26 lines
673 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/wails.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Верстак</title>
|
|
<style>
|
|
/* Critical reset — no white borders, full viewport */
|
|
html, body, #app {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background: #13131f;
|
|
}
|
|
</style>
|
|
<script type="module" crossorigin src="/assets/main-Dt9BLCiY.js"></script>
|
|
<link rel="stylesheet" crossorigin href="/assets/main-CHi9sCXv.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html>
|