Updated several components. I really gotta remember I split this off into a submodule.

This commit is contained in:
Storm Dragon
2026-02-22 19:27:16 -05:00
parent 44f13b1aeb
commit 8825bc38d7
16 changed files with 1197 additions and 1046 deletions
+3 -3
View File
@@ -2,13 +2,13 @@
// Optional compatibility aliases for projects that still call text_reader*.
string text_reader(string content, string title = "Text Reader", bool readOnly = true) {
return file_viewer(content, title, readOnly);
return file_viewer(content, title, readOnly);
}
string text_reader_lines(string[] lines, string title = "Text Reader", bool readOnly = true) {
return file_viewer_lines(lines, title, readOnly);
return file_viewer_lines(lines, title, readOnly);
}
string text_reader_file(string filePath, string title = "", bool readOnly = true) {
return file_viewer_file(filePath, title, readOnly);
return file_viewer_file(filePath, title, readOnly);
}