reflex 0.6.8a1__py3-none-any.whl → 0.7.0a1__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/jinja/custom_components/pyproject.toml.jinja2 +1 -1
- reflex/.templates/jinja/web/pages/_app.js.jinja2 +7 -7
- reflex/.templates/jinja/web/pages/utils.js.jinja2 +2 -2
- reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +1 -4
- reflex/.templates/web/utils/state.js +65 -36
- reflex/__init__.py +4 -17
- reflex/__init__.pyi +1 -2
- reflex/app.py +244 -115
- reflex/app_mixins/lifespan.py +9 -9
- reflex/app_mixins/middleware.py +6 -6
- reflex/app_module_for_backend.py +3 -7
- reflex/base.py +7 -7
- reflex/compiler/compiler.py +8 -0
- reflex/compiler/utils.py +35 -6
- reflex/components/base/bare.py +1 -1
- reflex/components/base/error_boundary.py +2 -1
- reflex/components/base/error_boundary.pyi +2 -1
- reflex/components/base/meta.py +2 -2
- reflex/components/base/strict_mode.py +10 -0
- reflex/components/base/strict_mode.pyi +57 -0
- reflex/components/component.py +38 -77
- reflex/components/core/banner.py +83 -4
- reflex/components/core/banner.pyi +86 -0
- reflex/components/core/breakpoints.py +3 -1
- reflex/components/core/client_side_routing.py +1 -1
- reflex/components/core/client_side_routing.pyi +1 -1
- reflex/components/core/cond.py +9 -10
- reflex/components/core/debounce.py +1 -1
- reflex/components/core/foreach.py +23 -3
- reflex/components/core/html.py +1 -1
- reflex/components/core/match.py +5 -5
- reflex/components/core/sticky.py +160 -0
- reflex/components/core/sticky.pyi +449 -0
- reflex/components/core/upload.py +2 -2
- reflex/components/datadisplay/code.py +5 -14
- reflex/components/datadisplay/dataeditor.py +7 -4
- reflex/components/datadisplay/logo.py +13 -8
- reflex/components/datadisplay/shiki_code_block.py +14 -9
- reflex/components/dynamic.py +22 -3
- reflex/components/el/constants/reflex.py +1 -1
- reflex/components/el/element.py +1 -1
- reflex/components/el/elements/forms.py +4 -4
- reflex/components/el/elements/forms.pyi +4 -4
- reflex/components/lucide/icon.py +46 -8
- reflex/components/lucide/icon.pyi +54 -0
- reflex/components/markdown/markdown.py +10 -8
- reflex/components/moment/moment.py +2 -2
- reflex/components/next/image.py +16 -4
- reflex/components/next/image.pyi +4 -2
- reflex/components/next/link.py +1 -1
- reflex/components/plotly/plotly.py +5 -5
- reflex/components/props.py +3 -3
- reflex/components/radix/__init__.pyi +1 -1
- reflex/components/radix/primitives/accordion.py +9 -5
- reflex/components/radix/primitives/accordion.pyi +3 -1
- reflex/components/radix/primitives/drawer.py +5 -2
- reflex/components/radix/primitives/drawer.pyi +4 -4
- reflex/components/radix/primitives/form.pyi +6 -6
- reflex/components/radix/primitives/progress.py +1 -1
- reflex/components/radix/primitives/slider.py +1 -1
- reflex/components/radix/themes/color_mode.py +11 -9
- reflex/components/radix/themes/components/alert_dialog.py +3 -0
- reflex/components/radix/themes/components/card.py +1 -1
- reflex/components/radix/themes/components/card.pyi +1 -1
- reflex/components/radix/themes/components/context_menu.py +5 -0
- reflex/components/radix/themes/components/dialog.py +3 -0
- reflex/components/radix/themes/components/dropdown_menu.py +5 -0
- reflex/components/radix/themes/components/hover_card.py +3 -0
- reflex/components/radix/themes/components/icon_button.py +2 -2
- reflex/components/radix/themes/components/icon_button.pyi +1 -0
- reflex/components/radix/themes/components/popover.py +3 -0
- reflex/components/radix/themes/components/radio_cards.py +2 -0
- reflex/components/radix/themes/components/radio_group.py +1 -1
- reflex/components/radix/themes/components/select.py +3 -0
- reflex/components/radix/themes/components/tabs.py +3 -0
- reflex/components/radix/themes/components/text_area.py +12 -0
- reflex/components/radix/themes/components/text_area.pyi +2 -0
- reflex/components/radix/themes/components/text_field.py +1 -1
- reflex/components/radix/themes/components/tooltip.py +3 -1
- reflex/components/radix/themes/components/tooltip.pyi +1 -0
- reflex/components/radix/themes/layout/__init__.pyi +1 -1
- reflex/components/radix/themes/layout/list.py +2 -2
- reflex/components/radix/themes/layout/stack.py +2 -2
- reflex/components/radix/themes/typography/link.py +1 -1
- reflex/components/radix/themes/typography/text.py +2 -2
- reflex/components/react_player/react_player.py +1 -1
- reflex/components/recharts/__init__.py +2 -0
- reflex/components/recharts/__init__.pyi +2 -0
- reflex/components/recharts/charts.py +15 -15
- reflex/components/recharts/general.py +19 -4
- reflex/components/recharts/general.pyi +55 -4
- reflex/components/recharts/polar.py +2 -2
- reflex/components/recharts/recharts.py +4 -4
- reflex/components/sonner/toast.py +15 -13
- reflex/components/sonner/toast.pyi +6 -6
- reflex/components/suneditor/editor.py +6 -4
- reflex/components/suneditor/editor.pyi +2 -2
- reflex/components/tags/iter_tag.py +3 -3
- reflex/components/tags/tag.py +25 -3
- reflex/config.py +48 -20
- reflex/constants/__init__.py +1 -0
- reflex/constants/base.py +4 -1
- reflex/constants/compiler.py +5 -2
- reflex/constants/config.py +8 -1
- reflex/constants/installer.py +9 -9
- reflex/constants/style.py +1 -1
- reflex/custom_components/custom_components.py +9 -7
- reflex/event.py +137 -163
- reflex/experimental/__init__.py +19 -11
- reflex/experimental/client_state.py +53 -28
- reflex/experimental/hooks.py +5 -5
- reflex/experimental/layout.py +8 -5
- reflex/experimental/layout.pyi +1 -1
- reflex/experimental/misc.py +3 -3
- reflex/istate/wrappers.py +1 -1
- reflex/middleware/hydrate_middleware.py +2 -2
- reflex/model.py +11 -6
- reflex/page.py +3 -3
- reflex/reflex.py +90 -19
- reflex/route.py +1 -1
- reflex/state.py +358 -401
- reflex/style.py +27 -3
- reflex/testing.py +34 -39
- reflex/utils/build.py +6 -2
- reflex/utils/codespaces.py +1 -4
- reflex/utils/compat.py +6 -5
- reflex/utils/console.py +52 -21
- reflex/utils/exceptions.py +76 -26
- reflex/utils/exec.py +69 -74
- reflex/utils/export.py +6 -1
- reflex/utils/format.py +7 -39
- reflex/utils/imports.py +2 -2
- reflex/utils/lazy_loader.py +7 -1
- reflex/utils/path_ops.py +28 -14
- reflex/utils/prerequisites.py +324 -65
- reflex/utils/processes.py +45 -32
- reflex/utils/pyi_generator.py +30 -25
- reflex/utils/registry.py +4 -4
- reflex/utils/serializers.py +1 -1
- reflex/utils/telemetry.py +5 -4
- reflex/utils/types.py +42 -18
- reflex/vars/base.py +650 -333
- reflex/vars/datetime.py +6 -7
- reflex/vars/dep_tracking.py +344 -0
- reflex/vars/function.py +11 -5
- reflex/vars/number.py +31 -43
- reflex/vars/object.py +63 -62
- reflex/vars/sequence.py +79 -67
- {reflex-0.6.8a1.dist-info → reflex-0.7.0a1.dist-info}/METADATA +7 -10
- {reflex-0.6.8a1.dist-info → reflex-0.7.0a1.dist-info}/RECORD +153 -150
- {reflex-0.6.8a1.dist-info → reflex-0.7.0a1.dist-info}/WHEEL +1 -1
- reflex/experimental/assets.py +0 -37
- reflex/proxy.py +0 -119
- {reflex-0.6.8a1.dist-info → reflex-0.7.0a1.dist-info}/LICENSE +0 -0
- {reflex-0.6.8a1.dist-info → reflex-0.7.0a1.dist-info}/entry_points.txt +0 -0
|
@@ -5,10 +5,10 @@ reflex/.templates/jinja/app/rxconfig.py.jinja2,sha256=Scfnv_vZXIPQcz8zNIa4FmjEym
|
|
|
5
5
|
reflex/.templates/jinja/custom_components/README.md.jinja2,sha256=qA4XZDxOTc2gRIG7CO1VvVawOgThwZqU2RZvRTPhXwE,127
|
|
6
6
|
reflex/.templates/jinja/custom_components/__init__.py.jinja2,sha256=z5n2tvoS7iNDaM6mUGKETdpGlC0oA1_rrYURu7O_xpk,32
|
|
7
7
|
reflex/.templates/jinja/custom_components/demo_app.py.jinja2,sha256=ipbKtObNqQLcwbFowod_bSWW4bttW_8bNyTXl7JL1zg,826
|
|
8
|
-
reflex/.templates/jinja/custom_components/pyproject.toml.jinja2,sha256=
|
|
8
|
+
reflex/.templates/jinja/custom_components/pyproject.toml.jinja2,sha256=HG-k3pruUlMy7xYz339hgFkNMTLqB-C_FTLKkOgfBPM,630
|
|
9
9
|
reflex/.templates/jinja/custom_components/src.py.jinja2,sha256=e80PwMI6NoeQtGJ0NXWhYrkqUe7jvvJTFuztYQe-R5w,2403
|
|
10
10
|
reflex/.templates/jinja/web/package.json.jinja2,sha256=YU9PF8WgiQ8OPlG3oLDX31t2R0o6DFntCh698NTiDK8,548
|
|
11
|
-
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=
|
|
11
|
+
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=s0pSHZAZB9SUI3PabTB8uB4I3kehMc-L2DXBxSW6iQY,1375
|
|
12
12
|
reflex/.templates/jinja/web/pages/_document.js.jinja2,sha256=E2r3MWp-gimAa6DdRs9ErQpPEyjS_yV5fdid_wdOOlA,182
|
|
13
13
|
reflex/.templates/jinja/web/pages/base_page.js.jinja2,sha256=-Jykv29ZqzsQyyRe_iR2gUD5ac-X5RhDrGs0-diOMOA,400
|
|
14
14
|
reflex/.templates/jinja/web/pages/component.js.jinja2,sha256=1Pui62uSL7LYA7FXZrh9ZmhKH8vHYu663eR134hhsAY,86
|
|
@@ -17,13 +17,13 @@ reflex/.templates/jinja/web/pages/index.js.jinja2,sha256=1Vh4XCF8-ekVgiqwZzO7ekc
|
|
|
17
17
|
reflex/.templates/jinja/web/pages/macros.js.jinja2,sha256=RtMZ6eufmMrHghNDMKpueSAhd-znKjgBbJXAAHFc7vU,901
|
|
18
18
|
reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=E_CwG5o4pKteF1-Qjltkx9-8QGNSDoB-HvFgmgA4CJA,337
|
|
19
19
|
reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9u5xOliKWxjgmnia6AJbNnII97SC-dt_KSU,101
|
|
20
|
-
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=
|
|
20
|
+
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=0iLPPIO8bykPLDSttFuXJS4pM6b1ej-amAao5ZWngcA,3770
|
|
21
21
|
reflex/.templates/jinja/web/styles/styles.css.jinja2,sha256=4-CvqGR8-nRzkuCOSp_PdqmhPEmOs_kOhskOlhLMEUg,141
|
|
22
22
|
reflex/.templates/jinja/web/tailwind.config.js.jinja2,sha256=uZMIvtL94OZh6h8zsduv3ox6EXnnYgfVXB_5moOe86E,761
|
|
23
23
|
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=p2aENgsP71xZ5mSfT0QjTfLSd4odtmAJu7GTvddgfhs,3983
|
|
24
24
|
reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=OSpBMh0Z9tTeqb10js4ZtnE9s1RV4gJfE8629csST8M,26
|
|
25
25
|
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
26
|
-
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=
|
|
26
|
+
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=vW3ZdBg1e02u34U0ZcAKXgBjsXcTwgQ8lhxVw2YBIHo,1589
|
|
27
27
|
reflex/.templates/web/components/shiki/code.js,sha256=ohs-hdDvNSnlK_wEG4wzneIBh4arP1ETHikyJCeSBVk,1158
|
|
28
28
|
reflex/.templates/web/jsconfig.json,sha256=rhQZZRBYxBWclFYTeU6UakzbGveM4qyRQZUpEAVhyqY,118
|
|
29
29
|
reflex/.templates/web/next.config.js,sha256=ZpGOqo9wHEbt0S08G70VfUNUjFe79UXo7Cde8X8V10E,118
|
|
@@ -35,92 +35,96 @@ reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseL
|
|
|
35
35
|
reflex/.templates/web/utils/helpers/paste.js,sha256=ef30HsR83jRzzvZnl8yV79yqFP8TC_u8SlN99cCS_OM,1799
|
|
36
36
|
reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
|
|
37
37
|
reflex/.templates/web/utils/helpers/throttle.js,sha256=qxeyaEojaTeX36FPGftzVWrzDsRQU4iqg3U9RJz9Vj4,566
|
|
38
|
-
reflex/.templates/web/utils/state.js,sha256=
|
|
39
|
-
reflex/__init__.py,sha256=
|
|
40
|
-
reflex/__init__.pyi,sha256=
|
|
38
|
+
reflex/.templates/web/utils/state.js,sha256=Xd6nlwJ0B8FXvWbEm0Csv-CpJo7NiFBUO03oByQgaak,29766
|
|
39
|
+
reflex/__init__.py,sha256=vaj8MEv0GwrvMzAYQeayyMvRE4TuAD1Xx3pDpjiY3sA,10289
|
|
40
|
+
reflex/__init__.pyi,sha256=fOSkQZ2RHNzoLXqoVy-2gC5ys45Erxia1yPp34UFk_k,11235
|
|
41
41
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
42
42
|
reflex/admin.py,sha256=_3pkkauMiTGJJ0kwAEBnsUWAgZZ_1WNnCaaObbhpmUI,374
|
|
43
|
-
reflex/app.py,sha256=
|
|
43
|
+
reflex/app.py,sha256=TqdAPE8OXYBtKUe0vbJXGeAGdoCIdvFpc7fv5AABLLw,61524
|
|
44
44
|
reflex/app_mixins/__init__.py,sha256=Oegz3-gZLP9p2OAN5ALNbsgxuNQfS6lGZgQA8cc-9mQ,137
|
|
45
|
-
reflex/app_mixins/lifespan.py,sha256=
|
|
46
|
-
reflex/app_mixins/middleware.py,sha256=
|
|
45
|
+
reflex/app_mixins/lifespan.py,sha256=Xs5KiidoyO921oaBuEg7zaR8B1_SPYDZLouel6u9PRo,3298
|
|
46
|
+
reflex/app_mixins/middleware.py,sha256=lB8I67SEbqcJhp3aqMLZFIZekCYKeMby-Ph2sedIYJI,3349
|
|
47
47
|
reflex/app_mixins/mixin.py,sha256=si0Pa0U1EtJc-a6iZntqU9B7_NrPILwrGFxk9mKHBCE,317
|
|
48
|
-
reflex/app_module_for_backend.py,sha256=
|
|
48
|
+
reflex/app_module_for_backend.py,sha256=iuEYcJNRai59vReNUIZgixtYlFHYcYp_LNFB9DPQnKs,1134
|
|
49
49
|
reflex/assets.py,sha256=M3pT3phlwIBUr4r44jj2zLJUVUzLAdYex2rpU98-Pq8,3395
|
|
50
|
-
reflex/base.py,sha256=
|
|
50
|
+
reflex/base.py,sha256=2ft5udkFRgZpSA8WbkkCk4tUumj6YsGOUM-RDYDCa20,4236
|
|
51
51
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
52
|
-
reflex/compiler/compiler.py,sha256=
|
|
52
|
+
reflex/compiler/compiler.py,sha256=8fa-IvHJKpk3URrfEjY049Zv220o4BEZ8Kokdkd4QhY,21046
|
|
53
53
|
reflex/compiler/templates.py,sha256=XsimfIuF-aYnk7r1LfLVJWW8447Lra32cxZBrw20YnU,5900
|
|
54
|
-
reflex/compiler/utils.py,sha256=
|
|
54
|
+
reflex/compiler/utils.py,sha256=6UfBj9I8Y_kZ1HQj6j-wWAV2FoSuPTbI-n0REs6iWs4,15902
|
|
55
55
|
reflex/components/__init__.py,sha256=zbIXThv1WPI0FdIGf9G9RAmGoCRoGy7nHcSZ8K5D5bA,624
|
|
56
56
|
reflex/components/__init__.pyi,sha256=qoj1zIWaitcZOGcJ6k7wuGJk_GAJCE9Xtx8CeRVrvoE,861
|
|
57
57
|
reflex/components/base/__init__.py,sha256=QIOxOPT87WrSE4TSHAsZ-358VzvUXAe1w8vWogQ3Uuo,730
|
|
58
58
|
reflex/components/base/__init__.pyi,sha256=c-8lUF9MAgAo9OHMjKIrV2ScM5S0fg8gTXp3iYFwVKU,1055
|
|
59
59
|
reflex/components/base/app_wrap.py,sha256=5K_myvYvHPeAJbm3BdEX17tKvdNEj6SV9RYahbIQBAQ,514
|
|
60
60
|
reflex/components/base/app_wrap.pyi,sha256=qqHPEbGzKZXSFGHvnDR-Z9nCvsVHmlnJwABttr8C4Vg,1994
|
|
61
|
-
reflex/components/base/bare.py,sha256=
|
|
61
|
+
reflex/components/base/bare.py,sha256=leGVclR5Fp9Gb1vBUGX9oX4SDxTUTDiP-DhX5PPjwD0,3995
|
|
62
62
|
reflex/components/base/body.py,sha256=QHOGMr98I6bUXsQKXcY0PzJdhopH6gQ8AESrDSgJV6I,151
|
|
63
63
|
reflex/components/base/body.pyi,sha256=ghMRwoF0XwgGmgoAfaTWjVG44bOvm8ECrqOQCKtjCq8,2388
|
|
64
64
|
reflex/components/base/document.py,sha256=_Cl9iMXwXdxGMrCLAT20v35FX3MGtbqh2dfWenDtSKc,583
|
|
65
65
|
reflex/components/base/document.pyi,sha256=tGLaC369oyht0vueIWHS-9uP0OdNyTfReAIVeRSt8Ao,10270
|
|
66
|
-
reflex/components/base/error_boundary.py,sha256=
|
|
67
|
-
reflex/components/base/error_boundary.pyi,sha256=
|
|
66
|
+
reflex/components/base/error_boundary.py,sha256=PbIFRH60GALATzEh_JCfHbNO3zGuJoFVlhRKj2-Afgk,6315
|
|
67
|
+
reflex/components/base/error_boundary.pyi,sha256=nUJRXsVqgfPPGz-spj8iJBLs4R6amjuFh_mU1wz-wdQ,3102
|
|
68
68
|
reflex/components/base/fragment.py,sha256=ys7wkokq-N8WBxa9fqkEaNIrBlSximyD7vqlFVe02hQ,342
|
|
69
69
|
reflex/components/base/fragment.pyi,sha256=4SGUJjiE379KxFzSIBDGIHjppVyPPyRgKtD1XYyn_G0,2428
|
|
70
70
|
reflex/components/base/head.py,sha256=BGjOksNZEo_AZcYEuxNH7onsRnfyxJkJzl4cTd_EwiQ,318
|
|
71
71
|
reflex/components/base/head.pyi,sha256=g4ogZGqk1AEYXcpsBt6Y82a6ZKXAm1w5BbneDElgu-8,4425
|
|
72
72
|
reflex/components/base/link.py,sha256=1QHgptz6QBX6YH0C5KssGAOvVGL0RAFN7GqUrdM8Ers,933
|
|
73
73
|
reflex/components/base/link.pyi,sha256=jUo5FwtSw1WvekXZjMmWJgImJ4ZsMPjwpNomac9SwtQ,5365
|
|
74
|
-
reflex/components/base/meta.py,sha256=
|
|
74
|
+
reflex/components/base/meta.py,sha256=pJ9vOk1cYque8p-HjIRUZvl_F8k9XTwcd4SGkULXnv4,1537
|
|
75
75
|
reflex/components/base/meta.pyi,sha256=hCYb6yCWou7lvtVAm1he-VzUZnJYNn1qlMqmOkvmDLU,9576
|
|
76
76
|
reflex/components/base/script.py,sha256=OZ2ZOWiEmzHRC0-OgH4qj_Dv6X-JSsX5OgaqLXld0VA,2433
|
|
77
77
|
reflex/components/base/script.pyi,sha256=HorIaRQ6_jcZPAINz4BzTUJrSBDEX41ODMk1qHj2s-A,3841
|
|
78
|
-
reflex/components/
|
|
78
|
+
reflex/components/base/strict_mode.py,sha256=_Rl2uGzL8gXTANOpoSU7uxsUQRH5JeTk2EIceWJJa5E,251
|
|
79
|
+
reflex/components/base/strict_mode.pyi,sha256=tPCvfKJ78aGbiqRi6hLFsd5NIEal7weSCvvnzbGCZqE,2407
|
|
80
|
+
reflex/components/component.py,sha256=zAaA8h-WUkKS1PsEjZ-lJUpByrrW-bQcuYV1yuxj-kg,84987
|
|
79
81
|
reflex/components/core/__init__.py,sha256=msAsWb_6bmZGSei4gEpyYczuJ0VNEZtg20fRtyb3wwM,1285
|
|
80
82
|
reflex/components/core/__init__.pyi,sha256=hmng2kT4e3iBSSI_x9t7g2-58G6Cb4rhuwz_APJ-UZM,1994
|
|
81
|
-
reflex/components/core/banner.py,sha256=
|
|
82
|
-
reflex/components/core/banner.pyi,sha256=
|
|
83
|
-
reflex/components/core/breakpoints.py,sha256=
|
|
84
|
-
reflex/components/core/client_side_routing.py,sha256=
|
|
85
|
-
reflex/components/core/client_side_routing.pyi,sha256=
|
|
83
|
+
reflex/components/core/banner.py,sha256=0xTs8ooMfMtpwpPAyFbigWjiKFKfFLWlR3Bk_r-xdUU,11701
|
|
84
|
+
reflex/components/core/banner.pyi,sha256=kPsy68mMpvubJO0UJMIh34W-ycVO6tj_0YCVUCueQlk,21218
|
|
85
|
+
reflex/components/core/breakpoints.py,sha256=c-6gqMzIXAsTLN4ZTGMcL3DNkiHn_NyCO8v2c5dwyVM,2771
|
|
86
|
+
reflex/components/core/client_side_routing.py,sha256=z2WD2jT9U-xDOyHTLjCs0mf5HkwSEJpMmUeXzl4S7ZU,1897
|
|
87
|
+
reflex/components/core/client_side_routing.pyi,sha256=6tDgVwPsSbtX9DmEbbtM_P_-NRMcszNLDCiCEdgDLHA,4624
|
|
86
88
|
reflex/components/core/clipboard.py,sha256=knmLnwLx5c3iqejsCUw3z8pIBOTgBunr6LjJxxa8MNA,3372
|
|
87
89
|
reflex/components/core/clipboard.pyi,sha256=VdovOPONhTwSGIloYY7q45aojhW-WG7FSRM7QFrS6Fg,3395
|
|
88
90
|
reflex/components/core/colors.py,sha256=-hzVGLEq3TiqroqzMi_YzGBCPXMvkNsen3pS_NzIQNk,590
|
|
89
|
-
reflex/components/core/cond.py,sha256=
|
|
90
|
-
reflex/components/core/debounce.py,sha256=
|
|
91
|
+
reflex/components/core/cond.py,sha256=7ZlNRIlQZdYEXff3J-jq5Y1D9DDWJC-jEXE4YPnpHZE,5936
|
|
92
|
+
reflex/components/core/debounce.py,sha256=pRrjHcKz9U0V1bIypuC6V67KzOl0VZr91k8udUGtJlc,4926
|
|
91
93
|
reflex/components/core/debounce.pyi,sha256=Ytd57zd9M5EBqR-0ljTtDF0ilDTGdpw4V6CjMMirG4A,3190
|
|
92
|
-
reflex/components/core/foreach.py,sha256=
|
|
93
|
-
reflex/components/core/html.py,sha256=
|
|
94
|
+
reflex/components/core/foreach.py,sha256=USyUk33TZhQa2D8UBcwLljj-EYrpdl9iWKHTsNU4oLU,5202
|
|
95
|
+
reflex/components/core/html.py,sha256=Yqe48AJilMQlXEq6snbdHIVh-JDChvOBdU2ZFCnetk8,1324
|
|
94
96
|
reflex/components/core/html.pyi,sha256=94Wx9XqZUm2qonTMi2_cqRv4voixxWWFe5HL0hzUx2Y,5477
|
|
95
97
|
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
96
|
-
reflex/components/core/match.py,sha256=
|
|
98
|
+
reflex/components/core/match.py,sha256=Dp_kAwkJwT8TvBiaLK-OwQyGl24sian8k_o7bK-P-54,9281
|
|
97
99
|
reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ2ty4wAc,1911
|
|
98
|
-
reflex/components/core/
|
|
100
|
+
reflex/components/core/sticky.py,sha256=F5IFacgyadaOz4WoO6SxzdPuCWZKYb_1Qvcw6qcq0Dw,4932
|
|
101
|
+
reflex/components/core/sticky.pyi,sha256=wRFmiV--ATARAloVj642w2wn4Q_m6bd9GpSPrUfC-10,19679
|
|
102
|
+
reflex/components/core/upload.py,sha256=0cq0HGpSsrL1mbvG1GtUCcZUnv6QJwZH1CnexnU8Jhw,11948
|
|
99
103
|
reflex/components/core/upload.pyi,sha256=nzfugMkqXgOhlvTMhCCQl6t36oJ-NOUuS0Xz6G6xNqo,16115
|
|
100
104
|
reflex/components/datadisplay/__init__.py,sha256=L8pWWKNHWdUD2fbZRoEKjd_8c_hpDdGYO463hwkoIi4,438
|
|
101
105
|
reflex/components/datadisplay/__init__.pyi,sha256=rYMwO_X4NvUex6IL2MMTnhdFRp8Lz5zweMwXaW_l7nc,588
|
|
102
|
-
reflex/components/datadisplay/code.py,sha256=
|
|
106
|
+
reflex/components/datadisplay/code.py,sha256=YL0vfRsuYfybo7p9ZZDrtwziOXtp2mBSabAqcArk-3o,13906
|
|
103
107
|
reflex/components/datadisplay/code.pyi,sha256=uynx-BDSb9SJYw-2lcDr4k-lyL8yxm7Ewu_zoSCrMhY,50740
|
|
104
|
-
reflex/components/datadisplay/dataeditor.py,sha256=
|
|
108
|
+
reflex/components/datadisplay/dataeditor.py,sha256=vkLfC4FsLk5-5scGEN73ScShmxk5ugZJ6hbZe2SjBYU,13674
|
|
105
109
|
reflex/components/datadisplay/dataeditor.pyi,sha256=7oBCzIA3Qi_Rtb55eA55jrsR1Pu8gMLShLRb_utJVks,14137
|
|
106
|
-
reflex/components/datadisplay/logo.py,sha256=
|
|
107
|
-
reflex/components/datadisplay/shiki_code_block.py,sha256=
|
|
110
|
+
reflex/components/datadisplay/logo.py,sha256=esYECFQAZWlkM1KNTMKPEFCCzSyUF_0WBzUkKJYe8nk,2017
|
|
111
|
+
reflex/components/datadisplay/shiki_code_block.py,sha256=yctAUYXioWpTzI63FZWVR7Y8h6LKw5Tr87sSIRsJeTU,23810
|
|
108
112
|
reflex/components/datadisplay/shiki_code_block.pyi,sha256=u8NP_s9GGE9OKUIAskwbRlYW023t0vzp3rdxZYRaye8,70879
|
|
109
|
-
reflex/components/dynamic.py,sha256=
|
|
113
|
+
reflex/components/dynamic.py,sha256=W-jNbNzll1w6YoMcoF-LMjHqP4UtoQHPV-NamXs-eAY,7220
|
|
110
114
|
reflex/components/el/__init__.py,sha256=nfIjf_cyieEmxptKjA6wRjoongswXv4X3n6vDmsdarI,416
|
|
111
115
|
reflex/components/el/__init__.pyi,sha256=8XE7IflK45ShTh4jhoUnDtz8yT8cuO5Xa11xkibUh68,9876
|
|
112
116
|
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
113
117
|
reflex/components/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
|
|
114
118
|
reflex/components/el/constants/react.py,sha256=f1-Vo8iWn2jSrR7vy-UwGbGRvw88UUZnbb3Rb56MSS4,15554
|
|
115
|
-
reflex/components/el/constants/reflex.py,sha256=
|
|
116
|
-
reflex/components/el/element.py,sha256=
|
|
119
|
+
reflex/components/el/constants/reflex.py,sha256=7ChVeOvzjovZLHa-4vjWEGDqHsefV3tNsa8TKHWFaXM,1697
|
|
120
|
+
reflex/components/el/element.py,sha256=CFUa_6Dz4WsIdP11MzqlW9GBDhJcSU6lJSmWA9zap0c,501
|
|
117
121
|
reflex/components/el/element.pyi,sha256=yogtxYH07_fB3IJ9A4saUoqh0ub9RImmTOOtTzBVVJg,2395
|
|
118
122
|
reflex/components/el/elements/__init__.py,sha256=Slx-rO0DOJeHTUbhocKyYm2wb570MJOXnRf7AI7uxjk,2342
|
|
119
123
|
reflex/components/el/elements/__init__.pyi,sha256=0D3Iw6gktb0vio95VVR69WNY7HXwULQdsy8YMIam9xk,9900
|
|
120
124
|
reflex/components/el/elements/base.py,sha256=Wn8NANdEIsZD3Rexf_Rtd5OhuA23jzeH9ZOq8tFhAWY,1912
|
|
121
125
|
reflex/components/el/elements/base.pyi,sha256=Y7QJlE0-6oXYgkU9qG4IBfb51-GmwcDguMejVI85Qr0,5173
|
|
122
|
-
reflex/components/el/elements/forms.py,sha256=
|
|
123
|
-
reflex/components/el/elements/forms.pyi,sha256=
|
|
126
|
+
reflex/components/el/elements/forms.py,sha256=XCfuiS74D7yKAR9gbEkN90J94Viu8gYIgc1h_-HPb6Y,21412
|
|
127
|
+
reflex/components/el/elements/forms.pyi,sha256=y-m4LPNjZPRprU-Qb1HLiW5vH9W3R2qf-6V7VY2RHcw,84836
|
|
124
128
|
reflex/components/el/elements/inline.py,sha256=83JivMuTiangYcomgMXC_xRUZ27Sl-DsW3rTpvbSX1Y,4024
|
|
125
129
|
reflex/components/el/elements/inline.pyi,sha256=f-c4HyD2uYd3ZkAi8uGeAdqmJ7xZPhQlCJKATzab4o0,134847
|
|
126
130
|
reflex/components/el/elements/media.py,sha256=PNhSo7ECZFN6nQQwWmc5i4_adjnG5vrMRhIET19QzzI,14568
|
|
@@ -142,52 +146,52 @@ reflex/components/gridjs/datatable.py,sha256=Fjd605rDMvZinMfWjefUwv_eOr33OeWvalO
|
|
|
142
146
|
reflex/components/gridjs/datatable.pyi,sha256=qUSs4z4jUGY-SFVCqwPzvEehmhZ4Hq9-RKditmZtTwc,5327
|
|
143
147
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
144
148
|
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
145
|
-
reflex/components/lucide/icon.py,sha256=
|
|
146
|
-
reflex/components/lucide/icon.pyi,sha256=
|
|
149
|
+
reflex/components/lucide/icon.py,sha256=Tjf-sH-dHu7Evs50m54vvZypN3N52BNOHNH3_dYyTqY,32905
|
|
150
|
+
reflex/components/lucide/icon.pyi,sha256=UQ9hoGvUDAQjDNHOE5IsLizoRtZFVmiDI-3T67oiS7Q,36591
|
|
147
151
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
148
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
152
|
+
reflex/components/markdown/markdown.py,sha256=nfQgUidp8JXm_qZDMb_5oktfSd7S_50S38LToyYGx-4,15543
|
|
149
153
|
reflex/components/markdown/markdown.pyi,sha256=O2AYa1FXN0Aq8FKt7XpORmWkHhdAwRxZ6RmDv188EM4,4320
|
|
150
154
|
reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
|
|
151
|
-
reflex/components/moment/moment.py,sha256=
|
|
155
|
+
reflex/components/moment/moment.py,sha256=bSFs3h5VAp6AhnkmKPAQzU8VKMLVb_IR00iJ9Zq3JHo,4138
|
|
152
156
|
reflex/components/moment/moment.pyi,sha256=D4XYSpVD3dFjtcnH_wOMxoksLVBvNEXXiicN2nt9e_0,6397
|
|
153
157
|
reflex/components/next/__init__.py,sha256=jqYJK6QOAUS2PHpFy8xI6qDGn9h1aT0inNWYX_rZFM8,239
|
|
154
158
|
reflex/components/next/base.py,sha256=uo5Xehc_9U3JkVdH4b_fRYFjLYkFKcfFlmX_rtQbwxk,190
|
|
155
159
|
reflex/components/next/base.pyi,sha256=XSYGo6GjNeex_8PccuIGmHb6Jv_RuzBWjLl6OE3y_n8,2415
|
|
156
|
-
reflex/components/next/image.py,sha256=
|
|
157
|
-
reflex/components/next/image.pyi,sha256=
|
|
158
|
-
reflex/components/next/link.py,sha256=
|
|
160
|
+
reflex/components/next/image.py,sha256=GVIhEfhOFcLyMUiQcR1v4InY7C8Hzqyf95Gq-4xSyrM,3973
|
|
161
|
+
reflex/components/next/image.pyi,sha256=ODE0rAFnMuk2qlxdzPjthZrQqgKyCT1j8lzSDGshNk0,4773
|
|
162
|
+
reflex/components/next/link.py,sha256=YYhkgkHGqvyf5JGv-ujatzp_nOqEUAxWY9FIWk7r39A,504
|
|
159
163
|
reflex/components/next/link.pyi,sha256=A8jQIkj-vHrDqTVbuam3Y8eazLHGwqhynqLYr_9Nvck,2615
|
|
160
164
|
reflex/components/next/video.py,sha256=GngxgHvAfGwRHkPUBNp6_GfGarP5mMN6KFA_-VizDOI,735
|
|
161
165
|
reflex/components/next/video.pyi,sha256=JOmKt7-I20YlF_htFI-H5RpOM_9dMw16IShFG52xtRA,2556
|
|
162
166
|
reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
|
|
163
|
-
reflex/components/plotly/plotly.py,sha256=
|
|
167
|
+
reflex/components/plotly/plotly.py,sha256=fG4rGIjOgaYD_0V9JW_5jVezMOZf_MGEuxFZ_V5Zf8s,8775
|
|
164
168
|
reflex/components/plotly/plotly.pyi,sha256=y2lb3vkdL1rA8HFFAKTPzFQAOqlv9DhnYHIDLeo7qFA,7283
|
|
165
|
-
reflex/components/props.py,sha256=
|
|
169
|
+
reflex/components/props.py,sha256=8F2ZNeF16BDiTh-E4F-U_vks41BMJgmkTM7xbjGvfOA,2593
|
|
166
170
|
reflex/components/radix/__init__.py,sha256=fRsLvIO3MrTtPOXtmnxYDB9phvzlcbyB_utgpafYMho,474
|
|
167
|
-
reflex/components/radix/__init__.pyi,sha256=
|
|
171
|
+
reflex/components/radix/__init__.pyi,sha256=YpWw_k35yv_Yq_0RZNCb52fJZ3dANWAnQllhVoVCWEE,3988
|
|
168
172
|
reflex/components/radix/primitives/__init__.py,sha256=R2sdZJqQCYaLScGkXnXDKAjVgV5MidceemooEUtvBt4,443
|
|
169
173
|
reflex/components/radix/primitives/__init__.pyi,sha256=C3ryDDEVq8kZp2PBm-_onHKXumFnKD__B2puDbO4WjE,401
|
|
170
|
-
reflex/components/radix/primitives/accordion.py,sha256=
|
|
171
|
-
reflex/components/radix/primitives/accordion.pyi,sha256=
|
|
174
|
+
reflex/components/radix/primitives/accordion.py,sha256=39uwYpqMYg8mmR60LYAMOmKcZNN2NZ19V17nUBUIzlc,16052
|
|
175
|
+
reflex/components/radix/primitives/accordion.pyi,sha256=VGAwb0GJtqsbRjK8y5TJ1vMe21PAD3zqYcqkmArQA3E,32366
|
|
172
176
|
reflex/components/radix/primitives/base.py,sha256=Jbg_KbxnjofunHkmsMzJRJrJ8NZbRZrgktlWd_zTrOs,904
|
|
173
177
|
reflex/components/radix/primitives/base.pyi,sha256=wQCizQDVXaW24ROLOOazsTw2oGdeZnLppRWYIUlkE7A,4754
|
|
174
|
-
reflex/components/radix/primitives/drawer.py,sha256=
|
|
175
|
-
reflex/components/radix/primitives/drawer.pyi,sha256=
|
|
178
|
+
reflex/components/radix/primitives/drawer.py,sha256=k7qZ7cXV3fgPP8XEF7X2oATv3_144-XWqh-mG4YcdCM,9247
|
|
179
|
+
reflex/components/radix/primitives/drawer.pyi,sha256=1UBQMD8vidGY_JQI5ZAkhQCuUsS8dCxiIWQ4h0elQoY,31194
|
|
176
180
|
reflex/components/radix/primitives/form.py,sha256=JS632HHaqPoMbZ-sD4wldj8SXGgtU_UkJusG9W56NvE,4832
|
|
177
|
-
reflex/components/radix/primitives/form.pyi,sha256=
|
|
178
|
-
reflex/components/radix/primitives/progress.py,sha256=
|
|
181
|
+
reflex/components/radix/primitives/form.pyi,sha256=Nz471T3Z41Kgpb9LcDTQwmVgiQhO6caNQMfEFlOmj2k,39516
|
|
182
|
+
reflex/components/radix/primitives/progress.py,sha256=bEqG-W8YwFfI8dKQUVsa5j4S7BfRC3SbWqzpWYEq1tM,4011
|
|
179
183
|
reflex/components/radix/primitives/progress.pyi,sha256=CeEg5PJWM8Aj09JVMeLdAHGXpdojZAufdjp78l-Iheg,18595
|
|
180
|
-
reflex/components/radix/primitives/slider.py,sha256=
|
|
184
|
+
reflex/components/radix/primitives/slider.py,sha256=DLquoUEXVRH9xSmoaWf3PghT9YZ5O_wj7pK5_00RR7M,4999
|
|
181
185
|
reflex/components/radix/primitives/slider.pyi,sha256=lOaJoXureA0MutJY28UpC6T26Ol_UgTsXWDnCs90_vg,13077
|
|
182
186
|
reflex/components/radix/themes/__init__.py,sha256=3ASzR_OrjkLXZ6CksGKIQPOcyYZ984NzXrn2UCIdxUc,492
|
|
183
187
|
reflex/components/radix/themes/__init__.pyi,sha256=RVeS7TipR51MgmsWJStZwh4QxKBtOMtCguBtVbUJqX8,476
|
|
184
188
|
reflex/components/radix/themes/base.py,sha256=WNv2RfriXqfdTr9AIHCjLN7Tr_yYFGAk7WPUAsna2SU,8781
|
|
185
189
|
reflex/components/radix/themes/base.pyi,sha256=WN5yCygEK3TUd1oGDw6DwihnLcBUv2N_srSKn50JRIU,28267
|
|
186
|
-
reflex/components/radix/themes/color_mode.py,sha256=
|
|
190
|
+
reflex/components/radix/themes/color_mode.py,sha256=KQ3t0VHC9drjwcr2LswWDR-Y-Mhl8pmObNdsSWhvYLs,6532
|
|
187
191
|
reflex/components/radix/themes/color_mode.pyi,sha256=60GRAHHV56RBpDkqEGxDB23iu3xAZU7vCxi-hKQWDaQ,20013
|
|
188
192
|
reflex/components/radix/themes/components/__init__.py,sha256=fzc5ghmmbIQ8yaxKQQY83TINb6k2uVPX-wddyTDlQx8,423
|
|
189
193
|
reflex/components/radix/themes/components/__init__.pyi,sha256=-yTF7ROfG_qxrRL-lmCIidPJtFY5StumKB7VfWsDqSw,1946
|
|
190
|
-
reflex/components/radix/themes/components/alert_dialog.py,sha256=
|
|
194
|
+
reflex/components/radix/themes/components/alert_dialog.py,sha256=UDSU4eHsJ-O40Zc1myVnZn3KkJmL1ByOeyu71h6M7PA,3271
|
|
191
195
|
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=KYl_beBYZ96J7hjNLKknwW7o4lV8abxXzSadNikL9R8,19117
|
|
192
196
|
reflex/components/radix/themes/components/aspect_ratio.py,sha256=puyjBq6NLVpRPp_Zn2x0mSI8ipOIBlUa7fcP1btblx0,406
|
|
193
197
|
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=q4rRo2MocxZkTL8qVoSiZuX7igKi-SwUYUnEZFx48l8,2763
|
|
@@ -199,43 +203,43 @@ reflex/components/radix/themes/components/button.py,sha256=6bYyYTbewA-fxooZCsLw3
|
|
|
199
203
|
reflex/components/radix/themes/components/button.pyi,sha256=czonQ6KFfpwWBXPXgcnKt3BJAk3lmcTbkj_mSWgakIQ,10889
|
|
200
204
|
reflex/components/radix/themes/components/callout.py,sha256=9JHrSF9rRRQtDq-n4ZGTickLF0mmo7uIqWPfxrRhIYM,2478
|
|
201
205
|
reflex/components/radix/themes/components/callout.pyi,sha256=Tww91Eo9mUblG-nXKvlyLXtAQXby6NdIjJ1ckYSqxd8,33992
|
|
202
|
-
reflex/components/radix/themes/components/card.py,sha256=
|
|
203
|
-
reflex/components/radix/themes/components/card.pyi,sha256=
|
|
206
|
+
reflex/components/radix/themes/components/card.py,sha256=56EoJDKKrpU_Hawc4RW_ayRUVohebFJojnUa4FihrRY,746
|
|
207
|
+
reflex/components/radix/themes/components/card.pyi,sha256=9jkZUgJpMkQWK4dzV2j2HjCzRBhWKyeh82hW0CXByfM,6379
|
|
204
208
|
reflex/components/radix/themes/components/checkbox.py,sha256=eDL_D-oU3HloHPA10lEdSGPZrhnSVFcMIAnyoof22k0,4341
|
|
205
209
|
reflex/components/radix/themes/components/checkbox.pyi,sha256=5mJ5_xRoMbbXcAGwhT_v2_uHbfSx7fLr9w4nxY6iBj4,18656
|
|
206
210
|
reflex/components/radix/themes/components/checkbox_cards.py,sha256=EP_WAUlyBBigQvih60woL6OIM_t5c78wAyZWmgNVHAM,1428
|
|
207
211
|
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=WQ8rDq5hJYq-58AOmZ1yJ2cU0Cf_YrUi0bl9uOlhE14,9345
|
|
208
212
|
reflex/components/radix/themes/components/checkbox_group.py,sha256=AtKll0dgTfFSkZ-E9U_NL3-9B6KTMdADW3O2kOwAHTU,1531
|
|
209
213
|
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=EPlEVob4RPkKRAyv9RmxEhFCSPHjrpa3Io-6GQ7GOOM,8275
|
|
210
|
-
reflex/components/radix/themes/components/context_menu.py,sha256=
|
|
214
|
+
reflex/components/radix/themes/components/context_menu.py,sha256=YcxKi8RaYowGsLYWPPr4Elm2VAjKHyvDIXj7m-Fcqao,10118
|
|
211
215
|
reflex/components/radix/themes/components/context_menu.pyi,sha256=yP2vuYs4D9MULE9ae1ZnPSfw3WQxvOSA5Ve7iPdT6Fs,38249
|
|
212
216
|
reflex/components/radix/themes/components/data_list.py,sha256=fRrwrYBsUNLeAmch6Y57AS5MDnlKTq4P2J4nsezHq4k,1885
|
|
213
217
|
reflex/components/radix/themes/components/data_list.pyi,sha256=SvK8c23ZOivCz7B1OFNzodlTCCbRx4VgH3x-uoDZHSo,13912
|
|
214
|
-
reflex/components/radix/themes/components/dialog.py,sha256=
|
|
218
|
+
reflex/components/radix/themes/components/dialog.py,sha256=djRrVXacMJndS4fkMOKdZL2_fPf1Igo9MzOoFKpbT84,2696
|
|
215
219
|
reflex/components/radix/themes/components/dialog.pyi,sha256=LfpT0Pjba8jMlWdkVfUf8kocpGmBJqhRi5tcEdansvE,19920
|
|
216
|
-
reflex/components/radix/themes/components/dropdown_menu.py,sha256=
|
|
220
|
+
reflex/components/radix/themes/components/dropdown_menu.py,sha256=Z8VNP9fv2cPLzgNPDN0J4XrS_wTsr0P4xykRcYRo_W0,10265
|
|
217
221
|
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=SH6xGoj8EnGfsbej0BboDOht8RRSnriHgZIkhot6CbI,31243
|
|
218
|
-
reflex/components/radix/themes/components/hover_card.py,sha256=
|
|
222
|
+
reflex/components/radix/themes/components/hover_card.py,sha256=J9ljfRtukG5B7YT_LTL6ptb4V-mr65dq1kkSctuGp28,3235
|
|
219
223
|
reflex/components/radix/themes/components/hover_card.pyi,sha256=RMOLQ9MBH3G-9bSDILL5zyft5ycSEkil1qaQ_-50K6s,16172
|
|
220
|
-
reflex/components/radix/themes/components/icon_button.py,sha256=
|
|
221
|
-
reflex/components/radix/themes/components/icon_button.pyi,sha256=
|
|
224
|
+
reflex/components/radix/themes/components/icon_button.py,sha256=_4cj_NIqtIIzEOdv8QbrHaSEjEQW6ThwHX0lpuHe40k,3007
|
|
225
|
+
reflex/components/radix/themes/components/icon_button.pyi,sha256=4HX2voYlnih1zyz2Ba1t2PKKvjmNkQyeBwtMkJ0CxyE,10967
|
|
222
226
|
reflex/components/radix/themes/components/inset.py,sha256=F2Gb7jrUK8y0hFSOX7CICPIresEgwkDtOH8lDrclM6o,1204
|
|
223
227
|
reflex/components/radix/themes/components/inset.pyi,sha256=K5hfrhqgBI6F7jV_p7Oc7MvM2z9n7AFQ7Ol9WK6IeWU,8535
|
|
224
|
-
reflex/components/radix/themes/components/popover.py,sha256=
|
|
228
|
+
reflex/components/radix/themes/components/popover.py,sha256=lOvtNL_Rpbvkrc2HnNVdFODmbIttcz7LgxE_Os5tMBI,4044
|
|
225
229
|
reflex/components/radix/themes/components/popover.pyi,sha256=AdDlp1-HmXllyZqytmDQJbzg0KY0iPuzoDeX4MaoGTY,15578
|
|
226
230
|
reflex/components/radix/themes/components/progress.py,sha256=OTqA0GEZY7OtvIqSc8LdHITtISLPRkXgoeWll6zVyd4,2375
|
|
227
231
|
reflex/components/radix/themes/components/progress.pyi,sha256=gSgfHbaUZJU7guYt1OoQHQuL6JE0OYufzFZT9qY5q8k,6169
|
|
228
232
|
reflex/components/radix/themes/components/radio.py,sha256=mcX2l2TbhXxqRPVlPnxPgpNmY_VWHqXQEs1frCdHeeU,837
|
|
229
233
|
reflex/components/radix/themes/components/radio.pyi,sha256=hhDeA9JgCPhJeKzo3zaP8Q-onnnoNY2fkkIaDKDzFIA,5338
|
|
230
|
-
reflex/components/radix/themes/components/radio_cards.py,sha256=
|
|
234
|
+
reflex/components/radix/themes/components/radio_cards.py,sha256=lVOcEivgvO37M2uBPliDeiMbEE4pt4xB5kck5lWhXis,3079
|
|
231
235
|
reflex/components/radix/themes/components/radio_cards.pyi,sha256=vj17T7Ta_2dixPvVoQilkmTkkNgXBsVr3TKolJWjCBw,11727
|
|
232
|
-
reflex/components/radix/themes/components/radio_group.py,sha256=
|
|
236
|
+
reflex/components/radix/themes/components/radio_group.py,sha256=fdie5Vo6csq07scJ_URyqmGOu5EyKeNvucUjyxy4cvU,6812
|
|
233
237
|
reflex/components/radix/themes/components/radio_group.pyi,sha256=hbL_DTaUs2lmv1e7_TvxUQyNZr3m-aLoc8R0YWI9Eo4,21110
|
|
234
238
|
reflex/components/radix/themes/components/scroll_area.py,sha256=EfKfx6KCKG--mznWAJ_2SMCer8uFLQWZa5JndKD92e8,917
|
|
235
239
|
reflex/components/radix/themes/components/scroll_area.pyi,sha256=EYVGP98_1qypNKE-QEqIe3rInh7l2nJnHqJD_EZbCf0,3564
|
|
236
240
|
reflex/components/radix/themes/components/segmented_control.py,sha256=6R5dCG9L0OTcQHUrhJEBLjq0MaxLmNj7PPqnQ62zFVs,2223
|
|
237
241
|
reflex/components/radix/themes/components/segmented_control.pyi,sha256=xLsN4yCzHdusMaLUaLbh6vF_9FbEItgQn4Hs7KJtw68,8927
|
|
238
|
-
reflex/components/radix/themes/components/select.py,sha256=
|
|
242
|
+
reflex/components/radix/themes/components/select.py,sha256=at4P_q9PVH0rzw7IFQRNPp6kYVnkLS_ioBtug4PULwM,7948
|
|
239
243
|
reflex/components/radix/themes/components/select.pyi,sha256=GJ95kkzeQAPoUK6yrBPtIFx5v7xCDv6XkLBGia1NnpU,39114
|
|
240
244
|
reflex/components/radix/themes/components/separator.py,sha256=JqdQAEuPol1mwYKmMuUAFEpWldqeu4UC2LzXkDNNxko,957
|
|
241
245
|
reflex/components/radix/themes/components/separator.pyi,sha256=PUdGsl8qEzYhU6a2Y6rpEnvXoG5fyX8Gl-NsElAoHpU,5765
|
|
@@ -249,16 +253,16 @@ reflex/components/radix/themes/components/switch.py,sha256=cfj9xvbYRdmMwF6HqXxCK
|
|
|
249
253
|
reflex/components/radix/themes/components/switch.pyi,sha256=hrK9onYns3Oc-MC7ovxtHWDd82LWfmYpsAT3NUmgcnU,6782
|
|
250
254
|
reflex/components/radix/themes/components/table.py,sha256=dIMrHTggykG87M0T5Pp77QC-9DeuIdyX88vQh8Ux8jU,3738
|
|
251
255
|
reflex/components/radix/themes/components/table.pyi,sha256=tPfz6VK5RVrISaefzP-a2SrmNEmmURoDwDebgOz3mc4,50294
|
|
252
|
-
reflex/components/radix/themes/components/tabs.py,sha256=
|
|
256
|
+
reflex/components/radix/themes/components/tabs.py,sha256=BAamAm2RQxBwstuIXyQ6Eo-4nQTRtb3T_pIg2B9BS4Y,4627
|
|
253
257
|
reflex/components/radix/themes/components/tabs.pyi,sha256=AIW1I9QSt4Rr_KfFG_fMQ8nudw7rUKT6UJk-Nlj5bkM,16816
|
|
254
|
-
reflex/components/radix/themes/components/text_area.py,sha256=
|
|
255
|
-
reflex/components/radix/themes/components/text_area.pyi,sha256=
|
|
256
|
-
reflex/components/radix/themes/components/text_field.py,sha256=
|
|
258
|
+
reflex/components/radix/themes/components/text_area.py,sha256=IszPH-R9CYkPIkIWnRPD4nacDGkzHjJ6pJ6deLYdSBU,3448
|
|
259
|
+
reflex/components/radix/themes/components/text_area.pyi,sha256=JXR8fzhHuVx-xiT-4GspXOAoS632P14XCX66DPTEb7g,12476
|
|
260
|
+
reflex/components/radix/themes/components/text_field.py,sha256=6BqyNN3zdOnOOLEgm8Eo2L_9hKfxqEojUAv8a2OdVLU,4132
|
|
257
261
|
reflex/components/radix/themes/components/text_field.pyi,sha256=99hw2IwC9HlzFVt2IZrAimf1yTKk9w96bTH3bS6iYeI,31718
|
|
258
|
-
reflex/components/radix/themes/components/tooltip.py,sha256=
|
|
259
|
-
reflex/components/radix/themes/components/tooltip.pyi,sha256=
|
|
262
|
+
reflex/components/radix/themes/components/tooltip.py,sha256=SOj277f72mA1-uvSqPjVhM-LjoDR-dArA6Nijt0JtcE,4320
|
|
263
|
+
reflex/components/radix/themes/components/tooltip.pyi,sha256=l8VrfjEmKpAfQQ2Ovpg5ctp_UffBBQZ_f6ksLoDSJFA,7139
|
|
260
264
|
reflex/components/radix/themes/layout/__init__.py,sha256=dbRNzJ9pag7luTO3saNvgKzozrGNJ02_Vn9r3SwJHN4,406
|
|
261
|
-
reflex/components/radix/themes/layout/__init__.pyi,sha256=
|
|
265
|
+
reflex/components/radix/themes/layout/__init__.pyi,sha256=qyTauwdNy4ZxSBDg6K0QXIEiNAsKZ200qyGgWePKyaA,790
|
|
262
266
|
reflex/components/radix/themes/layout/base.py,sha256=Mvyti40XT2kFfrU3FvQIR2GRIYZNyF2qojGe8Tqq-TE,886
|
|
263
267
|
reflex/components/radix/themes/layout/base.pyi,sha256=YIPcg0P10-gc_2MXsaEsHq5pegg7XKS0s5t92z6wSdY,10064
|
|
264
268
|
reflex/components/radix/themes/layout/box.py,sha256=7BAGnOYX5HMiftVQmYG5_kWYmy_0rbexLrwREbSbAT4,327
|
|
@@ -271,13 +275,13 @@ reflex/components/radix/themes/layout/flex.py,sha256=A6gflxUH7lI-kRthQZrrVDCozBK
|
|
|
271
275
|
reflex/components/radix/themes/layout/flex.pyi,sha256=uoQb0Zg8Eto_HmSj6SK4WW7acsS_mmIlOlXao_uKOl8,9134
|
|
272
276
|
reflex/components/radix/themes/layout/grid.py,sha256=biFoJFzu9OLPd5A4_CUwcpTyF7_bKoH8jxjON884stQ,1682
|
|
273
277
|
reflex/components/radix/themes/layout/grid.pyi,sha256=xx9HjIYb9MtsTSHnzORH1a4cmqUcl2qFT2jUOFu8jM8,10322
|
|
274
|
-
reflex/components/radix/themes/layout/list.py,sha256=
|
|
278
|
+
reflex/components/radix/themes/layout/list.py,sha256=EtsdHOuHjDFsn511qItlKVfLxx0VGcz4lLsUy9YA1Jw,5252
|
|
275
279
|
reflex/components/radix/themes/layout/list.pyi,sha256=YrfLoYVUbX-F4BTIvMu5hsH0hreqV6tEdGyFW6AKMNo,26628
|
|
276
280
|
reflex/components/radix/themes/layout/section.py,sha256=ZSVYvC4Pq0z3oQMUBdhC4Hn8qZ__N86vifag3ZO99bs,624
|
|
277
281
|
reflex/components/radix/themes/layout/section.pyi,sha256=yMIf90c4fu6KXqAEIzGJ42PKHVda5-y1fvxo3-sDvgY,5955
|
|
278
282
|
reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
|
|
279
283
|
reflex/components/radix/themes/layout/spacer.pyi,sha256=B2BvS0qJeRvLV206lZOKoLUzatibicJ3aEvqyUgOsqc,8967
|
|
280
|
-
reflex/components/radix/themes/layout/stack.py,sha256=
|
|
284
|
+
reflex/components/radix/themes/layout/stack.py,sha256=DZFVCCanV9NOWdkG_pfKrzlUGe7xHS37iUuhRpTn4MM,1537
|
|
281
285
|
reflex/components/radix/themes/layout/stack.pyi,sha256=tqnpa26w9rH2RnYVeSNxZr3eo8sLfecNNiEvcENVerM,22084
|
|
282
286
|
reflex/components/radix/themes/typography/__init__.py,sha256=dEopnJWc8cPs1oUBK3wMHQtzQ_QNM9pIblzEWbZZ4G4,422
|
|
283
287
|
reflex/components/radix/themes/typography/__init__.pyi,sha256=cXYgQJIXjO3arJXf0SLjHUqC62lNrRk9Ra68SEwo4QY,433
|
|
@@ -288,111 +292,110 @@ reflex/components/radix/themes/typography/code.py,sha256=9tatKTGiDNgrIS2uoX6vf0u
|
|
|
288
292
|
reflex/components/radix/themes/typography/code.pyi,sha256=9XRnABxWxyZzK9-umlxiljhgoyMtulEsFnYBYpMHpzY,9087
|
|
289
293
|
reflex/components/radix/themes/typography/heading.py,sha256=qWR7bUD24SkoQ5rTLV14jLGYr0gpJk6QVX_HhsKeZZ0,1546
|
|
290
294
|
reflex/components/radix/themes/typography/heading.pyi,sha256=j4lAr09OnexmURK3dUpVdcbjK9tD9xP3Vn-TjeR0zrE,10161
|
|
291
|
-
reflex/components/radix/themes/typography/link.py,sha256=
|
|
295
|
+
reflex/components/radix/themes/typography/link.py,sha256=Q6Np8xej_9PIoKcPPRxaiSCitQq62cO_GPujw18U33o,3655
|
|
292
296
|
reflex/components/radix/themes/typography/link.pyi,sha256=EtuLws8VMtXZlk9bxyWmEa9Y0v1nCJWIVLkh5fFUP9E,11697
|
|
293
|
-
reflex/components/radix/themes/typography/text.py,sha256=
|
|
297
|
+
reflex/components/radix/themes/typography/text.py,sha256=g2YVFj32lIWYcGswUhAOsWMcoiuPm8kj07B4rqai1rE,2814
|
|
294
298
|
reflex/components/radix/themes/typography/text.pyi,sha256=xLYafKmEwb5LM0N3wM2pR0F8Cqbf9IFlRj8Fnf7WQ9c,53021
|
|
295
299
|
reflex/components/react_player/__init__.py,sha256=1OTHeZkuefi-zIVXc_QZMTBg4_RsGrMaJHducUuZQCU,171
|
|
296
300
|
reflex/components/react_player/audio.py,sha256=qw_H2_W0AyMsHehA_Q9jskN4_N5TYgkzeisOxhepkPs,186
|
|
297
301
|
reflex/components/react_player/audio.pyi,sha256=0mpOnWA3OiQEVnAwnwfAtlDbP3qxasHY2u55gQRupX8,6444
|
|
298
|
-
reflex/components/react_player/react_player.py,sha256=
|
|
302
|
+
reflex/components/react_player/react_player.py,sha256=WtiJ5gxXM8kQ_XUnayTC_h21USmktAOvTRx2Pq34tGQ,3547
|
|
299
303
|
reflex/components/react_player/react_player.pyi,sha256=g7QqwuZyKiqxzXSH_OJXeoEp7kB1FpAg9u9AFrmTwU0,6455
|
|
300
304
|
reflex/components/react_player/video.py,sha256=2V6tiwCwrzu9WPI1Wmuepk8kQ6M6K8nnMdLLjEbrxrw,186
|
|
301
305
|
reflex/components/react_player/video.pyi,sha256=bAYvxlAKDfobuzMiCzkU7hbQ2uY2VGoXj6cGJ1DnMnw,6444
|
|
302
|
-
reflex/components/recharts/__init__.py,sha256=
|
|
303
|
-
reflex/components/recharts/__init__.pyi,sha256
|
|
306
|
+
reflex/components/recharts/__init__.py,sha256=Ke5NLICmT2J_mGIUBZcFMUJOXGYgFSG3xRs2v7YjN6I,2676
|
|
307
|
+
reflex/components/recharts/__init__.pyi,sha256=-oVJHVWtQ4kvRoM0SoouWdpWeN1CfvqdjF8Jjx749Bo,5144
|
|
304
308
|
reflex/components/recharts/cartesian.py,sha256=e-2fE4AkOHNpKDAML9_fdq5NVNhRllCqAJ8izbRcj78,34703
|
|
305
309
|
reflex/components/recharts/cartesian.pyi,sha256=5xu88tCskbS4QhYtLWi55vijR6AUjuHxhLyKW4URLNo,113739
|
|
306
|
-
reflex/components/recharts/charts.py,sha256=
|
|
310
|
+
reflex/components/recharts/charts.py,sha256=1cGqspOsY5RM0FTvu2EWI_f7n5T-LSV3VPzIYJ4-AJY,18849
|
|
307
311
|
reflex/components/recharts/charts.pyi,sha256=Rd47xWc-cqskaF0y1VCAPNAN1B7zrZMyArHcxXrQqDQ,51750
|
|
308
|
-
reflex/components/recharts/general.py,sha256=
|
|
309
|
-
reflex/components/recharts/general.pyi,sha256
|
|
310
|
-
reflex/components/recharts/polar.py,sha256=
|
|
312
|
+
reflex/components/recharts/general.py,sha256=i8UpW6ZzRgETFvb-KRmcC51lG9VR55UPOYmMWOOuJrw,9011
|
|
313
|
+
reflex/components/recharts/general.pyi,sha256=-BLfkaALgeJfGX9432xLhb--E6V8HKu4EzdYNlbLBgo,25585
|
|
314
|
+
reflex/components/recharts/polar.py,sha256=Gp8nobLr2XQk8wHmv039rUz7NrTaKCwl8fQqT_iASLI,15715
|
|
311
315
|
reflex/components/recharts/polar.pyi,sha256=NJugPNg1rtHVSzy8Fc3JXe5Y-Kxku8Jt8N7UieOwCoY,29452
|
|
312
|
-
reflex/components/recharts/recharts.py,sha256=
|
|
316
|
+
reflex/components/recharts/recharts.py,sha256=pWwrKtEcHbGaeqaDAZH1FQgPuPKj7PE6DT_df_OeIio,3176
|
|
313
317
|
reflex/components/recharts/recharts.pyi,sha256=vPy4O4kAWG8hGrvqI6nKcr22L5OEDMb3P4zcSOnAVj4,7144
|
|
314
318
|
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
315
|
-
reflex/components/sonner/toast.py,sha256
|
|
316
|
-
reflex/components/sonner/toast.pyi,sha256=
|
|
319
|
+
reflex/components/sonner/toast.py,sha256=_09iRIcE2eDobFjgBPL0K4muVDWwvnhqwBRHwuDJ_nE,11591
|
|
320
|
+
reflex/components/sonner/toast.pyi,sha256=VB6fc4y8t8BpozKDktp0-TuDsJxzcUF0Y4zsXL2JfwM,7577
|
|
317
321
|
reflex/components/suneditor/__init__.py,sha256=htkPzy0O_1ro1nw8w8gFPjYhg5xywMpsUfc4Dl3OHuw,109
|
|
318
|
-
reflex/components/suneditor/editor.py,sha256=
|
|
319
|
-
reflex/components/suneditor/editor.pyi,sha256=
|
|
322
|
+
reflex/components/suneditor/editor.py,sha256=W1_Yu3UwqQFsFxFdJalKls2RMUjFfboy2FLiNw_xZYw,8061
|
|
323
|
+
reflex/components/suneditor/editor.pyi,sha256=bbxKga1gJajRwzZns621_rut3rfuHvHUJVn9s0szEaE,9863
|
|
320
324
|
reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTkNhW_Q,152
|
|
321
325
|
reflex/components/tags/cond_tag.py,sha256=oYsiTxANrByBg7NwuXVk2yGN5n2u7FHreeG1PdmfzIo,607
|
|
322
|
-
reflex/components/tags/iter_tag.py,sha256=
|
|
326
|
+
reflex/components/tags/iter_tag.py,sha256=ZTqCM-iF_JCeTWjQkHBzx-j83BAQQD4a6yyPhG8H0gM,4508
|
|
323
327
|
reflex/components/tags/match_tag.py,sha256=mqQF6fHhOSGSMdiaJ7YlwXSMhRtDmmIBu1Gw-VQQ324,586
|
|
324
|
-
reflex/components/tags/tag.py,sha256=
|
|
328
|
+
reflex/components/tags/tag.py,sha256=ALYXjj7oaDIqeHcsGwUys9qfhSE8t6nPB-3MjTaLqRk,3695
|
|
325
329
|
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
326
|
-
reflex/config.py,sha256=
|
|
327
|
-
reflex/constants/__init__.py,sha256=
|
|
328
|
-
reflex/constants/base.py,sha256=
|
|
330
|
+
reflex/config.py,sha256=ZPsehIuPNxKWm2OHTJZcgf5EP-jLXPTTkxQDPkUHrd8,28548
|
|
331
|
+
reflex/constants/__init__.py,sha256=NLRc-Hb2BwmABdVmSaXlIuBQKsPS8KM9TWaUrhE330k,1996
|
|
332
|
+
reflex/constants/base.py,sha256=5N5ls3Z6dv9xSWTl0BVPDQqCHkEgmhRgxDiAPkX5jfA,7512
|
|
329
333
|
reflex/constants/colors.py,sha256=cgLn8iEWtlpjQgbhhlCOGjbhfOULKnzqqzPph63SJoI,1613
|
|
330
|
-
reflex/constants/compiler.py,sha256=
|
|
331
|
-
reflex/constants/config.py,sha256=
|
|
334
|
+
reflex/constants/compiler.py,sha256=p-BPecWEXiHi5FtumcbCDUo8wuQNyICDFyn2w7xPzzo,5496
|
|
335
|
+
reflex/constants/config.py,sha256=4EljK_fD1Nf4-OfJ9HLYeHSW5xTfNPN6AGjzJ5ARZSY,1579
|
|
332
336
|
reflex/constants/custom_components.py,sha256=joJt4CEt1yKy7wsBH6vYo7_QRW0O_fWXrrTf0VY2q14,1317
|
|
333
337
|
reflex/constants/event.py,sha256=1gKAwNoYyvZs3vNvfynF0SeFWnRGXZX0A_2iPhqUyu8,2818
|
|
334
|
-
reflex/constants/installer.py,sha256=
|
|
338
|
+
reflex/constants/installer.py,sha256=OpnHqCFfLtaZlUaeJYj-NuIMA0zngrK3rZkF_hq0LCI,4740
|
|
335
339
|
reflex/constants/route.py,sha256=J4QVdeeYz9wX0lYT1sgx0m3kLSArDHzmGCDZ2sqy854,2139
|
|
336
340
|
reflex/constants/state.py,sha256=6Mfr7xVcAZOj5aSy7kp0W6r8oTs7K30URgGDAAFLfPQ,294
|
|
337
|
-
reflex/constants/style.py,sha256
|
|
341
|
+
reflex/constants/style.py,sha256=EPgRYHhAlcrPUBc2HkDTdTj-Q0uDAXHlq8Sp6D35Zf4,475
|
|
338
342
|
reflex/constants/utils.py,sha256=HGOSq9c-xGbCb1xoLAGLBdc-FOE8iuBzvuU24zSfsV0,789
|
|
339
343
|
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
340
|
-
reflex/custom_components/custom_components.py,sha256=
|
|
341
|
-
reflex/event.py,sha256=
|
|
342
|
-
reflex/experimental/__init__.py,sha256=
|
|
343
|
-
reflex/experimental/
|
|
344
|
-
reflex/experimental/
|
|
345
|
-
reflex/experimental/
|
|
346
|
-
reflex/experimental/layout.
|
|
347
|
-
reflex/experimental/
|
|
348
|
-
reflex/experimental/misc.py,sha256=Zig3AvXAWy82qbMzNB56VHHaN3fL-lJbRI6sP-TBx58,695
|
|
344
|
+
reflex/custom_components/custom_components.py,sha256=lAalybJ4yzJvXZ1wh362YsG3nmIr5QxKC8T8cdpwuGg,33142
|
|
345
|
+
reflex/event.py,sha256=yqOArHnfdANVz3FoFGsZWeocF_r1k-FfGj4zMpHOL_0,60252
|
|
346
|
+
reflex/experimental/__init__.py,sha256=bvJ6qFeO3xT3L-8IBtk4ecoi5rda3EDvblgNP60yhEo,2206
|
|
347
|
+
reflex/experimental/client_state.py,sha256=5lmCM7fzEtJp5eegUCoygJRYXf6f1U9UiFyuWxsznbs,9906
|
|
348
|
+
reflex/experimental/hooks.py,sha256=CHYGrAE5t8riltrJmDFgJ4D2Vhmhw-y3B3MSGNlOQow,2366
|
|
349
|
+
reflex/experimental/layout.py,sha256=v44TTIZdZ6ERj1dPsp_u_GUex6l29n6zcQAgro6nnC4,7539
|
|
350
|
+
reflex/experimental/layout.pyi,sha256=Rxhu7LKKHoZY6prulO8rJhCdgcNpg8T4HMJYbfUvt58,15344
|
|
351
|
+
reflex/experimental/misc.py,sha256=X0vgTWn72VduWi6p2hMU-gGksRkhu7isDJNJ0kNVaAo,704
|
|
349
352
|
reflex/istate/__init__.py,sha256=LDu_3-31ZI1Jn9NWp4mM0--fDiXI0x8x3gR4-kdrziY,57
|
|
350
353
|
reflex/istate/data.py,sha256=BFqcdRqVegouoHWWMFOvMvZU_LXe9lCNSWgQEzYNWbI,4324
|
|
351
354
|
reflex/istate/dynamic.py,sha256=xOQ9upZVPf6ngqcLQZ9HdAAYmoWwJ8kRFPH34Q5HTiM,91
|
|
352
355
|
reflex/istate/proxy.py,sha256=ttfcMFBNOYnRT48U2fzkyo55Gr-Z8hkoulzPr0tD5VU,1059
|
|
353
356
|
reflex/istate/storage.py,sha256=hcuXcbJcz5k8WeB5s3VuSBvbz_OIRaAVrtFRLh_MNEM,4343
|
|
354
|
-
reflex/istate/wrappers.py,sha256=
|
|
357
|
+
reflex/istate/wrappers.py,sha256=p8uuioXRbR5hperwbOJHUcWdu7hukLikQdoR7qrnKsI,909
|
|
355
358
|
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
356
|
-
reflex/middleware/hydrate_middleware.py,sha256=
|
|
359
|
+
reflex/middleware/hydrate_middleware.py,sha256=QJBEZI-4Jtn3345WgZDQ-twIbJzfiHKvULc5z9Xi0IA,1523
|
|
357
360
|
reflex/middleware/middleware.py,sha256=9eASK3MrbK1AvT2Sx5GFxXNwSuNW8_LTRGvPY1JccU4,1171
|
|
358
|
-
reflex/model.py,sha256=
|
|
359
|
-
reflex/page.py,sha256=
|
|
360
|
-
reflex/
|
|
361
|
-
reflex/
|
|
362
|
-
reflex/
|
|
363
|
-
reflex/
|
|
364
|
-
reflex/
|
|
365
|
-
reflex/testing.py,sha256=TMDTEOBRaznN43GGHeaXVz1bhcpOSjM5GBYrziPiMbQ,35421
|
|
361
|
+
reflex/model.py,sha256=yOLkxNOgi3GY9mT2E-6rkK-uLv8Av-kYSJ7I19y9JzE,17559
|
|
362
|
+
reflex/page.py,sha256=oZc3hV87CEjPPDTla8UPteUilk18x-m10Gj10cW3CM4,2416
|
|
363
|
+
reflex/reflex.py,sha256=YZrdis1e2ubQoyZBhcAbSJePxgL4UZ1h4uzIQM6qKBE,19716
|
|
364
|
+
reflex/route.py,sha256=nn_hJwtQdjiqH_dHXfqMGWKllnyPQZTSR-KWdHDhoOs,4210
|
|
365
|
+
reflex/state.py,sha256=W6JeXxj9p5EgtpSAbnpOqTH0liOVZykzt6Nu8A10Nvw,139638
|
|
366
|
+
reflex/style.py,sha256=LXQjo6YhmdqUA59dV9OUxWuScyuYEqnE0rbWYkZ_ogI,13277
|
|
367
|
+
reflex/testing.py,sha256=iJ41rsJAzkS_poOw-ztlCGHbO2tEihBNRhoBhjKDTx4,35645
|
|
366
368
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
367
|
-
reflex/utils/build.py,sha256=
|
|
368
|
-
reflex/utils/codespaces.py,sha256=
|
|
369
|
-
reflex/utils/compat.py,sha256=
|
|
370
|
-
reflex/utils/console.py,sha256=
|
|
371
|
-
reflex/utils/exceptions.py,sha256=
|
|
372
|
-
reflex/utils/exec.py,sha256=
|
|
373
|
-
reflex/utils/export.py,sha256=
|
|
374
|
-
reflex/utils/format.py,sha256=
|
|
375
|
-
reflex/utils/imports.py,sha256=
|
|
376
|
-
reflex/utils/lazy_loader.py,sha256
|
|
369
|
+
reflex/utils/build.py,sha256=5S8zQYiSp2czardXzwY060qScxNDiYWabUzs8elQivE,8522
|
|
370
|
+
reflex/utils/codespaces.py,sha256=TzDK--pHwP4r8Nzl0iB_8r-cOFmmL6nHfZ9xRQHA-KY,2754
|
|
371
|
+
reflex/utils/compat.py,sha256=aSJH_M6iomgHPQ4onQ153xh1MWqPi3HSYDzE68N6gZM,2635
|
|
372
|
+
reflex/utils/console.py,sha256=UeapvxGOcISv77tylHxech5F5R53mmNk4cnwcTseD8Q,8948
|
|
373
|
+
reflex/utils/exceptions.py,sha256=2EaudZU2ZxDbN50w5thWOllEXPz_eeuKA0zH5dB-zts,7409
|
|
374
|
+
reflex/utils/exec.py,sha256=bc966tpJ8rUh9J8vhZc3txLGp8nAdmUCn76IKLmY1hU,16066
|
|
375
|
+
reflex/utils/export.py,sha256=wsyC6Atsu8LBZlrX0PhjnisMwhFycf4a3WH8DG1dam0,2567
|
|
376
|
+
reflex/utils/format.py,sha256=h-ULvZoz7QkMlK1DT1M3E2XehGVMV3CaJGpVX7qcpZg,19871
|
|
377
|
+
reflex/utils/imports.py,sha256=CreBXamunK4I8BcBY-ET0P3kHLDZim1hV8ESoOBkOwo,3899
|
|
378
|
+
reflex/utils/lazy_loader.py,sha256=-3DcwIqHNft2fb1ikgDYAMiEwNfbiWfrTBAf1gEVX2o,1367
|
|
377
379
|
reflex/utils/net.py,sha256=0Yd9OLK8R_px2sqnqrDkTky6hYHtG2pEDvvilOjDfjc,1219
|
|
378
|
-
reflex/utils/path_ops.py,sha256=
|
|
379
|
-
reflex/utils/prerequisites.py,sha256=
|
|
380
|
-
reflex/utils/processes.py,sha256=
|
|
381
|
-
reflex/utils/pyi_generator.py,sha256=
|
|
380
|
+
reflex/utils/path_ops.py,sha256=iX92VuUD0xu0FTtF8_azWELF33n9P6C0mOT0WFfThCw,6137
|
|
381
|
+
reflex/utils/prerequisites.py,sha256=z8UPkhQAuKYbdlypkO5znS2Y6MYSt2HMe3_EB85UwR8,65627
|
|
382
|
+
reflex/utils/processes.py,sha256=h_vXmQdInVCaCQ1cGgIQd4x5CbzYRSFy6n1U4iWkMy8,13729
|
|
383
|
+
reflex/utils/pyi_generator.py,sha256=ogouoVuZzXFVmSjQvb6byBwrnhdGbdNK5kzGLHbcU_E,41220
|
|
382
384
|
reflex/utils/redir.py,sha256=bmQGAgoNWwySeLRQTpoMpmKInwIOCW77wkXT61fwcj8,1868
|
|
383
|
-
reflex/utils/registry.py,sha256=
|
|
384
|
-
reflex/utils/serializers.py,sha256=
|
|
385
|
-
reflex/utils/telemetry.py,sha256=
|
|
386
|
-
reflex/utils/types.py,sha256=
|
|
385
|
+
reflex/utils/registry.py,sha256=bseD0bIO8b3pctHKpD5J2MRdDzcf7eWKtHEZVutVNJ0,1401
|
|
386
|
+
reflex/utils/serializers.py,sha256=xQjEiIqZS0tjxuEjqETXikePzSAbCxC6g_JnzNYk2s4,12554
|
|
387
|
+
reflex/utils/telemetry.py,sha256=PfbtZKtAaP_ufad5ZNqJYrtvkjDrqEFUGy9We9-B0pg,5804
|
|
388
|
+
reflex/utils/types.py,sha256=kZHLmRibRnTRex5cbjlnFqsYpi2CSbfsfOQ_vS70cxU,27124
|
|
387
389
|
reflex/vars/__init__.py,sha256=2Kv6Oh9g3ISZFESjL1al8KiO7QBZUXmLKGMCBsP-DoY,1243
|
|
388
|
-
reflex/vars/base.py,sha256=
|
|
389
|
-
reflex/vars/datetime.py,sha256=
|
|
390
|
-
reflex/vars/
|
|
391
|
-
reflex/vars/
|
|
392
|
-
reflex/vars/
|
|
393
|
-
reflex/vars/
|
|
394
|
-
reflex
|
|
395
|
-
reflex-0.
|
|
396
|
-
reflex-0.
|
|
397
|
-
reflex-0.
|
|
398
|
-
reflex-0.
|
|
390
|
+
reflex/vars/base.py,sha256=59G0PWBvYlkYf44Pehc3BknPyy7qtjtHCgmGo8qSJjM,98970
|
|
391
|
+
reflex/vars/datetime.py,sha256=6j63p5uZiWLldiIl3VVh9jWghuW1_GyBevyy2b4rdr4,5803
|
|
392
|
+
reflex/vars/dep_tracking.py,sha256=kluvF4Pfbpdqf0GcpmYHjT1yP-D1erAzaSQP6qIxjB0,13846
|
|
393
|
+
reflex/vars/function.py,sha256=v2W5JHgCK9Afu2mobFeoj03G6tbih1Y-wM7LQBwA9vU,14777
|
|
394
|
+
reflex/vars/number.py,sha256=rVybcAoMOOFsWAbA_BZN3GVx9p4W_YPLHVYRCJqti04,27861
|
|
395
|
+
reflex/vars/object.py,sha256=bolalu-v36VT_vwVrX5dh_o6x_zkvAUZlYZbrDrNHag,14841
|
|
396
|
+
reflex/vars/sequence.py,sha256=GiSXbOIcoy7VSrecuBjbhg5G4QTjFV0Rcfn5T0EsecA,52032
|
|
397
|
+
reflex-0.7.0a1.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
398
|
+
reflex-0.7.0a1.dist-info/METADATA,sha256=iEJ1ShLAjshm5J8wFK_gNXuPIppu9kZeq78hRQtuHe0,12073
|
|
399
|
+
reflex-0.7.0a1.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
400
|
+
reflex-0.7.0a1.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
401
|
+
reflex-0.7.0a1.dist-info/RECORD,,
|
reflex/experimental/assets.py
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"""Helper functions for adding assets to the app."""
|
|
2
|
-
|
|
3
|
-
from typing import Optional
|
|
4
|
-
|
|
5
|
-
from reflex import assets
|
|
6
|
-
from reflex.utils import console
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
def asset(relative_filename: str, subfolder: Optional[str] = None) -> str:
|
|
10
|
-
"""DEPRECATED: use `rx.asset` with `shared=True` instead.
|
|
11
|
-
|
|
12
|
-
Add an asset to the app.
|
|
13
|
-
Place the file next to your including python file.
|
|
14
|
-
Copies the file to the app's external assets directory.
|
|
15
|
-
|
|
16
|
-
Example:
|
|
17
|
-
```python
|
|
18
|
-
rx.script(src=rx._x.asset("my_custom_javascript.js"))
|
|
19
|
-
rx.image(src=rx._x.asset("test_image.png","subfolder"))
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
Args:
|
|
23
|
-
relative_filename: The relative filename of the asset.
|
|
24
|
-
subfolder: The directory to place the asset in.
|
|
25
|
-
|
|
26
|
-
Returns:
|
|
27
|
-
The relative URL to the copied asset.
|
|
28
|
-
"""
|
|
29
|
-
console.deprecate(
|
|
30
|
-
feature_name="rx._x.asset",
|
|
31
|
-
reason="Use `rx.asset` with `shared=True` instead of `rx._x.asset`.",
|
|
32
|
-
deprecation_version="0.6.6",
|
|
33
|
-
removal_version="0.7.0",
|
|
34
|
-
)
|
|
35
|
-
return assets.asset(
|
|
36
|
-
relative_filename, shared=True, subfolder=subfolder, _stack_level=2
|
|
37
|
-
)
|