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 Caption(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 Caption(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,185 +66,6 @@ class Col(BaseHTML):
260
66
  def create(
261
67
  cls,
262
68
  *children,
263
- span: Var[int] | int | None = None,
264
- access_key: Var[str] | str | None = None,
265
- auto_capitalize: Literal[
266
- "characters", "none", "off", "on", "sentences", "words"
267
- ]
268
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
269
- | None = None,
270
- content_editable: Literal["inherit", "plaintext-only", False, True]
271
- | Var[Literal["inherit", "plaintext-only", False, True]]
272
- | None = None,
273
- context_menu: Var[str] | str | None = None,
274
- dir: Var[str] | str | None = None,
275
- draggable: Var[bool] | bool | None = None,
276
- enter_key_hint: Literal[
277
- "done", "enter", "go", "next", "previous", "search", "send"
278
- ]
279
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
280
- | None = None,
281
- hidden: Var[bool] | bool | None = None,
282
- input_mode: Literal[
283
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
284
- ]
285
- | Var[
286
- Literal[
287
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
288
- ]
289
- ]
290
- | None = None,
291
- item_prop: Var[str] | str | None = None,
292
- lang: Var[str] | str | None = None,
293
- role: Literal[
294
- "alert",
295
- "alertdialog",
296
- "application",
297
- "article",
298
- "banner",
299
- "button",
300
- "cell",
301
- "checkbox",
302
- "columnheader",
303
- "combobox",
304
- "complementary",
305
- "contentinfo",
306
- "definition",
307
- "dialog",
308
- "directory",
309
- "document",
310
- "feed",
311
- "figure",
312
- "form",
313
- "grid",
314
- "gridcell",
315
- "group",
316
- "heading",
317
- "img",
318
- "link",
319
- "list",
320
- "listbox",
321
- "listitem",
322
- "log",
323
- "main",
324
- "marquee",
325
- "math",
326
- "menu",
327
- "menubar",
328
- "menuitem",
329
- "menuitemcheckbox",
330
- "menuitemradio",
331
- "navigation",
332
- "none",
333
- "note",
334
- "option",
335
- "presentation",
336
- "progressbar",
337
- "radio",
338
- "radiogroup",
339
- "region",
340
- "row",
341
- "rowgroup",
342
- "rowheader",
343
- "scrollbar",
344
- "search",
345
- "searchbox",
346
- "separator",
347
- "slider",
348
- "spinbutton",
349
- "status",
350
- "switch",
351
- "tab",
352
- "table",
353
- "tablist",
354
- "tabpanel",
355
- "term",
356
- "textbox",
357
- "timer",
358
- "toolbar",
359
- "tooltip",
360
- "tree",
361
- "treegrid",
362
- "treeitem",
363
- ]
364
- | Var[
365
- Literal[
366
- "alert",
367
- "alertdialog",
368
- "application",
369
- "article",
370
- "banner",
371
- "button",
372
- "cell",
373
- "checkbox",
374
- "columnheader",
375
- "combobox",
376
- "complementary",
377
- "contentinfo",
378
- "definition",
379
- "dialog",
380
- "directory",
381
- "document",
382
- "feed",
383
- "figure",
384
- "form",
385
- "grid",
386
- "gridcell",
387
- "group",
388
- "heading",
389
- "img",
390
- "link",
391
- "list",
392
- "listbox",
393
- "listitem",
394
- "log",
395
- "main",
396
- "marquee",
397
- "math",
398
- "menu",
399
- "menubar",
400
- "menuitem",
401
- "menuitemcheckbox",
402
- "menuitemradio",
403
- "navigation",
404
- "none",
405
- "note",
406
- "option",
407
- "presentation",
408
- "progressbar",
409
- "radio",
410
- "radiogroup",
411
- "region",
412
- "row",
413
- "rowgroup",
414
- "rowheader",
415
- "scrollbar",
416
- "search",
417
- "searchbox",
418
- "separator",
419
- "slider",
420
- "spinbutton",
421
- "status",
422
- "switch",
423
- "tab",
424
- "table",
425
- "tablist",
426
- "tabpanel",
427
- "term",
428
- "textbox",
429
- "timer",
430
- "toolbar",
431
- "tooltip",
432
- "tree",
433
- "treegrid",
434
- "treeitem",
435
- ]
436
- ]
437
- | None = None,
438
- slot: Var[str] | str | None = None,
439
- spell_check: Var[bool] | bool | None = None,
440
- tab_index: Var[int] | int | None = None,
441
- title: Var[str] | str | None = None,
442
69
  style: Sequence[Mapping[str, Any]]
443
70
  | Mapping[str, Any]
444
71
  | Var[Mapping[str, Any]]
@@ -471,23 +98,6 @@ class Col(BaseHTML):
471
98
 
472
99
  Args:
473
100
  *children: The children of the component.
474
- span: Number of columns the col element spans
475
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
476
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
477
- content_editable: Indicates whether the element's content is editable.
478
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
479
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
480
- draggable: Defines whether the element can be dragged.
481
- enter_key_hint: Hints what media types the media element is able to play.
482
- hidden: Defines whether the element is hidden.
483
- input_mode: Defines the type of the element.
484
- item_prop: Defines the name of the element for metadata purposes.
485
- lang: Defines the language used in the element.
486
- role: Defines the role of the element.
487
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
488
- spell_check: Defines whether the element may be checked for spelling errors.
489
- tab_index: Defines the position of the current element in the tabbing order.
490
- title: Defines a tooltip for the element.
491
101
  style: The style of the component.
492
102
  key: A unique key for the component.
493
103
  id: The id for the component.
@@ -505,185 +115,6 @@ class Colgroup(BaseHTML):
505
115
  def create(
506
116
  cls,
507
117
  *children,
508
- span: Var[int] | int | None = None,
509
- access_key: Var[str] | str | None = None,
510
- auto_capitalize: Literal[
511
- "characters", "none", "off", "on", "sentences", "words"
512
- ]
513
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
514
- | None = None,
515
- content_editable: Literal["inherit", "plaintext-only", False, True]
516
- | Var[Literal["inherit", "plaintext-only", False, True]]
517
- | None = None,
518
- context_menu: Var[str] | str | None = None,
519
- dir: Var[str] | str | None = None,
520
- draggable: Var[bool] | bool | None = None,
521
- enter_key_hint: Literal[
522
- "done", "enter", "go", "next", "previous", "search", "send"
523
- ]
524
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
525
- | None = None,
526
- hidden: Var[bool] | bool | None = None,
527
- input_mode: Literal[
528
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
529
- ]
530
- | Var[
531
- Literal[
532
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
533
- ]
534
- ]
535
- | None = None,
536
- item_prop: Var[str] | str | None = None,
537
- lang: Var[str] | str | None = None,
538
- role: Literal[
539
- "alert",
540
- "alertdialog",
541
- "application",
542
- "article",
543
- "banner",
544
- "button",
545
- "cell",
546
- "checkbox",
547
- "columnheader",
548
- "combobox",
549
- "complementary",
550
- "contentinfo",
551
- "definition",
552
- "dialog",
553
- "directory",
554
- "document",
555
- "feed",
556
- "figure",
557
- "form",
558
- "grid",
559
- "gridcell",
560
- "group",
561
- "heading",
562
- "img",
563
- "link",
564
- "list",
565
- "listbox",
566
- "listitem",
567
- "log",
568
- "main",
569
- "marquee",
570
- "math",
571
- "menu",
572
- "menubar",
573
- "menuitem",
574
- "menuitemcheckbox",
575
- "menuitemradio",
576
- "navigation",
577
- "none",
578
- "note",
579
- "option",
580
- "presentation",
581
- "progressbar",
582
- "radio",
583
- "radiogroup",
584
- "region",
585
- "row",
586
- "rowgroup",
587
- "rowheader",
588
- "scrollbar",
589
- "search",
590
- "searchbox",
591
- "separator",
592
- "slider",
593
- "spinbutton",
594
- "status",
595
- "switch",
596
- "tab",
597
- "table",
598
- "tablist",
599
- "tabpanel",
600
- "term",
601
- "textbox",
602
- "timer",
603
- "toolbar",
604
- "tooltip",
605
- "tree",
606
- "treegrid",
607
- "treeitem",
608
- ]
609
- | Var[
610
- Literal[
611
- "alert",
612
- "alertdialog",
613
- "application",
614
- "article",
615
- "banner",
616
- "button",
617
- "cell",
618
- "checkbox",
619
- "columnheader",
620
- "combobox",
621
- "complementary",
622
- "contentinfo",
623
- "definition",
624
- "dialog",
625
- "directory",
626
- "document",
627
- "feed",
628
- "figure",
629
- "form",
630
- "grid",
631
- "gridcell",
632
- "group",
633
- "heading",
634
- "img",
635
- "link",
636
- "list",
637
- "listbox",
638
- "listitem",
639
- "log",
640
- "main",
641
- "marquee",
642
- "math",
643
- "menu",
644
- "menubar",
645
- "menuitem",
646
- "menuitemcheckbox",
647
- "menuitemradio",
648
- "navigation",
649
- "none",
650
- "note",
651
- "option",
652
- "presentation",
653
- "progressbar",
654
- "radio",
655
- "radiogroup",
656
- "region",
657
- "row",
658
- "rowgroup",
659
- "rowheader",
660
- "scrollbar",
661
- "search",
662
- "searchbox",
663
- "separator",
664
- "slider",
665
- "spinbutton",
666
- "status",
667
- "switch",
668
- "tab",
669
- "table",
670
- "tablist",
671
- "tabpanel",
672
- "term",
673
- "textbox",
674
- "timer",
675
- "toolbar",
676
- "tooltip",
677
- "tree",
678
- "treegrid",
679
- "treeitem",
680
- ]
681
- ]
682
- | None = None,
683
- slot: Var[str] | str | None = None,
684
- spell_check: Var[bool] | bool | None = None,
685
- tab_index: Var[int] | int | None = None,
686
- title: Var[str] | str | None = None,
687
118
  style: Sequence[Mapping[str, Any]]
688
119
  | Mapping[str, Any]
689
120
  | Var[Mapping[str, Any]]
@@ -716,23 +147,6 @@ class Colgroup(BaseHTML):
716
147
 
717
148
  Args:
718
149
  *children: The children of the component.
719
- span: Number of columns the colgroup element spans
720
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
721
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
722
- content_editable: Indicates whether the element's content is editable.
723
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
724
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
725
- draggable: Defines whether the element can be dragged.
726
- enter_key_hint: Hints what media types the media element is able to play.
727
- hidden: Defines whether the element is hidden.
728
- input_mode: Defines the type of the element.
729
- item_prop: Defines the name of the element for metadata purposes.
730
- lang: Defines the language used in the element.
731
- role: Defines the role of the element.
732
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
733
- spell_check: Defines whether the element may be checked for spelling errors.
734
- tab_index: Defines the position of the current element in the tabbing order.
735
- title: Defines a tooltip for the element.
736
150
  style: The style of the component.
737
151
  key: A unique key for the component.
738
152
  id: The id for the component.
@@ -750,188 +164,6 @@ class Table(BaseHTML):
750
164
  def create(
751
165
  cls,
752
166
  *children,
753
- align: Literal["center", "left", "right"]
754
- | Var[Literal["center", "left", "right"]]
755
- | None = None,
756
- summary: Var[str] | str | None = None,
757
- access_key: Var[str] | str | None = None,
758
- auto_capitalize: Literal[
759
- "characters", "none", "off", "on", "sentences", "words"
760
- ]
761
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
762
- | None = None,
763
- content_editable: Literal["inherit", "plaintext-only", False, True]
764
- | Var[Literal["inherit", "plaintext-only", False, True]]
765
- | None = None,
766
- context_menu: Var[str] | str | None = None,
767
- dir: Var[str] | str | None = None,
768
- draggable: Var[bool] | bool | None = None,
769
- enter_key_hint: Literal[
770
- "done", "enter", "go", "next", "previous", "search", "send"
771
- ]
772
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
773
- | None = None,
774
- hidden: Var[bool] | bool | None = None,
775
- input_mode: Literal[
776
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
777
- ]
778
- | Var[
779
- Literal[
780
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
781
- ]
782
- ]
783
- | None = None,
784
- item_prop: Var[str] | str | None = None,
785
- lang: Var[str] | str | None = None,
786
- role: Literal[
787
- "alert",
788
- "alertdialog",
789
- "application",
790
- "article",
791
- "banner",
792
- "button",
793
- "cell",
794
- "checkbox",
795
- "columnheader",
796
- "combobox",
797
- "complementary",
798
- "contentinfo",
799
- "definition",
800
- "dialog",
801
- "directory",
802
- "document",
803
- "feed",
804
- "figure",
805
- "form",
806
- "grid",
807
- "gridcell",
808
- "group",
809
- "heading",
810
- "img",
811
- "link",
812
- "list",
813
- "listbox",
814
- "listitem",
815
- "log",
816
- "main",
817
- "marquee",
818
- "math",
819
- "menu",
820
- "menubar",
821
- "menuitem",
822
- "menuitemcheckbox",
823
- "menuitemradio",
824
- "navigation",
825
- "none",
826
- "note",
827
- "option",
828
- "presentation",
829
- "progressbar",
830
- "radio",
831
- "radiogroup",
832
- "region",
833
- "row",
834
- "rowgroup",
835
- "rowheader",
836
- "scrollbar",
837
- "search",
838
- "searchbox",
839
- "separator",
840
- "slider",
841
- "spinbutton",
842
- "status",
843
- "switch",
844
- "tab",
845
- "table",
846
- "tablist",
847
- "tabpanel",
848
- "term",
849
- "textbox",
850
- "timer",
851
- "toolbar",
852
- "tooltip",
853
- "tree",
854
- "treegrid",
855
- "treeitem",
856
- ]
857
- | Var[
858
- Literal[
859
- "alert",
860
- "alertdialog",
861
- "application",
862
- "article",
863
- "banner",
864
- "button",
865
- "cell",
866
- "checkbox",
867
- "columnheader",
868
- "combobox",
869
- "complementary",
870
- "contentinfo",
871
- "definition",
872
- "dialog",
873
- "directory",
874
- "document",
875
- "feed",
876
- "figure",
877
- "form",
878
- "grid",
879
- "gridcell",
880
- "group",
881
- "heading",
882
- "img",
883
- "link",
884
- "list",
885
- "listbox",
886
- "listitem",
887
- "log",
888
- "main",
889
- "marquee",
890
- "math",
891
- "menu",
892
- "menubar",
893
- "menuitem",
894
- "menuitemcheckbox",
895
- "menuitemradio",
896
- "navigation",
897
- "none",
898
- "note",
899
- "option",
900
- "presentation",
901
- "progressbar",
902
- "radio",
903
- "radiogroup",
904
- "region",
905
- "row",
906
- "rowgroup",
907
- "rowheader",
908
- "scrollbar",
909
- "search",
910
- "searchbox",
911
- "separator",
912
- "slider",
913
- "spinbutton",
914
- "status",
915
- "switch",
916
- "tab",
917
- "table",
918
- "tablist",
919
- "tabpanel",
920
- "term",
921
- "textbox",
922
- "timer",
923
- "toolbar",
924
- "tooltip",
925
- "tree",
926
- "treegrid",
927
- "treeitem",
928
- ]
929
- ]
930
- | None = None,
931
- slot: Var[str] | str | None = None,
932
- spell_check: Var[bool] | bool | None = None,
933
- tab_index: Var[int] | int | None = None,
934
- title: Var[str] | str | None = None,
935
167
  style: Sequence[Mapping[str, Any]]
936
168
  | Mapping[str, Any]
937
169
  | Var[Mapping[str, Any]]
@@ -964,24 +196,6 @@ class Table(BaseHTML):
964
196
 
965
197
  Args:
966
198
  *children: The children of the component.
967
- align: Alignment of the table
968
- summary: Provides a summary of the table's purpose and structure
969
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
970
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
971
- content_editable: Indicates whether the element's content is editable.
972
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
973
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
974
- draggable: Defines whether the element can be dragged.
975
- enter_key_hint: Hints what media types the media element is able to play.
976
- hidden: Defines whether the element is hidden.
977
- input_mode: Defines the type of the element.
978
- item_prop: Defines the name of the element for metadata purposes.
979
- lang: Defines the language used in the element.
980
- role: Defines the role of the element.
981
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
982
- spell_check: Defines whether the element may be checked for spelling errors.
983
- tab_index: Defines the position of the current element in the tabbing order.
984
- title: Defines a tooltip for the element.
985
199
  style: The style of the component.
986
200
  key: A unique key for the component.
987
201
  id: The id for the component.
@@ -999,184 +213,6 @@ class Tbody(BaseHTML):
999
213
  def create(
1000
214
  cls,
1001
215
  *children,
1002
- access_key: Var[str] | str | None = None,
1003
- auto_capitalize: Literal[
1004
- "characters", "none", "off", "on", "sentences", "words"
1005
- ]
1006
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1007
- | None = None,
1008
- content_editable: Literal["inherit", "plaintext-only", False, True]
1009
- | Var[Literal["inherit", "plaintext-only", False, True]]
1010
- | None = None,
1011
- context_menu: Var[str] | str | None = None,
1012
- dir: Var[str] | str | None = None,
1013
- draggable: Var[bool] | bool | None = None,
1014
- enter_key_hint: Literal[
1015
- "done", "enter", "go", "next", "previous", "search", "send"
1016
- ]
1017
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1018
- | None = None,
1019
- hidden: Var[bool] | bool | None = None,
1020
- input_mode: Literal[
1021
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1022
- ]
1023
- | Var[
1024
- Literal[
1025
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1026
- ]
1027
- ]
1028
- | None = None,
1029
- item_prop: Var[str] | str | None = None,
1030
- lang: Var[str] | str | None = None,
1031
- role: Literal[
1032
- "alert",
1033
- "alertdialog",
1034
- "application",
1035
- "article",
1036
- "banner",
1037
- "button",
1038
- "cell",
1039
- "checkbox",
1040
- "columnheader",
1041
- "combobox",
1042
- "complementary",
1043
- "contentinfo",
1044
- "definition",
1045
- "dialog",
1046
- "directory",
1047
- "document",
1048
- "feed",
1049
- "figure",
1050
- "form",
1051
- "grid",
1052
- "gridcell",
1053
- "group",
1054
- "heading",
1055
- "img",
1056
- "link",
1057
- "list",
1058
- "listbox",
1059
- "listitem",
1060
- "log",
1061
- "main",
1062
- "marquee",
1063
- "math",
1064
- "menu",
1065
- "menubar",
1066
- "menuitem",
1067
- "menuitemcheckbox",
1068
- "menuitemradio",
1069
- "navigation",
1070
- "none",
1071
- "note",
1072
- "option",
1073
- "presentation",
1074
- "progressbar",
1075
- "radio",
1076
- "radiogroup",
1077
- "region",
1078
- "row",
1079
- "rowgroup",
1080
- "rowheader",
1081
- "scrollbar",
1082
- "search",
1083
- "searchbox",
1084
- "separator",
1085
- "slider",
1086
- "spinbutton",
1087
- "status",
1088
- "switch",
1089
- "tab",
1090
- "table",
1091
- "tablist",
1092
- "tabpanel",
1093
- "term",
1094
- "textbox",
1095
- "timer",
1096
- "toolbar",
1097
- "tooltip",
1098
- "tree",
1099
- "treegrid",
1100
- "treeitem",
1101
- ]
1102
- | Var[
1103
- Literal[
1104
- "alert",
1105
- "alertdialog",
1106
- "application",
1107
- "article",
1108
- "banner",
1109
- "button",
1110
- "cell",
1111
- "checkbox",
1112
- "columnheader",
1113
- "combobox",
1114
- "complementary",
1115
- "contentinfo",
1116
- "definition",
1117
- "dialog",
1118
- "directory",
1119
- "document",
1120
- "feed",
1121
- "figure",
1122
- "form",
1123
- "grid",
1124
- "gridcell",
1125
- "group",
1126
- "heading",
1127
- "img",
1128
- "link",
1129
- "list",
1130
- "listbox",
1131
- "listitem",
1132
- "log",
1133
- "main",
1134
- "marquee",
1135
- "math",
1136
- "menu",
1137
- "menubar",
1138
- "menuitem",
1139
- "menuitemcheckbox",
1140
- "menuitemradio",
1141
- "navigation",
1142
- "none",
1143
- "note",
1144
- "option",
1145
- "presentation",
1146
- "progressbar",
1147
- "radio",
1148
- "radiogroup",
1149
- "region",
1150
- "row",
1151
- "rowgroup",
1152
- "rowheader",
1153
- "scrollbar",
1154
- "search",
1155
- "searchbox",
1156
- "separator",
1157
- "slider",
1158
- "spinbutton",
1159
- "status",
1160
- "switch",
1161
- "tab",
1162
- "table",
1163
- "tablist",
1164
- "tabpanel",
1165
- "term",
1166
- "textbox",
1167
- "timer",
1168
- "toolbar",
1169
- "tooltip",
1170
- "tree",
1171
- "treegrid",
1172
- "treeitem",
1173
- ]
1174
- ]
1175
- | None = None,
1176
- slot: Var[str] | str | None = None,
1177
- spell_check: Var[bool] | bool | None = None,
1178
- tab_index: Var[int] | int | None = None,
1179
- title: Var[str] | str | None = None,
1180
216
  style: Sequence[Mapping[str, Any]]
1181
217
  | Mapping[str, Any]
1182
218
  | Var[Mapping[str, Any]]
@@ -1209,22 +245,6 @@ class Tbody(BaseHTML):
1209
245
 
1210
246
  Args:
1211
247
  *children: The children of the component.
1212
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1213
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1214
- content_editable: Indicates whether the element's content is editable.
1215
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1216
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1217
- draggable: Defines whether the element can be dragged.
1218
- enter_key_hint: Hints what media types the media element is able to play.
1219
- hidden: Defines whether the element is hidden.
1220
- input_mode: Defines the type of the element.
1221
- item_prop: Defines the name of the element for metadata purposes.
1222
- lang: Defines the language used in the element.
1223
- role: Defines the role of the element.
1224
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1225
- spell_check: Defines whether the element may be checked for spelling errors.
1226
- tab_index: Defines the position of the current element in the tabbing order.
1227
- title: Defines a tooltip for the element.
1228
248
  style: The style of the component.
1229
249
  key: A unique key for the component.
1230
250
  id: The id for the component.
@@ -1242,190 +262,6 @@ class Td(BaseHTML):
1242
262
  def create(
1243
263
  cls,
1244
264
  *children,
1245
- align: Literal["center", "char", "justify", "left", "right"]
1246
- | Var[Literal["center", "char", "justify", "left", "right"]]
1247
- | None = None,
1248
- col_span: Var[int] | int | None = None,
1249
- headers: Var[str] | str | None = None,
1250
- row_span: Var[int] | int | None = None,
1251
- access_key: Var[str] | str | None = None,
1252
- auto_capitalize: Literal[
1253
- "characters", "none", "off", "on", "sentences", "words"
1254
- ]
1255
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1256
- | None = None,
1257
- content_editable: Literal["inherit", "plaintext-only", False, True]
1258
- | Var[Literal["inherit", "plaintext-only", False, True]]
1259
- | None = None,
1260
- context_menu: Var[str] | str | None = None,
1261
- dir: Var[str] | str | None = None,
1262
- draggable: Var[bool] | bool | None = None,
1263
- enter_key_hint: Literal[
1264
- "done", "enter", "go", "next", "previous", "search", "send"
1265
- ]
1266
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1267
- | None = None,
1268
- hidden: Var[bool] | bool | None = None,
1269
- input_mode: Literal[
1270
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1271
- ]
1272
- | Var[
1273
- Literal[
1274
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1275
- ]
1276
- ]
1277
- | None = None,
1278
- item_prop: Var[str] | str | None = None,
1279
- lang: Var[str] | str | None = None,
1280
- role: Literal[
1281
- "alert",
1282
- "alertdialog",
1283
- "application",
1284
- "article",
1285
- "banner",
1286
- "button",
1287
- "cell",
1288
- "checkbox",
1289
- "columnheader",
1290
- "combobox",
1291
- "complementary",
1292
- "contentinfo",
1293
- "definition",
1294
- "dialog",
1295
- "directory",
1296
- "document",
1297
- "feed",
1298
- "figure",
1299
- "form",
1300
- "grid",
1301
- "gridcell",
1302
- "group",
1303
- "heading",
1304
- "img",
1305
- "link",
1306
- "list",
1307
- "listbox",
1308
- "listitem",
1309
- "log",
1310
- "main",
1311
- "marquee",
1312
- "math",
1313
- "menu",
1314
- "menubar",
1315
- "menuitem",
1316
- "menuitemcheckbox",
1317
- "menuitemradio",
1318
- "navigation",
1319
- "none",
1320
- "note",
1321
- "option",
1322
- "presentation",
1323
- "progressbar",
1324
- "radio",
1325
- "radiogroup",
1326
- "region",
1327
- "row",
1328
- "rowgroup",
1329
- "rowheader",
1330
- "scrollbar",
1331
- "search",
1332
- "searchbox",
1333
- "separator",
1334
- "slider",
1335
- "spinbutton",
1336
- "status",
1337
- "switch",
1338
- "tab",
1339
- "table",
1340
- "tablist",
1341
- "tabpanel",
1342
- "term",
1343
- "textbox",
1344
- "timer",
1345
- "toolbar",
1346
- "tooltip",
1347
- "tree",
1348
- "treegrid",
1349
- "treeitem",
1350
- ]
1351
- | Var[
1352
- Literal[
1353
- "alert",
1354
- "alertdialog",
1355
- "application",
1356
- "article",
1357
- "banner",
1358
- "button",
1359
- "cell",
1360
- "checkbox",
1361
- "columnheader",
1362
- "combobox",
1363
- "complementary",
1364
- "contentinfo",
1365
- "definition",
1366
- "dialog",
1367
- "directory",
1368
- "document",
1369
- "feed",
1370
- "figure",
1371
- "form",
1372
- "grid",
1373
- "gridcell",
1374
- "group",
1375
- "heading",
1376
- "img",
1377
- "link",
1378
- "list",
1379
- "listbox",
1380
- "listitem",
1381
- "log",
1382
- "main",
1383
- "marquee",
1384
- "math",
1385
- "menu",
1386
- "menubar",
1387
- "menuitem",
1388
- "menuitemcheckbox",
1389
- "menuitemradio",
1390
- "navigation",
1391
- "none",
1392
- "note",
1393
- "option",
1394
- "presentation",
1395
- "progressbar",
1396
- "radio",
1397
- "radiogroup",
1398
- "region",
1399
- "row",
1400
- "rowgroup",
1401
- "rowheader",
1402
- "scrollbar",
1403
- "search",
1404
- "searchbox",
1405
- "separator",
1406
- "slider",
1407
- "spinbutton",
1408
- "status",
1409
- "switch",
1410
- "tab",
1411
- "table",
1412
- "tablist",
1413
- "tabpanel",
1414
- "term",
1415
- "textbox",
1416
- "timer",
1417
- "toolbar",
1418
- "tooltip",
1419
- "tree",
1420
- "treegrid",
1421
- "treeitem",
1422
- ]
1423
- ]
1424
- | None = None,
1425
- slot: Var[str] | str | None = None,
1426
- spell_check: Var[bool] | bool | None = None,
1427
- tab_index: Var[int] | int | None = None,
1428
- title: Var[str] | str | None = None,
1429
265
  style: Sequence[Mapping[str, Any]]
1430
266
  | Mapping[str, Any]
1431
267
  | Var[Mapping[str, Any]]
@@ -1458,26 +294,6 @@ class Td(BaseHTML):
1458
294
 
1459
295
  Args:
1460
296
  *children: The children of the component.
1461
- align: Alignment of the content within the table cell
1462
- col_span: Number of columns a cell should span
1463
- headers: IDs of the headers associated with this cell
1464
- row_span: Number of rows a cell should span
1465
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1466
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1467
- content_editable: Indicates whether the element's content is editable.
1468
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1469
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1470
- draggable: Defines whether the element can be dragged.
1471
- enter_key_hint: Hints what media types the media element is able to play.
1472
- hidden: Defines whether the element is hidden.
1473
- input_mode: Defines the type of the element.
1474
- item_prop: Defines the name of the element for metadata purposes.
1475
- lang: Defines the language used in the element.
1476
- role: Defines the role of the element.
1477
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1478
- spell_check: Defines whether the element may be checked for spelling errors.
1479
- tab_index: Defines the position of the current element in the tabbing order.
1480
- title: Defines a tooltip for the element.
1481
297
  style: The style of the component.
1482
298
  key: A unique key for the component.
1483
299
  id: The id for the component.
@@ -1495,184 +311,6 @@ class Tfoot(BaseHTML):
1495
311
  def create(
1496
312
  cls,
1497
313
  *children,
1498
- access_key: Var[str] | str | None = None,
1499
- auto_capitalize: Literal[
1500
- "characters", "none", "off", "on", "sentences", "words"
1501
- ]
1502
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1503
- | None = None,
1504
- content_editable: Literal["inherit", "plaintext-only", False, True]
1505
- | Var[Literal["inherit", "plaintext-only", False, True]]
1506
- | None = None,
1507
- context_menu: Var[str] | str | None = None,
1508
- dir: Var[str] | str | None = None,
1509
- draggable: Var[bool] | bool | None = None,
1510
- enter_key_hint: Literal[
1511
- "done", "enter", "go", "next", "previous", "search", "send"
1512
- ]
1513
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1514
- | None = None,
1515
- hidden: Var[bool] | bool | None = None,
1516
- input_mode: Literal[
1517
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1518
- ]
1519
- | Var[
1520
- Literal[
1521
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1522
- ]
1523
- ]
1524
- | None = None,
1525
- item_prop: Var[str] | str | None = None,
1526
- lang: Var[str] | str | None = None,
1527
- role: Literal[
1528
- "alert",
1529
- "alertdialog",
1530
- "application",
1531
- "article",
1532
- "banner",
1533
- "button",
1534
- "cell",
1535
- "checkbox",
1536
- "columnheader",
1537
- "combobox",
1538
- "complementary",
1539
- "contentinfo",
1540
- "definition",
1541
- "dialog",
1542
- "directory",
1543
- "document",
1544
- "feed",
1545
- "figure",
1546
- "form",
1547
- "grid",
1548
- "gridcell",
1549
- "group",
1550
- "heading",
1551
- "img",
1552
- "link",
1553
- "list",
1554
- "listbox",
1555
- "listitem",
1556
- "log",
1557
- "main",
1558
- "marquee",
1559
- "math",
1560
- "menu",
1561
- "menubar",
1562
- "menuitem",
1563
- "menuitemcheckbox",
1564
- "menuitemradio",
1565
- "navigation",
1566
- "none",
1567
- "note",
1568
- "option",
1569
- "presentation",
1570
- "progressbar",
1571
- "radio",
1572
- "radiogroup",
1573
- "region",
1574
- "row",
1575
- "rowgroup",
1576
- "rowheader",
1577
- "scrollbar",
1578
- "search",
1579
- "searchbox",
1580
- "separator",
1581
- "slider",
1582
- "spinbutton",
1583
- "status",
1584
- "switch",
1585
- "tab",
1586
- "table",
1587
- "tablist",
1588
- "tabpanel",
1589
- "term",
1590
- "textbox",
1591
- "timer",
1592
- "toolbar",
1593
- "tooltip",
1594
- "tree",
1595
- "treegrid",
1596
- "treeitem",
1597
- ]
1598
- | Var[
1599
- Literal[
1600
- "alert",
1601
- "alertdialog",
1602
- "application",
1603
- "article",
1604
- "banner",
1605
- "button",
1606
- "cell",
1607
- "checkbox",
1608
- "columnheader",
1609
- "combobox",
1610
- "complementary",
1611
- "contentinfo",
1612
- "definition",
1613
- "dialog",
1614
- "directory",
1615
- "document",
1616
- "feed",
1617
- "figure",
1618
- "form",
1619
- "grid",
1620
- "gridcell",
1621
- "group",
1622
- "heading",
1623
- "img",
1624
- "link",
1625
- "list",
1626
- "listbox",
1627
- "listitem",
1628
- "log",
1629
- "main",
1630
- "marquee",
1631
- "math",
1632
- "menu",
1633
- "menubar",
1634
- "menuitem",
1635
- "menuitemcheckbox",
1636
- "menuitemradio",
1637
- "navigation",
1638
- "none",
1639
- "note",
1640
- "option",
1641
- "presentation",
1642
- "progressbar",
1643
- "radio",
1644
- "radiogroup",
1645
- "region",
1646
- "row",
1647
- "rowgroup",
1648
- "rowheader",
1649
- "scrollbar",
1650
- "search",
1651
- "searchbox",
1652
- "separator",
1653
- "slider",
1654
- "spinbutton",
1655
- "status",
1656
- "switch",
1657
- "tab",
1658
- "table",
1659
- "tablist",
1660
- "tabpanel",
1661
- "term",
1662
- "textbox",
1663
- "timer",
1664
- "toolbar",
1665
- "tooltip",
1666
- "tree",
1667
- "treegrid",
1668
- "treeitem",
1669
- ]
1670
- ]
1671
- | None = None,
1672
- slot: Var[str] | str | None = None,
1673
- spell_check: Var[bool] | bool | None = None,
1674
- tab_index: Var[int] | int | None = None,
1675
- title: Var[str] | str | None = None,
1676
314
  style: Sequence[Mapping[str, Any]]
1677
315
  | Mapping[str, Any]
1678
316
  | Var[Mapping[str, Any]]
@@ -1705,22 +343,6 @@ class Tfoot(BaseHTML):
1705
343
 
1706
344
  Args:
1707
345
  *children: The children of the component.
1708
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1709
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1710
- content_editable: Indicates whether the element's content is editable.
1711
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1712
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1713
- draggable: Defines whether the element can be dragged.
1714
- enter_key_hint: Hints what media types the media element is able to play.
1715
- hidden: Defines whether the element is hidden.
1716
- input_mode: Defines the type of the element.
1717
- item_prop: Defines the name of the element for metadata purposes.
1718
- lang: Defines the language used in the element.
1719
- role: Defines the role of the element.
1720
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1721
- spell_check: Defines whether the element may be checked for spelling errors.
1722
- tab_index: Defines the position of the current element in the tabbing order.
1723
- title: Defines a tooltip for the element.
1724
346
  style: The style of the component.
1725
347
  key: A unique key for the component.
1726
348
  id: The id for the component.
@@ -1738,191 +360,6 @@ class Th(BaseHTML):
1738
360
  def create(
1739
361
  cls,
1740
362
  *children,
1741
- align: Literal["center", "char", "justify", "left", "right"]
1742
- | Var[Literal["center", "char", "justify", "left", "right"]]
1743
- | None = None,
1744
- col_span: Var[int] | int | None = None,
1745
- headers: Var[str] | str | None = None,
1746
- row_span: Var[int] | int | None = None,
1747
- scope: Var[str] | str | None = None,
1748
- access_key: Var[str] | str | None = None,
1749
- auto_capitalize: Literal[
1750
- "characters", "none", "off", "on", "sentences", "words"
1751
- ]
1752
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1753
- | None = None,
1754
- content_editable: Literal["inherit", "plaintext-only", False, True]
1755
- | Var[Literal["inherit", "plaintext-only", False, True]]
1756
- | None = None,
1757
- context_menu: Var[str] | str | None = None,
1758
- dir: Var[str] | str | None = None,
1759
- draggable: Var[bool] | bool | None = None,
1760
- enter_key_hint: Literal[
1761
- "done", "enter", "go", "next", "previous", "search", "send"
1762
- ]
1763
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1764
- | None = None,
1765
- hidden: Var[bool] | bool | None = None,
1766
- input_mode: Literal[
1767
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1768
- ]
1769
- | Var[
1770
- Literal[
1771
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1772
- ]
1773
- ]
1774
- | None = None,
1775
- item_prop: Var[str] | str | None = None,
1776
- lang: Var[str] | str | None = None,
1777
- role: Literal[
1778
- "alert",
1779
- "alertdialog",
1780
- "application",
1781
- "article",
1782
- "banner",
1783
- "button",
1784
- "cell",
1785
- "checkbox",
1786
- "columnheader",
1787
- "combobox",
1788
- "complementary",
1789
- "contentinfo",
1790
- "definition",
1791
- "dialog",
1792
- "directory",
1793
- "document",
1794
- "feed",
1795
- "figure",
1796
- "form",
1797
- "grid",
1798
- "gridcell",
1799
- "group",
1800
- "heading",
1801
- "img",
1802
- "link",
1803
- "list",
1804
- "listbox",
1805
- "listitem",
1806
- "log",
1807
- "main",
1808
- "marquee",
1809
- "math",
1810
- "menu",
1811
- "menubar",
1812
- "menuitem",
1813
- "menuitemcheckbox",
1814
- "menuitemradio",
1815
- "navigation",
1816
- "none",
1817
- "note",
1818
- "option",
1819
- "presentation",
1820
- "progressbar",
1821
- "radio",
1822
- "radiogroup",
1823
- "region",
1824
- "row",
1825
- "rowgroup",
1826
- "rowheader",
1827
- "scrollbar",
1828
- "search",
1829
- "searchbox",
1830
- "separator",
1831
- "slider",
1832
- "spinbutton",
1833
- "status",
1834
- "switch",
1835
- "tab",
1836
- "table",
1837
- "tablist",
1838
- "tabpanel",
1839
- "term",
1840
- "textbox",
1841
- "timer",
1842
- "toolbar",
1843
- "tooltip",
1844
- "tree",
1845
- "treegrid",
1846
- "treeitem",
1847
- ]
1848
- | Var[
1849
- Literal[
1850
- "alert",
1851
- "alertdialog",
1852
- "application",
1853
- "article",
1854
- "banner",
1855
- "button",
1856
- "cell",
1857
- "checkbox",
1858
- "columnheader",
1859
- "combobox",
1860
- "complementary",
1861
- "contentinfo",
1862
- "definition",
1863
- "dialog",
1864
- "directory",
1865
- "document",
1866
- "feed",
1867
- "figure",
1868
- "form",
1869
- "grid",
1870
- "gridcell",
1871
- "group",
1872
- "heading",
1873
- "img",
1874
- "link",
1875
- "list",
1876
- "listbox",
1877
- "listitem",
1878
- "log",
1879
- "main",
1880
- "marquee",
1881
- "math",
1882
- "menu",
1883
- "menubar",
1884
- "menuitem",
1885
- "menuitemcheckbox",
1886
- "menuitemradio",
1887
- "navigation",
1888
- "none",
1889
- "note",
1890
- "option",
1891
- "presentation",
1892
- "progressbar",
1893
- "radio",
1894
- "radiogroup",
1895
- "region",
1896
- "row",
1897
- "rowgroup",
1898
- "rowheader",
1899
- "scrollbar",
1900
- "search",
1901
- "searchbox",
1902
- "separator",
1903
- "slider",
1904
- "spinbutton",
1905
- "status",
1906
- "switch",
1907
- "tab",
1908
- "table",
1909
- "tablist",
1910
- "tabpanel",
1911
- "term",
1912
- "textbox",
1913
- "timer",
1914
- "toolbar",
1915
- "tooltip",
1916
- "tree",
1917
- "treegrid",
1918
- "treeitem",
1919
- ]
1920
- ]
1921
- | None = None,
1922
- slot: Var[str] | str | None = None,
1923
- spell_check: Var[bool] | bool | None = None,
1924
- tab_index: Var[int] | int | None = None,
1925
- title: Var[str] | str | None = None,
1926
363
  style: Sequence[Mapping[str, Any]]
1927
364
  | Mapping[str, Any]
1928
365
  | Var[Mapping[str, Any]]
@@ -1955,27 +392,6 @@ class Th(BaseHTML):
1955
392
 
1956
393
  Args:
1957
394
  *children: The children of the component.
1958
- align: Alignment of the content within the table header cell
1959
- col_span: Number of columns a header cell should span
1960
- headers: IDs of the headers associated with this header cell
1961
- row_span: Number of rows a header cell should span
1962
- scope: Scope of the header cell (row, col, rowgroup, colgroup)
1963
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1964
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1965
- content_editable: Indicates whether the element's content is editable.
1966
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1967
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1968
- draggable: Defines whether the element can be dragged.
1969
- enter_key_hint: Hints what media types the media element is able to play.
1970
- hidden: Defines whether the element is hidden.
1971
- input_mode: Defines the type of the element.
1972
- item_prop: Defines the name of the element for metadata purposes.
1973
- lang: Defines the language used in the element.
1974
- role: Defines the role of the element.
1975
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1976
- spell_check: Defines whether the element may be checked for spelling errors.
1977
- tab_index: Defines the position of the current element in the tabbing order.
1978
- title: Defines a tooltip for the element.
1979
395
  style: The style of the component.
1980
396
  key: A unique key for the component.
1981
397
  id: The id for the component.
@@ -1993,184 +409,6 @@ class Thead(BaseHTML):
1993
409
  def create(
1994
410
  cls,
1995
411
  *children,
1996
- access_key: Var[str] | str | None = None,
1997
- auto_capitalize: Literal[
1998
- "characters", "none", "off", "on", "sentences", "words"
1999
- ]
2000
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2001
- | None = None,
2002
- content_editable: Literal["inherit", "plaintext-only", False, True]
2003
- | Var[Literal["inherit", "plaintext-only", False, True]]
2004
- | None = None,
2005
- context_menu: Var[str] | str | None = None,
2006
- dir: Var[str] | str | None = None,
2007
- draggable: Var[bool] | bool | None = None,
2008
- enter_key_hint: Literal[
2009
- "done", "enter", "go", "next", "previous", "search", "send"
2010
- ]
2011
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2012
- | None = None,
2013
- hidden: Var[bool] | bool | None = None,
2014
- input_mode: Literal[
2015
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2016
- ]
2017
- | Var[
2018
- Literal[
2019
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2020
- ]
2021
- ]
2022
- | None = None,
2023
- item_prop: Var[str] | str | None = None,
2024
- lang: Var[str] | str | None = None,
2025
- role: Literal[
2026
- "alert",
2027
- "alertdialog",
2028
- "application",
2029
- "article",
2030
- "banner",
2031
- "button",
2032
- "cell",
2033
- "checkbox",
2034
- "columnheader",
2035
- "combobox",
2036
- "complementary",
2037
- "contentinfo",
2038
- "definition",
2039
- "dialog",
2040
- "directory",
2041
- "document",
2042
- "feed",
2043
- "figure",
2044
- "form",
2045
- "grid",
2046
- "gridcell",
2047
- "group",
2048
- "heading",
2049
- "img",
2050
- "link",
2051
- "list",
2052
- "listbox",
2053
- "listitem",
2054
- "log",
2055
- "main",
2056
- "marquee",
2057
- "math",
2058
- "menu",
2059
- "menubar",
2060
- "menuitem",
2061
- "menuitemcheckbox",
2062
- "menuitemradio",
2063
- "navigation",
2064
- "none",
2065
- "note",
2066
- "option",
2067
- "presentation",
2068
- "progressbar",
2069
- "radio",
2070
- "radiogroup",
2071
- "region",
2072
- "row",
2073
- "rowgroup",
2074
- "rowheader",
2075
- "scrollbar",
2076
- "search",
2077
- "searchbox",
2078
- "separator",
2079
- "slider",
2080
- "spinbutton",
2081
- "status",
2082
- "switch",
2083
- "tab",
2084
- "table",
2085
- "tablist",
2086
- "tabpanel",
2087
- "term",
2088
- "textbox",
2089
- "timer",
2090
- "toolbar",
2091
- "tooltip",
2092
- "tree",
2093
- "treegrid",
2094
- "treeitem",
2095
- ]
2096
- | Var[
2097
- Literal[
2098
- "alert",
2099
- "alertdialog",
2100
- "application",
2101
- "article",
2102
- "banner",
2103
- "button",
2104
- "cell",
2105
- "checkbox",
2106
- "columnheader",
2107
- "combobox",
2108
- "complementary",
2109
- "contentinfo",
2110
- "definition",
2111
- "dialog",
2112
- "directory",
2113
- "document",
2114
- "feed",
2115
- "figure",
2116
- "form",
2117
- "grid",
2118
- "gridcell",
2119
- "group",
2120
- "heading",
2121
- "img",
2122
- "link",
2123
- "list",
2124
- "listbox",
2125
- "listitem",
2126
- "log",
2127
- "main",
2128
- "marquee",
2129
- "math",
2130
- "menu",
2131
- "menubar",
2132
- "menuitem",
2133
- "menuitemcheckbox",
2134
- "menuitemradio",
2135
- "navigation",
2136
- "none",
2137
- "note",
2138
- "option",
2139
- "presentation",
2140
- "progressbar",
2141
- "radio",
2142
- "radiogroup",
2143
- "region",
2144
- "row",
2145
- "rowgroup",
2146
- "rowheader",
2147
- "scrollbar",
2148
- "search",
2149
- "searchbox",
2150
- "separator",
2151
- "slider",
2152
- "spinbutton",
2153
- "status",
2154
- "switch",
2155
- "tab",
2156
- "table",
2157
- "tablist",
2158
- "tabpanel",
2159
- "term",
2160
- "textbox",
2161
- "timer",
2162
- "toolbar",
2163
- "tooltip",
2164
- "tree",
2165
- "treegrid",
2166
- "treeitem",
2167
- ]
2168
- ]
2169
- | None = None,
2170
- slot: Var[str] | str | None = None,
2171
- spell_check: Var[bool] | bool | None = None,
2172
- tab_index: Var[int] | int | None = None,
2173
- title: Var[str] | str | None = None,
2174
412
  style: Sequence[Mapping[str, Any]]
2175
413
  | Mapping[str, Any]
2176
414
  | Var[Mapping[str, Any]]
@@ -2203,22 +441,6 @@ class Thead(BaseHTML):
2203
441
 
2204
442
  Args:
2205
443
  *children: The children of the component.
2206
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2207
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2208
- content_editable: Indicates whether the element's content is editable.
2209
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2210
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2211
- draggable: Defines whether the element can be dragged.
2212
- enter_key_hint: Hints what media types the media element is able to play.
2213
- hidden: Defines whether the element is hidden.
2214
- input_mode: Defines the type of the element.
2215
- item_prop: Defines the name of the element for metadata purposes.
2216
- lang: Defines the language used in the element.
2217
- role: Defines the role of the element.
2218
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2219
- spell_check: Defines whether the element may be checked for spelling errors.
2220
- tab_index: Defines the position of the current element in the tabbing order.
2221
- title: Defines a tooltip for the element.
2222
444
  style: The style of the component.
2223
445
  key: A unique key for the component.
2224
446
  id: The id for the component.
@@ -2236,184 +458,6 @@ class Tr(BaseHTML):
2236
458
  def create(
2237
459
  cls,
2238
460
  *children,
2239
- access_key: Var[str] | str | None = None,
2240
- auto_capitalize: Literal[
2241
- "characters", "none", "off", "on", "sentences", "words"
2242
- ]
2243
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2244
- | None = None,
2245
- content_editable: Literal["inherit", "plaintext-only", False, True]
2246
- | Var[Literal["inherit", "plaintext-only", False, True]]
2247
- | None = None,
2248
- context_menu: Var[str] | str | None = None,
2249
- dir: Var[str] | str | None = None,
2250
- draggable: Var[bool] | bool | None = None,
2251
- enter_key_hint: Literal[
2252
- "done", "enter", "go", "next", "previous", "search", "send"
2253
- ]
2254
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2255
- | None = None,
2256
- hidden: Var[bool] | bool | None = None,
2257
- input_mode: Literal[
2258
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2259
- ]
2260
- | Var[
2261
- Literal[
2262
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2263
- ]
2264
- ]
2265
- | None = None,
2266
- item_prop: Var[str] | str | None = None,
2267
- lang: Var[str] | str | None = None,
2268
- role: Literal[
2269
- "alert",
2270
- "alertdialog",
2271
- "application",
2272
- "article",
2273
- "banner",
2274
- "button",
2275
- "cell",
2276
- "checkbox",
2277
- "columnheader",
2278
- "combobox",
2279
- "complementary",
2280
- "contentinfo",
2281
- "definition",
2282
- "dialog",
2283
- "directory",
2284
- "document",
2285
- "feed",
2286
- "figure",
2287
- "form",
2288
- "grid",
2289
- "gridcell",
2290
- "group",
2291
- "heading",
2292
- "img",
2293
- "link",
2294
- "list",
2295
- "listbox",
2296
- "listitem",
2297
- "log",
2298
- "main",
2299
- "marquee",
2300
- "math",
2301
- "menu",
2302
- "menubar",
2303
- "menuitem",
2304
- "menuitemcheckbox",
2305
- "menuitemradio",
2306
- "navigation",
2307
- "none",
2308
- "note",
2309
- "option",
2310
- "presentation",
2311
- "progressbar",
2312
- "radio",
2313
- "radiogroup",
2314
- "region",
2315
- "row",
2316
- "rowgroup",
2317
- "rowheader",
2318
- "scrollbar",
2319
- "search",
2320
- "searchbox",
2321
- "separator",
2322
- "slider",
2323
- "spinbutton",
2324
- "status",
2325
- "switch",
2326
- "tab",
2327
- "table",
2328
- "tablist",
2329
- "tabpanel",
2330
- "term",
2331
- "textbox",
2332
- "timer",
2333
- "toolbar",
2334
- "tooltip",
2335
- "tree",
2336
- "treegrid",
2337
- "treeitem",
2338
- ]
2339
- | Var[
2340
- Literal[
2341
- "alert",
2342
- "alertdialog",
2343
- "application",
2344
- "article",
2345
- "banner",
2346
- "button",
2347
- "cell",
2348
- "checkbox",
2349
- "columnheader",
2350
- "combobox",
2351
- "complementary",
2352
- "contentinfo",
2353
- "definition",
2354
- "dialog",
2355
- "directory",
2356
- "document",
2357
- "feed",
2358
- "figure",
2359
- "form",
2360
- "grid",
2361
- "gridcell",
2362
- "group",
2363
- "heading",
2364
- "img",
2365
- "link",
2366
- "list",
2367
- "listbox",
2368
- "listitem",
2369
- "log",
2370
- "main",
2371
- "marquee",
2372
- "math",
2373
- "menu",
2374
- "menubar",
2375
- "menuitem",
2376
- "menuitemcheckbox",
2377
- "menuitemradio",
2378
- "navigation",
2379
- "none",
2380
- "note",
2381
- "option",
2382
- "presentation",
2383
- "progressbar",
2384
- "radio",
2385
- "radiogroup",
2386
- "region",
2387
- "row",
2388
- "rowgroup",
2389
- "rowheader",
2390
- "scrollbar",
2391
- "search",
2392
- "searchbox",
2393
- "separator",
2394
- "slider",
2395
- "spinbutton",
2396
- "status",
2397
- "switch",
2398
- "tab",
2399
- "table",
2400
- "tablist",
2401
- "tabpanel",
2402
- "term",
2403
- "textbox",
2404
- "timer",
2405
- "toolbar",
2406
- "tooltip",
2407
- "tree",
2408
- "treegrid",
2409
- "treeitem",
2410
- ]
2411
- ]
2412
- | None = None,
2413
- slot: Var[str] | str | None = None,
2414
- spell_check: Var[bool] | bool | None = None,
2415
- tab_index: Var[int] | int | None = None,
2416
- title: Var[str] | str | None = None,
2417
461
  style: Sequence[Mapping[str, Any]]
2418
462
  | Mapping[str, Any]
2419
463
  | Var[Mapping[str, Any]]
@@ -2446,22 +490,6 @@ class Tr(BaseHTML):
2446
490
 
2447
491
  Args:
2448
492
  *children: The children of the component.
2449
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2450
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2451
- content_editable: Indicates whether the element's content is editable.
2452
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2453
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2454
- draggable: Defines whether the element can be dragged.
2455
- enter_key_hint: Hints what media types the media element is able to play.
2456
- hidden: Defines whether the element is hidden.
2457
- input_mode: Defines the type of the element.
2458
- item_prop: Defines the name of the element for metadata purposes.
2459
- lang: Defines the language used in the element.
2460
- role: Defines the role of the element.
2461
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2462
- spell_check: Defines whether the element may be checked for spelling errors.
2463
- tab_index: Defines the position of the current element in the tabbing order.
2464
- title: Defines a tooltip for the element.
2465
493
  style: The style of the component.
2466
494
  key: A unique key for the component.
2467
495
  id: The id for the component.