- 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>
30 lines
2.0 KiB
JavaScript
30 lines
2.0 KiB
JavaScript
export { isClickableInput } from './click/isClickableInput.js';
|
|
export { readBlobText } from './dataTransfer/Blob.js';
|
|
export { createDataTransfer, getBlobFromDataTransferItem } from './dataTransfer/DataTransfer.js';
|
|
export { createFileList } from './dataTransfer/FileList.js';
|
|
export { attachClipboardStubToView, createClipboardItem, detachClipboardStubFromView, readDataTransferFromClipboard, resetClipboardStubOnView, writeDataTransferToClipboard } from './dataTransfer/Clipboard.js';
|
|
export { buildTimeValue, isValidDateOrTimeValue } from './edit/timeValue.js';
|
|
export { getContentEditable, isContentEditable } from './edit/isContentEditable.js';
|
|
export { isEditable, isEditableInputOrTextArea } from './edit/isEditable.js';
|
|
export { getMaxLength, supportsMaxLength } from './edit/maxLength.js';
|
|
export { setFiles } from './edit/setFiles.js';
|
|
export { getNextCursorPosition } from './focus/cursor.js';
|
|
export { getActiveElement, getActiveElementOrBody } from './focus/getActiveElement.js';
|
|
export { getTabDestination } from './focus/getTabDestination.js';
|
|
export { isFocusable } from './focus/isFocusable.js';
|
|
export { hasNoSelection, hasOwnSelection } from './focus/selection.js';
|
|
export { FOCUSABLE_SELECTOR } from './focus/selector.js';
|
|
export { readNextDescriptor } from './keyDef/readNextDescriptor.js';
|
|
export { cloneEvent } from './misc/cloneEvent.js';
|
|
export { findClosest } from './misc/findClosest.js';
|
|
export { getDocumentFromNode } from './misc/getDocumentFromNode.js';
|
|
export { getTreeDiff } from './misc/getTreeDiff.js';
|
|
export { getWindow } from './misc/getWindow.js';
|
|
export { isDescendantOrSelf } from './misc/isDescendantOrSelf.js';
|
|
export { isElementType } from './misc/isElementType.js';
|
|
export { isVisible } from './misc/isVisible.js';
|
|
export { isDisabled } from './misc/isDisabled.js';
|
|
export { ApiLevel, getLevelRef, setLevelRef } from './misc/level.js';
|
|
export { wait } from './misc/wait.js';
|
|
export { assertPointerEvents, hasPointerEvents } from './pointer/cssPointerEvents.js';
|