
* upgrade to latest ruff * try to fix dep review * try to fix dep review (2) * upgrade black * upgrade black (2) * update allowed dependencies * update allowed dependencies (2) * update allowed dependencies (3) * wait between interim and final in yield test * remove previous commit, increase delay between yield * forgot to save on the time.sleep(1) removal * fix integration (maybe?) * fix pyi? * what even is going on * what is realityi? * test another fix for app harness * try to wait even longer? * force uvloop to be optional * downpin fastapi < 0.111, remove changes to test
14 lines
409 B
Python
14 lines
409 B
Python
"""Components for rendering text.
|
|
|
|
https://www.radix-ui.com/themes/docs/theme/typography
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Literal
|
|
|
|
LiteralTextWeight = Literal["light", "regular", "medium", "bold"]
|
|
LiteralTextAlign = Literal["left", "center", "right"]
|
|
LiteralTextSize = Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]
|
|
LiteralTextTrim = Literal["normal", "start", "end", "both"]
|