1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages

Fix graph node activation

This commit is contained in:
Andraxion 2026-07-24 21:14:30 -04:00
parent 4c82e1643d
commit 8ac4fe2a67
13 changed files with 65 additions and 21 deletions

View file

@ -1,5 +1,34 @@
# Completed slices
## DFG-13 graph activation reliability
### Changed
- Released the fixed `graph-browser@4` template.
- Delayed SVG pointer capture until movement crosses the four-pixel drag threshold so an ordinary
click remains targeted at the graph node and reaches the modal inspection handler.
- Preserved pointer capture and click suppression for actual canvas drags.
- Added an explicit hidden-state rule so rendered neighborhoods remove the empty-canvas instruction.
- Kept the token-bound HTTP surface, graph data, and listener lifetime unchanged.
- Released the compatible fix as DocForge 0.7.3.
### Verification
- Focused interaction-contract checks distinguish click setup from drag pointer capture and cover
empty-state hiding.
- Embedded JavaScript syntax validation, Ruff, formatting, compilation, and the complete
warning-strict 49-test DocForge suite pass.
### Limits
- The listener remains owned by the MCP process and closes when that process exits.
- Browser state remains client-local and is not persisted.
### Next gate
No further gate is planned. Measure graph-browser use before adding history, comparison, or editing
surfaces.
## DFG-12 modal node inspection
### Changed