Phase 1 MVP - Complete implementation

- Login with JWT and refresh token rotation
- Dashboard with projects cards
- ProjectView with TreeView navigation
- DocumentView with markdown editor and auto-save
- Tag management (create, assign, remove)
- Dark mode CSS variables
- Security fixes applied (logout to backend, createDocument endpoint)
This commit is contained in:
Motoko
2026-03-30 15:17:29 +00:00
commit c9cb07dbfc
1341 changed files with 1084068 additions and 0 deletions

6
node_modules/muggle-string/out/segment.d.ts generated vendored Normal file
View File

@@ -0,0 +1,6 @@
import { Segment, Range } from './types';
export declare function segment(text: string): Segment;
export declare function segment(text: string, start: number | Range): Segment;
export declare function segment<T>(text: string, start: number | Range, data: T): Segment<T>;
export declare function segment(text: string, source: string, start: number | Range): Segment;
export declare function segment<T>(text: string, source: string, start: number | Range, data: T): Segment<T>;