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.
- reflex/.templates/web/postcss.config.js +1 -0
- reflex/.templates/web/styles/tailwind.css +4 -1
- reflex/__init__.py +298 -204
- reflex/__init__.pyi +196 -157
- reflex/app.py +13 -2
- reflex/components/__init__.py +31 -17
- reflex/components/__init__.pyi +26 -0
- reflex/components/base/__init__.py +25 -9
- reflex/components/base/__init__.pyi +26 -0
- reflex/components/base/fragment.py +3 -0
- reflex/components/base/fragment.pyi +2 -0
- reflex/components/base/head.py +3 -0
- reflex/components/base/head.pyi +2 -0
- reflex/components/base/script.py +3 -0
- reflex/components/base/script.pyi +2 -0
- reflex/components/core/__init__.py +51 -37
- reflex/components/core/__init__.pyi +39 -0
- reflex/components/core/banner.py +7 -1
- reflex/components/core/banner.pyi +6 -1
- reflex/components/core/debounce.py +3 -0
- reflex/components/core/debounce.pyi +2 -0
- reflex/components/core/foreach.py +3 -0
- reflex/components/core/html.py +3 -0
- reflex/components/core/html.pyi +2 -0
- reflex/components/core/match.py +3 -0
- reflex/components/core/responsive.py +1 -1
- reflex/components/core/upload.py +5 -2
- reflex/components/core/upload.pyi +4 -2
- reflex/components/datadisplay/__init__.py +17 -8
- reflex/components/datadisplay/__init__.pyi +14 -0
- reflex/components/datadisplay/code.py +3 -0
- reflex/components/datadisplay/code.pyi +2 -0
- reflex/components/datadisplay/dataeditor.py +4 -0
- reflex/components/datadisplay/dataeditor.pyi +3 -0
- reflex/components/el/__init__.py +15 -1
- reflex/components/el/__init__.pyi +227 -0
- reflex/components/el/elements/__init__.py +129 -220
- reflex/components/el/elements/__init__.pyi +341 -0
- reflex/components/el/elements/forms.py +15 -0
- reflex/components/el/elements/forms.pyi +14 -0
- reflex/components/el/elements/inline.py +30 -0
- reflex/components/el/elements/inline.pyi +29 -0
- reflex/components/el/elements/media.py +16 -0
- reflex/components/el/elements/media.pyi +15 -0
- reflex/components/el/elements/metadata.py +7 -0
- reflex/components/el/elements/metadata.pyi +6 -0
- reflex/components/el/elements/other.py +9 -0
- reflex/components/el/elements/other.pyi +8 -0
- reflex/components/el/elements/scripts.py +5 -0
- reflex/components/el/elements/scripts.pyi +4 -0
- reflex/components/el/elements/sectioning.py +17 -0
- reflex/components/el/elements/sectioning.pyi +16 -0
- reflex/components/el/elements/tables.py +12 -0
- reflex/components/el/elements/tables.pyi +11 -0
- reflex/components/el/elements/typography.py +16 -0
- reflex/components/el/elements/typography.pyi +15 -0
- reflex/components/moment/__init__.py +1 -1
- reflex/components/plotly/plotly.py +184 -6
- reflex/components/plotly/plotly.pyi +62 -4
- reflex/components/radix/__init__.py +14 -2
- reflex/components/radix/__init__.pyi +73 -0
- reflex/components/radix/primitives/__init__.py +13 -5
- reflex/components/radix/primitives/__init__.pyi +11 -0
- reflex/components/radix/themes/__init__.py +20 -6
- reflex/components/radix/themes/__init__.pyi +13 -0
- reflex/components/radix/themes/base.py +26 -20
- reflex/components/radix/themes/base.pyi +4 -1
- reflex/components/radix/themes/color_mode.py +3 -1
- reflex/components/radix/themes/color_mode.pyi +3 -1
- reflex/components/radix/themes/components/__init__.py +11 -79
- reflex/components/radix/themes/components/__init__.pyi +44 -0
- reflex/components/radix/themes/components/alert_dialog.py +2 -2
- reflex/components/radix/themes/components/alert_dialog.pyi +2 -2
- reflex/components/radix/themes/components/badge.py +2 -2
- reflex/components/radix/themes/components/badge.pyi +2 -2
- reflex/components/radix/themes/components/button.py +2 -2
- reflex/components/radix/themes/components/button.pyi +2 -2
- reflex/components/radix/themes/components/callout.py +4 -4
- reflex/components/radix/themes/components/callout.pyi +4 -4
- reflex/components/radix/themes/components/card.py +2 -2
- reflex/components/radix/themes/components/card.pyi +2 -2
- reflex/components/radix/themes/components/dialog.py +2 -2
- reflex/components/radix/themes/components/dialog.pyi +2 -2
- reflex/components/radix/themes/components/hover_card.py +2 -2
- reflex/components/radix/themes/components/hover_card.pyi +2 -2
- reflex/components/radix/themes/components/icon_button.py +2 -2
- reflex/components/radix/themes/components/icon_button.pyi +2 -2
- reflex/components/radix/themes/components/inset.py +2 -2
- reflex/components/radix/themes/components/inset.pyi +2 -2
- reflex/components/radix/themes/components/popover.py +2 -2
- reflex/components/radix/themes/components/popover.pyi +2 -2
- reflex/components/radix/themes/components/table.py +8 -8
- reflex/components/radix/themes/components/table.pyi +8 -8
- reflex/components/radix/themes/components/text_area.py +11 -2
- reflex/components/radix/themes/components/text_area.pyi +18 -3
- reflex/components/radix/themes/components/text_field.py +3 -3
- reflex/components/radix/themes/components/text_field.pyi +3 -3
- reflex/components/radix/themes/layout/__init__.py +12 -38
- reflex/components/radix/themes/layout/__init__.pyi +21 -0
- reflex/components/radix/themes/layout/box.py +5 -2
- reflex/components/radix/themes/layout/box.pyi +4 -2
- reflex/components/radix/themes/layout/center.py +3 -0
- reflex/components/radix/themes/layout/center.pyi +2 -0
- reflex/components/radix/themes/layout/container.py +5 -2
- reflex/components/radix/themes/layout/container.pyi +4 -2
- reflex/components/radix/themes/layout/flex.py +5 -2
- reflex/components/radix/themes/layout/flex.pyi +4 -2
- reflex/components/radix/themes/layout/grid.py +5 -2
- reflex/components/radix/themes/layout/grid.pyi +4 -2
- reflex/components/radix/themes/layout/list.py +14 -0
- reflex/components/radix/themes/layout/list.pyi +3 -0
- reflex/components/radix/themes/layout/section.py +7 -4
- reflex/components/radix/themes/layout/section.pyi +5 -3
- reflex/components/radix/themes/layout/spacer.py +3 -0
- reflex/components/radix/themes/layout/spacer.pyi +2 -0
- reflex/components/radix/themes/layout/stack.py +5 -0
- reflex/components/radix/themes/layout/stack.pyi +4 -0
- reflex/components/radix/themes/typography/__init__.py +11 -16
- reflex/components/radix/themes/typography/__init__.pyi +12 -0
- reflex/components/radix/themes/typography/blockquote.py +5 -2
- reflex/components/radix/themes/typography/blockquote.pyi +4 -2
- reflex/components/radix/themes/typography/code.py +5 -2
- reflex/components/radix/themes/typography/code.pyi +4 -2
- reflex/components/radix/themes/typography/heading.py +5 -2
- reflex/components/radix/themes/typography/heading.pyi +4 -2
- reflex/components/radix/themes/typography/link.py +3 -0
- reflex/components/radix/themes/typography/link.pyi +2 -0
- reflex/components/radix/themes/typography/text.py +6 -6
- reflex/components/radix/themes/typography/text.pyi +6 -6
- reflex/components/recharts/__init__.py +114 -104
- reflex/components/recharts/__init__.pyi +106 -0
- reflex/components/recharts/cartesian.py +17 -0
- reflex/components/recharts/cartesian.pyi +16 -0
- reflex/components/recharts/charts.py +12 -0
- reflex/components/recharts/charts.pyi +11 -0
- reflex/components/recharts/general.py +7 -0
- reflex/components/recharts/general.pyi +6 -0
- reflex/components/recharts/polar.py +11 -0
- reflex/components/recharts/polar.pyi +9 -0
- reflex/config.py +3 -0
- reflex/constants/__init__.py +0 -2
- reflex/constants/base.py +2 -0
- reflex/constants/base.pyi +5 -0
- reflex/constants/installer.py +2 -1
- reflex/experimental/__init__.py +2 -0
- reflex/experimental/assets.py +56 -0
- reflex/experimental/client_state.py +4 -2
- reflex/experimental/hooks.py +8 -6
- reflex/experimental/layout.py +3 -1
- reflex/state.py +54 -4
- reflex/utils/exec.py +8 -0
- reflex/utils/lazy_loader.py +33 -0
- reflex/utils/prerequisites.py +1 -14
- reflex/utils/pyi_generator.py +71 -20
- reflex/utils/serializers.py +3 -3
- reflex/vars.py +79 -5
- reflex/vars.pyi +16 -0
- {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/METADATA +2 -1
- {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/RECORD +162 -148
- reflex/config.pyi +0 -112
- {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/LICENSE +0 -0
- {reflex-0.5.2a1.dist-info → reflex-0.5.3a1.dist-info}/WHEEL +0 -0
- {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=
|
|
58
|
-
reflex/.templates/web/styles/tailwind.css,sha256=
|
|
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=
|
|
66
|
-
reflex/__init__.pyi,sha256=
|
|
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=
|
|
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=
|
|
77
|
-
reflex/components/
|
|
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=
|
|
86
|
-
reflex/components/base/fragment.pyi,sha256=
|
|
87
|
-
reflex/components/base/head.py,sha256=
|
|
88
|
-
reflex/components/base/head.pyi,sha256=
|
|
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=
|
|
94
|
-
reflex/components/base/script.pyi,sha256=
|
|
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=
|
|
238
|
-
reflex/components/core/
|
|
239
|
-
reflex/components/core/banner.
|
|
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=
|
|
245
|
-
reflex/components/core/debounce.pyi,sha256=
|
|
246
|
-
reflex/components/core/foreach.py,sha256=
|
|
247
|
-
reflex/components/core/html.py,sha256=
|
|
248
|
-
reflex/components/core/html.pyi,sha256=
|
|
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=
|
|
251
|
-
reflex/components/core/responsive.py,sha256=
|
|
252
|
-
reflex/components/core/upload.py,sha256=
|
|
253
|
-
reflex/components/core/upload.pyi,sha256=
|
|
254
|
-
reflex/components/datadisplay/__init__.py,sha256=
|
|
255
|
-
reflex/components/datadisplay/
|
|
256
|
-
reflex/components/datadisplay/code.
|
|
257
|
-
reflex/components/datadisplay/
|
|
258
|
-
reflex/components/datadisplay/dataeditor.
|
|
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=
|
|
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=
|
|
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=
|
|
271
|
-
reflex/components/el/elements/forms.pyi,sha256=
|
|
272
|
-
reflex/components/el/elements/inline.py,sha256=
|
|
273
|
-
reflex/components/el/elements/inline.pyi,sha256=
|
|
274
|
-
reflex/components/el/elements/media.py,sha256=
|
|
275
|
-
reflex/components/el/elements/media.pyi,sha256=
|
|
276
|
-
reflex/components/el/elements/metadata.py,sha256=
|
|
277
|
-
reflex/components/el/elements/metadata.pyi,sha256=
|
|
278
|
-
reflex/components/el/elements/other.py,sha256=
|
|
279
|
-
reflex/components/el/elements/other.pyi,sha256=
|
|
280
|
-
reflex/components/el/elements/scripts.py,sha256
|
|
281
|
-
reflex/components/el/elements/scripts.pyi,sha256=
|
|
282
|
-
reflex/components/el/elements/sectioning.py,sha256=
|
|
283
|
-
reflex/components/el/elements/sectioning.pyi,sha256=
|
|
284
|
-
reflex/components/el/elements/tables.py,sha256=
|
|
285
|
-
reflex/components/el/elements/tables.pyi,sha256=
|
|
286
|
-
reflex/components/el/elements/typography.py,sha256=
|
|
287
|
-
reflex/components/el/elements/typography.pyi,sha256=
|
|
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=
|
|
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=
|
|
314
|
-
reflex/components/plotly/plotly.pyi,sha256=
|
|
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=
|
|
317
|
-
reflex/components/radix/
|
|
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=
|
|
331
|
-
reflex/components/radix/themes/
|
|
332
|
-
reflex/components/radix/themes/base.
|
|
333
|
-
reflex/components/radix/themes/
|
|
334
|
-
reflex/components/radix/themes/color_mode.
|
|
335
|
-
reflex/components/radix/themes/
|
|
336
|
-
reflex/components/radix/themes/components/
|
|
337
|
-
reflex/components/radix/themes/components/
|
|
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=
|
|
343
|
-
reflex/components/radix/themes/components/badge.pyi,sha256=
|
|
344
|
-
reflex/components/radix/themes/components/button.py,sha256=
|
|
345
|
-
reflex/components/radix/themes/components/button.pyi,sha256=
|
|
346
|
-
reflex/components/radix/themes/components/callout.py,sha256=
|
|
347
|
-
reflex/components/radix/themes/components/callout.pyi,sha256=
|
|
348
|
-
reflex/components/radix/themes/components/card.py,sha256=
|
|
349
|
-
reflex/components/radix/themes/components/card.pyi,sha256=
|
|
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=
|
|
361
|
-
reflex/components/radix/themes/components/dialog.pyi,sha256=
|
|
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=
|
|
365
|
-
reflex/components/radix/themes/components/hover_card.pyi,sha256=
|
|
366
|
-
reflex/components/radix/themes/components/icon_button.py,sha256=
|
|
367
|
-
reflex/components/radix/themes/components/icon_button.pyi,sha256
|
|
368
|
-
reflex/components/radix/themes/components/inset.py,sha256=
|
|
369
|
-
reflex/components/radix/themes/components/inset.pyi,sha256=
|
|
370
|
-
reflex/components/radix/themes/components/popover.py,sha256=
|
|
371
|
-
reflex/components/radix/themes/components/popover.pyi,sha256=
|
|
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=
|
|
397
|
-
reflex/components/radix/themes/components/table.pyi,sha256=
|
|
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=
|
|
401
|
-
reflex/components/radix/themes/components/text_area.pyi,sha256=
|
|
402
|
-
reflex/components/radix/themes/components/text_field.py,sha256=
|
|
403
|
-
reflex/components/radix/themes/components/text_field.pyi,sha256=
|
|
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=
|
|
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=
|
|
410
|
-
reflex/components/radix/themes/layout/box.pyi,sha256=
|
|
411
|
-
reflex/components/radix/themes/layout/center.py,sha256=
|
|
412
|
-
reflex/components/radix/themes/layout/center.pyi,sha256=
|
|
413
|
-
reflex/components/radix/themes/layout/container.py,sha256=
|
|
414
|
-
reflex/components/radix/themes/layout/container.pyi,sha256=
|
|
415
|
-
reflex/components/radix/themes/layout/flex.py,sha256=
|
|
416
|
-
reflex/components/radix/themes/layout/flex.pyi,sha256=
|
|
417
|
-
reflex/components/radix/themes/layout/grid.py,sha256=
|
|
418
|
-
reflex/components/radix/themes/layout/grid.pyi,sha256=
|
|
419
|
-
reflex/components/radix/themes/layout/list.py,sha256=
|
|
420
|
-
reflex/components/radix/themes/layout/list.pyi,sha256=
|
|
421
|
-
reflex/components/radix/themes/layout/section.py,sha256=
|
|
422
|
-
reflex/components/radix/themes/layout/section.pyi,sha256=
|
|
423
|
-
reflex/components/radix/themes/layout/spacer.py,sha256=
|
|
424
|
-
reflex/components/radix/themes/layout/spacer.pyi,sha256=
|
|
425
|
-
reflex/components/radix/themes/layout/stack.py,sha256=
|
|
426
|
-
reflex/components/radix/themes/layout/stack.pyi,sha256=
|
|
427
|
-
reflex/components/radix/themes/typography/__init__.py,sha256=
|
|
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=
|
|
430
|
-
reflex/components/radix/themes/typography/blockquote.pyi,sha256=
|
|
431
|
-
reflex/components/radix/themes/typography/code.py,sha256=
|
|
432
|
-
reflex/components/radix/themes/typography/code.pyi,sha256=
|
|
433
|
-
reflex/components/radix/themes/typography/heading.py,sha256=
|
|
434
|
-
reflex/components/radix/themes/typography/heading.pyi,sha256=
|
|
435
|
-
reflex/components/radix/themes/typography/link.py,sha256=
|
|
436
|
-
reflex/components/radix/themes/typography/link.pyi,sha256=
|
|
437
|
-
reflex/components/radix/themes/typography/text.py,sha256=
|
|
438
|
-
reflex/components/radix/themes/typography/text.pyi,sha256=
|
|
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=
|
|
447
|
-
reflex/components/recharts/
|
|
448
|
-
reflex/components/recharts/cartesian.
|
|
449
|
-
reflex/components/recharts/
|
|
450
|
-
reflex/components/recharts/charts.
|
|
451
|
-
reflex/components/recharts/
|
|
452
|
-
reflex/components/recharts/general.
|
|
453
|
-
reflex/components/recharts/
|
|
454
|
-
reflex/components/recharts/polar.
|
|
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=
|
|
470
|
-
reflex/
|
|
471
|
-
reflex/constants/
|
|
472
|
-
reflex/constants/base.
|
|
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=
|
|
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=
|
|
486
|
-
reflex/experimental/
|
|
487
|
-
reflex/experimental/
|
|
488
|
-
reflex/experimental/
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
513
|
-
reflex/utils/serializers.py,sha256=
|
|
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=
|
|
518
|
-
reflex/vars.pyi,sha256=
|
|
519
|
-
reflex-0.5.
|
|
520
|
-
reflex-0.5.
|
|
521
|
-
reflex-0.5.
|
|
522
|
-
reflex-0.5.
|
|
523
|
-
reflex-0.5.
|
|
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: ...
|
|
File without changes
|
|
File without changes
|
|
File without changes
|