Files
taskpile/frontend/node_modules/lodash-es/string.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

33 lines
1.7 KiB
JavaScript

export { default as camelCase } from './camelCase.js';
export { default as capitalize } from './capitalize.js';
export { default as deburr } from './deburr.js';
export { default as endsWith } from './endsWith.js';
export { default as escape } from './escape.js';
export { default as escapeRegExp } from './escapeRegExp.js';
export { default as kebabCase } from './kebabCase.js';
export { default as lowerCase } from './lowerCase.js';
export { default as lowerFirst } from './lowerFirst.js';
export { default as pad } from './pad.js';
export { default as padEnd } from './padEnd.js';
export { default as padStart } from './padStart.js';
export { default as parseInt } from './parseInt.js';
export { default as repeat } from './repeat.js';
export { default as replace } from './replace.js';
export { default as snakeCase } from './snakeCase.js';
export { default as split } from './split.js';
export { default as startCase } from './startCase.js';
export { default as startsWith } from './startsWith.js';
export { default as template } from './template.js';
export { default as templateSettings } from './templateSettings.js';
export { default as toLower } from './toLower.js';
export { default as toUpper } from './toUpper.js';
export { default as trim } from './trim.js';
export { default as trimEnd } from './trimEnd.js';
export { default as trimStart } from './trimStart.js';
export { default as truncate } from './truncate.js';
export { default as unescape } from './unescape.js';
export { default as upperCase } from './upperCase.js';
export { default as upperFirst } from './upperFirst.js';
export { default as words } from './words.js';
export { default } from './string.default.js';