reflex 0.7.0a5__py3-none-any.whl → 0.7.1__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 (127) hide show
  1. reflex/.templates/jinja/web/package.json.jinja2 +7 -1
  2. reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +3 -1
  3. reflex/__init__.py +1 -0
  4. reflex/__init__.pyi +1 -0
  5. reflex/app.py +268 -85
  6. reflex/base.py +4 -10
  7. reflex/compiler/compiler.py +46 -12
  8. reflex/compiler/templates.py +1 -2
  9. reflex/compiler/utils.py +23 -14
  10. reflex/components/base/bare.py +109 -16
  11. reflex/components/component.py +179 -124
  12. reflex/components/core/__init__.py +1 -0
  13. reflex/components/core/__init__.pyi +1 -0
  14. reflex/components/core/auto_scroll.py +114 -0
  15. reflex/components/core/auto_scroll.pyi +284 -0
  16. reflex/components/core/banner.py +40 -9
  17. reflex/components/core/banner.pyi +400 -87
  18. reflex/components/core/breakpoints.py +1 -1
  19. reflex/components/core/cond.py +0 -8
  20. reflex/components/core/foreach.py +12 -2
  21. reflex/components/core/html.pyi +200 -19
  22. reflex/components/core/match.py +4 -4
  23. reflex/components/core/sticky.pyi +874 -90
  24. reflex/components/core/upload.py +3 -5
  25. reflex/components/core/upload.pyi +2 -4
  26. reflex/components/datadisplay/code.py +36 -10
  27. reflex/components/datadisplay/code.pyi +1 -1
  28. reflex/components/datadisplay/dataeditor.py +1 -3
  29. reflex/components/datadisplay/dataeditor.pyi +1 -3
  30. reflex/components/el/elements/base.py +95 -17
  31. reflex/components/el/elements/base.pyi +278 -19
  32. reflex/components/el/elements/forms.py +124 -102
  33. reflex/components/el/elements/forms.pyi +2787 -365
  34. reflex/components/el/elements/inline.py +24 -15
  35. reflex/components/el/elements/inline.pyi +5655 -546
  36. reflex/components/el/elements/media.py +79 -95
  37. reflex/components/el/elements/media.pyi +5167 -565
  38. reflex/components/el/elements/metadata.py +19 -17
  39. reflex/components/el/elements/metadata.pyi +841 -89
  40. reflex/components/el/elements/other.py +3 -5
  41. reflex/components/el/elements/other.pyi +1404 -137
  42. reflex/components/el/elements/scripts.py +10 -13
  43. reflex/components/el/elements/scripts.pyi +634 -65
  44. reflex/components/el/elements/sectioning.pyi +3001 -286
  45. reflex/components/el/elements/tables.py +14 -35
  46. reflex/components/el/elements/tables.pyi +2029 -218
  47. reflex/components/el/elements/typography.py +10 -13
  48. reflex/components/el/elements/typography.pyi +3014 -297
  49. reflex/components/lucide/icon.py +22 -6
  50. reflex/components/markdown/markdown.py +30 -10
  51. reflex/components/markdown/markdown.pyi +3 -2
  52. reflex/components/plotly/plotly.py +1 -3
  53. reflex/components/plotly/plotly.pyi +1 -3
  54. reflex/components/radix/primitives/form.pyi +624 -93
  55. reflex/components/radix/themes/color_mode.py +1 -1
  56. reflex/components/radix/themes/color_mode.pyi +213 -31
  57. reflex/components/radix/themes/components/alert_dialog.pyi +199 -18
  58. reflex/components/radix/themes/components/badge.pyi +199 -18
  59. reflex/components/radix/themes/components/button.pyi +213 -31
  60. reflex/components/radix/themes/components/callout.pyi +1000 -95
  61. reflex/components/radix/themes/components/card.pyi +199 -18
  62. reflex/components/radix/themes/components/context_menu.py +79 -1
  63. reflex/components/radix/themes/components/context_menu.pyi +320 -1
  64. reflex/components/radix/themes/components/dialog.pyi +199 -18
  65. reflex/components/radix/themes/components/hover_card.pyi +199 -18
  66. reflex/components/radix/themes/components/icon_button.pyi +213 -31
  67. reflex/components/radix/themes/components/inset.pyi +199 -18
  68. reflex/components/radix/themes/components/popover.pyi +199 -18
  69. reflex/components/radix/themes/components/table.pyi +1437 -154
  70. reflex/components/radix/themes/components/text_area.py +2 -2
  71. reflex/components/radix/themes/components/text_area.pyi +201 -20
  72. reflex/components/radix/themes/components/text_field.py +1 -1
  73. reflex/components/radix/themes/components/text_field.pyi +444 -88
  74. reflex/components/radix/themes/layout/box.pyi +200 -19
  75. reflex/components/radix/themes/layout/center.pyi +199 -18
  76. reflex/components/radix/themes/layout/container.pyi +199 -18
  77. reflex/components/radix/themes/layout/flex.pyi +199 -18
  78. reflex/components/radix/themes/layout/grid.pyi +199 -18
  79. reflex/components/radix/themes/layout/list.pyi +604 -57
  80. reflex/components/radix/themes/layout/section.pyi +199 -18
  81. reflex/components/radix/themes/layout/spacer.pyi +199 -18
  82. reflex/components/radix/themes/layout/stack.pyi +597 -54
  83. reflex/components/radix/themes/typography/blockquote.pyi +200 -19
  84. reflex/components/radix/themes/typography/code.pyi +199 -18
  85. reflex/components/radix/themes/typography/heading.pyi +199 -18
  86. reflex/components/radix/themes/typography/link.pyi +238 -28
  87. reflex/components/radix/themes/typography/text.pyi +1394 -127
  88. reflex/components/react_player/react_player.py +1 -1
  89. reflex/components/react_player/react_player.pyi +1 -3
  90. reflex/components/sonner/toast.py +41 -12
  91. reflex/components/sonner/toast.pyi +20 -6
  92. reflex/components/tags/iter_tag.py +4 -0
  93. reflex/components/tags/tag.py +3 -3
  94. reflex/config.py +187 -28
  95. reflex/constants/__init__.py +2 -0
  96. reflex/constants/base.py +6 -0
  97. reflex/constants/compiler.py +9 -0
  98. reflex/constants/event.py +1 -0
  99. reflex/constants/installer.py +8 -5
  100. reflex/constants/utils.py +1 -3
  101. reflex/event.py +7 -16
  102. reflex/experimental/layout.pyi +597 -54
  103. reflex/py.typed +0 -0
  104. reflex/reflex.py +30 -41
  105. reflex/state.py +49 -44
  106. reflex/style.py +15 -22
  107. reflex/testing.py +2 -0
  108. reflex/utils/build.py +12 -0
  109. reflex/utils/console.py +4 -0
  110. reflex/utils/decorator.py +25 -0
  111. reflex/utils/exec.py +92 -34
  112. reflex/utils/format.py +35 -6
  113. reflex/utils/path_ops.py +16 -1
  114. reflex/utils/prerequisites.py +25 -33
  115. reflex/utils/processes.py +12 -13
  116. reflex/utils/serializers.py +20 -43
  117. reflex/utils/telemetry.py +4 -15
  118. reflex/utils/types.py +36 -66
  119. reflex/vars/base.py +53 -76
  120. reflex/vars/function.py +17 -5
  121. reflex/vars/number.py +1 -1
  122. reflex/vars/sequence.py +80 -4
  123. {reflex-0.7.0a5.dist-info → reflex-0.7.1.dist-info}/METADATA +4 -5
  124. {reflex-0.7.0a5.dist-info → reflex-0.7.1.dist-info}/RECORD +127 -123
  125. {reflex-0.7.0a5.dist-info → reflex-0.7.1.dist-info}/LICENSE +0 -0
  126. {reflex-0.7.0a5.dist-info → reflex-0.7.1.dist-info}/WHEEL +0 -0
  127. {reflex-0.7.0a5.dist-info → reflex-0.7.1.dist-info}/entry_points.txt +0 -0
@@ -135,30 +135,211 @@ class Heading(elements.H1, RadixThemesComponent, MarkdownComponentMap):
135
135
  ]
136
136
  ] = None,
137
137
  high_contrast: Optional[Union[Var[bool], bool]] = None,
138
- access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
138
+ access_key: Optional[Union[Var[str], str]] = None,
139
139
  auto_capitalize: Optional[
140
- Union[Var[Union[bool, int, str]], bool, int, str]
140
+ Union[
141
+ Literal["characters", "none", "off", "on", "sentences", "words"],
142
+ Var[Literal["characters", "none", "off", "on", "sentences", "words"]],
143
+ ]
141
144
  ] = None,
142
145
  content_editable: Optional[
143
- Union[Var[Union[bool, int, str]], bool, int, str]
144
- ] = None,
145
- context_menu: Optional[
146
- Union[Var[Union[bool, int, str]], bool, int, str]
146
+ Union[
147
+ Literal["inherit", "plaintext-only", False, True],
148
+ Var[Literal["inherit", "plaintext-only", False, True]],
149
+ ]
147
150
  ] = None,
148
- dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
149
- draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
151
+ context_menu: Optional[Union[Var[str], str]] = None,
152
+ dir: Optional[Union[Var[str], str]] = None,
153
+ draggable: Optional[Union[Var[bool], bool]] = None,
150
154
  enter_key_hint: Optional[
151
- Union[Var[Union[bool, int, str]], bool, int, str]
155
+ Union[
156
+ Literal["done", "enter", "go", "next", "previous", "search", "send"],
157
+ Var[
158
+ Literal["done", "enter", "go", "next", "previous", "search", "send"]
159
+ ],
160
+ ]
161
+ ] = None,
162
+ hidden: Optional[Union[Var[bool], bool]] = None,
163
+ input_mode: Optional[
164
+ Union[
165
+ Literal[
166
+ "decimal",
167
+ "email",
168
+ "none",
169
+ "numeric",
170
+ "search",
171
+ "tel",
172
+ "text",
173
+ "url",
174
+ ],
175
+ Var[
176
+ Literal[
177
+ "decimal",
178
+ "email",
179
+ "none",
180
+ "numeric",
181
+ "search",
182
+ "tel",
183
+ "text",
184
+ "url",
185
+ ]
186
+ ],
187
+ ]
188
+ ] = None,
189
+ item_prop: Optional[Union[Var[str], str]] = None,
190
+ lang: Optional[Union[Var[str], str]] = None,
191
+ role: Optional[
192
+ Union[
193
+ Literal[
194
+ "alert",
195
+ "alertdialog",
196
+ "application",
197
+ "article",
198
+ "banner",
199
+ "button",
200
+ "cell",
201
+ "checkbox",
202
+ "columnheader",
203
+ "combobox",
204
+ "complementary",
205
+ "contentinfo",
206
+ "definition",
207
+ "dialog",
208
+ "directory",
209
+ "document",
210
+ "feed",
211
+ "figure",
212
+ "form",
213
+ "grid",
214
+ "gridcell",
215
+ "group",
216
+ "heading",
217
+ "img",
218
+ "link",
219
+ "list",
220
+ "listbox",
221
+ "listitem",
222
+ "log",
223
+ "main",
224
+ "marquee",
225
+ "math",
226
+ "menu",
227
+ "menubar",
228
+ "menuitem",
229
+ "menuitemcheckbox",
230
+ "menuitemradio",
231
+ "navigation",
232
+ "none",
233
+ "note",
234
+ "option",
235
+ "presentation",
236
+ "progressbar",
237
+ "radio",
238
+ "radiogroup",
239
+ "region",
240
+ "row",
241
+ "rowgroup",
242
+ "rowheader",
243
+ "scrollbar",
244
+ "search",
245
+ "searchbox",
246
+ "separator",
247
+ "slider",
248
+ "spinbutton",
249
+ "status",
250
+ "switch",
251
+ "tab",
252
+ "table",
253
+ "tablist",
254
+ "tabpanel",
255
+ "term",
256
+ "textbox",
257
+ "timer",
258
+ "toolbar",
259
+ "tooltip",
260
+ "tree",
261
+ "treegrid",
262
+ "treeitem",
263
+ ],
264
+ Var[
265
+ Literal[
266
+ "alert",
267
+ "alertdialog",
268
+ "application",
269
+ "article",
270
+ "banner",
271
+ "button",
272
+ "cell",
273
+ "checkbox",
274
+ "columnheader",
275
+ "combobox",
276
+ "complementary",
277
+ "contentinfo",
278
+ "definition",
279
+ "dialog",
280
+ "directory",
281
+ "document",
282
+ "feed",
283
+ "figure",
284
+ "form",
285
+ "grid",
286
+ "gridcell",
287
+ "group",
288
+ "heading",
289
+ "img",
290
+ "link",
291
+ "list",
292
+ "listbox",
293
+ "listitem",
294
+ "log",
295
+ "main",
296
+ "marquee",
297
+ "math",
298
+ "menu",
299
+ "menubar",
300
+ "menuitem",
301
+ "menuitemcheckbox",
302
+ "menuitemradio",
303
+ "navigation",
304
+ "none",
305
+ "note",
306
+ "option",
307
+ "presentation",
308
+ "progressbar",
309
+ "radio",
310
+ "radiogroup",
311
+ "region",
312
+ "row",
313
+ "rowgroup",
314
+ "rowheader",
315
+ "scrollbar",
316
+ "search",
317
+ "searchbox",
318
+ "separator",
319
+ "slider",
320
+ "spinbutton",
321
+ "status",
322
+ "switch",
323
+ "tab",
324
+ "table",
325
+ "tablist",
326
+ "tabpanel",
327
+ "term",
328
+ "textbox",
329
+ "timer",
330
+ "toolbar",
331
+ "tooltip",
332
+ "tree",
333
+ "treegrid",
334
+ "treeitem",
335
+ ]
336
+ ],
337
+ ]
152
338
  ] = None,
153
- hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
154
- input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
155
- item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
156
- lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
157
- role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
158
- slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
159
- spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
160
- tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
161
- title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
339
+ slot: Optional[Union[Var[str], str]] = None,
340
+ spell_check: Optional[Union[Var[bool], bool]] = None,
341
+ tab_index: Optional[Union[Var[int], int]] = None,
342
+ title: Optional[Union[Var[str], str]] = None,
162
343
  style: Optional[Style] = None,
163
344
  key: Optional[Any] = None,
164
345
  id: Optional[Any] = None,
@@ -136,41 +136,252 @@ class Link(RadixThemesComponent, A, MemoizationLeaf, MarkdownComponentMap):
136
136
  ] = None,
137
137
  high_contrast: Optional[Union[Var[bool], bool]] = None,
138
138
  is_external: Optional[Union[Var[bool], bool]] = None,
139
- download: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
140
- href: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
141
- href_lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
142
- media: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
143
- ping: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
139
+ download: Optional[Union[Var[Union[bool, str]], bool, str]] = None,
140
+ href: Optional[Union[Var[str], str]] = None,
141
+ href_lang: Optional[Union[Var[str], str]] = None,
142
+ media: Optional[Union[Var[str], str]] = None,
143
+ ping: Optional[Union[Var[str], str]] = None,
144
144
  referrer_policy: Optional[
145
- Union[Var[Union[bool, int, str]], bool, int, str]
145
+ Union[
146
+ Literal[
147
+ "",
148
+ "no-referrer",
149
+ "no-referrer-when-downgrade",
150
+ "origin",
151
+ "origin-when-cross-origin",
152
+ "same-origin",
153
+ "strict-origin",
154
+ "strict-origin-when-cross-origin",
155
+ "unsafe-url",
156
+ ],
157
+ Var[
158
+ Literal[
159
+ "",
160
+ "no-referrer",
161
+ "no-referrer-when-downgrade",
162
+ "origin",
163
+ "origin-when-cross-origin",
164
+ "same-origin",
165
+ "strict-origin",
166
+ "strict-origin-when-cross-origin",
167
+ "unsafe-url",
168
+ ]
169
+ ],
170
+ ]
146
171
  ] = None,
147
- rel: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
148
- shape: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
149
- target: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
150
- access_key: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
172
+ rel: Optional[Union[Var[str], str]] = None,
173
+ target: Optional[
174
+ Union[
175
+ Literal["_blank", "_parent", "_self", "_top"],
176
+ Var[Union[Literal["_blank", "_parent", "_self", "_top"], str]],
177
+ str,
178
+ ]
179
+ ] = None,
180
+ access_key: Optional[Union[Var[str], str]] = None,
151
181
  auto_capitalize: Optional[
152
- Union[Var[Union[bool, int, str]], bool, int, str]
182
+ Union[
183
+ Literal["characters", "none", "off", "on", "sentences", "words"],
184
+ Var[Literal["characters", "none", "off", "on", "sentences", "words"]],
185
+ ]
153
186
  ] = None,
154
187
  content_editable: Optional[
155
- Union[Var[Union[bool, int, str]], bool, int, str]
156
- ] = None,
157
- context_menu: Optional[
158
- Union[Var[Union[bool, int, str]], bool, int, str]
188
+ Union[
189
+ Literal["inherit", "plaintext-only", False, True],
190
+ Var[Literal["inherit", "plaintext-only", False, True]],
191
+ ]
159
192
  ] = None,
160
- dir: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
161
- draggable: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
193
+ context_menu: Optional[Union[Var[str], str]] = None,
194
+ dir: Optional[Union[Var[str], str]] = None,
195
+ draggable: Optional[Union[Var[bool], bool]] = None,
162
196
  enter_key_hint: Optional[
163
- Union[Var[Union[bool, int, str]], bool, int, str]
197
+ Union[
198
+ Literal["done", "enter", "go", "next", "previous", "search", "send"],
199
+ Var[
200
+ Literal["done", "enter", "go", "next", "previous", "search", "send"]
201
+ ],
202
+ ]
203
+ ] = None,
204
+ hidden: Optional[Union[Var[bool], bool]] = None,
205
+ input_mode: Optional[
206
+ Union[
207
+ Literal[
208
+ "decimal",
209
+ "email",
210
+ "none",
211
+ "numeric",
212
+ "search",
213
+ "tel",
214
+ "text",
215
+ "url",
216
+ ],
217
+ Var[
218
+ Literal[
219
+ "decimal",
220
+ "email",
221
+ "none",
222
+ "numeric",
223
+ "search",
224
+ "tel",
225
+ "text",
226
+ "url",
227
+ ]
228
+ ],
229
+ ]
230
+ ] = None,
231
+ item_prop: Optional[Union[Var[str], str]] = None,
232
+ lang: Optional[Union[Var[str], str]] = None,
233
+ role: Optional[
234
+ Union[
235
+ Literal[
236
+ "alert",
237
+ "alertdialog",
238
+ "application",
239
+ "article",
240
+ "banner",
241
+ "button",
242
+ "cell",
243
+ "checkbox",
244
+ "columnheader",
245
+ "combobox",
246
+ "complementary",
247
+ "contentinfo",
248
+ "definition",
249
+ "dialog",
250
+ "directory",
251
+ "document",
252
+ "feed",
253
+ "figure",
254
+ "form",
255
+ "grid",
256
+ "gridcell",
257
+ "group",
258
+ "heading",
259
+ "img",
260
+ "link",
261
+ "list",
262
+ "listbox",
263
+ "listitem",
264
+ "log",
265
+ "main",
266
+ "marquee",
267
+ "math",
268
+ "menu",
269
+ "menubar",
270
+ "menuitem",
271
+ "menuitemcheckbox",
272
+ "menuitemradio",
273
+ "navigation",
274
+ "none",
275
+ "note",
276
+ "option",
277
+ "presentation",
278
+ "progressbar",
279
+ "radio",
280
+ "radiogroup",
281
+ "region",
282
+ "row",
283
+ "rowgroup",
284
+ "rowheader",
285
+ "scrollbar",
286
+ "search",
287
+ "searchbox",
288
+ "separator",
289
+ "slider",
290
+ "spinbutton",
291
+ "status",
292
+ "switch",
293
+ "tab",
294
+ "table",
295
+ "tablist",
296
+ "tabpanel",
297
+ "term",
298
+ "textbox",
299
+ "timer",
300
+ "toolbar",
301
+ "tooltip",
302
+ "tree",
303
+ "treegrid",
304
+ "treeitem",
305
+ ],
306
+ Var[
307
+ Literal[
308
+ "alert",
309
+ "alertdialog",
310
+ "application",
311
+ "article",
312
+ "banner",
313
+ "button",
314
+ "cell",
315
+ "checkbox",
316
+ "columnheader",
317
+ "combobox",
318
+ "complementary",
319
+ "contentinfo",
320
+ "definition",
321
+ "dialog",
322
+ "directory",
323
+ "document",
324
+ "feed",
325
+ "figure",
326
+ "form",
327
+ "grid",
328
+ "gridcell",
329
+ "group",
330
+ "heading",
331
+ "img",
332
+ "link",
333
+ "list",
334
+ "listbox",
335
+ "listitem",
336
+ "log",
337
+ "main",
338
+ "marquee",
339
+ "math",
340
+ "menu",
341
+ "menubar",
342
+ "menuitem",
343
+ "menuitemcheckbox",
344
+ "menuitemradio",
345
+ "navigation",
346
+ "none",
347
+ "note",
348
+ "option",
349
+ "presentation",
350
+ "progressbar",
351
+ "radio",
352
+ "radiogroup",
353
+ "region",
354
+ "row",
355
+ "rowgroup",
356
+ "rowheader",
357
+ "scrollbar",
358
+ "search",
359
+ "searchbox",
360
+ "separator",
361
+ "slider",
362
+ "spinbutton",
363
+ "status",
364
+ "switch",
365
+ "tab",
366
+ "table",
367
+ "tablist",
368
+ "tabpanel",
369
+ "term",
370
+ "textbox",
371
+ "timer",
372
+ "toolbar",
373
+ "tooltip",
374
+ "tree",
375
+ "treegrid",
376
+ "treeitem",
377
+ ]
378
+ ],
379
+ ]
164
380
  ] = None,
165
- hidden: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
166
- input_mode: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
167
- item_prop: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
168
- lang: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
169
- role: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
170
- slot: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
171
- spell_check: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
172
- tab_index: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
173
- title: Optional[Union[Var[Union[bool, int, str]], bool, int, str]] = None,
381
+ slot: Optional[Union[Var[str], str]] = None,
382
+ spell_check: Optional[Union[Var[bool], bool]] = None,
383
+ tab_index: Optional[Union[Var[int], int]] = None,
384
+ title: Optional[Union[Var[str], str]] = None,
174
385
  style: Optional[Style] = None,
175
386
  key: Optional[Any] = None,
176
387
  id: Optional[Any] = None,
@@ -213,7 +424,6 @@ class Link(RadixThemesComponent, A, MemoizationLeaf, MarkdownComponentMap):
213
424
  ping: Specifies which referrer is sent when fetching the resource
214
425
  referrer_policy: Specifies the relationship between the current document and the linked document
215
426
  rel: Specifies the relationship between the linked document and the current document
216
- shape: Specifies the shape of the area
217
427
  target: Specifies where to open the linked document
218
428
  access_key: Provides a hint for generating a keyboard shortcut for the current element.
219
429
  auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.