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
@@ -59,184 +59,6 @@ class Stack(Flex):
59
59
  | Literal["nowrap", "wrap", "wrap-reverse"]
60
60
  ]
61
61
  | None = None,
62
- access_key: Var[str] | str | None = None,
63
- auto_capitalize: Literal[
64
- "characters", "none", "off", "on", "sentences", "words"
65
- ]
66
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
67
- | None = None,
68
- content_editable: Literal["inherit", "plaintext-only", False, True]
69
- | Var[Literal["inherit", "plaintext-only", False, True]]
70
- | None = None,
71
- context_menu: Var[str] | str | None = None,
72
- dir: Var[str] | str | None = None,
73
- draggable: Var[bool] | bool | None = None,
74
- enter_key_hint: Literal[
75
- "done", "enter", "go", "next", "previous", "search", "send"
76
- ]
77
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
78
- | None = None,
79
- hidden: Var[bool] | bool | None = None,
80
- input_mode: Literal[
81
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
82
- ]
83
- | Var[
84
- Literal[
85
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
86
- ]
87
- ]
88
- | None = None,
89
- item_prop: Var[str] | str | None = None,
90
- lang: Var[str] | str | None = None,
91
- role: Literal[
92
- "alert",
93
- "alertdialog",
94
- "application",
95
- "article",
96
- "banner",
97
- "button",
98
- "cell",
99
- "checkbox",
100
- "columnheader",
101
- "combobox",
102
- "complementary",
103
- "contentinfo",
104
- "definition",
105
- "dialog",
106
- "directory",
107
- "document",
108
- "feed",
109
- "figure",
110
- "form",
111
- "grid",
112
- "gridcell",
113
- "group",
114
- "heading",
115
- "img",
116
- "link",
117
- "list",
118
- "listbox",
119
- "listitem",
120
- "log",
121
- "main",
122
- "marquee",
123
- "math",
124
- "menu",
125
- "menubar",
126
- "menuitem",
127
- "menuitemcheckbox",
128
- "menuitemradio",
129
- "navigation",
130
- "none",
131
- "note",
132
- "option",
133
- "presentation",
134
- "progressbar",
135
- "radio",
136
- "radiogroup",
137
- "region",
138
- "row",
139
- "rowgroup",
140
- "rowheader",
141
- "scrollbar",
142
- "search",
143
- "searchbox",
144
- "separator",
145
- "slider",
146
- "spinbutton",
147
- "status",
148
- "switch",
149
- "tab",
150
- "table",
151
- "tablist",
152
- "tabpanel",
153
- "term",
154
- "textbox",
155
- "timer",
156
- "toolbar",
157
- "tooltip",
158
- "tree",
159
- "treegrid",
160
- "treeitem",
161
- ]
162
- | Var[
163
- Literal[
164
- "alert",
165
- "alertdialog",
166
- "application",
167
- "article",
168
- "banner",
169
- "button",
170
- "cell",
171
- "checkbox",
172
- "columnheader",
173
- "combobox",
174
- "complementary",
175
- "contentinfo",
176
- "definition",
177
- "dialog",
178
- "directory",
179
- "document",
180
- "feed",
181
- "figure",
182
- "form",
183
- "grid",
184
- "gridcell",
185
- "group",
186
- "heading",
187
- "img",
188
- "link",
189
- "list",
190
- "listbox",
191
- "listitem",
192
- "log",
193
- "main",
194
- "marquee",
195
- "math",
196
- "menu",
197
- "menubar",
198
- "menuitem",
199
- "menuitemcheckbox",
200
- "menuitemradio",
201
- "navigation",
202
- "none",
203
- "note",
204
- "option",
205
- "presentation",
206
- "progressbar",
207
- "radio",
208
- "radiogroup",
209
- "region",
210
- "row",
211
- "rowgroup",
212
- "rowheader",
213
- "scrollbar",
214
- "search",
215
- "searchbox",
216
- "separator",
217
- "slider",
218
- "spinbutton",
219
- "status",
220
- "switch",
221
- "tab",
222
- "table",
223
- "tablist",
224
- "tabpanel",
225
- "term",
226
- "textbox",
227
- "timer",
228
- "toolbar",
229
- "tooltip",
230
- "tree",
231
- "treegrid",
232
- "treeitem",
233
- ]
234
- ]
235
- | None = None,
236
- slot: Var[str] | str | None = None,
237
- spell_check: Var[bool] | bool | None = None,
238
- tab_index: Var[int] | int | None = None,
239
- title: Var[str] | str | None = None,
240
62
  style: Sequence[Mapping[str, Any]]
241
63
  | Mapping[str, Any]
242
64
  | Var[Mapping[str, Any]]
@@ -275,22 +97,6 @@ class Stack(Flex):
275
97
  direction: How child items are laid out: "row" | "column" | "row-reverse" | "column-reverse"
276
98
  justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between"
277
99
  wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse"
278
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
279
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
280
- content_editable: Indicates whether the element's content is editable.
281
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
282
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
283
- draggable: Defines whether the element can be dragged.
284
- enter_key_hint: Hints what media types the media element is able to play.
285
- hidden: Defines whether the element is hidden.
286
- input_mode: Defines the type of the element.
287
- item_prop: Defines the name of the element for metadata purposes.
288
- lang: Defines the language used in the element.
289
- role: Defines the role of the element.
290
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
291
- spell_check: Defines whether the element may be checked for spelling errors.
292
- tab_index: Defines the position of the current element in the tabbing order.
293
- title: Defines a tooltip for the element.
294
100
  style: The style of the component.
295
101
  key: A unique key for the component.
296
102
  id: The id for the component.
@@ -350,184 +156,6 @@ class VStack(Stack):
350
156
  | Literal["nowrap", "wrap", "wrap-reverse"]
351
157
  ]
352
158
  | None = None,
353
- access_key: Var[str] | str | None = None,
354
- auto_capitalize: Literal[
355
- "characters", "none", "off", "on", "sentences", "words"
356
- ]
357
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
358
- | None = None,
359
- content_editable: Literal["inherit", "plaintext-only", False, True]
360
- | Var[Literal["inherit", "plaintext-only", False, True]]
361
- | None = None,
362
- context_menu: Var[str] | str | None = None,
363
- dir: Var[str] | str | None = None,
364
- draggable: Var[bool] | bool | None = None,
365
- enter_key_hint: Literal[
366
- "done", "enter", "go", "next", "previous", "search", "send"
367
- ]
368
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
369
- | None = None,
370
- hidden: Var[bool] | bool | None = None,
371
- input_mode: Literal[
372
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
373
- ]
374
- | Var[
375
- Literal[
376
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
377
- ]
378
- ]
379
- | None = None,
380
- item_prop: Var[str] | str | None = None,
381
- lang: Var[str] | str | None = None,
382
- role: Literal[
383
- "alert",
384
- "alertdialog",
385
- "application",
386
- "article",
387
- "banner",
388
- "button",
389
- "cell",
390
- "checkbox",
391
- "columnheader",
392
- "combobox",
393
- "complementary",
394
- "contentinfo",
395
- "definition",
396
- "dialog",
397
- "directory",
398
- "document",
399
- "feed",
400
- "figure",
401
- "form",
402
- "grid",
403
- "gridcell",
404
- "group",
405
- "heading",
406
- "img",
407
- "link",
408
- "list",
409
- "listbox",
410
- "listitem",
411
- "log",
412
- "main",
413
- "marquee",
414
- "math",
415
- "menu",
416
- "menubar",
417
- "menuitem",
418
- "menuitemcheckbox",
419
- "menuitemradio",
420
- "navigation",
421
- "none",
422
- "note",
423
- "option",
424
- "presentation",
425
- "progressbar",
426
- "radio",
427
- "radiogroup",
428
- "region",
429
- "row",
430
- "rowgroup",
431
- "rowheader",
432
- "scrollbar",
433
- "search",
434
- "searchbox",
435
- "separator",
436
- "slider",
437
- "spinbutton",
438
- "status",
439
- "switch",
440
- "tab",
441
- "table",
442
- "tablist",
443
- "tabpanel",
444
- "term",
445
- "textbox",
446
- "timer",
447
- "toolbar",
448
- "tooltip",
449
- "tree",
450
- "treegrid",
451
- "treeitem",
452
- ]
453
- | Var[
454
- Literal[
455
- "alert",
456
- "alertdialog",
457
- "application",
458
- "article",
459
- "banner",
460
- "button",
461
- "cell",
462
- "checkbox",
463
- "columnheader",
464
- "combobox",
465
- "complementary",
466
- "contentinfo",
467
- "definition",
468
- "dialog",
469
- "directory",
470
- "document",
471
- "feed",
472
- "figure",
473
- "form",
474
- "grid",
475
- "gridcell",
476
- "group",
477
- "heading",
478
- "img",
479
- "link",
480
- "list",
481
- "listbox",
482
- "listitem",
483
- "log",
484
- "main",
485
- "marquee",
486
- "math",
487
- "menu",
488
- "menubar",
489
- "menuitem",
490
- "menuitemcheckbox",
491
- "menuitemradio",
492
- "navigation",
493
- "none",
494
- "note",
495
- "option",
496
- "presentation",
497
- "progressbar",
498
- "radio",
499
- "radiogroup",
500
- "region",
501
- "row",
502
- "rowgroup",
503
- "rowheader",
504
- "scrollbar",
505
- "search",
506
- "searchbox",
507
- "separator",
508
- "slider",
509
- "spinbutton",
510
- "status",
511
- "switch",
512
- "tab",
513
- "table",
514
- "tablist",
515
- "tabpanel",
516
- "term",
517
- "textbox",
518
- "timer",
519
- "toolbar",
520
- "tooltip",
521
- "tree",
522
- "treegrid",
523
- "treeitem",
524
- ]
525
- ]
526
- | None = None,
527
- slot: Var[str] | str | None = None,
528
- spell_check: Var[bool] | bool | None = None,
529
- tab_index: Var[int] | int | None = None,
530
- title: Var[str] | str | None = None,
531
159
  style: Sequence[Mapping[str, Any]]
532
160
  | Mapping[str, Any]
533
161
  | Var[Mapping[str, Any]]
@@ -566,22 +194,6 @@ class VStack(Stack):
566
194
  as_child: Change the default rendered element for the one passed as a child, merging their props and behavior.
567
195
  justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between"
568
196
  wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse"
569
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
570
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
571
- content_editable: Indicates whether the element's content is editable.
572
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
573
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
574
- draggable: Defines whether the element can be dragged.
575
- enter_key_hint: Hints what media types the media element is able to play.
576
- hidden: Defines whether the element is hidden.
577
- input_mode: Defines the type of the element.
578
- item_prop: Defines the name of the element for metadata purposes.
579
- lang: Defines the language used in the element.
580
- role: Defines the role of the element.
581
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
582
- spell_check: Defines whether the element may be checked for spelling errors.
583
- tab_index: Defines the position of the current element in the tabbing order.
584
- title: Defines a tooltip for the element.
585
197
  style: The style of the component.
586
198
  key: A unique key for the component.
587
199
  id: The id for the component.
@@ -641,184 +253,6 @@ class HStack(Stack):
641
253
  | Literal["nowrap", "wrap", "wrap-reverse"]
642
254
  ]
643
255
  | None = None,
644
- access_key: Var[str] | str | None = None,
645
- auto_capitalize: Literal[
646
- "characters", "none", "off", "on", "sentences", "words"
647
- ]
648
- | Var[Literal["characters", "none", "off", "on", "sentences", "words"]]
649
- | None = None,
650
- content_editable: Literal["inherit", "plaintext-only", False, True]
651
- | Var[Literal["inherit", "plaintext-only", False, True]]
652
- | None = None,
653
- context_menu: Var[str] | str | None = None,
654
- dir: Var[str] | str | None = None,
655
- draggable: Var[bool] | bool | None = None,
656
- enter_key_hint: Literal[
657
- "done", "enter", "go", "next", "previous", "search", "send"
658
- ]
659
- | Var[Literal["done", "enter", "go", "next", "previous", "search", "send"]]
660
- | None = None,
661
- hidden: Var[bool] | bool | None = None,
662
- input_mode: Literal[
663
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
664
- ]
665
- | Var[
666
- Literal[
667
- "decimal", "email", "none", "numeric", "search", "tel", "text", "url"
668
- ]
669
- ]
670
- | None = None,
671
- item_prop: Var[str] | str | None = None,
672
- lang: Var[str] | str | None = None,
673
- role: Literal[
674
- "alert",
675
- "alertdialog",
676
- "application",
677
- "article",
678
- "banner",
679
- "button",
680
- "cell",
681
- "checkbox",
682
- "columnheader",
683
- "combobox",
684
- "complementary",
685
- "contentinfo",
686
- "definition",
687
- "dialog",
688
- "directory",
689
- "document",
690
- "feed",
691
- "figure",
692
- "form",
693
- "grid",
694
- "gridcell",
695
- "group",
696
- "heading",
697
- "img",
698
- "link",
699
- "list",
700
- "listbox",
701
- "listitem",
702
- "log",
703
- "main",
704
- "marquee",
705
- "math",
706
- "menu",
707
- "menubar",
708
- "menuitem",
709
- "menuitemcheckbox",
710
- "menuitemradio",
711
- "navigation",
712
- "none",
713
- "note",
714
- "option",
715
- "presentation",
716
- "progressbar",
717
- "radio",
718
- "radiogroup",
719
- "region",
720
- "row",
721
- "rowgroup",
722
- "rowheader",
723
- "scrollbar",
724
- "search",
725
- "searchbox",
726
- "separator",
727
- "slider",
728
- "spinbutton",
729
- "status",
730
- "switch",
731
- "tab",
732
- "table",
733
- "tablist",
734
- "tabpanel",
735
- "term",
736
- "textbox",
737
- "timer",
738
- "toolbar",
739
- "tooltip",
740
- "tree",
741
- "treegrid",
742
- "treeitem",
743
- ]
744
- | Var[
745
- Literal[
746
- "alert",
747
- "alertdialog",
748
- "application",
749
- "article",
750
- "banner",
751
- "button",
752
- "cell",
753
- "checkbox",
754
- "columnheader",
755
- "combobox",
756
- "complementary",
757
- "contentinfo",
758
- "definition",
759
- "dialog",
760
- "directory",
761
- "document",
762
- "feed",
763
- "figure",
764
- "form",
765
- "grid",
766
- "gridcell",
767
- "group",
768
- "heading",
769
- "img",
770
- "link",
771
- "list",
772
- "listbox",
773
- "listitem",
774
- "log",
775
- "main",
776
- "marquee",
777
- "math",
778
- "menu",
779
- "menubar",
780
- "menuitem",
781
- "menuitemcheckbox",
782
- "menuitemradio",
783
- "navigation",
784
- "none",
785
- "note",
786
- "option",
787
- "presentation",
788
- "progressbar",
789
- "radio",
790
- "radiogroup",
791
- "region",
792
- "row",
793
- "rowgroup",
794
- "rowheader",
795
- "scrollbar",
796
- "search",
797
- "searchbox",
798
- "separator",
799
- "slider",
800
- "spinbutton",
801
- "status",
802
- "switch",
803
- "tab",
804
- "table",
805
- "tablist",
806
- "tabpanel",
807
- "term",
808
- "textbox",
809
- "timer",
810
- "toolbar",
811
- "tooltip",
812
- "tree",
813
- "treegrid",
814
- "treeitem",
815
- ]
816
- ]
817
- | None = None,
818
- slot: Var[str] | str | None = None,
819
- spell_check: Var[bool] | bool | None = None,
820
- tab_index: Var[int] | int | None = None,
821
- title: Var[str] | str | None = None,
822
256
  style: Sequence[Mapping[str, Any]]
823
257
  | Mapping[str, Any]
824
258
  | Var[Mapping[str, Any]]
@@ -857,22 +291,6 @@ class HStack(Stack):
857
291
  as_child: Change the default rendered element for the one passed as a child, merging their props and behavior.
858
292
  justify: Alignment of children along the cross axis: "start" | "center" | "end" | "between"
859
293
  wrap: Whether children should wrap when they reach the end of their container: "nowrap" | "wrap" | "wrap-reverse"
860
- access_key: Provides a hint for generating a keyboard shortcut for the current element.
861
- auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
862
- content_editable: Indicates whether the element's content is editable.
863
- context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
864
- dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
865
- draggable: Defines whether the element can be dragged.
866
- enter_key_hint: Hints what media types the media element is able to play.
867
- hidden: Defines whether the element is hidden.
868
- input_mode: Defines the type of the element.
869
- item_prop: Defines the name of the element for metadata purposes.
870
- lang: Defines the language used in the element.
871
- role: Defines the role of the element.
872
- slot: Assigns a slot in a shadow DOM shadow tree to an element.
873
- spell_check: Defines whether the element may be checked for spelling errors.
874
- tab_index: Defines the position of the current element in the tabbing order.
875
- title: Defines a tooltip for the element.
876
294
  style: The style of the component.
877
295
  key: A unique key for the component.
878
296
  id: The id for the component.