typography.pyi 71 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337
  1. """Stub file for reflex/components/el/elements/typography.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 BASE_STATE, EventType
  7. from reflex.style import Style
  8. from reflex.vars.base import Var
  9. from .base import BaseHTML
  10. class Blockquote(BaseHTML):
  11. @overload
  12. @classmethod
  13. def create( # type: ignore
  14. cls,
  15. *children,
  16. cite: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  17. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  18. auto_capitalize: Optional[
  19. Union[Var[Union[bool, int, str]], bool, int, str]
  20. ] = None,
  21. content_editable: Optional[
  22. Union[Var[Union[bool, int, str]], bool, int, str]
  23. ] = None,
  24. context_menu: Optional[
  25. Union[Var[Union[bool, int, str]], bool, int, str]
  26. ] = None,
  27. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  28. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  29. enter_key_hint: Optional[
  30. Union[Var[Union[bool, int, str]], bool, int, str]
  31. ] = None,
  32. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  33. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  34. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  35. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  36. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  37. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  38. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  39. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  40. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  41. style: Optional[Style] = None,
  42. key: Optional[Any] = None,
  43. id: Optional[Any] = None,
  44. class_name: Optional[Any] = None,
  45. autofocus: Optional[bool] = None,
  46. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  47. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  48. on_click: Optional[EventType[[], BASE_STATE]] = None,
  49. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  50. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  51. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  52. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  53. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  54. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  55. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  56. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  57. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  58. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  59. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  60. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  61. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  62. **props,
  63. ) -> "Blockquote":
  64. """Create the component.
  65. Args:
  66. *children: The children of the component.
  67. cite: Define the title of a work.
  68. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  69. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  70. content_editable: Indicates whether the element's content is editable.
  71. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  72. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  73. draggable: Defines whether the element can be dragged.
  74. enter_key_hint: Hints what media types the media element is able to play.
  75. hidden: Defines whether the element is hidden.
  76. input_mode: Defines the type of the element.
  77. item_prop: Defines the name of the element for metadata purposes.
  78. lang: Defines the language used in the element.
  79. role: Defines the role of the element.
  80. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  81. spell_check: Defines whether the element may be checked for spelling errors.
  82. tab_index: Defines the position of the current element in the tabbing order.
  83. title: Defines a tooltip for the element.
  84. style: The style of the component.
  85. key: A unique key for the component.
  86. id: The id for the component.
  87. class_name: The class name for the component.
  88. autofocus: Whether the component should take the focus once the page is loaded
  89. custom_attrs: custom attribute
  90. **props: The props of the component.
  91. Returns:
  92. The component.
  93. """
  94. ...
  95. class Dd(BaseHTML):
  96. @overload
  97. @classmethod
  98. def create( # type: ignore
  99. cls,
  100. *children,
  101. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  102. auto_capitalize: Optional[
  103. Union[Var[Union[bool, int, str]], bool, int, str]
  104. ] = None,
  105. content_editable: Optional[
  106. Union[Var[Union[bool, int, str]], bool, int, str]
  107. ] = None,
  108. context_menu: Optional[
  109. Union[Var[Union[bool, int, str]], bool, int, str]
  110. ] = None,
  111. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  112. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  113. enter_key_hint: Optional[
  114. Union[Var[Union[bool, int, str]], bool, int, str]
  115. ] = None,
  116. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  117. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  118. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  119. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  120. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  121. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  122. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  123. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  124. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  125. style: Optional[Style] = None,
  126. key: Optional[Any] = None,
  127. id: Optional[Any] = None,
  128. class_name: Optional[Any] = None,
  129. autofocus: Optional[bool] = None,
  130. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  131. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  132. on_click: Optional[EventType[[], BASE_STATE]] = None,
  133. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  134. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  135. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  136. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  137. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  138. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  139. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  140. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  141. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  142. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  143. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  144. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  145. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  146. **props,
  147. ) -> "Dd":
  148. """Create the component.
  149. Args:
  150. *children: The children of the component.
  151. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  152. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  153. content_editable: Indicates whether the element's content is editable.
  154. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  155. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  156. draggable: Defines whether the element can be dragged.
  157. enter_key_hint: Hints what media types the media element is able to play.
  158. hidden: Defines whether the element is hidden.
  159. input_mode: Defines the type of the element.
  160. item_prop: Defines the name of the element for metadata purposes.
  161. lang: Defines the language used in the element.
  162. role: Defines the role of the element.
  163. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  164. spell_check: Defines whether the element may be checked for spelling errors.
  165. tab_index: Defines the position of the current element in the tabbing order.
  166. title: Defines a tooltip for the element.
  167. style: The style of the component.
  168. key: A unique key for the component.
  169. id: The id for the component.
  170. class_name: The class name for the component.
  171. autofocus: Whether the component should take the focus once the page is loaded
  172. custom_attrs: custom attribute
  173. **props: The props of the component.
  174. Returns:
  175. The component.
  176. """
  177. ...
  178. class Div(BaseHTML):
  179. @overload
  180. @classmethod
  181. def create( # type: ignore
  182. cls,
  183. *children,
  184. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  185. auto_capitalize: Optional[
  186. Union[Var[Union[bool, int, str]], bool, int, str]
  187. ] = None,
  188. content_editable: Optional[
  189. Union[Var[Union[bool, int, str]], bool, int, str]
  190. ] = None,
  191. context_menu: Optional[
  192. Union[Var[Union[bool, int, str]], bool, int, str]
  193. ] = None,
  194. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  195. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  196. enter_key_hint: Optional[
  197. Union[Var[Union[bool, int, str]], bool, int, str]
  198. ] = None,
  199. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  200. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  201. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  202. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  203. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  204. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  205. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  206. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  207. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  208. style: Optional[Style] = None,
  209. key: Optional[Any] = None,
  210. id: Optional[Any] = None,
  211. class_name: Optional[Any] = None,
  212. autofocus: Optional[bool] = None,
  213. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  214. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  215. on_click: Optional[EventType[[], BASE_STATE]] = None,
  216. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  217. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  218. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  219. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  220. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  221. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  222. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  223. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  224. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  225. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  226. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  227. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  228. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  229. **props,
  230. ) -> "Div":
  231. """Create the component.
  232. Args:
  233. *children: The children of the component.
  234. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  235. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  236. content_editable: Indicates whether the element's content is editable.
  237. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  238. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  239. draggable: Defines whether the element can be dragged.
  240. enter_key_hint: Hints what media types the media element is able to play.
  241. hidden: Defines whether the element is hidden.
  242. input_mode: Defines the type of the element.
  243. item_prop: Defines the name of the element for metadata purposes.
  244. lang: Defines the language used in the element.
  245. role: Defines the role of the element.
  246. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  247. spell_check: Defines whether the element may be checked for spelling errors.
  248. tab_index: Defines the position of the current element in the tabbing order.
  249. title: Defines a tooltip for the element.
  250. style: The style of the component.
  251. key: A unique key for the component.
  252. id: The id for the component.
  253. class_name: The class name for the component.
  254. autofocus: Whether the component should take the focus once the page is loaded
  255. custom_attrs: custom attribute
  256. **props: The props of the component.
  257. Returns:
  258. The component.
  259. """
  260. ...
  261. class Dl(BaseHTML):
  262. @overload
  263. @classmethod
  264. def create( # type: ignore
  265. cls,
  266. *children,
  267. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  268. auto_capitalize: Optional[
  269. Union[Var[Union[bool, int, str]], bool, int, str]
  270. ] = None,
  271. content_editable: Optional[
  272. Union[Var[Union[bool, int, str]], bool, int, str]
  273. ] = None,
  274. context_menu: Optional[
  275. Union[Var[Union[bool, int, str]], bool, int, str]
  276. ] = None,
  277. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  278. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  279. enter_key_hint: Optional[
  280. Union[Var[Union[bool, int, str]], bool, int, str]
  281. ] = None,
  282. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  283. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  284. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  285. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  286. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  287. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  288. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  289. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  290. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  291. style: Optional[Style] = None,
  292. key: Optional[Any] = None,
  293. id: Optional[Any] = None,
  294. class_name: Optional[Any] = None,
  295. autofocus: Optional[bool] = None,
  296. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  297. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  298. on_click: Optional[EventType[[], BASE_STATE]] = None,
  299. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  300. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  301. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  302. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  303. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  304. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  305. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  306. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  307. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  308. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  309. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  310. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  311. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  312. **props,
  313. ) -> "Dl":
  314. """Create the component.
  315. Args:
  316. *children: The children of the component.
  317. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  318. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  319. content_editable: Indicates whether the element's content is editable.
  320. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  321. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  322. draggable: Defines whether the element can be dragged.
  323. enter_key_hint: Hints what media types the media element is able to play.
  324. hidden: Defines whether the element is hidden.
  325. input_mode: Defines the type of the element.
  326. item_prop: Defines the name of the element for metadata purposes.
  327. lang: Defines the language used in the element.
  328. role: Defines the role of the element.
  329. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  330. spell_check: Defines whether the element may be checked for spelling errors.
  331. tab_index: Defines the position of the current element in the tabbing order.
  332. title: Defines a tooltip for the element.
  333. style: The style of the component.
  334. key: A unique key for the component.
  335. id: The id for the component.
  336. class_name: The class name for the component.
  337. autofocus: Whether the component should take the focus once the page is loaded
  338. custom_attrs: custom attribute
  339. **props: The props of the component.
  340. Returns:
  341. The component.
  342. """
  343. ...
  344. class Dt(BaseHTML):
  345. @overload
  346. @classmethod
  347. def create( # type: ignore
  348. cls,
  349. *children,
  350. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  351. auto_capitalize: Optional[
  352. Union[Var[Union[bool, int, str]], bool, int, str]
  353. ] = None,
  354. content_editable: Optional[
  355. Union[Var[Union[bool, int, str]], bool, int, str]
  356. ] = None,
  357. context_menu: Optional[
  358. Union[Var[Union[bool, int, str]], bool, int, str]
  359. ] = None,
  360. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  361. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  362. enter_key_hint: Optional[
  363. Union[Var[Union[bool, int, str]], bool, int, str]
  364. ] = None,
  365. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  366. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  367. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  368. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  369. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  370. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  371. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  372. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  373. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  374. style: Optional[Style] = None,
  375. key: Optional[Any] = None,
  376. id: Optional[Any] = None,
  377. class_name: Optional[Any] = None,
  378. autofocus: Optional[bool] = None,
  379. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  380. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  381. on_click: Optional[EventType[[], BASE_STATE]] = None,
  382. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  383. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  384. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  385. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  386. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  387. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  388. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  389. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  390. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  391. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  392. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  393. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  394. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  395. **props,
  396. ) -> "Dt":
  397. """Create the component.
  398. Args:
  399. *children: The children of the component.
  400. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  401. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  402. content_editable: Indicates whether the element's content is editable.
  403. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  404. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  405. draggable: Defines whether the element can be dragged.
  406. enter_key_hint: Hints what media types the media element is able to play.
  407. hidden: Defines whether the element is hidden.
  408. input_mode: Defines the type of the element.
  409. item_prop: Defines the name of the element for metadata purposes.
  410. lang: Defines the language used in the element.
  411. role: Defines the role of the element.
  412. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  413. spell_check: Defines whether the element may be checked for spelling errors.
  414. tab_index: Defines the position of the current element in the tabbing order.
  415. title: Defines a tooltip for the element.
  416. style: The style of the component.
  417. key: A unique key for the component.
  418. id: The id for the component.
  419. class_name: The class name for the component.
  420. autofocus: Whether the component should take the focus once the page is loaded
  421. custom_attrs: custom attribute
  422. **props: The props of the component.
  423. Returns:
  424. The component.
  425. """
  426. ...
  427. class Figcaption(BaseHTML):
  428. @overload
  429. @classmethod
  430. def create( # type: ignore
  431. cls,
  432. *children,
  433. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  434. auto_capitalize: Optional[
  435. Union[Var[Union[bool, int, str]], bool, int, str]
  436. ] = None,
  437. content_editable: Optional[
  438. Union[Var[Union[bool, int, str]], bool, int, str]
  439. ] = None,
  440. context_menu: Optional[
  441. Union[Var[Union[bool, int, str]], bool, int, str]
  442. ] = None,
  443. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  444. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  445. enter_key_hint: Optional[
  446. Union[Var[Union[bool, int, str]], bool, int, str]
  447. ] = None,
  448. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  449. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  450. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  451. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  452. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  453. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  454. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  455. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  456. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  457. style: Optional[Style] = None,
  458. key: Optional[Any] = None,
  459. id: Optional[Any] = None,
  460. class_name: Optional[Any] = None,
  461. autofocus: Optional[bool] = None,
  462. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  463. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  464. on_click: Optional[EventType[[], BASE_STATE]] = None,
  465. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  466. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  467. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  468. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  469. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  470. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  471. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  472. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  473. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  474. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  475. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  476. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  477. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  478. **props,
  479. ) -> "Figcaption":
  480. """Create the component.
  481. Args:
  482. *children: The children of the component.
  483. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  484. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  485. content_editable: Indicates whether the element's content is editable.
  486. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  487. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  488. draggable: Defines whether the element can be dragged.
  489. enter_key_hint: Hints what media types the media element is able to play.
  490. hidden: Defines whether the element is hidden.
  491. input_mode: Defines the type of the element.
  492. item_prop: Defines the name of the element for metadata purposes.
  493. lang: Defines the language used in the element.
  494. role: Defines the role of the element.
  495. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  496. spell_check: Defines whether the element may be checked for spelling errors.
  497. tab_index: Defines the position of the current element in the tabbing order.
  498. title: Defines a tooltip for the element.
  499. style: The style of the component.
  500. key: A unique key for the component.
  501. id: The id for the component.
  502. class_name: The class name for the component.
  503. autofocus: Whether the component should take the focus once the page is loaded
  504. custom_attrs: custom attribute
  505. **props: The props of the component.
  506. Returns:
  507. The component.
  508. """
  509. ...
  510. class Hr(BaseHTML):
  511. @overload
  512. @classmethod
  513. def create( # type: ignore
  514. cls,
  515. *children,
  516. align: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  517. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  518. auto_capitalize: Optional[
  519. Union[Var[Union[bool, int, str]], bool, int, str]
  520. ] = None,
  521. content_editable: Optional[
  522. Union[Var[Union[bool, int, str]], bool, int, str]
  523. ] = None,
  524. context_menu: Optional[
  525. Union[Var[Union[bool, int, str]], bool, int, str]
  526. ] = None,
  527. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  528. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  529. enter_key_hint: Optional[
  530. Union[Var[Union[bool, int, str]], bool, int, str]
  531. ] = None,
  532. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  533. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  534. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  535. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  536. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  537. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  538. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  539. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  540. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  541. style: Optional[Style] = None,
  542. key: Optional[Any] = None,
  543. id: Optional[Any] = None,
  544. class_name: Optional[Any] = None,
  545. autofocus: Optional[bool] = None,
  546. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  547. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  548. on_click: Optional[EventType[[], BASE_STATE]] = None,
  549. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  550. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  551. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  552. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  553. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  554. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  555. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  556. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  557. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  558. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  559. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  560. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  561. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  562. **props,
  563. ) -> "Hr":
  564. """Create the component.
  565. Args:
  566. *children: The children of the component.
  567. align: Used to specify the alignment of text content of The Element. this attribute is used in all elements.
  568. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  569. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  570. content_editable: Indicates whether the element's content is editable.
  571. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  572. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  573. draggable: Defines whether the element can be dragged.
  574. enter_key_hint: Hints what media types the media element is able to play.
  575. hidden: Defines whether the element is hidden.
  576. input_mode: Defines the type of the element.
  577. item_prop: Defines the name of the element for metadata purposes.
  578. lang: Defines the language used in the element.
  579. role: Defines the role of the element.
  580. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  581. spell_check: Defines whether the element may be checked for spelling errors.
  582. tab_index: Defines the position of the current element in the tabbing order.
  583. title: Defines a tooltip for the element.
  584. style: The style of the component.
  585. key: A unique key for the component.
  586. id: The id for the component.
  587. class_name: The class name for the component.
  588. autofocus: Whether the component should take the focus once the page is loaded
  589. custom_attrs: custom attribute
  590. **props: The props of the component.
  591. Returns:
  592. The component.
  593. """
  594. ...
  595. class Li(BaseHTML):
  596. @overload
  597. @classmethod
  598. def create( # type: ignore
  599. cls,
  600. *children,
  601. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  602. auto_capitalize: Optional[
  603. Union[Var[Union[bool, int, str]], bool, int, str]
  604. ] = None,
  605. content_editable: Optional[
  606. Union[Var[Union[bool, int, str]], bool, int, str]
  607. ] = None,
  608. context_menu: Optional[
  609. Union[Var[Union[bool, int, str]], bool, int, str]
  610. ] = None,
  611. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  612. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  613. enter_key_hint: Optional[
  614. Union[Var[Union[bool, int, str]], bool, int, str]
  615. ] = None,
  616. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  617. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  618. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  619. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  620. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  621. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  622. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  623. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  624. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  625. style: Optional[Style] = None,
  626. key: Optional[Any] = None,
  627. id: Optional[Any] = None,
  628. class_name: Optional[Any] = None,
  629. autofocus: Optional[bool] = None,
  630. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  631. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  632. on_click: Optional[EventType[[], BASE_STATE]] = None,
  633. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  634. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  635. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  636. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  637. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  638. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  639. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  640. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  641. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  642. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  643. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  644. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  645. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  646. **props,
  647. ) -> "Li":
  648. """Create the component.
  649. Args:
  650. *children: The children of the component.
  651. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  652. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  653. content_editable: Indicates whether the element's content is editable.
  654. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  655. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  656. draggable: Defines whether the element can be dragged.
  657. enter_key_hint: Hints what media types the media element is able to play.
  658. hidden: Defines whether the element is hidden.
  659. input_mode: Defines the type of the element.
  660. item_prop: Defines the name of the element for metadata purposes.
  661. lang: Defines the language used in the element.
  662. role: Defines the role of the element.
  663. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  664. spell_check: Defines whether the element may be checked for spelling errors.
  665. tab_index: Defines the position of the current element in the tabbing order.
  666. title: Defines a tooltip for the element.
  667. style: The style of the component.
  668. key: A unique key for the component.
  669. id: The id for the component.
  670. class_name: The class name for the component.
  671. autofocus: Whether the component should take the focus once the page is loaded
  672. custom_attrs: custom attribute
  673. **props: The props of the component.
  674. Returns:
  675. The component.
  676. """
  677. ...
  678. class Menu(BaseHTML):
  679. @overload
  680. @classmethod
  681. def create( # type: ignore
  682. cls,
  683. *children,
  684. type: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  685. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  686. auto_capitalize: Optional[
  687. Union[Var[Union[bool, int, str]], bool, int, str]
  688. ] = None,
  689. content_editable: Optional[
  690. Union[Var[Union[bool, int, str]], bool, int, str]
  691. ] = None,
  692. context_menu: Optional[
  693. Union[Var[Union[bool, int, str]], bool, int, str]
  694. ] = None,
  695. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  696. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  697. enter_key_hint: Optional[
  698. Union[Var[Union[bool, int, str]], bool, int, str]
  699. ] = None,
  700. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  701. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  702. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  703. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  704. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  705. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  706. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  707. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  708. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  709. style: Optional[Style] = None,
  710. key: Optional[Any] = None,
  711. id: Optional[Any] = None,
  712. class_name: Optional[Any] = None,
  713. autofocus: Optional[bool] = None,
  714. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  715. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  716. on_click: Optional[EventType[[], BASE_STATE]] = None,
  717. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  718. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  719. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  720. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  721. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  722. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  723. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  724. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  725. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  726. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  727. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  728. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  729. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  730. **props,
  731. ) -> "Menu":
  732. """Create the component.
  733. Args:
  734. *children: The children of the component.
  735. type: Specifies that the menu element is a context menu.
  736. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  737. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  738. content_editable: Indicates whether the element's content is editable.
  739. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  740. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  741. draggable: Defines whether the element can be dragged.
  742. enter_key_hint: Hints what media types the media element is able to play.
  743. hidden: Defines whether the element is hidden.
  744. input_mode: Defines the type of the element.
  745. item_prop: Defines the name of the element for metadata purposes.
  746. lang: Defines the language used in the element.
  747. role: Defines the role of the element.
  748. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  749. spell_check: Defines whether the element may be checked for spelling errors.
  750. tab_index: Defines the position of the current element in the tabbing order.
  751. title: Defines a tooltip for the element.
  752. style: The style of the component.
  753. key: A unique key for the component.
  754. id: The id for the component.
  755. class_name: The class name for the component.
  756. autofocus: Whether the component should take the focus once the page is loaded
  757. custom_attrs: custom attribute
  758. **props: The props of the component.
  759. Returns:
  760. The component.
  761. """
  762. ...
  763. class Ol(BaseHTML):
  764. @overload
  765. @classmethod
  766. def create( # type: ignore
  767. cls,
  768. *children,
  769. reversed: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  770. start: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  771. type: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  772. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  773. auto_capitalize: Optional[
  774. Union[Var[Union[bool, int, str]], bool, int, str]
  775. ] = None,
  776. content_editable: Optional[
  777. Union[Var[Union[bool, int, str]], bool, int, str]
  778. ] = None,
  779. context_menu: Optional[
  780. Union[Var[Union[bool, int, str]], bool, int, str]
  781. ] = None,
  782. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  783. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  784. enter_key_hint: Optional[
  785. Union[Var[Union[bool, int, str]], bool, int, str]
  786. ] = None,
  787. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  788. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  789. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  790. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  791. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  792. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  793. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  794. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  795. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  796. style: Optional[Style] = None,
  797. key: Optional[Any] = None,
  798. id: Optional[Any] = None,
  799. class_name: Optional[Any] = None,
  800. autofocus: Optional[bool] = None,
  801. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  802. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  803. on_click: Optional[EventType[[], BASE_STATE]] = None,
  804. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  805. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  806. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  807. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  808. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  809. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  810. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  811. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  812. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  813. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  814. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  815. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  816. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  817. **props,
  818. ) -> "Ol":
  819. """Create the component.
  820. Args:
  821. *children: The children of the component.
  822. reversed: Reverses the order of the list.
  823. start: Specifies the start value of the first list item in an ordered list.
  824. type: Specifies the kind of marker to use in the list (letters or numbers).
  825. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  826. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  827. content_editable: Indicates whether the element's content is editable.
  828. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  829. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  830. draggable: Defines whether the element can be dragged.
  831. enter_key_hint: Hints what media types the media element is able to play.
  832. hidden: Defines whether the element is hidden.
  833. input_mode: Defines the type of the element.
  834. item_prop: Defines the name of the element for metadata purposes.
  835. lang: Defines the language used in the element.
  836. role: Defines the role of the element.
  837. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  838. spell_check: Defines whether the element may be checked for spelling errors.
  839. tab_index: Defines the position of the current element in the tabbing order.
  840. title: Defines a tooltip for the element.
  841. style: The style of the component.
  842. key: A unique key for the component.
  843. id: The id for the component.
  844. class_name: The class name for the component.
  845. autofocus: Whether the component should take the focus once the page is loaded
  846. custom_attrs: custom attribute
  847. **props: The props of the component.
  848. Returns:
  849. The component.
  850. """
  851. ...
  852. class P(BaseHTML):
  853. @overload
  854. @classmethod
  855. def create( # type: ignore
  856. cls,
  857. *children,
  858. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  859. auto_capitalize: Optional[
  860. Union[Var[Union[bool, int, str]], bool, int, str]
  861. ] = None,
  862. content_editable: Optional[
  863. Union[Var[Union[bool, int, str]], bool, int, str]
  864. ] = None,
  865. context_menu: Optional[
  866. Union[Var[Union[bool, int, str]], bool, int, str]
  867. ] = None,
  868. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  869. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  870. enter_key_hint: Optional[
  871. Union[Var[Union[bool, int, str]], bool, int, str]
  872. ] = None,
  873. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  874. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  875. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  876. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  877. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  878. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  879. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  880. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  881. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  882. style: Optional[Style] = None,
  883. key: Optional[Any] = None,
  884. id: Optional[Any] = None,
  885. class_name: Optional[Any] = None,
  886. autofocus: Optional[bool] = None,
  887. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  888. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  889. on_click: Optional[EventType[[], BASE_STATE]] = None,
  890. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  891. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  892. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  893. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  894. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  895. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  896. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  897. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  898. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  899. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  900. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  901. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  902. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  903. **props,
  904. ) -> "P":
  905. """Create the component.
  906. Args:
  907. *children: The children of the component.
  908. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  909. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  910. content_editable: Indicates whether the element's content is editable.
  911. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  912. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  913. draggable: Defines whether the element can be dragged.
  914. enter_key_hint: Hints what media types the media element is able to play.
  915. hidden: Defines whether the element is hidden.
  916. input_mode: Defines the type of the element.
  917. item_prop: Defines the name of the element for metadata purposes.
  918. lang: Defines the language used in the element.
  919. role: Defines the role of the element.
  920. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  921. spell_check: Defines whether the element may be checked for spelling errors.
  922. tab_index: Defines the position of the current element in the tabbing order.
  923. title: Defines a tooltip for the element.
  924. style: The style of the component.
  925. key: A unique key for the component.
  926. id: The id for the component.
  927. class_name: The class name for the component.
  928. autofocus: Whether the component should take the focus once the page is loaded
  929. custom_attrs: custom attribute
  930. **props: The props of the component.
  931. Returns:
  932. The component.
  933. """
  934. ...
  935. class Pre(BaseHTML):
  936. @overload
  937. @classmethod
  938. def create( # type: ignore
  939. cls,
  940. *children,
  941. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  942. auto_capitalize: Optional[
  943. Union[Var[Union[bool, int, str]], bool, int, str]
  944. ] = None,
  945. content_editable: Optional[
  946. Union[Var[Union[bool, int, str]], bool, int, str]
  947. ] = None,
  948. context_menu: Optional[
  949. Union[Var[Union[bool, int, str]], bool, int, str]
  950. ] = None,
  951. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  952. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  953. enter_key_hint: Optional[
  954. Union[Var[Union[bool, int, str]], bool, int, str]
  955. ] = None,
  956. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  957. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  958. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  959. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  960. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  961. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  962. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  963. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  964. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  965. style: Optional[Style] = None,
  966. key: Optional[Any] = None,
  967. id: Optional[Any] = None,
  968. class_name: Optional[Any] = None,
  969. autofocus: Optional[bool] = None,
  970. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  971. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  972. on_click: Optional[EventType[[], BASE_STATE]] = None,
  973. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  974. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  975. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  976. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  977. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  978. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  979. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  980. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  981. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  982. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  983. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  984. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  985. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  986. **props,
  987. ) -> "Pre":
  988. """Create the component.
  989. Args:
  990. *children: The children of the component.
  991. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  992. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  993. content_editable: Indicates whether the element's content is editable.
  994. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  995. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  996. draggable: Defines whether the element can be dragged.
  997. enter_key_hint: Hints what media types the media element is able to play.
  998. hidden: Defines whether the element is hidden.
  999. input_mode: Defines the type of the element.
  1000. item_prop: Defines the name of the element for metadata purposes.
  1001. lang: Defines the language used in the element.
  1002. role: Defines the role of the element.
  1003. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1004. spell_check: Defines whether the element may be checked for spelling errors.
  1005. tab_index: Defines the position of the current element in the tabbing order.
  1006. title: Defines a tooltip for the element.
  1007. style: The style of the component.
  1008. key: A unique key for the component.
  1009. id: The id for the component.
  1010. class_name: The class name for the component.
  1011. autofocus: Whether the component should take the focus once the page is loaded
  1012. custom_attrs: custom attribute
  1013. **props: The props of the component.
  1014. Returns:
  1015. The component.
  1016. """
  1017. ...
  1018. class Ul(BaseHTML):
  1019. @overload
  1020. @classmethod
  1021. def create( # type: ignore
  1022. cls,
  1023. *children,
  1024. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1025. auto_capitalize: Optional[
  1026. Union[Var[Union[bool, int, str]], bool, int, str]
  1027. ] = None,
  1028. content_editable: Optional[
  1029. Union[Var[Union[bool, int, str]], bool, int, str]
  1030. ] = None,
  1031. context_menu: Optional[
  1032. Union[Var[Union[bool, int, str]], bool, int, str]
  1033. ] = None,
  1034. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1035. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1036. enter_key_hint: Optional[
  1037. Union[Var[Union[bool, int, str]], bool, int, str]
  1038. ] = None,
  1039. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1040. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1041. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1042. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1043. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1044. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1045. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1046. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1047. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1048. style: Optional[Style] = None,
  1049. key: Optional[Any] = None,
  1050. id: Optional[Any] = None,
  1051. class_name: Optional[Any] = None,
  1052. autofocus: Optional[bool] = None,
  1053. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1054. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  1055. on_click: Optional[EventType[[], BASE_STATE]] = None,
  1056. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  1057. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  1058. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  1059. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  1060. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  1061. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  1062. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  1063. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  1064. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  1065. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  1066. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  1067. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  1068. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  1069. **props,
  1070. ) -> "Ul":
  1071. """Create the component.
  1072. Args:
  1073. *children: The children of the component.
  1074. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1075. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1076. content_editable: Indicates whether the element's content is editable.
  1077. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1078. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1079. draggable: Defines whether the element can be dragged.
  1080. enter_key_hint: Hints what media types the media element is able to play.
  1081. hidden: Defines whether the element is hidden.
  1082. input_mode: Defines the type of the element.
  1083. item_prop: Defines the name of the element for metadata purposes.
  1084. lang: Defines the language used in the element.
  1085. role: Defines the role of the element.
  1086. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1087. spell_check: Defines whether the element may be checked for spelling errors.
  1088. tab_index: Defines the position of the current element in the tabbing order.
  1089. title: Defines a tooltip for the element.
  1090. style: The style of the component.
  1091. key: A unique key for the component.
  1092. id: The id for the component.
  1093. class_name: The class name for the component.
  1094. autofocus: Whether the component should take the focus once the page is loaded
  1095. custom_attrs: custom attribute
  1096. **props: The props of the component.
  1097. Returns:
  1098. The component.
  1099. """
  1100. ...
  1101. class Ins(BaseHTML):
  1102. @overload
  1103. @classmethod
  1104. def create( # type: ignore
  1105. cls,
  1106. *children,
  1107. cite: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1108. date_time: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1109. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1110. auto_capitalize: Optional[
  1111. Union[Var[Union[bool, int, str]], bool, int, str]
  1112. ] = None,
  1113. content_editable: Optional[
  1114. Union[Var[Union[bool, int, str]], bool, int, str]
  1115. ] = None,
  1116. context_menu: Optional[
  1117. Union[Var[Union[bool, int, str]], bool, int, str]
  1118. ] = None,
  1119. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1120. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1121. enter_key_hint: Optional[
  1122. Union[Var[Union[bool, int, str]], bool, int, str]
  1123. ] = None,
  1124. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1125. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1126. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1127. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1128. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1129. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1130. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1131. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1132. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1133. style: Optional[Style] = None,
  1134. key: Optional[Any] = None,
  1135. id: Optional[Any] = None,
  1136. class_name: Optional[Any] = None,
  1137. autofocus: Optional[bool] = None,
  1138. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1139. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  1140. on_click: Optional[EventType[[], BASE_STATE]] = None,
  1141. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  1142. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  1143. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  1144. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  1145. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  1146. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  1147. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  1148. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  1149. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  1150. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  1151. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  1152. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  1153. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  1154. **props,
  1155. ) -> "Ins":
  1156. """Create the component.
  1157. Args:
  1158. *children: The children of the component.
  1159. cite: Specifies the URL of the document that explains the reason why the text was inserted/changed.
  1160. date_time: Specifies the date and time of when the text was inserted/changed.
  1161. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1162. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1163. content_editable: Indicates whether the element's content is editable.
  1164. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1165. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1166. draggable: Defines whether the element can be dragged.
  1167. enter_key_hint: Hints what media types the media element is able to play.
  1168. hidden: Defines whether the element is hidden.
  1169. input_mode: Defines the type of the element.
  1170. item_prop: Defines the name of the element for metadata purposes.
  1171. lang: Defines the language used in the element.
  1172. role: Defines the role of the element.
  1173. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1174. spell_check: Defines whether the element may be checked for spelling errors.
  1175. tab_index: Defines the position of the current element in the tabbing order.
  1176. title: Defines a tooltip for the element.
  1177. style: The style of the component.
  1178. key: A unique key for the component.
  1179. id: The id for the component.
  1180. class_name: The class name for the component.
  1181. autofocus: Whether the component should take the focus once the page is loaded
  1182. custom_attrs: custom attribute
  1183. **props: The props of the component.
  1184. Returns:
  1185. The component.
  1186. """
  1187. ...
  1188. class Del(BaseHTML):
  1189. @overload
  1190. @classmethod
  1191. def create( # type: ignore
  1192. cls,
  1193. *children,
  1194. cite: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1195. date_time: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1196. access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1197. auto_capitalize: Optional[
  1198. Union[Var[Union[bool, int, str]], bool, int, str]
  1199. ] = None,
  1200. content_editable: Optional[
  1201. Union[Var[Union[bool, int, str]], bool, int, str]
  1202. ] = None,
  1203. context_menu: Optional[
  1204. Union[Var[Union[bool, int, str]], bool, int, str]
  1205. ] = None,
  1206. dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1207. draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1208. enter_key_hint: Optional[
  1209. Union[Var[Union[bool, int, str]], bool, int, str]
  1210. ] = None,
  1211. hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1212. input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1213. item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1214. lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1215. role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1216. slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1217. spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1218. tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1219. title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
  1220. style: Optional[Style] = None,
  1221. key: Optional[Any] = None,
  1222. id: Optional[Any] = None,
  1223. class_name: Optional[Any] = None,
  1224. autofocus: Optional[bool] = None,
  1225. custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
  1226. on_blur: Optional[EventType[[], BASE_STATE]] = None,
  1227. on_click: Optional[EventType[[], BASE_STATE]] = None,
  1228. on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
  1229. on_double_click: Optional[EventType[[], BASE_STATE]] = None,
  1230. on_focus: Optional[EventType[[], BASE_STATE]] = None,
  1231. on_mount: Optional[EventType[[], BASE_STATE]] = None,
  1232. on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
  1233. on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
  1234. on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
  1235. on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
  1236. on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
  1237. on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
  1238. on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
  1239. on_scroll: Optional[EventType[[], BASE_STATE]] = None,
  1240. on_unmount: Optional[EventType[[], BASE_STATE]] = None,
  1241. **props,
  1242. ) -> "Del":
  1243. """Create the component.
  1244. Args:
  1245. *children: The children of the component.
  1246. cite: Specifies the URL of the document that explains the reason why the text was deleted.
  1247. date_time: Specifies the date and time of when the text was deleted.
  1248. access_key: Provides a hint for generating a keyboard shortcut for the current element.
  1249. auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
  1250. content_editable: Indicates whether the element's content is editable.
  1251. context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
  1252. dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  1253. draggable: Defines whether the element can be dragged.
  1254. enter_key_hint: Hints what media types the media element is able to play.
  1255. hidden: Defines whether the element is hidden.
  1256. input_mode: Defines the type of the element.
  1257. item_prop: Defines the name of the element for metadata purposes.
  1258. lang: Defines the language used in the element.
  1259. role: Defines the role of the element.
  1260. slot: Assigns a slot in a shadow DOM shadow tree to an element.
  1261. spell_check: Defines whether the element may be checked for spelling errors.
  1262. tab_index: Defines the position of the current element in the tabbing order.
  1263. title: Defines a tooltip for the element.
  1264. style: The style of the component.
  1265. key: A unique key for the component.
  1266. id: The id for the component.
  1267. class_name: The class name for the component.
  1268. autofocus: Whether the component should take the focus once the page is loaded
  1269. custom_attrs: custom attribute
  1270. **props: The props of the component.
  1271. Returns:
  1272. The component.
  1273. """
  1274. ...
  1275. blockquote = Blockquote.create
  1276. dd = Dd.create
  1277. div = Div.create
  1278. dl = Dl.create
  1279. dt = Dt.create
  1280. figcaption = Figcaption.create
  1281. hr = Hr.create
  1282. li = Li.create
  1283. ol = Ol.create
  1284. p = P.create
  1285. pre = Pre.create
  1286. ul = Ul.create
  1287. ins = Ins.create
  1288. del_ = Del.create