Files
taskpile/frontend/node_modules/lodash-es/object.js
Alvis f1d51b8cc8 Add side panels, task selection, graph animation, and project docs
- 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>
2026-04-08 11:23:06 +00:00

49 lines
2.4 KiB
JavaScript

export { default as assign } from './assign.js';
export { default as assignIn } from './assignIn.js';
export { default as assignInWith } from './assignInWith.js';
export { default as assignWith } from './assignWith.js';
export { default as at } from './at.js';
export { default as create } from './create.js';
export { default as defaults } from './defaults.js';
export { default as defaultsDeep } from './defaultsDeep.js';
export { default as entries } from './entries.js';
export { default as entriesIn } from './entriesIn.js';
export { default as extend } from './extend.js';
export { default as extendWith } from './extendWith.js';
export { default as findKey } from './findKey.js';
export { default as findLastKey } from './findLastKey.js';
export { default as forIn } from './forIn.js';
export { default as forInRight } from './forInRight.js';
export { default as forOwn } from './forOwn.js';
export { default as forOwnRight } from './forOwnRight.js';
export { default as functions } from './functions.js';
export { default as functionsIn } from './functionsIn.js';
export { default as get } from './get.js';
export { default as has } from './has.js';
export { default as hasIn } from './hasIn.js';
export { default as invert } from './invert.js';
export { default as invertBy } from './invertBy.js';
export { default as invoke } from './invoke.js';
export { default as keys } from './keys.js';
export { default as keysIn } from './keysIn.js';
export { default as mapKeys } from './mapKeys.js';
export { default as mapValues } from './mapValues.js';
export { default as merge } from './merge.js';
export { default as mergeWith } from './mergeWith.js';
export { default as omit } from './omit.js';
export { default as omitBy } from './omitBy.js';
export { default as pick } from './pick.js';
export { default as pickBy } from './pickBy.js';
export { default as result } from './result.js';
export { default as set } from './set.js';
export { default as setWith } from './setWith.js';
export { default as toPairs } from './toPairs.js';
export { default as toPairsIn } from './toPairsIn.js';
export { default as transform } from './transform.js';
export { default as unset } from './unset.js';
export { default as update } from './update.js';
export { default as updateWith } from './updateWith.js';
export { default as values } from './values.js';
export { default as valuesIn } from './valuesIn.js';
export { default } from './object.default.js';