feat: big title

This commit is contained in:
2026-04-01 12:16:16 +02:00
parent 8d3245b7b1
commit 175de893aa
8 changed files with 317 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ from uframe.ir import (
Gauge, Sparkline, Status, Table,
Form, Field, Password, Radio, Checkbox, FormButton,
Let, Source, IfBlock, ForLoop, CacheControl, OnSubmit, StateDecl,
BigTitle,
ComponentDef, ComponentUse,
)
from uframe.themes import BUILTIN_THEMES
@@ -115,6 +116,16 @@ register_keyword("table", node_class=Table, section="Data",
register_keyword("columns", section="",
detail="", snippet="") # child of table, not shown in slash commands
# ---------------------------------------------------------------------------
# Big Text
# ---------------------------------------------------------------------------
register_keyword("bigtitle", node_class=BigTitle, section="Content",
detail='bigtitle "TEXT" block',
snippet='bigtitle "${text}" ${font:block}',
highlight_values=["block", "thin", "pixel"],
is_leaf=True)
# ---------------------------------------------------------------------------
# Style
# ---------------------------------------------------------------------------