- 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>
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"name": "react-dom",
|
|
"version": "18.3.1",
|
|
"description": "React package for working with the DOM.",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react.git",
|
|
"directory": "packages/react-dom"
|
|
},
|
|
"keywords": [
|
|
"react"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/react/issues"
|
|
},
|
|
"homepage": "https://reactjs.org/",
|
|
"dependencies": {
|
|
"loose-envify": "^1.1.0",
|
|
"scheduler": "^0.23.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.3.1"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"index.js",
|
|
"client.js",
|
|
"profiling.js",
|
|
"server.js",
|
|
"server.browser.js",
|
|
"server.node.js",
|
|
"test-utils.js",
|
|
"cjs/",
|
|
"umd/"
|
|
],
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./client": "./client.js",
|
|
"./server": {
|
|
"deno": "./server.browser.js",
|
|
"worker": "./server.browser.js",
|
|
"browser": "./server.browser.js",
|
|
"default": "./server.node.js"
|
|
},
|
|
"./server.browser": "./server.browser.js",
|
|
"./server.node": "./server.node.js",
|
|
"./profiling": "./profiling.js",
|
|
"./test-utils": "./test-utils.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"browser": {
|
|
"./server.js": "./server.browser.js"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"loose-envify"
|
|
]
|
|
}
|
|
} |