- 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>
51 lines
1.9 KiB
TypeScript
51 lines
1.9 KiB
TypeScript
/// <reference types="node" />
|
|
/// <reference types="node" />
|
|
import type { ServerResponse, IncomingMessage } from 'http';
|
|
import type { Writable, Readable } from 'stream';
|
|
import { SYMBOL_CLEARED_COOKIES } from '../api-utils';
|
|
import type { NextApiRequestCookies } from '../api-utils';
|
|
import { NEXT_REQUEST_META } from '../request-meta';
|
|
import type { RequestMeta } from '../request-meta';
|
|
import { BaseNextRequest, BaseNextResponse, type FetchMetric } from './index';
|
|
import type { OutgoingHttpHeaders } from 'node:http';
|
|
type Req = IncomingMessage & {
|
|
[NEXT_REQUEST_META]?: RequestMeta;
|
|
cookies?: NextApiRequestCookies;
|
|
fetchMetrics?: FetchMetric[];
|
|
};
|
|
export declare class NodeNextRequest extends BaseNextRequest<Readable> {
|
|
private _req;
|
|
headers: import("http").IncomingHttpHeaders;
|
|
fetchMetrics?: FetchMetric[];
|
|
[NEXT_REQUEST_META]: RequestMeta;
|
|
get originalRequest(): Req;
|
|
set originalRequest(value: Req);
|
|
constructor(_req: Req);
|
|
}
|
|
export declare class NodeNextResponse extends BaseNextResponse<Writable> {
|
|
private _res;
|
|
private textBody;
|
|
[SYMBOL_CLEARED_COOKIES]?: boolean;
|
|
get originalResponse(): ServerResponse<IncomingMessage> & {
|
|
[SYMBOL_CLEARED_COOKIES]?: boolean | undefined;
|
|
};
|
|
constructor(_res: ServerResponse & {
|
|
[SYMBOL_CLEARED_COOKIES]?: boolean;
|
|
});
|
|
get sent(): boolean;
|
|
get statusCode(): number;
|
|
set statusCode(value: number);
|
|
get statusMessage(): string;
|
|
set statusMessage(value: string);
|
|
setHeader(name: string, value: string | string[]): this;
|
|
removeHeader(name: string): this;
|
|
getHeaderValues(name: string): string[] | undefined;
|
|
hasHeader(name: string): boolean;
|
|
getHeader(name: string): string | undefined;
|
|
getHeaders(): OutgoingHttpHeaders;
|
|
appendHeader(name: string, value: string): this;
|
|
body(value: string): this;
|
|
send(): void;
|
|
}
|
|
export {};
|