- 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>
23 lines
927 B
TypeScript
23 lines
927 B
TypeScript
/// <reference types="node" />
|
|
import type { IncomingMessage } from 'http';
|
|
import type { DevBundler } from './router-utils/setup-dev-bundler';
|
|
import type { WorkerRequestHandler } from './types';
|
|
/**
|
|
* The DevBundlerService provides an interface to perform tasks with the
|
|
* bundler while in development.
|
|
*/
|
|
export declare class DevBundlerService {
|
|
private readonly bundler;
|
|
private readonly handler;
|
|
constructor(bundler: DevBundler, handler: WorkerRequestHandler);
|
|
ensurePage: typeof this.bundler.hotReloader.ensurePage;
|
|
logErrorWithOriginalStack: typeof this.bundler.logErrorWithOriginalStack;
|
|
getFallbackErrorComponents(url?: string): Promise<void>;
|
|
getCompilationError(page: string): Promise<any>;
|
|
revalidate({ urlPath, revalidateHeaders, opts: revalidateOpts, }: {
|
|
urlPath: string;
|
|
revalidateHeaders: IncomingMessage['headers'];
|
|
opts: any;
|
|
}): Promise<{}>;
|
|
}
|