sectioning.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. """Element classes. This is an auto-generated file. Do not edit. See ../generate.py."""
  2. from typing import Union
  3. from reflex.vars import Var as Var
  4. from .base import BaseHTML
  5. class Body(BaseHTML): # noqa: E742
  6. """Display the body element."""
  7. tag: str = "body"
  8. bgcolor: Var[Union[str, int, bool]]
  9. background: Var[Union[str, int, bool]]
  10. class Address(BaseHTML): # noqa: E742
  11. """Display the address element."""
  12. tag: str = "address"
  13. class Article(BaseHTML): # noqa: E742
  14. """Display the article element."""
  15. tag: str = "article"
  16. class Aside(BaseHTML): # noqa: E742
  17. """Display the aside element."""
  18. tag: str = "aside"
  19. class Footer(BaseHTML): # noqa: E742
  20. """Display the footer element."""
  21. tag: str = "footer"
  22. class Header(BaseHTML): # noqa: E742
  23. """Display the header element."""
  24. tag: str = "header"
  25. class H1(BaseHTML): # noqa: E742
  26. """Display the h1 element."""
  27. tag: str = "h1"
  28. class H2(BaseHTML): # noqa: E742
  29. """Display the h1 element."""
  30. tag: str = "h2"
  31. class H3(BaseHTML): # noqa: E742
  32. """Display the h1 element."""
  33. tag: str = "h3"
  34. class H4(BaseHTML): # noqa: E742
  35. """Display the h1 element."""
  36. tag: str = "h4"
  37. class H5(BaseHTML): # noqa: E742
  38. """Display the h1 element."""
  39. tag: str = "h5"
  40. class H6(BaseHTML): # noqa: E742
  41. """Display the h1 element."""
  42. tag: str = "h6"
  43. class Main(BaseHTML): # noqa: E742
  44. """Display the main element."""
  45. tag: str = "main"
  46. class Nav(BaseHTML): # noqa: E742
  47. """Display the nav element."""
  48. tag: str = "nav"
  49. class Section(BaseHTML): # noqa: E742
  50. """Display the section element."""
  51. tag: str = "section"