reflex 0.7.0a4__py3-none-any.whl → 0.7.1a1__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/components/reflex/radix_themes_color_mode_provider.js +3 -1
- reflex/__init__.py +1 -0
- reflex/__init__.pyi +1 -0
- reflex/app.py +251 -68
- reflex/base.py +4 -10
- reflex/compiler/compiler.py +46 -12
- reflex/compiler/templates.py +1 -2
- reflex/compiler/utils.py +23 -14
- reflex/components/base/bare.py +109 -16
- reflex/components/component.py +179 -124
- reflex/components/core/__init__.py +1 -0
- reflex/components/core/__init__.pyi +1 -0
- reflex/components/core/auto_scroll.py +111 -0
- reflex/components/core/auto_scroll.pyi +284 -0
- reflex/components/core/banner.py +35 -5
- reflex/components/core/banner.pyi +398 -36
- reflex/components/core/breakpoints.py +1 -1
- reflex/components/core/cond.py +0 -8
- reflex/components/core/foreach.py +12 -2
- reflex/components/core/html.pyi +200 -19
- reflex/components/core/match.py +4 -4
- reflex/components/core/sticky.py +4 -30
- reflex/components/core/sticky.pyi +874 -90
- reflex/components/core/upload.py +3 -5
- reflex/components/core/upload.pyi +2 -4
- reflex/components/datadisplay/code.py +36 -10
- reflex/components/datadisplay/code.pyi +1 -1
- reflex/components/datadisplay/dataeditor.py +1 -3
- reflex/components/datadisplay/dataeditor.pyi +1 -3
- reflex/components/el/elements/base.py +95 -17
- reflex/components/el/elements/base.pyi +278 -19
- reflex/components/el/elements/forms.py +124 -102
- reflex/components/el/elements/forms.pyi +2787 -365
- reflex/components/el/elements/inline.py +24 -15
- reflex/components/el/elements/inline.pyi +5655 -546
- reflex/components/el/elements/media.py +79 -95
- reflex/components/el/elements/media.pyi +5167 -565
- reflex/components/el/elements/metadata.py +19 -17
- reflex/components/el/elements/metadata.pyi +841 -89
- reflex/components/el/elements/other.py +3 -5
- reflex/components/el/elements/other.pyi +1404 -137
- reflex/components/el/elements/scripts.py +10 -13
- reflex/components/el/elements/scripts.pyi +634 -65
- reflex/components/el/elements/sectioning.pyi +3001 -286
- reflex/components/el/elements/tables.py +14 -35
- reflex/components/el/elements/tables.pyi +2029 -218
- reflex/components/el/elements/typography.py +10 -13
- reflex/components/el/elements/typography.pyi +3014 -297
- reflex/components/lucide/icon.py +22 -6
- reflex/components/markdown/markdown.py +30 -10
- reflex/components/markdown/markdown.pyi +3 -2
- reflex/components/plotly/plotly.py +1 -3
- reflex/components/plotly/plotly.pyi +1 -3
- reflex/components/radix/primitives/form.pyi +624 -93
- reflex/components/radix/themes/color_mode.py +1 -1
- reflex/components/radix/themes/color_mode.pyi +213 -31
- reflex/components/radix/themes/components/alert_dialog.pyi +199 -18
- reflex/components/radix/themes/components/badge.pyi +199 -18
- reflex/components/radix/themes/components/button.pyi +213 -31
- reflex/components/radix/themes/components/callout.pyi +1000 -95
- reflex/components/radix/themes/components/card.pyi +199 -18
- reflex/components/radix/themes/components/context_menu.py +79 -1
- reflex/components/radix/themes/components/context_menu.pyi +320 -1
- reflex/components/radix/themes/components/dialog.pyi +199 -18
- reflex/components/radix/themes/components/hover_card.pyi +199 -18
- reflex/components/radix/themes/components/icon_button.pyi +213 -31
- reflex/components/radix/themes/components/inset.pyi +199 -18
- reflex/components/radix/themes/components/popover.pyi +199 -18
- reflex/components/radix/themes/components/table.pyi +1437 -154
- reflex/components/radix/themes/components/text_area.py +2 -2
- reflex/components/radix/themes/components/text_area.pyi +201 -20
- reflex/components/radix/themes/components/text_field.py +1 -1
- reflex/components/radix/themes/components/text_field.pyi +444 -88
- reflex/components/radix/themes/layout/box.pyi +200 -19
- reflex/components/radix/themes/layout/center.pyi +199 -18
- reflex/components/radix/themes/layout/container.pyi +199 -18
- reflex/components/radix/themes/layout/flex.pyi +199 -18
- reflex/components/radix/themes/layout/grid.pyi +199 -18
- reflex/components/radix/themes/layout/list.pyi +604 -57
- reflex/components/radix/themes/layout/section.pyi +199 -18
- reflex/components/radix/themes/layout/spacer.pyi +199 -18
- reflex/components/radix/themes/layout/stack.pyi +597 -54
- reflex/components/radix/themes/typography/blockquote.pyi +200 -19
- reflex/components/radix/themes/typography/code.pyi +199 -18
- reflex/components/radix/themes/typography/heading.pyi +199 -18
- reflex/components/radix/themes/typography/link.pyi +238 -28
- reflex/components/radix/themes/typography/text.pyi +1394 -127
- reflex/components/react_player/react_player.py +1 -1
- reflex/components/react_player/react_player.pyi +1 -3
- reflex/components/sonner/toast.py +19 -1
- reflex/components/sonner/toast.pyi +10 -1
- reflex/components/tags/iter_tag.py +4 -0
- reflex/components/tags/tag.py +3 -3
- reflex/config.py +187 -28
- reflex/constants/__init__.py +2 -0
- reflex/constants/base.py +6 -0
- reflex/constants/compiler.py +9 -0
- reflex/constants/event.py +1 -0
- reflex/constants/installer.py +4 -5
- reflex/constants/utils.py +1 -3
- reflex/event.py +7 -16
- reflex/experimental/layout.pyi +597 -54
- reflex/py.typed +0 -0
- reflex/reflex.py +44 -48
- reflex/state.py +49 -44
- reflex/style.py +6 -4
- reflex/testing.py +2 -0
- reflex/utils/build.py +12 -0
- reflex/utils/console.py +4 -0
- reflex/utils/decorator.py +25 -0
- reflex/utils/exec.py +92 -34
- reflex/utils/format.py +35 -6
- reflex/utils/path_ops.py +32 -1
- reflex/utils/prerequisites.py +54 -10
- reflex/utils/processes.py +12 -13
- reflex/utils/serializers.py +20 -43
- reflex/utils/telemetry.py +4 -15
- reflex/utils/types.py +36 -66
- reflex/vars/base.py +53 -76
- reflex/vars/function.py +17 -5
- reflex/vars/number.py +1 -1
- reflex/vars/sequence.py +80 -4
- {reflex-0.7.0a4.dist-info → reflex-0.7.1a1.dist-info}/METADATA +4 -5
- {reflex-0.7.0a4.dist-info → reflex-0.7.1a1.dist-info}/RECORD +127 -123
- {reflex-0.7.0a4.dist-info → reflex-0.7.1a1.dist-info}/LICENSE +0 -0
- {reflex-0.7.0a4.dist-info → reflex-0.7.1a1.dist-info}/WHEEL +0 -0
- {reflex-0.7.0a4.dist-info → reflex-0.7.1a1.dist-info}/entry_points.txt +0 -0
|
@@ -23,7 +23,7 @@ reflex/.templates/jinja/web/tailwind.config.js.jinja2,sha256=uZMIvtL94OZh6h8zsdu
|
|
|
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=iDtxwcalhArYX0jhcW8qv7TDVgoiD8rbeLezi9X4lf4,1637
|
|
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
|
|
@@ -36,29 +36,29 @@ reflex/.templates/web/utils/helpers/paste.js,sha256=ef30HsR83jRzzvZnl8yV79yqFP8T
|
|
|
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
38
|
reflex/.templates/web/utils/state.js,sha256=Xd6nlwJ0B8FXvWbEm0Csv-CpJo7NiFBUO03oByQgaak,29766
|
|
39
|
-
reflex/__init__.py,sha256=
|
|
40
|
-
reflex/__init__.pyi,sha256=
|
|
39
|
+
reflex/__init__.py,sha256=64HB9b6MKesl3Yv6aZMsozdMKKpgnxirKk-aeN45UYY,10341
|
|
40
|
+
reflex/__init__.pyi,sha256=j4ZkO-mKKw5dFBhJVbaOg7AlncO-JCckV2cHENPiLG0,11303
|
|
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=fUtAJjxVMdRfiVFvLPq-ojfGe_dbDGqpCeB4H3I1h60,68986
|
|
44
44
|
reflex/app_mixins/__init__.py,sha256=Oegz3-gZLP9p2OAN5ALNbsgxuNQfS6lGZgQA8cc-9mQ,137
|
|
45
45
|
reflex/app_mixins/lifespan.py,sha256=Xs5KiidoyO921oaBuEg7zaR8B1_SPYDZLouel6u9PRo,3298
|
|
46
46
|
reflex/app_mixins/middleware.py,sha256=lB8I67SEbqcJhp3aqMLZFIZekCYKeMby-Ph2sedIYJI,3349
|
|
47
47
|
reflex/app_mixins/mixin.py,sha256=si0Pa0U1EtJc-a6iZntqU9B7_NrPILwrGFxk9mKHBCE,317
|
|
48
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=cuY7nucxP82mE9T9L2KdBoKw7ycZwH3pODe9JSJVSLM,3982
|
|
51
51
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
52
|
-
reflex/compiler/compiler.py,sha256=
|
|
53
|
-
reflex/compiler/templates.py,sha256=
|
|
54
|
-
reflex/compiler/utils.py,sha256=
|
|
52
|
+
reflex/compiler/compiler.py,sha256=90f2VgGrfQCJ28bIgk_kABrxYgXHB-biha6o7BAA3rA,21939
|
|
53
|
+
reflex/compiler/templates.py,sha256=NX3YUMVGGyDsy2JuDv-AmklMM0pKJHLPsIpdqamgqRQ,5854
|
|
54
|
+
reflex/compiler/utils.py,sha256=uWoLSLyhkLXECmio2a5ErRkwvRrtcBkVpPdK5E3_O5E,16443
|
|
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=9bDJa0lirUFyG32TdhnpugW5hj-vef3NwotVpyhKDxM,1802
|
|
61
|
-
reflex/components/base/bare.py,sha256
|
|
61
|
+
reflex/components/base/bare.py,sha256=-0bKi5Lkn4UZTZUp1oblayzv4KRzD-Yrn_3czGyKKW8,7234
|
|
62
62
|
reflex/components/base/body.py,sha256=QHOGMr98I6bUXsQKXcY0PzJdhopH6gQ8AESrDSgJV6I,151
|
|
63
63
|
reflex/components/base/body.pyi,sha256=5GbDQyfPefw9I2qgeV9IQ2k6ZcOxTyFzURqbNiRgJys,2196
|
|
64
64
|
reflex/components/base/document.py,sha256=_Cl9iMXwXdxGMrCLAT20v35FX3MGtbqh2dfWenDtSKc,583
|
|
@@ -77,36 +77,38 @@ reflex/components/base/script.py,sha256=OZ2ZOWiEmzHRC0-OgH4qj_Dv6X-JSsX5OgaqLXld
|
|
|
77
77
|
reflex/components/base/script.pyi,sha256=ZhAUiGvzN6WvtO2ml8bN3Oq9s20wxtgPaAKrGjp7umw,3613
|
|
78
78
|
reflex/components/base/strict_mode.py,sha256=_Rl2uGzL8gXTANOpoSU7uxsUQRH5JeTk2EIceWJJa5E,251
|
|
79
79
|
reflex/components/base/strict_mode.pyi,sha256=3JSap5xIYQqzbhO_3crfbuwl2J9DXGSWVoBLOeMBiWU,2215
|
|
80
|
-
reflex/components/component.py,sha256=
|
|
81
|
-
reflex/components/core/__init__.py,sha256=
|
|
82
|
-
reflex/components/core/__init__.pyi,sha256=
|
|
83
|
-
reflex/components/core/
|
|
84
|
-
reflex/components/core/
|
|
85
|
-
reflex/components/core/
|
|
80
|
+
reflex/components/component.py,sha256=nBsxmSlpy7W_50nWzAKaY_P5MXkKSriA1dirSSX-ex0,86360
|
|
81
|
+
reflex/components/core/__init__.py,sha256=1Z5MUA5wRPi4w7TXzRFyCfxbG8lUMqs29buWHIGG-CU,1321
|
|
82
|
+
reflex/components/core/__init__.pyi,sha256=HDZSx-RIBpryukJo8ECdxSnZwpThP0IR2LV66h1XyJ4,2046
|
|
83
|
+
reflex/components/core/auto_scroll.py,sha256=9-9Xj47ApLYE3vOiCwxY7VlUAaoRMf-U2Gi4xHVszRA,3390
|
|
84
|
+
reflex/components/core/auto_scroll.pyi,sha256=Gg8NcSI_Ku2m3_cGAi8-T9sVWpAiDB2PuJVcyz3PQFw,10621
|
|
85
|
+
reflex/components/core/banner.py,sha256=WrZ6lHpw30F53CnAVhMT3AJXLSVLzPOW35FsOOs734Q,18435
|
|
86
|
+
reflex/components/core/banner.pyi,sha256=p7ew6UtPXo7iuR1fWeJmxnUL3I262UCtf44FBCcO91E,30952
|
|
87
|
+
reflex/components/core/breakpoints.py,sha256=oCY2eBaM12hvbMImhc72wX-2tfIGT0oZh1R0NFY1ZWs,2782
|
|
86
88
|
reflex/components/core/client_side_routing.py,sha256=z2WD2jT9U-xDOyHTLjCs0mf5HkwSEJpMmUeXzl4S7ZU,1897
|
|
87
89
|
reflex/components/core/client_side_routing.pyi,sha256=iSugaj073JtHey6oUOj5dGgDHB5PoyOHC6A_r_R5N9Q,4252
|
|
88
90
|
reflex/components/core/clipboard.py,sha256=knmLnwLx5c3iqejsCUw3z8pIBOTgBunr6LjJxxa8MNA,3372
|
|
89
91
|
reflex/components/core/clipboard.pyi,sha256=wsUnimvf8skgSVyuUgYncERPA8untZ3swYWfraKlh-Q,3130
|
|
90
92
|
reflex/components/core/colors.py,sha256=-hzVGLEq3TiqroqzMi_YzGBCPXMvkNsen3pS_NzIQNk,590
|
|
91
|
-
reflex/components/core/cond.py,sha256=
|
|
93
|
+
reflex/components/core/cond.py,sha256=a3ICVQoIT-_Md1LTpXcMhykdCGdaC-R28YkSLuUkDE0,5728
|
|
92
94
|
reflex/components/core/debounce.py,sha256=pRrjHcKz9U0V1bIypuC6V67KzOl0VZr91k8udUGtJlc,4926
|
|
93
95
|
reflex/components/core/debounce.pyi,sha256=5u-sW2EBxws8EPfLCYpNb0r8k5fh6hqpOTt1TXgZc4I,2986
|
|
94
|
-
reflex/components/core/foreach.py,sha256=
|
|
96
|
+
reflex/components/core/foreach.py,sha256=ZasnJB4rEx8FCuV3soFRuCrM2Ll2OHBdqNPyz_UL5kQ,5722
|
|
95
97
|
reflex/components/core/html.py,sha256=Yqe48AJilMQlXEq6snbdHIVh-JDChvOBdU2ZFCnetk8,1324
|
|
96
|
-
reflex/components/core/html.pyi,sha256=
|
|
98
|
+
reflex/components/core/html.pyi,sha256=oETE4IZBvVHvRksUXtG6Y-jHoyh7WwPfmaQxZHPtpDE,10707
|
|
97
99
|
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
98
|
-
reflex/components/core/match.py,sha256=
|
|
100
|
+
reflex/components/core/match.py,sha256=Yg9Ab3fWXGfUUGyJmhDj4eeA4wYSz5WKqUJSdUYKpqk,9253
|
|
99
101
|
reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ2ty4wAc,1911
|
|
100
|
-
reflex/components/core/sticky.py,sha256=
|
|
101
|
-
reflex/components/core/sticky.pyi,sha256=
|
|
102
|
-
reflex/components/core/upload.py,sha256=
|
|
103
|
-
reflex/components/core/upload.pyi,sha256=
|
|
102
|
+
reflex/components/core/sticky.py,sha256=2B3TxrwG2Rtp_lv1VkMOIF2bqSiT7qYGbqbiZiMKxKY,3856
|
|
103
|
+
reflex/components/core/sticky.pyi,sha256=3q42sosoInrfWKhHUluC7aNe19xlsCM_M4xsw_ayXSs,42113
|
|
104
|
+
reflex/components/core/upload.py,sha256=_g4aAniZax5vX5uO71WGT8LLNWU-ModgGeP8HRSVrvA,11931
|
|
105
|
+
reflex/components/core/upload.pyi,sha256=1ZmdhOO0usU7GrjFDnqJj1vNvwf-_WIrWmJ41199Xpg,14983
|
|
104
106
|
reflex/components/datadisplay/__init__.py,sha256=L8pWWKNHWdUD2fbZRoEKjd_8c_hpDdGYO463hwkoIi4,438
|
|
105
107
|
reflex/components/datadisplay/__init__.pyi,sha256=rYMwO_X4NvUex6IL2MMTnhdFRp8Lz5zweMwXaW_l7nc,588
|
|
106
|
-
reflex/components/datadisplay/code.py,sha256=
|
|
107
|
-
reflex/components/datadisplay/code.pyi,sha256=
|
|
108
|
-
reflex/components/datadisplay/dataeditor.py,sha256=
|
|
109
|
-
reflex/components/datadisplay/dataeditor.pyi,sha256=
|
|
108
|
+
reflex/components/datadisplay/code.py,sha256=VZ-yf7ghrtlCQWmeuvrjFFY-ms9tG39-PFPOrz05Yrg,14720
|
|
109
|
+
reflex/components/datadisplay/code.pyi,sha256=qcpJscvfCsawuyMtUbexVp8wbM-XQ4IhiYKw2VkQqZg,50368
|
|
110
|
+
reflex/components/datadisplay/dataeditor.py,sha256=RY8R_6gUIR1mG2sIYcUVEEsZDV15YABGpaGvWBeuJnY,13644
|
|
111
|
+
reflex/components/datadisplay/dataeditor.pyi,sha256=0BXraugpFV3ZhO0DMZ0orrYR4OlqXoY5eY1ragFSHOI,13218
|
|
110
112
|
reflex/components/datadisplay/logo.py,sha256=esYECFQAZWlkM1KNTMKPEFCCzSyUF_0WBzUkKJYe8nk,2017
|
|
111
113
|
reflex/components/datadisplay/shiki_code_block.py,sha256=yctAUYXioWpTzI63FZWVR7Y8h6LKw5Tr87sSIRsJeTU,23810
|
|
112
114
|
reflex/components/datadisplay/shiki_code_block.pyi,sha256=1oM0zNLXyDAQHTDcZybS3nFN6QURbvd_cgv_eN5OqnY,70327
|
|
@@ -121,36 +123,36 @@ reflex/components/el/element.py,sha256=CFUa_6Dz4WsIdP11MzqlW9GBDhJcSU6lJSmWA9zap
|
|
|
121
123
|
reflex/components/el/element.pyi,sha256=7vL65KBHeb3BNrSZPbmJUQLAkO_1QariMpNqndBVOsI,2203
|
|
122
124
|
reflex/components/el/elements/__init__.py,sha256=Slx-rO0DOJeHTUbhocKyYm2wb570MJOXnRf7AI7uxjk,2342
|
|
123
125
|
reflex/components/el/elements/__init__.pyi,sha256=0D3Iw6gktb0vio95VVR69WNY7HXwULQdsy8YMIam9xk,9900
|
|
124
|
-
reflex/components/el/elements/base.py,sha256=
|
|
125
|
-
reflex/components/el/elements/base.pyi,sha256=
|
|
126
|
-
reflex/components/el/elements/forms.py,sha256=
|
|
127
|
-
reflex/components/el/elements/forms.pyi,sha256=
|
|
128
|
-
reflex/components/el/elements/inline.py,sha256=
|
|
129
|
-
reflex/components/el/elements/inline.pyi,sha256=
|
|
130
|
-
reflex/components/el/elements/media.py,sha256=
|
|
131
|
-
reflex/components/el/elements/media.pyi,sha256=
|
|
132
|
-
reflex/components/el/elements/metadata.py,sha256=
|
|
133
|
-
reflex/components/el/elements/metadata.pyi,sha256=
|
|
134
|
-
reflex/components/el/elements/other.py,sha256=
|
|
135
|
-
reflex/components/el/elements/other.pyi,sha256=
|
|
136
|
-
reflex/components/el/elements/scripts.py,sha256=
|
|
137
|
-
reflex/components/el/elements/scripts.pyi,sha256=
|
|
126
|
+
reflex/components/el/elements/base.py,sha256=4jnwyCQUHvWcIfwiIWVCiIC_jbwZlkAiOgx73t7tdw8,3075
|
|
127
|
+
reflex/components/el/elements/base.pyi,sha256=MeeUy7w--Kj0sN6aVYp7Dzwjr8gIsMo4F_gyNsp_fYk,11806
|
|
128
|
+
reflex/components/el/elements/forms.py,sha256=krW6WH5jDA7Tzw-ARyqC6wX04oHi3xIaCmrdlSbINdo,20264
|
|
129
|
+
reflex/components/el/elements/forms.pyi,sha256=8e4dTbxQ0gS2Y4OpKjO71KSMMbsK0Y_w332AU2Qryvc,151309
|
|
130
|
+
reflex/components/el/elements/inline.py,sha256=21uiR3ffyxEfD0ZvgmnGRr5p-gppYuUH4QnHRG2nUuw,4088
|
|
131
|
+
reflex/components/el/elements/inline.pyi,sha256=JXWKd46AVQTaw7H1SdEkyiO0-anrsFU8pGaJCkQTxSo,282251
|
|
132
|
+
reflex/components/el/elements/media.py,sha256=LxZQDaozrFx-yWn05inVtEqU_li1_GPB4kbiEJd7mI8,13065
|
|
133
|
+
reflex/components/el/elements/media.pyi,sha256=xdB1RC2XhTdV2XlTibGhB3sFMPPpobLpT6mh2q1rriE,268807
|
|
134
|
+
reflex/components/el/elements/metadata.py,sha256=dFNXi8Mt7OhEvAcQAU_uKNXx8MRw1HycyqFTMaSnEXs,2313
|
|
135
|
+
reflex/components/el/elements/metadata.pyi,sha256=ClMsw6xTxAhVClyKplsAc0737vSrjt9PjZiVFwM9_WE,46828
|
|
136
|
+
reflex/components/el/elements/other.py,sha256=WON35QviPNYsBeLQTNbeN7a6m6ixLYIVa4WsDzo9YBY,1378
|
|
137
|
+
reflex/components/el/elements/other.pyi,sha256=32gKLWO9hG58Qz-GBBxcEf2jzbM5cq2faXvmJvhaVTQ,70671
|
|
138
|
+
reflex/components/el/elements/scripts.py,sha256=7YmYlRSWH_dkBhev4ePUDEDqvQWMPWOWmELXKsJxTkk,1223
|
|
139
|
+
reflex/components/el/elements/scripts.pyi,sha256=Hm_DpDrJAgBQIyEKxCx3-QGOgei39G1u5KnmrtAMAp4,32454
|
|
138
140
|
reflex/components/el/elements/sectioning.py,sha256=wVkR35dt4DMHKcJN5f0aglH16xSZzO9-Weesv6bQ_CM,1516
|
|
139
|
-
reflex/components/el/elements/sectioning.pyi,sha256=
|
|
140
|
-
reflex/components/el/elements/tables.py,sha256=
|
|
141
|
-
reflex/components/el/elements/tables.pyi,sha256=
|
|
142
|
-
reflex/components/el/elements/typography.py,sha256=
|
|
143
|
-
reflex/components/el/elements/typography.pyi,sha256=
|
|
141
|
+
reflex/components/el/elements/sectioning.pyi,sha256=wmRibc81N-fQ4AfsOXrn3Wg301jLJUKMyFxFr-eOADA,149929
|
|
142
|
+
reflex/components/el/elements/tables.py,sha256=Rt-C07s39TQm_dHSMaly2J7yD0OZhx9q6G2k5k2IkMo,2176
|
|
143
|
+
reflex/components/el/elements/tables.pyi,sha256=mVLEfupDUDYv0eECXZMzoF2WoBV6BP6FCnm_y2F-QYk,102131
|
|
144
|
+
reflex/components/el/elements/typography.py,sha256=WJZ-FFeHG22loZKGR3MH4YrkqjyzX4Mzw6kZEBOJfq4,2384
|
|
145
|
+
reflex/components/el/elements/typography.pyi,sha256=I67RXQhC_o_5wqjkkT3geVbAjS6MMZfnKdBPp6TzBAc,151206
|
|
144
146
|
reflex/components/gridjs/__init__.py,sha256=xJwDm1AZ70L5-t9LLqZwGUtDpijbf1KuMYDT-j8g3pM,88
|
|
145
147
|
reflex/components/gridjs/datatable.py,sha256=Fjd605rDMvZinMfWjefUwv_eOr33OeWvalOrQWkFhY4,4202
|
|
146
148
|
reflex/components/gridjs/datatable.pyi,sha256=Juv16lMY60cWqSjM7RzPHQIo6MhUYiv9TrcEuulyG8A,4955
|
|
147
149
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
148
150
|
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
149
|
-
reflex/components/lucide/icon.py,sha256=
|
|
151
|
+
reflex/components/lucide/icon.py,sha256=bn_YCppah5C6xsy3EheqcfLncxRabAZPqCYajooAj8Q,33775
|
|
150
152
|
reflex/components/lucide/icon.pyi,sha256=lRxdsyzcaiE80vGvmQtd-UXIPFx-56bIngIa-W76URw,36039
|
|
151
153
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
152
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
153
|
-
reflex/components/markdown/markdown.pyi,sha256=
|
|
154
|
+
reflex/components/markdown/markdown.py,sha256=1_s86B4rGc7n6XJyO-XZJMppxqfF44mFsUVzJtvPVpQ,16192
|
|
155
|
+
reflex/components/markdown/markdown.pyi,sha256=vHq9KRjvZYareB25xjLq8rq4U29fZm8dBPLZrZTOv78,4178
|
|
154
156
|
reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
|
|
155
157
|
reflex/components/moment/moment.py,sha256=bSFs3h5VAp6AhnkmKPAQzU8VKMLVb_IR00iJ9Zq3JHo,4138
|
|
156
158
|
reflex/components/moment/moment.pyi,sha256=6AIaKCUt4zs92OQ6lTq6nejXPAUzHIx2Jtv_5iT4W6s,6157
|
|
@@ -164,8 +166,8 @@ reflex/components/next/link.pyi,sha256=E63U9yoAHdtlvucg-mX1O58j4uWpIW8433DFxFH6Y
|
|
|
164
166
|
reflex/components/next/video.py,sha256=GngxgHvAfGwRHkPUBNp6_GfGarP5mMN6KFA_-VizDOI,735
|
|
165
167
|
reflex/components/next/video.pyi,sha256=OqvLHkAzgF7-7lb7uaE-8Mfg60XZXdkU4jFnUMapXi4,2364
|
|
166
168
|
reflex/components/plotly/__init__.py,sha256=6B_woBJhkrVA9O_AbOTbsA_SxWsqjicYHmLA9FLjGfU,650
|
|
167
|
-
reflex/components/plotly/plotly.py,sha256=
|
|
168
|
-
reflex/components/plotly/plotly.pyi,sha256=
|
|
169
|
+
reflex/components/plotly/plotly.py,sha256=aOWqP1bCQbnChWsgT6rEcM4u1WyYBZS_naU4crPgApY,15313
|
|
170
|
+
reflex/components/plotly/plotly.pyi,sha256=CruuD7UIgmySFtSfMwP91xBGPXX5UCzfgHTrGzi3s5M,47858
|
|
169
171
|
reflex/components/props.py,sha256=8F2ZNeF16BDiTh-E4F-U_vks41BMJgmkTM7xbjGvfOA,2593
|
|
170
172
|
reflex/components/radix/__init__.py,sha256=fRsLvIO3MrTtPOXtmnxYDB9phvzlcbyB_utgpafYMho,474
|
|
171
173
|
reflex/components/radix/__init__.pyi,sha256=YpWw_k35yv_Yq_0RZNCb52fJZ3dANWAnQllhVoVCWEE,3988
|
|
@@ -178,7 +180,7 @@ reflex/components/radix/primitives/base.pyi,sha256=1X2AkFLvVsRPRierX-144K8RO6UEy
|
|
|
178
180
|
reflex/components/radix/primitives/drawer.py,sha256=k7qZ7cXV3fgPP8XEF7X2oATv3_144-XWqh-mG4YcdCM,9247
|
|
179
181
|
reflex/components/radix/primitives/drawer.pyi,sha256=8SIwf7zouigJC3zlzQzY2GFz_cA3QDCapPVBFDEkr68,28950
|
|
180
182
|
reflex/components/radix/primitives/form.py,sha256=JS632HHaqPoMbZ-sD4wldj8SXGgtU_UkJusG9W56NvE,4832
|
|
181
|
-
reflex/components/radix/primitives/form.pyi,sha256=
|
|
183
|
+
reflex/components/radix/primitives/form.pyi,sha256=XZAlbfqHRfXSlBfPfrBVVv4JIrIqqHU1PUrxb446_1o,52614
|
|
182
184
|
reflex/components/radix/primitives/progress.py,sha256=bEqG-W8YwFfI8dKQUVsa5j4S7BfRC3SbWqzpWYEq1tM,4011
|
|
183
185
|
reflex/components/radix/primitives/progress.pyi,sha256=1bK7D2sNVHoROObnuFiLjCxAUvfqJ3VA5IyyIxMFeMY,17683
|
|
184
186
|
reflex/components/radix/primitives/slider.py,sha256=DLquoUEXVRH9xSmoaWf3PghT9YZ5O_wj7pK5_00RR7M,4999
|
|
@@ -187,46 +189,46 @@ reflex/components/radix/themes/__init__.py,sha256=3ASzR_OrjkLXZ6CksGKIQPOcyYZ984
|
|
|
187
189
|
reflex/components/radix/themes/__init__.pyi,sha256=RVeS7TipR51MgmsWJStZwh4QxKBtOMtCguBtVbUJqX8,476
|
|
188
190
|
reflex/components/radix/themes/base.py,sha256=WNv2RfriXqfdTr9AIHCjLN7Tr_yYFGAk7WPUAsna2SU,8781
|
|
189
191
|
reflex/components/radix/themes/base.pyi,sha256=ZYVIKldh9_pH_agY7fypFHe-PXr-hArYkm-Dtnt_aw4,26815
|
|
190
|
-
reflex/components/radix/themes/color_mode.py,sha256=
|
|
191
|
-
reflex/components/radix/themes/color_mode.pyi,sha256=
|
|
192
|
+
reflex/components/radix/themes/color_mode.py,sha256=ClYrpLB9OHb5vD8rIMLBoR4iUD5-rB0WRg65ZRT3XhU,6563
|
|
193
|
+
reflex/components/radix/themes/color_mode.pyi,sha256=nBWMKKLG7nr8f1SQwS8qamTN_u5cwSu7VAOq4qC9BYo,24662
|
|
192
194
|
reflex/components/radix/themes/components/__init__.py,sha256=fzc5ghmmbIQ8yaxKQQY83TINb6k2uVPX-wddyTDlQx8,423
|
|
193
195
|
reflex/components/radix/themes/components/__init__.pyi,sha256=-yTF7ROfG_qxrRL-lmCIidPJtFY5StumKB7VfWsDqSw,1946
|
|
194
196
|
reflex/components/radix/themes/components/alert_dialog.py,sha256=UDSU4eHsJ-O40Zc1myVnZn3KkJmL1ByOeyu71h6M7PA,3271
|
|
195
|
-
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=
|
|
197
|
+
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=HnEbQ--7v1i1Nwiay-_BfS7n8BUmdRHSLIC20T85iBw,23174
|
|
196
198
|
reflex/components/radix/themes/components/aspect_ratio.py,sha256=puyjBq6NLVpRPp_Zn2x0mSI8ipOIBlUa7fcP1btblx0,406
|
|
197
199
|
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=cnqOys0CUmGQKSH81ugJJGjhvx_qYiA_jmd894C6FgY,2571
|
|
198
200
|
reflex/components/radix/themes/components/avatar.py,sha256=MGaTj0AlIlE6L-waXnedRxgUc-aR_xopnjVvPKMp7nY,1047
|
|
199
201
|
reflex/components/radix/themes/components/avatar.pyi,sha256=BpJg0TcVjVs4DEXXBc4d2xGHFX2DFEYvfvRKpyL5qw8,5861
|
|
200
202
|
reflex/components/radix/themes/components/badge.py,sha256=A5wcKVi7hcjBGhzqNmOngAbIu5ZB1esYGtgnaszN1eg,905
|
|
201
|
-
reflex/components/radix/themes/components/badge.pyi,sha256=
|
|
203
|
+
reflex/components/radix/themes/components/badge.pyi,sha256=7cp5UHArYCDUSgoI-AGHBFPCPK40FTYLfTSaSgRo2eg,13704
|
|
202
204
|
reflex/components/radix/themes/components/button.py,sha256=6bYyYTbewA-fxooZCsLw3Hz_8qfHxAZh5V_4GOSsYlc,1226
|
|
203
|
-
reflex/components/radix/themes/components/button.pyi,sha256=
|
|
205
|
+
reflex/components/radix/themes/components/button.pyi,sha256=0ZwHX_as2oB4MhARooepB--op3u-nnNbqsk-HY-oTs0,15946
|
|
204
206
|
reflex/components/radix/themes/components/callout.py,sha256=9JHrSF9rRRQtDq-n4ZGTickLF0mmo7uIqWPfxrRhIYM,2478
|
|
205
|
-
reflex/components/radix/themes/components/callout.pyi,sha256=
|
|
207
|
+
reflex/components/radix/themes/components/callout.pyi,sha256=cjqZK_jzhuAPjICck9Yw8cbP51bFibh2HzU4ZcSNvPA,60145
|
|
206
208
|
reflex/components/radix/themes/components/card.py,sha256=56EoJDKKrpU_Hawc4RW_ayRUVohebFJojnUa4FihrRY,746
|
|
207
|
-
reflex/components/radix/themes/components/card.pyi,sha256=
|
|
209
|
+
reflex/components/radix/themes/components/card.pyi,sha256=X7533hJLzfh7a1inWVCH2vtymJVTHdUlb32OK6A4NY8,11600
|
|
208
210
|
reflex/components/radix/themes/components/checkbox.py,sha256=eDL_D-oU3HloHPA10lEdSGPZrhnSVFcMIAnyoof22k0,4341
|
|
209
211
|
reflex/components/radix/themes/components/checkbox.pyi,sha256=BdVWfMRRwt6HhsukAmsV9m9DzDxpc3U_LKUFVvSKn4s,17960
|
|
210
212
|
reflex/components/radix/themes/components/checkbox_cards.py,sha256=EP_WAUlyBBigQvih60woL6OIM_t5c78wAyZWmgNVHAM,1428
|
|
211
213
|
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=oHDE27k-NsaOucg17_9_mxOEx197KDmsHRzfFq1OfJM,8973
|
|
212
214
|
reflex/components/radix/themes/components/checkbox_group.py,sha256=AtKll0dgTfFSkZ-E9U_NL3-9B6KTMdADW3O2kOwAHTU,1531
|
|
213
215
|
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=bE01uRDqE3tNwTbynvI-zZ9LvM1r-azTN-KpT8sFbOg,7903
|
|
214
|
-
reflex/components/radix/themes/components/context_menu.py,sha256=
|
|
215
|
-
reflex/components/radix/themes/components/context_menu.pyi,sha256=
|
|
216
|
+
reflex/components/radix/themes/components/context_menu.py,sha256=1LfgCHsZBq8hRUXxu1T9TYLknH6XGKsjmpLnS0DfJYQ,12809
|
|
217
|
+
reflex/components/radix/themes/components/context_menu.pyi,sha256=w98kBoFxO7qAjhqqvvk_MCd1jK4YbqhuJtkNGf2T10w,49897
|
|
216
218
|
reflex/components/radix/themes/components/data_list.py,sha256=fRrwrYBsUNLeAmch6Y57AS5MDnlKTq4P2J4nsezHq4k,1885
|
|
217
219
|
reflex/components/radix/themes/components/data_list.pyi,sha256=Fx4USBrybfBxbIDQ-N_fTjRIIm1cnacPujzeuWcdtn8,13180
|
|
218
220
|
reflex/components/radix/themes/components/dialog.py,sha256=djRrVXacMJndS4fkMOKdZL2_fPf1Igo9MzOoFKpbT84,2696
|
|
219
|
-
reflex/components/radix/themes/components/dialog.pyi,sha256=
|
|
221
|
+
reflex/components/radix/themes/components/dialog.pyi,sha256=2T2PDrNH2v3a8SlDY3oHuV6RAfnRQNzLXsnoPJGZZdc,23905
|
|
220
222
|
reflex/components/radix/themes/components/dropdown_menu.py,sha256=Z8VNP9fv2cPLzgNPDN0J4XrS_wTsr0P4xykRcYRo_W0,10265
|
|
221
223
|
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=zNtDas_PuQksaI-mQzAM0QFJwoVpgOwH1FiO-jCkhMs,29575
|
|
222
224
|
reflex/components/radix/themes/components/hover_card.py,sha256=J9ljfRtukG5B7YT_LTL6ptb4V-mr65dq1kkSctuGp28,3235
|
|
223
|
-
reflex/components/radix/themes/components/hover_card.pyi,sha256=
|
|
225
|
+
reflex/components/radix/themes/components/hover_card.pyi,sha256=8fCHX1uhsl_Hw75LF5kRC5dsN1zd1RddmlK3-c3itY8,20757
|
|
224
226
|
reflex/components/radix/themes/components/icon_button.py,sha256=_4cj_NIqtIIzEOdv8QbrHaSEjEQW6ThwHX0lpuHe40k,3007
|
|
225
|
-
reflex/components/radix/themes/components/icon_button.pyi,sha256=
|
|
227
|
+
reflex/components/radix/themes/components/icon_button.pyi,sha256=5aG5DV2EDIUYn2TSUDCAK-ozDluqrRL8wixs9RhVrlo,16024
|
|
226
228
|
reflex/components/radix/themes/components/inset.py,sha256=F2Gb7jrUK8y0hFSOX7CICPIresEgwkDtOH8lDrclM6o,1204
|
|
227
|
-
reflex/components/radix/themes/components/inset.pyi,sha256=
|
|
229
|
+
reflex/components/radix/themes/components/inset.pyi,sha256=jlQyaIgvpS1zGoSFSGC4fLQOJrztbYElnEaTwGKevSs,13756
|
|
228
230
|
reflex/components/radix/themes/components/popover.py,sha256=lOvtNL_Rpbvkrc2HnNVdFODmbIttcz7LgxE_Os5tMBI,4044
|
|
229
|
-
reflex/components/radix/themes/components/popover.pyi,sha256=
|
|
231
|
+
reflex/components/radix/themes/components/popover.pyi,sha256=jRkUKeZwCqKACsUMeQB0w0hq0ZycYIiBaXHGIeNsXfY,20139
|
|
230
232
|
reflex/components/radix/themes/components/progress.py,sha256=OTqA0GEZY7OtvIqSc8LdHITtISLPRkXgoeWll6zVyd4,2375
|
|
231
233
|
reflex/components/radix/themes/components/progress.pyi,sha256=VukpnjzJWMsqVL0DfRDTwle18o8YXmtir4VkTNEZP5Q,5977
|
|
232
234
|
reflex/components/radix/themes/components/radio.py,sha256=mcX2l2TbhXxqRPVlPnxPgpNmY_VWHqXQEs1frCdHeeU,837
|
|
@@ -252,13 +254,13 @@ reflex/components/radix/themes/components/spinner.pyi,sha256=yYpRN7KGAMkqq8OdboA
|
|
|
252
254
|
reflex/components/radix/themes/components/switch.py,sha256=cfj9xvbYRdmMwF6HqXxCK7YrlVg0rLhGVies119EJsc,1767
|
|
253
255
|
reflex/components/radix/themes/components/switch.pyi,sha256=ll7cosjp3irr7uOBLeWeUXo3_OI_hUDOdPDNanPLF9Q,6542
|
|
254
256
|
reflex/components/radix/themes/components/table.py,sha256=dIMrHTggykG87M0T5Pp77QC-9DeuIdyX88vQh8Ux8jU,3738
|
|
255
|
-
reflex/components/radix/themes/components/table.pyi,sha256=
|
|
257
|
+
reflex/components/radix/themes/components/table.pyi,sha256=946km01HhnxsRosBgzjB-Y1zcItGQY43CTbJAatLv8I,86766
|
|
256
258
|
reflex/components/radix/themes/components/tabs.py,sha256=BAamAm2RQxBwstuIXyQ6Eo-4nQTRtb3T_pIg2B9BS4Y,4627
|
|
257
259
|
reflex/components/radix/themes/components/tabs.pyi,sha256=Pk9k3K0FcmvwxdmooUNJXKfD-Jr69UWnKpFxkM0-4PA,15808
|
|
258
|
-
reflex/components/radix/themes/components/text_area.py,sha256=
|
|
259
|
-
reflex/components/radix/themes/components/text_area.pyi,sha256=
|
|
260
|
-
reflex/components/radix/themes/components/text_field.py,sha256=
|
|
261
|
-
reflex/components/radix/themes/components/text_field.pyi,sha256=
|
|
260
|
+
reflex/components/radix/themes/components/text_area.py,sha256=5jVvuH4wduAPFd6c2Th08AFolTE_QIgVmExSy5ttrTI,3423
|
|
261
|
+
reflex/components/radix/themes/components/text_area.pyi,sha256=W5uyj2NoFJxelYxkZW7R6UpdLeR2cG8I8IL_L6yNeaU,17313
|
|
262
|
+
reflex/components/radix/themes/components/text_field.py,sha256=u9ajFKmMR6LYI3haR7SzWx967RtMytqlJ-vAIy3AWhE,4114
|
|
263
|
+
reflex/components/radix/themes/components/text_field.pyi,sha256=pZrIdDODUQ29tTwyuOhDdCbqzDSXMUWaNX4o7rgaR-Y,40038
|
|
262
264
|
reflex/components/radix/themes/components/tooltip.py,sha256=cTYJxkYrNZbQrbGh4-qMo7HthF7TgHuJrTORJP69WwU,4432
|
|
263
265
|
reflex/components/radix/themes/components/tooltip.pyi,sha256=Aj-jKDtQccmDMIZwuCfVQV1U0BlADjBdvZeB0bOAO7k,6875
|
|
264
266
|
reflex/components/radix/themes/layout/__init__.py,sha256=dbRNzJ9pag7luTO3saNvgKzozrGNJ02_Vn9r3SwJHN4,406
|
|
@@ -266,41 +268,41 @@ reflex/components/radix/themes/layout/__init__.pyi,sha256=qyTauwdNy4ZxSBDg6K0QXI
|
|
|
266
268
|
reflex/components/radix/themes/layout/base.py,sha256=Mvyti40XT2kFfrU3FvQIR2GRIYZNyF2qojGe8Tqq-TE,886
|
|
267
269
|
reflex/components/radix/themes/layout/base.pyi,sha256=jEIRfTIzrsr5_Guoe-BYOk9b7n1Anh0grnvmfQeg6h4,9872
|
|
268
270
|
reflex/components/radix/themes/layout/box.py,sha256=7BAGnOYX5HMiftVQmYG5_kWYmy_0rbexLrwREbSbAT4,327
|
|
269
|
-
reflex/components/radix/themes/layout/box.pyi,sha256=
|
|
271
|
+
reflex/components/radix/themes/layout/box.pyi,sha256=xIaCZBlI3QDDEsCuoVtwcA4VcYyp-khncI2kqETNpUk,10630
|
|
270
272
|
reflex/components/radix/themes/layout/center.py,sha256=iNGsfoVUrVtb-TH3sdOVpxUQHF-2GTVFVCX_KkRuQog,490
|
|
271
|
-
reflex/components/radix/themes/layout/center.pyi,sha256=
|
|
273
|
+
reflex/components/radix/themes/layout/center.pyi,sha256=M7xRTA6swxQjatquDrV-u3eeeYFZh7-YPy5CCqagJEE,14188
|
|
272
274
|
reflex/components/radix/themes/layout/container.py,sha256=gpWV6uqeXFcfG539YHn3nDm1T7M9_3eYptWCGJAEjEU,1552
|
|
273
|
-
reflex/components/radix/themes/layout/container.pyi,sha256=
|
|
275
|
+
reflex/components/radix/themes/layout/container.pyi,sha256=k2Q1VUOtaiftQM45u3-fcoIsUBzX7GaD4BqEIoo0190,9654
|
|
274
276
|
reflex/components/radix/themes/layout/flex.py,sha256=A6gflxUH7lI-kRthQZrrVDCozBKbFQELEZc5ArldOmU,1522
|
|
275
|
-
reflex/components/radix/themes/layout/flex.pyi,sha256=
|
|
277
|
+
reflex/components/radix/themes/layout/flex.pyi,sha256=C-rGxE2QUvnQI1GA5va00SznnB3qLYwAaPX48Vj9AvI,14355
|
|
276
278
|
reflex/components/radix/themes/layout/grid.py,sha256=biFoJFzu9OLPd5A4_CUwcpTyF7_bKoH8jxjON884stQ,1682
|
|
277
|
-
reflex/components/radix/themes/layout/grid.pyi,sha256=
|
|
279
|
+
reflex/components/radix/themes/layout/grid.pyi,sha256=wDzjDQRuo4cguCTZfdMScnXUQHl5pP9KX7b2OK3SPJQ,15543
|
|
278
280
|
reflex/components/radix/themes/layout/list.py,sha256=EtsdHOuHjDFsn511qItlKVfLxx0VGcz4lLsUy9YA1Jw,5252
|
|
279
|
-
reflex/components/radix/themes/layout/list.pyi,sha256=
|
|
281
|
+
reflex/components/radix/themes/layout/list.pyi,sha256=3tCfdR3P2NOzat8-5FxbnXjjHK_w1kEkkk267L5FTGQ,41980
|
|
280
282
|
reflex/components/radix/themes/layout/section.py,sha256=ZSVYvC4Pq0z3oQMUBdhC4Hn8qZ__N86vifag3ZO99bs,624
|
|
281
|
-
reflex/components/radix/themes/layout/section.pyi,sha256=
|
|
283
|
+
reflex/components/radix/themes/layout/section.pyi,sha256=BC5WXd655cmxn-lzOQ8U3H6VDMMUxBQpZ8gjfB9ZvCM,11176
|
|
282
284
|
reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
|
|
283
|
-
reflex/components/radix/themes/layout/spacer.pyi,sha256=
|
|
285
|
+
reflex/components/radix/themes/layout/spacer.pyi,sha256=9lWpiDBTLDOJJ_Iz-cYiq8kmD4XACzl3vo3JmuuGnN8,14188
|
|
284
286
|
reflex/components/radix/themes/layout/stack.py,sha256=DZFVCCanV9NOWdkG_pfKrzlUGe7xHS37iUuhRpTn4MM,1537
|
|
285
|
-
reflex/components/radix/themes/layout/stack.pyi,sha256=
|
|
287
|
+
reflex/components/radix/themes/layout/stack.pyi,sha256=PoRzkYOgv4Ucdu98WJ7f9LrnKzyVNBP0m7-o8n34oI4,37771
|
|
286
288
|
reflex/components/radix/themes/typography/__init__.py,sha256=dEopnJWc8cPs1oUBK3wMHQtzQ_QNM9pIblzEWbZZ4G4,422
|
|
287
289
|
reflex/components/radix/themes/typography/__init__.pyi,sha256=cXYgQJIXjO3arJXf0SLjHUqC62lNrRk9Ra68SEwo4QY,433
|
|
288
290
|
reflex/components/radix/themes/typography/base.py,sha256=3eiAZGs_l19E3fE8KpX75llSE2FoeuD3yp84wUnBX0s,409
|
|
289
291
|
reflex/components/radix/themes/typography/blockquote.py,sha256=QhzpjPr53r58lpIsLZyywseXT0OBqpRON651jftm9yk,920
|
|
290
|
-
reflex/components/radix/themes/typography/blockquote.pyi,sha256=
|
|
292
|
+
reflex/components/radix/themes/typography/blockquote.pyi,sha256=8pw-NY_Dn2nKFpn_fteQFMnyJHGIFhTXlG7sIQnIfA4,14012
|
|
291
293
|
reflex/components/radix/themes/typography/code.py,sha256=9tatKTGiDNgrIS2uoX6vf0uCLuvRhC_gLmNb225bPNM,1105
|
|
292
|
-
reflex/components/radix/themes/typography/code.pyi,sha256=
|
|
294
|
+
reflex/components/radix/themes/typography/code.pyi,sha256=oZh49p3HOt_3h-FryG5T_p20y_HQOwspy31vpVT0NFg,14308
|
|
293
295
|
reflex/components/radix/themes/typography/heading.py,sha256=qWR7bUD24SkoQ5rTLV14jLGYr0gpJk6QVX_HhsKeZZ0,1546
|
|
294
|
-
reflex/components/radix/themes/typography/heading.pyi,sha256=
|
|
296
|
+
reflex/components/radix/themes/typography/heading.pyi,sha256=KQRmPdGiTRSNH2xivk_DgF0hnmXDKEns6Lgi99UbOTg,15382
|
|
295
297
|
reflex/components/radix/themes/typography/link.py,sha256=Q6Np8xej_9PIoKcPPRxaiSCitQq62cO_GPujw18U33o,3655
|
|
296
|
-
reflex/components/radix/themes/typography/link.pyi,sha256=
|
|
298
|
+
reflex/components/radix/themes/typography/link.pyi,sha256=1NBWX_uUGUKGHYqeWPyRc36MYy-2S6AxESiZXNGqgAA,17624
|
|
297
299
|
reflex/components/radix/themes/typography/text.py,sha256=g2YVFj32lIWYcGswUhAOsWMcoiuPm8kj07B4rqai1rE,2814
|
|
298
|
-
reflex/components/radix/themes/typography/text.pyi,sha256=
|
|
300
|
+
reflex/components/radix/themes/typography/text.pyi,sha256=kXLslWHuoOZhnsb6uwL6o0VVKGnWxck9EQfiphKvZkg,89611
|
|
299
301
|
reflex/components/react_player/__init__.py,sha256=1OTHeZkuefi-zIVXc_QZMTBg4_RsGrMaJHducUuZQCU,171
|
|
300
302
|
reflex/components/react_player/audio.py,sha256=qw_H2_W0AyMsHehA_Q9jskN4_N5TYgkzeisOxhepkPs,186
|
|
301
303
|
reflex/components/react_player/audio.pyi,sha256=wveeBuMX9MxKiedKaAhWy75B5JemGII1Khiwfehtm9U,5936
|
|
302
|
-
reflex/components/react_player/react_player.py,sha256=
|
|
303
|
-
reflex/components/react_player/react_player.pyi,sha256=
|
|
304
|
+
reflex/components/react_player/react_player.py,sha256=hadeQezGV0C2FlGgK2kvx_3waO7JPNXLIQa950FSUKs,3536
|
|
305
|
+
reflex/components/react_player/react_player.pyi,sha256=qLdHsK4aCRT2--4yy5sb49VtDuyGvwlDlnDVqyLbPag,5933
|
|
304
306
|
reflex/components/react_player/video.py,sha256=2V6tiwCwrzu9WPI1Wmuepk8kQ6M6K8nnMdLLjEbrxrw,186
|
|
305
307
|
reflex/components/react_player/video.pyi,sha256=BdGVjG867prxrv0fU8jjulhlcKM25EfY5tLDqb9v-IA,5936
|
|
306
308
|
reflex/components/recharts/__init__.py,sha256=Ke5NLICmT2J_mGIUBZcFMUJOXGYgFSG3xRs2v7YjN6I,2676
|
|
@@ -316,38 +318,38 @@ reflex/components/recharts/polar.pyi,sha256=EbciHhTcRZb7Z_2X5ikunr_49dj0wu-hzOzX
|
|
|
316
318
|
reflex/components/recharts/recharts.py,sha256=pWwrKtEcHbGaeqaDAZH1FQgPuPKj7PE6DT_df_OeIio,3176
|
|
317
319
|
reflex/components/recharts/recharts.pyi,sha256=Hb5IW-qiodffHtEZZpq_GzyeQUJB_0S8WW_vEpfNgaE,6772
|
|
318
320
|
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
319
|
-
reflex/components/sonner/toast.py,sha256=
|
|
320
|
-
reflex/components/sonner/toast.pyi,sha256=
|
|
321
|
+
reflex/components/sonner/toast.py,sha256=6J_S1Oer8wxnDKf94nuhOrKTZnSJmcptkrfsANe1rRE,12130
|
|
322
|
+
reflex/components/sonner/toast.pyi,sha256=S9xAfYqx8DXnmhUaMSO8vYc_Vt0MmfZf8kANE54DxrE,7723
|
|
321
323
|
reflex/components/suneditor/__init__.py,sha256=htkPzy0O_1ro1nw8w8gFPjYhg5xywMpsUfc4Dl3OHuw,109
|
|
322
324
|
reflex/components/suneditor/editor.py,sha256=W1_Yu3UwqQFsFxFdJalKls2RMUjFfboy2FLiNw_xZYw,8061
|
|
323
325
|
reflex/components/suneditor/editor.pyi,sha256=tIJQikzW3LE3p8fPdy1O5X0Ma__UWnUPcGYGvK2Q9J0,9304
|
|
324
326
|
reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTkNhW_Q,152
|
|
325
327
|
reflex/components/tags/cond_tag.py,sha256=oYsiTxANrByBg7NwuXVk2yGN5n2u7FHreeG1PdmfzIo,607
|
|
326
|
-
reflex/components/tags/iter_tag.py,sha256=
|
|
328
|
+
reflex/components/tags/iter_tag.py,sha256=8A1okyo8m06K9-3jsUjlbuhAOj8BoUWyKKYpLZZ68qI,4675
|
|
327
329
|
reflex/components/tags/match_tag.py,sha256=mqQF6fHhOSGSMdiaJ7YlwXSMhRtDmmIBu1Gw-VQQ324,586
|
|
328
|
-
reflex/components/tags/tag.py,sha256=
|
|
330
|
+
reflex/components/tags/tag.py,sha256=REL_QZyX12ydxCXOugb_b0hSwd5cbX9VjGgbYwj9GY0,3711
|
|
329
331
|
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
330
|
-
reflex/config.py,sha256=
|
|
331
|
-
reflex/constants/__init__.py,sha256=
|
|
332
|
-
reflex/constants/base.py,sha256=
|
|
332
|
+
reflex/config.py,sha256=l9IuhVXpjdTNlor4YfOdH6FI6a4xLDVyktdHC-8t7w4,34840
|
|
333
|
+
reflex/constants/__init__.py,sha256=tM8gfHjWec_46tLh5Bn0KDaxnwhMOqIqCOqYtzm8cgE,2036
|
|
334
|
+
reflex/constants/base.py,sha256=RfzOQdfJcQhVoIQRBNRAcIMyhllIHFd2hRZ37P1N28E,7837
|
|
333
335
|
reflex/constants/colors.py,sha256=cgLn8iEWtlpjQgbhhlCOGjbhfOULKnzqqzPph63SJoI,1613
|
|
334
|
-
reflex/constants/compiler.py,sha256=
|
|
336
|
+
reflex/constants/compiler.py,sha256=7EdvrKNyr-C7e2T6Xmvd5gpTo5rh4SAHZpmQFV1rrM4,5676
|
|
335
337
|
reflex/constants/config.py,sha256=4EljK_fD1Nf4-OfJ9HLYeHSW5xTfNPN6AGjzJ5ARZSY,1579
|
|
336
338
|
reflex/constants/custom_components.py,sha256=joJt4CEt1yKy7wsBH6vYo7_QRW0O_fWXrrTf0VY2q14,1317
|
|
337
|
-
reflex/constants/event.py,sha256=
|
|
338
|
-
reflex/constants/installer.py,sha256=
|
|
339
|
+
reflex/constants/event.py,sha256=8PWobGXnUIbkRS73dRiroj5BJw4C3sbo5AHAhJTZFyM,2849
|
|
340
|
+
reflex/constants/installer.py,sha256=DtzTrFDiqsjpNh0UpOybfxM3DJF4mUHdGuo48-NKTn0,4701
|
|
339
341
|
reflex/constants/route.py,sha256=J4QVdeeYz9wX0lYT1sgx0m3kLSArDHzmGCDZ2sqy854,2139
|
|
340
342
|
reflex/constants/state.py,sha256=6Mfr7xVcAZOj5aSy7kp0W6r8oTs7K30URgGDAAFLfPQ,294
|
|
341
343
|
reflex/constants/style.py,sha256=EPgRYHhAlcrPUBc2HkDTdTj-Q0uDAXHlq8Sp6D35Zf4,475
|
|
342
|
-
reflex/constants/utils.py,sha256=
|
|
344
|
+
reflex/constants/utils.py,sha256=GJhFj1uba54CDPEm70tWs8B5iS2siHgeNi--oGCjeRc,759
|
|
343
345
|
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
344
346
|
reflex/custom_components/custom_components.py,sha256=alW_lKBVemMQhuGobzeycgd34mvz37kPNTytLfLplmQ,33414
|
|
345
|
-
reflex/event.py,sha256=
|
|
347
|
+
reflex/event.py,sha256=I0IIOgVcJDuXiHtIXWMcSt6GyglkP095KzK2LsVfAF4,60795
|
|
346
348
|
reflex/experimental/__init__.py,sha256=bvJ6qFeO3xT3L-8IBtk4ecoi5rda3EDvblgNP60yhEo,2206
|
|
347
349
|
reflex/experimental/client_state.py,sha256=5lmCM7fzEtJp5eegUCoygJRYXf6f1U9UiFyuWxsznbs,9906
|
|
348
350
|
reflex/experimental/hooks.py,sha256=CHYGrAE5t8riltrJmDFgJ4D2Vhmhw-y3B3MSGNlOQow,2366
|
|
349
351
|
reflex/experimental/layout.py,sha256=v44TTIZdZ6ERj1dPsp_u_GUex6l29n6zcQAgro6nnC4,7539
|
|
350
|
-
reflex/experimental/layout.pyi,sha256=
|
|
352
|
+
reflex/experimental/layout.pyi,sha256=ixirSJM2drC_zMRpwIY6voR8Se4589k-nYLrQ3KQetc,30575
|
|
351
353
|
reflex/experimental/misc.py,sha256=X0vgTWn72VduWi6p2hMU-gGksRkhu7isDJNJ0kNVaAo,704
|
|
352
354
|
reflex/istate/__init__.py,sha256=LDu_3-31ZI1Jn9NWp4mM0--fDiXI0x8x3gR4-kdrziY,57
|
|
353
355
|
reflex/istate/data.py,sha256=BFqcdRqVegouoHWWMFOvMvZU_LXe9lCNSWgQEzYNWbI,4324
|
|
@@ -360,42 +362,44 @@ reflex/middleware/hydrate_middleware.py,sha256=QJBEZI-4Jtn3345WgZDQ-twIbJzfiHKvU
|
|
|
360
362
|
reflex/middleware/middleware.py,sha256=9eASK3MrbK1AvT2Sx5GFxXNwSuNW8_LTRGvPY1JccU4,1171
|
|
361
363
|
reflex/model.py,sha256=yOLkxNOgi3GY9mT2E-6rkK-uLv8Av-kYSJ7I19y9JzE,17559
|
|
362
364
|
reflex/page.py,sha256=lbI5Sd4RzZadPV6cYBSNRDIlNlRwEnOv1snF2RGKH04,2392
|
|
363
|
-
reflex/
|
|
365
|
+
reflex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
366
|
+
reflex/reflex.py,sha256=O1TKYq4HdGLdVOP9X6zG7jtrux77yExBVkGOnMYjjCQ,19380
|
|
364
367
|
reflex/route.py,sha256=nn_hJwtQdjiqH_dHXfqMGWKllnyPQZTSR-KWdHDhoOs,4210
|
|
365
|
-
reflex/state.py,sha256=
|
|
366
|
-
reflex/style.py,sha256=
|
|
367
|
-
reflex/testing.py,sha256=
|
|
368
|
+
reflex/state.py,sha256=Mw1Bd7p61LDEqFUEFl0CqBwm6rzKayA06wo2IjeYpdU,140394
|
|
369
|
+
reflex/style.py,sha256=K3UAhjmkwHIhDO3gJaZWBmgpRT8EOM-eQS0NsAY_k5I,13377
|
|
370
|
+
reflex/testing.py,sha256=NukmgpkB70naGllLWBQTqm8XE2XBUxkpywBYFCpMwyc,35762
|
|
368
371
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
369
|
-
reflex/utils/build.py,sha256=
|
|
372
|
+
reflex/utils/build.py,sha256=gm_lRsOqKeRD5mBiRToJcT4Vt_ZQPzDuazGfvJlSeeQ,9024
|
|
370
373
|
reflex/utils/codespaces.py,sha256=TzDK--pHwP4r8Nzl0iB_8r-cOFmmL6nHfZ9xRQHA-KY,2754
|
|
371
374
|
reflex/utils/compat.py,sha256=aSJH_M6iomgHPQ4onQ153xh1MWqPi3HSYDzE68N6gZM,2635
|
|
372
|
-
reflex/utils/console.py,sha256=
|
|
375
|
+
reflex/utils/console.py,sha256=n6vYXuLP4CYpRpU4n2bGCxs2Ll4m7z6Nxai5UTWhSrs,9455
|
|
376
|
+
reflex/utils/decorator.py,sha256=wEtbrx0SIKkpWy-_P6ny1b_aXCgBhfZT3kf5z8jrZDY,568
|
|
373
377
|
reflex/utils/exceptions.py,sha256=qL5E6F-lKcY7FrYJwKg-LjdvuugYnjszdnbfWkLemsE,7844
|
|
374
|
-
reflex/utils/exec.py,sha256=
|
|
378
|
+
reflex/utils/exec.py,sha256=i6b-87bGycl29ejqfGAWjm2qsUTTJiVnd1Y9KiDVUf4,17613
|
|
375
379
|
reflex/utils/export.py,sha256=wsyC6Atsu8LBZlrX0PhjnisMwhFycf4a3WH8DG1dam0,2567
|
|
376
|
-
reflex/utils/format.py,sha256=
|
|
380
|
+
reflex/utils/format.py,sha256=ERkcFYn1S-OB3JYZNttPd5CyDBNfDHVHIsIsxGE52Qw,20662
|
|
377
381
|
reflex/utils/imports.py,sha256=8lTJ8qCJlMUlQnZssOv0l2nntuTfGfLsLqkJAS5JTbA,3974
|
|
378
382
|
reflex/utils/lazy_loader.py,sha256=-3DcwIqHNft2fb1ikgDYAMiEwNfbiWfrTBAf1gEVX2o,1367
|
|
379
383
|
reflex/utils/net.py,sha256=0Yd9OLK8R_px2sqnqrDkTky6hYHtG2pEDvvilOjDfjc,1219
|
|
380
|
-
reflex/utils/path_ops.py,sha256=
|
|
381
|
-
reflex/utils/prerequisites.py,sha256=
|
|
382
|
-
reflex/utils/processes.py,sha256=
|
|
384
|
+
reflex/utils/path_ops.py,sha256=Sio_pZ9-dqu6pAPUkO_JA9ONXDsyLGKWOVRoA-dCrec,7903
|
|
385
|
+
reflex/utils/prerequisites.py,sha256=6kghciNA1lMHX2fYHTd4nj-81Hv1pXxzVZTXVQQbzXc,66614
|
|
386
|
+
reflex/utils/processes.py,sha256=tvYVIJgxBLboCVMYLnQYeNNIFr2cwufdWNZEOxpC4qw,13527
|
|
383
387
|
reflex/utils/pyi_generator.py,sha256=6BVJ1KrLH8WvfYjBVm5-zjI6-Zdhzngp5ubkixsCIl4,41240
|
|
384
388
|
reflex/utils/redir.py,sha256=bmQGAgoNWwySeLRQTpoMpmKInwIOCW77wkXT61fwcj8,1868
|
|
385
389
|
reflex/utils/registry.py,sha256=bseD0bIO8b3pctHKpD5J2MRdDzcf7eWKtHEZVutVNJ0,1401
|
|
386
|
-
reflex/utils/serializers.py,sha256=
|
|
387
|
-
reflex/utils/telemetry.py,sha256=
|
|
388
|
-
reflex/utils/types.py,sha256=
|
|
390
|
+
reflex/utils/serializers.py,sha256=E3UoJfCY5YU3lNPmpO-VkAEngomySAHx_tFar86UQDE,12095
|
|
391
|
+
reflex/utils/telemetry.py,sha256=qwJBwjdtAV-OGKgO4h-NWhgTvfC3gbduBdn1UB8Ikes,5608
|
|
392
|
+
reflex/utils/types.py,sha256=CUOwdSMaRgJr7uu4IqvQ4LlCRCoZijGMPWdQ9JZ4rzg,26852
|
|
389
393
|
reflex/vars/__init__.py,sha256=2Kv6Oh9g3ISZFESjL1al8KiO7QBZUXmLKGMCBsP-DoY,1243
|
|
390
|
-
reflex/vars/base.py,sha256=
|
|
394
|
+
reflex/vars/base.py,sha256=hFTkWPQ1lDOs16pMwWZTAdShMd9EZVodYWZOZhrgk70,99671
|
|
391
395
|
reflex/vars/datetime.py,sha256=6j63p5uZiWLldiIl3VVh9jWghuW1_GyBevyy2b4rdr4,5803
|
|
392
396
|
reflex/vars/dep_tracking.py,sha256=kluvF4Pfbpdqf0GcpmYHjT1yP-D1erAzaSQP6qIxjB0,13846
|
|
393
|
-
reflex/vars/function.py,sha256=
|
|
394
|
-
reflex/vars/number.py,sha256=
|
|
397
|
+
reflex/vars/function.py,sha256=r5NFBsueqiaRkM0F1Zp2lqWYMvWBhbNwyf5F9jrEC9A,14794
|
|
398
|
+
reflex/vars/number.py,sha256=a0Qq_xM3v4Lcjm8l9Yg6ESRITUOnzgWADNmfvv4tmGI,27871
|
|
395
399
|
reflex/vars/object.py,sha256=jfvxtrklztDtbD2zgNVNCZZE6X6HQMB6yJHPhtb0hUo,15033
|
|
396
|
-
reflex/vars/sequence.py,sha256=
|
|
397
|
-
reflex-0.7.
|
|
398
|
-
reflex-0.7.
|
|
399
|
-
reflex-0.7.
|
|
400
|
-
reflex-0.7.
|
|
401
|
-
reflex-0.7.
|
|
400
|
+
reflex/vars/sequence.py,sha256=_A1By3COdoTt9o5WM2odYsWf1twTv8Depf0kgHLdhGQ,54276
|
|
401
|
+
reflex-0.7.1a1.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
402
|
+
reflex-0.7.1a1.dist-info/METADATA,sha256=KI2GRLvxQIsOy2THl8MjRDMcgG9vu1Po7p-hPP6_oQs,11985
|
|
403
|
+
reflex-0.7.1a1.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
404
|
+
reflex-0.7.1a1.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
405
|
+
reflex-0.7.1a1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|