reflex 0.5.2a1__py3-none-any.whl → 0.5.3a1__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 (163) hide show
  1. reflex/.templates/web/postcss.config.js +1 -0
  2. reflex/.templates/web/styles/tailwind.css +4 -1
  3. reflex/__init__.py +298 -204
  4. reflex/__init__.pyi +196 -157
  5. reflex/app.py +13 -2
  6. reflex/components/__init__.py +31 -17
  7. reflex/components/__init__.pyi +26 -0
  8. reflex/components/base/__init__.py +25 -9
  9. reflex/components/base/__init__.pyi +26 -0
  10. reflex/components/base/fragment.py +3 -0
  11. reflex/components/base/fragment.pyi +2 -0
  12. reflex/components/base/head.py +3 -0
  13. reflex/components/base/head.pyi +2 -0
  14. reflex/components/base/script.py +3 -0
  15. reflex/components/base/script.pyi +2 -0
  16. reflex/components/core/__init__.py +51 -37
  17. reflex/components/core/__init__.pyi +39 -0
  18. reflex/components/core/banner.py +7 -1
  19. reflex/components/core/banner.pyi +6 -1
  20. reflex/components/core/debounce.py +3 -0
  21. reflex/components/core/debounce.pyi +2 -0
  22. reflex/components/core/foreach.py +3 -0
  23. reflex/components/core/html.py +3 -0
  24. reflex/components/core/html.pyi +2 -0
  25. reflex/components/core/match.py +3 -0
  26. reflex/components/core/responsive.py +1 -1
  27. reflex/components/core/upload.py +5 -2
  28. reflex/components/core/upload.pyi +4 -2
  29. reflex/components/datadisplay/__init__.py +17 -8
  30. reflex/components/datadisplay/__init__.pyi +14 -0
  31. reflex/components/datadisplay/code.py +3 -0
  32. reflex/components/datadisplay/code.pyi +2 -0
  33. reflex/components/datadisplay/dataeditor.py +4 -0
  34. reflex/components/datadisplay/dataeditor.pyi +3 -0
  35. reflex/components/el/__init__.py +15 -1
  36. reflex/components/el/__init__.pyi +227 -0
  37. reflex/components/el/elements/__init__.py +129 -220
  38. reflex/components/el/elements/__init__.pyi +341 -0
  39. reflex/components/el/elements/forms.py +15 -0
  40. reflex/components/el/elements/forms.pyi +14 -0
  41. reflex/components/el/elements/inline.py +30 -0
  42. reflex/components/el/elements/inline.pyi +29 -0
  43. reflex/components/el/elements/media.py +16 -0
  44. reflex/components/el/elements/media.pyi +15 -0
  45. reflex/components/el/elements/metadata.py +7 -0
  46. reflex/components/el/elements/metadata.pyi +6 -0
  47. reflex/components/el/elements/other.py +9 -0
  48. reflex/components/el/elements/other.pyi +8 -0
  49. reflex/components/el/elements/scripts.py +5 -0
  50. reflex/components/el/elements/scripts.pyi +4 -0
  51. reflex/components/el/elements/sectioning.py +17 -0
  52. reflex/components/el/elements/sectioning.pyi +16 -0
  53. reflex/components/el/elements/tables.py +12 -0
  54. reflex/components/el/elements/tables.pyi +11 -0
  55. reflex/components/el/elements/typography.py +16 -0
  56. reflex/components/el/elements/typography.pyi +15 -0
  57. reflex/components/moment/__init__.py +1 -1
  58. reflex/components/plotly/plotly.py +184 -6
  59. reflex/components/plotly/plotly.pyi +62 -4
  60. reflex/components/radix/__init__.py +14 -2
  61. reflex/components/radix/__init__.pyi +73 -0
  62. reflex/components/radix/primitives/__init__.py +13 -5
  63. reflex/components/radix/primitives/__init__.pyi +11 -0
  64. reflex/components/radix/themes/__init__.py +20 -6
  65. reflex/components/radix/themes/__init__.pyi +13 -0
  66. reflex/components/radix/themes/base.py +26 -20
  67. reflex/components/radix/themes/base.pyi +4 -1
  68. reflex/components/radix/themes/color_mode.py +3 -1
  69. reflex/components/radix/themes/color_mode.pyi +3 -1
  70. reflex/components/radix/themes/components/__init__.py +11 -79
  71. reflex/components/radix/themes/components/__init__.pyi +44 -0
  72. reflex/components/radix/themes/components/alert_dialog.py +2 -2
  73. reflex/components/radix/themes/components/alert_dialog.pyi +2 -2
  74. reflex/components/radix/themes/components/badge.py +2 -2
  75. reflex/components/radix/themes/components/badge.pyi +2 -2
  76. reflex/components/radix/themes/components/button.py +2 -2
  77. reflex/components/radix/themes/components/button.pyi +2 -2
  78. reflex/components/radix/themes/components/callout.py +4 -4
  79. reflex/components/radix/themes/components/callout.pyi +4 -4
  80. reflex/components/radix/themes/components/card.py +2 -2
  81. reflex/components/radix/themes/components/card.pyi +2 -2
  82. reflex/components/radix/themes/components/dialog.py +2 -2
  83. reflex/components/radix/themes/components/dialog.pyi +2 -2
  84. reflex/components/radix/themes/components/hover_card.py +2 -2
  85. reflex/components/radix/themes/components/hover_card.pyi +2 -2
  86. reflex/components/radix/themes/components/icon_button.py +2 -2
  87. reflex/components/radix/themes/components/icon_button.pyi +2 -2
  88. reflex/components/radix/themes/components/inset.py +2 -2
  89. reflex/components/radix/themes/components/inset.pyi +2 -2
  90. reflex/components/radix/themes/components/popover.py +2 -2
  91. reflex/components/radix/themes/components/popover.pyi +2 -2
  92. reflex/components/radix/themes/components/table.py +8 -8
  93. reflex/components/radix/themes/components/table.pyi +8 -8
  94. reflex/components/radix/themes/components/text_area.py +11 -2
  95. reflex/components/radix/themes/components/text_area.pyi +18 -3
  96. reflex/components/radix/themes/components/text_field.py +3 -3
  97. reflex/components/radix/themes/components/text_field.pyi +3 -3
  98. reflex/components/radix/themes/layout/__init__.py +12 -38
  99. reflex/components/radix/themes/layout/__init__.pyi +21 -0
  100. reflex/components/radix/themes/layout/box.py +5 -2
  101. reflex/components/radix/themes/layout/box.pyi +4 -2
  102. reflex/components/radix/themes/layout/center.py +3 -0
  103. reflex/components/radix/themes/layout/center.pyi +2 -0
  104. reflex/components/radix/themes/layout/container.py +5 -2
  105. reflex/components/radix/themes/layout/container.pyi +4 -2
  106. reflex/components/radix/themes/layout/flex.py +5 -2
  107. reflex/components/radix/themes/layout/flex.pyi +4 -2
  108. reflex/components/radix/themes/layout/grid.py +5 -2
  109. reflex/components/radix/themes/layout/grid.pyi +4 -2
  110. reflex/components/radix/themes/layout/list.py +14 -0
  111. reflex/components/radix/themes/layout/list.pyi +3 -0
  112. reflex/components/radix/themes/layout/section.py +7 -4
  113. reflex/components/radix/themes/layout/section.pyi +5 -3
  114. reflex/components/radix/themes/layout/spacer.py +3 -0
  115. reflex/components/radix/themes/layout/spacer.pyi +2 -0
  116. reflex/components/radix/themes/layout/stack.py +5 -0
  117. reflex/components/radix/themes/layout/stack.pyi +4 -0
  118. reflex/components/radix/themes/typography/__init__.py +11 -16
  119. reflex/components/radix/themes/typography/__init__.pyi +12 -0
  120. reflex/components/radix/themes/typography/blockquote.py +5 -2
  121. reflex/components/radix/themes/typography/blockquote.pyi +4 -2
  122. reflex/components/radix/themes/typography/code.py +5 -2
  123. reflex/components/radix/themes/typography/code.pyi +4 -2
  124. reflex/components/radix/themes/typography/heading.py +5 -2
  125. reflex/components/radix/themes/typography/heading.pyi +4 -2
  126. reflex/components/radix/themes/typography/link.py +3 -0
  127. reflex/components/radix/themes/typography/link.pyi +2 -0
  128. reflex/components/radix/themes/typography/text.py +6 -6
  129. reflex/components/radix/themes/typography/text.pyi +6 -6
  130. reflex/components/recharts/__init__.py +114 -104
  131. reflex/components/recharts/__init__.pyi +106 -0
  132. reflex/components/recharts/cartesian.py +17 -0
  133. reflex/components/recharts/cartesian.pyi +16 -0
  134. reflex/components/recharts/charts.py +12 -0
  135. reflex/components/recharts/charts.pyi +11 -0
  136. reflex/components/recharts/general.py +7 -0
  137. reflex/components/recharts/general.pyi +6 -0
  138. reflex/components/recharts/polar.py +11 -0
  139. reflex/components/recharts/polar.pyi +9 -0
  140. reflex/config.py +3 -0
  141. reflex/constants/__init__.py +0 -2
  142. reflex/constants/base.py +2 -0
  143. reflex/constants/base.pyi +5 -0
  144. reflex/constants/installer.py +2 -1
  145. reflex/experimental/__init__.py +2 -0
  146. reflex/experimental/assets.py +56 -0
  147. reflex/experimental/client_state.py +4 -2
  148. reflex/experimental/hooks.py +8 -6
  149. reflex/experimental/layout.py +3 -1
  150. reflex/state.py +54 -4
  151. reflex/utils/exec.py +8 -0
  152. reflex/utils/lazy_loader.py +33 -0
  153. reflex/utils/prerequisites.py +1 -14
  154. reflex/utils/pyi_generator.py +71 -20
  155. reflex/utils/serializers.py +3 -3
  156. reflex/vars.py +79 -5
  157. reflex/vars.pyi +16 -0
  158. {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/METADATA +2 -1
  159. {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/RECORD +162 -148
  160. reflex/config.pyi +0 -112
  161. {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/LICENSE +0 -0
  162. {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/WHEEL +0 -0
  163. {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/entry_points.txt +0 -0
@@ -54,27 +54,29 @@ reflex/.templates/web/components/reflex/chakra_color_mode_provider.js,sha256=4vJ
54
54
  reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=vvJaNMZSxeaVqK3DchGk42Hc5qA9SuJyABh_JM5Fv_4,645
55
55
  reflex/.templates/web/jsconfig.json,sha256=Y9sEhjJcpk-ZDj-sxHYCvF9UZF4fyBL4oUlphb9X9Hk,97
56
56
  reflex/.templates/web/next.config.js,sha256=ZpGOqo9wHEbt0S08G70VfUNUjFe79UXo7Cde8X8V10E,118
57
- reflex/.templates/web/postcss.config.js,sha256=JR7N3UZyyc9GdUfj3FNd4ArSEp3ybn565yj6TlrEX8U,82
58
- reflex/.templates/web/styles/tailwind.css,sha256=zBp60NAZ3bHTLQ7LWIugrCbOQdhiXdbDZjSLJfg6KOw,59
57
+ reflex/.templates/web/postcss.config.js,sha256=oEjUS1dzudKcmoPCD_B1ss2m1K14VDM0S6GAyrs1Ric,108
58
+ reflex/.templates/web/styles/tailwind.css,sha256=wGOoICTy1G0e5bWZ4LYOVgRa3ZT7M44tC4g6CKh6ZPo,112
59
59
  reflex/.templates/web/utils/client_side_routing.js,sha256=iGGnZY07XMNLUT2GT_Y6OEICP7uc1FaWn9cPlQUpGgo,1254
60
60
  reflex/.templates/web/utils/helpers/dataeditor.js,sha256=anZgi8RJ_J0yqDez1Ks51fNDIQOvP3WkIm1QRDwccSk,1622
61
61
  reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseLgQVk-DW-eFiHJYO9As,528
62
62
  reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
63
63
  reflex/.templates/web/utils/helpers/throttle.js,sha256=qxeyaEojaTeX36FPGftzVWrzDsRQU4iqg3U9RJz9Vj4,566
64
64
  reflex/.templates/web/utils/state.js,sha256=rjfL4CIljq3gVDjOU00A88mmeW07RLUowBP5BhxXGUA,22617
65
- reflex/__init__.py,sha256=fzBYk8qUFWkUlD3U-97xEAdv9N1tTMRmAzQat_9cZW0,5831
66
- reflex/__init__.pyi,sha256=y4jPgnR9f6xOpFAK9-WM7p-T05Y5jGFYkx7Thdok_3I,7791
65
+ reflex/__init__.py,sha256=OGzPA5izGaNBw8sGfxB4mmlGyow2J9Sbm1_JMdHCdTM,9293
66
+ reflex/__init__.pyi,sha256=v391UTQbCa006xgqvC0kond11ZEiI-gbTEDnLie0cpo,10367
67
67
  reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
68
68
  reflex/admin.py,sha256=-bTxFUEoHo4X9FzmcSa6KSVVPpF7wh38lBvF67GhSvQ,373
69
- reflex/app.py,sha256=pvG-rNB9fZTQPVqQqafAECzzUzTYYTDbCcSUe37hf1s,48956
69
+ reflex/app.py,sha256=Xv6k398WxXcz8XJub5tQpunrGmafIj6cfJmVrJaYlwQ,49380
70
70
  reflex/app_module_for_backend.py,sha256=zGsgZWpl11exOuH34JZUimNgBnWpjL7WH4SW6LItxgY,1227
71
71
  reflex/base.py,sha256=nqvgm-f1Fcj1WQrphKFniZWIM13bzr48OgfPBo1KZd8,4274
72
72
  reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
73
73
  reflex/compiler/compiler.py,sha256=_ywbGHWnyM6tqPV-oriyBhFkblm5jQSJ6UuZT0LtkBo,17455
74
74
  reflex/compiler/templates.py,sha256=TKjq2cTtiwNZ_zIYNSTA6vG3CU2EoyrFTfkq8zhAL68,4344
75
75
  reflex/compiler/utils.py,sha256=-lAG69cEm2pRke3cfRIRw52YCt3RK4HJkfUNwsg6dHQ,13274
76
- reflex/components/__init__.py,sha256=SXSC9CkWnfovlj-sarVtNfSvu29xuxKV37r1cvN6h2E,552
77
- reflex/components/base/__init__.py,sha256=regtioYXwTxqWuf4Z7H51rjn2Vs1Kr1Fh_i4s-W1m0A,325
76
+ reflex/components/__init__.py,sha256=oU81-YkofdNKgmwppJitqDnBNBXAWUtDV8_ULSaBVgg,637
77
+ reflex/components/__init__.pyi,sha256=AtWS2niCzmu4rESgFKgH-aQe08KJok1ZNRwtl3p0QWM,930
78
+ reflex/components/base/__init__.py,sha256=YPIKJy6RzfUAv08P_dh2KxnJyWxUdpLBVc7WQ9PzSlA,647
79
+ reflex/components/base/__init__.pyi,sha256=bN8Ny_4-bwY0a3Rm1p0Qq4pKiFI9j8rs70lraVgTHi4,973
78
80
  reflex/components/base/app_wrap.py,sha256=_LPpPO8c8M6dyEsyoahJaDKk-zEK4qvR_lSnaLpqUKM,573
79
81
  reflex/components/base/app_wrap.pyi,sha256=SIWmqdCK9fWrYLNJkxalrbykILyUs29O28TSt7-QrsU,2890
80
82
  reflex/components/base/bare.py,sha256=cbIugrPzaank429Xk5mLRydOCxLTX0tuRdXKoKL2Bxw,1234
@@ -82,16 +84,16 @@ reflex/components/base/body.py,sha256=QHOGMr98I6bUXsQKXcY0PzJdhopH6gQ8AESrDSgJV6
82
84
  reflex/components/base/body.pyi,sha256=HSUThE8smOVk9ID4lWCpN9fjTwG7DRnjSR5Cxbp7uCs,3206
83
85
  reflex/components/base/document.py,sha256=_Cl9iMXwXdxGMrCLAT20v35FX3MGtbqh2dfWenDtSKc,583
84
86
  reflex/components/base/document.pyi,sha256=DwtzAkw1rS7PxSQQRuYct1w7SCcJE_EclQ_4ig4TQqo,14232
85
- reflex/components/base/fragment.py,sha256=HGKEEqEW87bEkwGvwqYE_1o22l8J1xGX9T4P3J5Tn6k,312
86
- reflex/components/base/fragment.pyi,sha256=C9_c7ES0x3SkwARRdFoyjwZBd37I3kJzgcKHOWih0Ow,3218
87
- reflex/components/base/head.py,sha256=r7uis6H3Vc11ob8gqGNfExI_HPUKyTDNydInQXg6JeM,297
88
- reflex/components/base/head.pyi,sha256=E33s-leCYGvs03ptlvLin6iTifw9Ht4moWr3knT4E94,6002
87
+ reflex/components/base/fragment.py,sha256=LL73Cf0KhuSky3va35S_lwMnwaFBggDpxiiJDVTs3mo,341
88
+ reflex/components/base/fragment.pyi,sha256=6hWVzjtir1kYdEZ0HebXTC1DPxEpfYx8PQ5PTGLvYzc,3246
89
+ reflex/components/base/head.py,sha256=BGjOksNZEo_AZcYEuxNH7onsRnfyxJkJzl4cTd_EwiQ,318
90
+ reflex/components/base/head.pyi,sha256=3RsF1VUCJIAdNI1EgrjcMgy8GvLJ1r4vxq3em4KON88,6022
89
91
  reflex/components/base/link.py,sha256=y26QGX8QERS-vWjFggvYt_xKxJAfrpKmU0FGJMi3mh0,929
90
92
  reflex/components/base/link.pyi,sha256=VFmGKLDe-3ZXVZ4SGSeKGhDSYnP1UtnjleWinkaguaQ,6990
91
93
  reflex/components/base/meta.py,sha256=RWITTQTA_35-FbaVGhjkAWDOmU65rzJ-WedENRJk-3k,1438
92
94
  reflex/components/base/meta.pyi,sha256=5JJdNt2irustsLfgkyCAP5_Q8bg3sKm6CpPZ3pO4e0M,12804
93
- reflex/components/base/script.py,sha256=sNuoSeO1XxVfqSd9EADlOeNDti-zf8-vn_yd0NcmImc,2298
94
- reflex/components/base/script.pyi,sha256=YBdQuM3GAFDkpCU80kbEZ80gGmsVffHO_MIgdr8Kb-Q,4500
95
+ reflex/components/base/script.py,sha256=_AfHhLy2DJnb_9zIsYyjaYvSUuWpXIh8LNB1Zicesq0,2323
96
+ reflex/components/base/script.pyi,sha256=NkEgHT9WVWnSE8tHPwLl9MFjKg5TCFCQIWvHHFg9vOI,4524
95
97
  reflex/components/chakra/__init__.py,sha256=IvxaXNdJH_df-HZRf4IXilvl6XpLLzIzCSlLL0KVMsU,6378
96
98
  reflex/components/chakra/base.py,sha256=xoU5sz5_uu7lKad7Oo1VPuFQTiZjdI4Uujxth19wYbw,5242
97
99
  reflex/components/chakra/base.pyi,sha256=YitA2O1JU7akR8SEFxPuaDeEXjt1W5JrButw6nnlmCg,10917
@@ -234,57 +236,61 @@ reflex/components/chakra/typography/span.pyi,sha256=itDe7RpjJN_K_9pZ7n_U9qlrTshG
234
236
  reflex/components/chakra/typography/text.py,sha256=9YXBdK5UYqgDam3ITeRSnd8bu9ht3zydt0pkmJAECsk,472
235
237
  reflex/components/chakra/typography/text.pyi,sha256=FzqNtf0NUkGmRLrazSyfKHqznJjz_KCryU-2sRghZ0M,3596
236
238
  reflex/components/component.py,sha256=awa7i80PbHdICiWx2ZbN1gpvoWlJsbcc_r94q9hy6Nw,77001
237
- reflex/components/core/__init__.py,sha256=r4gQFBdUdgU1qp1xBMHHmN-wSgjOs07aB5PtOm5990g,943
238
- reflex/components/core/banner.py,sha256=_SdwggEg1W5F27QIMQd111GtnhxQhLclizpBMTgakhs,8043
239
- reflex/components/core/banner.pyi,sha256=Su21s78LOsIyYy3n7rtBeYDgXl2PO2Oo9cMAztPad3w,22528
239
+ reflex/components/core/__init__.py,sha256=96AHGkr07-cYckZqHg2ba_sAl964-S__CPYfM_wXHBk,1184
240
+ reflex/components/core/__init__.pyi,sha256=a-Mo7MQPoKLaVGlR_qVCrYPesCZd57tftynedO7-qvw,1828
241
+ reflex/components/core/banner.py,sha256=FE7Bbx4DDRqINxQKb-20iIa-OFVCaIklXwFbc1CAlUM,8226
242
+ reflex/components/core/banner.pyi,sha256=bEd8owWyrLNmNs6prgj1ZtrirS2ZSajkKmGXVdNXaKg,22710
240
243
  reflex/components/core/client_side_routing.py,sha256=mdZsGuc1V9qvOE0TaLEnXmXo0qHuPjc_dZrSjnlZsqc,1873
241
244
  reflex/components/core/client_side_routing.pyi,sha256=7Zel95b6tqfW0ulIJEHh9fmG_6av9eNeNjtORZ73jjM,6264
242
245
  reflex/components/core/colors.py,sha256=-hzVGLEq3TiqroqzMi_YzGBCPXMvkNsen3pS_NzIQNk,590
243
246
  reflex/components/core/cond.py,sha256=4jKcg9IBprpWAGY28Iymxe5Pu0UMEH-2e64zIkmf7_w,6163
244
- reflex/components/core/debounce.py,sha256=HUR2yHkWEFawc64GZ7CakzLCx6WwCRhiPssAGJbtkSY,4820
245
- reflex/components/core/debounce.pyi,sha256=VGBX3hsRQo3xFP0xkYJuy25rDQ5rxRIk58mCV34fHSI,4216
246
- reflex/components/core/foreach.py,sha256=utMZhwg_k118EFwvO5jLXeQylZS3AAKS38fAIG9N2wE,4732
247
- reflex/components/core/html.py,sha256=3TjZweaxqGnma5l9UIEzmE5bsl0VSS6ixn8xD_xu2W0,1284
248
- reflex/components/core/html.pyi,sha256=6lqiYm9XUcRuR1kW6Ken8GAyf63-f5R5Swrli9B0eWg,6616
247
+ reflex/components/core/debounce.py,sha256=gcWv6HNMtPMdh7zxek10v77R07PPfiQJPunb_7FycEM,4860
248
+ reflex/components/core/debounce.pyi,sha256=t0adfaCRfIellS8PDl6witgpBHoz9jk0SW0f82AHxxU,4255
249
+ reflex/components/core/foreach.py,sha256=H3rWEq23lLtmUwsDYL1GMDe7mbV2Vk7H0mhNN1c1fAg,4759
250
+ reflex/components/core/html.py,sha256=ZJPaHTsWb0XaZ95xpC3NEadYEmebJKHY7r_1WAHnbrc,1305
251
+ reflex/components/core/html.pyi,sha256=sEvOH8E0b8GGpFjmNo5edBZN6gPN0F8FHFrQcp7wlEQ,6636
249
252
  reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
250
- reflex/components/core/match.py,sha256=2ZhRWrRcgJ9zlswXgrtcUyBBMAN2pSbwuV_9tKU1rCk,9484
251
- reflex/components/core/responsive.py,sha256=ycKULWxCRiUC_eWf_B1nhk9K0JXx5Uxw7acwPgWO8R4,1907
252
- reflex/components/core/upload.py,sha256=mPAPemZBfQmPnI3ueA1hy4J7GiFKw_9gKD_n6myt5lQ,10146
253
- reflex/components/core/upload.pyi,sha256=IM7ZnriCs-hzFl4-0IdT2P4QNFvoJsDcr-VxkvnUyeo,17147
254
- reflex/components/datadisplay/__init__.py,sha256=9HXaq0tuYBDm06AeWYmi1ywwNBsFEnbSe3zlVNCw7wk,357
255
- reflex/components/datadisplay/code.py,sha256=Z_-ozKCdaXpXKzZIWmh151RMoJBTVATNwCWD-veOH_I,11347
256
- reflex/components/datadisplay/code.pyi,sha256=HCYVvF7b2-tqKYGdQUGp7khHF5fuNNdwQUE1doF4-3Y,31197
257
- reflex/components/datadisplay/dataeditor.py,sha256=WdeEGRVlC1W2WnPn4zKhmyoaKTqgowqiiLg8zeuHTGw,12632
258
- reflex/components/datadisplay/dataeditor.pyi,sha256=e451O8T16GDPd01W5wPeIYynFO16keYW5EcSpOgF0m0,10485
253
+ reflex/components/core/match.py,sha256=Mbkl0FWbf0Y2CsWzExgLFwR25OeH0kKk7Y-ZnqMt3-0,9507
254
+ reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ2ty4wAc,1911
255
+ reflex/components/core/upload.py,sha256=HgjAktmhWaFHHpNRBmkl5_Ke7aAQE8CuE1ksshje-IY,10180
256
+ reflex/components/core/upload.pyi,sha256=oQrEGaxccScvApKs8nGgyHg8xbLYzM4gZw39s1zKGjQ,17180
257
+ reflex/components/datadisplay/__init__.py,sha256=NedB3qfW3CJYPDHudiHP1-wEcpwGk78vVKk-T_eek4U,470
258
+ reflex/components/datadisplay/__init__.pyi,sha256=oFr43Hj2QVaF12U9JY0Ki3ulmnfW9hlX2zfaIfO5CIs,690
259
+ reflex/components/datadisplay/code.py,sha256=TZwZRwBb2XwjI8I80I-7ZgsRpJxTQBKYV-VnZMdD3qA,11379
260
+ reflex/components/datadisplay/code.pyi,sha256=jJqpMAiMvhZvqwuXvgLWWsZCExzzQIt4vNBy3PrFjTg,31228
261
+ reflex/components/datadisplay/dataeditor.py,sha256=oHeTU2EcvCBCWoJJ-jsKs7UxlgLAISYOXIEsq7y5v1M,12702
262
+ reflex/components/datadisplay/dataeditor.pyi,sha256=u1Hg-5APM18ZiQMuzW95jI91hax85StnZmrSKUdYfwE,10554
259
263
  reflex/components/datadisplay/logo.py,sha256=fdQ9gDxBln8MDRDN3hP4JkF6BhttnD6GhgGRaBmu0EU,2562
260
- reflex/components/el/__init__.py,sha256=3QR9GuYBnFvtxLQm_aeSUzGJsqJBUjeTt6tcHyCqAcQ,73
264
+ reflex/components/el/__init__.py,sha256=n4CYTU8Jb9Tj1oU3I7zaMikxn2XBc4bOX2e4blI6jac,415
265
+ reflex/components/el/__init__.pyi,sha256=BcT9E9NoERLiCLq0F1pQDi_AQy1pqIyQWuK5XHT3osg,9785
261
266
  reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
262
267
  reflex/components/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
263
268
  reflex/components/el/constants/react.py,sha256=f1-Vo8iWn2jSrR7vy-UwGbGRvw88UUZnbb3Rb56MSS4,15554
264
269
  reflex/components/el/constants/reflex.py,sha256=SJidKWxPv0bwjPbeo57KFuEQNGyd8XUJrV-HfzX3tnE,1713
265
270
  reflex/components/el/element.py,sha256=mSbygKXtQGOrsmMrKlel76oqebi4eG6AzlBwJ2xnhhY,494
266
271
  reflex/components/el/element.pyi,sha256=31AX-CCTBocTunCaAThKqga3tNU03lPsmevbT4xOqQo,3213
267
- reflex/components/el/elements/__init__.py,sha256=WYfDTRAgm47AcIf2ePjzVHKOVEKDW1IpyQ5NG664sRA,3529
272
+ reflex/components/el/elements/__init__.py,sha256=SljCYxeXXbq_gB3yokpuy5QlgIlWzB45pj27o5Jx4dE,2322
273
+ reflex/components/el/elements/__init__.pyi,sha256=T6vmDDVtnmHaNF03khC_OC8mQ2h7DPM4WLYggQPAniw,9801
268
274
  reflex/components/el/elements/base.py,sha256=7o_ifyF0Hq_zRpF5-WbiXWP7cgsiXju1jllUPnrOK8w,1982
269
275
  reflex/components/el/elements/base.pyi,sha256=_40MCqre_XjD-rRoVXCC-SgyXTBOZqHkcCA_fURwlb4,6340
270
- reflex/components/el/elements/forms.py,sha256=vh4wuk4gO05_i2CQPi-X3-pvKOKlxZo5cSXuhEb2GWM,20167
271
- reflex/components/el/elements/forms.pyi,sha256=mXAZDEYsopF_9EDqIQIaAyAtoJGaP9Yiav6avfzF7nY,99555
272
- reflex/components/el/elements/inline.py,sha256=0NozHMAyJaaUCRbmjX0MqMRmRYYmPk2EOCtKAr6SIE8,3610
273
- reflex/components/el/elements/inline.pyi,sha256=tJDkeoqkxJ8OID7DaVs5vu7OFecBQG1FGNE1zZSzTLw,164607
274
- reflex/components/el/elements/media.py,sha256=P9vIRdHhyojobvVEZOeQxUG7-mADS4bS0FvQG-VobjM,8467
275
- reflex/components/el/elements/media.pyi,sha256=30VypaPoH5blCISPmjell7RngHdXsIrf6AidTb_vc8Y,93669
276
- reflex/components/el/elements/metadata.py,sha256=IA756--gDaYnb0I6soe3J2-ZnKAq91a4SWadCooY9hg,1337
277
- reflex/components/el/elements/metadata.pyi,sha256=1vyvTtPAymb3Nf_4iJgaTiCQUwRjnLZcAX3vZdE9Nhw,28031
278
- reflex/components/el/elements/other.py,sha256=USuZjw0r8esrz1sXZOZUW6AG3ubgc0OUsGa-b1ZhOeg,1569
279
- reflex/components/el/elements/other.pyi,sha256=xU2Jhs6Iq9GVG_S_8_DPEP7vTNPHQFF5UMcte5pHDmo,42033
280
- reflex/components/el/elements/scripts.py,sha256=-aNc2sOTuob7v1hM-vKOE0gMjibOyKJZUu-bzzHC4ws,1406
281
- reflex/components/el/elements/scripts.pyi,sha256=8a1a5rd16DIJE9qOGuOCmYR4uc2yP5lpW_apGXsRgpw,19615
282
- reflex/components/el/elements/sectioning.py,sha256=8f1cmHe8madVeGv77gkMIccWZUA__G9YBHAUXypkqjU,1535
283
- reflex/components/el/elements/sectioning.pyi,sha256=WLQF2m1h1X_368p76hShSz65Fd_qmrqV8VYqBtA-ajo,87242
284
- reflex/components/el/elements/tables.py,sha256=dUXZhoHIDco1bt1Ty7AUwhQgX4C9_i8nCXbGCyQ7Tus,2767
285
- reflex/components/el/elements/tables.pyi,sha256=E_eBbTq4hxoN8A-0MJSkDawVAXdGaJnWpvop46br6Aw,61849
286
- reflex/components/el/elements/typography.py,sha256=vtQu_tNpDZH88UB3zhM2xwCmBjmefbFxTkYmVOELgnE,2432
287
- reflex/components/el/elements/typography.pyi,sha256=Azi-8-rsdZRIAoSG149UIBWVuul_I_Xo4c-5uvzGlHo,89115
276
+ reflex/components/el/elements/forms.py,sha256=20xxoOPC1IoBgzBBsSBGp0JSTy87jhB4lH3uIO_ze6A,20474
277
+ reflex/components/el/elements/forms.pyi,sha256=NNk40fYkIsfnUY5JJan8mFY8f_Ktm8MGiH0naFkGC4A,99861
278
+ reflex/components/el/elements/inline.py,sha256=OfQaGs6f0-9ycjZGbC8izJrHaGcTSVloF83AaJ9DKow,4084
279
+ reflex/components/el/elements/inline.pyi,sha256=NbiEfpZNVjQfhfidbT5O6V-XbxlrtnQCp3FWHSM3-b4,165080
280
+ reflex/components/el/elements/media.py,sha256=Jmy_HKJmTqeK43p25GJ0BTPBPFU-IPWmHLJlzZSlcrY,8767
281
+ reflex/components/el/elements/media.pyi,sha256=5czBFD5VGAV6PoD2sQJVMkrjkK1imRTrQTHOZDIxz0Q,93968
282
+ reflex/components/el/elements/metadata.py,sha256=6QWUYBXwm-MFmiPQb0BZAA-T-deiIJamQRNSG6wX1a8,1436
283
+ reflex/components/el/elements/metadata.pyi,sha256=PoiKQsKdFfuANwRLQ5f_sN-wst_uUpPDa64OB-WF2zk,28129
284
+ reflex/components/el/elements/other.py,sha256=FtpIzwXm76gv0s2GVa5fRf-NxWcPrHZgf7oWZXfefi8,1728
285
+ reflex/components/el/elements/other.pyi,sha256=o4ItOn-5rw5ORVsKn0mGzaa1arTKK41Srqbc4-tSKrQ,42191
286
+ reflex/components/el/elements/scripts.py,sha256=eLa5t-Ahv8R2vG-WeqEmbP9Aq0gKMclQ9R3mQSGL_k8,1481
287
+ reflex/components/el/elements/scripts.pyi,sha256=l42PE-PA3Kbzbctm_QFa0GvSKMgtrJNIjwY2-00nXPc,19689
288
+ reflex/components/el/elements/sectioning.py,sha256=X2MVJvEOG1X1id6muzkfLgo5vVExwnsgxa-fdLY2zBA,1824
289
+ reflex/components/el/elements/sectioning.pyi,sha256=D_J7F4NrG8SoyH5FTWwD9hbwhxGXNHwQtJm3KZB76mg,87530
290
+ reflex/components/el/elements/tables.py,sha256=t3ntsbu2b1y8-AZHJ6Jddd7Ccdg0_CTiiN_yrNwZ7AU,2967
291
+ reflex/components/el/elements/tables.pyi,sha256=kq77-OT1jmHVCEeQasipmXf0Hc6IhBjbW8fVgo5zCL8,62048
292
+ reflex/components/el/elements/typography.py,sha256=rsvjZWnvcUBuIU-qRRWeGh2N-lc8EG_bAnh2wr_aov8,2724
293
+ reflex/components/el/elements/typography.pyi,sha256=sxoX6SlevepOOPE_q3kpavP_vohgdt5x0uqYQJ7mo5I,89365
288
294
  reflex/components/gridjs/__init__.py,sha256=xJwDm1AZ70L5-t9LLqZwGUtDpijbf1KuMYDT-j8g3pM,88
289
295
  reflex/components/gridjs/datatable.py,sha256=0ZfThKgsvOKpUH_vsZDZaadBqWIywZe96RXToS3VDnM,4304
290
296
  reflex/components/gridjs/datatable.pyi,sha256=e-ISnxeBGD8ia-yk0fBVo-rJoyYOb3kxfk3AelZE3qo,7053
@@ -297,7 +303,7 @@ reflex/components/markdown/markdown.py,sha256=nPQm8P5VfKhXuWM_o-2kYrEF9U_aa-tr9n
297
303
  reflex/components/markdown/markdown.pyi,sha256=E-SG4gu4LSEprKixt9d8t2yS6e0WDHD2J2jnSdsJE7I,5100
298
304
  reflex/components/media/__init__.py,sha256=TsrfSzpXcRImityfegI2N9-vfj1a47ONUS-vyCUCEds,44
299
305
  reflex/components/media/icon.py,sha256=1N268zLI9opst8EQkF5gPA-UN0aMprguUJgSbdFdo5g,102
300
- reflex/components/moment/__init__.py,sha256=XSYjQyEDvcSyLhS0uaoBWlLSp-whmqCkhvXh7bpotAY,79
306
+ reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
301
307
  reflex/components/moment/moment.py,sha256=vqyWJ8Xv5bi2xKZv5ATUb4F0YghowNRLyiE3R_OPc4I,3925
302
308
  reflex/components/moment/moment.pyi,sha256=ymq4haVoHpfgyxIlbeEB-FhJ7k8JovSUMyB9gSBMPo4,6870
303
309
  reflex/components/next/__init__.py,sha256=jqYJK6QOAUS2PHpFy8xI6qDGn9h1aT0inNWYX_rZFM8,239
@@ -310,11 +316,13 @@ reflex/components/next/link.pyi,sha256=Ct36W1hDaaslIkM_enRXDoLO7KwJSbzaFLGyBdPQi
310
316
  reflex/components/next/video.py,sha256=2f81Ftb-6sikQb1xvExZqqQe0tcVjUY80ldh-GJ_uZw,730
311
317
  reflex/components/next/video.pyi,sha256=exp6Gg-YXJBspVcjQn6KhY4nWgopnDzt5cVII-Fk2Pw,3429
312
318
  reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
313
- reflex/components/plotly/plotly.py,sha256=GVExqrdSIfXngDFZATjjkomrwx97UM8F2W56rdLQFuM,964
314
- reflex/components/plotly/plotly.pyi,sha256=FrY0iQX7elz2ZWKW-DXdg8cz_v7bB7QqkZkpUZ1-oj8,6865
319
+ reflex/components/plotly/plotly.py,sha256=sESaF-5AI_JuXwWxAXMYSUzBviWkLh1aFTb3UCwLk00,6201
320
+ reflex/components/plotly/plotly.pyi,sha256=en9GZg5xctBUVTgK-9kyDL1zdRnFy52IbeBiJEMnNYc,9014
315
321
  reflex/components/props.py,sha256=0zyzw4dmAAPh_-mbr0_jGSRDQFKUM9vkz5MXA81nZX0,906
316
- reflex/components/radix/__init__.py,sha256=5BGBr3z1_GcgCbNXUqAlK5AR13J7fxzFn4Wj-nTDNa4,112
317
- reflex/components/radix/primitives/__init__.py,sha256=wkbCDG6q2MuZobhD6FeH9PgLXKZhb6cImguCV4n-aGs,214
322
+ reflex/components/radix/__init__.py,sha256=oGg_AE9vkAeGBJdQTth7tnbG_BtnXfQf402GnUp9LCY,473
323
+ reflex/components/radix/__init__.pyi,sha256=NYoGUYzuIliK97-txDmDGaYXqKYU-bjbT2nu1jHhksE,4038
324
+ reflex/components/radix/primitives/__init__.py,sha256=awInjOiMrcrWgQU_jqfg9LCJ_lvDzD-JKy1sKgXH5QQ,442
325
+ reflex/components/radix/primitives/__init__.pyi,sha256=wcnPicjWQgJkuyXbk6JPaiUyb-lnYfreNqyXCeDJdb4,482
318
326
  reflex/components/radix/primitives/accordion.py,sha256=BKNvkuAjGiKy6YU39xwW9y_G9cLe_28Mtbnh25xVjEg,15801
319
327
  reflex/components/radix/primitives/accordion.pyi,sha256=BXQRJy7SlivFm_lwFO4XRSA9-yve_8k4EmGHQFUpqWk,38019
320
328
  reflex/components/radix/primitives/base.py,sha256=s3OX4V2pNl6AQ3H9rz-pkE-2TNuNrqj0Mn2mOItF0eM,869
@@ -327,26 +335,28 @@ reflex/components/radix/primitives/progress.py,sha256=-O0puNQxxRDlgucNI697mzsMy-
327
335
  reflex/components/radix/primitives/progress.pyi,sha256=S4KuRSo46qdtGff-4RMUBOPshvVjDEKfU7lt8AyA3cU,22866
328
336
  reflex/components/radix/primitives/slider.py,sha256=whEo2n09mRqRJgq7JGRzrfMjvxHOnJAuGo-5ceSY_fE,4931
329
337
  reflex/components/radix/primitives/slider.pyi,sha256=m-BYgslIMcTkoBYdeDysbpC5XTf9WjX-TylOZWkXNNk,16882
330
- reflex/components/radix/themes/__init__.py,sha256=G7nHi3YqfM17fVE_XycJYapjB6en3wCcuwFz6xci45Q,292
331
- reflex/components/radix/themes/base.py,sha256=RepABp4uqffOZhzmFd210BgMcyXmsQrWTQXKqyjR5o8,8294
332
- reflex/components/radix/themes/base.pyi,sha256=zAo0VQcLpSU4sxGT0DX6TaUF0IAjIei8IM04IgZFsHE,26971
333
- reflex/components/radix/themes/color_mode.py,sha256=EREBySHvdxViFxXIggySSZeDkfGe4bs1XWmtGwIBRs0,5543
334
- reflex/components/radix/themes/color_mode.pyi,sha256=4vL-az_AAulTiKOyY0_H3EyFMR_pxAB-EN50EEz7Oyc,22145
335
- reflex/components/radix/themes/components/__init__.py,sha256=YNqd2CzuNp794X_12iVLC2b8HRDiyIDuwZWiS_bu620,2440
336
- reflex/components/radix/themes/components/alert_dialog.py,sha256=QNxRfqZZQb5oYG1or68cYOYH5NaSuy3RK03QrLyfhuA,3267
337
- reflex/components/radix/themes/components/alert_dialog.pyi,sha256=gVA8HRj4a_BmioWMIK8u6Xo4jO8QtwOcn7rKJtnmTlk,24434
338
+ reflex/components/radix/themes/__init__.py,sha256=9HxYz_pwU9LHFJqDrDHSCSxuE-hsTaSE8t7IJoA-m20,491
339
+ reflex/components/radix/themes/__init__.pyi,sha256=AxRMKWpwoqrTX3c6_4UoA-c83UBMXlTUT5VunX09Vr0,514
340
+ reflex/components/radix/themes/base.py,sha256=bjxLn3A9qZ0b40L49Wf3tuQTOX8WdK_61teG0O0jYQw,8549
341
+ reflex/components/radix/themes/base.pyi,sha256=cS7wuwDIkTMwocxXJ6WA4iHZ2QYbKqydONKwBVryIZo,27140
342
+ reflex/components/radix/themes/color_mode.py,sha256=FenXbQGerDxrf_3gBsPc82Zb3F2AW2fSE9svYuSYFN8,5562
343
+ reflex/components/radix/themes/color_mode.pyi,sha256=YZhgqFy7Rg5mHOzavIqV0tPtLeVz4eUONe10n5Adt98,22164
344
+ reflex/components/radix/themes/components/__init__.py,sha256=AyKD27f07gNt0LUivdnkiztjTKERqWKf5Rvsem3oARQ,422
345
+ reflex/components/radix/themes/components/__init__.pyi,sha256=PR1-XcaPrifdZzUhSA-dti1IE0tTx8fH1NjByweHr5o,1991
346
+ reflex/components/radix/themes/components/alert_dialog.py,sha256=03gL7nTSDjbCH5qUVFpjp62uLBqopHxMwgoBW1Bq7Uc,3293
347
+ reflex/components/radix/themes/components/alert_dialog.pyi,sha256=Guphxb5LEMajrvU4JsXcFpCevfOrHe51Z5VYbKng-qs,24460
338
348
  reflex/components/radix/themes/components/aspect_ratio.py,sha256=jNoNtYkUYxhbBT90WjQYyuDPCpZFq4linlBvu4Qz3n4,400
339
349
  reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=BrAbHWtv9nJFq_A0pdz5k4KdE2mKFHBJhCKVXK0pmXk,3640
340
350
  reflex/components/radix/themes/components/avatar.py,sha256=cwSbajTICFi_jnLBRP8-T_IKaXFKF9ZQj5UbpQvUA0E,989
341
351
  reflex/components/radix/themes/components/avatar.pyi,sha256=u9y5XAfe5td14EGu38mi9CDPLgIwZgxIJbaGxWQRsWQ,6562
342
- reflex/components/radix/themes/components/badge.py,sha256=5EKkbBWGztM_tqX9zMb3_z8rToeK6uFFBsJv_nohwyc,821
343
- reflex/components/radix/themes/components/badge.pyi,sha256=TpfXNPmc8hGQxVtK_JVAVYGS4lI8Ypv57KY7gwfptw8,9347
344
- reflex/components/radix/themes/components/button.py,sha256=mzkU1JLekKuthh0vMwSt1g7jplEMbntxQDZjBsKdVqk,1125
345
- reflex/components/radix/themes/components/button.pyi,sha256=2TUn-EiPvCuNwMdx57-E5_BS-6J-DX4QUxmrwIFE7bM,11939
346
- reflex/components/radix/themes/components/callout.py,sha256=pujKzpsi-GppN5ZirygY84yKbW7Cbkuu5z5cfwA2qmU,2378
347
- reflex/components/radix/themes/components/callout.pyi,sha256=v3O46SbwhgK_z0yuEweaK86SFF3AhxtaCjkauDOhL_w,38710
348
- reflex/components/radix/themes/components/card.py,sha256=z0JcGi80Va24jE5NeGHCNnGrtW_zmFu5z38PlTwG8Tk,659
349
- reflex/components/radix/themes/components/card.pyi,sha256=deWd3lkVqJZcpwHwct4LOAx2Xh5rMSgVBljZkJT6LEA,7200
352
+ reflex/components/radix/themes/components/badge.py,sha256=ur7aUUD2AeFzNhdaZP0VesYw5fD5HRCYjlMd3o5aRe8,847
353
+ reflex/components/radix/themes/components/badge.pyi,sha256=xxdmtmNuAvMUFxS4l3VMBBuXzthPrC0KHUafNOJsWvw,9373
354
+ reflex/components/radix/themes/components/button.py,sha256=YLT-Frh9f2gdWyUOt98OJ7QlUVhTMibFA-ctoKj8020,1151
355
+ reflex/components/radix/themes/components/button.pyi,sha256=ROVjH5CkBfkn9aiCH98glSKAQOvMEv4-geeGtKSX5k8,11965
356
+ reflex/components/radix/themes/components/callout.py,sha256=J8Vttu37aHDxuKWyWwSoR07kCSZ-ZAYAO0HPDAVwE9k,2416
357
+ reflex/components/radix/themes/components/callout.pyi,sha256=58FzM0pwOLuMtlD8UqmFO4wNq2wNqgxvbaQZCtommCw,38748
358
+ reflex/components/radix/themes/components/card.py,sha256=5DXE1gnvJDGqtFrKO8WB_FMz9e6_5HmKr2HCLsoYZAE,685
359
+ reflex/components/radix/themes/components/card.pyi,sha256=_k-Zo1Sid5pJJ022x3mVxF-PTIK-hWmbTYyF0NZC_SU,7226
350
360
  reflex/components/radix/themes/components/checkbox.py,sha256=KFwGAvPXb1elNmjJZYhA2EuK4bI3CMN5TB1V-zOI7cQ,4679
351
361
  reflex/components/radix/themes/components/checkbox.pyi,sha256=NEEbJq4-dxh6VnWRjP0TL5wfpw9bl7UPQ2CskeRTqEI,20877
352
362
  reflex/components/radix/themes/components/checkbox_cards.py,sha256=PWAM-f1x0z8PLGAMu70pr1t19AI2MJv23VcHIotNp60,1301
@@ -357,18 +367,18 @@ reflex/components/radix/themes/components/context_menu.py,sha256=ReofwS0fIRjhyFn
357
367
  reflex/components/radix/themes/components/context_menu.pyi,sha256=Z053-qFpuW38NpFzuik6ltiaUJJbUAdEdQSDY_97k_s,31192
358
368
  reflex/components/radix/themes/components/data_list.py,sha256=4osySv8GweMTomUs5upkXdqQg8ORxUDDZ-_IB6HaUIY,1508
359
369
  reflex/components/radix/themes/components/data_list.pyi,sha256=gdk4lPTreUhBcfwHjOLwojTe6rvjxx1vuZu94dVrPPE,15403
360
- reflex/components/radix/themes/components/dialog.py,sha256=DsvATCzPVshYyZssl6yxfDj4Y8yfZPMSFJQG3zUbffg,2600
361
- reflex/components/radix/themes/components/dialog.pyi,sha256=Uns0-9zljL41ecgvxrDLjx3rTnS4-ylfEmHLOe3dfZk,24895
370
+ reflex/components/radix/themes/components/dialog.py,sha256=Pv0V9P2h_xlNLbKFv_xqnrQE6DqGDR89dAVnLC5WHdA,2626
371
+ reflex/components/radix/themes/components/dialog.pyi,sha256=Bx8-tWS5CM-tWLQaybTOInPFD09oWNy8TbGpXnrrBqg,24921
362
372
  reflex/components/radix/themes/components/dropdown_menu.py,sha256=l4aVffoCdvezVjjXiMrBebMtFhEXmpTMUdZK28lsb8I,11256
363
373
  reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=T9dvKSPEtFTEnaZ93o5sIZDpzCB0N_hbmdpTbYS_Sjk,37901
364
- reflex/components/radix/themes/components/hover_card.py,sha256=H8Utf1ox86YFYr-I9MYwD5iUzzpYRO2rAgB0k5TvnN8,2405
365
- reflex/components/radix/themes/components/hover_card.pyi,sha256=4uS8yhPJbWT5no8-pPGt9XJMp7iymqoSj7L9uu1yy9Q,17744
366
- reflex/components/radix/themes/components/icon_button.py,sha256=4qDNeP29oBue0VijQfMlgbck0plw1T1SkM3-tORjF4k,2940
367
- reflex/components/radix/themes/components/icon_button.pyi,sha256=mFl1kphrmVrlmGmh_bdlhc6dutGsR1gLl6n0liMyaMg,12126
368
- reflex/components/radix/themes/components/inset.py,sha256=MEYMjiqCkUmAXyGONuwvqmnpEZ4ka1RL_rhCN3hUeR0,1015
369
- reflex/components/radix/themes/components/inset.pyi,sha256=iO8k-rNQtsqtnCl7KRa2QnTRJ_NZ-7vIBep9zqCPY9Q,7889
370
- reflex/components/radix/themes/components/popover.py,sha256=rUfOqbJEBTPjJHlKxbQ6_067rae4zByWHlMSEXwGB68,3177
371
- reflex/components/radix/themes/components/popover.pyi,sha256=DnSFL0s4WrQd9zCRqwS_YZ1OHu_Uavvvc6I0s6RPIsw,17404
374
+ reflex/components/radix/themes/components/hover_card.py,sha256=ryIjvUUqr-85aoQb9DW_wIVIXEC5hv-Lje2gnq4e7UU,2431
375
+ reflex/components/radix/themes/components/hover_card.pyi,sha256=knOuyIa1PO_xfBrFJ8YGP73UuX39NKBNgEHarqT45RQ,17770
376
+ reflex/components/radix/themes/components/icon_button.py,sha256=g5qt0UGnh2jGlyTG22-lTUP8FXSABQd-GsO7W4GXFYA,2966
377
+ reflex/components/radix/themes/components/icon_button.pyi,sha256=-uy7dRbkhg1EkwU1wh60CzAWzRmB_EgchmErAj4U46M,12152
378
+ reflex/components/radix/themes/components/inset.py,sha256=ISVHNoTnAP6rz0fvuOjtOjfy4jBqS-x11yEizghTDYE,1041
379
+ reflex/components/radix/themes/components/inset.pyi,sha256=USv3DFPA-aRxvVsJGYXxiux_snago4tHcplkDf9L_aU,7915
380
+ reflex/components/radix/themes/components/popover.py,sha256=JB35U0xc6YpcK2QGloFCyUQabscNPCSjY8k7IhiMc8o,3203
381
+ reflex/components/radix/themes/components/popover.pyi,sha256=KgU_pVtojESvW74Pj7MlbysDud1iylqP7lxAP9gBf-s,17430
372
382
  reflex/components/radix/themes/components/progress.py,sha256=82hnLnSwqlPeuBYXDz20bzWmGOpj1DjJQz4VRwyMrMY,1598
373
383
  reflex/components/radix/themes/components/progress.pyi,sha256=Uhc300UzTX3Gx-Voj6IHafiCRNquED97zZ3E4bw7PqA,6676
374
384
  reflex/components/radix/themes/components/radio.py,sha256=LpqiTO5mg4XtAvhw6XHSL2sMQQImLmDqlzV4jGy94zU,762
@@ -393,49 +403,51 @@ reflex/components/radix/themes/components/spinner.py,sha256=lhS3Hi8h7dJLA9D4NNxH
393
403
  reflex/components/radix/themes/components/spinner.pyi,sha256=UtmAdfa-OrMk00VKPLFdMueB44i5beQF01w3WpZ0fQY,3845
394
404
  reflex/components/radix/themes/components/switch.py,sha256=AY0kvgUxIv6o-YVSy8rWV4h_UqRiPsEZJiTf4J-TTuI,1976
395
405
  reflex/components/radix/themes/components/switch.pyi,sha256=hcDJUSdNuAlbxlOZc9vbT8pIllSSWcxjAePUv_x2q_Q,7404
396
- reflex/components/radix/themes/components/table.py,sha256=WN9MVfm4PsvB6L5Qtqmh_84mBdPjFv5CPcGbQA3WCG0,3111
397
- reflex/components/radix/themes/components/table.pyi,sha256=gfIrd4WXdUwR-i08m-RVAMKosWWc9Uy0P6kQ4Z16R5k,47387
406
+ reflex/components/radix/themes/components/table.py,sha256=299bdQdm6G2-qriCAtjoWE518LlbSCRWrfrGfuHdFZU,3173
407
+ reflex/components/radix/themes/components/table.pyi,sha256=zASnCb6Vn6xN8vj6YH_A5wn1PhDFXZ8NHfM0NqzjppY,47449
398
408
  reflex/components/radix/themes/components/tabs.py,sha256=czB2Sd6eOZfgz7flh63jchBJJEWFO1aZwCgs25xjdkQ,4150
399
409
  reflex/components/radix/themes/components/tabs.pyi,sha256=3BCOTLgxO24E04zaACvsxcFzy4jjaGDodC-5dx06ehs,19419
400
- reflex/components/radix/themes/components/text_area.py,sha256=9AhvEXcr87B1o0wmCTyIWYuzUNes_kMbXJh95Gai01o,3233
401
- reflex/components/radix/themes/components/text_area.pyi,sha256=xOeJ23O-LKoGsgRbFDOsubkGJjZeAEKvjGasTi5J09Y,11711
402
- reflex/components/radix/themes/components/text_field.py,sha256=IO8AEvpUvkysH5hCS-X7EaN3sR42GgzLvQj8_Evkb3M,6527
403
- reflex/components/radix/themes/components/text_field.pyi,sha256=1rFK-ANTvuFgPjtq8JFnTVxjB5p0Z3-ZwMVI6yB3CPY,26637
410
+ reflex/components/radix/themes/components/text_area.py,sha256=mr2NxIYM_h1A4lJx2WMYzS4wDbfK_YDjZPxY2b-2W9M,3595
411
+ reflex/components/radix/themes/components/text_area.pyi,sha256=yeI9fT5LAbuhUeJdAqfpvwybjArIF73roLD8XipPOdA,12460
412
+ reflex/components/radix/themes/components/text_field.py,sha256=vOiPDCnwwOhBlqaNzU-Ek-3JDBj-vCOXqYKPdOyLdL0,6550
413
+ reflex/components/radix/themes/components/text_field.pyi,sha256=P106y-_nO_e5iU2NHA5Ie7W-b-sOS45NAG-7rAFFW3I,26660
404
414
  reflex/components/radix/themes/components/tooltip.py,sha256=gSeURvwI8ITUoTmtWVFFMIeUMEL6B3NrvX0hw3Y7lWg,4465
405
415
  reflex/components/radix/themes/components/tooltip.pyi,sha256=D53eQARMkv9claFUnfFVgL2uZA3bq48fWL21zzWGUaU,8092
406
- reflex/components/radix/themes/layout/__init__.py,sha256=BtVM87BKeMfvEnJxUo4LLZ20aQRYJSHXd6G1F1v4oRA,811
416
+ reflex/components/radix/themes/layout/__init__.py,sha256=RyQt1IK7jrucdjCHN0q95ninEbB80fDTxverX3STg3k,405
417
+ reflex/components/radix/themes/layout/__init__.pyi,sha256=go5Tqms8LUm4niykJRIA0meYtQdojtGN5Vsos61qY9U,860
407
418
  reflex/components/radix/themes/layout/base.py,sha256=4vLbCSo4MgR_SH1grNZpE6IzVSKuWPHglk9Qu2P8xm8,1211
408
419
  reflex/components/radix/themes/layout/base.pyi,sha256=eJOKNW9ClfS5YTssNTq6oSTg-d-Ytv_Ee1Vg8LoPTDM,7663
409
- reflex/components/radix/themes/layout/box.py,sha256=YNQi7sK95oatWia-rHnePte_qYBQ4Oss1E7Djn4VqXs,281
410
- reflex/components/radix/themes/layout/box.pyi,sha256=4HQmd6w6DG3DzPIRh79FkxHAlC-pKbrNcUXxX-jdikk,6462
411
- reflex/components/radix/themes/layout/center.py,sha256=QCOo4mO8R_ziI1qn_6zhQfLA-RGkuWgQvWFvCIdbwYo,465
412
- reflex/components/radix/themes/layout/center.pyi,sha256=6-olLg2ISelUSDuTeBwVJ_s2mXnsalsdn-esIKqgTpw,8272
413
- reflex/components/radix/themes/layout/container.py,sha256=PrwC_MjJmeyJ1Vu9zyFDcAJA0WIhY8BvXRVOT8I7YiI,1405
414
- reflex/components/radix/themes/layout/container.pyi,sha256=SFwzZKYohv7y6_6WfjIhRagDj0XUY3IqwUi8Hdzd4M0,5247
415
- reflex/components/radix/themes/layout/flex.py,sha256=Jrr02gH7RzBUY-ul3POs9IepkOLdDEUEhNF6VQgoA4Y,1374
416
- reflex/components/radix/themes/layout/flex.pyi,sha256=oeO_VKqRakzH2IkAwVSJ191PeD2j_j8CIJi1LMiEnNg,8501
417
- reflex/components/radix/themes/layout/grid.py,sha256=LOxEEtdfCtPgbW84aaQrX5zkASi6aqBHieYRUo_BGuY,1498
418
- reflex/components/radix/themes/layout/grid.pyi,sha256=mfeSPKYoQISusvTDoUA0QV0PYS01uA_cBT8B_zC_-R0,8907
419
- reflex/components/radix/themes/layout/list.py,sha256=1kgtVnuzcq-hMjj79nFsDlzKyKeqthDFvstz7sP7iDE,4933
420
- reflex/components/radix/themes/layout/list.pyi,sha256=1GCbKR8YKWl_aOpKtkBeH9k5zI1_u97MQ0I1H6LUYA4,28910
421
- reflex/components/radix/themes/layout/section.py,sha256=w9OmAycanmWtFndDGDNIkJZZJJ54wIg6OQn5WaQ_Q-w,458
422
- reflex/components/radix/themes/layout/section.pyi,sha256=6yQnmu_aIE0tXKBExtUumzCWnq5HU6-uhPNqGI2sTXw,6758
423
- reflex/components/radix/themes/layout/spacer.py,sha256=Vb7-F1TgrAhFsrVr0Eqr7yP3i-z_-L2iJEDHbemevXw,448
424
- reflex/components/radix/themes/layout/spacer.pyi,sha256=aGDZJyYVKhmzm8BhYO6qNfGSN9wG-EkOetDENE9D-Uc,8272
425
- reflex/components/radix/themes/layout/stack.py,sha256=dGIRKYnx7jns_V-LL-OJ2aC-p-C0ZLnlIC2bXgxVDiY,1522
426
- reflex/components/radix/themes/layout/stack.pyi,sha256=Gq87nlYHn1MMNHfWGeS14NVQmxrowscfMLs_9VnHTnw,22132
427
- reflex/components/radix/themes/typography/__init__.py,sha256=gbsMbniQAZ6UPS7ReL67r28BSd4-fLoMEVS5wx1Ymro,343
420
+ reflex/components/radix/themes/layout/box.py,sha256=j-fzawX2HXdTVYPorpERvyOWGRvS5gvVSjegIDuQ53U,326
421
+ reflex/components/radix/themes/layout/box.pyi,sha256=fgElqsNrKJp1k0UypuxpXqQythExwDXSt4l9IwovEuI,6506
422
+ reflex/components/radix/themes/layout/center.py,sha256=iNGsfoVUrVtb-TH3sdOVpxUQHF-2GTVFVCX_KkRuQog,490
423
+ reflex/components/radix/themes/layout/center.pyi,sha256=RfYglzS3eIB5uaTue0YgMkAtFdUSuHSbPK0J8agZiM4,8296
424
+ reflex/components/radix/themes/layout/container.py,sha256=Ut703FUztDP2cJ01OPOqzc8fQ94FAPOYAAuur6vM9II,1462
425
+ reflex/components/radix/themes/layout/container.pyi,sha256=GUKH2UUVMjSPX7JOYf_EkPNSokJDHni0zdPg2iovyMM,5303
426
+ reflex/components/radix/themes/layout/flex.py,sha256=uVYixM-MdFjs0ubDeloKY5n5hhyWYxANoNTNFmPZXzI,1421
427
+ reflex/components/radix/themes/layout/flex.pyi,sha256=Ibzsak6CWcLjFlV02X8WqmuY2XYnhdUUiQUE-5tNPJM,8547
428
+ reflex/components/radix/themes/layout/grid.py,sha256=NNb1U4Dqc4b38vOaQnbfuurXNytLKaBvEd9MtYIV47A,1545
429
+ reflex/components/radix/themes/layout/grid.pyi,sha256=yWZI3QkwoNewoULUzU97j94B1VdrnI7EbsyTEtximO4,8953
430
+ reflex/components/radix/themes/layout/list.py,sha256=dkPXWqWrLtevvaFuir7gwQ67PhDm-2bF3U7rd2BC36M,5343
431
+ reflex/components/radix/themes/layout/list.pyi,sha256=N52SJfxIIF2jY0mlXHooSKLt9Jip3xhIyIpvPoAuoG4,29001
432
+ reflex/components/radix/themes/layout/section.py,sha256=NsXCK5tCZJdWzaMJMNG5ZoCdC9kBUw4bbTLPWtwkGuY,534
433
+ reflex/components/radix/themes/layout/section.pyi,sha256=1Oe8VSn8_Y6DcttDG4yQoJX4lQRDM1VWNJCUba_DMTU,6810
434
+ reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
435
+ reflex/components/radix/themes/layout/spacer.pyi,sha256=c349qHuzk8IuCFO33CWA1z-whL97ypVdcMe7ddRpd44,8296
436
+ reflex/components/radix/themes/layout/stack.py,sha256=yPUUKH4SSNiLUerY4ebtIHDvIIKiRjDFQn4FtK1S8Bk,1591
437
+ reflex/components/radix/themes/layout/stack.pyi,sha256=UxCge0eWrMrYhiWZgK_5dMooLa5kMBQvVraQotbdHXA,22200
438
+ reflex/components/radix/themes/typography/__init__.py,sha256=tI6qnNEyOow-AjRx5bLUow9Wc9QyRA3oT0BR95fUbDw,421
439
+ reflex/components/radix/themes/typography/__init__.pyi,sha256=q1qpr09BCZpyi4ri9U2N1YLvcqGYwyajlw9GMgRUSk4,521
428
440
  reflex/components/radix/themes/typography/base.py,sha256=uxSmOnrr5bnP6_aPI8FI95kn2bf9DZYLXshg-GpCDug,408
429
- reflex/components/radix/themes/typography/blockquote.py,sha256=2oeU4a6y4BwlPXOtwCIRJ1x5AIy_GgIjldbppRXJdH8,799
430
- reflex/components/radix/themes/typography/blockquote.pyi,sha256=xy28s36FJMtwVSDyEEWPku9J0DrIphVcd1UKFXNG3Fk,9316
431
- reflex/components/radix/themes/typography/code.py,sha256=b74UXNv6ktmO0bTkMKFYR41XkEHyHJoJI3mlhLuA0cE,909
432
- reflex/components/radix/themes/typography/code.pyi,sha256=EpqSO88Nlbg9XnH54Jkwxtx2bXiF3X2cDYqoeQI38rw,9513
433
- reflex/components/radix/themes/typography/heading.py,sha256=xKJUzuodTcu6e1in8tDckTfZ9te460mswPgbSj5a6U4,1324
434
- reflex/components/radix/themes/typography/heading.pyi,sha256=DU78CN3o81WHOIuOi-OC8xBrp7K7DUSxXVvtYzZkXWk,10106
435
- reflex/components/radix/themes/typography/link.py,sha256=dkehtyVJp8ah7KEAh47Bb-dJOcfq1G_TitpW-n7PMt4,3291
436
- reflex/components/radix/themes/typography/link.pyi,sha256=llFWQRdDOmkaN9ZHjpKkcYz9ovhZV-MRMmLZAec1tnM,12144
437
- reflex/components/radix/themes/typography/text.py,sha256=BQ_15kkTWvAbZr8dczgMmsKrUhIZzAN-f6r-Nzf9ZU0,2604
438
- reflex/components/radix/themes/typography/text.pyi,sha256=jYHiLVgK0hDxZD-3HhYatm66Vm0Hn_GRgMbszn1DAyU,57238
441
+ reflex/components/radix/themes/typography/blockquote.py,sha256=c0HEniYgnkRgiYQijHdkQVXNrhgfTjmEUn3tpLxrfeY,858
442
+ reflex/components/radix/themes/typography/blockquote.pyi,sha256=6bTaNPLHDwCAdvabNijSI742nZEXeikSapk1cEN9BHM,9374
443
+ reflex/components/radix/themes/typography/code.py,sha256=efRYtRDBDfwruC_r5yWt_wOCK-DZfRLPzP0YwiBZXzM,956
444
+ reflex/components/radix/themes/typography/code.pyi,sha256=tN1WjFsFCubhlPIMu6KNWLGIQXha6Ba6vjBcKYgnvv0,9559
445
+ reflex/components/radix/themes/typography/heading.py,sha256=xIirx8wtbwDR8iZ-WyCLgcvlylNzFVSlWM-2quzI57s,1377
446
+ reflex/components/radix/themes/typography/heading.pyi,sha256=GIi5Vna0lvWZ5IbW8D24i4qp8tnq_7zyzA02KnemFp0,10158
447
+ reflex/components/radix/themes/typography/link.py,sha256=iYDIgUo1avKpHPdoGge8CA3oTV7hTNqv_wwKIVRKRgw,3312
448
+ reflex/components/radix/themes/typography/link.pyi,sha256=HOgHHwgxLgMPNLONM4ytcyHdUQcCHYcUO0dkjrcS5ws,12164
449
+ reflex/components/radix/themes/typography/text.py,sha256=pa1M77fqDIYvx2jOCrCQbMGCVXnHfN7JucDOFFJ-NSs,2654
450
+ reflex/components/radix/themes/typography/text.pyi,sha256=aHAi3BHfLZbxH89TA-yx9k5Y0ZBgpjpil6rVHynkE-w,57288
439
451
  reflex/components/react_player/__init__.py,sha256=W4wa5G4R_cl5tE1vfR4tY_RlvWLVsyTxzTAJ67q2gnc,144
440
452
  reflex/components/react_player/audio.py,sha256=vUwo9SJpf2YndJp6irpkslmZIcw7ifE91Sym-WBT_9A,185
441
453
  reflex/components/react_player/audio.pyi,sha256=kV6gRn4Lmb7Ylym6IUSaoezB1Cig6WB1WurMprheZhg,4327
@@ -443,15 +455,16 @@ reflex/components/react_player/react_player.py,sha256=e54YjfDMGsSEnBBaGKmHwuayqh
443
455
  reflex/components/react_player/react_player.pyi,sha256=b7Cd-eVXRUrv8d_If_mdtdhAO_EMcr7ALgiShsZz5RQ,4354
444
456
  reflex/components/react_player/video.py,sha256=r_14UGX-u3MKqpyK6yGwlaqZGPGw1v6g9wBg0bwvaTU,185
445
457
  reflex/components/react_player/video.pyi,sha256=yjyy03dNNAADtU_OiczuUigHNE2TVFbio_mCryorQ9U,4327
446
- reflex/components/recharts/__init__.py,sha256=_z8TImfBT085hUYH-UQGwtSO69ZIlg5IWu-IKLIwUyc,2373
447
- reflex/components/recharts/cartesian.py,sha256=kSOdShCDIP7sXSmRxTfwPYSuOEoBs8MNcT9yja37-bc,19595
448
- reflex/components/recharts/cartesian.pyi,sha256=SDPYjuuxbXbgkow07h65yg_pq86aMdTk9RzSQ03Di3I,84151
449
- reflex/components/recharts/charts.py,sha256=vuSsJ7IISU43ZedI9PiKyc4gT4q3nJ5tq8ZDfAcT-js,18493
450
- reflex/components/recharts/charts.pyi,sha256=Fl4AFA_ruDZZdXTWFCa9TJNU7p3zK4raFsXgiLT0-vs,48757
451
- reflex/components/recharts/general.py,sha256=71Z8IFDjNGT6m2110lkz81AeH6yFuyA9g5JH58qbYpE,5624
452
- reflex/components/recharts/general.pyi,sha256=UeBiFCmJf7vAtGkSZ1SwV8zKKTw-xYzqM9t1eojlaiE,22787
453
- reflex/components/recharts/polar.py,sha256=X4qG0IOCnC11Zb6iDTXuV9_IVU5MrIFYzmnQLpyFufY,10410
454
- reflex/components/recharts/polar.pyi,sha256=mASlcYdJeKnK2sAsGfYUKlOo8BIpB4QyWYCQ1proV7Y,24326
458
+ reflex/components/recharts/__init__.py,sha256=K9Pvqm27I8lMZECRziBhmfiLlt_6OysP6ksG43Fr694,2643
459
+ reflex/components/recharts/__init__.pyi,sha256=YSC9GJJrIcaImeNUjtIf_cEo3jrMFcxiXnunxu8nObA,5113
460
+ reflex/components/recharts/cartesian.py,sha256=kTpnzYChe44-vtI-_FwKYK7wtYbJFH9iZWLeeNkuW8c,20003
461
+ reflex/components/recharts/cartesian.pyi,sha256=EEgKc8lMM8D35b75tgLySrPWpVjbIz7lna_cHGZUEqo,84558
462
+ reflex/components/recharts/charts.py,sha256=2ZGfTrO-mPY8JwHrHr1Z2F2wWmt43OsXT17qVDfDtIo,18817
463
+ reflex/components/recharts/charts.pyi,sha256=L8627BTtpmK9kgnSCfjrkIEK-ovKGj5izoeuTTA3ngs,49080
464
+ reflex/components/recharts/general.py,sha256=w2w5-2nNA6xhq41wT4nsxJ3XHAdtVsPje-54Svq3354,5792
465
+ reflex/components/recharts/general.pyi,sha256=rRkOOe43Rq1G9OD3XKJZwoesg2xbvtohiAMX3wEe6cY,22954
466
+ reflex/components/recharts/polar.py,sha256=w_HMUsxSB-CVdocecQygV0k3BsZlZfMRyIcnzGz5W9E,10714
467
+ reflex/components/recharts/polar.pyi,sha256=k33AH69aOyHGfEHaCQGA_cP2PYKnKgCs_yWaI0nqVCc,24653
455
468
  reflex/components/recharts/recharts.py,sha256=Ap4HCCBY2Q9gdrh-PnHOvJY5ebIKCLgnQNrUWDp_bRs,2870
456
469
  reflex/components/recharts/recharts.pyi,sha256=milPgyj87d3rOAcsruXTUP_vMJ1REBsDC6TJL0obap4,8535
457
470
  reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
@@ -466,26 +479,26 @@ reflex/components/tags/iter_tag.py,sha256=FKPZtSR0wKyNrigEOYnGsndhXJzwNurTCEAS6Z
466
479
  reflex/components/tags/match_tag.py,sha256=pMwy46ewquPNwa1S71sDS_0Ga8YuviSrbpBU-_CWsoQ,387
467
480
  reflex/components/tags/tag.py,sha256=hT7zHJyut6SlCiQS6SZ-CaUrHgfLgm9NjNDQWo7uCEQ,2778
468
481
  reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
469
- reflex/config.py,sha256=zXD24XiquKXXVvDSkQ8xQ8OE9jz2KAHlas1VPfXbYqQ,10859
470
- reflex/config.pyi,sha256=tDVkbrlLXLAM2HYe6U4XM9I8r3E_NAZ2ivBAco94Q2g,3402
471
- reflex/constants/__init__.py,sha256=jraOx-vMBIhpcvw3Pk0j3syZ3SSC2IXc1XsuIY0cgBc,2036
472
- reflex/constants/base.py,sha256=qaJIa0W_IJ_s7uoe17PWN6T7a2Yvw8c-elGgPGG1M8M,5640
473
- reflex/constants/base.pyi,sha256=S9mWWVp88KP16Cnh3guOPqLtIHc24SBBk6oKdoU1jgc,2980
482
+ reflex/config.py,sha256=9S4PhZsnHsoGE4FUFobB8UdrJsY6eJiUSSNErTJIu5I,10944
483
+ reflex/constants/__init__.py,sha256=TbrafdaIIhceUK6u52xs2yVaj7n_6ZWjRSGahKwPmVM,1980
484
+ reflex/constants/base.py,sha256=1tIYzQUNy6WUzr_mPNaKlXPgWi7UxBU78LSRrnKT_sA,5768
485
+ reflex/constants/base.pyi,sha256=S8gYePgo8Dej32AZM0qjf6vUhrldHpm3lk-UBHW7gC4,3120
474
486
  reflex/constants/colors.py,sha256=gab_GwjKcbpRJGS2zX0gkmc_yFT1nmQbFDHqx0mXKB0,1625
475
487
  reflex/constants/compiler.py,sha256=LoCYFgJJX3NwIDlgOyAapX2at9UnWQ67LaysRxSIvno,4207
476
488
  reflex/constants/config.py,sha256=7uUypVy-ezLt3UN3jXEX1XvL3sKaCLBwnJCyYjg9erI,1331
477
489
  reflex/constants/custom_components.py,sha256=SX0SQVb-d6HJkZdezFL4UgkumyF6eJF682y4OvRUqUM,1268
478
490
  reflex/constants/event.py,sha256=7cEUTWdIhWVw7g5Bn9yTZlxNnJY5MeJL55q-vT1YOZ0,2668
479
- reflex/constants/installer.py,sha256=p-Nm54CykffQmjKXMZHBiViUH06kLDggvCD_BI-yi0I,3419
491
+ reflex/constants/installer.py,sha256=ezQ_lmLNyov2zDU5GYBSYiuuWK4s9tCOA7GtQgydyUY,3456
480
492
  reflex/constants/route.py,sha256=fu1jp9MoIriUJ8Cu4gLeinTxkyVBbRPs8Bkt35vqYOM,2144
481
493
  reflex/constants/style.py,sha256=gSzu0sQEQjW81PekxJnwRs7SXQQVco-LxtVjCi0IQZc,636
482
494
  reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
483
495
  reflex/custom_components/custom_components.py,sha256=vYBhEt0ceCTaXG_zQlD8aEUxEzyGwlc7D6RKah2Pp2A,33067
484
496
  reflex/event.py,sha256=L0D-OwtLUaNuwJKuwMTKMdiwm-ErtO7fjKcnTDYP0Zw,28087
485
- reflex/experimental/__init__.py,sha256=tAWhAQUz4uc-MLQrKU3rbNN94YXPlKun5rG0-qAODA0,778
486
- reflex/experimental/client_state.py,sha256=LL28NtZ5alVXfcgBa1J8kf8k91p9doaiBFTNWM-27Zc,6597
487
- reflex/experimental/hooks.py,sha256=ruqdKV3smQT53vVwYvs8Zx4RyTy6nY00rD0Loe1gWdU,2196
488
- reflex/experimental/layout.py,sha256=qQI7zaxoXhk2JIvyBj8jymFowuBeOgcrPBwNbYEY7Ew,7267
497
+ reflex/experimental/__init__.py,sha256=qtqN7Z6ugIiyiL8-QaSA5gZ6bKCCgzPfwFPLEGXELUc,830
498
+ reflex/experimental/assets.py,sha256=ZqgbyPda5KsvtaESO8nds-5m7DvWq8AOgTF2bOAtToo,1757
499
+ reflex/experimental/client_state.py,sha256=GevukDIG8rcDh9Zqj0sUYDA4GlNP8Q5I5M0T7pRq7H4,6623
500
+ reflex/experimental/hooks.py,sha256=aYM6mPtTZO6o800BMkBEvu6JvBLMA3pvvzT7EPjLicI,2256
501
+ reflex/experimental/layout.py,sha256=VBQ5JhKsKwhtfqUrAwlTLKqX0Eiw10_yV4O-cwiKsQw,7385
489
502
  reflex/experimental/misc.py,sha256=4xlHrSCZaDyyiSexNKRbSfJ_UZy6-fzIBhKDeHNt94Q,281
490
503
  reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
491
504
  reflex/middleware/hydrate_middleware.py,sha256=iXgB_VID2moU9gNpc79TJHGGhQgDH6miT32T_0Ow5tU,1484
@@ -494,7 +507,7 @@ reflex/model.py,sha256=WMcJiT04HSM4fKTP9SIZJQoDrIO2vaPTsoao-X169V4,13227
494
507
  reflex/page.py,sha256=NPT0xMownZGTiYiRtrUJnvAe_4oEvlzEJEkG-vrGhqI,2077
495
508
  reflex/reflex.py,sha256=VJZAwe9lIqbS3VB3QkP5-OMmNXmM4gi-5TWMCJgZPcc,17826
496
509
  reflex/route.py,sha256=WZS7stKgO94nekFFYHaOqNgN3zZGpJb3YpGF4ViTHmw,4198
497
- reflex/state.py,sha256=46yCLK8Lu63IEuD248cYfAEN_Proa9LTXyl6ZACswLM,107026
510
+ reflex/state.py,sha256=y9ueyKjNgJ8vQXS1PvRhUOItzT4rMj_q9GCy2qMOCOQ,108928
498
511
  reflex/style.py,sha256=SQJ4bCRZXII-thSwY_WjTFx4GV7Y0VWjotrUJGON5Hc,9542
499
512
  reflex/testing.py,sha256=Dc8scI1LILDfBSaiWK6J0urYywWbmFXXKNr3Jec1rTE,31567
500
513
  reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
@@ -502,22 +515,23 @@ reflex/utils/build.py,sha256=9LE93QlbfTHYyQWTgGZYSXX7QGDYzuE01ttWUVw_rGQ,8573
502
515
  reflex/utils/compat.py,sha256=rfN5mMcNWFXT1ESLnZlR-bYG7XJKHvAScXMWo9iBsKg,1255
503
516
  reflex/utils/console.py,sha256=-BHtwUabv8QlhGfEHupSn68fOOmPRZpkSvcqcjNBV-k,5182
504
517
  reflex/utils/exceptions.py,sha256=3dHTYMHKHBCl1PZttA9AZ4Pa813I5RlfU58JXnI8T2c,2163
505
- reflex/utils/exec.py,sha256=PQWzLALn2lojaxUFKkPePxtRseAm_aWm--JDadCbAvU,10498
518
+ reflex/utils/exec.py,sha256=RsRlzE8JdxTlFSTACd9XrLt9liDbvdxZrM5wkae9R4k,10961
506
519
  reflex/utils/export.py,sha256=UJd4BYFW9_eexhLCP4C5Ri8Cq2tWAPNVspq70lPLCyo,2270
507
520
  reflex/utils/format.py,sha256=BFadhZX6oFvIZLQ0aUnul8SDN2iURSkFz-7tJcvDlRk,25149
508
521
  reflex/utils/imports.py,sha256=v_xLZiMn7UxxPu5mXln74tXi52wYKqPuZe11Ka31WuM,2309
522
+ reflex/utils/lazy_loader.py,sha256=iyQU_bnigzskD-fdoxkt19i6SGbrHdSOOwCgB2FJWjc,1281
509
523
  reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
510
- reflex/utils/prerequisites.py,sha256=g2iXfhIv0-m_oK0lNr_p1D_54XFKj11Bgp4uaJLdAnU,52824
524
+ reflex/utils/prerequisites.py,sha256=kbF7eNWmt-Vzi7wdnUZUJynMaQCtttoP4MT8vO6graw,52552
511
525
  reflex/utils/processes.py,sha256=3viom6wOhrZKgbSC6qvcRiQlYDKnHm1jgdJEcGyReFM,11972
512
- reflex/utils/pyi_generator.py,sha256=cOfDESTXjnIvJhi8-anKVDNllgpnsGd4OyRmwdw1z5Y,30637
513
- reflex/utils/serializers.py,sha256=bKY4UxwumFfzE-75tpCFQWRfCeXn301fALwCAUgzgDw,9037
526
+ reflex/utils/pyi_generator.py,sha256=_yrA4YIjDD3b_bECtTqJh3ENzaU1o40emlSvJEpv2g8,32709
527
+ reflex/utils/serializers.py,sha256=i7gNehjrcQ5_NX_KTLJT5KBakB54WPDjV5b-pz-b0ZU,9028
514
528
  reflex/utils/telemetry.py,sha256=t4cvQmoAxTKAWF53vGH6ZEX5QYrK_KEcarmvMy-4_E4,5568
515
529
  reflex/utils/types.py,sha256=1CJQsNf2wMrMJi-3th7eELZ3MFOFUBgoIs3j5rU-MNE,15152
516
530
  reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
517
- reflex/vars.py,sha256=KNXryhBdIlozn1LU83VS85pTbfIQ5951kCaYPVi_nZw,69637
518
- reflex/vars.pyi,sha256=p7rrP7ZcV0KN26a8LSqjTWP7IzZXXSee0H9Rl4fjEtg,5753
519
- reflex-0.5.2a1.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
520
- reflex-0.5.2a1.dist-info/METADATA,sha256=UnLlUwZPkgu2dyUtGVxuomUtTVa4ZEUWAaCPCPhASBE,12085
521
- reflex-0.5.2a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
522
- reflex-0.5.2a1.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
523
- reflex-0.5.2a1.dist-info/RECORD,,
531
+ reflex/vars.py,sha256=JBllxKwms4PPKxe7XUWZ1tAjS6F7XDPJGWtrkvaZ6z4,72774
532
+ reflex/vars.pyi,sha256=6pAJI1oIhQv0sfc48zzB8z5dp9SfPaSZEoDKBzmb9So,6322
533
+ reflex-0.5.3a1.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
534
+ reflex-0.5.3a1.dist-info/METADATA,sha256=ht31E_GGplnHmdO7SRL9jM5MokCCEUMn8K5hXeoGdVY,12120
535
+ reflex-0.5.3a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
536
+ reflex-0.5.3a1.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
537
+ reflex-0.5.3a1.dist-info/RECORD,,
reflex/config.pyi DELETED
@@ -1,112 +0,0 @@
1
- """ Generated with stubgen from mypy, then manually edited, do not regen."""
2
-
3
- from reflex import constants as constants
4
- from reflex.base import Base as Base
5
- from reflex.utils import console as console
6
- from typing import Any, Dict, List, Optional, overload
7
-
8
- class DBConfig(Base):
9
- engine: str
10
- username: Optional[str]
11
- password: Optional[str]
12
- host: Optional[str]
13
- port: Optional[int]
14
- database: str
15
-
16
- def __init__(
17
- self,
18
- database: str,
19
- engine: str,
20
- username: Optional[str] = None,
21
- password: Optional[str] = None,
22
- host: Optional[str] = None,
23
- port: Optional[int] = None,
24
- ): ...
25
- @classmethod
26
- def postgresql(
27
- cls,
28
- database: str,
29
- username: str,
30
- password: str | None = ...,
31
- host: str | None = ...,
32
- port: int | None = ...,
33
- ) -> DBConfig: ...
34
- @classmethod
35
- def postgresql_psycopg2(
36
- cls,
37
- database: str,
38
- username: str,
39
- password: str | None = ...,
40
- host: str | None = ...,
41
- port: int | None = ...,
42
- ) -> DBConfig: ...
43
- @classmethod
44
- def sqlite(cls, database: str) -> DBConfig: ...
45
- def get_url(self) -> str: ...
46
-
47
- class Config(Base):
48
- class Config:
49
- validate_assignment: bool
50
- app_name: str
51
- loglevel: constants.LogLevel
52
- frontend_port: int
53
- frontend_path: str
54
- backend_port: int
55
- api_url: str
56
- deploy_url: Optional[str]
57
- backend_host: str
58
- db_url: Optional[str]
59
- redis_url: Optional[str]
60
- telemetry_enabled: bool
61
- bun_path: str
62
- cors_allowed_origins: List[str]
63
- tailwind: Optional[Dict[str, Any]]
64
- timeout: int
65
- next_compression: bool
66
- event_namespace: Optional[str]
67
- frontend_packages: List[str]
68
- rxdeploy_url: Optional[str]
69
- cp_backend_url: str
70
- cp_web_url: str
71
- username: Optional[str]
72
- gunicorn_worker_class: str
73
- gunicorn_workers: Optional[int]
74
-
75
- def __init__(
76
- self,
77
- *args,
78
- app_name: str,
79
- loglevel: Optional[constants.LogLevel] = None,
80
- frontend_port: Optional[int] = None,
81
- frontend_path: Optional[str] = None,
82
- backend_port: Optional[int] = None,
83
- api_url: Optional[str] = None,
84
- deploy_url: Optional[str] = None,
85
- backend_host: Optional[str] = None,
86
- db_url: Optional[str] = None,
87
- redis_url: Optional[str] = None,
88
- telemetry_enabled: Optional[bool] = None,
89
- bun_path: Optional[str] = None,
90
- cors_allowed_origins: Optional[List[str]] = None,
91
- tailwind: Optional[Dict[str, Any]] = None,
92
- timeout: Optional[int] = None,
93
- next_compression: Optional[bool] = None,
94
- event_namespace: Optional[str] = None,
95
- frontend_packages: Optional[List[str]] = None,
96
- rxdeploy_url: Optional[str] = None,
97
- cp_backend_url: Optional[str] = None,
98
- cp_web_url: Optional[str] = None,
99
- username: Optional[str] = None,
100
- gunicorn_worker_class: Optional[str] = None,
101
- gunicorn_workers: Optional[int] = None,
102
- **kwargs
103
- ) -> None: ...
104
- @property
105
- def module(self) -> str: ...
106
- @staticmethod
107
- def check_deprecated_values(**kwargs) -> None: ...
108
- def update_from_env(self) -> None: ...
109
- def get_event_namespace(self) -> str: ...
110
- def _set_persistent(self, **kwargs) -> None: ...
111
-
112
- def get_config(reload: bool = ...) -> Config: ...