- 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>
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import { ERR, type ParserError, type ParserErrorHandler } from '../common/error-codes.js';
|
|
export declare class Preprocessor {
|
|
private handler;
|
|
html: string;
|
|
pos: number;
|
|
private lastGapPos;
|
|
private gapStack;
|
|
private skipNextNewLine;
|
|
lastChunkWritten: boolean;
|
|
endOfChunkHit: boolean;
|
|
bufferWaterline: number;
|
|
private isEol;
|
|
private lineStartPos;
|
|
droppedBufferSize: number;
|
|
line: number;
|
|
constructor(handler: {
|
|
onParseError?: ParserErrorHandler | null;
|
|
});
|
|
/** The column on the current line. If we just saw a gap (eg. a surrogate pair), return the index before. */
|
|
get col(): number;
|
|
get offset(): number;
|
|
getError(code: ERR, cpOffset: number): ParserError;
|
|
private lastErrOffset;
|
|
private _err;
|
|
private _addGap;
|
|
private _processSurrogate;
|
|
willDropParsedChunk(): boolean;
|
|
dropParsedChunk(): void;
|
|
write(chunk: string, isLastChunk: boolean): void;
|
|
insertHtmlAtCurrentPos(chunk: string): void;
|
|
startsWith(pattern: string, caseSensitive: boolean): boolean;
|
|
peek(offset: number): number;
|
|
advance(): number;
|
|
private _checkForProblematicCharacters;
|
|
retreat(count: number): void;
|
|
}
|