- 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>
53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"name": "react-dom-builtin",
|
|
"main": "index.js",
|
|
"exports": {
|
|
".": {
|
|
"react-server": "./react-dom.react-server.js",
|
|
"default": "./index.js"
|
|
},
|
|
"./client": "./client.js",
|
|
"./server": {
|
|
"workerd": "./server.edge.js",
|
|
"bun": "./server.bun.js",
|
|
"deno": "./server.browser.js",
|
|
"worker": "./server.browser.js",
|
|
"browser": "./server.browser.js",
|
|
"node": "./server.node.js",
|
|
"edge-light": "./server.edge.js",
|
|
"default": "./server.node.js"
|
|
},
|
|
"./server.browser": "./server.browser.js",
|
|
"./server.bun": "./server.bun.js",
|
|
"./server.edge": "./server.edge.js",
|
|
"./server.node": "./server.node.js",
|
|
"./static": {
|
|
"workerd": "./static.edge.js",
|
|
"deno": "./static.browser.js",
|
|
"worker": "./static.browser.js",
|
|
"browser": "./static.browser.js",
|
|
"node": "./static.node.js",
|
|
"edge-light": "./static.edge.js",
|
|
"default": "./static.node.js"
|
|
},
|
|
"./static.browser": "./static.browser.js",
|
|
"./static.edge": "./static.edge.js",
|
|
"./static.node": "./static.node.js",
|
|
"./server-rendering-stub": "./server-rendering-stub.js",
|
|
"./profiling": "./profiling.js",
|
|
"./test-utils": "./test-utils.js",
|
|
"./unstable_server-external-runtime": "./unstable_server-external-runtime.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"loose-envify": "^1.1.0",
|
|
"scheduler": "0.24.0-canary-14898b6a9-20240318"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "18.3.0-canary-14898b6a9-20240318"
|
|
},
|
|
"browser": {
|
|
"./server.js": "./server.browser.js",
|
|
"./static.js": "./static.browser.js"
|
|
}
|
|
} |