Phase 1 UI foundation: 32 style classes, 9 shared components, tab shell, placeholders

Dashboard shell: bundle expr binding + script transform, onStartup range init,
hand-rolled tab bar (position.display exprs), CONTRACT.md frozen pending G1.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-16 12:16:16 -05:00
parent af662f6fd2
commit c82a2fa6df
98 changed files with 3006 additions and 13 deletions

View File

@@ -42,7 +42,9 @@ STRING_BANS = [
(re.compile(r"journalName\s*="), "hardcoded journalName= (judges' journal name unknown)"),
(re.compile(r"\bsystem\.db\."), "system.db.* SQL access (journal API only)"),
(re.compile(r"\bSELECT\s+", re.IGNORECASE), "raw SQL SELECT"),
(re.compile(r"""(^|[^A-Za-z0-9_])[fF]["']"""), "f-string (Jython 2.7 cannot parse)"),
# f-string prefix: f/F immediately followed by a quote, not itself preceded by a
# quote (excludes string literals like 'F') or word char (excludes identifiers).
(re.compile(r"""(^|[^A-Za-z0-9_'"])[fF]["']"""), "f-string (Jython 2.7 cannot parse)"),
(re.compile(r"system\.util\.sendRequest\("), "sendRequest dev bridge leftover"),
]