reflex 0.8.15a2__py3-none-any.whl → 0.8.16a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of reflex might be problematic. Click here for more details.

Files changed (138) hide show
  1. reflex/app.py +40 -46
  2. reflex/app_mixins/lifespan.py +12 -5
  3. reflex/base.py +1 -0
  4. reflex/compiler/compiler.py +4 -6
  5. reflex/compiler/templates.py +25 -31
  6. reflex/compiler/utils.py +6 -5
  7. reflex/components/base/body.pyi +1 -195
  8. reflex/components/base/link.pyi +1 -407
  9. reflex/components/base/meta.pyi +1 -405
  10. reflex/components/base/script.pyi +1 -237
  11. reflex/components/component.py +41 -46
  12. reflex/components/core/auto_scroll.pyi +1 -195
  13. reflex/components/core/banner.pyi +1 -391
  14. reflex/components/core/breakpoints.py +14 -18
  15. reflex/components/core/html.pyi +1 -197
  16. reflex/components/core/match.py +2 -2
  17. reflex/components/core/sticky.py +11 -15
  18. reflex/components/core/sticky.pyi +0 -788
  19. reflex/components/core/upload.py +1 -3
  20. reflex/components/datadisplay/code.pyi +1 -0
  21. reflex/components/datadisplay/dataeditor.py +4 -6
  22. reflex/components/datadisplay/shiki_code_block.py +106 -110
  23. reflex/components/dynamic.py +4 -6
  24. reflex/components/el/elements/__init__.py +5 -7
  25. reflex/components/el/elements/__init__.pyi +5 -7
  26. reflex/components/el/elements/base.py +1 -1
  27. reflex/components/el/elements/base.pyi +1 -195
  28. reflex/components/el/elements/forms.py +7 -9
  29. reflex/components/el/elements/forms.pyi +12 -3112
  30. reflex/components/el/elements/inline.pyi +0 -5481
  31. reflex/components/el/elements/media.pyi +0 -10280
  32. reflex/components/el/elements/metadata.pyi +1 -835
  33. reflex/components/el/elements/other.pyi +1 -1365
  34. reflex/components/el/elements/scripts.pyi +1 -625
  35. reflex/components/el/elements/sectioning.pyi +1 -2911
  36. reflex/components/el/elements/tables.pyi +1 -1973
  37. reflex/components/el/elements/typography.pyi +1 -3125
  38. reflex/components/lucide/icon.py +4 -4
  39. reflex/components/lucide/icon.pyi +0 -4
  40. reflex/components/markdown/markdown.py +15 -19
  41. reflex/components/markdown/markdown.pyi +1 -0
  42. reflex/components/moment/moment.pyi +0 -49
  43. reflex/components/props.py +3 -3
  44. reflex/components/radix/primitives/accordion.py +4 -6
  45. reflex/components/radix/primitives/accordion.pyi +0 -14
  46. reflex/components/radix/primitives/base.pyi +0 -5
  47. reflex/components/radix/primitives/dialog.py +2 -0
  48. reflex/components/radix/primitives/dialog.pyi +1 -233
  49. reflex/components/radix/primitives/drawer.pyi +0 -18
  50. reflex/components/radix/primitives/form.pyi +30 -632
  51. reflex/components/radix/primitives/progress.pyi +0 -10
  52. reflex/components/radix/primitives/slider.pyi +0 -10
  53. reflex/components/radix/themes/color_mode.pyi +1 -284
  54. reflex/components/radix/themes/components/alert_dialog.pyi +0 -207
  55. reflex/components/radix/themes/components/aspect_ratio.pyi +0 -2
  56. reflex/components/radix/themes/components/avatar.pyi +0 -80
  57. reflex/components/radix/themes/components/badge.pyi +1 -270
  58. reflex/components/radix/themes/components/button.pyi +1 -274
  59. reflex/components/radix/themes/components/callout.pyi +0 -1197
  60. reflex/components/radix/themes/components/card.pyi +1 -209
  61. reflex/components/radix/themes/components/checkbox.pyi +0 -261
  62. reflex/components/radix/themes/components/checkbox_cards.pyi +1 -96
  63. reflex/components/radix/themes/components/checkbox_group.pyi +1 -80
  64. reflex/components/radix/themes/components/context_menu.pyi +13 -321
  65. reflex/components/radix/themes/components/data_list.pyi +1 -107
  66. reflex/components/radix/themes/components/dialog.pyi +1 -210
  67. reflex/components/radix/themes/components/dropdown_menu.pyi +0 -209
  68. reflex/components/radix/themes/components/hover_card.pyi +1 -246
  69. reflex/components/radix/themes/components/icon_button.pyi +1 -195
  70. reflex/components/radix/themes/components/inset.pyi +0 -252
  71. reflex/components/radix/themes/components/popover.pyi +1 -234
  72. reflex/components/radix/themes/components/progress.pyi +1 -84
  73. reflex/components/radix/themes/components/radio.pyi +1 -72
  74. reflex/components/radix/themes/components/radio_cards.pyi +1 -123
  75. reflex/components/radix/themes/components/scroll_area.pyi +1 -11
  76. reflex/components/radix/themes/components/select.pyi +1 -376
  77. reflex/components/radix/themes/components/separator.pyi +0 -77
  78. reflex/components/radix/themes/components/skeleton.pyi +0 -30
  79. reflex/components/radix/themes/components/slider.py +3 -5
  80. reflex/components/radix/themes/components/spinner.pyi +0 -5
  81. reflex/components/radix/themes/components/switch.pyi +0 -89
  82. reflex/components/radix/themes/components/table.pyi +0 -1453
  83. reflex/components/radix/themes/components/text_area.pyi +7 -282
  84. reflex/components/radix/themes/components/text_field.pyi +6 -392
  85. reflex/components/radix/themes/components/tooltip.pyi +0 -42
  86. reflex/components/radix/themes/layout/box.pyi +1 -195
  87. reflex/components/radix/themes/layout/center.pyi +0 -194
  88. reflex/components/radix/themes/layout/container.pyi +0 -178
  89. reflex/components/radix/themes/layout/flex.pyi +0 -194
  90. reflex/components/radix/themes/layout/grid.pyi +0 -194
  91. reflex/components/radix/themes/layout/list.pyi +0 -978
  92. reflex/components/radix/themes/layout/section.pyi +0 -194
  93. reflex/components/radix/themes/layout/spacer.pyi +0 -194
  94. reflex/components/radix/themes/layout/stack.pyi +0 -582
  95. reflex/components/radix/themes/typography/blockquote.pyi +0 -196
  96. reflex/components/radix/themes/typography/code.pyi +0 -194
  97. reflex/components/radix/themes/typography/heading.pyi +0 -194
  98. reflex/components/radix/themes/typography/link.pyi +0 -237
  99. reflex/components/radix/themes/typography/text.pyi +0 -1360
  100. reflex/components/react_router/dom.pyi +0 -237
  101. reflex/components/recharts/cartesian.py +12 -18
  102. reflex/components/recharts/general.py +12 -18
  103. reflex/constants/installer.py +5 -5
  104. reflex/custom_components/custom_components.py +6 -5
  105. reflex/environment.py +30 -7
  106. reflex/event.py +14 -12
  107. reflex/experimental/client_state.py +11 -12
  108. reflex/istate/data.py +8 -10
  109. reflex/istate/manager/__init__.py +3 -0
  110. reflex/istate/manager/disk.py +151 -5
  111. reflex/model.py +1 -1
  112. reflex/plugins/_screenshot.py +2 -2
  113. reflex/plugins/shared_tailwind.py +9 -14
  114. reflex/reflex.py +7 -9
  115. reflex/state.py +30 -37
  116. reflex/style.py +6 -6
  117. reflex/testing.py +54 -30
  118. reflex/utils/codespaces.py +1 -1
  119. reflex/utils/compat.py +1 -0
  120. reflex/utils/decorator.py +3 -3
  121. reflex/utils/format.py +18 -22
  122. reflex/utils/prerequisites.py +1 -1
  123. reflex/utils/pyi_generator.py +51 -57
  124. reflex/utils/serializers.py +1 -1
  125. reflex/utils/telemetry.py +1 -1
  126. reflex/utils/templates.py +4 -4
  127. reflex/utils/types.py +3 -3
  128. reflex/vars/base.py +26 -29
  129. reflex/vars/color.py +6 -8
  130. reflex/vars/dep_tracking.py +5 -3
  131. reflex/vars/function.py +3 -3
  132. reflex/vars/object.py +9 -13
  133. reflex/vars/sequence.py +18 -24
  134. {reflex-0.8.15a2.dist-info → reflex-0.8.16a1.dist-info}/METADATA +1 -1
  135. {reflex-0.8.15a2.dist-info → reflex-0.8.16a1.dist-info}/RECORD +138 -138
  136. {reflex-0.8.15a2.dist-info → reflex-0.8.16a1.dist-info}/WHEEL +0 -0
  137. {reflex-0.8.15a2.dist-info → reflex-0.8.16a1.dist-info}/entry_points.txt +0 -0
  138. {reflex-0.8.15a2.dist-info → reflex-0.8.16a1.dist-info}/licenses/LICENSE +0 -0
@@ -4,7 +4,7 @@
4
4
  # This file was generated by `reflex/utils/pyi_generator.py`!
5
5
  # ------------------------------------------------------
6
6
  from collections.abc import Mapping, Sequence
7
- from typing import Any, Literal
7
+ from typing import Any
8
8
 
9
9
  from reflex.components.core.breakpoints import Breakpoints
10
10
  from reflex.event import EventType, PointerEventInfo
@@ -17,184 +17,6 @@ class Body(BaseHTML):
17
17
  def create(
18
18
  cls,
19
19
  *children,
20
- access_key: Var[str] | str | None = None,
21
- auto_capitalize: Literal[
22
- "characters", "none", "off", "on", "sentences", "words"
23
- ]
24
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
25
- | None = None,
26
- content_editable: Literal["inherit", "plaintext-only", False, True]
27
- | Var[Literal["inherit", "plaintext-only", False, True]]
28
- | None = None,
29
- context_menu: Var[str] | str | None = None,
30
- dir: Var[str] | str | None = None,
31
- draggable: Var[bool] | bool | None = None,
32
- enter_key_hint: Literal[
33
- "done", "enter", "go", "next", "previous", "search", "send"
34
- ]
35
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
36
- | None = None,
37
- hidden: Var[bool] | bool | None = None,
38
- input_mode: Literal[
39
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
40
- ]
41
- | Var[
42
- Literal[
43
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
44
- ]
45
- ]
46
- | None = None,
47
- item_prop: Var[str] | str | None = None,
48
- lang: Var[str] | str | None = None,
49
- role: Literal[
50
- "alert",
51
- "alertdialog",
52
- "application",
53
- "article",
54
- "banner",
55
- "button",
56
- "cell",
57
- "checkbox",
58
- "columnheader",
59
- "combobox",
60
- "complementary",
61
- "contentinfo",
62
- "definition",
63
- "dialog",
64
- "directory",
65
- "document",
66
- "feed",
67
- "figure",
68
- "form",
69
- "grid",
70
- "gridcell",
71
- "group",
72
- "heading",
73
- "img",
74
- "link",
75
- "list",
76
- "listbox",
77
- "listitem",
78
- "log",
79
- "main",
80
- "marquee",
81
- "math",
82
- "menu",
83
- "menubar",
84
- "menuitem",
85
- "menuitemcheckbox",
86
- "menuitemradio",
87
- "navigation",
88
- "none",
89
- "note",
90
- "option",
91
- "presentation",
92
- "progressbar",
93
- "radio",
94
- "radiogroup",
95
- "region",
96
- "row",
97
- "rowgroup",
98
- "rowheader",
99
- "scrollbar",
100
- "search",
101
- "searchbox",
102
- "separator",
103
- "slider",
104
- "spinbutton",
105
- "status",
106
- "switch",
107
- "tab",
108
- "table",
109
- "tablist",
110
- "tabpanel",
111
- "term",
112
- "textbox",
113
- "timer",
114
- "toolbar",
115
- "tooltip",
116
- "tree",
117
- "treegrid",
118
- "treeitem",
119
- ]
120
- | Var[
121
- Literal[
122
- "alert",
123
- "alertdialog",
124
- "application",
125
- "article",
126
- "banner",
127
- "button",
128
- "cell",
129
- "checkbox",
130
- "columnheader",
131
- "combobox",
132
- "complementary",
133
- "contentinfo",
134
- "definition",
135
- "dialog",
136
- "directory",
137
- "document",
138
- "feed",
139
- "figure",
140
- "form",
141
- "grid",
142
- "gridcell",
143
- "group",
144
- "heading",
145
- "img",
146
- "link",
147
- "list",
148
- "listbox",
149
- "listitem",
150
- "log",
151
- "main",
152
- "marquee",
153
- "math",
154
- "menu",
155
- "menubar",
156
- "menuitem",
157
- "menuitemcheckbox",
158
- "menuitemradio",
159
- "navigation",
160
- "none",
161
- "note",
162
- "option",
163
- "presentation",
164
- "progressbar",
165
- "radio",
166
- "radiogroup",
167
- "region",
168
- "row",
169
- "rowgroup",
170
- "rowheader",
171
- "scrollbar",
172
- "search",
173
- "searchbox",
174
- "separator",
175
- "slider",
176
- "spinbutton",
177
- "status",
178
- "switch",
179
- "tab",
180
- "table",
181
- "tablist",
182
- "tabpanel",
183
- "term",
184
- "textbox",
185
- "timer",
186
- "toolbar",
187
- "tooltip",
188
- "tree",
189
- "treegrid",
190
- "treeitem",
191
- ]
192
- ]
193
- | None = None,
194
- slot: Var[str] | str | None = None,
195
- spell_check: Var[bool] | bool | None = None,
196
- tab_index: Var[int] | int | None = None,
197
- title: Var[str] | str | None = None,
198
20
  style: Sequence[Mapping[str, Any]]
199
21
  | Mapping[str, Any]
200
22
  | Var[Mapping[str, Any]]
@@ -227,22 +49,6 @@ class Body(BaseHTML):
227
49
 
228
50
  Args:
229
51
  *children: The children of the component.
230
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
231
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
232
- content_editable: Indicates whether the element's content is editable.
233
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
234
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
235
- draggable: Defines whether the element can be dragged.
236
- enter_key_hint: Hints what media types the media element is able to play.
237
- hidden: Defines whether the element is hidden.
238
- input_mode: Defines the type of the element.
239
- item_prop: Defines the name of the element for metadata purposes.
240
- lang: Defines the language used in the element.
241
- role: Defines the role of the element.
242
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
243
- spell_check: Defines whether the element may be checked for spelling errors.
244
- tab_index: Defines the position of the current element in the tabbing order.
245
- title: Defines a tooltip for the element.
246
52
  style: The style of the component.
247
53
  key: A unique key for the component.
248
54
  id: The id for the component.
@@ -260,184 +66,6 @@ class Address(BaseHTML):
260
66
  def create(
261
67
  cls,
262
68
  *children,
263
- access_key: Var[str] | str | None = None,
264
- auto_capitalize: Literal[
265
- "characters", "none", "off", "on", "sentences", "words"
266
- ]
267
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
268
- | None = None,
269
- content_editable: Literal["inherit", "plaintext-only", False, True]
270
- | Var[Literal["inherit", "plaintext-only", False, True]]
271
- | None = None,
272
- context_menu: Var[str] | str | None = None,
273
- dir: Var[str] | str | None = None,
274
- draggable: Var[bool] | bool | None = None,
275
- enter_key_hint: Literal[
276
- "done", "enter", "go", "next", "previous", "search", "send"
277
- ]
278
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
279
- | None = None,
280
- hidden: Var[bool] | bool | None = None,
281
- input_mode: Literal[
282
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
283
- ]
284
- | Var[
285
- Literal[
286
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
287
- ]
288
- ]
289
- | None = None,
290
- item_prop: Var[str] | str | None = None,
291
- lang: Var[str] | str | None = None,
292
- role: Literal[
293
- "alert",
294
- "alertdialog",
295
- "application",
296
- "article",
297
- "banner",
298
- "button",
299
- "cell",
300
- "checkbox",
301
- "columnheader",
302
- "combobox",
303
- "complementary",
304
- "contentinfo",
305
- "definition",
306
- "dialog",
307
- "directory",
308
- "document",
309
- "feed",
310
- "figure",
311
- "form",
312
- "grid",
313
- "gridcell",
314
- "group",
315
- "heading",
316
- "img",
317
- "link",
318
- "list",
319
- "listbox",
320
- "listitem",
321
- "log",
322
- "main",
323
- "marquee",
324
- "math",
325
- "menu",
326
- "menubar",
327
- "menuitem",
328
- "menuitemcheckbox",
329
- "menuitemradio",
330
- "navigation",
331
- "none",
332
- "note",
333
- "option",
334
- "presentation",
335
- "progressbar",
336
- "radio",
337
- "radiogroup",
338
- "region",
339
- "row",
340
- "rowgroup",
341
- "rowheader",
342
- "scrollbar",
343
- "search",
344
- "searchbox",
345
- "separator",
346
- "slider",
347
- "spinbutton",
348
- "status",
349
- "switch",
350
- "tab",
351
- "table",
352
- "tablist",
353
- "tabpanel",
354
- "term",
355
- "textbox",
356
- "timer",
357
- "toolbar",
358
- "tooltip",
359
- "tree",
360
- "treegrid",
361
- "treeitem",
362
- ]
363
- | Var[
364
- Literal[
365
- "alert",
366
- "alertdialog",
367
- "application",
368
- "article",
369
- "banner",
370
- "button",
371
- "cell",
372
- "checkbox",
373
- "columnheader",
374
- "combobox",
375
- "complementary",
376
- "contentinfo",
377
- "definition",
378
- "dialog",
379
- "directory",
380
- "document",
381
- "feed",
382
- "figure",
383
- "form",
384
- "grid",
385
- "gridcell",
386
- "group",
387
- "heading",
388
- "img",
389
- "link",
390
- "list",
391
- "listbox",
392
- "listitem",
393
- "log",
394
- "main",
395
- "marquee",
396
- "math",
397
- "menu",
398
- "menubar",
399
- "menuitem",
400
- "menuitemcheckbox",
401
- "menuitemradio",
402
- "navigation",
403
- "none",
404
- "note",
405
- "option",
406
- "presentation",
407
- "progressbar",
408
- "radio",
409
- "radiogroup",
410
- "region",
411
- "row",
412
- "rowgroup",
413
- "rowheader",
414
- "scrollbar",
415
- "search",
416
- "searchbox",
417
- "separator",
418
- "slider",
419
- "spinbutton",
420
- "status",
421
- "switch",
422
- "tab",
423
- "table",
424
- "tablist",
425
- "tabpanel",
426
- "term",
427
- "textbox",
428
- "timer",
429
- "toolbar",
430
- "tooltip",
431
- "tree",
432
- "treegrid",
433
- "treeitem",
434
- ]
435
- ]
436
- | None = None,
437
- slot: Var[str] | str | None = None,
438
- spell_check: Var[bool] | bool | None = None,
439
- tab_index: Var[int] | int | None = None,
440
- title: Var[str] | str | None = None,
441
69
  style: Sequence[Mapping[str, Any]]
442
70
  | Mapping[str, Any]
443
71
  | Var[Mapping[str, Any]]
@@ -470,22 +98,6 @@ class Address(BaseHTML):
470
98
 
471
99
  Args:
472
100
  *children: The children of the component.
473
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
474
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
475
- content_editable: Indicates whether the element's content is editable.
476
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
477
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
478
- draggable: Defines whether the element can be dragged.
479
- enter_key_hint: Hints what media types the media element is able to play.
480
- hidden: Defines whether the element is hidden.
481
- input_mode: Defines the type of the element.
482
- item_prop: Defines the name of the element for metadata purposes.
483
- lang: Defines the language used in the element.
484
- role: Defines the role of the element.
485
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
486
- spell_check: Defines whether the element may be checked for spelling errors.
487
- tab_index: Defines the position of the current element in the tabbing order.
488
- title: Defines a tooltip for the element.
489
101
  style: The style of the component.
490
102
  key: A unique key for the component.
491
103
  id: The id for the component.
@@ -503,184 +115,6 @@ class Article(BaseHTML):
503
115
  def create(
504
116
  cls,
505
117
  *children,
506
- access_key: Var[str] | str | None = None,
507
- auto_capitalize: Literal[
508
- "characters", "none", "off", "on", "sentences", "words"
509
- ]
510
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
511
- | None = None,
512
- content_editable: Literal["inherit", "plaintext-only", False, True]
513
- | Var[Literal["inherit", "plaintext-only", False, True]]
514
- | None = None,
515
- context_menu: Var[str] | str | None = None,
516
- dir: Var[str] | str | None = None,
517
- draggable: Var[bool] | bool | None = None,
518
- enter_key_hint: Literal[
519
- "done", "enter", "go", "next", "previous", "search", "send"
520
- ]
521
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
522
- | None = None,
523
- hidden: Var[bool] | bool | None = None,
524
- input_mode: Literal[
525
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
526
- ]
527
- | Var[
528
- Literal[
529
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
530
- ]
531
- ]
532
- | None = None,
533
- item_prop: Var[str] | str | None = None,
534
- lang: Var[str] | str | None = None,
535
- role: Literal[
536
- "alert",
537
- "alertdialog",
538
- "application",
539
- "article",
540
- "banner",
541
- "button",
542
- "cell",
543
- "checkbox",
544
- "columnheader",
545
- "combobox",
546
- "complementary",
547
- "contentinfo",
548
- "definition",
549
- "dialog",
550
- "directory",
551
- "document",
552
- "feed",
553
- "figure",
554
- "form",
555
- "grid",
556
- "gridcell",
557
- "group",
558
- "heading",
559
- "img",
560
- "link",
561
- "list",
562
- "listbox",
563
- "listitem",
564
- "log",
565
- "main",
566
- "marquee",
567
- "math",
568
- "menu",
569
- "menubar",
570
- "menuitem",
571
- "menuitemcheckbox",
572
- "menuitemradio",
573
- "navigation",
574
- "none",
575
- "note",
576
- "option",
577
- "presentation",
578
- "progressbar",
579
- "radio",
580
- "radiogroup",
581
- "region",
582
- "row",
583
- "rowgroup",
584
- "rowheader",
585
- "scrollbar",
586
- "search",
587
- "searchbox",
588
- "separator",
589
- "slider",
590
- "spinbutton",
591
- "status",
592
- "switch",
593
- "tab",
594
- "table",
595
- "tablist",
596
- "tabpanel",
597
- "term",
598
- "textbox",
599
- "timer",
600
- "toolbar",
601
- "tooltip",
602
- "tree",
603
- "treegrid",
604
- "treeitem",
605
- ]
606
- | Var[
607
- Literal[
608
- "alert",
609
- "alertdialog",
610
- "application",
611
- "article",
612
- "banner",
613
- "button",
614
- "cell",
615
- "checkbox",
616
- "columnheader",
617
- "combobox",
618
- "complementary",
619
- "contentinfo",
620
- "definition",
621
- "dialog",
622
- "directory",
623
- "document",
624
- "feed",
625
- "figure",
626
- "form",
627
- "grid",
628
- "gridcell",
629
- "group",
630
- "heading",
631
- "img",
632
- "link",
633
- "list",
634
- "listbox",
635
- "listitem",
636
- "log",
637
- "main",
638
- "marquee",
639
- "math",
640
- "menu",
641
- "menubar",
642
- "menuitem",
643
- "menuitemcheckbox",
644
- "menuitemradio",
645
- "navigation",
646
- "none",
647
- "note",
648
- "option",
649
- "presentation",
650
- "progressbar",
651
- "radio",
652
- "radiogroup",
653
- "region",
654
- "row",
655
- "rowgroup",
656
- "rowheader",
657
- "scrollbar",
658
- "search",
659
- "searchbox",
660
- "separator",
661
- "slider",
662
- "spinbutton",
663
- "status",
664
- "switch",
665
- "tab",
666
- "table",
667
- "tablist",
668
- "tabpanel",
669
- "term",
670
- "textbox",
671
- "timer",
672
- "toolbar",
673
- "tooltip",
674
- "tree",
675
- "treegrid",
676
- "treeitem",
677
- ]
678
- ]
679
- | None = None,
680
- slot: Var[str] | str | None = None,
681
- spell_check: Var[bool] | bool | None = None,
682
- tab_index: Var[int] | int | None = None,
683
- title: Var[str] | str | None = None,
684
118
  style: Sequence[Mapping[str, Any]]
685
119
  | Mapping[str, Any]
686
120
  | Var[Mapping[str, Any]]
@@ -713,22 +147,6 @@ class Article(BaseHTML):
713
147
 
714
148
  Args:
715
149
  *children: The children of the component.
716
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
717
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
718
- content_editable: Indicates whether the element's content is editable.
719
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
720
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
721
- draggable: Defines whether the element can be dragged.
722
- enter_key_hint: Hints what media types the media element is able to play.
723
- hidden: Defines whether the element is hidden.
724
- input_mode: Defines the type of the element.
725
- item_prop: Defines the name of the element for metadata purposes.
726
- lang: Defines the language used in the element.
727
- role: Defines the role of the element.
728
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
729
- spell_check: Defines whether the element may be checked for spelling errors.
730
- tab_index: Defines the position of the current element in the tabbing order.
731
- title: Defines a tooltip for the element.
732
150
  style: The style of the component.
733
151
  key: A unique key for the component.
734
152
  id: The id for the component.
@@ -746,184 +164,6 @@ class Aside(BaseHTML):
746
164
  def create(
747
165
  cls,
748
166
  *children,
749
- access_key: Var[str] | str | None = None,
750
- auto_capitalize: Literal[
751
- "characters", "none", "off", "on", "sentences", "words"
752
- ]
753
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
754
- | None = None,
755
- content_editable: Literal["inherit", "plaintext-only", False, True]
756
- | Var[Literal["inherit", "plaintext-only", False, True]]
757
- | None = None,
758
- context_menu: Var[str] | str | None = None,
759
- dir: Var[str] | str | None = None,
760
- draggable: Var[bool] | bool | None = None,
761
- enter_key_hint: Literal[
762
- "done", "enter", "go", "next", "previous", "search", "send"
763
- ]
764
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
765
- | None = None,
766
- hidden: Var[bool] | bool | None = None,
767
- input_mode: Literal[
768
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
769
- ]
770
- | Var[
771
- Literal[
772
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
773
- ]
774
- ]
775
- | None = None,
776
- item_prop: Var[str] | str | None = None,
777
- lang: Var[str] | str | None = None,
778
- role: Literal[
779
- "alert",
780
- "alertdialog",
781
- "application",
782
- "article",
783
- "banner",
784
- "button",
785
- "cell",
786
- "checkbox",
787
- "columnheader",
788
- "combobox",
789
- "complementary",
790
- "contentinfo",
791
- "definition",
792
- "dialog",
793
- "directory",
794
- "document",
795
- "feed",
796
- "figure",
797
- "form",
798
- "grid",
799
- "gridcell",
800
- "group",
801
- "heading",
802
- "img",
803
- "link",
804
- "list",
805
- "listbox",
806
- "listitem",
807
- "log",
808
- "main",
809
- "marquee",
810
- "math",
811
- "menu",
812
- "menubar",
813
- "menuitem",
814
- "menuitemcheckbox",
815
- "menuitemradio",
816
- "navigation",
817
- "none",
818
- "note",
819
- "option",
820
- "presentation",
821
- "progressbar",
822
- "radio",
823
- "radiogroup",
824
- "region",
825
- "row",
826
- "rowgroup",
827
- "rowheader",
828
- "scrollbar",
829
- "search",
830
- "searchbox",
831
- "separator",
832
- "slider",
833
- "spinbutton",
834
- "status",
835
- "switch",
836
- "tab",
837
- "table",
838
- "tablist",
839
- "tabpanel",
840
- "term",
841
- "textbox",
842
- "timer",
843
- "toolbar",
844
- "tooltip",
845
- "tree",
846
- "treegrid",
847
- "treeitem",
848
- ]
849
- | Var[
850
- Literal[
851
- "alert",
852
- "alertdialog",
853
- "application",
854
- "article",
855
- "banner",
856
- "button",
857
- "cell",
858
- "checkbox",
859
- "columnheader",
860
- "combobox",
861
- "complementary",
862
- "contentinfo",
863
- "definition",
864
- "dialog",
865
- "directory",
866
- "document",
867
- "feed",
868
- "figure",
869
- "form",
870
- "grid",
871
- "gridcell",
872
- "group",
873
- "heading",
874
- "img",
875
- "link",
876
- "list",
877
- "listbox",
878
- "listitem",
879
- "log",
880
- "main",
881
- "marquee",
882
- "math",
883
- "menu",
884
- "menubar",
885
- "menuitem",
886
- "menuitemcheckbox",
887
- "menuitemradio",
888
- "navigation",
889
- "none",
890
- "note",
891
- "option",
892
- "presentation",
893
- "progressbar",
894
- "radio",
895
- "radiogroup",
896
- "region",
897
- "row",
898
- "rowgroup",
899
- "rowheader",
900
- "scrollbar",
901
- "search",
902
- "searchbox",
903
- "separator",
904
- "slider",
905
- "spinbutton",
906
- "status",
907
- "switch",
908
- "tab",
909
- "table",
910
- "tablist",
911
- "tabpanel",
912
- "term",
913
- "textbox",
914
- "timer",
915
- "toolbar",
916
- "tooltip",
917
- "tree",
918
- "treegrid",
919
- "treeitem",
920
- ]
921
- ]
922
- | None = None,
923
- slot: Var[str] | str | None = None,
924
- spell_check: Var[bool] | bool | None = None,
925
- tab_index: Var[int] | int | None = None,
926
- title: Var[str] | str | None = None,
927
167
  style: Sequence[Mapping[str, Any]]
928
168
  | Mapping[str, Any]
929
169
  | Var[Mapping[str, Any]]
@@ -956,22 +196,6 @@ class Aside(BaseHTML):
956
196
 
957
197
  Args:
958
198
  *children: The children of the component.
959
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
960
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
961
- content_editable: Indicates whether the element's content is editable.
962
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
963
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
964
- draggable: Defines whether the element can be dragged.
965
- enter_key_hint: Hints what media types the media element is able to play.
966
- hidden: Defines whether the element is hidden.
967
- input_mode: Defines the type of the element.
968
- item_prop: Defines the name of the element for metadata purposes.
969
- lang: Defines the language used in the element.
970
- role: Defines the role of the element.
971
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
972
- spell_check: Defines whether the element may be checked for spelling errors.
973
- tab_index: Defines the position of the current element in the tabbing order.
974
- title: Defines a tooltip for the element.
975
199
  style: The style of the component.
976
200
  key: A unique key for the component.
977
201
  id: The id for the component.
@@ -989,184 +213,6 @@ class Footer(BaseHTML):
989
213
  def create(
990
214
  cls,
991
215
  *children,
992
- access_key: Var[str] | str | None = None,
993
- auto_capitalize: Literal[
994
- "characters", "none", "off", "on", "sentences", "words"
995
- ]
996
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
997
- | None = None,
998
- content_editable: Literal["inherit", "plaintext-only", False, True]
999
- | Var[Literal["inherit", "plaintext-only", False, True]]
1000
- | None = None,
1001
- context_menu: Var[str] | str | None = None,
1002
- dir: Var[str] | str | None = None,
1003
- draggable: Var[bool] | bool | None = None,
1004
- enter_key_hint: Literal[
1005
- "done", "enter", "go", "next", "previous", "search", "send"
1006
- ]
1007
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1008
- | None = None,
1009
- hidden: Var[bool] | bool | None = None,
1010
- input_mode: Literal[
1011
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1012
- ]
1013
- | Var[
1014
- Literal[
1015
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1016
- ]
1017
- ]
1018
- | None = None,
1019
- item_prop: Var[str] | str | None = None,
1020
- lang: Var[str] | str | None = None,
1021
- role: Literal[
1022
- "alert",
1023
- "alertdialog",
1024
- "application",
1025
- "article",
1026
- "banner",
1027
- "button",
1028
- "cell",
1029
- "checkbox",
1030
- "columnheader",
1031
- "combobox",
1032
- "complementary",
1033
- "contentinfo",
1034
- "definition",
1035
- "dialog",
1036
- "directory",
1037
- "document",
1038
- "feed",
1039
- "figure",
1040
- "form",
1041
- "grid",
1042
- "gridcell",
1043
- "group",
1044
- "heading",
1045
- "img",
1046
- "link",
1047
- "list",
1048
- "listbox",
1049
- "listitem",
1050
- "log",
1051
- "main",
1052
- "marquee",
1053
- "math",
1054
- "menu",
1055
- "menubar",
1056
- "menuitem",
1057
- "menuitemcheckbox",
1058
- "menuitemradio",
1059
- "navigation",
1060
- "none",
1061
- "note",
1062
- "option",
1063
- "presentation",
1064
- "progressbar",
1065
- "radio",
1066
- "radiogroup",
1067
- "region",
1068
- "row",
1069
- "rowgroup",
1070
- "rowheader",
1071
- "scrollbar",
1072
- "search",
1073
- "searchbox",
1074
- "separator",
1075
- "slider",
1076
- "spinbutton",
1077
- "status",
1078
- "switch",
1079
- "tab",
1080
- "table",
1081
- "tablist",
1082
- "tabpanel",
1083
- "term",
1084
- "textbox",
1085
- "timer",
1086
- "toolbar",
1087
- "tooltip",
1088
- "tree",
1089
- "treegrid",
1090
- "treeitem",
1091
- ]
1092
- | Var[
1093
- Literal[
1094
- "alert",
1095
- "alertdialog",
1096
- "application",
1097
- "article",
1098
- "banner",
1099
- "button",
1100
- "cell",
1101
- "checkbox",
1102
- "columnheader",
1103
- "combobox",
1104
- "complementary",
1105
- "contentinfo",
1106
- "definition",
1107
- "dialog",
1108
- "directory",
1109
- "document",
1110
- "feed",
1111
- "figure",
1112
- "form",
1113
- "grid",
1114
- "gridcell",
1115
- "group",
1116
- "heading",
1117
- "img",
1118
- "link",
1119
- "list",
1120
- "listbox",
1121
- "listitem",
1122
- "log",
1123
- "main",
1124
- "marquee",
1125
- "math",
1126
- "menu",
1127
- "menubar",
1128
- "menuitem",
1129
- "menuitemcheckbox",
1130
- "menuitemradio",
1131
- "navigation",
1132
- "none",
1133
- "note",
1134
- "option",
1135
- "presentation",
1136
- "progressbar",
1137
- "radio",
1138
- "radiogroup",
1139
- "region",
1140
- "row",
1141
- "rowgroup",
1142
- "rowheader",
1143
- "scrollbar",
1144
- "search",
1145
- "searchbox",
1146
- "separator",
1147
- "slider",
1148
- "spinbutton",
1149
- "status",
1150
- "switch",
1151
- "tab",
1152
- "table",
1153
- "tablist",
1154
- "tabpanel",
1155
- "term",
1156
- "textbox",
1157
- "timer",
1158
- "toolbar",
1159
- "tooltip",
1160
- "tree",
1161
- "treegrid",
1162
- "treeitem",
1163
- ]
1164
- ]
1165
- | None = None,
1166
- slot: Var[str] | str | None = None,
1167
- spell_check: Var[bool] | bool | None = None,
1168
- tab_index: Var[int] | int | None = None,
1169
- title: Var[str] | str | None = None,
1170
216
  style: Sequence[Mapping[str, Any]]
1171
217
  | Mapping[str, Any]
1172
218
  | Var[Mapping[str, Any]]
@@ -1199,22 +245,6 @@ class Footer(BaseHTML):
1199
245
 
1200
246
  Args:
1201
247
  *children: The children of the component.
1202
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1203
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1204
- content_editable: Indicates whether the element's content is editable.
1205
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1206
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1207
- draggable: Defines whether the element can be dragged.
1208
- enter_key_hint: Hints what media types the media element is able to play.
1209
- hidden: Defines whether the element is hidden.
1210
- input_mode: Defines the type of the element.
1211
- item_prop: Defines the name of the element for metadata purposes.
1212
- lang: Defines the language used in the element.
1213
- role: Defines the role of the element.
1214
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1215
- spell_check: Defines whether the element may be checked for spelling errors.
1216
- tab_index: Defines the position of the current element in the tabbing order.
1217
- title: Defines a tooltip for the element.
1218
248
  style: The style of the component.
1219
249
  key: A unique key for the component.
1220
250
  id: The id for the component.
@@ -1232,184 +262,6 @@ class Header(BaseHTML):
1232
262
  def create(
1233
263
  cls,
1234
264
  *children,
1235
- access_key: Var[str] | str | None = None,
1236
- auto_capitalize: Literal[
1237
- "characters", "none", "off", "on", "sentences", "words"
1238
- ]
1239
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1240
- | None = None,
1241
- content_editable: Literal["inherit", "plaintext-only", False, True]
1242
- | Var[Literal["inherit", "plaintext-only", False, True]]
1243
- | None = None,
1244
- context_menu: Var[str] | str | None = None,
1245
- dir: Var[str] | str | None = None,
1246
- draggable: Var[bool] | bool | None = None,
1247
- enter_key_hint: Literal[
1248
- "done", "enter", "go", "next", "previous", "search", "send"
1249
- ]
1250
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1251
- | None = None,
1252
- hidden: Var[bool] | bool | None = None,
1253
- input_mode: Literal[
1254
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1255
- ]
1256
- | Var[
1257
- Literal[
1258
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1259
- ]
1260
- ]
1261
- | None = None,
1262
- item_prop: Var[str] | str | None = None,
1263
- lang: Var[str] | str | None = None,
1264
- role: Literal[
1265
- "alert",
1266
- "alertdialog",
1267
- "application",
1268
- "article",
1269
- "banner",
1270
- "button",
1271
- "cell",
1272
- "checkbox",
1273
- "columnheader",
1274
- "combobox",
1275
- "complementary",
1276
- "contentinfo",
1277
- "definition",
1278
- "dialog",
1279
- "directory",
1280
- "document",
1281
- "feed",
1282
- "figure",
1283
- "form",
1284
- "grid",
1285
- "gridcell",
1286
- "group",
1287
- "heading",
1288
- "img",
1289
- "link",
1290
- "list",
1291
- "listbox",
1292
- "listitem",
1293
- "log",
1294
- "main",
1295
- "marquee",
1296
- "math",
1297
- "menu",
1298
- "menubar",
1299
- "menuitem",
1300
- "menuitemcheckbox",
1301
- "menuitemradio",
1302
- "navigation",
1303
- "none",
1304
- "note",
1305
- "option",
1306
- "presentation",
1307
- "progressbar",
1308
- "radio",
1309
- "radiogroup",
1310
- "region",
1311
- "row",
1312
- "rowgroup",
1313
- "rowheader",
1314
- "scrollbar",
1315
- "search",
1316
- "searchbox",
1317
- "separator",
1318
- "slider",
1319
- "spinbutton",
1320
- "status",
1321
- "switch",
1322
- "tab",
1323
- "table",
1324
- "tablist",
1325
- "tabpanel",
1326
- "term",
1327
- "textbox",
1328
- "timer",
1329
- "toolbar",
1330
- "tooltip",
1331
- "tree",
1332
- "treegrid",
1333
- "treeitem",
1334
- ]
1335
- | Var[
1336
- Literal[
1337
- "alert",
1338
- "alertdialog",
1339
- "application",
1340
- "article",
1341
- "banner",
1342
- "button",
1343
- "cell",
1344
- "checkbox",
1345
- "columnheader",
1346
- "combobox",
1347
- "complementary",
1348
- "contentinfo",
1349
- "definition",
1350
- "dialog",
1351
- "directory",
1352
- "document",
1353
- "feed",
1354
- "figure",
1355
- "form",
1356
- "grid",
1357
- "gridcell",
1358
- "group",
1359
- "heading",
1360
- "img",
1361
- "link",
1362
- "list",
1363
- "listbox",
1364
- "listitem",
1365
- "log",
1366
- "main",
1367
- "marquee",
1368
- "math",
1369
- "menu",
1370
- "menubar",
1371
- "menuitem",
1372
- "menuitemcheckbox",
1373
- "menuitemradio",
1374
- "navigation",
1375
- "none",
1376
- "note",
1377
- "option",
1378
- "presentation",
1379
- "progressbar",
1380
- "radio",
1381
- "radiogroup",
1382
- "region",
1383
- "row",
1384
- "rowgroup",
1385
- "rowheader",
1386
- "scrollbar",
1387
- "search",
1388
- "searchbox",
1389
- "separator",
1390
- "slider",
1391
- "spinbutton",
1392
- "status",
1393
- "switch",
1394
- "tab",
1395
- "table",
1396
- "tablist",
1397
- "tabpanel",
1398
- "term",
1399
- "textbox",
1400
- "timer",
1401
- "toolbar",
1402
- "tooltip",
1403
- "tree",
1404
- "treegrid",
1405
- "treeitem",
1406
- ]
1407
- ]
1408
- | None = None,
1409
- slot: Var[str] | str | None = None,
1410
- spell_check: Var[bool] | bool | None = None,
1411
- tab_index: Var[int] | int | None = None,
1412
- title: Var[str] | str | None = None,
1413
265
  style: Sequence[Mapping[str, Any]]
1414
266
  | Mapping[str, Any]
1415
267
  | Var[Mapping[str, Any]]
@@ -1442,22 +294,6 @@ class Header(BaseHTML):
1442
294
 
1443
295
  Args:
1444
296
  *children: The children of the component.
1445
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1446
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1447
- content_editable: Indicates whether the element's content is editable.
1448
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1449
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1450
- draggable: Defines whether the element can be dragged.
1451
- enter_key_hint: Hints what media types the media element is able to play.
1452
- hidden: Defines whether the element is hidden.
1453
- input_mode: Defines the type of the element.
1454
- item_prop: Defines the name of the element for metadata purposes.
1455
- lang: Defines the language used in the element.
1456
- role: Defines the role of the element.
1457
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1458
- spell_check: Defines whether the element may be checked for spelling errors.
1459
- tab_index: Defines the position of the current element in the tabbing order.
1460
- title: Defines a tooltip for the element.
1461
297
  style: The style of the component.
1462
298
  key: A unique key for the component.
1463
299
  id: The id for the component.
@@ -1475,184 +311,6 @@ class H1(BaseHTML):
1475
311
  def create(
1476
312
  cls,
1477
313
  *children,
1478
- access_key: Var[str] | str | None = None,
1479
- auto_capitalize: Literal[
1480
- "characters", "none", "off", "on", "sentences", "words"
1481
- ]
1482
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1483
- | None = None,
1484
- content_editable: Literal["inherit", "plaintext-only", False, True]
1485
- | Var[Literal["inherit", "plaintext-only", False, True]]
1486
- | None = None,
1487
- context_menu: Var[str] | str | None = None,
1488
- dir: Var[str] | str | None = None,
1489
- draggable: Var[bool] | bool | None = None,
1490
- enter_key_hint: Literal[
1491
- "done", "enter", "go", "next", "previous", "search", "send"
1492
- ]
1493
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1494
- | None = None,
1495
- hidden: Var[bool] | bool | None = None,
1496
- input_mode: Literal[
1497
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1498
- ]
1499
- | Var[
1500
- Literal[
1501
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1502
- ]
1503
- ]
1504
- | None = None,
1505
- item_prop: Var[str] | str | None = None,
1506
- lang: Var[str] | str | None = None,
1507
- role: Literal[
1508
- "alert",
1509
- "alertdialog",
1510
- "application",
1511
- "article",
1512
- "banner",
1513
- "button",
1514
- "cell",
1515
- "checkbox",
1516
- "columnheader",
1517
- "combobox",
1518
- "complementary",
1519
- "contentinfo",
1520
- "definition",
1521
- "dialog",
1522
- "directory",
1523
- "document",
1524
- "feed",
1525
- "figure",
1526
- "form",
1527
- "grid",
1528
- "gridcell",
1529
- "group",
1530
- "heading",
1531
- "img",
1532
- "link",
1533
- "list",
1534
- "listbox",
1535
- "listitem",
1536
- "log",
1537
- "main",
1538
- "marquee",
1539
- "math",
1540
- "menu",
1541
- "menubar",
1542
- "menuitem",
1543
- "menuitemcheckbox",
1544
- "menuitemradio",
1545
- "navigation",
1546
- "none",
1547
- "note",
1548
- "option",
1549
- "presentation",
1550
- "progressbar",
1551
- "radio",
1552
- "radiogroup",
1553
- "region",
1554
- "row",
1555
- "rowgroup",
1556
- "rowheader",
1557
- "scrollbar",
1558
- "search",
1559
- "searchbox",
1560
- "separator",
1561
- "slider",
1562
- "spinbutton",
1563
- "status",
1564
- "switch",
1565
- "tab",
1566
- "table",
1567
- "tablist",
1568
- "tabpanel",
1569
- "term",
1570
- "textbox",
1571
- "timer",
1572
- "toolbar",
1573
- "tooltip",
1574
- "tree",
1575
- "treegrid",
1576
- "treeitem",
1577
- ]
1578
- | Var[
1579
- Literal[
1580
- "alert",
1581
- "alertdialog",
1582
- "application",
1583
- "article",
1584
- "banner",
1585
- "button",
1586
- "cell",
1587
- "checkbox",
1588
- "columnheader",
1589
- "combobox",
1590
- "complementary",
1591
- "contentinfo",
1592
- "definition",
1593
- "dialog",
1594
- "directory",
1595
- "document",
1596
- "feed",
1597
- "figure",
1598
- "form",
1599
- "grid",
1600
- "gridcell",
1601
- "group",
1602
- "heading",
1603
- "img",
1604
- "link",
1605
- "list",
1606
- "listbox",
1607
- "listitem",
1608
- "log",
1609
- "main",
1610
- "marquee",
1611
- "math",
1612
- "menu",
1613
- "menubar",
1614
- "menuitem",
1615
- "menuitemcheckbox",
1616
- "menuitemradio",
1617
- "navigation",
1618
- "none",
1619
- "note",
1620
- "option",
1621
- "presentation",
1622
- "progressbar",
1623
- "radio",
1624
- "radiogroup",
1625
- "region",
1626
- "row",
1627
- "rowgroup",
1628
- "rowheader",
1629
- "scrollbar",
1630
- "search",
1631
- "searchbox",
1632
- "separator",
1633
- "slider",
1634
- "spinbutton",
1635
- "status",
1636
- "switch",
1637
- "tab",
1638
- "table",
1639
- "tablist",
1640
- "tabpanel",
1641
- "term",
1642
- "textbox",
1643
- "timer",
1644
- "toolbar",
1645
- "tooltip",
1646
- "tree",
1647
- "treegrid",
1648
- "treeitem",
1649
- ]
1650
- ]
1651
- | None = None,
1652
- slot: Var[str] | str | None = None,
1653
- spell_check: Var[bool] | bool | None = None,
1654
- tab_index: Var[int] | int | None = None,
1655
- title: Var[str] | str | None = None,
1656
314
  style: Sequence[Mapping[str, Any]]
1657
315
  | Mapping[str, Any]
1658
316
  | Var[Mapping[str, Any]]
@@ -1685,22 +343,6 @@ class H1(BaseHTML):
1685
343
 
1686
344
  Args:
1687
345
  *children: The children of the component.
1688
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1689
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1690
- content_editable: Indicates whether the element's content is editable.
1691
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1692
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1693
- draggable: Defines whether the element can be dragged.
1694
- enter_key_hint: Hints what media types the media element is able to play.
1695
- hidden: Defines whether the element is hidden.
1696
- input_mode: Defines the type of the element.
1697
- item_prop: Defines the name of the element for metadata purposes.
1698
- lang: Defines the language used in the element.
1699
- role: Defines the role of the element.
1700
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1701
- spell_check: Defines whether the element may be checked for spelling errors.
1702
- tab_index: Defines the position of the current element in the tabbing order.
1703
- title: Defines a tooltip for the element.
1704
346
  style: The style of the component.
1705
347
  key: A unique key for the component.
1706
348
  id: The id for the component.
@@ -1718,184 +360,6 @@ class H2(BaseHTML):
1718
360
  def create(
1719
361
  cls,
1720
362
  *children,
1721
- access_key: Var[str] | str | None = None,
1722
- auto_capitalize: Literal[
1723
- "characters", "none", "off", "on", "sentences", "words"
1724
- ]
1725
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1726
- | None = None,
1727
- content_editable: Literal["inherit", "plaintext-only", False, True]
1728
- | Var[Literal["inherit", "plaintext-only", False, True]]
1729
- | None = None,
1730
- context_menu: Var[str] | str | None = None,
1731
- dir: Var[str] | str | None = None,
1732
- draggable: Var[bool] | bool | None = None,
1733
- enter_key_hint: Literal[
1734
- "done", "enter", "go", "next", "previous", "search", "send"
1735
- ]
1736
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1737
- | None = None,
1738
- hidden: Var[bool] | bool | None = None,
1739
- input_mode: Literal[
1740
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1741
- ]
1742
- | Var[
1743
- Literal[
1744
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1745
- ]
1746
- ]
1747
- | None = None,
1748
- item_prop: Var[str] | str | None = None,
1749
- lang: Var[str] | str | None = None,
1750
- role: Literal[
1751
- "alert",
1752
- "alertdialog",
1753
- "application",
1754
- "article",
1755
- "banner",
1756
- "button",
1757
- "cell",
1758
- "checkbox",
1759
- "columnheader",
1760
- "combobox",
1761
- "complementary",
1762
- "contentinfo",
1763
- "definition",
1764
- "dialog",
1765
- "directory",
1766
- "document",
1767
- "feed",
1768
- "figure",
1769
- "form",
1770
- "grid",
1771
- "gridcell",
1772
- "group",
1773
- "heading",
1774
- "img",
1775
- "link",
1776
- "list",
1777
- "listbox",
1778
- "listitem",
1779
- "log",
1780
- "main",
1781
- "marquee",
1782
- "math",
1783
- "menu",
1784
- "menubar",
1785
- "menuitem",
1786
- "menuitemcheckbox",
1787
- "menuitemradio",
1788
- "navigation",
1789
- "none",
1790
- "note",
1791
- "option",
1792
- "presentation",
1793
- "progressbar",
1794
- "radio",
1795
- "radiogroup",
1796
- "region",
1797
- "row",
1798
- "rowgroup",
1799
- "rowheader",
1800
- "scrollbar",
1801
- "search",
1802
- "searchbox",
1803
- "separator",
1804
- "slider",
1805
- "spinbutton",
1806
- "status",
1807
- "switch",
1808
- "tab",
1809
- "table",
1810
- "tablist",
1811
- "tabpanel",
1812
- "term",
1813
- "textbox",
1814
- "timer",
1815
- "toolbar",
1816
- "tooltip",
1817
- "tree",
1818
- "treegrid",
1819
- "treeitem",
1820
- ]
1821
- | Var[
1822
- Literal[
1823
- "alert",
1824
- "alertdialog",
1825
- "application",
1826
- "article",
1827
- "banner",
1828
- "button",
1829
- "cell",
1830
- "checkbox",
1831
- "columnheader",
1832
- "combobox",
1833
- "complementary",
1834
- "contentinfo",
1835
- "definition",
1836
- "dialog",
1837
- "directory",
1838
- "document",
1839
- "feed",
1840
- "figure",
1841
- "form",
1842
- "grid",
1843
- "gridcell",
1844
- "group",
1845
- "heading",
1846
- "img",
1847
- "link",
1848
- "list",
1849
- "listbox",
1850
- "listitem",
1851
- "log",
1852
- "main",
1853
- "marquee",
1854
- "math",
1855
- "menu",
1856
- "menubar",
1857
- "menuitem",
1858
- "menuitemcheckbox",
1859
- "menuitemradio",
1860
- "navigation",
1861
- "none",
1862
- "note",
1863
- "option",
1864
- "presentation",
1865
- "progressbar",
1866
- "radio",
1867
- "radiogroup",
1868
- "region",
1869
- "row",
1870
- "rowgroup",
1871
- "rowheader",
1872
- "scrollbar",
1873
- "search",
1874
- "searchbox",
1875
- "separator",
1876
- "slider",
1877
- "spinbutton",
1878
- "status",
1879
- "switch",
1880
- "tab",
1881
- "table",
1882
- "tablist",
1883
- "tabpanel",
1884
- "term",
1885
- "textbox",
1886
- "timer",
1887
- "toolbar",
1888
- "tooltip",
1889
- "tree",
1890
- "treegrid",
1891
- "treeitem",
1892
- ]
1893
- ]
1894
- | None = None,
1895
- slot: Var[str] | str | None = None,
1896
- spell_check: Var[bool] | bool | None = None,
1897
- tab_index: Var[int] | int | None = None,
1898
- title: Var[str] | str | None = None,
1899
363
  style: Sequence[Mapping[str, Any]]
1900
364
  | Mapping[str, Any]
1901
365
  | Var[Mapping[str, Any]]
@@ -1928,22 +392,6 @@ class H2(BaseHTML):
1928
392
 
1929
393
  Args:
1930
394
  *children: The children of the component.
1931
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1932
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1933
- content_editable: Indicates whether the element's content is editable.
1934
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1935
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1936
- draggable: Defines whether the element can be dragged.
1937
- enter_key_hint: Hints what media types the media element is able to play.
1938
- hidden: Defines whether the element is hidden.
1939
- input_mode: Defines the type of the element.
1940
- item_prop: Defines the name of the element for metadata purposes.
1941
- lang: Defines the language used in the element.
1942
- role: Defines the role of the element.
1943
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1944
- spell_check: Defines whether the element may be checked for spelling errors.
1945
- tab_index: Defines the position of the current element in the tabbing order.
1946
- title: Defines a tooltip for the element.
1947
395
  style: The style of the component.
1948
396
  key: A unique key for the component.
1949
397
  id: The id for the component.
@@ -1961,184 +409,6 @@ class H3(BaseHTML):
1961
409
  def create(
1962
410
  cls,
1963
411
  *children,
1964
- access_key: Var[str] | str | None = None,
1965
- auto_capitalize: Literal[
1966
- "characters", "none", "off", "on", "sentences", "words"
1967
- ]
1968
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1969
- | None = None,
1970
- content_editable: Literal["inherit", "plaintext-only", False, True]
1971
- | Var[Literal["inherit", "plaintext-only", False, True]]
1972
- | None = None,
1973
- context_menu: Var[str] | str | None = None,
1974
- dir: Var[str] | str | None = None,
1975
- draggable: Var[bool] | bool | None = None,
1976
- enter_key_hint: Literal[
1977
- "done", "enter", "go", "next", "previous", "search", "send"
1978
- ]
1979
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1980
- | None = None,
1981
- hidden: Var[bool] | bool | None = None,
1982
- input_mode: Literal[
1983
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1984
- ]
1985
- | Var[
1986
- Literal[
1987
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1988
- ]
1989
- ]
1990
- | None = None,
1991
- item_prop: Var[str] | str | None = None,
1992
- lang: Var[str] | str | None = None,
1993
- role: Literal[
1994
- "alert",
1995
- "alertdialog",
1996
- "application",
1997
- "article",
1998
- "banner",
1999
- "button",
2000
- "cell",
2001
- "checkbox",
2002
- "columnheader",
2003
- "combobox",
2004
- "complementary",
2005
- "contentinfo",
2006
- "definition",
2007
- "dialog",
2008
- "directory",
2009
- "document",
2010
- "feed",
2011
- "figure",
2012
- "form",
2013
- "grid",
2014
- "gridcell",
2015
- "group",
2016
- "heading",
2017
- "img",
2018
- "link",
2019
- "list",
2020
- "listbox",
2021
- "listitem",
2022
- "log",
2023
- "main",
2024
- "marquee",
2025
- "math",
2026
- "menu",
2027
- "menubar",
2028
- "menuitem",
2029
- "menuitemcheckbox",
2030
- "menuitemradio",
2031
- "navigation",
2032
- "none",
2033
- "note",
2034
- "option",
2035
- "presentation",
2036
- "progressbar",
2037
- "radio",
2038
- "radiogroup",
2039
- "region",
2040
- "row",
2041
- "rowgroup",
2042
- "rowheader",
2043
- "scrollbar",
2044
- "search",
2045
- "searchbox",
2046
- "separator",
2047
- "slider",
2048
- "spinbutton",
2049
- "status",
2050
- "switch",
2051
- "tab",
2052
- "table",
2053
- "tablist",
2054
- "tabpanel",
2055
- "term",
2056
- "textbox",
2057
- "timer",
2058
- "toolbar",
2059
- "tooltip",
2060
- "tree",
2061
- "treegrid",
2062
- "treeitem",
2063
- ]
2064
- | Var[
2065
- Literal[
2066
- "alert",
2067
- "alertdialog",
2068
- "application",
2069
- "article",
2070
- "banner",
2071
- "button",
2072
- "cell",
2073
- "checkbox",
2074
- "columnheader",
2075
- "combobox",
2076
- "complementary",
2077
- "contentinfo",
2078
- "definition",
2079
- "dialog",
2080
- "directory",
2081
- "document",
2082
- "feed",
2083
- "figure",
2084
- "form",
2085
- "grid",
2086
- "gridcell",
2087
- "group",
2088
- "heading",
2089
- "img",
2090
- "link",
2091
- "list",
2092
- "listbox",
2093
- "listitem",
2094
- "log",
2095
- "main",
2096
- "marquee",
2097
- "math",
2098
- "menu",
2099
- "menubar",
2100
- "menuitem",
2101
- "menuitemcheckbox",
2102
- "menuitemradio",
2103
- "navigation",
2104
- "none",
2105
- "note",
2106
- "option",
2107
- "presentation",
2108
- "progressbar",
2109
- "radio",
2110
- "radiogroup",
2111
- "region",
2112
- "row",
2113
- "rowgroup",
2114
- "rowheader",
2115
- "scrollbar",
2116
- "search",
2117
- "searchbox",
2118
- "separator",
2119
- "slider",
2120
- "spinbutton",
2121
- "status",
2122
- "switch",
2123
- "tab",
2124
- "table",
2125
- "tablist",
2126
- "tabpanel",
2127
- "term",
2128
- "textbox",
2129
- "timer",
2130
- "toolbar",
2131
- "tooltip",
2132
- "tree",
2133
- "treegrid",
2134
- "treeitem",
2135
- ]
2136
- ]
2137
- | None = None,
2138
- slot: Var[str] | str | None = None,
2139
- spell_check: Var[bool] | bool | None = None,
2140
- tab_index: Var[int] | int | None = None,
2141
- title: Var[str] | str | None = None,
2142
412
  style: Sequence[Mapping[str, Any]]
2143
413
  | Mapping[str, Any]
2144
414
  | Var[Mapping[str, Any]]
@@ -2171,22 +441,6 @@ class H3(BaseHTML):
2171
441
 
2172
442
  Args:
2173
443
  *children: The children of the component.
2174
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2175
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2176
- content_editable: Indicates whether the element's content is editable.
2177
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2178
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2179
- draggable: Defines whether the element can be dragged.
2180
- enter_key_hint: Hints what media types the media element is able to play.
2181
- hidden: Defines whether the element is hidden.
2182
- input_mode: Defines the type of the element.
2183
- item_prop: Defines the name of the element for metadata purposes.
2184
- lang: Defines the language used in the element.
2185
- role: Defines the role of the element.
2186
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2187
- spell_check: Defines whether the element may be checked for spelling errors.
2188
- tab_index: Defines the position of the current element in the tabbing order.
2189
- title: Defines a tooltip for the element.
2190
444
  style: The style of the component.
2191
445
  key: A unique key for the component.
2192
446
  id: The id for the component.
@@ -2204,184 +458,6 @@ class H4(BaseHTML):
2204
458
  def create(
2205
459
  cls,
2206
460
  *children,
2207
- access_key: Var[str] | str | None = None,
2208
- auto_capitalize: Literal[
2209
- "characters", "none", "off", "on", "sentences", "words"
2210
- ]
2211
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2212
- | None = None,
2213
- content_editable: Literal["inherit", "plaintext-only", False, True]
2214
- | Var[Literal["inherit", "plaintext-only", False, True]]
2215
- | None = None,
2216
- context_menu: Var[str] | str | None = None,
2217
- dir: Var[str] | str | None = None,
2218
- draggable: Var[bool] | bool | None = None,
2219
- enter_key_hint: Literal[
2220
- "done", "enter", "go", "next", "previous", "search", "send"
2221
- ]
2222
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2223
- | None = None,
2224
- hidden: Var[bool] | bool | None = None,
2225
- input_mode: Literal[
2226
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2227
- ]
2228
- | Var[
2229
- Literal[
2230
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2231
- ]
2232
- ]
2233
- | None = None,
2234
- item_prop: Var[str] | str | None = None,
2235
- lang: Var[str] | str | None = None,
2236
- role: Literal[
2237
- "alert",
2238
- "alertdialog",
2239
- "application",
2240
- "article",
2241
- "banner",
2242
- "button",
2243
- "cell",
2244
- "checkbox",
2245
- "columnheader",
2246
- "combobox",
2247
- "complementary",
2248
- "contentinfo",
2249
- "definition",
2250
- "dialog",
2251
- "directory",
2252
- "document",
2253
- "feed",
2254
- "figure",
2255
- "form",
2256
- "grid",
2257
- "gridcell",
2258
- "group",
2259
- "heading",
2260
- "img",
2261
- "link",
2262
- "list",
2263
- "listbox",
2264
- "listitem",
2265
- "log",
2266
- "main",
2267
- "marquee",
2268
- "math",
2269
- "menu",
2270
- "menubar",
2271
- "menuitem",
2272
- "menuitemcheckbox",
2273
- "menuitemradio",
2274
- "navigation",
2275
- "none",
2276
- "note",
2277
- "option",
2278
- "presentation",
2279
- "progressbar",
2280
- "radio",
2281
- "radiogroup",
2282
- "region",
2283
- "row",
2284
- "rowgroup",
2285
- "rowheader",
2286
- "scrollbar",
2287
- "search",
2288
- "searchbox",
2289
- "separator",
2290
- "slider",
2291
- "spinbutton",
2292
- "status",
2293
- "switch",
2294
- "tab",
2295
- "table",
2296
- "tablist",
2297
- "tabpanel",
2298
- "term",
2299
- "textbox",
2300
- "timer",
2301
- "toolbar",
2302
- "tooltip",
2303
- "tree",
2304
- "treegrid",
2305
- "treeitem",
2306
- ]
2307
- | Var[
2308
- Literal[
2309
- "alert",
2310
- "alertdialog",
2311
- "application",
2312
- "article",
2313
- "banner",
2314
- "button",
2315
- "cell",
2316
- "checkbox",
2317
- "columnheader",
2318
- "combobox",
2319
- "complementary",
2320
- "contentinfo",
2321
- "definition",
2322
- "dialog",
2323
- "directory",
2324
- "document",
2325
- "feed",
2326
- "figure",
2327
- "form",
2328
- "grid",
2329
- "gridcell",
2330
- "group",
2331
- "heading",
2332
- "img",
2333
- "link",
2334
- "list",
2335
- "listbox",
2336
- "listitem",
2337
- "log",
2338
- "main",
2339
- "marquee",
2340
- "math",
2341
- "menu",
2342
- "menubar",
2343
- "menuitem",
2344
- "menuitemcheckbox",
2345
- "menuitemradio",
2346
- "navigation",
2347
- "none",
2348
- "note",
2349
- "option",
2350
- "presentation",
2351
- "progressbar",
2352
- "radio",
2353
- "radiogroup",
2354
- "region",
2355
- "row",
2356
- "rowgroup",
2357
- "rowheader",
2358
- "scrollbar",
2359
- "search",
2360
- "searchbox",
2361
- "separator",
2362
- "slider",
2363
- "spinbutton",
2364
- "status",
2365
- "switch",
2366
- "tab",
2367
- "table",
2368
- "tablist",
2369
- "tabpanel",
2370
- "term",
2371
- "textbox",
2372
- "timer",
2373
- "toolbar",
2374
- "tooltip",
2375
- "tree",
2376
- "treegrid",
2377
- "treeitem",
2378
- ]
2379
- ]
2380
- | None = None,
2381
- slot: Var[str] | str | None = None,
2382
- spell_check: Var[bool] | bool | None = None,
2383
- tab_index: Var[int] | int | None = None,
2384
- title: Var[str] | str | None = None,
2385
461
  style: Sequence[Mapping[str, Any]]
2386
462
  | Mapping[str, Any]
2387
463
  | Var[Mapping[str, Any]]
@@ -2414,22 +490,6 @@ class H4(BaseHTML):
2414
490
 
2415
491
  Args:
2416
492
  *children: The children of the component.
2417
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2418
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2419
- content_editable: Indicates whether the element's content is editable.
2420
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2421
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2422
- draggable: Defines whether the element can be dragged.
2423
- enter_key_hint: Hints what media types the media element is able to play.
2424
- hidden: Defines whether the element is hidden.
2425
- input_mode: Defines the type of the element.
2426
- item_prop: Defines the name of the element for metadata purposes.
2427
- lang: Defines the language used in the element.
2428
- role: Defines the role of the element.
2429
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2430
- spell_check: Defines whether the element may be checked for spelling errors.
2431
- tab_index: Defines the position of the current element in the tabbing order.
2432
- title: Defines a tooltip for the element.
2433
493
  style: The style of the component.
2434
494
  key: A unique key for the component.
2435
495
  id: The id for the component.
@@ -2447,184 +507,6 @@ class H5(BaseHTML):
2447
507
  def create(
2448
508
  cls,
2449
509
  *children,
2450
- access_key: Var[str] | str | None = None,
2451
- auto_capitalize: Literal[
2452
- "characters", "none", "off", "on", "sentences", "words"
2453
- ]
2454
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2455
- | None = None,
2456
- content_editable: Literal["inherit", "plaintext-only", False, True]
2457
- | Var[Literal["inherit", "plaintext-only", False, True]]
2458
- | None = None,
2459
- context_menu: Var[str] | str | None = None,
2460
- dir: Var[str] | str | None = None,
2461
- draggable: Var[bool] | bool | None = None,
2462
- enter_key_hint: Literal[
2463
- "done", "enter", "go", "next", "previous", "search", "send"
2464
- ]
2465
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2466
- | None = None,
2467
- hidden: Var[bool] | bool | None = None,
2468
- input_mode: Literal[
2469
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2470
- ]
2471
- | Var[
2472
- Literal[
2473
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2474
- ]
2475
- ]
2476
- | None = None,
2477
- item_prop: Var[str] | str | None = None,
2478
- lang: Var[str] | str | None = None,
2479
- role: Literal[
2480
- "alert",
2481
- "alertdialog",
2482
- "application",
2483
- "article",
2484
- "banner",
2485
- "button",
2486
- "cell",
2487
- "checkbox",
2488
- "columnheader",
2489
- "combobox",
2490
- "complementary",
2491
- "contentinfo",
2492
- "definition",
2493
- "dialog",
2494
- "directory",
2495
- "document",
2496
- "feed",
2497
- "figure",
2498
- "form",
2499
- "grid",
2500
- "gridcell",
2501
- "group",
2502
- "heading",
2503
- "img",
2504
- "link",
2505
- "list",
2506
- "listbox",
2507
- "listitem",
2508
- "log",
2509
- "main",
2510
- "marquee",
2511
- "math",
2512
- "menu",
2513
- "menubar",
2514
- "menuitem",
2515
- "menuitemcheckbox",
2516
- "menuitemradio",
2517
- "navigation",
2518
- "none",
2519
- "note",
2520
- "option",
2521
- "presentation",
2522
- "progressbar",
2523
- "radio",
2524
- "radiogroup",
2525
- "region",
2526
- "row",
2527
- "rowgroup",
2528
- "rowheader",
2529
- "scrollbar",
2530
- "search",
2531
- "searchbox",
2532
- "separator",
2533
- "slider",
2534
- "spinbutton",
2535
- "status",
2536
- "switch",
2537
- "tab",
2538
- "table",
2539
- "tablist",
2540
- "tabpanel",
2541
- "term",
2542
- "textbox",
2543
- "timer",
2544
- "toolbar",
2545
- "tooltip",
2546
- "tree",
2547
- "treegrid",
2548
- "treeitem",
2549
- ]
2550
- | Var[
2551
- Literal[
2552
- "alert",
2553
- "alertdialog",
2554
- "application",
2555
- "article",
2556
- "banner",
2557
- "button",
2558
- "cell",
2559
- "checkbox",
2560
- "columnheader",
2561
- "combobox",
2562
- "complementary",
2563
- "contentinfo",
2564
- "definition",
2565
- "dialog",
2566
- "directory",
2567
- "document",
2568
- "feed",
2569
- "figure",
2570
- "form",
2571
- "grid",
2572
- "gridcell",
2573
- "group",
2574
- "heading",
2575
- "img",
2576
- "link",
2577
- "list",
2578
- "listbox",
2579
- "listitem",
2580
- "log",
2581
- "main",
2582
- "marquee",
2583
- "math",
2584
- "menu",
2585
- "menubar",
2586
- "menuitem",
2587
- "menuitemcheckbox",
2588
- "menuitemradio",
2589
- "navigation",
2590
- "none",
2591
- "note",
2592
- "option",
2593
- "presentation",
2594
- "progressbar",
2595
- "radio",
2596
- "radiogroup",
2597
- "region",
2598
- "row",
2599
- "rowgroup",
2600
- "rowheader",
2601
- "scrollbar",
2602
- "search",
2603
- "searchbox",
2604
- "separator",
2605
- "slider",
2606
- "spinbutton",
2607
- "status",
2608
- "switch",
2609
- "tab",
2610
- "table",
2611
- "tablist",
2612
- "tabpanel",
2613
- "term",
2614
- "textbox",
2615
- "timer",
2616
- "toolbar",
2617
- "tooltip",
2618
- "tree",
2619
- "treegrid",
2620
- "treeitem",
2621
- ]
2622
- ]
2623
- | None = None,
2624
- slot: Var[str] | str | None = None,
2625
- spell_check: Var[bool] | bool | None = None,
2626
- tab_index: Var[int] | int | None = None,
2627
- title: Var[str] | str | None = None,
2628
510
  style: Sequence[Mapping[str, Any]]
2629
511
  | Mapping[str, Any]
2630
512
  | Var[Mapping[str, Any]]
@@ -2657,22 +539,6 @@ class H5(BaseHTML):
2657
539
 
2658
540
  Args:
2659
541
  *children: The children of the component.
2660
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2661
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2662
- content_editable: Indicates whether the element's content is editable.
2663
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2664
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2665
- draggable: Defines whether the element can be dragged.
2666
- enter_key_hint: Hints what media types the media element is able to play.
2667
- hidden: Defines whether the element is hidden.
2668
- input_mode: Defines the type of the element.
2669
- item_prop: Defines the name of the element for metadata purposes.
2670
- lang: Defines the language used in the element.
2671
- role: Defines the role of the element.
2672
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2673
- spell_check: Defines whether the element may be checked for spelling errors.
2674
- tab_index: Defines the position of the current element in the tabbing order.
2675
- title: Defines a tooltip for the element.
2676
542
  style: The style of the component.
2677
543
  key: A unique key for the component.
2678
544
  id: The id for the component.
@@ -2690,184 +556,6 @@ class H6(BaseHTML):
2690
556
  def create(
2691
557
  cls,
2692
558
  *children,
2693
- access_key: Var[str] | str | None = None,
2694
- auto_capitalize: Literal[
2695
- "characters", "none", "off", "on", "sentences", "words"
2696
- ]
2697
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2698
- | None = None,
2699
- content_editable: Literal["inherit", "plaintext-only", False, True]
2700
- | Var[Literal["inherit", "plaintext-only", False, True]]
2701
- | None = None,
2702
- context_menu: Var[str] | str | None = None,
2703
- dir: Var[str] | str | None = None,
2704
- draggable: Var[bool] | bool | None = None,
2705
- enter_key_hint: Literal[
2706
- "done", "enter", "go", "next", "previous", "search", "send"
2707
- ]
2708
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2709
- | None = None,
2710
- hidden: Var[bool] | bool | None = None,
2711
- input_mode: Literal[
2712
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2713
- ]
2714
- | Var[
2715
- Literal[
2716
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2717
- ]
2718
- ]
2719
- | None = None,
2720
- item_prop: Var[str] | str | None = None,
2721
- lang: Var[str] | str | None = None,
2722
- role: Literal[
2723
- "alert",
2724
- "alertdialog",
2725
- "application",
2726
- "article",
2727
- "banner",
2728
- "button",
2729
- "cell",
2730
- "checkbox",
2731
- "columnheader",
2732
- "combobox",
2733
- "complementary",
2734
- "contentinfo",
2735
- "definition",
2736
- "dialog",
2737
- "directory",
2738
- "document",
2739
- "feed",
2740
- "figure",
2741
- "form",
2742
- "grid",
2743
- "gridcell",
2744
- "group",
2745
- "heading",
2746
- "img",
2747
- "link",
2748
- "list",
2749
- "listbox",
2750
- "listitem",
2751
- "log",
2752
- "main",
2753
- "marquee",
2754
- "math",
2755
- "menu",
2756
- "menubar",
2757
- "menuitem",
2758
- "menuitemcheckbox",
2759
- "menuitemradio",
2760
- "navigation",
2761
- "none",
2762
- "note",
2763
- "option",
2764
- "presentation",
2765
- "progressbar",
2766
- "radio",
2767
- "radiogroup",
2768
- "region",
2769
- "row",
2770
- "rowgroup",
2771
- "rowheader",
2772
- "scrollbar",
2773
- "search",
2774
- "searchbox",
2775
- "separator",
2776
- "slider",
2777
- "spinbutton",
2778
- "status",
2779
- "switch",
2780
- "tab",
2781
- "table",
2782
- "tablist",
2783
- "tabpanel",
2784
- "term",
2785
- "textbox",
2786
- "timer",
2787
- "toolbar",
2788
- "tooltip",
2789
- "tree",
2790
- "treegrid",
2791
- "treeitem",
2792
- ]
2793
- | Var[
2794
- Literal[
2795
- "alert",
2796
- "alertdialog",
2797
- "application",
2798
- "article",
2799
- "banner",
2800
- "button",
2801
- "cell",
2802
- "checkbox",
2803
- "columnheader",
2804
- "combobox",
2805
- "complementary",
2806
- "contentinfo",
2807
- "definition",
2808
- "dialog",
2809
- "directory",
2810
- "document",
2811
- "feed",
2812
- "figure",
2813
- "form",
2814
- "grid",
2815
- "gridcell",
2816
- "group",
2817
- "heading",
2818
- "img",
2819
- "link",
2820
- "list",
2821
- "listbox",
2822
- "listitem",
2823
- "log",
2824
- "main",
2825
- "marquee",
2826
- "math",
2827
- "menu",
2828
- "menubar",
2829
- "menuitem",
2830
- "menuitemcheckbox",
2831
- "menuitemradio",
2832
- "navigation",
2833
- "none",
2834
- "note",
2835
- "option",
2836
- "presentation",
2837
- "progressbar",
2838
- "radio",
2839
- "radiogroup",
2840
- "region",
2841
- "row",
2842
- "rowgroup",
2843
- "rowheader",
2844
- "scrollbar",
2845
- "search",
2846
- "searchbox",
2847
- "separator",
2848
- "slider",
2849
- "spinbutton",
2850
- "status",
2851
- "switch",
2852
- "tab",
2853
- "table",
2854
- "tablist",
2855
- "tabpanel",
2856
- "term",
2857
- "textbox",
2858
- "timer",
2859
- "toolbar",
2860
- "tooltip",
2861
- "tree",
2862
- "treegrid",
2863
- "treeitem",
2864
- ]
2865
- ]
2866
- | None = None,
2867
- slot: Var[str] | str | None = None,
2868
- spell_check: Var[bool] | bool | None = None,
2869
- tab_index: Var[int] | int | None = None,
2870
- title: Var[str] | str | None = None,
2871
559
  style: Sequence[Mapping[str, Any]]
2872
560
  | Mapping[str, Any]
2873
561
  | Var[Mapping[str, Any]]
@@ -2900,22 +588,6 @@ class H6(BaseHTML):
2900
588
 
2901
589
  Args:
2902
590
  *children: The children of the component.
2903
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2904
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2905
- content_editable: Indicates whether the element's content is editable.
2906
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2907
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2908
- draggable: Defines whether the element can be dragged.
2909
- enter_key_hint: Hints what media types the media element is able to play.
2910
- hidden: Defines whether the element is hidden.
2911
- input_mode: Defines the type of the element.
2912
- item_prop: Defines the name of the element for metadata purposes.
2913
- lang: Defines the language used in the element.
2914
- role: Defines the role of the element.
2915
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2916
- spell_check: Defines whether the element may be checked for spelling errors.
2917
- tab_index: Defines the position of the current element in the tabbing order.
2918
- title: Defines a tooltip for the element.
2919
591
  style: The style of the component.
2920
592
  key: A unique key for the component.
2921
593
  id: The id for the component.
@@ -2933,184 +605,6 @@ class Main(BaseHTML):
2933
605
  def create(
2934
606
  cls,
2935
607
  *children,
2936
- access_key: Var[str] | str | None = None,
2937
- auto_capitalize: Literal[
2938
- "characters", "none", "off", "on", "sentences", "words"
2939
- ]
2940
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2941
- | None = None,
2942
- content_editable: Literal["inherit", "plaintext-only", False, True]
2943
- | Var[Literal["inherit", "plaintext-only", False, True]]
2944
- | None = None,
2945
- context_menu: Var[str] | str | None = None,
2946
- dir: Var[str] | str | None = None,
2947
- draggable: Var[bool] | bool | None = None,
2948
- enter_key_hint: Literal[
2949
- "done", "enter", "go", "next", "previous", "search", "send"
2950
- ]
2951
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2952
- | None = None,
2953
- hidden: Var[bool] | bool | None = None,
2954
- input_mode: Literal[
2955
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2956
- ]
2957
- | Var[
2958
- Literal[
2959
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2960
- ]
2961
- ]
2962
- | None = None,
2963
- item_prop: Var[str] | str | None = None,
2964
- lang: Var[str] | str | None = None,
2965
- role: Literal[
2966
- "alert",
2967
- "alertdialog",
2968
- "application",
2969
- "article",
2970
- "banner",
2971
- "button",
2972
- "cell",
2973
- "checkbox",
2974
- "columnheader",
2975
- "combobox",
2976
- "complementary",
2977
- "contentinfo",
2978
- "definition",
2979
- "dialog",
2980
- "directory",
2981
- "document",
2982
- "feed",
2983
- "figure",
2984
- "form",
2985
- "grid",
2986
- "gridcell",
2987
- "group",
2988
- "heading",
2989
- "img",
2990
- "link",
2991
- "list",
2992
- "listbox",
2993
- "listitem",
2994
- "log",
2995
- "main",
2996
- "marquee",
2997
- "math",
2998
- "menu",
2999
- "menubar",
3000
- "menuitem",
3001
- "menuitemcheckbox",
3002
- "menuitemradio",
3003
- "navigation",
3004
- "none",
3005
- "note",
3006
- "option",
3007
- "presentation",
3008
- "progressbar",
3009
- "radio",
3010
- "radiogroup",
3011
- "region",
3012
- "row",
3013
- "rowgroup",
3014
- "rowheader",
3015
- "scrollbar",
3016
- "search",
3017
- "searchbox",
3018
- "separator",
3019
- "slider",
3020
- "spinbutton",
3021
- "status",
3022
- "switch",
3023
- "tab",
3024
- "table",
3025
- "tablist",
3026
- "tabpanel",
3027
- "term",
3028
- "textbox",
3029
- "timer",
3030
- "toolbar",
3031
- "tooltip",
3032
- "tree",
3033
- "treegrid",
3034
- "treeitem",
3035
- ]
3036
- | Var[
3037
- Literal[
3038
- "alert",
3039
- "alertdialog",
3040
- "application",
3041
- "article",
3042
- "banner",
3043
- "button",
3044
- "cell",
3045
- "checkbox",
3046
- "columnheader",
3047
- "combobox",
3048
- "complementary",
3049
- "contentinfo",
3050
- "definition",
3051
- "dialog",
3052
- "directory",
3053
- "document",
3054
- "feed",
3055
- "figure",
3056
- "form",
3057
- "grid",
3058
- "gridcell",
3059
- "group",
3060
- "heading",
3061
- "img",
3062
- "link",
3063
- "list",
3064
- "listbox",
3065
- "listitem",
3066
- "log",
3067
- "main",
3068
- "marquee",
3069
- "math",
3070
- "menu",
3071
- "menubar",
3072
- "menuitem",
3073
- "menuitemcheckbox",
3074
- "menuitemradio",
3075
- "navigation",
3076
- "none",
3077
- "note",
3078
- "option",
3079
- "presentation",
3080
- "progressbar",
3081
- "radio",
3082
- "radiogroup",
3083
- "region",
3084
- "row",
3085
- "rowgroup",
3086
- "rowheader",
3087
- "scrollbar",
3088
- "search",
3089
- "searchbox",
3090
- "separator",
3091
- "slider",
3092
- "spinbutton",
3093
- "status",
3094
- "switch",
3095
- "tab",
3096
- "table",
3097
- "tablist",
3098
- "tabpanel",
3099
- "term",
3100
- "textbox",
3101
- "timer",
3102
- "toolbar",
3103
- "tooltip",
3104
- "tree",
3105
- "treegrid",
3106
- "treeitem",
3107
- ]
3108
- ]
3109
- | None = None,
3110
- slot: Var[str] | str | None = None,
3111
- spell_check: Var[bool] | bool | None = None,
3112
- tab_index: Var[int] | int | None = None,
3113
- title: Var[str] | str | None = None,
3114
608
  style: Sequence[Mapping[str, Any]]
3115
609
  | Mapping[str, Any]
3116
610
  | Var[Mapping[str, Any]]
@@ -3143,22 +637,6 @@ class Main(BaseHTML):
3143
637
 
3144
638
  Args:
3145
639
  *children: The children of the component.
3146
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
3147
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
3148
- content_editable: Indicates whether the element's content is editable.
3149
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
3150
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
3151
- draggable: Defines whether the element can be dragged.
3152
- enter_key_hint: Hints what media types the media element is able to play.
3153
- hidden: Defines whether the element is hidden.
3154
- input_mode: Defines the type of the element.
3155
- item_prop: Defines the name of the element for metadata purposes.
3156
- lang: Defines the language used in the element.
3157
- role: Defines the role of the element.
3158
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
3159
- spell_check: Defines whether the element may be checked for spelling errors.
3160
- tab_index: Defines the position of the current element in the tabbing order.
3161
- title: Defines a tooltip for the element.
3162
640
  style: The style of the component.
3163
641
  key: A unique key for the component.
3164
642
  id: The id for the component.
@@ -3176,184 +654,6 @@ class Nav(BaseHTML):
3176
654
  def create(
3177
655
  cls,
3178
656
  *children,
3179
- access_key: Var[str] | str | None = None,
3180
- auto_capitalize: Literal[
3181
- "characters", "none", "off", "on", "sentences", "words"
3182
- ]
3183
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
3184
- | None = None,
3185
- content_editable: Literal["inherit", "plaintext-only", False, True]
3186
- | Var[Literal["inherit", "plaintext-only", False, True]]
3187
- | None = None,
3188
- context_menu: Var[str] | str | None = None,
3189
- dir: Var[str] | str | None = None,
3190
- draggable: Var[bool] | bool | None = None,
3191
- enter_key_hint: Literal[
3192
- "done", "enter", "go", "next", "previous", "search", "send"
3193
- ]
3194
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
3195
- | None = None,
3196
- hidden: Var[bool] | bool | None = None,
3197
- input_mode: Literal[
3198
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3199
- ]
3200
- | Var[
3201
- Literal[
3202
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3203
- ]
3204
- ]
3205
- | None = None,
3206
- item_prop: Var[str] | str | None = None,
3207
- lang: Var[str] | str | None = None,
3208
- role: Literal[
3209
- "alert",
3210
- "alertdialog",
3211
- "application",
3212
- "article",
3213
- "banner",
3214
- "button",
3215
- "cell",
3216
- "checkbox",
3217
- "columnheader",
3218
- "combobox",
3219
- "complementary",
3220
- "contentinfo",
3221
- "definition",
3222
- "dialog",
3223
- "directory",
3224
- "document",
3225
- "feed",
3226
- "figure",
3227
- "form",
3228
- "grid",
3229
- "gridcell",
3230
- "group",
3231
- "heading",
3232
- "img",
3233
- "link",
3234
- "list",
3235
- "listbox",
3236
- "listitem",
3237
- "log",
3238
- "main",
3239
- "marquee",
3240
- "math",
3241
- "menu",
3242
- "menubar",
3243
- "menuitem",
3244
- "menuitemcheckbox",
3245
- "menuitemradio",
3246
- "navigation",
3247
- "none",
3248
- "note",
3249
- "option",
3250
- "presentation",
3251
- "progressbar",
3252
- "radio",
3253
- "radiogroup",
3254
- "region",
3255
- "row",
3256
- "rowgroup",
3257
- "rowheader",
3258
- "scrollbar",
3259
- "search",
3260
- "searchbox",
3261
- "separator",
3262
- "slider",
3263
- "spinbutton",
3264
- "status",
3265
- "switch",
3266
- "tab",
3267
- "table",
3268
- "tablist",
3269
- "tabpanel",
3270
- "term",
3271
- "textbox",
3272
- "timer",
3273
- "toolbar",
3274
- "tooltip",
3275
- "tree",
3276
- "treegrid",
3277
- "treeitem",
3278
- ]
3279
- | Var[
3280
- Literal[
3281
- "alert",
3282
- "alertdialog",
3283
- "application",
3284
- "article",
3285
- "banner",
3286
- "button",
3287
- "cell",
3288
- "checkbox",
3289
- "columnheader",
3290
- "combobox",
3291
- "complementary",
3292
- "contentinfo",
3293
- "definition",
3294
- "dialog",
3295
- "directory",
3296
- "document",
3297
- "feed",
3298
- "figure",
3299
- "form",
3300
- "grid",
3301
- "gridcell",
3302
- "group",
3303
- "heading",
3304
- "img",
3305
- "link",
3306
- "list",
3307
- "listbox",
3308
- "listitem",
3309
- "log",
3310
- "main",
3311
- "marquee",
3312
- "math",
3313
- "menu",
3314
- "menubar",
3315
- "menuitem",
3316
- "menuitemcheckbox",
3317
- "menuitemradio",
3318
- "navigation",
3319
- "none",
3320
- "note",
3321
- "option",
3322
- "presentation",
3323
- "progressbar",
3324
- "radio",
3325
- "radiogroup",
3326
- "region",
3327
- "row",
3328
- "rowgroup",
3329
- "rowheader",
3330
- "scrollbar",
3331
- "search",
3332
- "searchbox",
3333
- "separator",
3334
- "slider",
3335
- "spinbutton",
3336
- "status",
3337
- "switch",
3338
- "tab",
3339
- "table",
3340
- "tablist",
3341
- "tabpanel",
3342
- "term",
3343
- "textbox",
3344
- "timer",
3345
- "toolbar",
3346
- "tooltip",
3347
- "tree",
3348
- "treegrid",
3349
- "treeitem",
3350
- ]
3351
- ]
3352
- | None = None,
3353
- slot: Var[str] | str | None = None,
3354
- spell_check: Var[bool] | bool | None = None,
3355
- tab_index: Var[int] | int | None = None,
3356
- title: Var[str] | str | None = None,
3357
657
  style: Sequence[Mapping[str, Any]]
3358
658
  | Mapping[str, Any]
3359
659
  | Var[Mapping[str, Any]]
@@ -3386,22 +686,6 @@ class Nav(BaseHTML):
3386
686
 
3387
687
  Args:
3388
688
  *children: The children of the component.
3389
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
3390
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
3391
- content_editable: Indicates whether the element's content is editable.
3392
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
3393
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
3394
- draggable: Defines whether the element can be dragged.
3395
- enter_key_hint: Hints what media types the media element is able to play.
3396
- hidden: Defines whether the element is hidden.
3397
- input_mode: Defines the type of the element.
3398
- item_prop: Defines the name of the element for metadata purposes.
3399
- lang: Defines the language used in the element.
3400
- role: Defines the role of the element.
3401
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
3402
- spell_check: Defines whether the element may be checked for spelling errors.
3403
- tab_index: Defines the position of the current element in the tabbing order.
3404
- title: Defines a tooltip for the element.
3405
689
  style: The style of the component.
3406
690
  key: A unique key for the component.
3407
691
  id: The id for the component.
@@ -3419,184 +703,6 @@ class Section(BaseHTML):
3419
703
  def create(
3420
704
  cls,
3421
705
  *children,
3422
- access_key: Var[str] | str | None = None,
3423
- auto_capitalize: Literal[
3424
- "characters", "none", "off", "on", "sentences", "words"
3425
- ]
3426
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
3427
- | None = None,
3428
- content_editable: Literal["inherit", "plaintext-only", False, True]
3429
- | Var[Literal["inherit", "plaintext-only", False, True]]
3430
- | None = None,
3431
- context_menu: Var[str] | str | None = None,
3432
- dir: Var[str] | str | None = None,
3433
- draggable: Var[bool] | bool | None = None,
3434
- enter_key_hint: Literal[
3435
- "done", "enter", "go", "next", "previous", "search", "send"
3436
- ]
3437
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
3438
- | None = None,
3439
- hidden: Var[bool] | bool | None = None,
3440
- input_mode: Literal[
3441
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3442
- ]
3443
- | Var[
3444
- Literal[
3445
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3446
- ]
3447
- ]
3448
- | None = None,
3449
- item_prop: Var[str] | str | None = None,
3450
- lang: Var[str] | str | None = None,
3451
- role: Literal[
3452
- "alert",
3453
- "alertdialog",
3454
- "application",
3455
- "article",
3456
- "banner",
3457
- "button",
3458
- "cell",
3459
- "checkbox",
3460
- "columnheader",
3461
- "combobox",
3462
- "complementary",
3463
- "contentinfo",
3464
- "definition",
3465
- "dialog",
3466
- "directory",
3467
- "document",
3468
- "feed",
3469
- "figure",
3470
- "form",
3471
- "grid",
3472
- "gridcell",
3473
- "group",
3474
- "heading",
3475
- "img",
3476
- "link",
3477
- "list",
3478
- "listbox",
3479
- "listitem",
3480
- "log",
3481
- "main",
3482
- "marquee",
3483
- "math",
3484
- "menu",
3485
- "menubar",
3486
- "menuitem",
3487
- "menuitemcheckbox",
3488
- "menuitemradio",
3489
- "navigation",
3490
- "none",
3491
- "note",
3492
- "option",
3493
- "presentation",
3494
- "progressbar",
3495
- "radio",
3496
- "radiogroup",
3497
- "region",
3498
- "row",
3499
- "rowgroup",
3500
- "rowheader",
3501
- "scrollbar",
3502
- "search",
3503
- "searchbox",
3504
- "separator",
3505
- "slider",
3506
- "spinbutton",
3507
- "status",
3508
- "switch",
3509
- "tab",
3510
- "table",
3511
- "tablist",
3512
- "tabpanel",
3513
- "term",
3514
- "textbox",
3515
- "timer",
3516
- "toolbar",
3517
- "tooltip",
3518
- "tree",
3519
- "treegrid",
3520
- "treeitem",
3521
- ]
3522
- | Var[
3523
- Literal[
3524
- "alert",
3525
- "alertdialog",
3526
- "application",
3527
- "article",
3528
- "banner",
3529
- "button",
3530
- "cell",
3531
- "checkbox",
3532
- "columnheader",
3533
- "combobox",
3534
- "complementary",
3535
- "contentinfo",
3536
- "definition",
3537
- "dialog",
3538
- "directory",
3539
- "document",
3540
- "feed",
3541
- "figure",
3542
- "form",
3543
- "grid",
3544
- "gridcell",
3545
- "group",
3546
- "heading",
3547
- "img",
3548
- "link",
3549
- "list",
3550
- "listbox",
3551
- "listitem",
3552
- "log",
3553
- "main",
3554
- "marquee",
3555
- "math",
3556
- "menu",
3557
- "menubar",
3558
- "menuitem",
3559
- "menuitemcheckbox",
3560
- "menuitemradio",
3561
- "navigation",
3562
- "none",
3563
- "note",
3564
- "option",
3565
- "presentation",
3566
- "progressbar",
3567
- "radio",
3568
- "radiogroup",
3569
- "region",
3570
- "row",
3571
- "rowgroup",
3572
- "rowheader",
3573
- "scrollbar",
3574
- "search",
3575
- "searchbox",
3576
- "separator",
3577
- "slider",
3578
- "spinbutton",
3579
- "status",
3580
- "switch",
3581
- "tab",
3582
- "table",
3583
- "tablist",
3584
- "tabpanel",
3585
- "term",
3586
- "textbox",
3587
- "timer",
3588
- "toolbar",
3589
- "tooltip",
3590
- "tree",
3591
- "treegrid",
3592
- "treeitem",
3593
- ]
3594
- ]
3595
- | None = None,
3596
- slot: Var[str] | str | None = None,
3597
- spell_check: Var[bool] | bool | None = None,
3598
- tab_index: Var[int] | int | None = None,
3599
- title: Var[str] | str | None = None,
3600
706
  style: Sequence[Mapping[str, Any]]
3601
707
  | Mapping[str, Any]
3602
708
  | Var[Mapping[str, Any]]
@@ -3629,22 +735,6 @@ class Section(BaseHTML):
3629
735
 
3630
736
  Args:
3631
737
  *children: The children of the component.
3632
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
3633
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
3634
- content_editable: Indicates whether the element's content is editable.
3635
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
3636
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
3637
- draggable: Defines whether the element can be dragged.
3638
- enter_key_hint: Hints what media types the media element is able to play.
3639
- hidden: Defines whether the element is hidden.
3640
- input_mode: Defines the type of the element.
3641
- item_prop: Defines the name of the element for metadata purposes.
3642
- lang: Defines the language used in the element.
3643
- role: Defines the role of the element.
3644
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
3645
- spell_check: Defines whether the element may be checked for spelling errors.
3646
- tab_index: Defines the position of the current element in the tabbing order.
3647
- title: Defines a tooltip for the element.
3648
738
  style: The style of the component.
3649
739
  key: A unique key for the component.
3650
740
  id: The id for the component.