split: history-ui (new Svelte workspace)

New web UI for browsing vault history. Svelte + Vite app with components
for activity feed, dashboard, document detail, diff view, file tree,
header, login, time slider, toast container, vault picker; lib/api.ts and
stores.svelte.ts for client state. (Generated TS types were added in
PR6.)
This commit is contained in:
Andras Schmelczer 2026-05-08 21:37:37 +01:00
commit 5a070340f1
22 changed files with 3660 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VaultLink2</title>
<link rel="icon" href="data:," />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>