Reformat, add syscall streaming

This commit is contained in:
Michael Mikovsky
2025-08-12 16:55:34 -06:00
parent 1ed6ff2d9a
commit 7bf1ef9419
49 changed files with 3606 additions and 105 deletions
-27
View File
@@ -1,27 +0,0 @@
export component BorderedRectangle inherits Rectangle {
background: #2a232a;
border-width: 1px;
border-color: darkslateblue;
}
export component BoolText inherits Text {
in property <bool> state;
text: state ? "TRUE" : "FALSE";
color: state ? #00ff00 : #ff0000;
}
export component TitleText inherits HorizontalLayout {
in property <string> text;
alignment: start;
Text {
text: text;
font-weight: 700;
font-size: 15px;
}
@children
}