reflex/reflex/components/el/elements/typography.py
2024-03-05 21:36:41 +01:00

127 lines
2.6 KiB
Python

"""Element classes. This is an auto-generated file. Do not edit. See ../generate.py."""
from typing import Optional, Union
from reflex.vars import Var as Var
from .base import BaseHTML
class Blockquote(BaseHTML):
"""Display the blockquote element."""
tag: str = "blockquote"
# Define the title of a work.
cite: Optional[Var[Union[str, int, bool]]] = None
class Dd(BaseHTML):
"""Display the dd element."""
tag: str = "dd"
class Div(BaseHTML):
"""Display the div element."""
tag: str = "div"
class Dl(BaseHTML):
"""Display the dl element."""
tag: str = "dl"
class Dt(BaseHTML):
"""Display the dt element."""
tag: str = "dt"
class Figcaption(BaseHTML):
"""Display the figcaption element."""
tag: str = "figcaption"
class Hr(BaseHTML):
"""Display the hr element."""
tag: str = "hr"
# Used to specify the alignment of text content of The Element. this attribute is used in all elements.
align: Optional[Var[Union[str, int, bool]]] = None
class Li(BaseHTML):
"""Display the li element."""
tag: str = "li"
class Menu(BaseHTML):
"""Display the menu element."""
tag: str = "menu"
# Specifies that the menu element is a context menu.
type: Optional[Var[Union[str, int, bool]]] = None
class Ol(BaseHTML):
"""Display the ol element."""
tag: str = "ol"
# Reverses the order of the list.
reversed: Optional[Var[Union[str, int, bool]]] = None
# Specifies the start value of the first list item in an ordered list.
start: Optional[Var[Union[str, int, bool]]] = None
# Specifies the kind of marker to use in the list (letters or numbers).
type: Optional[Var[Union[str, int, bool]]] = None
class P(BaseHTML):
"""Display the p element."""
tag: str = "p"
class Pre(BaseHTML):
"""Display the pre element."""
tag: str = "pre"
class Ul(BaseHTML):
"""Display the ul element."""
tag: str = "ul"
class Ins(BaseHTML):
"""Display the ins element."""
tag: str = "ins"
# Specifies the URL of the document that explains the reason why the text was inserted/changed.
cite: Optional[Var[Union[str, int, bool]]] = None
# Specifies the date and time of when the text was inserted/changed.
date_time: Optional[Var[Union[str, int, bool]]] = None
class Del(BaseHTML):
"""Display the del element."""
tag: str = "del"
# Specifies the URL of the document that explains the reason why the text was deleted.
cite: Optional[Var[Union[str, int, bool]]] = None
# Specifies the date and time of when the text was deleted.
date_time: Optional[Var[Union[str, int, bool]]] = None