- 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>
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
type URLPatternInput = URLPatternInit | string;
|
|
|
|
declare class URLPattern {
|
|
constructor(init?: URLPatternInput, baseURL?: string);
|
|
|
|
test(input?: URLPatternInput, baseURL?: string): boolean;
|
|
|
|
exec(input?: URLPatternInput, baseURL?: string): URLPatternResult | null;
|
|
|
|
readonly protocol: string;
|
|
readonly username: string;
|
|
readonly password: string;
|
|
readonly hostname: string;
|
|
readonly port: string;
|
|
readonly pathname: string;
|
|
readonly search: string;
|
|
readonly hash: string;
|
|
}
|
|
|
|
interface URLPatternInit {
|
|
baseURL?: string;
|
|
username?: string;
|
|
password?: string;
|
|
protocol?: string;
|
|
hostname?: string;
|
|
port?: string;
|
|
pathname?: string;
|
|
search?: string;
|
|
hash?: string;
|
|
}
|
|
|
|
interface URLPatternResult {
|
|
inputs: [URLPatternInput];
|
|
protocol: URLPatternComponentResult;
|
|
username: URLPatternComponentResult;
|
|
password: URLPatternComponentResult;
|
|
hostname: URLPatternComponentResult;
|
|
port: URLPatternComponentResult;
|
|
pathname: URLPatternComponentResult;
|
|
search: URLPatternComponentResult;
|
|
hash: URLPatternComponentResult;
|
|
}
|
|
|
|
interface URLPatternComponentResult {
|
|
input: string;
|
|
groups: {
|
|
[key: string]: string | undefined;
|
|
};
|
|
}
|
|
|
|
declare const _URL: typeof URL
|
|
declare const _URLSearchParams: typeof URLSearchParams
|
|
declare class _URLPattern extends URLPattern {}
|
|
|
|
export { _URL as URL, _URLPattern as URLPattern, _URLSearchParams as URLSearchParams };
|