- 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>
17 lines
746 B
JavaScript
17 lines
746 B
JavaScript
export { default as add } from './add.js';
|
|
export { default as ceil } from './ceil.js';
|
|
export { default as divide } from './divide.js';
|
|
export { default as floor } from './floor.js';
|
|
export { default as max } from './max.js';
|
|
export { default as maxBy } from './maxBy.js';
|
|
export { default as mean } from './mean.js';
|
|
export { default as meanBy } from './meanBy.js';
|
|
export { default as min } from './min.js';
|
|
export { default as minBy } from './minBy.js';
|
|
export { default as multiply } from './multiply.js';
|
|
export { default as round } from './round.js';
|
|
export { default as subtract } from './subtract.js';
|
|
export { default as sum } from './sum.js';
|
|
export { default as sumBy } from './sumBy.js';
|
|
export { default } from './math.default.js';
|