Files
brahman/crates/modules/gioser/gioser-graph-web/Cargo.toml
T
Sergio 529287f01d gioser-web: fix graph widget — rect nodes, edge weight, CSS anim, layout
- Switch from circles to horizontal rounded rectangles with text inside
- Text size 12px body + 8px sublabel (camino), no overlaps
- Edge stroke-width proportional to semantic weight
- Fix 'Layout was forced' warning
- Reduce CSS page-ambience animations: only opacity (no transform)
  to fix 'breathing background' visual glitch
- Layout: more separation (k*1.6), 80 iterations
2026-05-23 15:12:48 +00:00

40 lines
759 B
TOML

[package]
name = "gioser-graph-web"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
publish.workspace = true
[dependencies]
wasm-bindgen.workspace = true
wasm-bindgen-futures.workspace = true
js-sys.workspace = true
serde.workspace = true
serde_json.workspace = true
[dependencies.web-sys]
workspace = true
features = [
"Window",
"Document",
"Element",
"HtmlElement",
"SvgElement",
"SvgsvgElement",
"SvgCircleElement",
"SvgLineElement",
"SvgTextElement",
"SvgTextContentElement",
"SvgGraphicsElement",
"SvgRectElement",
"Node",
"Response",
"CssStyleDeclaration",
"DomRect",
"Event",
"EventTarget",
"MouseEvent",
"console",
]