- Foldable left panel (user profile) and right panel (task details) - Clicking a task in the list or graph node selects it and shows details - Both views (task list + graph) always mounted via absolute inset-0 for correct canvas dimensions; tabs toggle visibility with opacity - Graph node selection animation: other nodes repel outward (charge -600), then selected node smoothly slides to center (500ms cubic ease-out), then charge restores to -120 and graph stabilizes - Graph re-fits on tab switch and panel resize via ResizeObserver - Fix UUID string IDs throughout (backend returns UUIDs, not integers) - Add TaskDetailPanel, UserPanel components - Add CLAUDE.md project documentation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
617 B
TypeScript
10 lines
617 B
TypeScript
import { AppPathnameNormalizer } from '../server/future/normalizers/built/app/app-pathname-normalizer';
|
|
/**
|
|
* This function will transform the appPaths in order to support catch-all routes and parallel routes.
|
|
* It will traverse the appPaths, looking for catch-all routes and try to find parallel routes that could match
|
|
* the catch-all. If it finds a match, it will add the catch-all to the parallel route's list of possible routes.
|
|
*
|
|
* @param appPaths The appPaths to transform
|
|
*/
|
|
export declare function normalizeCatchAllRoutes(appPaths: Record<string, string[]>, normalizer?: AppPathnameNormalizer): void;
|