- 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>
24 lines
736 B
TypeScript
24 lines
736 B
TypeScript
import '../build/polyfills/polyfill-module';
|
|
import type Router from '../shared/lib/router/router';
|
|
import type { MittEmitter } from '../shared/lib/mitt';
|
|
import type { NEXT_DATA } from '../shared/lib/utils';
|
|
declare global {
|
|
interface Window {
|
|
__NEXT_HYDRATED?: boolean;
|
|
__NEXT_HYDRATED_CB?: () => void;
|
|
__NEXT_DATA__: NEXT_DATA;
|
|
__NEXT_P: any[];
|
|
}
|
|
}
|
|
export declare const version: string | undefined;
|
|
export declare let router: Router;
|
|
export declare const emitter: MittEmitter<string>;
|
|
export declare function initialize(opts?: {
|
|
devClient?: any;
|
|
}): Promise<{
|
|
assetPrefix: string;
|
|
}>;
|
|
export declare function hydrate(opts?: {
|
|
beforeRender?: () => Promise<void>;
|
|
}): Promise<void>;
|