inline.pyi 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475
  1. """Stub file for reflex/components/el/elements/inline.py"""
  2. # ------------------- DO NOT EDIT ----------------------
  3. # This file was generated by `reflex/utils/pyi_generator.py`!
  4. # ------------------------------------------------------
  5. from typing import Any, Dict, Optional, Union, overload
  6. from reflex.event import EventType
  7. from reflex.style import Style
  8. from reflex.vars.base import Var
  9. from .base import BaseHTML
  10. class A(BaseHTML):
  11. @overload
  12. @classmethod
  13. def create( # type: ignore
  14. cls,
  15. *children,
  16. download: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  17. href: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  18. href_lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  19. media: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  20. ping: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  21. referrer_policy: Optional[
  22. Union[Var[Union[bool, int, str]], bool, int, str]
  23. ] = None,
  24. rel: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  25. shape: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  26. target: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  27. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  28. auto_capitalize: Optional[
  29. Union[Var[Union[bool, int, str]], bool, int, str]
  30. ] = None,
  31. content_editable: Optional[
  32. Union[Var[Union[bool, int, str]], bool, int, str]
  33. ] = None,
  34. context_menu: Optional[
  35. Union[Var[Union[bool, int, str]], bool, int, str]
  36. ] = None,
  37. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  38. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  39. enter_key_hint: Optional[
  40. Union[Var[Union[bool, int, str]], bool, int, str]
  41. ] = None,
  42. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  43. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  44. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  45. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  46. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  47. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  48. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  49. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  50. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  51. style: Optional[Style] = None,
  52. key: Optional[Any] = None,
  53. id: Optional[Any] = None,
  54. class_name: Optional[Any] = None,
  55. autofocus: Optional[bool] = None,
  56. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  57. on_blur: Optional[EventType[()]] = None,
  58. on_click: Optional[EventType[()]] = None,
  59. on_context_menu: Optional[EventType[()]] = None,
  60. on_double_click: Optional[EventType[()]] = None,
  61. on_focus: Optional[EventType[()]] = None,
  62. on_mount: Optional[EventType[()]] = None,
  63. on_mouse_down: Optional[EventType[()]] = None,
  64. on_mouse_enter: Optional[EventType[()]] = None,
  65. on_mouse_leave: Optional[EventType[()]] = None,
  66. on_mouse_move: Optional[EventType[()]] = None,
  67. on_mouse_out: Optional[EventType[()]] = None,
  68. on_mouse_over: Optional[EventType[()]] = None,
  69. on_mouse_up: Optional[EventType[()]] = None,
  70. on_scroll: Optional[EventType[()]] = None,
  71. on_unmount: Optional[EventType[()]] = None,
  72. **props,
  73. ) -> "A":
  74. """Create the component.
  75. Args:
  76. *children: The children of the component.
  77. download: Specifies that the target (the file specified in the href attribute) will be downloaded when a user clicks on the hyperlink.
  78. href: Specifies the URL of the page the link goes to
  79. href_lang: Specifies the language of the linked document
  80. media: Specifies what media/device the linked document is optimized for
  81. ping: Specifies which referrer is sent when fetching the resource
  82. referrer_policy: Specifies the relationship between the current document and the linked document
  83. rel: Specifies the relationship between the linked document and the current document
  84. shape: Specifies the shape of the area
  85. target: Specifies where to open the linked document
  86. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  87. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  88. content_editable: Indicates whether the element's content is editable.
  89. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  90. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  91. draggable: Defines whether the element can be dragged.
  92. enter_key_hint: Hints what media types the media element is able to play.
  93. hidden: Defines whether the element is hidden.
  94. input_mode: Defines the type of the element.
  95. item_prop: Defines the name of the element for metadata purposes.
  96. lang: Defines the language used in the element.
  97. role: Defines the role of the element.
  98. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  99. spell_check: Defines whether the element may be checked for spelling errors.
  100. tab_index: Defines the position of the current element in the tabbing order.
  101. title: Defines a tooltip for the element.
  102. style: The style of the component.
  103. key: A unique key for the component.
  104. id: The id for the component.
  105. class_name: The class name for the component.
  106. autofocus: Whether the component should take the focus once the page is loaded
  107. custom_attrs: custom attribute
  108. **props: The props of the component.
  109. Returns:
  110. The component.
  111. """
  112. ...
  113. class Abbr(BaseHTML):
  114. @overload
  115. @classmethod
  116. def create( # type: ignore
  117. cls,
  118. *children,
  119. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  120. auto_capitalize: Optional[
  121. Union[Var[Union[bool, int, str]], bool, int, str]
  122. ] = None,
  123. content_editable: Optional[
  124. Union[Var[Union[bool, int, str]], bool, int, str]
  125. ] = None,
  126. context_menu: Optional[
  127. Union[Var[Union[bool, int, str]], bool, int, str]
  128. ] = None,
  129. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  130. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  131. enter_key_hint: Optional[
  132. Union[Var[Union[bool, int, str]], bool, int, str]
  133. ] = None,
  134. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  135. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  136. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  137. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  138. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  139. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  140. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  141. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  142. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  143. style: Optional[Style] = None,
  144. key: Optional[Any] = None,
  145. id: Optional[Any] = None,
  146. class_name: Optional[Any] = None,
  147. autofocus: Optional[bool] = None,
  148. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  149. on_blur: Optional[EventType[()]] = None,
  150. on_click: Optional[EventType[()]] = None,
  151. on_context_menu: Optional[EventType[()]] = None,
  152. on_double_click: Optional[EventType[()]] = None,
  153. on_focus: Optional[EventType[()]] = None,
  154. on_mount: Optional[EventType[()]] = None,
  155. on_mouse_down: Optional[EventType[()]] = None,
  156. on_mouse_enter: Optional[EventType[()]] = None,
  157. on_mouse_leave: Optional[EventType[()]] = None,
  158. on_mouse_move: Optional[EventType[()]] = None,
  159. on_mouse_out: Optional[EventType[()]] = None,
  160. on_mouse_over: Optional[EventType[()]] = None,
  161. on_mouse_up: Optional[EventType[()]] = None,
  162. on_scroll: Optional[EventType[()]] = None,
  163. on_unmount: Optional[EventType[()]] = None,
  164. **props,
  165. ) -> "Abbr":
  166. """Create the component.
  167. Args:
  168. *children: The children of the component.
  169. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  170. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  171. content_editable: Indicates whether the element's content is editable.
  172. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  173. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  174. draggable: Defines whether the element can be dragged.
  175. enter_key_hint: Hints what media types the media element is able to play.
  176. hidden: Defines whether the element is hidden.
  177. input_mode: Defines the type of the element.
  178. item_prop: Defines the name of the element for metadata purposes.
  179. lang: Defines the language used in the element.
  180. role: Defines the role of the element.
  181. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  182. spell_check: Defines whether the element may be checked for spelling errors.
  183. tab_index: Defines the position of the current element in the tabbing order.
  184. title: Defines a tooltip for the element.
  185. style: The style of the component.
  186. key: A unique key for the component.
  187. id: The id for the component.
  188. class_name: The class name for the component.
  189. autofocus: Whether the component should take the focus once the page is loaded
  190. custom_attrs: custom attribute
  191. **props: The props of the component.
  192. Returns:
  193. The component.
  194. """
  195. ...
  196. class B(BaseHTML):
  197. @overload
  198. @classmethod
  199. def create( # type: ignore
  200. cls,
  201. *children,
  202. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  203. auto_capitalize: Optional[
  204. Union[Var[Union[bool, int, str]], bool, int, str]
  205. ] = None,
  206. content_editable: Optional[
  207. Union[Var[Union[bool, int, str]], bool, int, str]
  208. ] = None,
  209. context_menu: Optional[
  210. Union[Var[Union[bool, int, str]], bool, int, str]
  211. ] = None,
  212. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  213. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  214. enter_key_hint: Optional[
  215. Union[Var[Union[bool, int, str]], bool, int, str]
  216. ] = None,
  217. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  218. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  219. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  220. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  221. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  222. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  223. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  224. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  225. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  226. style: Optional[Style] = None,
  227. key: Optional[Any] = None,
  228. id: Optional[Any] = None,
  229. class_name: Optional[Any] = None,
  230. autofocus: Optional[bool] = None,
  231. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  232. on_blur: Optional[EventType[()]] = None,
  233. on_click: Optional[EventType[()]] = None,
  234. on_context_menu: Optional[EventType[()]] = None,
  235. on_double_click: Optional[EventType[()]] = None,
  236. on_focus: Optional[EventType[()]] = None,
  237. on_mount: Optional[EventType[()]] = None,
  238. on_mouse_down: Optional[EventType[()]] = None,
  239. on_mouse_enter: Optional[EventType[()]] = None,
  240. on_mouse_leave: Optional[EventType[()]] = None,
  241. on_mouse_move: Optional[EventType[()]] = None,
  242. on_mouse_out: Optional[EventType[()]] = None,
  243. on_mouse_over: Optional[EventType[()]] = None,
  244. on_mouse_up: Optional[EventType[()]] = None,
  245. on_scroll: Optional[EventType[()]] = None,
  246. on_unmount: Optional[EventType[()]] = None,
  247. **props,
  248. ) -> "B":
  249. """Create the component.
  250. Args:
  251. *children: The children of the component.
  252. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  253. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  254. content_editable: Indicates whether the element's content is editable.
  255. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  256. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  257. draggable: Defines whether the element can be dragged.
  258. enter_key_hint: Hints what media types the media element is able to play.
  259. hidden: Defines whether the element is hidden.
  260. input_mode: Defines the type of the element.
  261. item_prop: Defines the name of the element for metadata purposes.
  262. lang: Defines the language used in the element.
  263. role: Defines the role of the element.
  264. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  265. spell_check: Defines whether the element may be checked for spelling errors.
  266. tab_index: Defines the position of the current element in the tabbing order.
  267. title: Defines a tooltip for the element.
  268. style: The style of the component.
  269. key: A unique key for the component.
  270. id: The id for the component.
  271. class_name: The class name for the component.
  272. autofocus: Whether the component should take the focus once the page is loaded
  273. custom_attrs: custom attribute
  274. **props: The props of the component.
  275. Returns:
  276. The component.
  277. """
  278. ...
  279. class Bdi(BaseHTML):
  280. @overload
  281. @classmethod
  282. def create( # type: ignore
  283. cls,
  284. *children,
  285. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  286. auto_capitalize: Optional[
  287. Union[Var[Union[bool, int, str]], bool, int, str]
  288. ] = None,
  289. content_editable: Optional[
  290. Union[Var[Union[bool, int, str]], bool, int, str]
  291. ] = None,
  292. context_menu: Optional[
  293. Union[Var[Union[bool, int, str]], bool, int, str]
  294. ] = None,
  295. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  296. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  297. enter_key_hint: Optional[
  298. Union[Var[Union[bool, int, str]], bool, int, str]
  299. ] = None,
  300. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  301. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  302. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  303. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  304. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  305. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  306. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  307. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  308. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  309. style: Optional[Style] = None,
  310. key: Optional[Any] = None,
  311. id: Optional[Any] = None,
  312. class_name: Optional[Any] = None,
  313. autofocus: Optional[bool] = None,
  314. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  315. on_blur: Optional[EventType[()]] = None,
  316. on_click: Optional[EventType[()]] = None,
  317. on_context_menu: Optional[EventType[()]] = None,
  318. on_double_click: Optional[EventType[()]] = None,
  319. on_focus: Optional[EventType[()]] = None,
  320. on_mount: Optional[EventType[()]] = None,
  321. on_mouse_down: Optional[EventType[()]] = None,
  322. on_mouse_enter: Optional[EventType[()]] = None,
  323. on_mouse_leave: Optional[EventType[()]] = None,
  324. on_mouse_move: Optional[EventType[()]] = None,
  325. on_mouse_out: Optional[EventType[()]] = None,
  326. on_mouse_over: Optional[EventType[()]] = None,
  327. on_mouse_up: Optional[EventType[()]] = None,
  328. on_scroll: Optional[EventType[()]] = None,
  329. on_unmount: Optional[EventType[()]] = None,
  330. **props,
  331. ) -> "Bdi":
  332. """Create the component.
  333. Args:
  334. *children: The children of the component.
  335. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  336. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  337. content_editable: Indicates whether the element's content is editable.
  338. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  339. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  340. draggable: Defines whether the element can be dragged.
  341. enter_key_hint: Hints what media types the media element is able to play.
  342. hidden: Defines whether the element is hidden.
  343. input_mode: Defines the type of the element.
  344. item_prop: Defines the name of the element for metadata purposes.
  345. lang: Defines the language used in the element.
  346. role: Defines the role of the element.
  347. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  348. spell_check: Defines whether the element may be checked for spelling errors.
  349. tab_index: Defines the position of the current element in the tabbing order.
  350. title: Defines a tooltip for the element.
  351. style: The style of the component.
  352. key: A unique key for the component.
  353. id: The id for the component.
  354. class_name: The class name for the component.
  355. autofocus: Whether the component should take the focus once the page is loaded
  356. custom_attrs: custom attribute
  357. **props: The props of the component.
  358. Returns:
  359. The component.
  360. """
  361. ...
  362. class Bdo(BaseHTML):
  363. @overload
  364. @classmethod
  365. def create( # type: ignore
  366. cls,
  367. *children,
  368. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  369. auto_capitalize: Optional[
  370. Union[Var[Union[bool, int, str]], bool, int, str]
  371. ] = None,
  372. content_editable: Optional[
  373. Union[Var[Union[bool, int, str]], bool, int, str]
  374. ] = None,
  375. context_menu: Optional[
  376. Union[Var[Union[bool, int, str]], bool, int, str]
  377. ] = None,
  378. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  379. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  380. enter_key_hint: Optional[
  381. Union[Var[Union[bool, int, str]], bool, int, str]
  382. ] = None,
  383. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  384. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  385. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  386. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  387. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  388. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  389. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  390. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  391. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  392. style: Optional[Style] = None,
  393. key: Optional[Any] = None,
  394. id: Optional[Any] = None,
  395. class_name: Optional[Any] = None,
  396. autofocus: Optional[bool] = None,
  397. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  398. on_blur: Optional[EventType[()]] = None,
  399. on_click: Optional[EventType[()]] = None,
  400. on_context_menu: Optional[EventType[()]] = None,
  401. on_double_click: Optional[EventType[()]] = None,
  402. on_focus: Optional[EventType[()]] = None,
  403. on_mount: Optional[EventType[()]] = None,
  404. on_mouse_down: Optional[EventType[()]] = None,
  405. on_mouse_enter: Optional[EventType[()]] = None,
  406. on_mouse_leave: Optional[EventType[()]] = None,
  407. on_mouse_move: Optional[EventType[()]] = None,
  408. on_mouse_out: Optional[EventType[()]] = None,
  409. on_mouse_over: Optional[EventType[()]] = None,
  410. on_mouse_up: Optional[EventType[()]] = None,
  411. on_scroll: Optional[EventType[()]] = None,
  412. on_unmount: Optional[EventType[()]] = None,
  413. **props,
  414. ) -> "Bdo":
  415. """Create the component.
  416. Args:
  417. *children: The children of the component.
  418. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  419. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  420. content_editable: Indicates whether the element's content is editable.
  421. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  422. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  423. draggable: Defines whether the element can be dragged.
  424. enter_key_hint: Hints what media types the media element is able to play.
  425. hidden: Defines whether the element is hidden.
  426. input_mode: Defines the type of the element.
  427. item_prop: Defines the name of the element for metadata purposes.
  428. lang: Defines the language used in the element.
  429. role: Defines the role of the element.
  430. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  431. spell_check: Defines whether the element may be checked for spelling errors.
  432. tab_index: Defines the position of the current element in the tabbing order.
  433. title: Defines a tooltip for the element.
  434. style: The style of the component.
  435. key: A unique key for the component.
  436. id: The id for the component.
  437. class_name: The class name for the component.
  438. autofocus: Whether the component should take the focus once the page is loaded
  439. custom_attrs: custom attribute
  440. **props: The props of the component.
  441. Returns:
  442. The component.
  443. """
  444. ...
  445. class Br(BaseHTML):
  446. @overload
  447. @classmethod
  448. def create( # type: ignore
  449. cls,
  450. *children,
  451. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  452. auto_capitalize: Optional[
  453. Union[Var[Union[bool, int, str]], bool, int, str]
  454. ] = None,
  455. content_editable: Optional[
  456. Union[Var[Union[bool, int, str]], bool, int, str]
  457. ] = None,
  458. context_menu: Optional[
  459. Union[Var[Union[bool, int, str]], bool, int, str]
  460. ] = None,
  461. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  462. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  463. enter_key_hint: Optional[
  464. Union[Var[Union[bool, int, str]], bool, int, str]
  465. ] = None,
  466. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  467. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  468. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  469. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  470. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  471. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  472. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  473. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  474. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  475. style: Optional[Style] = None,
  476. key: Optional[Any] = None,
  477. id: Optional[Any] = None,
  478. class_name: Optional[Any] = None,
  479. autofocus: Optional[bool] = None,
  480. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  481. on_blur: Optional[EventType[()]] = None,
  482. on_click: Optional[EventType[()]] = None,
  483. on_context_menu: Optional[EventType[()]] = None,
  484. on_double_click: Optional[EventType[()]] = None,
  485. on_focus: Optional[EventType[()]] = None,
  486. on_mount: Optional[EventType[()]] = None,
  487. on_mouse_down: Optional[EventType[()]] = None,
  488. on_mouse_enter: Optional[EventType[()]] = None,
  489. on_mouse_leave: Optional[EventType[()]] = None,
  490. on_mouse_move: Optional[EventType[()]] = None,
  491. on_mouse_out: Optional[EventType[()]] = None,
  492. on_mouse_over: Optional[EventType[()]] = None,
  493. on_mouse_up: Optional[EventType[()]] = None,
  494. on_scroll: Optional[EventType[()]] = None,
  495. on_unmount: Optional[EventType[()]] = None,
  496. **props,
  497. ) -> "Br":
  498. """Create the component.
  499. Args:
  500. *children: The children of the component.
  501. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  502. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  503. content_editable: Indicates whether the element's content is editable.
  504. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  505. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  506. draggable: Defines whether the element can be dragged.
  507. enter_key_hint: Hints what media types the media element is able to play.
  508. hidden: Defines whether the element is hidden.
  509. input_mode: Defines the type of the element.
  510. item_prop: Defines the name of the element for metadata purposes.
  511. lang: Defines the language used in the element.
  512. role: Defines the role of the element.
  513. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  514. spell_check: Defines whether the element may be checked for spelling errors.
  515. tab_index: Defines the position of the current element in the tabbing order.
  516. title: Defines a tooltip for the element.
  517. style: The style of the component.
  518. key: A unique key for the component.
  519. id: The id for the component.
  520. class_name: The class name for the component.
  521. autofocus: Whether the component should take the focus once the page is loaded
  522. custom_attrs: custom attribute
  523. **props: The props of the component.
  524. Returns:
  525. The component.
  526. """
  527. ...
  528. class Cite(BaseHTML):
  529. @overload
  530. @classmethod
  531. def create( # type: ignore
  532. cls,
  533. *children,
  534. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  535. auto_capitalize: Optional[
  536. Union[Var[Union[bool, int, str]], bool, int, str]
  537. ] = None,
  538. content_editable: Optional[
  539. Union[Var[Union[bool, int, str]], bool, int, str]
  540. ] = None,
  541. context_menu: Optional[
  542. Union[Var[Union[bool, int, str]], bool, int, str]
  543. ] = None,
  544. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  545. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  546. enter_key_hint: Optional[
  547. Union[Var[Union[bool, int, str]], bool, int, str]
  548. ] = None,
  549. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  550. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  551. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  552. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  553. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  554. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  555. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  556. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  557. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  558. style: Optional[Style] = None,
  559. key: Optional[Any] = None,
  560. id: Optional[Any] = None,
  561. class_name: Optional[Any] = None,
  562. autofocus: Optional[bool] = None,
  563. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  564. on_blur: Optional[EventType[()]] = None,
  565. on_click: Optional[EventType[()]] = None,
  566. on_context_menu: Optional[EventType[()]] = None,
  567. on_double_click: Optional[EventType[()]] = None,
  568. on_focus: Optional[EventType[()]] = None,
  569. on_mount: Optional[EventType[()]] = None,
  570. on_mouse_down: Optional[EventType[()]] = None,
  571. on_mouse_enter: Optional[EventType[()]] = None,
  572. on_mouse_leave: Optional[EventType[()]] = None,
  573. on_mouse_move: Optional[EventType[()]] = None,
  574. on_mouse_out: Optional[EventType[()]] = None,
  575. on_mouse_over: Optional[EventType[()]] = None,
  576. on_mouse_up: Optional[EventType[()]] = None,
  577. on_scroll: Optional[EventType[()]] = None,
  578. on_unmount: Optional[EventType[()]] = None,
  579. **props,
  580. ) -> "Cite":
  581. """Create the component.
  582. Args:
  583. *children: The children of the component.
  584. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  585. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  586. content_editable: Indicates whether the element's content is editable.
  587. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  588. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  589. draggable: Defines whether the element can be dragged.
  590. enter_key_hint: Hints what media types the media element is able to play.
  591. hidden: Defines whether the element is hidden.
  592. input_mode: Defines the type of the element.
  593. item_prop: Defines the name of the element for metadata purposes.
  594. lang: Defines the language used in the element.
  595. role: Defines the role of the element.
  596. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  597. spell_check: Defines whether the element may be checked for spelling errors.
  598. tab_index: Defines the position of the current element in the tabbing order.
  599. title: Defines a tooltip for the element.
  600. style: The style of the component.
  601. key: A unique key for the component.
  602. id: The id for the component.
  603. class_name: The class name for the component.
  604. autofocus: Whether the component should take the focus once the page is loaded
  605. custom_attrs: custom attribute
  606. **props: The props of the component.
  607. Returns:
  608. The component.
  609. """
  610. ...
  611. class Code(BaseHTML):
  612. @overload
  613. @classmethod
  614. def create( # type: ignore
  615. cls,
  616. *children,
  617. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  618. auto_capitalize: Optional[
  619. Union[Var[Union[bool, int, str]], bool, int, str]
  620. ] = None,
  621. content_editable: Optional[
  622. Union[Var[Union[bool, int, str]], bool, int, str]
  623. ] = None,
  624. context_menu: Optional[
  625. Union[Var[Union[bool, int, str]], bool, int, str]
  626. ] = None,
  627. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  628. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  629. enter_key_hint: Optional[
  630. Union[Var[Union[bool, int, str]], bool, int, str]
  631. ] = None,
  632. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  633. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  634. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  635. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  636. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  637. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  638. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  639. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  640. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  641. style: Optional[Style] = None,
  642. key: Optional[Any] = None,
  643. id: Optional[Any] = None,
  644. class_name: Optional[Any] = None,
  645. autofocus: Optional[bool] = None,
  646. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  647. on_blur: Optional[EventType[()]] = None,
  648. on_click: Optional[EventType[()]] = None,
  649. on_context_menu: Optional[EventType[()]] = None,
  650. on_double_click: Optional[EventType[()]] = None,
  651. on_focus: Optional[EventType[()]] = None,
  652. on_mount: Optional[EventType[()]] = None,
  653. on_mouse_down: Optional[EventType[()]] = None,
  654. on_mouse_enter: Optional[EventType[()]] = None,
  655. on_mouse_leave: Optional[EventType[()]] = None,
  656. on_mouse_move: Optional[EventType[()]] = None,
  657. on_mouse_out: Optional[EventType[()]] = None,
  658. on_mouse_over: Optional[EventType[()]] = None,
  659. on_mouse_up: Optional[EventType[()]] = None,
  660. on_scroll: Optional[EventType[()]] = None,
  661. on_unmount: Optional[EventType[()]] = None,
  662. **props,
  663. ) -> "Code":
  664. """Create the component.
  665. Args:
  666. *children: The children of the component.
  667. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  668. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  669. content_editable: Indicates whether the element's content is editable.
  670. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  671. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  672. draggable: Defines whether the element can be dragged.
  673. enter_key_hint: Hints what media types the media element is able to play.
  674. hidden: Defines whether the element is hidden.
  675. input_mode: Defines the type of the element.
  676. item_prop: Defines the name of the element for metadata purposes.
  677. lang: Defines the language used in the element.
  678. role: Defines the role of the element.
  679. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  680. spell_check: Defines whether the element may be checked for spelling errors.
  681. tab_index: Defines the position of the current element in the tabbing order.
  682. title: Defines a tooltip for the element.
  683. style: The style of the component.
  684. key: A unique key for the component.
  685. id: The id for the component.
  686. class_name: The class name for the component.
  687. autofocus: Whether the component should take the focus once the page is loaded
  688. custom_attrs: custom attribute
  689. **props: The props of the component.
  690. Returns:
  691. The component.
  692. """
  693. ...
  694. class Data(BaseHTML):
  695. @overload
  696. @classmethod
  697. def create( # type: ignore
  698. cls,
  699. *children,
  700. value: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  701. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  702. auto_capitalize: Optional[
  703. Union[Var[Union[bool, int, str]], bool, int, str]
  704. ] = None,
  705. content_editable: Optional[
  706. Union[Var[Union[bool, int, str]], bool, int, str]
  707. ] = None,
  708. context_menu: Optional[
  709. Union[Var[Union[bool, int, str]], bool, int, str]
  710. ] = None,
  711. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  712. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  713. enter_key_hint: Optional[
  714. Union[Var[Union[bool, int, str]], bool, int, str]
  715. ] = None,
  716. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  717. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  718. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  719. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  720. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  721. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  722. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  723. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  724. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  725. style: Optional[Style] = None,
  726. key: Optional[Any] = None,
  727. id: Optional[Any] = None,
  728. class_name: Optional[Any] = None,
  729. autofocus: Optional[bool] = None,
  730. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  731. on_blur: Optional[EventType[()]] = None,
  732. on_click: Optional[EventType[()]] = None,
  733. on_context_menu: Optional[EventType[()]] = None,
  734. on_double_click: Optional[EventType[()]] = None,
  735. on_focus: Optional[EventType[()]] = None,
  736. on_mount: Optional[EventType[()]] = None,
  737. on_mouse_down: Optional[EventType[()]] = None,
  738. on_mouse_enter: Optional[EventType[()]] = None,
  739. on_mouse_leave: Optional[EventType[()]] = None,
  740. on_mouse_move: Optional[EventType[()]] = None,
  741. on_mouse_out: Optional[EventType[()]] = None,
  742. on_mouse_over: Optional[EventType[()]] = None,
  743. on_mouse_up: Optional[EventType[()]] = None,
  744. on_scroll: Optional[EventType[()]] = None,
  745. on_unmount: Optional[EventType[()]] = None,
  746. **props,
  747. ) -> "Data":
  748. """Create the component.
  749. Args:
  750. *children: The children of the component.
  751. value: Specifies the machine-readable translation of the data element.
  752. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  753. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  754. content_editable: Indicates whether the element's content is editable.
  755. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  756. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  757. draggable: Defines whether the element can be dragged.
  758. enter_key_hint: Hints what media types the media element is able to play.
  759. hidden: Defines whether the element is hidden.
  760. input_mode: Defines the type of the element.
  761. item_prop: Defines the name of the element for metadata purposes.
  762. lang: Defines the language used in the element.
  763. role: Defines the role of the element.
  764. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  765. spell_check: Defines whether the element may be checked for spelling errors.
  766. tab_index: Defines the position of the current element in the tabbing order.
  767. title: Defines a tooltip for the element.
  768. style: The style of the component.
  769. key: A unique key for the component.
  770. id: The id for the component.
  771. class_name: The class name for the component.
  772. autofocus: Whether the component should take the focus once the page is loaded
  773. custom_attrs: custom attribute
  774. **props: The props of the component.
  775. Returns:
  776. The component.
  777. """
  778. ...
  779. class Dfn(BaseHTML):
  780. @overload
  781. @classmethod
  782. def create( # type: ignore
  783. cls,
  784. *children,
  785. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  786. auto_capitalize: Optional[
  787. Union[Var[Union[bool, int, str]], bool, int, str]
  788. ] = None,
  789. content_editable: Optional[
  790. Union[Var[Union[bool, int, str]], bool, int, str]
  791. ] = None,
  792. context_menu: Optional[
  793. Union[Var[Union[bool, int, str]], bool, int, str]
  794. ] = None,
  795. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  796. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  797. enter_key_hint: Optional[
  798. Union[Var[Union[bool, int, str]], bool, int, str]
  799. ] = None,
  800. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  801. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  802. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  803. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  804. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  805. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  806. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  807. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  808. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  809. style: Optional[Style] = None,
  810. key: Optional[Any] = None,
  811. id: Optional[Any] = None,
  812. class_name: Optional[Any] = None,
  813. autofocus: Optional[bool] = None,
  814. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  815. on_blur: Optional[EventType[()]] = None,
  816. on_click: Optional[EventType[()]] = None,
  817. on_context_menu: Optional[EventType[()]] = None,
  818. on_double_click: Optional[EventType[()]] = None,
  819. on_focus: Optional[EventType[()]] = None,
  820. on_mount: Optional[EventType[()]] = None,
  821. on_mouse_down: Optional[EventType[()]] = None,
  822. on_mouse_enter: Optional[EventType[()]] = None,
  823. on_mouse_leave: Optional[EventType[()]] = None,
  824. on_mouse_move: Optional[EventType[()]] = None,
  825. on_mouse_out: Optional[EventType[()]] = None,
  826. on_mouse_over: Optional[EventType[()]] = None,
  827. on_mouse_up: Optional[EventType[()]] = None,
  828. on_scroll: Optional[EventType[()]] = None,
  829. on_unmount: Optional[EventType[()]] = None,
  830. **props,
  831. ) -> "Dfn":
  832. """Create the component.
  833. Args:
  834. *children: The children of the component.
  835. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  836. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  837. content_editable: Indicates whether the element's content is editable.
  838. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  839. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  840. draggable: Defines whether the element can be dragged.
  841. enter_key_hint: Hints what media types the media element is able to play.
  842. hidden: Defines whether the element is hidden.
  843. input_mode: Defines the type of the element.
  844. item_prop: Defines the name of the element for metadata purposes.
  845. lang: Defines the language used in the element.
  846. role: Defines the role of the element.
  847. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  848. spell_check: Defines whether the element may be checked for spelling errors.
  849. tab_index: Defines the position of the current element in the tabbing order.
  850. title: Defines a tooltip for the element.
  851. style: The style of the component.
  852. key: A unique key for the component.
  853. id: The id for the component.
  854. class_name: The class name for the component.
  855. autofocus: Whether the component should take the focus once the page is loaded
  856. custom_attrs: custom attribute
  857. **props: The props of the component.
  858. Returns:
  859. The component.
  860. """
  861. ...
  862. class Em(BaseHTML):
  863. @overload
  864. @classmethod
  865. def create( # type: ignore
  866. cls,
  867. *children,
  868. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  869. auto_capitalize: Optional[
  870. Union[Var[Union[bool, int, str]], bool, int, str]
  871. ] = None,
  872. content_editable: Optional[
  873. Union[Var[Union[bool, int, str]], bool, int, str]
  874. ] = None,
  875. context_menu: Optional[
  876. Union[Var[Union[bool, int, str]], bool, int, str]
  877. ] = None,
  878. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  879. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  880. enter_key_hint: Optional[
  881. Union[Var[Union[bool, int, str]], bool, int, str]
  882. ] = None,
  883. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  884. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  885. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  886. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  887. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  888. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  889. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  890. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  891. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  892. style: Optional[Style] = None,
  893. key: Optional[Any] = None,
  894. id: Optional[Any] = None,
  895. class_name: Optional[Any] = None,
  896. autofocus: Optional[bool] = None,
  897. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  898. on_blur: Optional[EventType[()]] = None,
  899. on_click: Optional[EventType[()]] = None,
  900. on_context_menu: Optional[EventType[()]] = None,
  901. on_double_click: Optional[EventType[()]] = None,
  902. on_focus: Optional[EventType[()]] = None,
  903. on_mount: Optional[EventType[()]] = None,
  904. on_mouse_down: Optional[EventType[()]] = None,
  905. on_mouse_enter: Optional[EventType[()]] = None,
  906. on_mouse_leave: Optional[EventType[()]] = None,
  907. on_mouse_move: Optional[EventType[()]] = None,
  908. on_mouse_out: Optional[EventType[()]] = None,
  909. on_mouse_over: Optional[EventType[()]] = None,
  910. on_mouse_up: Optional[EventType[()]] = None,
  911. on_scroll: Optional[EventType[()]] = None,
  912. on_unmount: Optional[EventType[()]] = None,
  913. **props,
  914. ) -> "Em":
  915. """Create the component.
  916. Args:
  917. *children: The children of the component.
  918. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  919. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  920. content_editable: Indicates whether the element's content is editable.
  921. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  922. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  923. draggable: Defines whether the element can be dragged.
  924. enter_key_hint: Hints what media types the media element is able to play.
  925. hidden: Defines whether the element is hidden.
  926. input_mode: Defines the type of the element.
  927. item_prop: Defines the name of the element for metadata purposes.
  928. lang: Defines the language used in the element.
  929. role: Defines the role of the element.
  930. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  931. spell_check: Defines whether the element may be checked for spelling errors.
  932. tab_index: Defines the position of the current element in the tabbing order.
  933. title: Defines a tooltip for the element.
  934. style: The style of the component.
  935. key: A unique key for the component.
  936. id: The id for the component.
  937. class_name: The class name for the component.
  938. autofocus: Whether the component should take the focus once the page is loaded
  939. custom_attrs: custom attribute
  940. **props: The props of the component.
  941. Returns:
  942. The component.
  943. """
  944. ...
  945. class I(BaseHTML):
  946. @overload
  947. @classmethod
  948. def create( # type: ignore
  949. cls,
  950. *children,
  951. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  952. auto_capitalize: Optional[
  953. Union[Var[Union[bool, int, str]], bool, int, str]
  954. ] = None,
  955. content_editable: Optional[
  956. Union[Var[Union[bool, int, str]], bool, int, str]
  957. ] = None,
  958. context_menu: Optional[
  959. Union[Var[Union[bool, int, str]], bool, int, str]
  960. ] = None,
  961. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  962. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  963. enter_key_hint: Optional[
  964. Union[Var[Union[bool, int, str]], bool, int, str]
  965. ] = None,
  966. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  967. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  968. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  969. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  970. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  971. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  972. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  973. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  974. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  975. style: Optional[Style] = None,
  976. key: Optional[Any] = None,
  977. id: Optional[Any] = None,
  978. class_name: Optional[Any] = None,
  979. autofocus: Optional[bool] = None,
  980. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  981. on_blur: Optional[EventType[()]] = None,
  982. on_click: Optional[EventType[()]] = None,
  983. on_context_menu: Optional[EventType[()]] = None,
  984. on_double_click: Optional[EventType[()]] = None,
  985. on_focus: Optional[EventType[()]] = None,
  986. on_mount: Optional[EventType[()]] = None,
  987. on_mouse_down: Optional[EventType[()]] = None,
  988. on_mouse_enter: Optional[EventType[()]] = None,
  989. on_mouse_leave: Optional[EventType[()]] = None,
  990. on_mouse_move: Optional[EventType[()]] = None,
  991. on_mouse_out: Optional[EventType[()]] = None,
  992. on_mouse_over: Optional[EventType[()]] = None,
  993. on_mouse_up: Optional[EventType[()]] = None,
  994. on_scroll: Optional[EventType[()]] = None,
  995. on_unmount: Optional[EventType[()]] = None,
  996. **props,
  997. ) -> "I":
  998. """Create the component.
  999. Args:
  1000. *children: The children of the component.
  1001. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1002. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1003. content_editable: Indicates whether the element's content is editable.
  1004. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1005. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1006. draggable: Defines whether the element can be dragged.
  1007. enter_key_hint: Hints what media types the media element is able to play.
  1008. hidden: Defines whether the element is hidden.
  1009. input_mode: Defines the type of the element.
  1010. item_prop: Defines the name of the element for metadata purposes.
  1011. lang: Defines the language used in the element.
  1012. role: Defines the role of the element.
  1013. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1014. spell_check: Defines whether the element may be checked for spelling errors.
  1015. tab_index: Defines the position of the current element in the tabbing order.
  1016. title: Defines a tooltip for the element.
  1017. style: The style of the component.
  1018. key: A unique key for the component.
  1019. id: The id for the component.
  1020. class_name: The class name for the component.
  1021. autofocus: Whether the component should take the focus once the page is loaded
  1022. custom_attrs: custom attribute
  1023. **props: The props of the component.
  1024. Returns:
  1025. The component.
  1026. """
  1027. ...
  1028. class Kbd(BaseHTML):
  1029. @overload
  1030. @classmethod
  1031. def create( # type: ignore
  1032. cls,
  1033. *children,
  1034. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1035. auto_capitalize: Optional[
  1036. Union[Var[Union[bool, int, str]], bool, int, str]
  1037. ] = None,
  1038. content_editable: Optional[
  1039. Union[Var[Union[bool, int, str]], bool, int, str]
  1040. ] = None,
  1041. context_menu: Optional[
  1042. Union[Var[Union[bool, int, str]], bool, int, str]
  1043. ] = None,
  1044. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1045. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1046. enter_key_hint: Optional[
  1047. Union[Var[Union[bool, int, str]], bool, int, str]
  1048. ] = None,
  1049. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1050. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1051. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1052. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1053. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1054. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1055. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1056. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1057. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1058. style: Optional[Style] = None,
  1059. key: Optional[Any] = None,
  1060. id: Optional[Any] = None,
  1061. class_name: Optional[Any] = None,
  1062. autofocus: Optional[bool] = None,
  1063. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1064. on_blur: Optional[EventType[()]] = None,
  1065. on_click: Optional[EventType[()]] = None,
  1066. on_context_menu: Optional[EventType[()]] = None,
  1067. on_double_click: Optional[EventType[()]] = None,
  1068. on_focus: Optional[EventType[()]] = None,
  1069. on_mount: Optional[EventType[()]] = None,
  1070. on_mouse_down: Optional[EventType[()]] = None,
  1071. on_mouse_enter: Optional[EventType[()]] = None,
  1072. on_mouse_leave: Optional[EventType[()]] = None,
  1073. on_mouse_move: Optional[EventType[()]] = None,
  1074. on_mouse_out: Optional[EventType[()]] = None,
  1075. on_mouse_over: Optional[EventType[()]] = None,
  1076. on_mouse_up: Optional[EventType[()]] = None,
  1077. on_scroll: Optional[EventType[()]] = None,
  1078. on_unmount: Optional[EventType[()]] = None,
  1079. **props,
  1080. ) -> "Kbd":
  1081. """Create the component.
  1082. Args:
  1083. *children: The children of the component.
  1084. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1085. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1086. content_editable: Indicates whether the element's content is editable.
  1087. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1088. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1089. draggable: Defines whether the element can be dragged.
  1090. enter_key_hint: Hints what media types the media element is able to play.
  1091. hidden: Defines whether the element is hidden.
  1092. input_mode: Defines the type of the element.
  1093. item_prop: Defines the name of the element for metadata purposes.
  1094. lang: Defines the language used in the element.
  1095. role: Defines the role of the element.
  1096. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1097. spell_check: Defines whether the element may be checked for spelling errors.
  1098. tab_index: Defines the position of the current element in the tabbing order.
  1099. title: Defines a tooltip for the element.
  1100. style: The style of the component.
  1101. key: A unique key for the component.
  1102. id: The id for the component.
  1103. class_name: The class name for the component.
  1104. autofocus: Whether the component should take the focus once the page is loaded
  1105. custom_attrs: custom attribute
  1106. **props: The props of the component.
  1107. Returns:
  1108. The component.
  1109. """
  1110. ...
  1111. class Mark(BaseHTML):
  1112. @overload
  1113. @classmethod
  1114. def create( # type: ignore
  1115. cls,
  1116. *children,
  1117. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1118. auto_capitalize: Optional[
  1119. Union[Var[Union[bool, int, str]], bool, int, str]
  1120. ] = None,
  1121. content_editable: Optional[
  1122. Union[Var[Union[bool, int, str]], bool, int, str]
  1123. ] = None,
  1124. context_menu: Optional[
  1125. Union[Var[Union[bool, int, str]], bool, int, str]
  1126. ] = None,
  1127. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1128. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1129. enter_key_hint: Optional[
  1130. Union[Var[Union[bool, int, str]], bool, int, str]
  1131. ] = None,
  1132. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1133. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1134. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1135. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1136. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1137. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1138. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1139. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1140. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1141. style: Optional[Style] = None,
  1142. key: Optional[Any] = None,
  1143. id: Optional[Any] = None,
  1144. class_name: Optional[Any] = None,
  1145. autofocus: Optional[bool] = None,
  1146. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1147. on_blur: Optional[EventType[()]] = None,
  1148. on_click: Optional[EventType[()]] = None,
  1149. on_context_menu: Optional[EventType[()]] = None,
  1150. on_double_click: Optional[EventType[()]] = None,
  1151. on_focus: Optional[EventType[()]] = None,
  1152. on_mount: Optional[EventType[()]] = None,
  1153. on_mouse_down: Optional[EventType[()]] = None,
  1154. on_mouse_enter: Optional[EventType[()]] = None,
  1155. on_mouse_leave: Optional[EventType[()]] = None,
  1156. on_mouse_move: Optional[EventType[()]] = None,
  1157. on_mouse_out: Optional[EventType[()]] = None,
  1158. on_mouse_over: Optional[EventType[()]] = None,
  1159. on_mouse_up: Optional[EventType[()]] = None,
  1160. on_scroll: Optional[EventType[()]] = None,
  1161. on_unmount: Optional[EventType[()]] = None,
  1162. **props,
  1163. ) -> "Mark":
  1164. """Create the component.
  1165. Args:
  1166. *children: The children of the component.
  1167. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1168. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1169. content_editable: Indicates whether the element's content is editable.
  1170. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1171. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1172. draggable: Defines whether the element can be dragged.
  1173. enter_key_hint: Hints what media types the media element is able to play.
  1174. hidden: Defines whether the element is hidden.
  1175. input_mode: Defines the type of the element.
  1176. item_prop: Defines the name of the element for metadata purposes.
  1177. lang: Defines the language used in the element.
  1178. role: Defines the role of the element.
  1179. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1180. spell_check: Defines whether the element may be checked for spelling errors.
  1181. tab_index: Defines the position of the current element in the tabbing order.
  1182. title: Defines a tooltip for the element.
  1183. style: The style of the component.
  1184. key: A unique key for the component.
  1185. id: The id for the component.
  1186. class_name: The class name for the component.
  1187. autofocus: Whether the component should take the focus once the page is loaded
  1188. custom_attrs: custom attribute
  1189. **props: The props of the component.
  1190. Returns:
  1191. The component.
  1192. """
  1193. ...
  1194. class Q(BaseHTML):
  1195. @overload
  1196. @classmethod
  1197. def create( # type: ignore
  1198. cls,
  1199. *children,
  1200. cite: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1201. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1202. auto_capitalize: Optional[
  1203. Union[Var[Union[bool, int, str]], bool, int, str]
  1204. ] = None,
  1205. content_editable: Optional[
  1206. Union[Var[Union[bool, int, str]], bool, int, str]
  1207. ] = None,
  1208. context_menu: Optional[
  1209. Union[Var[Union[bool, int, str]], bool, int, str]
  1210. ] = None,
  1211. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1212. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1213. enter_key_hint: Optional[
  1214. Union[Var[Union[bool, int, str]], bool, int, str]
  1215. ] = None,
  1216. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1217. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1218. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1219. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1220. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1221. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1222. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1223. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1224. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1225. style: Optional[Style] = None,
  1226. key: Optional[Any] = None,
  1227. id: Optional[Any] = None,
  1228. class_name: Optional[Any] = None,
  1229. autofocus: Optional[bool] = None,
  1230. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1231. on_blur: Optional[EventType[()]] = None,
  1232. on_click: Optional[EventType[()]] = None,
  1233. on_context_menu: Optional[EventType[()]] = None,
  1234. on_double_click: Optional[EventType[()]] = None,
  1235. on_focus: Optional[EventType[()]] = None,
  1236. on_mount: Optional[EventType[()]] = None,
  1237. on_mouse_down: Optional[EventType[()]] = None,
  1238. on_mouse_enter: Optional[EventType[()]] = None,
  1239. on_mouse_leave: Optional[EventType[()]] = None,
  1240. on_mouse_move: Optional[EventType[()]] = None,
  1241. on_mouse_out: Optional[EventType[()]] = None,
  1242. on_mouse_over: Optional[EventType[()]] = None,
  1243. on_mouse_up: Optional[EventType[()]] = None,
  1244. on_scroll: Optional[EventType[()]] = None,
  1245. on_unmount: Optional[EventType[()]] = None,
  1246. **props,
  1247. ) -> "Q":
  1248. """Create the component.
  1249. Args:
  1250. *children: The children of the component.
  1251. cite: Specifies the source URL of the quote.
  1252. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1253. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1254. content_editable: Indicates whether the element's content is editable.
  1255. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1256. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1257. draggable: Defines whether the element can be dragged.
  1258. enter_key_hint: Hints what media types the media element is able to play.
  1259. hidden: Defines whether the element is hidden.
  1260. input_mode: Defines the type of the element.
  1261. item_prop: Defines the name of the element for metadata purposes.
  1262. lang: Defines the language used in the element.
  1263. role: Defines the role of the element.
  1264. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1265. spell_check: Defines whether the element may be checked for spelling errors.
  1266. tab_index: Defines the position of the current element in the tabbing order.
  1267. title: Defines a tooltip for the element.
  1268. style: The style of the component.
  1269. key: A unique key for the component.
  1270. id: The id for the component.
  1271. class_name: The class name for the component.
  1272. autofocus: Whether the component should take the focus once the page is loaded
  1273. custom_attrs: custom attribute
  1274. **props: The props of the component.
  1275. Returns:
  1276. The component.
  1277. """
  1278. ...
  1279. class Rp(BaseHTML):
  1280. @overload
  1281. @classmethod
  1282. def create( # type: ignore
  1283. cls,
  1284. *children,
  1285. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1286. auto_capitalize: Optional[
  1287. Union[Var[Union[bool, int, str]], bool, int, str]
  1288. ] = None,
  1289. content_editable: Optional[
  1290. Union[Var[Union[bool, int, str]], bool, int, str]
  1291. ] = None,
  1292. context_menu: Optional[
  1293. Union[Var[Union[bool, int, str]], bool, int, str]
  1294. ] = None,
  1295. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1296. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1297. enter_key_hint: Optional[
  1298. Union[Var[Union[bool, int, str]], bool, int, str]
  1299. ] = None,
  1300. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1301. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1302. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1303. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1304. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1305. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1306. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1307. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1308. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1309. style: Optional[Style] = None,
  1310. key: Optional[Any] = None,
  1311. id: Optional[Any] = None,
  1312. class_name: Optional[Any] = None,
  1313. autofocus: Optional[bool] = None,
  1314. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1315. on_blur: Optional[EventType[()]] = None,
  1316. on_click: Optional[EventType[()]] = None,
  1317. on_context_menu: Optional[EventType[()]] = None,
  1318. on_double_click: Optional[EventType[()]] = None,
  1319. on_focus: Optional[EventType[()]] = None,
  1320. on_mount: Optional[EventType[()]] = None,
  1321. on_mouse_down: Optional[EventType[()]] = None,
  1322. on_mouse_enter: Optional[EventType[()]] = None,
  1323. on_mouse_leave: Optional[EventType[()]] = None,
  1324. on_mouse_move: Optional[EventType[()]] = None,
  1325. on_mouse_out: Optional[EventType[()]] = None,
  1326. on_mouse_over: Optional[EventType[()]] = None,
  1327. on_mouse_up: Optional[EventType[()]] = None,
  1328. on_scroll: Optional[EventType[()]] = None,
  1329. on_unmount: Optional[EventType[()]] = None,
  1330. **props,
  1331. ) -> "Rp":
  1332. """Create the component.
  1333. Args:
  1334. *children: The children of the component.
  1335. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1336. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1337. content_editable: Indicates whether the element's content is editable.
  1338. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1339. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1340. draggable: Defines whether the element can be dragged.
  1341. enter_key_hint: Hints what media types the media element is able to play.
  1342. hidden: Defines whether the element is hidden.
  1343. input_mode: Defines the type of the element.
  1344. item_prop: Defines the name of the element for metadata purposes.
  1345. lang: Defines the language used in the element.
  1346. role: Defines the role of the element.
  1347. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1348. spell_check: Defines whether the element may be checked for spelling errors.
  1349. tab_index: Defines the position of the current element in the tabbing order.
  1350. title: Defines a tooltip for the element.
  1351. style: The style of the component.
  1352. key: A unique key for the component.
  1353. id: The id for the component.
  1354. class_name: The class name for the component.
  1355. autofocus: Whether the component should take the focus once the page is loaded
  1356. custom_attrs: custom attribute
  1357. **props: The props of the component.
  1358. Returns:
  1359. The component.
  1360. """
  1361. ...
  1362. class Rt(BaseHTML):
  1363. @overload
  1364. @classmethod
  1365. def create( # type: ignore
  1366. cls,
  1367. *children,
  1368. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1369. auto_capitalize: Optional[
  1370. Union[Var[Union[bool, int, str]], bool, int, str]
  1371. ] = None,
  1372. content_editable: Optional[
  1373. Union[Var[Union[bool, int, str]], bool, int, str]
  1374. ] = None,
  1375. context_menu: Optional[
  1376. Union[Var[Union[bool, int, str]], bool, int, str]
  1377. ] = None,
  1378. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1379. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1380. enter_key_hint: Optional[
  1381. Union[Var[Union[bool, int, str]], bool, int, str]
  1382. ] = None,
  1383. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1384. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1385. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1386. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1387. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1388. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1389. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1390. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1391. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1392. style: Optional[Style] = None,
  1393. key: Optional[Any] = None,
  1394. id: Optional[Any] = None,
  1395. class_name: Optional[Any] = None,
  1396. autofocus: Optional[bool] = None,
  1397. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1398. on_blur: Optional[EventType[()]] = None,
  1399. on_click: Optional[EventType[()]] = None,
  1400. on_context_menu: Optional[EventType[()]] = None,
  1401. on_double_click: Optional[EventType[()]] = None,
  1402. on_focus: Optional[EventType[()]] = None,
  1403. on_mount: Optional[EventType[()]] = None,
  1404. on_mouse_down: Optional[EventType[()]] = None,
  1405. on_mouse_enter: Optional[EventType[()]] = None,
  1406. on_mouse_leave: Optional[EventType[()]] = None,
  1407. on_mouse_move: Optional[EventType[()]] = None,
  1408. on_mouse_out: Optional[EventType[()]] = None,
  1409. on_mouse_over: Optional[EventType[()]] = None,
  1410. on_mouse_up: Optional[EventType[()]] = None,
  1411. on_scroll: Optional[EventType[()]] = None,
  1412. on_unmount: Optional[EventType[()]] = None,
  1413. **props,
  1414. ) -> "Rt":
  1415. """Create the component.
  1416. Args:
  1417. *children: The children of the component.
  1418. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1419. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1420. content_editable: Indicates whether the element's content is editable.
  1421. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1422. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1423. draggable: Defines whether the element can be dragged.
  1424. enter_key_hint: Hints what media types the media element is able to play.
  1425. hidden: Defines whether the element is hidden.
  1426. input_mode: Defines the type of the element.
  1427. item_prop: Defines the name of the element for metadata purposes.
  1428. lang: Defines the language used in the element.
  1429. role: Defines the role of the element.
  1430. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1431. spell_check: Defines whether the element may be checked for spelling errors.
  1432. tab_index: Defines the position of the current element in the tabbing order.
  1433. title: Defines a tooltip for the element.
  1434. style: The style of the component.
  1435. key: A unique key for the component.
  1436. id: The id for the component.
  1437. class_name: The class name for the component.
  1438. autofocus: Whether the component should take the focus once the page is loaded
  1439. custom_attrs: custom attribute
  1440. **props: The props of the component.
  1441. Returns:
  1442. The component.
  1443. """
  1444. ...
  1445. class Ruby(BaseHTML):
  1446. @overload
  1447. @classmethod
  1448. def create( # type: ignore
  1449. cls,
  1450. *children,
  1451. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1452. auto_capitalize: Optional[
  1453. Union[Var[Union[bool, int, str]], bool, int, str]
  1454. ] = None,
  1455. content_editable: Optional[
  1456. Union[Var[Union[bool, int, str]], bool, int, str]
  1457. ] = None,
  1458. context_menu: Optional[
  1459. Union[Var[Union[bool, int, str]], bool, int, str]
  1460. ] = None,
  1461. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1462. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1463. enter_key_hint: Optional[
  1464. Union[Var[Union[bool, int, str]], bool, int, str]
  1465. ] = None,
  1466. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1467. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1468. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1469. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1470. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1471. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1472. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1473. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1474. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1475. style: Optional[Style] = None,
  1476. key: Optional[Any] = None,
  1477. id: Optional[Any] = None,
  1478. class_name: Optional[Any] = None,
  1479. autofocus: Optional[bool] = None,
  1480. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1481. on_blur: Optional[EventType[()]] = None,
  1482. on_click: Optional[EventType[()]] = None,
  1483. on_context_menu: Optional[EventType[()]] = None,
  1484. on_double_click: Optional[EventType[()]] = None,
  1485. on_focus: Optional[EventType[()]] = None,
  1486. on_mount: Optional[EventType[()]] = None,
  1487. on_mouse_down: Optional[EventType[()]] = None,
  1488. on_mouse_enter: Optional[EventType[()]] = None,
  1489. on_mouse_leave: Optional[EventType[()]] = None,
  1490. on_mouse_move: Optional[EventType[()]] = None,
  1491. on_mouse_out: Optional[EventType[()]] = None,
  1492. on_mouse_over: Optional[EventType[()]] = None,
  1493. on_mouse_up: Optional[EventType[()]] = None,
  1494. on_scroll: Optional[EventType[()]] = None,
  1495. on_unmount: Optional[EventType[()]] = None,
  1496. **props,
  1497. ) -> "Ruby":
  1498. """Create the component.
  1499. Args:
  1500. *children: The children of the component.
  1501. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1502. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1503. content_editable: Indicates whether the element's content is editable.
  1504. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1505. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1506. draggable: Defines whether the element can be dragged.
  1507. enter_key_hint: Hints what media types the media element is able to play.
  1508. hidden: Defines whether the element is hidden.
  1509. input_mode: Defines the type of the element.
  1510. item_prop: Defines the name of the element for metadata purposes.
  1511. lang: Defines the language used in the element.
  1512. role: Defines the role of the element.
  1513. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1514. spell_check: Defines whether the element may be checked for spelling errors.
  1515. tab_index: Defines the position of the current element in the tabbing order.
  1516. title: Defines a tooltip for the element.
  1517. style: The style of the component.
  1518. key: A unique key for the component.
  1519. id: The id for the component.
  1520. class_name: The class name for the component.
  1521. autofocus: Whether the component should take the focus once the page is loaded
  1522. custom_attrs: custom attribute
  1523. **props: The props of the component.
  1524. Returns:
  1525. The component.
  1526. """
  1527. ...
  1528. class S(BaseHTML):
  1529. @overload
  1530. @classmethod
  1531. def create( # type: ignore
  1532. cls,
  1533. *children,
  1534. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1535. auto_capitalize: Optional[
  1536. Union[Var[Union[bool, int, str]], bool, int, str]
  1537. ] = None,
  1538. content_editable: Optional[
  1539. Union[Var[Union[bool, int, str]], bool, int, str]
  1540. ] = None,
  1541. context_menu: Optional[
  1542. Union[Var[Union[bool, int, str]], bool, int, str]
  1543. ] = None,
  1544. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1545. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1546. enter_key_hint: Optional[
  1547. Union[Var[Union[bool, int, str]], bool, int, str]
  1548. ] = None,
  1549. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1550. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1551. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1552. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1553. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1554. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1555. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1556. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1557. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1558. style: Optional[Style] = None,
  1559. key: Optional[Any] = None,
  1560. id: Optional[Any] = None,
  1561. class_name: Optional[Any] = None,
  1562. autofocus: Optional[bool] = None,
  1563. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1564. on_blur: Optional[EventType[()]] = None,
  1565. on_click: Optional[EventType[()]] = None,
  1566. on_context_menu: Optional[EventType[()]] = None,
  1567. on_double_click: Optional[EventType[()]] = None,
  1568. on_focus: Optional[EventType[()]] = None,
  1569. on_mount: Optional[EventType[()]] = None,
  1570. on_mouse_down: Optional[EventType[()]] = None,
  1571. on_mouse_enter: Optional[EventType[()]] = None,
  1572. on_mouse_leave: Optional[EventType[()]] = None,
  1573. on_mouse_move: Optional[EventType[()]] = None,
  1574. on_mouse_out: Optional[EventType[()]] = None,
  1575. on_mouse_over: Optional[EventType[()]] = None,
  1576. on_mouse_up: Optional[EventType[()]] = None,
  1577. on_scroll: Optional[EventType[()]] = None,
  1578. on_unmount: Optional[EventType[()]] = None,
  1579. **props,
  1580. ) -> "S":
  1581. """Create the component.
  1582. Args:
  1583. *children: The children of the component.
  1584. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1585. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1586. content_editable: Indicates whether the element's content is editable.
  1587. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1588. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1589. draggable: Defines whether the element can be dragged.
  1590. enter_key_hint: Hints what media types the media element is able to play.
  1591. hidden: Defines whether the element is hidden.
  1592. input_mode: Defines the type of the element.
  1593. item_prop: Defines the name of the element for metadata purposes.
  1594. lang: Defines the language used in the element.
  1595. role: Defines the role of the element.
  1596. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1597. spell_check: Defines whether the element may be checked for spelling errors.
  1598. tab_index: Defines the position of the current element in the tabbing order.
  1599. title: Defines a tooltip for the element.
  1600. style: The style of the component.
  1601. key: A unique key for the component.
  1602. id: The id for the component.
  1603. class_name: The class name for the component.
  1604. autofocus: Whether the component should take the focus once the page is loaded
  1605. custom_attrs: custom attribute
  1606. **props: The props of the component.
  1607. Returns:
  1608. The component.
  1609. """
  1610. ...
  1611. class Samp(BaseHTML):
  1612. @overload
  1613. @classmethod
  1614. def create( # type: ignore
  1615. cls,
  1616. *children,
  1617. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1618. auto_capitalize: Optional[
  1619. Union[Var[Union[bool, int, str]], bool, int, str]
  1620. ] = None,
  1621. content_editable: Optional[
  1622. Union[Var[Union[bool, int, str]], bool, int, str]
  1623. ] = None,
  1624. context_menu: Optional[
  1625. Union[Var[Union[bool, int, str]], bool, int, str]
  1626. ] = None,
  1627. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1628. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1629. enter_key_hint: Optional[
  1630. Union[Var[Union[bool, int, str]], bool, int, str]
  1631. ] = None,
  1632. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1633. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1634. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1635. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1636. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1637. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1638. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1639. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1640. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1641. style: Optional[Style] = None,
  1642. key: Optional[Any] = None,
  1643. id: Optional[Any] = None,
  1644. class_name: Optional[Any] = None,
  1645. autofocus: Optional[bool] = None,
  1646. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1647. on_blur: Optional[EventType[()]] = None,
  1648. on_click: Optional[EventType[()]] = None,
  1649. on_context_menu: Optional[EventType[()]] = None,
  1650. on_double_click: Optional[EventType[()]] = None,
  1651. on_focus: Optional[EventType[()]] = None,
  1652. on_mount: Optional[EventType[()]] = None,
  1653. on_mouse_down: Optional[EventType[()]] = None,
  1654. on_mouse_enter: Optional[EventType[()]] = None,
  1655. on_mouse_leave: Optional[EventType[()]] = None,
  1656. on_mouse_move: Optional[EventType[()]] = None,
  1657. on_mouse_out: Optional[EventType[()]] = None,
  1658. on_mouse_over: Optional[EventType[()]] = None,
  1659. on_mouse_up: Optional[EventType[()]] = None,
  1660. on_scroll: Optional[EventType[()]] = None,
  1661. on_unmount: Optional[EventType[()]] = None,
  1662. **props,
  1663. ) -> "Samp":
  1664. """Create the component.
  1665. Args:
  1666. *children: The children of the component.
  1667. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1668. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1669. content_editable: Indicates whether the element's content is editable.
  1670. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1671. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1672. draggable: Defines whether the element can be dragged.
  1673. enter_key_hint: Hints what media types the media element is able to play.
  1674. hidden: Defines whether the element is hidden.
  1675. input_mode: Defines the type of the element.
  1676. item_prop: Defines the name of the element for metadata purposes.
  1677. lang: Defines the language used in the element.
  1678. role: Defines the role of the element.
  1679. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1680. spell_check: Defines whether the element may be checked for spelling errors.
  1681. tab_index: Defines the position of the current element in the tabbing order.
  1682. title: Defines a tooltip for the element.
  1683. style: The style of the component.
  1684. key: A unique key for the component.
  1685. id: The id for the component.
  1686. class_name: The class name for the component.
  1687. autofocus: Whether the component should take the focus once the page is loaded
  1688. custom_attrs: custom attribute
  1689. **props: The props of the component.
  1690. Returns:
  1691. The component.
  1692. """
  1693. ...
  1694. class Small(BaseHTML):
  1695. @overload
  1696. @classmethod
  1697. def create( # type: ignore
  1698. cls,
  1699. *children,
  1700. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1701. auto_capitalize: Optional[
  1702. Union[Var[Union[bool, int, str]], bool, int, str]
  1703. ] = None,
  1704. content_editable: Optional[
  1705. Union[Var[Union[bool, int, str]], bool, int, str]
  1706. ] = None,
  1707. context_menu: Optional[
  1708. Union[Var[Union[bool, int, str]], bool, int, str]
  1709. ] = None,
  1710. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1711. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1712. enter_key_hint: Optional[
  1713. Union[Var[Union[bool, int, str]], bool, int, str]
  1714. ] = None,
  1715. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1716. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1717. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1718. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1719. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1720. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1721. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1722. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1723. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1724. style: Optional[Style] = None,
  1725. key: Optional[Any] = None,
  1726. id: Optional[Any] = None,
  1727. class_name: Optional[Any] = None,
  1728. autofocus: Optional[bool] = None,
  1729. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1730. on_blur: Optional[EventType[()]] = None,
  1731. on_click: Optional[EventType[()]] = None,
  1732. on_context_menu: Optional[EventType[()]] = None,
  1733. on_double_click: Optional[EventType[()]] = None,
  1734. on_focus: Optional[EventType[()]] = None,
  1735. on_mount: Optional[EventType[()]] = None,
  1736. on_mouse_down: Optional[EventType[()]] = None,
  1737. on_mouse_enter: Optional[EventType[()]] = None,
  1738. on_mouse_leave: Optional[EventType[()]] = None,
  1739. on_mouse_move: Optional[EventType[()]] = None,
  1740. on_mouse_out: Optional[EventType[()]] = None,
  1741. on_mouse_over: Optional[EventType[()]] = None,
  1742. on_mouse_up: Optional[EventType[()]] = None,
  1743. on_scroll: Optional[EventType[()]] = None,
  1744. on_unmount: Optional[EventType[()]] = None,
  1745. **props,
  1746. ) -> "Small":
  1747. """Create the component.
  1748. Args:
  1749. *children: The children of the component.
  1750. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1751. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1752. content_editable: Indicates whether the element's content is editable.
  1753. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1754. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1755. draggable: Defines whether the element can be dragged.
  1756. enter_key_hint: Hints what media types the media element is able to play.
  1757. hidden: Defines whether the element is hidden.
  1758. input_mode: Defines the type of the element.
  1759. item_prop: Defines the name of the element for metadata purposes.
  1760. lang: Defines the language used in the element.
  1761. role: Defines the role of the element.
  1762. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1763. spell_check: Defines whether the element may be checked for spelling errors.
  1764. tab_index: Defines the position of the current element in the tabbing order.
  1765. title: Defines a tooltip for the element.
  1766. style: The style of the component.
  1767. key: A unique key for the component.
  1768. id: The id for the component.
  1769. class_name: The class name for the component.
  1770. autofocus: Whether the component should take the focus once the page is loaded
  1771. custom_attrs: custom attribute
  1772. **props: The props of the component.
  1773. Returns:
  1774. The component.
  1775. """
  1776. ...
  1777. class Span(BaseHTML):
  1778. @overload
  1779. @classmethod
  1780. def create( # type: ignore
  1781. cls,
  1782. *children,
  1783. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1784. auto_capitalize: Optional[
  1785. Union[Var[Union[bool, int, str]], bool, int, str]
  1786. ] = None,
  1787. content_editable: Optional[
  1788. Union[Var[Union[bool, int, str]], bool, int, str]
  1789. ] = None,
  1790. context_menu: Optional[
  1791. Union[Var[Union[bool, int, str]], bool, int, str]
  1792. ] = None,
  1793. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1794. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1795. enter_key_hint: Optional[
  1796. Union[Var[Union[bool, int, str]], bool, int, str]
  1797. ] = None,
  1798. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1799. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1800. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1801. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1802. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1803. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1804. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1805. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1806. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1807. style: Optional[Style] = None,
  1808. key: Optional[Any] = None,
  1809. id: Optional[Any] = None,
  1810. class_name: Optional[Any] = None,
  1811. autofocus: Optional[bool] = None,
  1812. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1813. on_blur: Optional[EventType[()]] = None,
  1814. on_click: Optional[EventType[()]] = None,
  1815. on_context_menu: Optional[EventType[()]] = None,
  1816. on_double_click: Optional[EventType[()]] = None,
  1817. on_focus: Optional[EventType[()]] = None,
  1818. on_mount: Optional[EventType[()]] = None,
  1819. on_mouse_down: Optional[EventType[()]] = None,
  1820. on_mouse_enter: Optional[EventType[()]] = None,
  1821. on_mouse_leave: Optional[EventType[()]] = None,
  1822. on_mouse_move: Optional[EventType[()]] = None,
  1823. on_mouse_out: Optional[EventType[()]] = None,
  1824. on_mouse_over: Optional[EventType[()]] = None,
  1825. on_mouse_up: Optional[EventType[()]] = None,
  1826. on_scroll: Optional[EventType[()]] = None,
  1827. on_unmount: Optional[EventType[()]] = None,
  1828. **props,
  1829. ) -> "Span":
  1830. """Create the component.
  1831. Args:
  1832. *children: The children of the component.
  1833. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1834. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1835. content_editable: Indicates whether the element's content is editable.
  1836. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1837. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1838. draggable: Defines whether the element can be dragged.
  1839. enter_key_hint: Hints what media types the media element is able to play.
  1840. hidden: Defines whether the element is hidden.
  1841. input_mode: Defines the type of the element.
  1842. item_prop: Defines the name of the element for metadata purposes.
  1843. lang: Defines the language used in the element.
  1844. role: Defines the role of the element.
  1845. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1846. spell_check: Defines whether the element may be checked for spelling errors.
  1847. tab_index: Defines the position of the current element in the tabbing order.
  1848. title: Defines a tooltip for the element.
  1849. style: The style of the component.
  1850. key: A unique key for the component.
  1851. id: The id for the component.
  1852. class_name: The class name for the component.
  1853. autofocus: Whether the component should take the focus once the page is loaded
  1854. custom_attrs: custom attribute
  1855. **props: The props of the component.
  1856. Returns:
  1857. The component.
  1858. """
  1859. ...
  1860. class Strong(BaseHTML):
  1861. @overload
  1862. @classmethod
  1863. def create( # type: ignore
  1864. cls,
  1865. *children,
  1866. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1867. auto_capitalize: Optional[
  1868. Union[Var[Union[bool, int, str]], bool, int, str]
  1869. ] = None,
  1870. content_editable: Optional[
  1871. Union[Var[Union[bool, int, str]], bool, int, str]
  1872. ] = None,
  1873. context_menu: Optional[
  1874. Union[Var[Union[bool, int, str]], bool, int, str]
  1875. ] = None,
  1876. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1877. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1878. enter_key_hint: Optional[
  1879. Union[Var[Union[bool, int, str]], bool, int, str]
  1880. ] = None,
  1881. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1882. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1883. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1884. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1885. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1886. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1887. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1888. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1889. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1890. style: Optional[Style] = None,
  1891. key: Optional[Any] = None,
  1892. id: Optional[Any] = None,
  1893. class_name: Optional[Any] = None,
  1894. autofocus: Optional[bool] = None,
  1895. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1896. on_blur: Optional[EventType[()]] = None,
  1897. on_click: Optional[EventType[()]] = None,
  1898. on_context_menu: Optional[EventType[()]] = None,
  1899. on_double_click: Optional[EventType[()]] = None,
  1900. on_focus: Optional[EventType[()]] = None,
  1901. on_mount: Optional[EventType[()]] = None,
  1902. on_mouse_down: Optional[EventType[()]] = None,
  1903. on_mouse_enter: Optional[EventType[()]] = None,
  1904. on_mouse_leave: Optional[EventType[()]] = None,
  1905. on_mouse_move: Optional[EventType[()]] = None,
  1906. on_mouse_out: Optional[EventType[()]] = None,
  1907. on_mouse_over: Optional[EventType[()]] = None,
  1908. on_mouse_up: Optional[EventType[()]] = None,
  1909. on_scroll: Optional[EventType[()]] = None,
  1910. on_unmount: Optional[EventType[()]] = None,
  1911. **props,
  1912. ) -> "Strong":
  1913. """Create the component.
  1914. Args:
  1915. *children: The children of the component.
  1916. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1917. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1918. content_editable: Indicates whether the element's content is editable.
  1919. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1920. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1921. draggable: Defines whether the element can be dragged.
  1922. enter_key_hint: Hints what media types the media element is able to play.
  1923. hidden: Defines whether the element is hidden.
  1924. input_mode: Defines the type of the element.
  1925. item_prop: Defines the name of the element for metadata purposes.
  1926. lang: Defines the language used in the element.
  1927. role: Defines the role of the element.
  1928. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1929. spell_check: Defines whether the element may be checked for spelling errors.
  1930. tab_index: Defines the position of the current element in the tabbing order.
  1931. title: Defines a tooltip for the element.
  1932. style: The style of the component.
  1933. key: A unique key for the component.
  1934. id: The id for the component.
  1935. class_name: The class name for the component.
  1936. autofocus: Whether the component should take the focus once the page is loaded
  1937. custom_attrs: custom attribute
  1938. **props: The props of the component.
  1939. Returns:
  1940. The component.
  1941. """
  1942. ...
  1943. class Sub(BaseHTML):
  1944. @overload
  1945. @classmethod
  1946. def create( # type: ignore
  1947. cls,
  1948. *children,
  1949. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1950. auto_capitalize: Optional[
  1951. Union[Var[Union[bool, int, str]], bool, int, str]
  1952. ] = None,
  1953. content_editable: Optional[
  1954. Union[Var[Union[bool, int, str]], bool, int, str]
  1955. ] = None,
  1956. context_menu: Optional[
  1957. Union[Var[Union[bool, int, str]], bool, int, str]
  1958. ] = None,
  1959. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1960. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1961. enter_key_hint: Optional[
  1962. Union[Var[Union[bool, int, str]], bool, int, str]
  1963. ] = None,
  1964. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1965. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1966. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1967. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1968. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1969. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1970. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1971. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1972. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1973. style: Optional[Style] = None,
  1974. key: Optional[Any] = None,
  1975. id: Optional[Any] = None,
  1976. class_name: Optional[Any] = None,
  1977. autofocus: Optional[bool] = None,
  1978. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1979. on_blur: Optional[EventType[()]] = None,
  1980. on_click: Optional[EventType[()]] = None,
  1981. on_context_menu: Optional[EventType[()]] = None,
  1982. on_double_click: Optional[EventType[()]] = None,
  1983. on_focus: Optional[EventType[()]] = None,
  1984. on_mount: Optional[EventType[()]] = None,
  1985. on_mouse_down: Optional[EventType[()]] = None,
  1986. on_mouse_enter: Optional[EventType[()]] = None,
  1987. on_mouse_leave: Optional[EventType[()]] = None,
  1988. on_mouse_move: Optional[EventType[()]] = None,
  1989. on_mouse_out: Optional[EventType[()]] = None,
  1990. on_mouse_over: Optional[EventType[()]] = None,
  1991. on_mouse_up: Optional[EventType[()]] = None,
  1992. on_scroll: Optional[EventType[()]] = None,
  1993. on_unmount: Optional[EventType[()]] = None,
  1994. **props,
  1995. ) -> "Sub":
  1996. """Create the component.
  1997. Args:
  1998. *children: The children of the component.
  1999. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  2000. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  2001. content_editable: Indicates whether the element's content is editable.
  2002. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  2003. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  2004. draggable: Defines whether the element can be dragged.
  2005. enter_key_hint: Hints what media types the media element is able to play.
  2006. hidden: Defines whether the element is hidden.
  2007. input_mode: Defines the type of the element.
  2008. item_prop: Defines the name of the element for metadata purposes.
  2009. lang: Defines the language used in the element.
  2010. role: Defines the role of the element.
  2011. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  2012. spell_check: Defines whether the element may be checked for spelling errors.
  2013. tab_index: Defines the position of the current element in the tabbing order.
  2014. title: Defines a tooltip for the element.
  2015. style: The style of the component.
  2016. key: A unique key for the component.
  2017. id: The id for the component.
  2018. class_name: The class name for the component.
  2019. autofocus: Whether the component should take the focus once the page is loaded
  2020. custom_attrs: custom attribute
  2021. **props: The props of the component.
  2022. Returns:
  2023. The component.
  2024. """
  2025. ...
  2026. class Sup(BaseHTML):
  2027. @overload
  2028. @classmethod
  2029. def create( # type: ignore
  2030. cls,
  2031. *children,
  2032. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2033. auto_capitalize: Optional[
  2034. Union[Var[Union[bool, int, str]], bool, int, str]
  2035. ] = None,
  2036. content_editable: Optional[
  2037. Union[Var[Union[bool, int, str]], bool, int, str]
  2038. ] = None,
  2039. context_menu: Optional[
  2040. Union[Var[Union[bool, int, str]], bool, int, str]
  2041. ] = None,
  2042. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2043. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2044. enter_key_hint: Optional[
  2045. Union[Var[Union[bool, int, str]], bool, int, str]
  2046. ] = None,
  2047. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2048. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2049. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2050. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2051. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2052. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2053. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2054. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2055. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2056. style: Optional[Style] = None,
  2057. key: Optional[Any] = None,
  2058. id: Optional[Any] = None,
  2059. class_name: Optional[Any] = None,
  2060. autofocus: Optional[bool] = None,
  2061. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  2062. on_blur: Optional[EventType[()]] = None,
  2063. on_click: Optional[EventType[()]] = None,
  2064. on_context_menu: Optional[EventType[()]] = None,
  2065. on_double_click: Optional[EventType[()]] = None,
  2066. on_focus: Optional[EventType[()]] = None,
  2067. on_mount: Optional[EventType[()]] = None,
  2068. on_mouse_down: Optional[EventType[()]] = None,
  2069. on_mouse_enter: Optional[EventType[()]] = None,
  2070. on_mouse_leave: Optional[EventType[()]] = None,
  2071. on_mouse_move: Optional[EventType[()]] = None,
  2072. on_mouse_out: Optional[EventType[()]] = None,
  2073. on_mouse_over: Optional[EventType[()]] = None,
  2074. on_mouse_up: Optional[EventType[()]] = None,
  2075. on_scroll: Optional[EventType[()]] = None,
  2076. on_unmount: Optional[EventType[()]] = None,
  2077. **props,
  2078. ) -> "Sup":
  2079. """Create the component.
  2080. Args:
  2081. *children: The children of the component.
  2082. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  2083. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  2084. content_editable: Indicates whether the element's content is editable.
  2085. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  2086. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  2087. draggable: Defines whether the element can be dragged.
  2088. enter_key_hint: Hints what media types the media element is able to play.
  2089. hidden: Defines whether the element is hidden.
  2090. input_mode: Defines the type of the element.
  2091. item_prop: Defines the name of the element for metadata purposes.
  2092. lang: Defines the language used in the element.
  2093. role: Defines the role of the element.
  2094. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  2095. spell_check: Defines whether the element may be checked for spelling errors.
  2096. tab_index: Defines the position of the current element in the tabbing order.
  2097. title: Defines a tooltip for the element.
  2098. style: The style of the component.
  2099. key: A unique key for the component.
  2100. id: The id for the component.
  2101. class_name: The class name for the component.
  2102. autofocus: Whether the component should take the focus once the page is loaded
  2103. custom_attrs: custom attribute
  2104. **props: The props of the component.
  2105. Returns:
  2106. The component.
  2107. """
  2108. ...
  2109. class Time(BaseHTML):
  2110. @overload
  2111. @classmethod
  2112. def create( # type: ignore
  2113. cls,
  2114. *children,
  2115. date_time: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2116. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2117. auto_capitalize: Optional[
  2118. Union[Var[Union[bool, int, str]], bool, int, str]
  2119. ] = None,
  2120. content_editable: Optional[
  2121. Union[Var[Union[bool, int, str]], bool, int, str]
  2122. ] = None,
  2123. context_menu: Optional[
  2124. Union[Var[Union[bool, int, str]], bool, int, str]
  2125. ] = None,
  2126. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2127. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2128. enter_key_hint: Optional[
  2129. Union[Var[Union[bool, int, str]], bool, int, str]
  2130. ] = None,
  2131. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2132. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2133. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2134. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2135. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2136. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2137. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2138. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2139. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2140. style: Optional[Style] = None,
  2141. key: Optional[Any] = None,
  2142. id: Optional[Any] = None,
  2143. class_name: Optional[Any] = None,
  2144. autofocus: Optional[bool] = None,
  2145. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  2146. on_blur: Optional[EventType[()]] = None,
  2147. on_click: Optional[EventType[()]] = None,
  2148. on_context_menu: Optional[EventType[()]] = None,
  2149. on_double_click: Optional[EventType[()]] = None,
  2150. on_focus: Optional[EventType[()]] = None,
  2151. on_mount: Optional[EventType[()]] = None,
  2152. on_mouse_down: Optional[EventType[()]] = None,
  2153. on_mouse_enter: Optional[EventType[()]] = None,
  2154. on_mouse_leave: Optional[EventType[()]] = None,
  2155. on_mouse_move: Optional[EventType[()]] = None,
  2156. on_mouse_out: Optional[EventType[()]] = None,
  2157. on_mouse_over: Optional[EventType[()]] = None,
  2158. on_mouse_up: Optional[EventType[()]] = None,
  2159. on_scroll: Optional[EventType[()]] = None,
  2160. on_unmount: Optional[EventType[()]] = None,
  2161. **props,
  2162. ) -> "Time":
  2163. """Create the component.
  2164. Args:
  2165. *children: The children of the component.
  2166. date_time: Specifies the date and/or time of the element.
  2167. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  2168. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  2169. content_editable: Indicates whether the element's content is editable.
  2170. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  2171. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  2172. draggable: Defines whether the element can be dragged.
  2173. enter_key_hint: Hints what media types the media element is able to play.
  2174. hidden: Defines whether the element is hidden.
  2175. input_mode: Defines the type of the element.
  2176. item_prop: Defines the name of the element for metadata purposes.
  2177. lang: Defines the language used in the element.
  2178. role: Defines the role of the element.
  2179. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  2180. spell_check: Defines whether the element may be checked for spelling errors.
  2181. tab_index: Defines the position of the current element in the tabbing order.
  2182. title: Defines a tooltip for the element.
  2183. style: The style of the component.
  2184. key: A unique key for the component.
  2185. id: The id for the component.
  2186. class_name: The class name for the component.
  2187. autofocus: Whether the component should take the focus once the page is loaded
  2188. custom_attrs: custom attribute
  2189. **props: The props of the component.
  2190. Returns:
  2191. The component.
  2192. """
  2193. ...
  2194. class U(BaseHTML):
  2195. @overload
  2196. @classmethod
  2197. def create( # type: ignore
  2198. cls,
  2199. *children,
  2200. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2201. auto_capitalize: Optional[
  2202. Union[Var[Union[bool, int, str]], bool, int, str]
  2203. ] = None,
  2204. content_editable: Optional[
  2205. Union[Var[Union[bool, int, str]], bool, int, str]
  2206. ] = None,
  2207. context_menu: Optional[
  2208. Union[Var[Union[bool, int, str]], bool, int, str]
  2209. ] = None,
  2210. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2211. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2212. enter_key_hint: Optional[
  2213. Union[Var[Union[bool, int, str]], bool, int, str]
  2214. ] = None,
  2215. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2216. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2217. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2218. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2219. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2220. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2221. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2222. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2223. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2224. style: Optional[Style] = None,
  2225. key: Optional[Any] = None,
  2226. id: Optional[Any] = None,
  2227. class_name: Optional[Any] = None,
  2228. autofocus: Optional[bool] = None,
  2229. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  2230. on_blur: Optional[EventType[()]] = None,
  2231. on_click: Optional[EventType[()]] = None,
  2232. on_context_menu: Optional[EventType[()]] = None,
  2233. on_double_click: Optional[EventType[()]] = None,
  2234. on_focus: Optional[EventType[()]] = None,
  2235. on_mount: Optional[EventType[()]] = None,
  2236. on_mouse_down: Optional[EventType[()]] = None,
  2237. on_mouse_enter: Optional[EventType[()]] = None,
  2238. on_mouse_leave: Optional[EventType[()]] = None,
  2239. on_mouse_move: Optional[EventType[()]] = None,
  2240. on_mouse_out: Optional[EventType[()]] = None,
  2241. on_mouse_over: Optional[EventType[()]] = None,
  2242. on_mouse_up: Optional[EventType[()]] = None,
  2243. on_scroll: Optional[EventType[()]] = None,
  2244. on_unmount: Optional[EventType[()]] = None,
  2245. **props,
  2246. ) -> "U":
  2247. """Create the component.
  2248. Args:
  2249. *children: The children of the component.
  2250. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  2251. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  2252. content_editable: Indicates whether the element's content is editable.
  2253. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  2254. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  2255. draggable: Defines whether the element can be dragged.
  2256. enter_key_hint: Hints what media types the media element is able to play.
  2257. hidden: Defines whether the element is hidden.
  2258. input_mode: Defines the type of the element.
  2259. item_prop: Defines the name of the element for metadata purposes.
  2260. lang: Defines the language used in the element.
  2261. role: Defines the role of the element.
  2262. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  2263. spell_check: Defines whether the element may be checked for spelling errors.
  2264. tab_index: Defines the position of the current element in the tabbing order.
  2265. title: Defines a tooltip for the element.
  2266. style: The style of the component.
  2267. key: A unique key for the component.
  2268. id: The id for the component.
  2269. class_name: The class name for the component.
  2270. autofocus: Whether the component should take the focus once the page is loaded
  2271. custom_attrs: custom attribute
  2272. **props: The props of the component.
  2273. Returns:
  2274. The component.
  2275. """
  2276. ...
  2277. class Wbr(BaseHTML):
  2278. @overload
  2279. @classmethod
  2280. def create( # type: ignore
  2281. cls,
  2282. *children,
  2283. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2284. auto_capitalize: Optional[
  2285. Union[Var[Union[bool, int, str]], bool, int, str]
  2286. ] = None,
  2287. content_editable: Optional[
  2288. Union[Var[Union[bool, int, str]], bool, int, str]
  2289. ] = None,
  2290. context_menu: Optional[
  2291. Union[Var[Union[bool, int, str]], bool, int, str]
  2292. ] = None,
  2293. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2294. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2295. enter_key_hint: Optional[
  2296. Union[Var[Union[bool, int, str]], bool, int, str]
  2297. ] = None,
  2298. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2299. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2300. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2301. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2302. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2303. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2304. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2305. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2306. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  2307. style: Optional[Style] = None,
  2308. key: Optional[Any] = None,
  2309. id: Optional[Any] = None,
  2310. class_name: Optional[Any] = None,
  2311. autofocus: Optional[bool] = None,
  2312. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  2313. on_blur: Optional[EventType[()]] = None,
  2314. on_click: Optional[EventType[()]] = None,
  2315. on_context_menu: Optional[EventType[()]] = None,
  2316. on_double_click: Optional[EventType[()]] = None,
  2317. on_focus: Optional[EventType[()]] = None,
  2318. on_mount: Optional[EventType[()]] = None,
  2319. on_mouse_down: Optional[EventType[()]] = None,
  2320. on_mouse_enter: Optional[EventType[()]] = None,
  2321. on_mouse_leave: Optional[EventType[()]] = None,
  2322. on_mouse_move: Optional[EventType[()]] = None,
  2323. on_mouse_out: Optional[EventType[()]] = None,
  2324. on_mouse_over: Optional[EventType[()]] = None,
  2325. on_mouse_up: Optional[EventType[()]] = None,
  2326. on_scroll: Optional[EventType[()]] = None,
  2327. on_unmount: Optional[EventType[()]] = None,
  2328. **props,
  2329. ) -> "Wbr":
  2330. """Create the component.
  2331. Args:
  2332. *children: The children of the component.
  2333. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  2334. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  2335. content_editable: Indicates whether the element's content is editable.
  2336. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  2337. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  2338. draggable: Defines whether the element can be dragged.
  2339. enter_key_hint: Hints what media types the media element is able to play.
  2340. hidden: Defines whether the element is hidden.
  2341. input_mode: Defines the type of the element.
  2342. item_prop: Defines the name of the element for metadata purposes.
  2343. lang: Defines the language used in the element.
  2344. role: Defines the role of the element.
  2345. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  2346. spell_check: Defines whether the element may be checked for spelling errors.
  2347. tab_index: Defines the position of the current element in the tabbing order.
  2348. title: Defines a tooltip for the element.
  2349. style: The style of the component.
  2350. key: A unique key for the component.
  2351. id: The id for the component.
  2352. class_name: The class name for the component.
  2353. autofocus: Whether the component should take the focus once the page is loaded
  2354. custom_attrs: custom attribute
  2355. **props: The props of the component.
  2356. Returns:
  2357. The component.
  2358. """
  2359. ...
  2360. a = A.create
  2361. abbr = Abbr.create
  2362. b = B.create
  2363. bdi = Bdi.create
  2364. bdo = Bdo.create
  2365. br = Br.create
  2366. cite = Cite.create
  2367. code = Code.create
  2368. data = Data.create
  2369. dfn = Dfn.create
  2370. em = Em.create
  2371. i = I.create
  2372. kbd = Kbd.create
  2373. mark = Mark.create
  2374. q = Q.create
  2375. rp = Rp.create
  2376. rt = Rt.create
  2377. ruby = Ruby.create
  2378. s = S.create
  2379. samp = Samp.create
  2380. small = Small.create
  2381. span = Span.create
  2382. strong = Strong.create
  2383. sub = Sub.create
  2384. sup = Sup.create
  2385. time = Time.create
  2386. u = U.create
  2387. wbr = Wbr.create