statechart parsing and error reporting working

This commit is contained in:
Joeri Exelmans 2025-10-05 15:28:31 +02:00
parent 2adf902a7f
commit f40e7f60b5
6 changed files with 300 additions and 115 deletions

View file

@ -2,7 +2,7 @@
cursor: crosshair;
}
svg > text {
text {
user-select: none;
}
@ -37,6 +37,9 @@ svg > text {
/* stroke: blue;
stroke-width: 4px; */
}
.rountangle.error {
stroke: rgb(230,0,0);
}
.selected:hover {
cursor: grab;
@ -104,4 +107,11 @@ text:hover {
.highlight {
stroke: green;
stroke-width: 4px;
}
.arrow.error {
stroke: rgb(230,0,0);
}
text.error {
fill: rgb(230,0,0);
}