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
@@ -34,184 +34,6 @@ class Button(BaseHTML):
34
34
  | Var[Literal["button", "reset", "submit"]]
35
35
  | None = None,
36
36
  value: Var[float | int | str] | float | int | str | None = None,
37
- access_key: Var[str] | str | None = None,
38
- auto_capitalize: Literal[
39
- "characters", "none", "off", "on", "sentences", "words"
40
- ]
41
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
42
- | None = None,
43
- content_editable: Literal["inherit", "plaintext-only", False, True]
44
- | Var[Literal["inherit", "plaintext-only", False, True]]
45
- | None = None,
46
- context_menu: Var[str] | str | None = None,
47
- dir: Var[str] | str | None = None,
48
- draggable: Var[bool] | bool | None = None,
49
- enter_key_hint: Literal[
50
- "done", "enter", "go", "next", "previous", "search", "send"
51
- ]
52
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
53
- | None = None,
54
- hidden: Var[bool] | bool | None = None,
55
- input_mode: Literal[
56
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
57
- ]
58
- | Var[
59
- Literal[
60
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
61
- ]
62
- ]
63
- | None = None,
64
- item_prop: Var[str] | str | None = None,
65
- lang: Var[str] | str | None = None,
66
- role: Literal[
67
- "alert",
68
- "alertdialog",
69
- "application",
70
- "article",
71
- "banner",
72
- "button",
73
- "cell",
74
- "checkbox",
75
- "columnheader",
76
- "combobox",
77
- "complementary",
78
- "contentinfo",
79
- "definition",
80
- "dialog",
81
- "directory",
82
- "document",
83
- "feed",
84
- "figure",
85
- "form",
86
- "grid",
87
- "gridcell",
88
- "group",
89
- "heading",
90
- "img",
91
- "link",
92
- "list",
93
- "listbox",
94
- "listitem",
95
- "log",
96
- "main",
97
- "marquee",
98
- "math",
99
- "menu",
100
- "menubar",
101
- "menuitem",
102
- "menuitemcheckbox",
103
- "menuitemradio",
104
- "navigation",
105
- "none",
106
- "note",
107
- "option",
108
- "presentation",
109
- "progressbar",
110
- "radio",
111
- "radiogroup",
112
- "region",
113
- "row",
114
- "rowgroup",
115
- "rowheader",
116
- "scrollbar",
117
- "search",
118
- "searchbox",
119
- "separator",
120
- "slider",
121
- "spinbutton",
122
- "status",
123
- "switch",
124
- "tab",
125
- "table",
126
- "tablist",
127
- "tabpanel",
128
- "term",
129
- "textbox",
130
- "timer",
131
- "toolbar",
132
- "tooltip",
133
- "tree",
134
- "treegrid",
135
- "treeitem",
136
- ]
137
- | Var[
138
- Literal[
139
- "alert",
140
- "alertdialog",
141
- "application",
142
- "article",
143
- "banner",
144
- "button",
145
- "cell",
146
- "checkbox",
147
- "columnheader",
148
- "combobox",
149
- "complementary",
150
- "contentinfo",
151
- "definition",
152
- "dialog",
153
- "directory",
154
- "document",
155
- "feed",
156
- "figure",
157
- "form",
158
- "grid",
159
- "gridcell",
160
- "group",
161
- "heading",
162
- "img",
163
- "link",
164
- "list",
165
- "listbox",
166
- "listitem",
167
- "log",
168
- "main",
169
- "marquee",
170
- "math",
171
- "menu",
172
- "menubar",
173
- "menuitem",
174
- "menuitemcheckbox",
175
- "menuitemradio",
176
- "navigation",
177
- "none",
178
- "note",
179
- "option",
180
- "presentation",
181
- "progressbar",
182
- "radio",
183
- "radiogroup",
184
- "region",
185
- "row",
186
- "rowgroup",
187
- "rowheader",
188
- "scrollbar",
189
- "search",
190
- "searchbox",
191
- "separator",
192
- "slider",
193
- "spinbutton",
194
- "status",
195
- "switch",
196
- "tab",
197
- "table",
198
- "tablist",
199
- "tabpanel",
200
- "term",
201
- "textbox",
202
- "timer",
203
- "toolbar",
204
- "tooltip",
205
- "tree",
206
- "treegrid",
207
- "treeitem",
208
- ]
209
- ]
210
- | None = None,
211
- slot: Var[str] | str | None = None,
212
- spell_check: Var[bool] | bool | None = None,
213
- tab_index: Var[int] | int | None = None,
214
- title: Var[str] | str | None = None,
215
37
  style: Sequence[Mapping[str, Any]]
216
38
  | Mapping[str, Any]
217
39
  | Var[Mapping[str, Any]]
@@ -255,22 +77,6 @@ class Button(BaseHTML):
255
77
  name: Name of the button, used when sending form data
256
78
  type: Type of the button (submit, reset, or button)
257
79
  value: Value of the button, used when sending form data
258
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
259
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
260
- content_editable: Indicates whether the element's content is editable.
261
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
262
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
263
- draggable: Defines whether the element can be dragged.
264
- enter_key_hint: Hints what media types the media element is able to play.
265
- hidden: Defines whether the element is hidden.
266
- input_mode: Defines the type of the element.
267
- item_prop: Defines the name of the element for metadata purposes.
268
- lang: Defines the language used in the element.
269
- role: Defines the role of the element.
270
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
271
- spell_check: Defines whether the element may be checked for spelling errors.
272
- tab_index: Defines the position of the current element in the tabbing order.
273
- title: Defines a tooltip for the element.
274
80
  style: The style of the component.
275
81
  key: A unique key for the component.
276
82
  id: The id for the component.
@@ -288,184 +94,6 @@ class Datalist(BaseHTML):
288
94
  def create(
289
95
  cls,
290
96
  *children,
291
- access_key: Var[str] | str | None = None,
292
- auto_capitalize: Literal[
293
- "characters", "none", "off", "on", "sentences", "words"
294
- ]
295
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
296
- | None = None,
297
- content_editable: Literal["inherit", "plaintext-only", False, True]
298
- | Var[Literal["inherit", "plaintext-only", False, True]]
299
- | None = None,
300
- context_menu: Var[str] | str | None = None,
301
- dir: Var[str] | str | None = None,
302
- draggable: Var[bool] | bool | None = None,
303
- enter_key_hint: Literal[
304
- "done", "enter", "go", "next", "previous", "search", "send"
305
- ]
306
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
307
- | None = None,
308
- hidden: Var[bool] | bool | None = None,
309
- input_mode: Literal[
310
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
311
- ]
312
- | Var[
313
- Literal[
314
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
315
- ]
316
- ]
317
- | None = None,
318
- item_prop: Var[str] | str | None = None,
319
- lang: Var[str] | str | None = None,
320
- role: Literal[
321
- "alert",
322
- "alertdialog",
323
- "application",
324
- "article",
325
- "banner",
326
- "button",
327
- "cell",
328
- "checkbox",
329
- "columnheader",
330
- "combobox",
331
- "complementary",
332
- "contentinfo",
333
- "definition",
334
- "dialog",
335
- "directory",
336
- "document",
337
- "feed",
338
- "figure",
339
- "form",
340
- "grid",
341
- "gridcell",
342
- "group",
343
- "heading",
344
- "img",
345
- "link",
346
- "list",
347
- "listbox",
348
- "listitem",
349
- "log",
350
- "main",
351
- "marquee",
352
- "math",
353
- "menu",
354
- "menubar",
355
- "menuitem",
356
- "menuitemcheckbox",
357
- "menuitemradio",
358
- "navigation",
359
- "none",
360
- "note",
361
- "option",
362
- "presentation",
363
- "progressbar",
364
- "radio",
365
- "radiogroup",
366
- "region",
367
- "row",
368
- "rowgroup",
369
- "rowheader",
370
- "scrollbar",
371
- "search",
372
- "searchbox",
373
- "separator",
374
- "slider",
375
- "spinbutton",
376
- "status",
377
- "switch",
378
- "tab",
379
- "table",
380
- "tablist",
381
- "tabpanel",
382
- "term",
383
- "textbox",
384
- "timer",
385
- "toolbar",
386
- "tooltip",
387
- "tree",
388
- "treegrid",
389
- "treeitem",
390
- ]
391
- | Var[
392
- Literal[
393
- "alert",
394
- "alertdialog",
395
- "application",
396
- "article",
397
- "banner",
398
- "button",
399
- "cell",
400
- "checkbox",
401
- "columnheader",
402
- "combobox",
403
- "complementary",
404
- "contentinfo",
405
- "definition",
406
- "dialog",
407
- "directory",
408
- "document",
409
- "feed",
410
- "figure",
411
- "form",
412
- "grid",
413
- "gridcell",
414
- "group",
415
- "heading",
416
- "img",
417
- "link",
418
- "list",
419
- "listbox",
420
- "listitem",
421
- "log",
422
- "main",
423
- "marquee",
424
- "math",
425
- "menu",
426
- "menubar",
427
- "menuitem",
428
- "menuitemcheckbox",
429
- "menuitemradio",
430
- "navigation",
431
- "none",
432
- "note",
433
- "option",
434
- "presentation",
435
- "progressbar",
436
- "radio",
437
- "radiogroup",
438
- "region",
439
- "row",
440
- "rowgroup",
441
- "rowheader",
442
- "scrollbar",
443
- "search",
444
- "searchbox",
445
- "separator",
446
- "slider",
447
- "spinbutton",
448
- "status",
449
- "switch",
450
- "tab",
451
- "table",
452
- "tablist",
453
- "tabpanel",
454
- "term",
455
- "textbox",
456
- "timer",
457
- "toolbar",
458
- "tooltip",
459
- "tree",
460
- "treegrid",
461
- "treeitem",
462
- ]
463
- ]
464
- | None = None,
465
- slot: Var[str] | str | None = None,
466
- spell_check: Var[bool] | bool | None = None,
467
- tab_index: Var[int] | int | None = None,
468
- title: Var[str] | str | None = None,
469
97
  style: Sequence[Mapping[str, Any]]
470
98
  | Mapping[str, Any]
471
99
  | Var[Mapping[str, Any]]
@@ -498,22 +126,6 @@ class Datalist(BaseHTML):
498
126
 
499
127
  Args:
500
128
  *children: The children of the component.
501
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
502
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
503
- content_editable: Indicates whether the element's content is editable.
504
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
505
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
506
- draggable: Defines whether the element can be dragged.
507
- enter_key_hint: Hints what media types the media element is able to play.
508
- hidden: Defines whether the element is hidden.
509
- input_mode: Defines the type of the element.
510
- item_prop: Defines the name of the element for metadata purposes.
511
- lang: Defines the language used in the element.
512
- role: Defines the role of the element.
513
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
514
- spell_check: Defines whether the element may be checked for spelling errors.
515
- tab_index: Defines the position of the current element in the tabbing order.
516
- title: Defines a tooltip for the element.
517
129
  style: The style of the component.
518
130
  key: A unique key for the component.
519
131
  id: The id for the component.
@@ -597,184 +209,6 @@ class Form(BaseHTML):
597
209
  target: Var[str] | str | None = None,
598
210
  reset_on_submit: Var[bool] | bool | None = None,
599
211
  handle_submit_unique_name: Var[str] | str | None = None,
600
- access_key: Var[str] | str | None = None,
601
- auto_capitalize: Literal[
602
- "characters", "none", "off", "on", "sentences", "words"
603
- ]
604
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
605
- | None = None,
606
- content_editable: Literal["inherit", "plaintext-only", False, True]
607
- | Var[Literal["inherit", "plaintext-only", False, True]]
608
- | None = None,
609
- context_menu: Var[str] | str | None = None,
610
- dir: Var[str] | str | None = None,
611
- draggable: Var[bool] | bool | None = None,
612
- enter_key_hint: Literal[
613
- "done", "enter", "go", "next", "previous", "search", "send"
614
- ]
615
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
616
- | None = None,
617
- hidden: Var[bool] | bool | None = None,
618
- input_mode: Literal[
619
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
620
- ]
621
- | Var[
622
- Literal[
623
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
624
- ]
625
- ]
626
- | None = None,
627
- item_prop: Var[str] | str | None = None,
628
- lang: Var[str] | str | None = None,
629
- role: Literal[
630
- "alert",
631
- "alertdialog",
632
- "application",
633
- "article",
634
- "banner",
635
- "button",
636
- "cell",
637
- "checkbox",
638
- "columnheader",
639
- "combobox",
640
- "complementary",
641
- "contentinfo",
642
- "definition",
643
- "dialog",
644
- "directory",
645
- "document",
646
- "feed",
647
- "figure",
648
- "form",
649
- "grid",
650
- "gridcell",
651
- "group",
652
- "heading",
653
- "img",
654
- "link",
655
- "list",
656
- "listbox",
657
- "listitem",
658
- "log",
659
- "main",
660
- "marquee",
661
- "math",
662
- "menu",
663
- "menubar",
664
- "menuitem",
665
- "menuitemcheckbox",
666
- "menuitemradio",
667
- "navigation",
668
- "none",
669
- "note",
670
- "option",
671
- "presentation",
672
- "progressbar",
673
- "radio",
674
- "radiogroup",
675
- "region",
676
- "row",
677
- "rowgroup",
678
- "rowheader",
679
- "scrollbar",
680
- "search",
681
- "searchbox",
682
- "separator",
683
- "slider",
684
- "spinbutton",
685
- "status",
686
- "switch",
687
- "tab",
688
- "table",
689
- "tablist",
690
- "tabpanel",
691
- "term",
692
- "textbox",
693
- "timer",
694
- "toolbar",
695
- "tooltip",
696
- "tree",
697
- "treegrid",
698
- "treeitem",
699
- ]
700
- | Var[
701
- Literal[
702
- "alert",
703
- "alertdialog",
704
- "application",
705
- "article",
706
- "banner",
707
- "button",
708
- "cell",
709
- "checkbox",
710
- "columnheader",
711
- "combobox",
712
- "complementary",
713
- "contentinfo",
714
- "definition",
715
- "dialog",
716
- "directory",
717
- "document",
718
- "feed",
719
- "figure",
720
- "form",
721
- "grid",
722
- "gridcell",
723
- "group",
724
- "heading",
725
- "img",
726
- "link",
727
- "list",
728
- "listbox",
729
- "listitem",
730
- "log",
731
- "main",
732
- "marquee",
733
- "math",
734
- "menu",
735
- "menubar",
736
- "menuitem",
737
- "menuitemcheckbox",
738
- "menuitemradio",
739
- "navigation",
740
- "none",
741
- "note",
742
- "option",
743
- "presentation",
744
- "progressbar",
745
- "radio",
746
- "radiogroup",
747
- "region",
748
- "row",
749
- "rowgroup",
750
- "rowheader",
751
- "scrollbar",
752
- "search",
753
- "searchbox",
754
- "separator",
755
- "slider",
756
- "spinbutton",
757
- "status",
758
- "switch",
759
- "tab",
760
- "table",
761
- "tablist",
762
- "tabpanel",
763
- "term",
764
- "textbox",
765
- "timer",
766
- "toolbar",
767
- "tooltip",
768
- "tree",
769
- "treegrid",
770
- "treeitem",
771
- ]
772
- ]
773
- | None = None,
774
- slot: Var[str] | str | None = None,
775
- spell_check: Var[bool] | bool | None = None,
776
- tab_index: Var[int] | int | None = None,
777
- title: Var[str] | str | None = None,
778
212
  style: Sequence[Mapping[str, Any]]
779
213
  | Mapping[str, Any]
780
214
  | Var[Mapping[str, Any]]
@@ -823,22 +257,6 @@ class Form(BaseHTML):
823
257
  reset_on_submit: If true, the form will be cleared after submit.
824
258
  handle_submit_unique_name: The name used to make this form's submit handler function unique.
825
259
  on_submit: Fired when the form is submitted
826
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
827
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
828
- content_editable: Indicates whether the element's content is editable.
829
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
830
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
831
- draggable: Defines whether the element can be dragged.
832
- enter_key_hint: Hints what media types the media element is able to play.
833
- hidden: Defines whether the element is hidden.
834
- input_mode: Defines the type of the element.
835
- item_prop: Defines the name of the element for metadata purposes.
836
- lang: Defines the language used in the element.
837
- role: Defines the role of the element.
838
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
839
- spell_check: Defines whether the element may be checked for spelling errors.
840
- tab_index: Defines the position of the current element in the tabbing order.
841
- title: Defines a tooltip for the element.
842
260
  style: The style of the component.
843
261
  key: A unique key for the component.
844
262
  id: The id for the component.
@@ -888,8 +306,9 @@ class BaseInput(BaseHTML):
888
306
  alt: Var[str] | str | None = None,
889
307
  auto_complete: Var[str] | str | None = None,
890
308
  auto_focus: Var[bool] | bool | None = None,
891
- capture: Literal["environment", "user", False, True]
892
- | Var[Literal["environment", "user", False, True]]
309
+ capture: Literal["environment", "user"]
310
+ | Var[Literal["environment", "user"] | bool]
311
+ | bool
893
312
  | None = None,
894
313
  checked: Var[bool] | bool | None = None,
895
314
  default_checked: Var[bool] | bool | None = None,
@@ -967,184 +386,6 @@ class BaseInput(BaseHTML):
967
386
  ]
968
387
  | None = None,
969
388
  value: Var[float | int | str] | float | int | str | None = None,
970
- access_key: Var[str] | str | None = None,
971
- auto_capitalize: Literal[
972
- "characters", "none", "off", "on", "sentences", "words"
973
- ]
974
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
975
- | None = None,
976
- content_editable: Literal["inherit", "plaintext-only", False, True]
977
- | Var[Literal["inherit", "plaintext-only", False, True]]
978
- | None = None,
979
- context_menu: Var[str] | str | None = None,
980
- dir: Var[str] | str | None = None,
981
- draggable: Var[bool] | bool | None = None,
982
- enter_key_hint: Literal[
983
- "done", "enter", "go", "next", "previous", "search", "send"
984
- ]
985
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
986
- | None = None,
987
- hidden: Var[bool] | bool | None = None,
988
- input_mode: Literal[
989
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
990
- ]
991
- | Var[
992
- Literal[
993
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
994
- ]
995
- ]
996
- | None = None,
997
- item_prop: Var[str] | str | None = None,
998
- lang: Var[str] | str | None = None,
999
- role: Literal[
1000
- "alert",
1001
- "alertdialog",
1002
- "application",
1003
- "article",
1004
- "banner",
1005
- "button",
1006
- "cell",
1007
- "checkbox",
1008
- "columnheader",
1009
- "combobox",
1010
- "complementary",
1011
- "contentinfo",
1012
- "definition",
1013
- "dialog",
1014
- "directory",
1015
- "document",
1016
- "feed",
1017
- "figure",
1018
- "form",
1019
- "grid",
1020
- "gridcell",
1021
- "group",
1022
- "heading",
1023
- "img",
1024
- "link",
1025
- "list",
1026
- "listbox",
1027
- "listitem",
1028
- "log",
1029
- "main",
1030
- "marquee",
1031
- "math",
1032
- "menu",
1033
- "menubar",
1034
- "menuitem",
1035
- "menuitemcheckbox",
1036
- "menuitemradio",
1037
- "navigation",
1038
- "none",
1039
- "note",
1040
- "option",
1041
- "presentation",
1042
- "progressbar",
1043
- "radio",
1044
- "radiogroup",
1045
- "region",
1046
- "row",
1047
- "rowgroup",
1048
- "rowheader",
1049
- "scrollbar",
1050
- "search",
1051
- "searchbox",
1052
- "separator",
1053
- "slider",
1054
- "spinbutton",
1055
- "status",
1056
- "switch",
1057
- "tab",
1058
- "table",
1059
- "tablist",
1060
- "tabpanel",
1061
- "term",
1062
- "textbox",
1063
- "timer",
1064
- "toolbar",
1065
- "tooltip",
1066
- "tree",
1067
- "treegrid",
1068
- "treeitem",
1069
- ]
1070
- | Var[
1071
- Literal[
1072
- "alert",
1073
- "alertdialog",
1074
- "application",
1075
- "article",
1076
- "banner",
1077
- "button",
1078
- "cell",
1079
- "checkbox",
1080
- "columnheader",
1081
- "combobox",
1082
- "complementary",
1083
- "contentinfo",
1084
- "definition",
1085
- "dialog",
1086
- "directory",
1087
- "document",
1088
- "feed",
1089
- "figure",
1090
- "form",
1091
- "grid",
1092
- "gridcell",
1093
- "group",
1094
- "heading",
1095
- "img",
1096
- "link",
1097
- "list",
1098
- "listbox",
1099
- "listitem",
1100
- "log",
1101
- "main",
1102
- "marquee",
1103
- "math",
1104
- "menu",
1105
- "menubar",
1106
- "menuitem",
1107
- "menuitemcheckbox",
1108
- "menuitemradio",
1109
- "navigation",
1110
- "none",
1111
- "note",
1112
- "option",
1113
- "presentation",
1114
- "progressbar",
1115
- "radio",
1116
- "radiogroup",
1117
- "region",
1118
- "row",
1119
- "rowgroup",
1120
- "rowheader",
1121
- "scrollbar",
1122
- "search",
1123
- "searchbox",
1124
- "separator",
1125
- "slider",
1126
- "spinbutton",
1127
- "status",
1128
- "switch",
1129
- "tab",
1130
- "table",
1131
- "tablist",
1132
- "tabpanel",
1133
- "term",
1134
- "textbox",
1135
- "timer",
1136
- "toolbar",
1137
- "tooltip",
1138
- "tree",
1139
- "treegrid",
1140
- "treeitem",
1141
- ]
1142
- ]
1143
- | None = None,
1144
- slot: Var[str] | str | None = None,
1145
- spell_check: Var[bool] | bool | None = None,
1146
- tab_index: Var[int] | int | None = None,
1147
- title: Var[str] | str | None = None,
1148
389
  style: Sequence[Mapping[str, Any]]
1149
390
  | Mapping[str, Any]
1150
391
  | Var[Mapping[str, Any]]
@@ -1218,22 +459,6 @@ class BaseInput(BaseHTML):
1218
459
  value: Value of the input
1219
460
  on_key_down: Fired when a key is pressed down
1220
461
  on_key_up: Fired when a key is released
1221
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1222
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1223
- content_editable: Indicates whether the element's content is editable.
1224
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1225
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1226
- draggable: Defines whether the element can be dragged.
1227
- enter_key_hint: Hints what media types the media element is able to play.
1228
- hidden: Defines whether the element is hidden.
1229
- input_mode: Defines the type of the element.
1230
- item_prop: Defines the name of the element for metadata purposes.
1231
- lang: Defines the language used in the element.
1232
- role: Defines the role of the element.
1233
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1234
- spell_check: Defines whether the element may be checked for spelling errors.
1235
- tab_index: Defines the position of the current element in the tabbing order.
1236
- title: Defines a tooltip for the element.
1237
462
  style: The style of the component.
1238
463
  key: A unique key for the component.
1239
464
  id: The id for the component.
@@ -1255,8 +480,9 @@ class CheckboxInput(BaseInput):
1255
480
  alt: Var[str] | str | None = None,
1256
481
  auto_complete: Var[str] | str | None = None,
1257
482
  auto_focus: Var[bool] | bool | None = None,
1258
- capture: Literal["environment", "user", False, True]
1259
- | Var[Literal["environment", "user", False, True]]
483
+ capture: Literal["environment", "user"]
484
+ | Var[Literal["environment", "user"] | bool]
485
+ | bool
1260
486
  | None = None,
1261
487
  checked: Var[bool] | bool | None = None,
1262
488
  default_checked: Var[bool] | bool | None = None,
@@ -1334,184 +560,6 @@ class CheckboxInput(BaseInput):
1334
560
  ]
1335
561
  | None = None,
1336
562
  value: Var[float | int | str] | float | int | str | None = None,
1337
- access_key: Var[str] | str | None = None,
1338
- auto_capitalize: Literal[
1339
- "characters", "none", "off", "on", "sentences", "words"
1340
- ]
1341
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1342
- | None = None,
1343
- content_editable: Literal["inherit", "plaintext-only", False, True]
1344
- | Var[Literal["inherit", "plaintext-only", False, True]]
1345
- | None = None,
1346
- context_menu: Var[str] | str | None = None,
1347
- dir: Var[str] | str | None = None,
1348
- draggable: Var[bool] | bool | None = None,
1349
- enter_key_hint: Literal[
1350
- "done", "enter", "go", "next", "previous", "search", "send"
1351
- ]
1352
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1353
- | None = None,
1354
- hidden: Var[bool] | bool | None = None,
1355
- input_mode: Literal[
1356
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1357
- ]
1358
- | Var[
1359
- Literal[
1360
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1361
- ]
1362
- ]
1363
- | None = None,
1364
- item_prop: Var[str] | str | None = None,
1365
- lang: Var[str] | str | None = None,
1366
- role: Literal[
1367
- "alert",
1368
- "alertdialog",
1369
- "application",
1370
- "article",
1371
- "banner",
1372
- "button",
1373
- "cell",
1374
- "checkbox",
1375
- "columnheader",
1376
- "combobox",
1377
- "complementary",
1378
- "contentinfo",
1379
- "definition",
1380
- "dialog",
1381
- "directory",
1382
- "document",
1383
- "feed",
1384
- "figure",
1385
- "form",
1386
- "grid",
1387
- "gridcell",
1388
- "group",
1389
- "heading",
1390
- "img",
1391
- "link",
1392
- "list",
1393
- "listbox",
1394
- "listitem",
1395
- "log",
1396
- "main",
1397
- "marquee",
1398
- "math",
1399
- "menu",
1400
- "menubar",
1401
- "menuitem",
1402
- "menuitemcheckbox",
1403
- "menuitemradio",
1404
- "navigation",
1405
- "none",
1406
- "note",
1407
- "option",
1408
- "presentation",
1409
- "progressbar",
1410
- "radio",
1411
- "radiogroup",
1412
- "region",
1413
- "row",
1414
- "rowgroup",
1415
- "rowheader",
1416
- "scrollbar",
1417
- "search",
1418
- "searchbox",
1419
- "separator",
1420
- "slider",
1421
- "spinbutton",
1422
- "status",
1423
- "switch",
1424
- "tab",
1425
- "table",
1426
- "tablist",
1427
- "tabpanel",
1428
- "term",
1429
- "textbox",
1430
- "timer",
1431
- "toolbar",
1432
- "tooltip",
1433
- "tree",
1434
- "treegrid",
1435
- "treeitem",
1436
- ]
1437
- | Var[
1438
- Literal[
1439
- "alert",
1440
- "alertdialog",
1441
- "application",
1442
- "article",
1443
- "banner",
1444
- "button",
1445
- "cell",
1446
- "checkbox",
1447
- "columnheader",
1448
- "combobox",
1449
- "complementary",
1450
- "contentinfo",
1451
- "definition",
1452
- "dialog",
1453
- "directory",
1454
- "document",
1455
- "feed",
1456
- "figure",
1457
- "form",
1458
- "grid",
1459
- "gridcell",
1460
- "group",
1461
- "heading",
1462
- "img",
1463
- "link",
1464
- "list",
1465
- "listbox",
1466
- "listitem",
1467
- "log",
1468
- "main",
1469
- "marquee",
1470
- "math",
1471
- "menu",
1472
- "menubar",
1473
- "menuitem",
1474
- "menuitemcheckbox",
1475
- "menuitemradio",
1476
- "navigation",
1477
- "none",
1478
- "note",
1479
- "option",
1480
- "presentation",
1481
- "progressbar",
1482
- "radio",
1483
- "radiogroup",
1484
- "region",
1485
- "row",
1486
- "rowgroup",
1487
- "rowheader",
1488
- "scrollbar",
1489
- "search",
1490
- "searchbox",
1491
- "separator",
1492
- "slider",
1493
- "spinbutton",
1494
- "status",
1495
- "switch",
1496
- "tab",
1497
- "table",
1498
- "tablist",
1499
- "tabpanel",
1500
- "term",
1501
- "textbox",
1502
- "timer",
1503
- "toolbar",
1504
- "tooltip",
1505
- "tree",
1506
- "treegrid",
1507
- "treeitem",
1508
- ]
1509
- ]
1510
- | None = None,
1511
- slot: Var[str] | str | None = None,
1512
- spell_check: Var[bool] | bool | None = None,
1513
- tab_index: Var[int] | int | None = None,
1514
- title: Var[str] | str | None = None,
1515
563
  style: Sequence[Mapping[str, Any]]
1516
564
  | Mapping[str, Any]
1517
565
  | Var[Mapping[str, Any]]
@@ -1589,22 +637,6 @@ class CheckboxInput(BaseInput):
1589
637
  value: Value of the input
1590
638
  on_key_down: Fired when a key is pressed down
1591
639
  on_key_up: Fired when a key is released
1592
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1593
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1594
- content_editable: Indicates whether the element's content is editable.
1595
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1596
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1597
- draggable: Defines whether the element can be dragged.
1598
- enter_key_hint: Hints what media types the media element is able to play.
1599
- hidden: Defines whether the element is hidden.
1600
- input_mode: Defines the type of the element.
1601
- item_prop: Defines the name of the element for metadata purposes.
1602
- lang: Defines the language used in the element.
1603
- role: Defines the role of the element.
1604
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1605
- spell_check: Defines whether the element may be checked for spelling errors.
1606
- tab_index: Defines the position of the current element in the tabbing order.
1607
- title: Defines a tooltip for the element.
1608
640
  style: The style of the component.
1609
641
  key: A unique key for the component.
1610
642
  id: The id for the component.
@@ -1626,8 +658,9 @@ class ValueNumberInput(BaseInput):
1626
658
  alt: Var[str] | str | None = None,
1627
659
  auto_complete: Var[str] | str | None = None,
1628
660
  auto_focus: Var[bool] | bool | None = None,
1629
- capture: Literal["environment", "user", False, True]
1630
- | Var[Literal["environment", "user", False, True]]
661
+ capture: Literal["environment", "user"]
662
+ | Var[Literal["environment", "user"] | bool]
663
+ | bool
1631
664
  | None = None,
1632
665
  checked: Var[bool] | bool | None = None,
1633
666
  default_checked: Var[bool] | bool | None = None,
@@ -1705,184 +738,6 @@ class ValueNumberInput(BaseInput):
1705
738
  ]
1706
739
  | None = None,
1707
740
  value: Var[float | int | str] | float | int | str | None = None,
1708
- access_key: Var[str] | str | None = None,
1709
- auto_capitalize: Literal[
1710
- "characters", "none", "off", "on", "sentences", "words"
1711
- ]
1712
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1713
- | None = None,
1714
- content_editable: Literal["inherit", "plaintext-only", False, True]
1715
- | Var[Literal["inherit", "plaintext-only", False, True]]
1716
- | None = None,
1717
- context_menu: Var[str] | str | None = None,
1718
- dir: Var[str] | str | None = None,
1719
- draggable: Var[bool] | bool | None = None,
1720
- enter_key_hint: Literal[
1721
- "done", "enter", "go", "next", "previous", "search", "send"
1722
- ]
1723
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1724
- | None = None,
1725
- hidden: Var[bool] | bool | None = None,
1726
- input_mode: Literal[
1727
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1728
- ]
1729
- | Var[
1730
- Literal[
1731
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1732
- ]
1733
- ]
1734
- | None = None,
1735
- item_prop: Var[str] | str | None = None,
1736
- lang: Var[str] | str | None = None,
1737
- role: Literal[
1738
- "alert",
1739
- "alertdialog",
1740
- "application",
1741
- "article",
1742
- "banner",
1743
- "button",
1744
- "cell",
1745
- "checkbox",
1746
- "columnheader",
1747
- "combobox",
1748
- "complementary",
1749
- "contentinfo",
1750
- "definition",
1751
- "dialog",
1752
- "directory",
1753
- "document",
1754
- "feed",
1755
- "figure",
1756
- "form",
1757
- "grid",
1758
- "gridcell",
1759
- "group",
1760
- "heading",
1761
- "img",
1762
- "link",
1763
- "list",
1764
- "listbox",
1765
- "listitem",
1766
- "log",
1767
- "main",
1768
- "marquee",
1769
- "math",
1770
- "menu",
1771
- "menubar",
1772
- "menuitem",
1773
- "menuitemcheckbox",
1774
- "menuitemradio",
1775
- "navigation",
1776
- "none",
1777
- "note",
1778
- "option",
1779
- "presentation",
1780
- "progressbar",
1781
- "radio",
1782
- "radiogroup",
1783
- "region",
1784
- "row",
1785
- "rowgroup",
1786
- "rowheader",
1787
- "scrollbar",
1788
- "search",
1789
- "searchbox",
1790
- "separator",
1791
- "slider",
1792
- "spinbutton",
1793
- "status",
1794
- "switch",
1795
- "tab",
1796
- "table",
1797
- "tablist",
1798
- "tabpanel",
1799
- "term",
1800
- "textbox",
1801
- "timer",
1802
- "toolbar",
1803
- "tooltip",
1804
- "tree",
1805
- "treegrid",
1806
- "treeitem",
1807
- ]
1808
- | Var[
1809
- Literal[
1810
- "alert",
1811
- "alertdialog",
1812
- "application",
1813
- "article",
1814
- "banner",
1815
- "button",
1816
- "cell",
1817
- "checkbox",
1818
- "columnheader",
1819
- "combobox",
1820
- "complementary",
1821
- "contentinfo",
1822
- "definition",
1823
- "dialog",
1824
- "directory",
1825
- "document",
1826
- "feed",
1827
- "figure",
1828
- "form",
1829
- "grid",
1830
- "gridcell",
1831
- "group",
1832
- "heading",
1833
- "img",
1834
- "link",
1835
- "list",
1836
- "listbox",
1837
- "listitem",
1838
- "log",
1839
- "main",
1840
- "marquee",
1841
- "math",
1842
- "menu",
1843
- "menubar",
1844
- "menuitem",
1845
- "menuitemcheckbox",
1846
- "menuitemradio",
1847
- "navigation",
1848
- "none",
1849
- "note",
1850
- "option",
1851
- "presentation",
1852
- "progressbar",
1853
- "radio",
1854
- "radiogroup",
1855
- "region",
1856
- "row",
1857
- "rowgroup",
1858
- "rowheader",
1859
- "scrollbar",
1860
- "search",
1861
- "searchbox",
1862
- "separator",
1863
- "slider",
1864
- "spinbutton",
1865
- "status",
1866
- "switch",
1867
- "tab",
1868
- "table",
1869
- "tablist",
1870
- "tabpanel",
1871
- "term",
1872
- "textbox",
1873
- "timer",
1874
- "toolbar",
1875
- "tooltip",
1876
- "tree",
1877
- "treegrid",
1878
- "treeitem",
1879
- ]
1880
- ]
1881
- | None = None,
1882
- slot: Var[str] | str | None = None,
1883
- spell_check: Var[bool] | bool | None = None,
1884
- tab_index: Var[int] | int | None = None,
1885
- title: Var[str] | str | None = None,
1886
741
  style: Sequence[Mapping[str, Any]]
1887
742
  | Mapping[str, Any]
1888
743
  | Var[Mapping[str, Any]]
@@ -1972,22 +827,6 @@ class ValueNumberInput(BaseInput):
1972
827
  value: Value of the input
1973
828
  on_key_down: Fired when a key is pressed down
1974
829
  on_key_up: Fired when a key is released
1975
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1976
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1977
- content_editable: Indicates whether the element's content is editable.
1978
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1979
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1980
- draggable: Defines whether the element can be dragged.
1981
- enter_key_hint: Hints what media types the media element is able to play.
1982
- hidden: Defines whether the element is hidden.
1983
- input_mode: Defines the type of the element.
1984
- item_prop: Defines the name of the element for metadata purposes.
1985
- lang: Defines the language used in the element.
1986
- role: Defines the role of the element.
1987
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1988
- spell_check: Defines whether the element may be checked for spelling errors.
1989
- tab_index: Defines the position of the current element in the tabbing order.
1990
- title: Defines a tooltip for the element.
1991
830
  style: The style of the component.
1992
831
  key: A unique key for the component.
1993
832
  id: The id for the component.
@@ -2009,8 +848,9 @@ class Input(BaseInput):
2009
848
  alt: Var[str] | str | None = None,
2010
849
  auto_complete: Var[str] | str | None = None,
2011
850
  auto_focus: Var[bool] | bool | None = None,
2012
- capture: Literal["environment", "user", False, True]
2013
- | Var[Literal["environment", "user", False, True]]
851
+ capture: Literal["environment", "user"]
852
+ | Var[Literal["environment", "user"] | bool]
853
+ | bool
2014
854
  | None = None,
2015
855
  checked: Var[bool] | bool | None = None,
2016
856
  default_checked: Var[bool] | bool | None = None,
@@ -2088,184 +928,6 @@ class Input(BaseInput):
2088
928
  ]
2089
929
  | None = None,
2090
930
  value: Var[float | int | str] | float | int | str | None = None,
2091
- access_key: Var[str] | str | None = None,
2092
- auto_capitalize: Literal[
2093
- "characters", "none", "off", "on", "sentences", "words"
2094
- ]
2095
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2096
- | None = None,
2097
- content_editable: Literal["inherit", "plaintext-only", False, True]
2098
- | Var[Literal["inherit", "plaintext-only", False, True]]
2099
- | None = None,
2100
- context_menu: Var[str] | str | None = None,
2101
- dir: Var[str] | str | None = None,
2102
- draggable: Var[bool] | bool | None = None,
2103
- enter_key_hint: Literal[
2104
- "done", "enter", "go", "next", "previous", "search", "send"
2105
- ]
2106
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2107
- | None = None,
2108
- hidden: Var[bool] | bool | None = None,
2109
- input_mode: Literal[
2110
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2111
- ]
2112
- | Var[
2113
- Literal[
2114
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2115
- ]
2116
- ]
2117
- | None = None,
2118
- item_prop: Var[str] | str | None = None,
2119
- lang: Var[str] | str | None = None,
2120
- role: Literal[
2121
- "alert",
2122
- "alertdialog",
2123
- "application",
2124
- "article",
2125
- "banner",
2126
- "button",
2127
- "cell",
2128
- "checkbox",
2129
- "columnheader",
2130
- "combobox",
2131
- "complementary",
2132
- "contentinfo",
2133
- "definition",
2134
- "dialog",
2135
- "directory",
2136
- "document",
2137
- "feed",
2138
- "figure",
2139
- "form",
2140
- "grid",
2141
- "gridcell",
2142
- "group",
2143
- "heading",
2144
- "img",
2145
- "link",
2146
- "list",
2147
- "listbox",
2148
- "listitem",
2149
- "log",
2150
- "main",
2151
- "marquee",
2152
- "math",
2153
- "menu",
2154
- "menubar",
2155
- "menuitem",
2156
- "menuitemcheckbox",
2157
- "menuitemradio",
2158
- "navigation",
2159
- "none",
2160
- "note",
2161
- "option",
2162
- "presentation",
2163
- "progressbar",
2164
- "radio",
2165
- "radiogroup",
2166
- "region",
2167
- "row",
2168
- "rowgroup",
2169
- "rowheader",
2170
- "scrollbar",
2171
- "search",
2172
- "searchbox",
2173
- "separator",
2174
- "slider",
2175
- "spinbutton",
2176
- "status",
2177
- "switch",
2178
- "tab",
2179
- "table",
2180
- "tablist",
2181
- "tabpanel",
2182
- "term",
2183
- "textbox",
2184
- "timer",
2185
- "toolbar",
2186
- "tooltip",
2187
- "tree",
2188
- "treegrid",
2189
- "treeitem",
2190
- ]
2191
- | Var[
2192
- Literal[
2193
- "alert",
2194
- "alertdialog",
2195
- "application",
2196
- "article",
2197
- "banner",
2198
- "button",
2199
- "cell",
2200
- "checkbox",
2201
- "columnheader",
2202
- "combobox",
2203
- "complementary",
2204
- "contentinfo",
2205
- "definition",
2206
- "dialog",
2207
- "directory",
2208
- "document",
2209
- "feed",
2210
- "figure",
2211
- "form",
2212
- "grid",
2213
- "gridcell",
2214
- "group",
2215
- "heading",
2216
- "img",
2217
- "link",
2218
- "list",
2219
- "listbox",
2220
- "listitem",
2221
- "log",
2222
- "main",
2223
- "marquee",
2224
- "math",
2225
- "menu",
2226
- "menubar",
2227
- "menuitem",
2228
- "menuitemcheckbox",
2229
- "menuitemradio",
2230
- "navigation",
2231
- "none",
2232
- "note",
2233
- "option",
2234
- "presentation",
2235
- "progressbar",
2236
- "radio",
2237
- "radiogroup",
2238
- "region",
2239
- "row",
2240
- "rowgroup",
2241
- "rowheader",
2242
- "scrollbar",
2243
- "search",
2244
- "searchbox",
2245
- "separator",
2246
- "slider",
2247
- "spinbutton",
2248
- "status",
2249
- "switch",
2250
- "tab",
2251
- "table",
2252
- "tablist",
2253
- "tabpanel",
2254
- "term",
2255
- "textbox",
2256
- "timer",
2257
- "toolbar",
2258
- "tooltip",
2259
- "tree",
2260
- "treegrid",
2261
- "treeitem",
2262
- ]
2263
- ]
2264
- | None = None,
2265
- slot: Var[str] | str | None = None,
2266
- spell_check: Var[bool] | bool | None = None,
2267
- tab_index: Var[int] | int | None = None,
2268
- title: Var[str] | str | None = None,
2269
931
  style: Sequence[Mapping[str, Any]]
2270
932
  | Mapping[str, Any]
2271
933
  | Var[Mapping[str, Any]]
@@ -2343,22 +1005,6 @@ class Input(BaseInput):
2343
1005
  value: Value of the input
2344
1006
  on_key_down: Fired when a key is pressed down
2345
1007
  on_key_up: Fired when a key is released
2346
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2347
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2348
- content_editable: Indicates whether the element's content is editable.
2349
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2350
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2351
- draggable: Defines whether the element can be dragged.
2352
- enter_key_hint: Hints what media types the media element is able to play.
2353
- hidden: Defines whether the element is hidden.
2354
- input_mode: Defines the type of the element.
2355
- item_prop: Defines the name of the element for metadata purposes.
2356
- lang: Defines the language used in the element.
2357
- role: Defines the role of the element.
2358
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2359
- spell_check: Defines whether the element may be checked for spelling errors.
2360
- tab_index: Defines the position of the current element in the tabbing order.
2361
- title: Defines a tooltip for the element.
2362
1008
  style: The style of the component.
2363
1009
  key: A unique key for the component.
2364
1010
  id: The id for the component.
@@ -2378,184 +1024,6 @@ class Label(BaseHTML):
2378
1024
  *children,
2379
1025
  html_for: Var[str] | str | None = None,
2380
1026
  form: Var[str] | str | None = None,
2381
- access_key: Var[str] | str | None = None,
2382
- auto_capitalize: Literal[
2383
- "characters", "none", "off", "on", "sentences", "words"
2384
- ]
2385
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2386
- | None = None,
2387
- content_editable: Literal["inherit", "plaintext-only", False, True]
2388
- | Var[Literal["inherit", "plaintext-only", False, True]]
2389
- | None = None,
2390
- context_menu: Var[str] | str | None = None,
2391
- dir: Var[str] | str | None = None,
2392
- draggable: Var[bool] | bool | None = None,
2393
- enter_key_hint: Literal[
2394
- "done", "enter", "go", "next", "previous", "search", "send"
2395
- ]
2396
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2397
- | None = None,
2398
- hidden: Var[bool] | bool | None = None,
2399
- input_mode: Literal[
2400
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2401
- ]
2402
- | Var[
2403
- Literal[
2404
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2405
- ]
2406
- ]
2407
- | None = None,
2408
- item_prop: Var[str] | str | None = None,
2409
- lang: Var[str] | str | None = None,
2410
- role: Literal[
2411
- "alert",
2412
- "alertdialog",
2413
- "application",
2414
- "article",
2415
- "banner",
2416
- "button",
2417
- "cell",
2418
- "checkbox",
2419
- "columnheader",
2420
- "combobox",
2421
- "complementary",
2422
- "contentinfo",
2423
- "definition",
2424
- "dialog",
2425
- "directory",
2426
- "document",
2427
- "feed",
2428
- "figure",
2429
- "form",
2430
- "grid",
2431
- "gridcell",
2432
- "group",
2433
- "heading",
2434
- "img",
2435
- "link",
2436
- "list",
2437
- "listbox",
2438
- "listitem",
2439
- "log",
2440
- "main",
2441
- "marquee",
2442
- "math",
2443
- "menu",
2444
- "menubar",
2445
- "menuitem",
2446
- "menuitemcheckbox",
2447
- "menuitemradio",
2448
- "navigation",
2449
- "none",
2450
- "note",
2451
- "option",
2452
- "presentation",
2453
- "progressbar",
2454
- "radio",
2455
- "radiogroup",
2456
- "region",
2457
- "row",
2458
- "rowgroup",
2459
- "rowheader",
2460
- "scrollbar",
2461
- "search",
2462
- "searchbox",
2463
- "separator",
2464
- "slider",
2465
- "spinbutton",
2466
- "status",
2467
- "switch",
2468
- "tab",
2469
- "table",
2470
- "tablist",
2471
- "tabpanel",
2472
- "term",
2473
- "textbox",
2474
- "timer",
2475
- "toolbar",
2476
- "tooltip",
2477
- "tree",
2478
- "treegrid",
2479
- "treeitem",
2480
- ]
2481
- | Var[
2482
- Literal[
2483
- "alert",
2484
- "alertdialog",
2485
- "application",
2486
- "article",
2487
- "banner",
2488
- "button",
2489
- "cell",
2490
- "checkbox",
2491
- "columnheader",
2492
- "combobox",
2493
- "complementary",
2494
- "contentinfo",
2495
- "definition",
2496
- "dialog",
2497
- "directory",
2498
- "document",
2499
- "feed",
2500
- "figure",
2501
- "form",
2502
- "grid",
2503
- "gridcell",
2504
- "group",
2505
- "heading",
2506
- "img",
2507
- "link",
2508
- "list",
2509
- "listbox",
2510
- "listitem",
2511
- "log",
2512
- "main",
2513
- "marquee",
2514
- "math",
2515
- "menu",
2516
- "menubar",
2517
- "menuitem",
2518
- "menuitemcheckbox",
2519
- "menuitemradio",
2520
- "navigation",
2521
- "none",
2522
- "note",
2523
- "option",
2524
- "presentation",
2525
- "progressbar",
2526
- "radio",
2527
- "radiogroup",
2528
- "region",
2529
- "row",
2530
- "rowgroup",
2531
- "rowheader",
2532
- "scrollbar",
2533
- "search",
2534
- "searchbox",
2535
- "separator",
2536
- "slider",
2537
- "spinbutton",
2538
- "status",
2539
- "switch",
2540
- "tab",
2541
- "table",
2542
- "tablist",
2543
- "tabpanel",
2544
- "term",
2545
- "textbox",
2546
- "timer",
2547
- "toolbar",
2548
- "tooltip",
2549
- "tree",
2550
- "treegrid",
2551
- "treeitem",
2552
- ]
2553
- ]
2554
- | None = None,
2555
- slot: Var[str] | str | None = None,
2556
- spell_check: Var[bool] | bool | None = None,
2557
- tab_index: Var[int] | int | None = None,
2558
- title: Var[str] | str | None = None,
2559
1027
  style: Sequence[Mapping[str, Any]]
2560
1028
  | Mapping[str, Any]
2561
1029
  | Var[Mapping[str, Any]]
@@ -2590,22 +1058,6 @@ class Label(BaseHTML):
2590
1058
  *children: The children of the component.
2591
1059
  html_for: ID of a form control with which the label is associated
2592
1060
  form: Associates the label with a form (by id)
2593
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2594
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2595
- content_editable: Indicates whether the element's content is editable.
2596
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2597
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2598
- draggable: Defines whether the element can be dragged.
2599
- enter_key_hint: Hints what media types the media element is able to play.
2600
- hidden: Defines whether the element is hidden.
2601
- input_mode: Defines the type of the element.
2602
- item_prop: Defines the name of the element for metadata purposes.
2603
- lang: Defines the language used in the element.
2604
- role: Defines the role of the element.
2605
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2606
- spell_check: Defines whether the element may be checked for spelling errors.
2607
- tab_index: Defines the position of the current element in the tabbing order.
2608
- title: Defines a tooltip for the element.
2609
1061
  style: The style of the component.
2610
1062
  key: A unique key for the component.
2611
1063
  id: The id for the component.
@@ -2623,184 +1075,6 @@ class Legend(BaseHTML):
2623
1075
  def create(
2624
1076
  cls,
2625
1077
  *children,
2626
- access_key: Var[str] | str | None = None,
2627
- auto_capitalize: Literal[
2628
- "characters", "none", "off", "on", "sentences", "words"
2629
- ]
2630
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2631
- | None = None,
2632
- content_editable: Literal["inherit", "plaintext-only", False, True]
2633
- | Var[Literal["inherit", "plaintext-only", False, True]]
2634
- | None = None,
2635
- context_menu: Var[str] | str | None = None,
2636
- dir: Var[str] | str | None = None,
2637
- draggable: Var[bool] | bool | None = None,
2638
- enter_key_hint: Literal[
2639
- "done", "enter", "go", "next", "previous", "search", "send"
2640
- ]
2641
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2642
- | None = None,
2643
- hidden: Var[bool] | bool | None = None,
2644
- input_mode: Literal[
2645
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2646
- ]
2647
- | Var[
2648
- Literal[
2649
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2650
- ]
2651
- ]
2652
- | None = None,
2653
- item_prop: Var[str] | str | None = None,
2654
- lang: Var[str] | str | None = None,
2655
- role: Literal[
2656
- "alert",
2657
- "alertdialog",
2658
- "application",
2659
- "article",
2660
- "banner",
2661
- "button",
2662
- "cell",
2663
- "checkbox",
2664
- "columnheader",
2665
- "combobox",
2666
- "complementary",
2667
- "contentinfo",
2668
- "definition",
2669
- "dialog",
2670
- "directory",
2671
- "document",
2672
- "feed",
2673
- "figure",
2674
- "form",
2675
- "grid",
2676
- "gridcell",
2677
- "group",
2678
- "heading",
2679
- "img",
2680
- "link",
2681
- "list",
2682
- "listbox",
2683
- "listitem",
2684
- "log",
2685
- "main",
2686
- "marquee",
2687
- "math",
2688
- "menu",
2689
- "menubar",
2690
- "menuitem",
2691
- "menuitemcheckbox",
2692
- "menuitemradio",
2693
- "navigation",
2694
- "none",
2695
- "note",
2696
- "option",
2697
- "presentation",
2698
- "progressbar",
2699
- "radio",
2700
- "radiogroup",
2701
- "region",
2702
- "row",
2703
- "rowgroup",
2704
- "rowheader",
2705
- "scrollbar",
2706
- "search",
2707
- "searchbox",
2708
- "separator",
2709
- "slider",
2710
- "spinbutton",
2711
- "status",
2712
- "switch",
2713
- "tab",
2714
- "table",
2715
- "tablist",
2716
- "tabpanel",
2717
- "term",
2718
- "textbox",
2719
- "timer",
2720
- "toolbar",
2721
- "tooltip",
2722
- "tree",
2723
- "treegrid",
2724
- "treeitem",
2725
- ]
2726
- | Var[
2727
- Literal[
2728
- "alert",
2729
- "alertdialog",
2730
- "application",
2731
- "article",
2732
- "banner",
2733
- "button",
2734
- "cell",
2735
- "checkbox",
2736
- "columnheader",
2737
- "combobox",
2738
- "complementary",
2739
- "contentinfo",
2740
- "definition",
2741
- "dialog",
2742
- "directory",
2743
- "document",
2744
- "feed",
2745
- "figure",
2746
- "form",
2747
- "grid",
2748
- "gridcell",
2749
- "group",
2750
- "heading",
2751
- "img",
2752
- "link",
2753
- "list",
2754
- "listbox",
2755
- "listitem",
2756
- "log",
2757
- "main",
2758
- "marquee",
2759
- "math",
2760
- "menu",
2761
- "menubar",
2762
- "menuitem",
2763
- "menuitemcheckbox",
2764
- "menuitemradio",
2765
- "navigation",
2766
- "none",
2767
- "note",
2768
- "option",
2769
- "presentation",
2770
- "progressbar",
2771
- "radio",
2772
- "radiogroup",
2773
- "region",
2774
- "row",
2775
- "rowgroup",
2776
- "rowheader",
2777
- "scrollbar",
2778
- "search",
2779
- "searchbox",
2780
- "separator",
2781
- "slider",
2782
- "spinbutton",
2783
- "status",
2784
- "switch",
2785
- "tab",
2786
- "table",
2787
- "tablist",
2788
- "tabpanel",
2789
- "term",
2790
- "textbox",
2791
- "timer",
2792
- "toolbar",
2793
- "tooltip",
2794
- "tree",
2795
- "treegrid",
2796
- "treeitem",
2797
- ]
2798
- ]
2799
- | None = None,
2800
- slot: Var[str] | str | None = None,
2801
- spell_check: Var[bool] | bool | None = None,
2802
- tab_index: Var[int] | int | None = None,
2803
- title: Var[str] | str | None = None,
2804
1078
  style: Sequence[Mapping[str, Any]]
2805
1079
  | Mapping[str, Any]
2806
1080
  | Var[Mapping[str, Any]]
@@ -2833,22 +1107,6 @@ class Legend(BaseHTML):
2833
1107
 
2834
1108
  Args:
2835
1109
  *children: The children of the component.
2836
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2837
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2838
- content_editable: Indicates whether the element's content is editable.
2839
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2840
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2841
- draggable: Defines whether the element can be dragged.
2842
- enter_key_hint: Hints what media types the media element is able to play.
2843
- hidden: Defines whether the element is hidden.
2844
- input_mode: Defines the type of the element.
2845
- item_prop: Defines the name of the element for metadata purposes.
2846
- lang: Defines the language used in the element.
2847
- role: Defines the role of the element.
2848
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2849
- spell_check: Defines whether the element may be checked for spelling errors.
2850
- tab_index: Defines the position of the current element in the tabbing order.
2851
- title: Defines a tooltip for the element.
2852
1110
  style: The style of the component.
2853
1111
  key: A unique key for the component.
2854
1112
  id: The id for the component.
@@ -2873,184 +1131,6 @@ class Meter(BaseHTML):
2873
1131
  min: Var[float | int | str] | float | int | str | None = None,
2874
1132
  optimum: Var[float | int | str] | float | int | str | None = None,
2875
1133
  value: Var[float | int | str] | float | int | str | None = None,
2876
- access_key: Var[str] | str | None = None,
2877
- auto_capitalize: Literal[
2878
- "characters", "none", "off", "on", "sentences", "words"
2879
- ]
2880
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
2881
- | None = None,
2882
- content_editable: Literal["inherit", "plaintext-only", False, True]
2883
- | Var[Literal["inherit", "plaintext-only", False, True]]
2884
- | None = None,
2885
- context_menu: Var[str] | str | None = None,
2886
- dir: Var[str] | str | None = None,
2887
- draggable: Var[bool] | bool | None = None,
2888
- enter_key_hint: Literal[
2889
- "done", "enter", "go", "next", "previous", "search", "send"
2890
- ]
2891
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
2892
- | None = None,
2893
- hidden: Var[bool] | bool | None = None,
2894
- input_mode: Literal[
2895
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2896
- ]
2897
- | Var[
2898
- Literal[
2899
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
2900
- ]
2901
- ]
2902
- | None = None,
2903
- item_prop: Var[str] | str | None = None,
2904
- lang: Var[str] | str | None = None,
2905
- role: Literal[
2906
- "alert",
2907
- "alertdialog",
2908
- "application",
2909
- "article",
2910
- "banner",
2911
- "button",
2912
- "cell",
2913
- "checkbox",
2914
- "columnheader",
2915
- "combobox",
2916
- "complementary",
2917
- "contentinfo",
2918
- "definition",
2919
- "dialog",
2920
- "directory",
2921
- "document",
2922
- "feed",
2923
- "figure",
2924
- "form",
2925
- "grid",
2926
- "gridcell",
2927
- "group",
2928
- "heading",
2929
- "img",
2930
- "link",
2931
- "list",
2932
- "listbox",
2933
- "listitem",
2934
- "log",
2935
- "main",
2936
- "marquee",
2937
- "math",
2938
- "menu",
2939
- "menubar",
2940
- "menuitem",
2941
- "menuitemcheckbox",
2942
- "menuitemradio",
2943
- "navigation",
2944
- "none",
2945
- "note",
2946
- "option",
2947
- "presentation",
2948
- "progressbar",
2949
- "radio",
2950
- "radiogroup",
2951
- "region",
2952
- "row",
2953
- "rowgroup",
2954
- "rowheader",
2955
- "scrollbar",
2956
- "search",
2957
- "searchbox",
2958
- "separator",
2959
- "slider",
2960
- "spinbutton",
2961
- "status",
2962
- "switch",
2963
- "tab",
2964
- "table",
2965
- "tablist",
2966
- "tabpanel",
2967
- "term",
2968
- "textbox",
2969
- "timer",
2970
- "toolbar",
2971
- "tooltip",
2972
- "tree",
2973
- "treegrid",
2974
- "treeitem",
2975
- ]
2976
- | Var[
2977
- Literal[
2978
- "alert",
2979
- "alertdialog",
2980
- "application",
2981
- "article",
2982
- "banner",
2983
- "button",
2984
- "cell",
2985
- "checkbox",
2986
- "columnheader",
2987
- "combobox",
2988
- "complementary",
2989
- "contentinfo",
2990
- "definition",
2991
- "dialog",
2992
- "directory",
2993
- "document",
2994
- "feed",
2995
- "figure",
2996
- "form",
2997
- "grid",
2998
- "gridcell",
2999
- "group",
3000
- "heading",
3001
- "img",
3002
- "link",
3003
- "list",
3004
- "listbox",
3005
- "listitem",
3006
- "log",
3007
- "main",
3008
- "marquee",
3009
- "math",
3010
- "menu",
3011
- "menubar",
3012
- "menuitem",
3013
- "menuitemcheckbox",
3014
- "menuitemradio",
3015
- "navigation",
3016
- "none",
3017
- "note",
3018
- "option",
3019
- "presentation",
3020
- "progressbar",
3021
- "radio",
3022
- "radiogroup",
3023
- "region",
3024
- "row",
3025
- "rowgroup",
3026
- "rowheader",
3027
- "scrollbar",
3028
- "search",
3029
- "searchbox",
3030
- "separator",
3031
- "slider",
3032
- "spinbutton",
3033
- "status",
3034
- "switch",
3035
- "tab",
3036
- "table",
3037
- "tablist",
3038
- "tabpanel",
3039
- "term",
3040
- "textbox",
3041
- "timer",
3042
- "toolbar",
3043
- "tooltip",
3044
- "tree",
3045
- "treegrid",
3046
- "treeitem",
3047
- ]
3048
- ]
3049
- | None = None,
3050
- slot: Var[str] | str | None = None,
3051
- spell_check: Var[bool] | bool | None = None,
3052
- tab_index: Var[int] | int | None = None,
3053
- title: Var[str] | str | None = None,
3054
1134
  style: Sequence[Mapping[str, Any]]
3055
1135
  | Mapping[str, Any]
3056
1136
  | Var[Mapping[str, Any]]
@@ -3090,22 +1170,6 @@ class Meter(BaseHTML):
3090
1170
  min: Minimum value of the range
3091
1171
  optimum: Optimum value in the range
3092
1172
  value: Current value of the meter
3093
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
3094
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
3095
- content_editable: Indicates whether the element's content is editable.
3096
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
3097
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
3098
- draggable: Defines whether the element can be dragged.
3099
- enter_key_hint: Hints what media types the media element is able to play.
3100
- hidden: Defines whether the element is hidden.
3101
- input_mode: Defines the type of the element.
3102
- item_prop: Defines the name of the element for metadata purposes.
3103
- lang: Defines the language used in the element.
3104
- role: Defines the role of the element.
3105
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
3106
- spell_check: Defines whether the element may be checked for spelling errors.
3107
- tab_index: Defines the position of the current element in the tabbing order.
3108
- title: Defines a tooltip for the element.
3109
1173
  style: The style of the component.
3110
1174
  key: A unique key for the component.
3111
1175
  id: The id for the component.
@@ -3125,184 +1189,6 @@ class Optgroup(BaseHTML):
3125
1189
  *children,
3126
1190
  disabled: Var[bool] | bool | None = None,
3127
1191
  label: Var[str] | str | None = None,
3128
- access_key: Var[str] | str | None = None,
3129
- auto_capitalize: Literal[
3130
- "characters", "none", "off", "on", "sentences", "words"
3131
- ]
3132
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
3133
- | None = None,
3134
- content_editable: Literal["inherit", "plaintext-only", False, True]
3135
- | Var[Literal["inherit", "plaintext-only", False, True]]
3136
- | None = None,
3137
- context_menu: Var[str] | str | None = None,
3138
- dir: Var[str] | str | None = None,
3139
- draggable: Var[bool] | bool | None = None,
3140
- enter_key_hint: Literal[
3141
- "done", "enter", "go", "next", "previous", "search", "send"
3142
- ]
3143
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
3144
- | None = None,
3145
- hidden: Var[bool] | bool | None = None,
3146
- input_mode: Literal[
3147
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3148
- ]
3149
- | Var[
3150
- Literal[
3151
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3152
- ]
3153
- ]
3154
- | None = None,
3155
- item_prop: Var[str] | str | None = None,
3156
- lang: Var[str] | str | None = None,
3157
- role: Literal[
3158
- "alert",
3159
- "alertdialog",
3160
- "application",
3161
- "article",
3162
- "banner",
3163
- "button",
3164
- "cell",
3165
- "checkbox",
3166
- "columnheader",
3167
- "combobox",
3168
- "complementary",
3169
- "contentinfo",
3170
- "definition",
3171
- "dialog",
3172
- "directory",
3173
- "document",
3174
- "feed",
3175
- "figure",
3176
- "form",
3177
- "grid",
3178
- "gridcell",
3179
- "group",
3180
- "heading",
3181
- "img",
3182
- "link",
3183
- "list",
3184
- "listbox",
3185
- "listitem",
3186
- "log",
3187
- "main",
3188
- "marquee",
3189
- "math",
3190
- "menu",
3191
- "menubar",
3192
- "menuitem",
3193
- "menuitemcheckbox",
3194
- "menuitemradio",
3195
- "navigation",
3196
- "none",
3197
- "note",
3198
- "option",
3199
- "presentation",
3200
- "progressbar",
3201
- "radio",
3202
- "radiogroup",
3203
- "region",
3204
- "row",
3205
- "rowgroup",
3206
- "rowheader",
3207
- "scrollbar",
3208
- "search",
3209
- "searchbox",
3210
- "separator",
3211
- "slider",
3212
- "spinbutton",
3213
- "status",
3214
- "switch",
3215
- "tab",
3216
- "table",
3217
- "tablist",
3218
- "tabpanel",
3219
- "term",
3220
- "textbox",
3221
- "timer",
3222
- "toolbar",
3223
- "tooltip",
3224
- "tree",
3225
- "treegrid",
3226
- "treeitem",
3227
- ]
3228
- | Var[
3229
- Literal[
3230
- "alert",
3231
- "alertdialog",
3232
- "application",
3233
- "article",
3234
- "banner",
3235
- "button",
3236
- "cell",
3237
- "checkbox",
3238
- "columnheader",
3239
- "combobox",
3240
- "complementary",
3241
- "contentinfo",
3242
- "definition",
3243
- "dialog",
3244
- "directory",
3245
- "document",
3246
- "feed",
3247
- "figure",
3248
- "form",
3249
- "grid",
3250
- "gridcell",
3251
- "group",
3252
- "heading",
3253
- "img",
3254
- "link",
3255
- "list",
3256
- "listbox",
3257
- "listitem",
3258
- "log",
3259
- "main",
3260
- "marquee",
3261
- "math",
3262
- "menu",
3263
- "menubar",
3264
- "menuitem",
3265
- "menuitemcheckbox",
3266
- "menuitemradio",
3267
- "navigation",
3268
- "none",
3269
- "note",
3270
- "option",
3271
- "presentation",
3272
- "progressbar",
3273
- "radio",
3274
- "radiogroup",
3275
- "region",
3276
- "row",
3277
- "rowgroup",
3278
- "rowheader",
3279
- "scrollbar",
3280
- "search",
3281
- "searchbox",
3282
- "separator",
3283
- "slider",
3284
- "spinbutton",
3285
- "status",
3286
- "switch",
3287
- "tab",
3288
- "table",
3289
- "tablist",
3290
- "tabpanel",
3291
- "term",
3292
- "textbox",
3293
- "timer",
3294
- "toolbar",
3295
- "tooltip",
3296
- "tree",
3297
- "treegrid",
3298
- "treeitem",
3299
- ]
3300
- ]
3301
- | None = None,
3302
- slot: Var[str] | str | None = None,
3303
- spell_check: Var[bool] | bool | None = None,
3304
- tab_index: Var[int] | int | None = None,
3305
- title: Var[str] | str | None = None,
3306
1192
  style: Sequence[Mapping[str, Any]]
3307
1193
  | Mapping[str, Any]
3308
1194
  | Var[Mapping[str, Any]]
@@ -3337,22 +1223,6 @@ class Optgroup(BaseHTML):
3337
1223
  *children: The children of the component.
3338
1224
  disabled: Disables the optgroup
3339
1225
  label: Label for the optgroup
3340
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
3341
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
3342
- content_editable: Indicates whether the element's content is editable.
3343
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
3344
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
3345
- draggable: Defines whether the element can be dragged.
3346
- enter_key_hint: Hints what media types the media element is able to play.
3347
- hidden: Defines whether the element is hidden.
3348
- input_mode: Defines the type of the element.
3349
- item_prop: Defines the name of the element for metadata purposes.
3350
- lang: Defines the language used in the element.
3351
- role: Defines the role of the element.
3352
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
3353
- spell_check: Defines whether the element may be checked for spelling errors.
3354
- tab_index: Defines the position of the current element in the tabbing order.
3355
- title: Defines a tooltip for the element.
3356
1226
  style: The style of the component.
3357
1227
  key: A unique key for the component.
3358
1228
  id: The id for the component.
@@ -3374,184 +1244,6 @@ class Option(BaseHTML):
3374
1244
  label: Var[str] | str | None = None,
3375
1245
  selected: Var[bool] | bool | None = None,
3376
1246
  value: Var[float | int | str] | float | int | str | None = None,
3377
- access_key: Var[str] | str | None = None,
3378
- auto_capitalize: Literal[
3379
- "characters", "none", "off", "on", "sentences", "words"
3380
- ]
3381
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
3382
- | None = None,
3383
- content_editable: Literal["inherit", "plaintext-only", False, True]
3384
- | Var[Literal["inherit", "plaintext-only", False, True]]
3385
- | None = None,
3386
- context_menu: Var[str] | str | None = None,
3387
- dir: Var[str] | str | None = None,
3388
- draggable: Var[bool] | bool | None = None,
3389
- enter_key_hint: Literal[
3390
- "done", "enter", "go", "next", "previous", "search", "send"
3391
- ]
3392
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
3393
- | None = None,
3394
- hidden: Var[bool] | bool | None = None,
3395
- input_mode: Literal[
3396
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3397
- ]
3398
- | Var[
3399
- Literal[
3400
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3401
- ]
3402
- ]
3403
- | None = None,
3404
- item_prop: Var[str] | str | None = None,
3405
- lang: Var[str] | str | None = None,
3406
- role: Literal[
3407
- "alert",
3408
- "alertdialog",
3409
- "application",
3410
- "article",
3411
- "banner",
3412
- "button",
3413
- "cell",
3414
- "checkbox",
3415
- "columnheader",
3416
- "combobox",
3417
- "complementary",
3418
- "contentinfo",
3419
- "definition",
3420
- "dialog",
3421
- "directory",
3422
- "document",
3423
- "feed",
3424
- "figure",
3425
- "form",
3426
- "grid",
3427
- "gridcell",
3428
- "group",
3429
- "heading",
3430
- "img",
3431
- "link",
3432
- "list",
3433
- "listbox",
3434
- "listitem",
3435
- "log",
3436
- "main",
3437
- "marquee",
3438
- "math",
3439
- "menu",
3440
- "menubar",
3441
- "menuitem",
3442
- "menuitemcheckbox",
3443
- "menuitemradio",
3444
- "navigation",
3445
- "none",
3446
- "note",
3447
- "option",
3448
- "presentation",
3449
- "progressbar",
3450
- "radio",
3451
- "radiogroup",
3452
- "region",
3453
- "row",
3454
- "rowgroup",
3455
- "rowheader",
3456
- "scrollbar",
3457
- "search",
3458
- "searchbox",
3459
- "separator",
3460
- "slider",
3461
- "spinbutton",
3462
- "status",
3463
- "switch",
3464
- "tab",
3465
- "table",
3466
- "tablist",
3467
- "tabpanel",
3468
- "term",
3469
- "textbox",
3470
- "timer",
3471
- "toolbar",
3472
- "tooltip",
3473
- "tree",
3474
- "treegrid",
3475
- "treeitem",
3476
- ]
3477
- | Var[
3478
- Literal[
3479
- "alert",
3480
- "alertdialog",
3481
- "application",
3482
- "article",
3483
- "banner",
3484
- "button",
3485
- "cell",
3486
- "checkbox",
3487
- "columnheader",
3488
- "combobox",
3489
- "complementary",
3490
- "contentinfo",
3491
- "definition",
3492
- "dialog",
3493
- "directory",
3494
- "document",
3495
- "feed",
3496
- "figure",
3497
- "form",
3498
- "grid",
3499
- "gridcell",
3500
- "group",
3501
- "heading",
3502
- "img",
3503
- "link",
3504
- "list",
3505
- "listbox",
3506
- "listitem",
3507
- "log",
3508
- "main",
3509
- "marquee",
3510
- "math",
3511
- "menu",
3512
- "menubar",
3513
- "menuitem",
3514
- "menuitemcheckbox",
3515
- "menuitemradio",
3516
- "navigation",
3517
- "none",
3518
- "note",
3519
- "option",
3520
- "presentation",
3521
- "progressbar",
3522
- "radio",
3523
- "radiogroup",
3524
- "region",
3525
- "row",
3526
- "rowgroup",
3527
- "rowheader",
3528
- "scrollbar",
3529
- "search",
3530
- "searchbox",
3531
- "separator",
3532
- "slider",
3533
- "spinbutton",
3534
- "status",
3535
- "switch",
3536
- "tab",
3537
- "table",
3538
- "tablist",
3539
- "tabpanel",
3540
- "term",
3541
- "textbox",
3542
- "timer",
3543
- "toolbar",
3544
- "tooltip",
3545
- "tree",
3546
- "treegrid",
3547
- "treeitem",
3548
- ]
3549
- ]
3550
- | None = None,
3551
- slot: Var[str] | str | None = None,
3552
- spell_check: Var[bool] | bool | None = None,
3553
- tab_index: Var[int] | int | None = None,
3554
- title: Var[str] | str | None = None,
3555
1247
  style: Sequence[Mapping[str, Any]]
3556
1248
  | Mapping[str, Any]
3557
1249
  | Var[Mapping[str, Any]]
@@ -3588,22 +1280,6 @@ class Option(BaseHTML):
3588
1280
  label: Label for the option, if the text is not the label
3589
1281
  selected: Indicates that the option is initially selected
3590
1282
  value: Value to be sent as form data
3591
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
3592
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
3593
- content_editable: Indicates whether the element's content is editable.
3594
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
3595
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
3596
- draggable: Defines whether the element can be dragged.
3597
- enter_key_hint: Hints what media types the media element is able to play.
3598
- hidden: Defines whether the element is hidden.
3599
- input_mode: Defines the type of the element.
3600
- item_prop: Defines the name of the element for metadata purposes.
3601
- lang: Defines the language used in the element.
3602
- role: Defines the role of the element.
3603
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
3604
- spell_check: Defines whether the element may be checked for spelling errors.
3605
- tab_index: Defines the position of the current element in the tabbing order.
3606
- title: Defines a tooltip for the element.
3607
1283
  style: The style of the component.
3608
1284
  key: A unique key for the component.
3609
1285
  id: The id for the component.
@@ -3624,184 +1300,6 @@ class Output(BaseHTML):
3624
1300
  html_for: Var[str] | str | None = None,
3625
1301
  form: Var[str] | str | None = None,
3626
1302
  name: Var[str] | str | None = None,
3627
- access_key: Var[str] | str | None = None,
3628
- auto_capitalize: Literal[
3629
- "characters", "none", "off", "on", "sentences", "words"
3630
- ]
3631
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
3632
- | None = None,
3633
- content_editable: Literal["inherit", "plaintext-only", False, True]
3634
- | Var[Literal["inherit", "plaintext-only", False, True]]
3635
- | None = None,
3636
- context_menu: Var[str] | str | None = None,
3637
- dir: Var[str] | str | None = None,
3638
- draggable: Var[bool] | bool | None = None,
3639
- enter_key_hint: Literal[
3640
- "done", "enter", "go", "next", "previous", "search", "send"
3641
- ]
3642
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
3643
- | None = None,
3644
- hidden: Var[bool] | bool | None = None,
3645
- input_mode: Literal[
3646
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3647
- ]
3648
- | Var[
3649
- Literal[
3650
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3651
- ]
3652
- ]
3653
- | None = None,
3654
- item_prop: Var[str] | str | None = None,
3655
- lang: Var[str] | str | None = None,
3656
- role: Literal[
3657
- "alert",
3658
- "alertdialog",
3659
- "application",
3660
- "article",
3661
- "banner",
3662
- "button",
3663
- "cell",
3664
- "checkbox",
3665
- "columnheader",
3666
- "combobox",
3667
- "complementary",
3668
- "contentinfo",
3669
- "definition",
3670
- "dialog",
3671
- "directory",
3672
- "document",
3673
- "feed",
3674
- "figure",
3675
- "form",
3676
- "grid",
3677
- "gridcell",
3678
- "group",
3679
- "heading",
3680
- "img",
3681
- "link",
3682
- "list",
3683
- "listbox",
3684
- "listitem",
3685
- "log",
3686
- "main",
3687
- "marquee",
3688
- "math",
3689
- "menu",
3690
- "menubar",
3691
- "menuitem",
3692
- "menuitemcheckbox",
3693
- "menuitemradio",
3694
- "navigation",
3695
- "none",
3696
- "note",
3697
- "option",
3698
- "presentation",
3699
- "progressbar",
3700
- "radio",
3701
- "radiogroup",
3702
- "region",
3703
- "row",
3704
- "rowgroup",
3705
- "rowheader",
3706
- "scrollbar",
3707
- "search",
3708
- "searchbox",
3709
- "separator",
3710
- "slider",
3711
- "spinbutton",
3712
- "status",
3713
- "switch",
3714
- "tab",
3715
- "table",
3716
- "tablist",
3717
- "tabpanel",
3718
- "term",
3719
- "textbox",
3720
- "timer",
3721
- "toolbar",
3722
- "tooltip",
3723
- "tree",
3724
- "treegrid",
3725
- "treeitem",
3726
- ]
3727
- | Var[
3728
- Literal[
3729
- "alert",
3730
- "alertdialog",
3731
- "application",
3732
- "article",
3733
- "banner",
3734
- "button",
3735
- "cell",
3736
- "checkbox",
3737
- "columnheader",
3738
- "combobox",
3739
- "complementary",
3740
- "contentinfo",
3741
- "definition",
3742
- "dialog",
3743
- "directory",
3744
- "document",
3745
- "feed",
3746
- "figure",
3747
- "form",
3748
- "grid",
3749
- "gridcell",
3750
- "group",
3751
- "heading",
3752
- "img",
3753
- "link",
3754
- "list",
3755
- "listbox",
3756
- "listitem",
3757
- "log",
3758
- "main",
3759
- "marquee",
3760
- "math",
3761
- "menu",
3762
- "menubar",
3763
- "menuitem",
3764
- "menuitemcheckbox",
3765
- "menuitemradio",
3766
- "navigation",
3767
- "none",
3768
- "note",
3769
- "option",
3770
- "presentation",
3771
- "progressbar",
3772
- "radio",
3773
- "radiogroup",
3774
- "region",
3775
- "row",
3776
- "rowgroup",
3777
- "rowheader",
3778
- "scrollbar",
3779
- "search",
3780
- "searchbox",
3781
- "separator",
3782
- "slider",
3783
- "spinbutton",
3784
- "status",
3785
- "switch",
3786
- "tab",
3787
- "table",
3788
- "tablist",
3789
- "tabpanel",
3790
- "term",
3791
- "textbox",
3792
- "timer",
3793
- "toolbar",
3794
- "tooltip",
3795
- "tree",
3796
- "treegrid",
3797
- "treeitem",
3798
- ]
3799
- ]
3800
- | None = None,
3801
- slot: Var[str] | str | None = None,
3802
- spell_check: Var[bool] | bool | None = None,
3803
- tab_index: Var[int] | int | None = None,
3804
- title: Var[str] | str | None = None,
3805
1303
  style: Sequence[Mapping[str, Any]]
3806
1304
  | Mapping[str, Any]
3807
1305
  | Var[Mapping[str, Any]]
@@ -3837,22 +1335,6 @@ class Output(BaseHTML):
3837
1335
  html_for: Associates the output with one or more elements (by their IDs)
3838
1336
  form: Associates the output with a form (by id)
3839
1337
  name: Name of the output element for form submission
3840
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
3841
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
3842
- content_editable: Indicates whether the element's content is editable.
3843
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
3844
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
3845
- draggable: Defines whether the element can be dragged.
3846
- enter_key_hint: Hints what media types the media element is able to play.
3847
- hidden: Defines whether the element is hidden.
3848
- input_mode: Defines the type of the element.
3849
- item_prop: Defines the name of the element for metadata purposes.
3850
- lang: Defines the language used in the element.
3851
- role: Defines the role of the element.
3852
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
3853
- spell_check: Defines whether the element may be checked for spelling errors.
3854
- tab_index: Defines the position of the current element in the tabbing order.
3855
- title: Defines a tooltip for the element.
3856
1338
  style: The style of the component.
3857
1339
  key: A unique key for the component.
3858
1340
  id: The id for the component.
@@ -3873,184 +1355,6 @@ class Progress(BaseHTML):
3873
1355
  form: Var[str] | str | None = None,
3874
1356
  max: Var[float | int | str] | float | int | str | None = None,
3875
1357
  value: Var[float | int | str] | float | int | str | None = None,
3876
- access_key: Var[str] | str | None = None,
3877
- auto_capitalize: Literal[
3878
- "characters", "none", "off", "on", "sentences", "words"
3879
- ]
3880
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
3881
- | None = None,
3882
- content_editable: Literal["inherit", "plaintext-only", False, True]
3883
- | Var[Literal["inherit", "plaintext-only", False, True]]
3884
- | None = None,
3885
- context_menu: Var[str] | str | None = None,
3886
- dir: Var[str] | str | None = None,
3887
- draggable: Var[bool] | bool | None = None,
3888
- enter_key_hint: Literal[
3889
- "done", "enter", "go", "next", "previous", "search", "send"
3890
- ]
3891
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
3892
- | None = None,
3893
- hidden: Var[bool] | bool | None = None,
3894
- input_mode: Literal[
3895
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3896
- ]
3897
- | Var[
3898
- Literal[
3899
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
3900
- ]
3901
- ]
3902
- | None = None,
3903
- item_prop: Var[str] | str | None = None,
3904
- lang: Var[str] | str | None = None,
3905
- role: Literal[
3906
- "alert",
3907
- "alertdialog",
3908
- "application",
3909
- "article",
3910
- "banner",
3911
- "button",
3912
- "cell",
3913
- "checkbox",
3914
- "columnheader",
3915
- "combobox",
3916
- "complementary",
3917
- "contentinfo",
3918
- "definition",
3919
- "dialog",
3920
- "directory",
3921
- "document",
3922
- "feed",
3923
- "figure",
3924
- "form",
3925
- "grid",
3926
- "gridcell",
3927
- "group",
3928
- "heading",
3929
- "img",
3930
- "link",
3931
- "list",
3932
- "listbox",
3933
- "listitem",
3934
- "log",
3935
- "main",
3936
- "marquee",
3937
- "math",
3938
- "menu",
3939
- "menubar",
3940
- "menuitem",
3941
- "menuitemcheckbox",
3942
- "menuitemradio",
3943
- "navigation",
3944
- "none",
3945
- "note",
3946
- "option",
3947
- "presentation",
3948
- "progressbar",
3949
- "radio",
3950
- "radiogroup",
3951
- "region",
3952
- "row",
3953
- "rowgroup",
3954
- "rowheader",
3955
- "scrollbar",
3956
- "search",
3957
- "searchbox",
3958
- "separator",
3959
- "slider",
3960
- "spinbutton",
3961
- "status",
3962
- "switch",
3963
- "tab",
3964
- "table",
3965
- "tablist",
3966
- "tabpanel",
3967
- "term",
3968
- "textbox",
3969
- "timer",
3970
- "toolbar",
3971
- "tooltip",
3972
- "tree",
3973
- "treegrid",
3974
- "treeitem",
3975
- ]
3976
- | Var[
3977
- Literal[
3978
- "alert",
3979
- "alertdialog",
3980
- "application",
3981
- "article",
3982
- "banner",
3983
- "button",
3984
- "cell",
3985
- "checkbox",
3986
- "columnheader",
3987
- "combobox",
3988
- "complementary",
3989
- "contentinfo",
3990
- "definition",
3991
- "dialog",
3992
- "directory",
3993
- "document",
3994
- "feed",
3995
- "figure",
3996
- "form",
3997
- "grid",
3998
- "gridcell",
3999
- "group",
4000
- "heading",
4001
- "img",
4002
- "link",
4003
- "list",
4004
- "listbox",
4005
- "listitem",
4006
- "log",
4007
- "main",
4008
- "marquee",
4009
- "math",
4010
- "menu",
4011
- "menubar",
4012
- "menuitem",
4013
- "menuitemcheckbox",
4014
- "menuitemradio",
4015
- "navigation",
4016
- "none",
4017
- "note",
4018
- "option",
4019
- "presentation",
4020
- "progressbar",
4021
- "radio",
4022
- "radiogroup",
4023
- "region",
4024
- "row",
4025
- "rowgroup",
4026
- "rowheader",
4027
- "scrollbar",
4028
- "search",
4029
- "searchbox",
4030
- "separator",
4031
- "slider",
4032
- "spinbutton",
4033
- "status",
4034
- "switch",
4035
- "tab",
4036
- "table",
4037
- "tablist",
4038
- "tabpanel",
4039
- "term",
4040
- "textbox",
4041
- "timer",
4042
- "toolbar",
4043
- "tooltip",
4044
- "tree",
4045
- "treegrid",
4046
- "treeitem",
4047
- ]
4048
- ]
4049
- | None = None,
4050
- slot: Var[str] | str | None = None,
4051
- spell_check: Var[bool] | bool | None = None,
4052
- tab_index: Var[int] | int | None = None,
4053
- title: Var[str] | str | None = None,
4054
1358
  style: Sequence[Mapping[str, Any]]
4055
1359
  | Mapping[str, Any]
4056
1360
  | Var[Mapping[str, Any]]
@@ -4086,22 +1390,6 @@ class Progress(BaseHTML):
4086
1390
  form: Associates the progress element with a form (by id)
4087
1391
  max: Maximum value of the progress indicator
4088
1392
  value: Current value of the progress indicator
4089
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
4090
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
4091
- content_editable: Indicates whether the element's content is editable.
4092
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
4093
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
4094
- draggable: Defines whether the element can be dragged.
4095
- enter_key_hint: Hints what media types the media element is able to play.
4096
- hidden: Defines whether the element is hidden.
4097
- input_mode: Defines the type of the element.
4098
- item_prop: Defines the name of the element for metadata purposes.
4099
- lang: Defines the language used in the element.
4100
- role: Defines the role of the element.
4101
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
4102
- spell_check: Defines whether the element may be checked for spelling errors.
4103
- tab_index: Defines the position of the current element in the tabbing order.
4104
- title: Defines a tooltip for the element.
4105
1393
  style: The style of the component.
4106
1394
  key: A unique key for the component.
4107
1395
  id: The id for the component.
@@ -4129,184 +1417,6 @@ class Select(BaseHTML):
4129
1417
  size: Var[int | str] | int | str | None = None,
4130
1418
  value: Var[str] | str | None = None,
4131
1419
  default_value: Var[str] | str | None = None,
4132
- access_key: Var[str] | str | None = None,
4133
- auto_capitalize: Literal[
4134
- "characters", "none", "off", "on", "sentences", "words"
4135
- ]
4136
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
4137
- | None = None,
4138
- content_editable: Literal["inherit", "plaintext-only", False, True]
4139
- | Var[Literal["inherit", "plaintext-only", False, True]]
4140
- | None = None,
4141
- context_menu: Var[str] | str | None = None,
4142
- dir: Var[str] | str | None = None,
4143
- draggable: Var[bool] | bool | None = None,
4144
- enter_key_hint: Literal[
4145
- "done", "enter", "go", "next", "previous", "search", "send"
4146
- ]
4147
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
4148
- | None = None,
4149
- hidden: Var[bool] | bool | None = None,
4150
- input_mode: Literal[
4151
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
4152
- ]
4153
- | Var[
4154
- Literal[
4155
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
4156
- ]
4157
- ]
4158
- | None = None,
4159
- item_prop: Var[str] | str | None = None,
4160
- lang: Var[str] | str | None = None,
4161
- role: Literal[
4162
- "alert",
4163
- "alertdialog",
4164
- "application",
4165
- "article",
4166
- "banner",
4167
- "button",
4168
- "cell",
4169
- "checkbox",
4170
- "columnheader",
4171
- "combobox",
4172
- "complementary",
4173
- "contentinfo",
4174
- "definition",
4175
- "dialog",
4176
- "directory",
4177
- "document",
4178
- "feed",
4179
- "figure",
4180
- "form",
4181
- "grid",
4182
- "gridcell",
4183
- "group",
4184
- "heading",
4185
- "img",
4186
- "link",
4187
- "list",
4188
- "listbox",
4189
- "listitem",
4190
- "log",
4191
- "main",
4192
- "marquee",
4193
- "math",
4194
- "menu",
4195
- "menubar",
4196
- "menuitem",
4197
- "menuitemcheckbox",
4198
- "menuitemradio",
4199
- "navigation",
4200
- "none",
4201
- "note",
4202
- "option",
4203
- "presentation",
4204
- "progressbar",
4205
- "radio",
4206
- "radiogroup",
4207
- "region",
4208
- "row",
4209
- "rowgroup",
4210
- "rowheader",
4211
- "scrollbar",
4212
- "search",
4213
- "searchbox",
4214
- "separator",
4215
- "slider",
4216
- "spinbutton",
4217
- "status",
4218
- "switch",
4219
- "tab",
4220
- "table",
4221
- "tablist",
4222
- "tabpanel",
4223
- "term",
4224
- "textbox",
4225
- "timer",
4226
- "toolbar",
4227
- "tooltip",
4228
- "tree",
4229
- "treegrid",
4230
- "treeitem",
4231
- ]
4232
- | Var[
4233
- Literal[
4234
- "alert",
4235
- "alertdialog",
4236
- "application",
4237
- "article",
4238
- "banner",
4239
- "button",
4240
- "cell",
4241
- "checkbox",
4242
- "columnheader",
4243
- "combobox",
4244
- "complementary",
4245
- "contentinfo",
4246
- "definition",
4247
- "dialog",
4248
- "directory",
4249
- "document",
4250
- "feed",
4251
- "figure",
4252
- "form",
4253
- "grid",
4254
- "gridcell",
4255
- "group",
4256
- "heading",
4257
- "img",
4258
- "link",
4259
- "list",
4260
- "listbox",
4261
- "listitem",
4262
- "log",
4263
- "main",
4264
- "marquee",
4265
- "math",
4266
- "menu",
4267
- "menubar",
4268
- "menuitem",
4269
- "menuitemcheckbox",
4270
- "menuitemradio",
4271
- "navigation",
4272
- "none",
4273
- "note",
4274
- "option",
4275
- "presentation",
4276
- "progressbar",
4277
- "radio",
4278
- "radiogroup",
4279
- "region",
4280
- "row",
4281
- "rowgroup",
4282
- "rowheader",
4283
- "scrollbar",
4284
- "search",
4285
- "searchbox",
4286
- "separator",
4287
- "slider",
4288
- "spinbutton",
4289
- "status",
4290
- "switch",
4291
- "tab",
4292
- "table",
4293
- "tablist",
4294
- "tabpanel",
4295
- "term",
4296
- "textbox",
4297
- "timer",
4298
- "toolbar",
4299
- "tooltip",
4300
- "tree",
4301
- "treegrid",
4302
- "treeitem",
4303
- ]
4304
- ]
4305
- | None = None,
4306
- slot: Var[str] | str | None = None,
4307
- spell_check: Var[bool] | bool | None = None,
4308
- tab_index: Var[int] | int | None = None,
4309
- title: Var[str] | str | None = None,
4310
1420
  style: Sequence[Mapping[str, Any]]
4311
1421
  | Mapping[str, Any]
4312
1422
  | Var[Mapping[str, Any]]
@@ -4351,22 +1461,6 @@ class Select(BaseHTML):
4351
1461
  on_change: Fired when the select value changes
4352
1462
  value: The controlled value of the select, read only unless used with on_change
4353
1463
  default_value: The default value of the select when initially rendered
4354
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
4355
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
4356
- content_editable: Indicates whether the element's content is editable.
4357
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
4358
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
4359
- draggable: Defines whether the element can be dragged.
4360
- enter_key_hint: Hints what media types the media element is able to play.
4361
- hidden: Defines whether the element is hidden.
4362
- input_mode: Defines the type of the element.
4363
- item_prop: Defines the name of the element for metadata purposes.
4364
- lang: Defines the language used in the element.
4365
- role: Defines the role of the element.
4366
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
4367
- spell_check: Defines whether the element may be checked for spelling errors.
4368
- tab_index: Defines the position of the current element in the tabbing order.
4369
- title: Defines a tooltip for the element.
4370
1464
  style: The style of the component.
4371
1465
  key: A unique key for the component.
4372
1466
  id: The id for the component.
@@ -4405,184 +1499,6 @@ class Textarea(BaseHTML):
4405
1499
  rows: Var[int | str] | int | str | None = None,
4406
1500
  value: Var[str] | str | None = None,
4407
1501
  wrap: Var[str] | str | None = None,
4408
- access_key: Var[str] | str | None = None,
4409
- auto_capitalize: Literal[
4410
- "characters", "none", "off", "on", "sentences", "words"
4411
- ]
4412
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
4413
- | None = None,
4414
- content_editable: Literal["inherit", "plaintext-only", False, True]
4415
- | Var[Literal["inherit", "plaintext-only", False, True]]
4416
- | None = None,
4417
- context_menu: Var[str] | str | None = None,
4418
- dir: Var[str] | str | None = None,
4419
- draggable: Var[bool] | bool | None = None,
4420
- enter_key_hint: Literal[
4421
- "done", "enter", "go", "next", "previous", "search", "send"
4422
- ]
4423
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
4424
- | None = None,
4425
- hidden: Var[bool] | bool | None = None,
4426
- input_mode: Literal[
4427
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
4428
- ]
4429
- | Var[
4430
- Literal[
4431
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
4432
- ]
4433
- ]
4434
- | None = None,
4435
- item_prop: Var[str] | str | None = None,
4436
- lang: Var[str] | str | None = None,
4437
- role: Literal[
4438
- "alert",
4439
- "alertdialog",
4440
- "application",
4441
- "article",
4442
- "banner",
4443
- "button",
4444
- "cell",
4445
- "checkbox",
4446
- "columnheader",
4447
- "combobox",
4448
- "complementary",
4449
- "contentinfo",
4450
- "definition",
4451
- "dialog",
4452
- "directory",
4453
- "document",
4454
- "feed",
4455
- "figure",
4456
- "form",
4457
- "grid",
4458
- "gridcell",
4459
- "group",
4460
- "heading",
4461
- "img",
4462
- "link",
4463
- "list",
4464
- "listbox",
4465
- "listitem",
4466
- "log",
4467
- "main",
4468
- "marquee",
4469
- "math",
4470
- "menu",
4471
- "menubar",
4472
- "menuitem",
4473
- "menuitemcheckbox",
4474
- "menuitemradio",
4475
- "navigation",
4476
- "none",
4477
- "note",
4478
- "option",
4479
- "presentation",
4480
- "progressbar",
4481
- "radio",
4482
- "radiogroup",
4483
- "region",
4484
- "row",
4485
- "rowgroup",
4486
- "rowheader",
4487
- "scrollbar",
4488
- "search",
4489
- "searchbox",
4490
- "separator",
4491
- "slider",
4492
- "spinbutton",
4493
- "status",
4494
- "switch",
4495
- "tab",
4496
- "table",
4497
- "tablist",
4498
- "tabpanel",
4499
- "term",
4500
- "textbox",
4501
- "timer",
4502
- "toolbar",
4503
- "tooltip",
4504
- "tree",
4505
- "treegrid",
4506
- "treeitem",
4507
- ]
4508
- | Var[
4509
- Literal[
4510
- "alert",
4511
- "alertdialog",
4512
- "application",
4513
- "article",
4514
- "banner",
4515
- "button",
4516
- "cell",
4517
- "checkbox",
4518
- "columnheader",
4519
- "combobox",
4520
- "complementary",
4521
- "contentinfo",
4522
- "definition",
4523
- "dialog",
4524
- "directory",
4525
- "document",
4526
- "feed",
4527
- "figure",
4528
- "form",
4529
- "grid",
4530
- "gridcell",
4531
- "group",
4532
- "heading",
4533
- "img",
4534
- "link",
4535
- "list",
4536
- "listbox",
4537
- "listitem",
4538
- "log",
4539
- "main",
4540
- "marquee",
4541
- "math",
4542
- "menu",
4543
- "menubar",
4544
- "menuitem",
4545
- "menuitemcheckbox",
4546
- "menuitemradio",
4547
- "navigation",
4548
- "none",
4549
- "note",
4550
- "option",
4551
- "presentation",
4552
- "progressbar",
4553
- "radio",
4554
- "radiogroup",
4555
- "region",
4556
- "row",
4557
- "rowgroup",
4558
- "rowheader",
4559
- "scrollbar",
4560
- "search",
4561
- "searchbox",
4562
- "separator",
4563
- "slider",
4564
- "spinbutton",
4565
- "status",
4566
- "switch",
4567
- "tab",
4568
- "table",
4569
- "tablist",
4570
- "tabpanel",
4571
- "term",
4572
- "textbox",
4573
- "timer",
4574
- "toolbar",
4575
- "tooltip",
4576
- "tree",
4577
- "treegrid",
4578
- "treeitem",
4579
- ]
4580
- ]
4581
- | None = None,
4582
- slot: Var[str] | str | None = None,
4583
- spell_check: Var[bool] | bool | None = None,
4584
- tab_index: Var[int] | int | None = None,
4585
- title: Var[str] | str | None = None,
4586
1502
  style: Sequence[Mapping[str, Any]]
4587
1503
  | Mapping[str, Any]
4588
1504
  | Var[Mapping[str, Any]]
@@ -4647,22 +1563,6 @@ class Textarea(BaseHTML):
4647
1563
  on_blur: Fired when the input loses focus
4648
1564
  on_key_down: Fired when a key is pressed down
4649
1565
  on_key_up: Fired when a key is released
4650
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
4651
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
4652
- content_editable: Indicates whether the element's content is editable.
4653
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
4654
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
4655
- draggable: Defines whether the element can be dragged.
4656
- enter_key_hint: Hints what media types the media element is able to play.
4657
- hidden: Defines whether the element is hidden.
4658
- input_mode: Defines the type of the element.
4659
- item_prop: Defines the name of the element for metadata purposes.
4660
- lang: Defines the language used in the element.
4661
- role: Defines the role of the element.
4662
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
4663
- spell_check: Defines whether the element may be checked for spelling errors.
4664
- tab_index: Defines the position of the current element in the tabbing order.
4665
- title: Defines a tooltip for the element.
4666
1566
  style: The style of the component.
4667
1567
  key: A unique key for the component.
4668
1568
  id: The id for the component.