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
@@ -172,184 +172,6 @@ class Text(elements.Span, RadixThemesComponent, MarkdownComponentMap):
172
172
  ]
173
173
  | None = None,
174
174
  high_contrast: Var[bool] | bool | None = None,
175
- access_key: Var[str] | str | None = None,
176
- auto_capitalize: Literal[
177
- "characters", "none", "off", "on", "sentences", "words"
178
- ]
179
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
180
- | None = None,
181
- content_editable: Literal["inherit", "plaintext-only", False, True]
182
- | Var[Literal["inherit", "plaintext-only", False, True]]
183
- | None = None,
184
- context_menu: Var[str] | str | None = None,
185
- dir: Var[str] | str | None = None,
186
- draggable: Var[bool] | bool | None = None,
187
- enter_key_hint: Literal[
188
- "done", "enter", "go", "next", "previous", "search", "send"
189
- ]
190
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
191
- | None = None,
192
- hidden: Var[bool] | bool | None = None,
193
- input_mode: Literal[
194
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
195
- ]
196
- | Var[
197
- Literal[
198
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
199
- ]
200
- ]
201
- | None = None,
202
- item_prop: Var[str] | str | None = None,
203
- lang: Var[str] | str | None = None,
204
- role: Literal[
205
- "alert",
206
- "alertdialog",
207
- "application",
208
- "article",
209
- "banner",
210
- "button",
211
- "cell",
212
- "checkbox",
213
- "columnheader",
214
- "combobox",
215
- "complementary",
216
- "contentinfo",
217
- "definition",
218
- "dialog",
219
- "directory",
220
- "document",
221
- "feed",
222
- "figure",
223
- "form",
224
- "grid",
225
- "gridcell",
226
- "group",
227
- "heading",
228
- "img",
229
- "link",
230
- "list",
231
- "listbox",
232
- "listitem",
233
- "log",
234
- "main",
235
- "marquee",
236
- "math",
237
- "menu",
238
- "menubar",
239
- "menuitem",
240
- "menuitemcheckbox",
241
- "menuitemradio",
242
- "navigation",
243
- "none",
244
- "note",
245
- "option",
246
- "presentation",
247
- "progressbar",
248
- "radio",
249
- "radiogroup",
250
- "region",
251
- "row",
252
- "rowgroup",
253
- "rowheader",
254
- "scrollbar",
255
- "search",
256
- "searchbox",
257
- "separator",
258
- "slider",
259
- "spinbutton",
260
- "status",
261
- "switch",
262
- "tab",
263
- "table",
264
- "tablist",
265
- "tabpanel",
266
- "term",
267
- "textbox",
268
- "timer",
269
- "toolbar",
270
- "tooltip",
271
- "tree",
272
- "treegrid",
273
- "treeitem",
274
- ]
275
- | Var[
276
- Literal[
277
- "alert",
278
- "alertdialog",
279
- "application",
280
- "article",
281
- "banner",
282
- "button",
283
- "cell",
284
- "checkbox",
285
- "columnheader",
286
- "combobox",
287
- "complementary",
288
- "contentinfo",
289
- "definition",
290
- "dialog",
291
- "directory",
292
- "document",
293
- "feed",
294
- "figure",
295
- "form",
296
- "grid",
297
- "gridcell",
298
- "group",
299
- "heading",
300
- "img",
301
- "link",
302
- "list",
303
- "listbox",
304
- "listitem",
305
- "log",
306
- "main",
307
- "marquee",
308
- "math",
309
- "menu",
310
- "menubar",
311
- "menuitem",
312
- "menuitemcheckbox",
313
- "menuitemradio",
314
- "navigation",
315
- "none",
316
- "note",
317
- "option",
318
- "presentation",
319
- "progressbar",
320
- "radio",
321
- "radiogroup",
322
- "region",
323
- "row",
324
- "rowgroup",
325
- "rowheader",
326
- "scrollbar",
327
- "search",
328
- "searchbox",
329
- "separator",
330
- "slider",
331
- "spinbutton",
332
- "status",
333
- "switch",
334
- "tab",
335
- "table",
336
- "tablist",
337
- "tabpanel",
338
- "term",
339
- "textbox",
340
- "timer",
341
- "toolbar",
342
- "tooltip",
343
- "tree",
344
- "treegrid",
345
- "treeitem",
346
- ]
347
- ]
348
- | None = None,
349
- slot: Var[str] | str | None = None,
350
- spell_check: Var[bool] | bool | None = None,
351
- tab_index: Var[int] | int | None = None,
352
- title: Var[str] | str | None = None,
353
175
  style: Sequence[Mapping[str, Any]]
354
176
  | Mapping[str, Any]
355
177
  | Var[Mapping[str, Any]]
@@ -393,22 +215,6 @@ class Text(elements.Span, RadixThemesComponent, MarkdownComponentMap):
393
215
  trim: Removes the leading trim space: "normal" | "start" | "end" | "both"
394
216
  color_scheme: Overrides the accent color inherited from the Theme.
395
217
  high_contrast: Whether to render the text with higher contrast color
396
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
397
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
398
- content_editable: Indicates whether the element's content is editable.
399
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
400
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
401
- draggable: Defines whether the element can be dragged.
402
- enter_key_hint: Hints what media types the media element is able to play.
403
- hidden: Defines whether the element is hidden.
404
- input_mode: Defines the type of the element.
405
- item_prop: Defines the name of the element for metadata purposes.
406
- lang: Defines the language used in the element.
407
- role: Defines the role of the element.
408
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
409
- spell_check: Defines whether the element may be checked for spelling errors.
410
- tab_index: Defines the position of the current element in the tabbing order.
411
- title: Defines a tooltip for the element.
412
218
  style: The style of the component.
413
219
  key: A unique key for the component.
414
220
  id: The id for the component.
@@ -558,184 +364,6 @@ class Span(Text):
558
364
  ]
559
365
  | None = None,
560
366
  high_contrast: Var[bool] | bool | None = None,
561
- access_key: Var[str] | str | None = None,
562
- auto_capitalize: Literal[
563
- "characters", "none", "off", "on", "sentences", "words"
564
- ]
565
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
566
- | None = None,
567
- content_editable: Literal["inherit", "plaintext-only", False, True]
568
- | Var[Literal["inherit", "plaintext-only", False, True]]
569
- | None = None,
570
- context_menu: Var[str] | str | None = None,
571
- dir: Var[str] | str | None = None,
572
- draggable: Var[bool] | bool | None = None,
573
- enter_key_hint: Literal[
574
- "done", "enter", "go", "next", "previous", "search", "send"
575
- ]
576
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
577
- | None = None,
578
- hidden: Var[bool] | bool | None = None,
579
- input_mode: Literal[
580
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
581
- ]
582
- | Var[
583
- Literal[
584
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
585
- ]
586
- ]
587
- | None = None,
588
- item_prop: Var[str] | str | None = None,
589
- lang: Var[str] | str | None = None,
590
- role: Literal[
591
- "alert",
592
- "alertdialog",
593
- "application",
594
- "article",
595
- "banner",
596
- "button",
597
- "cell",
598
- "checkbox",
599
- "columnheader",
600
- "combobox",
601
- "complementary",
602
- "contentinfo",
603
- "definition",
604
- "dialog",
605
- "directory",
606
- "document",
607
- "feed",
608
- "figure",
609
- "form",
610
- "grid",
611
- "gridcell",
612
- "group",
613
- "heading",
614
- "img",
615
- "link",
616
- "list",
617
- "listbox",
618
- "listitem",
619
- "log",
620
- "main",
621
- "marquee",
622
- "math",
623
- "menu",
624
- "menubar",
625
- "menuitem",
626
- "menuitemcheckbox",
627
- "menuitemradio",
628
- "navigation",
629
- "none",
630
- "note",
631
- "option",
632
- "presentation",
633
- "progressbar",
634
- "radio",
635
- "radiogroup",
636
- "region",
637
- "row",
638
- "rowgroup",
639
- "rowheader",
640
- "scrollbar",
641
- "search",
642
- "searchbox",
643
- "separator",
644
- "slider",
645
- "spinbutton",
646
- "status",
647
- "switch",
648
- "tab",
649
- "table",
650
- "tablist",
651
- "tabpanel",
652
- "term",
653
- "textbox",
654
- "timer",
655
- "toolbar",
656
- "tooltip",
657
- "tree",
658
- "treegrid",
659
- "treeitem",
660
- ]
661
- | Var[
662
- Literal[
663
- "alert",
664
- "alertdialog",
665
- "application",
666
- "article",
667
- "banner",
668
- "button",
669
- "cell",
670
- "checkbox",
671
- "columnheader",
672
- "combobox",
673
- "complementary",
674
- "contentinfo",
675
- "definition",
676
- "dialog",
677
- "directory",
678
- "document",
679
- "feed",
680
- "figure",
681
- "form",
682
- "grid",
683
- "gridcell",
684
- "group",
685
- "heading",
686
- "img",
687
- "link",
688
- "list",
689
- "listbox",
690
- "listitem",
691
- "log",
692
- "main",
693
- "marquee",
694
- "math",
695
- "menu",
696
- "menubar",
697
- "menuitem",
698
- "menuitemcheckbox",
699
- "menuitemradio",
700
- "navigation",
701
- "none",
702
- "note",
703
- "option",
704
- "presentation",
705
- "progressbar",
706
- "radio",
707
- "radiogroup",
708
- "region",
709
- "row",
710
- "rowgroup",
711
- "rowheader",
712
- "scrollbar",
713
- "search",
714
- "searchbox",
715
- "separator",
716
- "slider",
717
- "spinbutton",
718
- "status",
719
- "switch",
720
- "tab",
721
- "table",
722
- "tablist",
723
- "tabpanel",
724
- "term",
725
- "textbox",
726
- "timer",
727
- "toolbar",
728
- "tooltip",
729
- "tree",
730
- "treegrid",
731
- "treeitem",
732
- ]
733
- ]
734
- | None = None,
735
- slot: Var[str] | str | None = None,
736
- spell_check: Var[bool] | bool | None = None,
737
- tab_index: Var[int] | int | None = None,
738
- title: Var[str] | str | None = None,
739
367
  style: Sequence[Mapping[str, Any]]
740
368
  | Mapping[str, Any]
741
369
  | Var[Mapping[str, Any]]
@@ -779,22 +407,6 @@ class Span(Text):
779
407
  trim: Removes the leading trim space: "normal" | "start" | "end" | "both"
780
408
  color_scheme: Overrides the accent color inherited from the Theme.
781
409
  high_contrast: Whether to render the text with higher contrast color
782
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
783
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
784
- content_editable: Indicates whether the element's content is editable.
785
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
786
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
787
- draggable: Defines whether the element can be dragged.
788
- enter_key_hint: Hints what media types the media element is able to play.
789
- hidden: Defines whether the element is hidden.
790
- input_mode: Defines the type of the element.
791
- item_prop: Defines the name of the element for metadata purposes.
792
- lang: Defines the language used in the element.
793
- role: Defines the role of the element.
794
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
795
- spell_check: Defines whether the element may be checked for spelling errors.
796
- tab_index: Defines the position of the current element in the tabbing order.
797
- title: Defines a tooltip for the element.
798
410
  style: The style of the component.
799
411
  key: A unique key for the component.
800
412
  id: The id for the component.
@@ -812,184 +424,6 @@ class Em(elements.Em, RadixThemesComponent):
812
424
  def create(
813
425
  cls,
814
426
  *children,
815
- access_key: Var[str] | str | None = None,
816
- auto_capitalize: Literal[
817
- "characters", "none", "off", "on", "sentences", "words"
818
- ]
819
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
820
- | None = None,
821
- content_editable: Literal["inherit", "plaintext-only", False, True]
822
- | Var[Literal["inherit", "plaintext-only", False, True]]
823
- | None = None,
824
- context_menu: Var[str] | str | None = None,
825
- dir: Var[str] | str | None = None,
826
- draggable: Var[bool] | bool | None = None,
827
- enter_key_hint: Literal[
828
- "done", "enter", "go", "next", "previous", "search", "send"
829
- ]
830
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
831
- | None = None,
832
- hidden: Var[bool] | bool | None = None,
833
- input_mode: Literal[
834
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
835
- ]
836
- | Var[
837
- Literal[
838
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
839
- ]
840
- ]
841
- | None = None,
842
- item_prop: Var[str] | str | None = None,
843
- lang: Var[str] | str | None = None,
844
- role: Literal[
845
- "alert",
846
- "alertdialog",
847
- "application",
848
- "article",
849
- "banner",
850
- "button",
851
- "cell",
852
- "checkbox",
853
- "columnheader",
854
- "combobox",
855
- "complementary",
856
- "contentinfo",
857
- "definition",
858
- "dialog",
859
- "directory",
860
- "document",
861
- "feed",
862
- "figure",
863
- "form",
864
- "grid",
865
- "gridcell",
866
- "group",
867
- "heading",
868
- "img",
869
- "link",
870
- "list",
871
- "listbox",
872
- "listitem",
873
- "log",
874
- "main",
875
- "marquee",
876
- "math",
877
- "menu",
878
- "menubar",
879
- "menuitem",
880
- "menuitemcheckbox",
881
- "menuitemradio",
882
- "navigation",
883
- "none",
884
- "note",
885
- "option",
886
- "presentation",
887
- "progressbar",
888
- "radio",
889
- "radiogroup",
890
- "region",
891
- "row",
892
- "rowgroup",
893
- "rowheader",
894
- "scrollbar",
895
- "search",
896
- "searchbox",
897
- "separator",
898
- "slider",
899
- "spinbutton",
900
- "status",
901
- "switch",
902
- "tab",
903
- "table",
904
- "tablist",
905
- "tabpanel",
906
- "term",
907
- "textbox",
908
- "timer",
909
- "toolbar",
910
- "tooltip",
911
- "tree",
912
- "treegrid",
913
- "treeitem",
914
- ]
915
- | Var[
916
- Literal[
917
- "alert",
918
- "alertdialog",
919
- "application",
920
- "article",
921
- "banner",
922
- "button",
923
- "cell",
924
- "checkbox",
925
- "columnheader",
926
- "combobox",
927
- "complementary",
928
- "contentinfo",
929
- "definition",
930
- "dialog",
931
- "directory",
932
- "document",
933
- "feed",
934
- "figure",
935
- "form",
936
- "grid",
937
- "gridcell",
938
- "group",
939
- "heading",
940
- "img",
941
- "link",
942
- "list",
943
- "listbox",
944
- "listitem",
945
- "log",
946
- "main",
947
- "marquee",
948
- "math",
949
- "menu",
950
- "menubar",
951
- "menuitem",
952
- "menuitemcheckbox",
953
- "menuitemradio",
954
- "navigation",
955
- "none",
956
- "note",
957
- "option",
958
- "presentation",
959
- "progressbar",
960
- "radio",
961
- "radiogroup",
962
- "region",
963
- "row",
964
- "rowgroup",
965
- "rowheader",
966
- "scrollbar",
967
- "search",
968
- "searchbox",
969
- "separator",
970
- "slider",
971
- "spinbutton",
972
- "status",
973
- "switch",
974
- "tab",
975
- "table",
976
- "tablist",
977
- "tabpanel",
978
- "term",
979
- "textbox",
980
- "timer",
981
- "toolbar",
982
- "tooltip",
983
- "tree",
984
- "treegrid",
985
- "treeitem",
986
- ]
987
- ]
988
- | None = None,
989
- slot: Var[str] | str | None = None,
990
- spell_check: Var[bool] | bool | None = None,
991
- tab_index: Var[int] | int | None = None,
992
- title: Var[str] | str | None = None,
993
427
  style: Sequence[Mapping[str, Any]]
994
428
  | Mapping[str, Any]
995
429
  | Var[Mapping[str, Any]]
@@ -1025,22 +459,6 @@ class Em(elements.Em, RadixThemesComponent):
1025
459
 
1026
460
  Args:
1027
461
  *children: Child components.
1028
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1029
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1030
- content_editable: Indicates whether the element's content is editable.
1031
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1032
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1033
- draggable: Defines whether the element can be dragged.
1034
- enter_key_hint: Hints what media types the media element is able to play.
1035
- hidden: Defines whether the element is hidden.
1036
- input_mode: Defines the type of the element.
1037
- item_prop: Defines the name of the element for metadata purposes.
1038
- lang: Defines the language used in the element.
1039
- role: Defines the role of the element.
1040
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1041
- spell_check: Defines whether the element may be checked for spelling errors.
1042
- tab_index: Defines the position of the current element in the tabbing order.
1043
- title: Defines a tooltip for the element.
1044
462
  style: The style of the component.
1045
463
  key: A unique key for the component.
1046
464
  id: The id for the component.
@@ -1061,184 +479,6 @@ class Kbd(elements.Kbd, RadixThemesComponent):
1061
479
  size: Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]
1062
480
  | Var[Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]]
1063
481
  | None = None,
1064
- access_key: Var[str] | str | None = None,
1065
- auto_capitalize: Literal[
1066
- "characters", "none", "off", "on", "sentences", "words"
1067
- ]
1068
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1069
- | None = None,
1070
- content_editable: Literal["inherit", "plaintext-only", False, True]
1071
- | Var[Literal["inherit", "plaintext-only", False, True]]
1072
- | None = None,
1073
- context_menu: Var[str] | str | None = None,
1074
- dir: Var[str] | str | None = None,
1075
- draggable: Var[bool] | bool | None = None,
1076
- enter_key_hint: Literal[
1077
- "done", "enter", "go", "next", "previous", "search", "send"
1078
- ]
1079
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1080
- | None = None,
1081
- hidden: Var[bool] | bool | None = None,
1082
- input_mode: Literal[
1083
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1084
- ]
1085
- | Var[
1086
- Literal[
1087
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1088
- ]
1089
- ]
1090
- | None = None,
1091
- item_prop: Var[str] | str | None = None,
1092
- lang: Var[str] | str | None = None,
1093
- role: Literal[
1094
- "alert",
1095
- "alertdialog",
1096
- "application",
1097
- "article",
1098
- "banner",
1099
- "button",
1100
- "cell",
1101
- "checkbox",
1102
- "columnheader",
1103
- "combobox",
1104
- "complementary",
1105
- "contentinfo",
1106
- "definition",
1107
- "dialog",
1108
- "directory",
1109
- "document",
1110
- "feed",
1111
- "figure",
1112
- "form",
1113
- "grid",
1114
- "gridcell",
1115
- "group",
1116
- "heading",
1117
- "img",
1118
- "link",
1119
- "list",
1120
- "listbox",
1121
- "listitem",
1122
- "log",
1123
- "main",
1124
- "marquee",
1125
- "math",
1126
- "menu",
1127
- "menubar",
1128
- "menuitem",
1129
- "menuitemcheckbox",
1130
- "menuitemradio",
1131
- "navigation",
1132
- "none",
1133
- "note",
1134
- "option",
1135
- "presentation",
1136
- "progressbar",
1137
- "radio",
1138
- "radiogroup",
1139
- "region",
1140
- "row",
1141
- "rowgroup",
1142
- "rowheader",
1143
- "scrollbar",
1144
- "search",
1145
- "searchbox",
1146
- "separator",
1147
- "slider",
1148
- "spinbutton",
1149
- "status",
1150
- "switch",
1151
- "tab",
1152
- "table",
1153
- "tablist",
1154
- "tabpanel",
1155
- "term",
1156
- "textbox",
1157
- "timer",
1158
- "toolbar",
1159
- "tooltip",
1160
- "tree",
1161
- "treegrid",
1162
- "treeitem",
1163
- ]
1164
- | Var[
1165
- Literal[
1166
- "alert",
1167
- "alertdialog",
1168
- "application",
1169
- "article",
1170
- "banner",
1171
- "button",
1172
- "cell",
1173
- "checkbox",
1174
- "columnheader",
1175
- "combobox",
1176
- "complementary",
1177
- "contentinfo",
1178
- "definition",
1179
- "dialog",
1180
- "directory",
1181
- "document",
1182
- "feed",
1183
- "figure",
1184
- "form",
1185
- "grid",
1186
- "gridcell",
1187
- "group",
1188
- "heading",
1189
- "img",
1190
- "link",
1191
- "list",
1192
- "listbox",
1193
- "listitem",
1194
- "log",
1195
- "main",
1196
- "marquee",
1197
- "math",
1198
- "menu",
1199
- "menubar",
1200
- "menuitem",
1201
- "menuitemcheckbox",
1202
- "menuitemradio",
1203
- "navigation",
1204
- "none",
1205
- "note",
1206
- "option",
1207
- "presentation",
1208
- "progressbar",
1209
- "radio",
1210
- "radiogroup",
1211
- "region",
1212
- "row",
1213
- "rowgroup",
1214
- "rowheader",
1215
- "scrollbar",
1216
- "search",
1217
- "searchbox",
1218
- "separator",
1219
- "slider",
1220
- "spinbutton",
1221
- "status",
1222
- "switch",
1223
- "tab",
1224
- "table",
1225
- "tablist",
1226
- "tabpanel",
1227
- "term",
1228
- "textbox",
1229
- "timer",
1230
- "toolbar",
1231
- "tooltip",
1232
- "tree",
1233
- "treegrid",
1234
- "treeitem",
1235
- ]
1236
- ]
1237
- | None = None,
1238
- slot: Var[str] | str | None = None,
1239
- spell_check: Var[bool] | bool | None = None,
1240
- tab_index: Var[int] | int | None = None,
1241
- title: Var[str] | str | None = None,
1242
482
  style: Sequence[Mapping[str, Any]]
1243
483
  | Mapping[str, Any]
1244
484
  | Var[Mapping[str, Any]]
@@ -1275,22 +515,6 @@ class Kbd(elements.Kbd, RadixThemesComponent):
1275
515
  Args:
1276
516
  *children: Child components.
1277
517
  size: Text size: "1" - "9"
1278
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1279
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1280
- content_editable: Indicates whether the element's content is editable.
1281
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1282
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1283
- draggable: Defines whether the element can be dragged.
1284
- enter_key_hint: Hints what media types the media element is able to play.
1285
- hidden: Defines whether the element is hidden.
1286
- input_mode: Defines the type of the element.
1287
- item_prop: Defines the name of the element for metadata purposes.
1288
- lang: Defines the language used in the element.
1289
- role: Defines the role of the element.
1290
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1291
- spell_check: Defines whether the element may be checked for spelling errors.
1292
- tab_index: Defines the position of the current element in the tabbing order.
1293
- title: Defines a tooltip for the element.
1294
518
  style: The style of the component.
1295
519
  key: A unique key for the component.
1296
520
  id: The id for the component.
@@ -1308,185 +532,6 @@ class Quote(elements.Q, RadixThemesComponent):
1308
532
  def create(
1309
533
  cls,
1310
534
  *children,
1311
- cite: Var[str] | str | None = None,
1312
- access_key: Var[str] | str | None = None,
1313
- auto_capitalize: Literal[
1314
- "characters", "none", "off", "on", "sentences", "words"
1315
- ]
1316
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1317
- | None = None,
1318
- content_editable: Literal["inherit", "plaintext-only", False, True]
1319
- | Var[Literal["inherit", "plaintext-only", False, True]]
1320
- | None = None,
1321
- context_menu: Var[str] | str | None = None,
1322
- dir: Var[str] | str | None = None,
1323
- draggable: Var[bool] | bool | None = None,
1324
- enter_key_hint: Literal[
1325
- "done", "enter", "go", "next", "previous", "search", "send"
1326
- ]
1327
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1328
- | None = None,
1329
- hidden: Var[bool] | bool | None = None,
1330
- input_mode: Literal[
1331
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1332
- ]
1333
- | Var[
1334
- Literal[
1335
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1336
- ]
1337
- ]
1338
- | None = None,
1339
- item_prop: Var[str] | str | None = None,
1340
- lang: Var[str] | str | None = None,
1341
- role: Literal[
1342
- "alert",
1343
- "alertdialog",
1344
- "application",
1345
- "article",
1346
- "banner",
1347
- "button",
1348
- "cell",
1349
- "checkbox",
1350
- "columnheader",
1351
- "combobox",
1352
- "complementary",
1353
- "contentinfo",
1354
- "definition",
1355
- "dialog",
1356
- "directory",
1357
- "document",
1358
- "feed",
1359
- "figure",
1360
- "form",
1361
- "grid",
1362
- "gridcell",
1363
- "group",
1364
- "heading",
1365
- "img",
1366
- "link",
1367
- "list",
1368
- "listbox",
1369
- "listitem",
1370
- "log",
1371
- "main",
1372
- "marquee",
1373
- "math",
1374
- "menu",
1375
- "menubar",
1376
- "menuitem",
1377
- "menuitemcheckbox",
1378
- "menuitemradio",
1379
- "navigation",
1380
- "none",
1381
- "note",
1382
- "option",
1383
- "presentation",
1384
- "progressbar",
1385
- "radio",
1386
- "radiogroup",
1387
- "region",
1388
- "row",
1389
- "rowgroup",
1390
- "rowheader",
1391
- "scrollbar",
1392
- "search",
1393
- "searchbox",
1394
- "separator",
1395
- "slider",
1396
- "spinbutton",
1397
- "status",
1398
- "switch",
1399
- "tab",
1400
- "table",
1401
- "tablist",
1402
- "tabpanel",
1403
- "term",
1404
- "textbox",
1405
- "timer",
1406
- "toolbar",
1407
- "tooltip",
1408
- "tree",
1409
- "treegrid",
1410
- "treeitem",
1411
- ]
1412
- | Var[
1413
- Literal[
1414
- "alert",
1415
- "alertdialog",
1416
- "application",
1417
- "article",
1418
- "banner",
1419
- "button",
1420
- "cell",
1421
- "checkbox",
1422
- "columnheader",
1423
- "combobox",
1424
- "complementary",
1425
- "contentinfo",
1426
- "definition",
1427
- "dialog",
1428
- "directory",
1429
- "document",
1430
- "feed",
1431
- "figure",
1432
- "form",
1433
- "grid",
1434
- "gridcell",
1435
- "group",
1436
- "heading",
1437
- "img",
1438
- "link",
1439
- "list",
1440
- "listbox",
1441
- "listitem",
1442
- "log",
1443
- "main",
1444
- "marquee",
1445
- "math",
1446
- "menu",
1447
- "menubar",
1448
- "menuitem",
1449
- "menuitemcheckbox",
1450
- "menuitemradio",
1451
- "navigation",
1452
- "none",
1453
- "note",
1454
- "option",
1455
- "presentation",
1456
- "progressbar",
1457
- "radio",
1458
- "radiogroup",
1459
- "region",
1460
- "row",
1461
- "rowgroup",
1462
- "rowheader",
1463
- "scrollbar",
1464
- "search",
1465
- "searchbox",
1466
- "separator",
1467
- "slider",
1468
- "spinbutton",
1469
- "status",
1470
- "switch",
1471
- "tab",
1472
- "table",
1473
- "tablist",
1474
- "tabpanel",
1475
- "term",
1476
- "textbox",
1477
- "timer",
1478
- "toolbar",
1479
- "tooltip",
1480
- "tree",
1481
- "treegrid",
1482
- "treeitem",
1483
- ]
1484
- ]
1485
- | None = None,
1486
- slot: Var[str] | str | None = None,
1487
- spell_check: Var[bool] | bool | None = None,
1488
- tab_index: Var[int] | int | None = None,
1489
- title: Var[str] | str | None = None,
1490
535
  style: Sequence[Mapping[str, Any]]
1491
536
  | Mapping[str, Any]
1492
537
  | Var[Mapping[str, Any]]
@@ -1522,23 +567,6 @@ class Quote(elements.Q, RadixThemesComponent):
1522
567
 
1523
568
  Args:
1524
569
  *children: Child components.
1525
- cite: Specifies the source URL of the quote.
1526
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1527
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1528
- content_editable: Indicates whether the element's content is editable.
1529
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1530
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1531
- draggable: Defines whether the element can be dragged.
1532
- enter_key_hint: Hints what media types the media element is able to play.
1533
- hidden: Defines whether the element is hidden.
1534
- input_mode: Defines the type of the element.
1535
- item_prop: Defines the name of the element for metadata purposes.
1536
- lang: Defines the language used in the element.
1537
- role: Defines the role of the element.
1538
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1539
- spell_check: Defines whether the element may be checked for spelling errors.
1540
- tab_index: Defines the position of the current element in the tabbing order.
1541
- title: Defines a tooltip for the element.
1542
570
  style: The style of the component.
1543
571
  key: A unique key for the component.
1544
572
  id: The id for the component.
@@ -1556,184 +584,6 @@ class Strong(elements.Strong, RadixThemesComponent):
1556
584
  def create(
1557
585
  cls,
1558
586
  *children,
1559
- access_key: Var[str] | str | None = None,
1560
- auto_capitalize: Literal[
1561
- "characters", "none", "off", "on", "sentences", "words"
1562
- ]
1563
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1564
- | None = None,
1565
- content_editable: Literal["inherit", "plaintext-only", False, True]
1566
- | Var[Literal["inherit", "plaintext-only", False, True]]
1567
- | None = None,
1568
- context_menu: Var[str] | str | None = None,
1569
- dir: Var[str] | str | None = None,
1570
- draggable: Var[bool] | bool | None = None,
1571
- enter_key_hint: Literal[
1572
- "done", "enter", "go", "next", "previous", "search", "send"
1573
- ]
1574
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1575
- | None = None,
1576
- hidden: Var[bool] | bool | None = None,
1577
- input_mode: Literal[
1578
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1579
- ]
1580
- | Var[
1581
- Literal[
1582
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1583
- ]
1584
- ]
1585
- | None = None,
1586
- item_prop: Var[str] | str | None = None,
1587
- lang: Var[str] | str | None = None,
1588
- role: Literal[
1589
- "alert",
1590
- "alertdialog",
1591
- "application",
1592
- "article",
1593
- "banner",
1594
- "button",
1595
- "cell",
1596
- "checkbox",
1597
- "columnheader",
1598
- "combobox",
1599
- "complementary",
1600
- "contentinfo",
1601
- "definition",
1602
- "dialog",
1603
- "directory",
1604
- "document",
1605
- "feed",
1606
- "figure",
1607
- "form",
1608
- "grid",
1609
- "gridcell",
1610
- "group",
1611
- "heading",
1612
- "img",
1613
- "link",
1614
- "list",
1615
- "listbox",
1616
- "listitem",
1617
- "log",
1618
- "main",
1619
- "marquee",
1620
- "math",
1621
- "menu",
1622
- "menubar",
1623
- "menuitem",
1624
- "menuitemcheckbox",
1625
- "menuitemradio",
1626
- "navigation",
1627
- "none",
1628
- "note",
1629
- "option",
1630
- "presentation",
1631
- "progressbar",
1632
- "radio",
1633
- "radiogroup",
1634
- "region",
1635
- "row",
1636
- "rowgroup",
1637
- "rowheader",
1638
- "scrollbar",
1639
- "search",
1640
- "searchbox",
1641
- "separator",
1642
- "slider",
1643
- "spinbutton",
1644
- "status",
1645
- "switch",
1646
- "tab",
1647
- "table",
1648
- "tablist",
1649
- "tabpanel",
1650
- "term",
1651
- "textbox",
1652
- "timer",
1653
- "toolbar",
1654
- "tooltip",
1655
- "tree",
1656
- "treegrid",
1657
- "treeitem",
1658
- ]
1659
- | Var[
1660
- Literal[
1661
- "alert",
1662
- "alertdialog",
1663
- "application",
1664
- "article",
1665
- "banner",
1666
- "button",
1667
- "cell",
1668
- "checkbox",
1669
- "columnheader",
1670
- "combobox",
1671
- "complementary",
1672
- "contentinfo",
1673
- "definition",
1674
- "dialog",
1675
- "directory",
1676
- "document",
1677
- "feed",
1678
- "figure",
1679
- "form",
1680
- "grid",
1681
- "gridcell",
1682
- "group",
1683
- "heading",
1684
- "img",
1685
- "link",
1686
- "list",
1687
- "listbox",
1688
- "listitem",
1689
- "log",
1690
- "main",
1691
- "marquee",
1692
- "math",
1693
- "menu",
1694
- "menubar",
1695
- "menuitem",
1696
- "menuitemcheckbox",
1697
- "menuitemradio",
1698
- "navigation",
1699
- "none",
1700
- "note",
1701
- "option",
1702
- "presentation",
1703
- "progressbar",
1704
- "radio",
1705
- "radiogroup",
1706
- "region",
1707
- "row",
1708
- "rowgroup",
1709
- "rowheader",
1710
- "scrollbar",
1711
- "search",
1712
- "searchbox",
1713
- "separator",
1714
- "slider",
1715
- "spinbutton",
1716
- "status",
1717
- "switch",
1718
- "tab",
1719
- "table",
1720
- "tablist",
1721
- "tabpanel",
1722
- "term",
1723
- "textbox",
1724
- "timer",
1725
- "toolbar",
1726
- "tooltip",
1727
- "tree",
1728
- "treegrid",
1729
- "treeitem",
1730
- ]
1731
- ]
1732
- | None = None,
1733
- slot: Var[str] | str | None = None,
1734
- spell_check: Var[bool] | bool | None = None,
1735
- tab_index: Var[int] | int | None = None,
1736
- title: Var[str] | str | None = None,
1737
587
  style: Sequence[Mapping[str, Any]]
1738
588
  | Mapping[str, Any]
1739
589
  | Var[Mapping[str, Any]]
@@ -1769,22 +619,6 @@ class Strong(elements.Strong, RadixThemesComponent):
1769
619
 
1770
620
  Args:
1771
621
  *children: Child components.
1772
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
1773
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
1774
- content_editable: Indicates whether the element's content is editable.
1775
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
1776
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
1777
- draggable: Defines whether the element can be dragged.
1778
- enter_key_hint: Hints what media types the media element is able to play.
1779
- hidden: Defines whether the element is hidden.
1780
- input_mode: Defines the type of the element.
1781
- item_prop: Defines the name of the element for metadata purposes.
1782
- lang: Defines the language used in the element.
1783
- role: Defines the role of the element.
1784
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
1785
- spell_check: Defines whether the element may be checked for spelling errors.
1786
- tab_index: Defines the position of the current element in the tabbing order.
1787
- title: Defines a tooltip for the element.
1788
622
  style: The style of the component.
1789
623
  key: A unique key for the component.
1790
624
  id: The id for the component.
@@ -1939,184 +773,6 @@ class TextNamespace(ComponentNamespace):
1939
773
  ]
1940
774
  | None = None,
1941
775
  high_contrast: Var[bool] | bool | None = None,
1942
- access_key: Var[str] | str | None = None,
1943
- auto_capitalize: Literal[
1944
- "characters", "none", "off", "on", "sentences", "words"
1945
- ]
1946
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
1947
- | None = None,
1948
- content_editable: Literal["inherit", "plaintext-only", False, True]
1949
- | Var[Literal["inherit", "plaintext-only", False, True]]
1950
- | None = None,
1951
- context_menu: Var[str] | str | None = None,
1952
- dir: Var[str] | str | None = None,
1953
- draggable: Var[bool] | bool | None = None,
1954
- enter_key_hint: Literal[
1955
- "done", "enter", "go", "next", "previous", "search", "send"
1956
- ]
1957
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
1958
- | None = None,
1959
- hidden: Var[bool] | bool | None = None,
1960
- input_mode: Literal[
1961
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1962
- ]
1963
- | Var[
1964
- Literal[
1965
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
1966
- ]
1967
- ]
1968
- | None = None,
1969
- item_prop: Var[str] | str | None = None,
1970
- lang: Var[str] | str | None = None,
1971
- role: Literal[
1972
- "alert",
1973
- "alertdialog",
1974
- "application",
1975
- "article",
1976
- "banner",
1977
- "button",
1978
- "cell",
1979
- "checkbox",
1980
- "columnheader",
1981
- "combobox",
1982
- "complementary",
1983
- "contentinfo",
1984
- "definition",
1985
- "dialog",
1986
- "directory",
1987
- "document",
1988
- "feed",
1989
- "figure",
1990
- "form",
1991
- "grid",
1992
- "gridcell",
1993
- "group",
1994
- "heading",
1995
- "img",
1996
- "link",
1997
- "list",
1998
- "listbox",
1999
- "listitem",
2000
- "log",
2001
- "main",
2002
- "marquee",
2003
- "math",
2004
- "menu",
2005
- "menubar",
2006
- "menuitem",
2007
- "menuitemcheckbox",
2008
- "menuitemradio",
2009
- "navigation",
2010
- "none",
2011
- "note",
2012
- "option",
2013
- "presentation",
2014
- "progressbar",
2015
- "radio",
2016
- "radiogroup",
2017
- "region",
2018
- "row",
2019
- "rowgroup",
2020
- "rowheader",
2021
- "scrollbar",
2022
- "search",
2023
- "searchbox",
2024
- "separator",
2025
- "slider",
2026
- "spinbutton",
2027
- "status",
2028
- "switch",
2029
- "tab",
2030
- "table",
2031
- "tablist",
2032
- "tabpanel",
2033
- "term",
2034
- "textbox",
2035
- "timer",
2036
- "toolbar",
2037
- "tooltip",
2038
- "tree",
2039
- "treegrid",
2040
- "treeitem",
2041
- ]
2042
- | Var[
2043
- Literal[
2044
- "alert",
2045
- "alertdialog",
2046
- "application",
2047
- "article",
2048
- "banner",
2049
- "button",
2050
- "cell",
2051
- "checkbox",
2052
- "columnheader",
2053
- "combobox",
2054
- "complementary",
2055
- "contentinfo",
2056
- "definition",
2057
- "dialog",
2058
- "directory",
2059
- "document",
2060
- "feed",
2061
- "figure",
2062
- "form",
2063
- "grid",
2064
- "gridcell",
2065
- "group",
2066
- "heading",
2067
- "img",
2068
- "link",
2069
- "list",
2070
- "listbox",
2071
- "listitem",
2072
- "log",
2073
- "main",
2074
- "marquee",
2075
- "math",
2076
- "menu",
2077
- "menubar",
2078
- "menuitem",
2079
- "menuitemcheckbox",
2080
- "menuitemradio",
2081
- "navigation",
2082
- "none",
2083
- "note",
2084
- "option",
2085
- "presentation",
2086
- "progressbar",
2087
- "radio",
2088
- "radiogroup",
2089
- "region",
2090
- "row",
2091
- "rowgroup",
2092
- "rowheader",
2093
- "scrollbar",
2094
- "search",
2095
- "searchbox",
2096
- "separator",
2097
- "slider",
2098
- "spinbutton",
2099
- "status",
2100
- "switch",
2101
- "tab",
2102
- "table",
2103
- "tablist",
2104
- "tabpanel",
2105
- "term",
2106
- "textbox",
2107
- "timer",
2108
- "toolbar",
2109
- "tooltip",
2110
- "tree",
2111
- "treegrid",
2112
- "treeitem",
2113
- ]
2114
- ]
2115
- | None = None,
2116
- slot: Var[str] | str | None = None,
2117
- spell_check: Var[bool] | bool | None = None,
2118
- tab_index: Var[int] | int | None = None,
2119
- title: Var[str] | str | None = None,
2120
776
  style: Sequence[Mapping[str, Any]]
2121
777
  | Mapping[str, Any]
2122
778
  | Var[Mapping[str, Any]]
@@ -2160,22 +816,6 @@ class TextNamespace(ComponentNamespace):
2160
816
  trim: Removes the leading trim space: "normal" | "start" | "end" | "both"
2161
817
  color_scheme: Overrides the accent color inherited from the Theme.
2162
818
  high_contrast: Whether to render the text with higher contrast color
2163
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
2164
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
2165
- content_editable: Indicates whether the element's content is editable.
2166
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
2167
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
2168
- draggable: Defines whether the element can be dragged.
2169
- enter_key_hint: Hints what media types the media element is able to play.
2170
- hidden: Defines whether the element is hidden.
2171
- input_mode: Defines the type of the element.
2172
- item_prop: Defines the name of the element for metadata purposes.
2173
- lang: Defines the language used in the element.
2174
- role: Defines the role of the element.
2175
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
2176
- spell_check: Defines whether the element may be checked for spelling errors.
2177
- tab_index: Defines the position of the current element in the tabbing order.
2178
- title: Defines a tooltip for the element.
2179
819
  style: The style of the component.
2180
820
  key: A unique key for the component.
2181
821
  id: The id for the component.