- 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>
16 lines
800 B
TypeScript
16 lines
800 B
TypeScript
import type { ResolvedMetadata, Viewport } from '../types/metadata-interface';
|
|
import type { FieldResolver, FieldResolverExtraArgs, MetadataContext } from '../types/resolvers';
|
|
export declare const resolveThemeColor: FieldResolver<'themeColor', Viewport>;
|
|
export declare const resolveAlternates: FieldResolverExtraArgs<'alternates', [
|
|
ResolvedMetadata['metadataBase'],
|
|
MetadataContext
|
|
]>;
|
|
export declare const resolveRobots: FieldResolver<'robots'>;
|
|
export declare const resolveVerification: FieldResolver<'verification'>;
|
|
export declare const resolveAppleWebApp: FieldResolver<'appleWebApp'>;
|
|
export declare const resolveAppLinks: FieldResolver<'appLinks'>;
|
|
export declare const resolveItunes: FieldResolverExtraArgs<'itunes', [
|
|
ResolvedMetadata['metadataBase'],
|
|
MetadataContext
|
|
]>;
|