reflex 0.8.0a4__py3-none-any.whl → 0.8.0a6__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/web/pages/_app.js.jinja2 +1 -1
- reflex/.templates/jinja/web/styles/styles.css.jinja2 +1 -0
- reflex/.templates/web/app/routes.js +3 -3
- reflex/.templates/web/utils/client_side_routing.js +1 -1
- reflex/.templates/web/utils/state.js +110 -52
- reflex/__init__.pyi +327 -188
- reflex/app.py +50 -48
- reflex/compiler/compiler.py +6 -2
- reflex/compiler/utils.py +32 -14
- reflex/components/__init__.pyi +34 -15
- reflex/components/base/__init__.pyi +30 -19
- reflex/components/base/app_wrap.pyi +2 -3
- reflex/components/base/body.pyi +2 -3
- reflex/components/base/document.pyi +7 -13
- reflex/components/base/error_boundary.pyi +2 -3
- reflex/components/base/fragment.pyi +2 -3
- reflex/components/base/link.pyi +3 -5
- reflex/components/base/meta.py +4 -15
- reflex/components/base/meta.pyi +14 -18
- reflex/components/base/script.pyi +2 -3
- reflex/components/base/strict_mode.pyi +2 -3
- reflex/components/core/__init__.pyi +77 -38
- reflex/components/core/auto_scroll.pyi +2 -3
- reflex/components/core/banner.pyi +8 -14
- reflex/components/core/client_side_routing.pyi +2 -3
- reflex/components/core/clipboard.pyi +2 -3
- reflex/components/core/debounce.pyi +2 -3
- reflex/components/core/foreach.py +2 -2
- reflex/components/core/helmet.pyi +2 -3
- reflex/components/core/html.pyi +2 -3
- reflex/components/core/match.py +3 -3
- reflex/components/core/sticky.pyi +4 -7
- reflex/components/core/upload.py +2 -1
- reflex/components/core/upload.pyi +5 -9
- reflex/components/datadisplay/__init__.pyi +13 -7
- reflex/components/datadisplay/code.py +12 -7
- reflex/components/datadisplay/code.pyi +2 -3
- reflex/components/datadisplay/dataeditor.pyi +33 -11
- reflex/components/datadisplay/shiki_code_block.py +5 -3
- reflex/components/datadisplay/shiki_code_block.pyi +3 -5
- reflex/components/el/__init__.pyi +506 -246
- reflex/components/el/element.pyi +2 -3
- reflex/components/el/elements/__init__.pyi +504 -245
- reflex/components/el/elements/base.pyi +2 -3
- reflex/components/el/elements/forms.pyi +77 -49
- reflex/components/el/elements/inline.pyi +29 -57
- reflex/components/el/elements/media.pyi +26 -51
- reflex/components/el/elements/metadata.pyi +7 -13
- reflex/components/el/elements/other.pyi +8 -15
- reflex/components/el/elements/scripts.pyi +4 -7
- reflex/components/el/elements/sectioning.pyi +16 -31
- reflex/components/el/elements/tables.pyi +11 -21
- reflex/components/el/elements/typography.pyi +16 -31
- reflex/components/gridjs/datatable.pyi +3 -5
- reflex/components/lucide/icon.pyi +4 -7
- reflex/components/markdown/markdown.py +5 -3
- reflex/components/markdown/markdown.pyi +2 -3
- reflex/components/moment/moment.py +1 -1
- reflex/components/moment/moment.pyi +2 -3
- reflex/components/plotly/plotly.py +12 -6
- reflex/components/plotly/plotly.pyi +31 -39
- reflex/components/radix/__init__.pyi +123 -65
- reflex/components/radix/primitives/__init__.pyi +6 -4
- reflex/components/radix/primitives/accordion.pyi +8 -15
- reflex/components/radix/primitives/base.pyi +3 -5
- reflex/components/radix/primitives/drawer.pyi +11 -21
- reflex/components/radix/primitives/form.pyi +22 -22
- reflex/components/radix/primitives/progress.pyi +5 -9
- reflex/components/radix/primitives/slider.pyi +6 -11
- reflex/components/radix/themes/__init__.pyi +5 -6
- reflex/components/radix/themes/base.pyi +9 -17
- reflex/components/radix/themes/color_mode.py +5 -6
- reflex/components/radix/themes/color_mode.pyi +4 -7
- reflex/components/radix/themes/components/__init__.pyi +75 -38
- reflex/components/radix/themes/components/alert_dialog.pyi +8 -15
- reflex/components/radix/themes/components/aspect_ratio.pyi +2 -3
- reflex/components/radix/themes/components/avatar.pyi +2 -3
- reflex/components/radix/themes/components/badge.pyi +2 -3
- reflex/components/radix/themes/components/button.pyi +2 -3
- reflex/components/radix/themes/components/callout.pyi +5 -9
- reflex/components/radix/themes/components/card.pyi +2 -3
- reflex/components/radix/themes/components/checkbox.pyi +3 -5
- reflex/components/radix/themes/components/checkbox_cards.pyi +3 -5
- reflex/components/radix/themes/components/checkbox_group.pyi +3 -5
- reflex/components/radix/themes/components/context_menu.pyi +14 -27
- reflex/components/radix/themes/components/data_list.pyi +5 -9
- reflex/components/radix/themes/components/dialog.pyi +7 -13
- reflex/components/radix/themes/components/dropdown_menu.pyi +9 -17
- reflex/components/radix/themes/components/hover_card.pyi +4 -7
- reflex/components/radix/themes/components/icon_button.pyi +2 -3
- reflex/components/radix/themes/components/inset.pyi +2 -3
- reflex/components/radix/themes/components/popover.pyi +5 -9
- reflex/components/radix/themes/components/progress.pyi +2 -3
- reflex/components/radix/themes/components/radio.pyi +2 -3
- reflex/components/radix/themes/components/radio_cards.pyi +3 -5
- reflex/components/radix/themes/components/radio_group.pyi +4 -7
- reflex/components/radix/themes/components/scroll_area.pyi +2 -3
- reflex/components/radix/themes/components/segmented_control.pyi +3 -5
- reflex/components/radix/themes/components/select.pyi +9 -17
- reflex/components/radix/themes/components/separator.pyi +2 -3
- reflex/components/radix/themes/components/skeleton.pyi +2 -3
- reflex/components/radix/themes/components/slider.pyi +12 -5
- reflex/components/radix/themes/components/spinner.pyi +2 -3
- reflex/components/radix/themes/components/switch.pyi +2 -3
- reflex/components/radix/themes/components/table.pyi +8 -15
- reflex/components/radix/themes/components/tabs.pyi +5 -9
- reflex/components/radix/themes/components/text_area.pyi +10 -5
- reflex/components/radix/themes/components/text_field.pyi +19 -9
- reflex/components/radix/themes/components/tooltip.pyi +2 -3
- reflex/components/radix/themes/layout/__init__.pyi +27 -14
- reflex/components/radix/themes/layout/base.pyi +2 -3
- reflex/components/radix/themes/layout/box.pyi +2 -3
- reflex/components/radix/themes/layout/center.pyi +2 -3
- reflex/components/radix/themes/layout/container.pyi +2 -3
- reflex/components/radix/themes/layout/flex.pyi +2 -3
- reflex/components/radix/themes/layout/grid.pyi +2 -3
- reflex/components/radix/themes/layout/list.pyi +5 -9
- reflex/components/radix/themes/layout/section.pyi +2 -3
- reflex/components/radix/themes/layout/spacer.pyi +2 -3
- reflex/components/radix/themes/layout/stack.pyi +4 -7
- reflex/components/radix/themes/typography/__init__.pyi +7 -5
- reflex/components/radix/themes/typography/blockquote.pyi +2 -3
- reflex/components/radix/themes/typography/code.pyi +2 -3
- reflex/components/radix/themes/typography/heading.pyi +2 -3
- reflex/components/radix/themes/typography/link.pyi +3 -5
- reflex/components/radix/themes/typography/text.pyi +7 -13
- reflex/components/react_player/audio.pyi +5 -4
- reflex/components/react_player/react_player.pyi +2 -3
- reflex/components/react_player/video.pyi +5 -4
- reflex/components/recharts/__init__.pyi +208 -100
- reflex/components/recharts/cartesian.py +8 -7
- reflex/components/recharts/cartesian.pyi +25 -48
- reflex/components/recharts/charts.pyi +13 -25
- reflex/components/recharts/general.pyi +7 -13
- reflex/components/recharts/polar.pyi +7 -13
- reflex/components/recharts/recharts.py +2 -2
- reflex/components/recharts/recharts.pyi +3 -5
- reflex/components/sonner/toast.py +1 -1
- reflex/components/sonner/toast.pyi +2 -3
- reflex/constants/installer.py +7 -8
- reflex/constants/route.py +13 -6
- reflex/istate/__init__.py +69 -0
- reflex/istate/manager.py +1 -0
- reflex/plugins/shared_tailwind.py +58 -1
- reflex/plugins/tailwind_v3.py +4 -4
- reflex/plugins/tailwind_v4.py +6 -5
- reflex/route.py +159 -71
- reflex/state.py +38 -16
- reflex/testing.py +2 -1
- reflex/utils/exec.py +18 -13
- reflex/utils/format.py +1 -5
- reflex/utils/imports.py +5 -12
- reflex/utils/misc.py +40 -0
- reflex/utils/prerequisites.py +7 -12
- reflex/utils/processes.py +8 -41
- reflex/utils/pyi_generator.py +23 -40
- reflex/utils/telemetry.py +0 -15
- reflex/utils/types.py +1 -1
- {reflex-0.8.0a4.dist-info → reflex-0.8.0a6.dist-info}/METADATA +3 -3
- {reflex-0.8.0a4.dist-info → reflex-0.8.0a6.dist-info}/RECORD +163 -163
- {reflex-0.8.0a4.dist-info → reflex-0.8.0a6.dist-info}/WHEEL +0 -0
- {reflex-0.8.0a4.dist-info → reflex-0.8.0a6.dist-info}/entry_points.txt +0 -0
- {reflex-0.8.0a4.dist-info → reflex-0.8.0a6.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
reflex/__init__.py,sha256=S_nJPFaTYwyxSzfOpACFxlSe2Vc8rQGr5ZDeyRSDiYQ,10264
|
|
2
|
-
reflex/__init__.pyi,sha256=
|
|
2
|
+
reflex/__init__.pyi,sha256=LHVB-SgdoFyB5aLiqiLEezMAd-vJje79ndxDxt9HWz8,10003
|
|
3
3
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
4
4
|
reflex/admin.py,sha256=Nbc38y-M8iaRBvh1W6DQu_D3kEhO8JFvxrog4q2cB_E,434
|
|
5
|
-
reflex/app.py,sha256=
|
|
5
|
+
reflex/app.py,sha256=qRyXDNd9ASIeyescIg71E08mUarppiITdh-btn1TREQ,75003
|
|
6
6
|
reflex/assets.py,sha256=l5O_mlrTprC0lF7Rc_McOe3a0OtSLnRdNl_PqCpDCBA,3431
|
|
7
7
|
reflex/base.py,sha256=Oh664QL3fZEHErhUasFqP7fE4olYf1y-9Oj6uZI2FCU,1173
|
|
8
8
|
reflex/config.py,sha256=7-OHwPa9UGlz8fxQx6SumT4netp6NgWRHJ3UvUL-opg,16631
|
|
@@ -12,10 +12,10 @@ reflex/model.py,sha256=xED7blemoiKxPFaOkCMrSayjjon7AJp8t5g459p7dGs,17646
|
|
|
12
12
|
reflex/page.py,sha256=Bn8FTlUtjjKwUtpQA5r5eaWE_ZUb8i4XgrQi8FWbzNA,1880
|
|
13
13
|
reflex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
reflex/reflex.py,sha256=eUP0GevShUc1nodfA5_ewB3hgefWU0_x166HGCY8QTs,21606
|
|
15
|
-
reflex/route.py,sha256=
|
|
16
|
-
reflex/state.py,sha256=
|
|
15
|
+
reflex/route.py,sha256=UfhKxFwe3EYto66TZv5K2Gp6ytRbcL-_v72DJ5girEs,7691
|
|
16
|
+
reflex/state.py,sha256=4qqkUu_sazxQXn526v9jItudESZuzR6vZbxqdIKcczo,91953
|
|
17
17
|
reflex/style.py,sha256=JxbXXA4MTnXrk0XHEoMBoNC7J-M2oL5Hl3W_QmXvmBg,13222
|
|
18
|
-
reflex/testing.py,sha256=
|
|
18
|
+
reflex/testing.py,sha256=6EXQN9K0tYfzEDe2aSRh4xLM_Jb_oIrI_qH2F_e0KXc,39423
|
|
19
19
|
reflex/.templates/apps/blank/assets/favicon.ico,sha256=baxxgDAQ2V4-G5Q4S2yK5uUJTUGkv-AOWBQ0xd6myUo,4286
|
|
20
20
|
reflex/.templates/apps/blank/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
reflex/.templates/apps/blank/code/blank.py,sha256=UmGz7aDxGULYINwLgotQoj-9qqpy7EOfAEpLmOT7C_k,917
|
|
@@ -26,7 +26,7 @@ reflex/.templates/jinja/custom_components/demo_app.py.jinja2,sha256=ipbKtObNqQLc
|
|
|
26
26
|
reflex/.templates/jinja/custom_components/pyproject.toml.jinja2,sha256=HG-k3pruUlMy7xYz339hgFkNMTLqB-C_FTLKkOgfBPM,630
|
|
27
27
|
reflex/.templates/jinja/custom_components/src.py.jinja2,sha256=e80PwMI6NoeQtGJ0NXWhYrkqUe7jvvJTFuztYQe-R5w,2403
|
|
28
28
|
reflex/.templates/jinja/web/package.json.jinja2,sha256=cS9M6ADYDoYL2Kc8m5dYhV8eDaehOXb6qK_IOijT3N0,673
|
|
29
|
-
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=
|
|
29
|
+
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=tG-SRR7DCP3SxLoUl_5rIRmL1uBDVnkcenSUxy459hY,1575
|
|
30
30
|
reflex/.templates/jinja/web/pages/_document.js.jinja2,sha256=v_r79GPGKnw1g9Bg4lK9o_ow5AzBnvKdz0nv3OgJyzU,166
|
|
31
31
|
reflex/.templates/jinja/web/pages/base_page.js.jinja2,sha256=nteivFZgOhgwxlPvejgaoxKTPGvDRb7_JAXhsZDZeLM,361
|
|
32
32
|
reflex/.templates/jinja/web/pages/component.js.jinja2,sha256=1Pui62uSL7LYA7FXZrh9ZmhKH8vHYu663eR134hhsAY,86
|
|
@@ -36,7 +36,7 @@ reflex/.templates/jinja/web/pages/macros.js.jinja2,sha256=RtMZ6eufmMrHghNDMKpueS
|
|
|
36
36
|
reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=gAipi5MiAVgHntadfThsogunlqpmUwLk5ROLyJJGgUM,387
|
|
37
37
|
reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9u5xOliKWxjgmnia6AJbNnII97SC-dt_KSU,101
|
|
38
38
|
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=12v0-q-o-m0Oxr0H35GTtoJqGRpmbZSrRd5js95F5fI,3156
|
|
39
|
-
reflex/.templates/jinja/web/styles/styles.css.jinja2,sha256=
|
|
39
|
+
reflex/.templates/jinja/web/styles/styles.css.jinja2,sha256=acb0EFvhRLLMc_EDguy1qcMq9CJ6i2tsWUzFyXi-9vk,163
|
|
40
40
|
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=l1k-H4Y0DmOdeMr8xVEwkSzeBpVc1o94cOjJJ3B2WSY,4103
|
|
41
41
|
reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=OSpBMh0Z9tTeqb10js4ZtnE9s1RV4gJfE8629csST8M,26
|
|
42
42
|
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
@@ -45,13 +45,13 @@ reflex/.templates/web/postcss.config.js,sha256=6Hf540Ny078yfmJ_-tniZtmgHW6euyEyx
|
|
|
45
45
|
reflex/.templates/web/react-router.config.js,sha256=5K1FBryYdPusn1nE513GwB5_5UdPzoyH8ZMANUbpodQ,84
|
|
46
46
|
reflex/.templates/web/vite.config.js,sha256=48pSybaKFRmbeR2n7ead5ppJZxEpDPJQUB8jD9jbfEM,890
|
|
47
47
|
reflex/.templates/web/app/entry.client.js,sha256=2Jv-5SQWHhHmA07BP50f1ew1V-LOsX5VoLtSInnFDj8,264
|
|
48
|
-
reflex/.templates/web/app/routes.js,sha256=
|
|
48
|
+
reflex/.templates/web/app/routes.js,sha256=OPPW82B079c4FGq_p5C5OBrkVnTNRFhgG3--WKlJSy0,312
|
|
49
49
|
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=dnDHW49imtdalZJQqj7J_u7cj2z8Sve7OlhtOO0FbKE,916
|
|
50
50
|
reflex/.templates/web/components/shiki/code.js,sha256=4Es1pxsr-lX4hTQ5mglrwwC6O_SI-z-O60k03z8VFzQ,1144
|
|
51
51
|
reflex/.templates/web/styles/__reflex_style_reset.css,sha256=qbC6JIT643YEsvSQ0D7xBmWE5vXy94JGrKNihRuEjnA,8913
|
|
52
|
-
reflex/.templates/web/utils/client_side_routing.js,sha256=
|
|
52
|
+
reflex/.templates/web/utils/client_side_routing.js,sha256=lRNgEGCLfTejh8W3aCuBdFuko6UI2vetk64j8wLT5Uk,1650
|
|
53
53
|
reflex/.templates/web/utils/react-theme.js,sha256=4CNLOcjLS5tiRp0TIgKK7trf8bSLWtmeDVhFP6BLe80,2349
|
|
54
|
-
reflex/.templates/web/utils/state.js,sha256=
|
|
54
|
+
reflex/.templates/web/utils/state.js,sha256=fd6ZL57lhvK2ykeuM4-ojtQOl6ym65adMLTUr2pKTIE,35549
|
|
55
55
|
reflex/.templates/web/utils/helpers/dataeditor.js,sha256=pG6MgsHuStDR7-qPipzfiK32j9bKDBa-4hZ0JSUo4JM,1623
|
|
56
56
|
reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseLgQVk-DW-eFiHJYO9As,528
|
|
57
57
|
reflex/.templates/web/utils/helpers/paste.js,sha256=ef30HsR83jRzzvZnl8yV79yqFP8TC_u8SlN99cCS_OM,1799
|
|
@@ -62,269 +62,269 @@ reflex/app_mixins/lifespan.py,sha256=9rrdVUY0nHyk3gj31WJm7mw6I7KHBNtvSs9tZdwUm4I
|
|
|
62
62
|
reflex/app_mixins/middleware.py,sha256=BKhe0jUFO1_TylEC48LUZyaeYyPmAYW-NV4H5Rw221k,2848
|
|
63
63
|
reflex/app_mixins/mixin.py,sha256=R1YncalqDrbdPZvpKVbm72ZKmQZxYAWfuFq9JknzTqQ,305
|
|
64
64
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
65
|
-
reflex/compiler/compiler.py,sha256=
|
|
65
|
+
reflex/compiler/compiler.py,sha256=p-8xacPH7kCjE6tpW1AzbfNQJsF0033yXMpu03Exti4,29923
|
|
66
66
|
reflex/compiler/templates.py,sha256=mQifVgvE7cKyzMFL9F5jxdJb9KFxucWJa7nuOp09ZUo,6002
|
|
67
|
-
reflex/compiler/utils.py,sha256=
|
|
67
|
+
reflex/compiler/utils.py,sha256=v2LGz6WAFOSRpn3H0l215E94R7r7hB3s9vseWrQiXUQ,19045
|
|
68
68
|
reflex/components/__init__.py,sha256=55uockd2mEBsaA-fmDO_R4vJewzGPZUk-6UZFNHBSdc,568
|
|
69
|
-
reflex/components/__init__.pyi,sha256=
|
|
69
|
+
reflex/components/__init__.pyi,sha256=ZqnBIRh1UuLSwAk6wLFmHlexyZ-6SNGo7AGJjWI7aGQ,698
|
|
70
70
|
reflex/components/component.py,sha256=yjVYLZ4LGlfj7uV9O3QpM3-f_OKvHK9lHcNOdJI3mpo,97642
|
|
71
71
|
reflex/components/dynamic.py,sha256=AyOjAW5LQZlDShIFJ7d9P2dFTI-1pr1tZR32E2Rhr9s,7422
|
|
72
72
|
reflex/components/field.py,sha256=j5JZFzNlET3GAIW91m1L31RypXylMAxJNm0-CJbtykM,5745
|
|
73
73
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
74
74
|
reflex/components/props.py,sha256=BH7RiRu_EI2BRkB1PyBVp6tLeFTTV4FzGEdDIXXQ9Bk,14378
|
|
75
75
|
reflex/components/base/__init__.py,sha256=6DzVn2oVZqmsXYq3r9AN8Q40R0NAsyRpSyVzBDZndz0,690
|
|
76
|
-
reflex/components/base/__init__.pyi,sha256=
|
|
76
|
+
reflex/components/base/__init__.pyi,sha256=CoM0dGGkZSKLNHe6KBS4Zgc6sRpRGM5dZ_EuVmZ2qkA,883
|
|
77
77
|
reflex/components/base/app_wrap.py,sha256=5K_myvYvHPeAJbm3BdEX17tKvdNEj6SV9RYahbIQBAQ,514
|
|
78
|
-
reflex/components/base/app_wrap.pyi,sha256=
|
|
78
|
+
reflex/components/base/app_wrap.pyi,sha256=gpSyUuoW_WScJbqS97cfbMXV_6O0Kdq4yBJKM28FxdA,2035
|
|
79
79
|
reflex/components/base/bare.py,sha256=jv6HStlixsBTPR6Q_PQnd7MtQDz3ncktcLYUODqwog0,7733
|
|
80
80
|
reflex/components/base/body.py,sha256=KLPOhxVsKyjPwrY9AziCOOG_c9ckOqIhI4n2i3_Q3NU,129
|
|
81
|
-
reflex/components/base/body.pyi,sha256=
|
|
81
|
+
reflex/components/base/body.pyi,sha256=yEILxDAFGWC4_8eF1PJzLIyAiVKEe91X1aowzW0RqrY,8785
|
|
82
82
|
reflex/components/base/document.py,sha256=Fr7y22NbeKeiz8kWPH2q5BpFjKdq-AmY-sxZilee_H8,636
|
|
83
|
-
reflex/components/base/document.pyi,sha256=
|
|
83
|
+
reflex/components/base/document.pyi,sha256=lOdqJvR2BwODxfR0bOeSKjnZd175AIT3-su9qnPScrQ,12568
|
|
84
84
|
reflex/components/base/error_boundary.py,sha256=lptj-mF_-i_9UlaqDCwNun3Y8i76ME1hzsmGoQdKCOk,6289
|
|
85
|
-
reflex/components/base/error_boundary.pyi,sha256=
|
|
85
|
+
reflex/components/base/error_boundary.pyi,sha256=JW4FciEY2mfV0md9EvGAdhln2SKB9n8llTdfSAhZCKA,3056
|
|
86
86
|
reflex/components/base/fragment.py,sha256=ys7wkokq-N8WBxa9fqkEaNIrBlSximyD7vqlFVe02hQ,342
|
|
87
|
-
reflex/components/base/fragment.pyi,sha256=
|
|
87
|
+
reflex/components/base/fragment.pyi,sha256=GrpnNRRNJLEVrOeBwZmVwT7OjsiDqxF2x1wvd9vwRPY,2531
|
|
88
88
|
reflex/components/base/link.py,sha256=QZ4B5iWlw3REDBfOvLhnzu6BYwfbn2lpzwuPqaXU618,937
|
|
89
|
-
reflex/components/base/link.pyi,sha256=
|
|
90
|
-
reflex/components/base/meta.py,sha256=
|
|
91
|
-
reflex/components/base/meta.pyi,sha256=
|
|
89
|
+
reflex/components/base/link.pyi,sha256=W92leRCCsMkDOeE-YLC8uRPz8eDJPbZd1pbMbxVUyHg,18034
|
|
90
|
+
reflex/components/base/meta.py,sha256=1WeeIn6Yo35-3LsraerhY5nMFy-OrURFCI0b3thU6lc,1280
|
|
91
|
+
reflex/components/base/meta.pyi,sha256=ciEerqP0Y8cw9Aw2oFvy-PgUHZUqgieEqaJBrJDHelc,29035
|
|
92
92
|
reflex/components/base/script.py,sha256=SqH4UIE9sZgFwvoc239qeLwzktRvNBPZbiGFRj4h9nM,2374
|
|
93
|
-
reflex/components/base/script.pyi,sha256=
|
|
93
|
+
reflex/components/base/script.pyi,sha256=tE8_KuihvLyhhsi_PPmImdMFSMvlPAGDq8npHZgLfUI,10653
|
|
94
94
|
reflex/components/base/strict_mode.py,sha256=_Rl2uGzL8gXTANOpoSU7uxsUQRH5JeTk2EIceWJJa5E,251
|
|
95
|
-
reflex/components/base/strict_mode.pyi,sha256=
|
|
95
|
+
reflex/components/base/strict_mode.pyi,sha256=pAgRgQJ9f6fgFrcIGpx7HahtojGxaoJ8khXpHYNxtjU,2510
|
|
96
96
|
reflex/components/core/__init__.py,sha256=81araQcvIlVNXr1h-kQHaUK46sV0lfJrAlZbishb7-g,1347
|
|
97
|
-
reflex/components/core/__init__.pyi,sha256=
|
|
97
|
+
reflex/components/core/__init__.pyi,sha256=3IZ4XbJAHFR0aKTo3FhF3-t_qJVyfGmFK3GU_IIxLGs,1865
|
|
98
98
|
reflex/components/core/auto_scroll.py,sha256=3jtFUqMUM1R_YyxWjbNVLiLktw6HHp50EzIFTkFtgto,3616
|
|
99
|
-
reflex/components/core/auto_scroll.pyi,sha256=
|
|
99
|
+
reflex/components/core/auto_scroll.pyi,sha256=bZvBS6HBGMZrN8sZIuJs2jaW2efN0yIr_Pd-C0cxgO0,9019
|
|
100
100
|
reflex/components/core/banner.py,sha256=DIjy4-qydJuLYVDKJYtrIeO4HFLdbgpXDVF4o2sRkDs,18568
|
|
101
|
-
reflex/components/core/banner.pyi,sha256=
|
|
101
|
+
reflex/components/core/banner.pyi,sha256=WRU-jleR0jIy-yVG8Wcqraj30DQ3lj3CI2gxoumuTt0,26078
|
|
102
102
|
reflex/components/core/breakpoints.py,sha256=7nNG9Ewjvbk1hB0VoFiQxlDR333Mq2y977CNWjslAWA,2692
|
|
103
103
|
reflex/components/core/client_side_routing.py,sha256=D5LWLTVW8WEuV17nNe14RKmuDhJegam0eYvOoHxh2Ts,1893
|
|
104
|
-
reflex/components/core/client_side_routing.pyi,sha256=
|
|
104
|
+
reflex/components/core/client_side_routing.pyi,sha256=xTWIhAoyxtXWPf_sasPewZ1zNGk8xl50DH-K0oxbkJM,2746
|
|
105
105
|
reflex/components/core/clipboard.py,sha256=nSYYkMOmoIT0v7XAA_reKdZ4_oH-QRUaz1OBZR8XdyM,3363
|
|
106
|
-
reflex/components/core/clipboard.pyi,sha256=
|
|
106
|
+
reflex/components/core/clipboard.pyi,sha256=LZe27mWIbpqVijKl-8gyqjUfJWlJNQ2YQdJ2fcgA6FQ,3360
|
|
107
107
|
reflex/components/core/colors.py,sha256=gkT5o5OqI_BR5fGMcCmBUpaz99XRNol9zAis46WktI4,1564
|
|
108
108
|
reflex/components/core/cond.py,sha256=UjdH5nbya9BxDTzVijn4qlpYKhf09kWjPe4e0iBfq3Y,5718
|
|
109
109
|
reflex/components/core/debounce.py,sha256=P0rj23JKVsx_dzPMVI4HTOyrXhhacxh-QkI4Z9K6KNQ,5022
|
|
110
|
-
reflex/components/core/debounce.pyi,sha256=
|
|
111
|
-
reflex/components/core/foreach.py,sha256=
|
|
110
|
+
reflex/components/core/debounce.pyi,sha256=Gem-sS0yikFm-eABfLYVU9UbujTKl4vhEWEILPvt8uo,3144
|
|
111
|
+
reflex/components/core/foreach.py,sha256=U0vXz1WQjj0gnfkjhgW2cWEfi-gurbsaC5YC8GnqBq4,6269
|
|
112
112
|
reflex/components/core/helmet.py,sha256=9Fr2Tz_J2v8r5t1xeZClL0V5-fEWTiFAXTcJ6bECvAw,220
|
|
113
|
-
reflex/components/core/helmet.pyi,sha256=
|
|
113
|
+
reflex/components/core/helmet.pyi,sha256=gbU_m3uzCFwP4IM7Mqz06TPQvBv-2WbmHqeOQ1s1_pM,2521
|
|
114
114
|
reflex/components/core/html.py,sha256=JKK3MsbuzxtcVXbzvW_Q4TZuF9yk3WwiC9LmQl34rzA,1303
|
|
115
|
-
reflex/components/core/html.pyi,sha256=
|
|
116
|
-
reflex/components/core/match.py,sha256=
|
|
115
|
+
reflex/components/core/html.pyi,sha256=iSqLZHkkS2jf09u1MPA4NWbFmzmUoVbwrrTx_tKRnzI,9074
|
|
116
|
+
reflex/components/core/match.py,sha256=syVnQw0OS2jYpqE9AsLH0uODyjmFJVBqrEPviUYf3Cw,9101
|
|
117
117
|
reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ2ty4wAc,1911
|
|
118
118
|
reflex/components/core/sticky.py,sha256=2B3TxrwG2Rtp_lv1VkMOIF2bqSiT7qYGbqbiZiMKxKY,3856
|
|
119
|
-
reflex/components/core/sticky.pyi,sha256=
|
|
120
|
-
reflex/components/core/upload.py,sha256=
|
|
121
|
-
reflex/components/core/upload.pyi,sha256=
|
|
119
|
+
reflex/components/core/sticky.pyi,sha256=U3VyCnx4hWWORd4yIiIe-mu_IdsPry2iMXrGMw2tLgQ,32906
|
|
120
|
+
reflex/components/core/upload.py,sha256=z3oHPpdy9A9csuSlw9IKi61mEZJWmr37wArbDMAy02k,13460
|
|
121
|
+
reflex/components/core/upload.pyi,sha256=q88GncKmdgG9s1PQkEs0SWGEdzpxdr31UXmDIYq9qhQ,16385
|
|
122
122
|
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
123
123
|
reflex/components/datadisplay/__init__.py,sha256=L8pWWKNHWdUD2fbZRoEKjd_8c_hpDdGYO463hwkoIi4,438
|
|
124
|
-
reflex/components/datadisplay/__init__.pyi,sha256=
|
|
125
|
-
reflex/components/datadisplay/code.py,sha256=
|
|
126
|
-
reflex/components/datadisplay/code.pyi,sha256=
|
|
124
|
+
reflex/components/datadisplay/__init__.pyi,sha256=H3LZkWdrw3RTv_csaIT8qoClgAJTonlGZ5ZMeGMV0Bs,551
|
|
125
|
+
reflex/components/datadisplay/code.py,sha256=KcCw77EzQpXMAL1m4k1_JyqhwWKD0Pvsgtku2ESto6s,12543
|
|
126
|
+
reflex/components/datadisplay/code.pyi,sha256=uTdz5sIDtmio7NijDYMxt2akALpZMyVAAo8ngBSxFi8,41535
|
|
127
127
|
reflex/components/datadisplay/dataeditor.py,sha256=SxvIDyKl9TILOlx6Zga9jCcu0LBc4E1WhrUFJGO6lKs,13496
|
|
128
|
-
reflex/components/datadisplay/dataeditor.pyi,sha256=
|
|
128
|
+
reflex/components/datadisplay/dataeditor.pyi,sha256=qda-3yLFPykvMSrKk-j3EOliVXY8rJHUssL-bYlTSsE,12519
|
|
129
129
|
reflex/components/datadisplay/logo.py,sha256=xvg5TRVRSi2IKn7Kg4oYzWcaFMHfXxUaCp0cQmuKSn0,1993
|
|
130
|
-
reflex/components/datadisplay/shiki_code_block.py,sha256=
|
|
131
|
-
reflex/components/datadisplay/shiki_code_block.pyi,sha256=
|
|
130
|
+
reflex/components/datadisplay/shiki_code_block.py,sha256=qCp4jZO3Ek4mR_1Qs4oxLh-GCEo6VBlpb8B9MDDdw4Y,24503
|
|
131
|
+
reflex/components/datadisplay/shiki_code_block.pyi,sha256=FXGWyG7u3RZQIwhK4M0YAYXRaJ-Pd-Aof_wjrlG7SrY,57323
|
|
132
132
|
reflex/components/el/__init__.py,sha256=nfIjf_cyieEmxptKjA6wRjoongswXv4X3n6vDmsdarI,416
|
|
133
|
-
reflex/components/el/__init__.pyi,sha256=
|
|
133
|
+
reflex/components/el/__init__.pyi,sha256=7P6mNFbjiPyE0vNwUO4B5i-a2cqhjNRSJ7YNL7xKa7E,6194
|
|
134
134
|
reflex/components/el/element.py,sha256=stGVO6A2waCHq2CGQqR_g798hDKkuSZerwB0tYfZpRE,582
|
|
135
|
-
reflex/components/el/element.pyi,sha256=
|
|
135
|
+
reflex/components/el/element.pyi,sha256=z8WHnR-wzs3XGaqJpS6Gj02S_MMljLYp9F3fn6F3DYA,2498
|
|
136
136
|
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
137
137
|
reflex/components/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
|
|
138
138
|
reflex/components/el/constants/react.py,sha256=f1-Vo8iWn2jSrR7vy-UwGbGRvw88UUZnbb3Rb56MSS4,15554
|
|
139
139
|
reflex/components/el/constants/reflex.py,sha256=7ChVeOvzjovZLHa-4vjWEGDqHsefV3tNsa8TKHWFaXM,1697
|
|
140
140
|
reflex/components/el/elements/__init__.py,sha256=IqclwtTctrEpodT3Wulei7RiB2Q5oWTzA7xpNPc6M54,2761
|
|
141
|
-
reflex/components/el/elements/__init__.pyi,sha256=
|
|
141
|
+
reflex/components/el/elements/__init__.pyi,sha256=cv9TAlYcXurFWuF05zkWfVWIHw9C8P_vGdJpT51xpBQ,8540
|
|
142
142
|
reflex/components/el/elements/base.py,sha256=4jnwyCQUHvWcIfwiIWVCiIC_jbwZlkAiOgx73t7tdw8,3075
|
|
143
|
-
reflex/components/el/elements/base.pyi,sha256
|
|
143
|
+
reflex/components/el/elements/base.pyi,sha256=-wd-cLLOx1rXdtAJ_1UlF9B4mtTJyZAs1Y1uYMcp-0M,10204
|
|
144
144
|
reflex/components/el/elements/forms.py,sha256=sPGCaCMxAgAXK3rkAKWI01Ggg8hkunkpZEgmchm5HkQ,21655
|
|
145
|
-
reflex/components/el/elements/forms.pyi,sha256=
|
|
145
|
+
reflex/components/el/elements/forms.pyi,sha256=mq21H_9lIY53lWtmR2iIZMF5hOEaauFdIDU0nimSXbk,170986
|
|
146
146
|
reflex/components/el/elements/inline.py,sha256=q3Ku_x8L9NaXrYQovCfkWwZ5AfXG0VyhGN_OT73kA0Y,4126
|
|
147
|
-
reflex/components/el/elements/inline.pyi,sha256=
|
|
147
|
+
reflex/components/el/elements/inline.pyi,sha256=mWgJ4a_2De__0ZpailJXDpDonEE0861zrIO9Bc039iU,235400
|
|
148
148
|
reflex/components/el/elements/media.py,sha256=3f3zJRDDp0UCzaUIJHZV4RzLrboGhAgAMsOkxgjuVGk,13647
|
|
149
|
-
reflex/components/el/elements/media.pyi,sha256
|
|
149
|
+
reflex/components/el/elements/media.pyi,sha256=4JZS_NrxMskQZjyJLrKliI6XlbJJUpGnTafyabwms4Y,234523
|
|
150
150
|
reflex/components/el/elements/metadata.py,sha256=Uh3DEultI8j-xfbe0CB_sCJPtkX5mvbpbzxeoS9Bj-M,2258
|
|
151
|
-
reflex/components/el/elements/metadata.pyi,sha256=
|
|
151
|
+
reflex/components/el/elements/metadata.pyi,sha256=ml22lHUDH_K6C7kWXiNqh4eLRYg7sDM850WPlG-_KAc,40357
|
|
152
152
|
reflex/components/el/elements/other.py,sha256=WON35QviPNYsBeLQTNbeN7a6m6ixLYIVa4WsDzo9YBY,1378
|
|
153
|
-
reflex/components/el/elements/other.pyi,sha256=
|
|
153
|
+
reflex/components/el/elements/other.pyi,sha256=47cT9eZ4Vd0CLZoJpvYX5ERUQ9-MJmLWtrfjQ0n7WS8,59076
|
|
154
154
|
reflex/components/el/elements/scripts.py,sha256=7YmYlRSWH_dkBhev4ePUDEDqvQWMPWOWmELXKsJxTkk,1223
|
|
155
|
-
reflex/components/el/elements/scripts.pyi,sha256=
|
|
155
|
+
reflex/components/el/elements/scripts.pyi,sha256=0P-Ax_Chq1dCybVVyo0jIQMS0A55fv42Hc-FlYaftYM,27176
|
|
156
156
|
reflex/components/el/elements/sectioning.py,sha256=wVkR35dt4DMHKcJN5f0aglH16xSZzO9-Weesv6bQ_CM,1516
|
|
157
|
-
reflex/components/el/elements/sectioning.pyi,sha256=
|
|
157
|
+
reflex/components/el/elements/sectioning.pyi,sha256=eAgzFAcXZMBJB5zpTymcSnIgp1K-7HFXN4xlkWDgtN8,125073
|
|
158
158
|
reflex/components/el/elements/tables.py,sha256=Rt-C07s39TQm_dHSMaly2J7yD0OZhx9q6G2k5k2IkMo,2176
|
|
159
|
-
reflex/components/el/elements/tables.pyi,sha256=
|
|
159
|
+
reflex/components/el/elements/tables.pyi,sha256=Oum8D0o1GS7f8gqmv7uqK-H9G2onHSQDMZI9OknGX_s,85304
|
|
160
160
|
reflex/components/el/elements/typography.py,sha256=78XFCj1rzFd4a3exppmvwJ9H6UQca2Wj9oLmB1aZaaY,2460
|
|
161
|
-
reflex/components/el/elements/typography.pyi,sha256=
|
|
161
|
+
reflex/components/el/elements/typography.pyi,sha256=bvzEl9aiewu7JR2PIY9UnpkZKNOBkDzAjbAcNwo-YK4,126233
|
|
162
162
|
reflex/components/gridjs/__init__.py,sha256=xJwDm1AZ70L5-t9LLqZwGUtDpijbf1KuMYDT-j8g3pM,88
|
|
163
163
|
reflex/components/gridjs/datatable.py,sha256=7JKrRw1zkpFB0_wwoaIhrVrldsm7-dyi3PASgqLq8Hc,4224
|
|
164
|
-
reflex/components/gridjs/datatable.pyi,sha256=
|
|
164
|
+
reflex/components/gridjs/datatable.pyi,sha256=rJZO5_kdS-JgsLyR4_vVA-b_SfieGynOW2z_DzNbKqM,5445
|
|
165
165
|
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
166
166
|
reflex/components/lucide/icon.py,sha256=9nId075KvvWEVS032vP3qDrrc2N0tOHfvVQb6w1obDQ,34709
|
|
167
|
-
reflex/components/lucide/icon.pyi,sha256=
|
|
167
|
+
reflex/components/lucide/icon.pyi,sha256=r5-UzFXp4n7ZgXEhzjLwLeiLx1VITHYWleqqPAY8aHU,37868
|
|
168
168
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
169
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
170
|
-
reflex/components/markdown/markdown.pyi,sha256=
|
|
169
|
+
reflex/components/markdown/markdown.py,sha256=scDHnmn2n4KHXS2Imqa1jw1wTk1ewCB2MojC9NgKGHQ,15503
|
|
170
|
+
reflex/components/markdown/markdown.pyi,sha256=b1_NsT165Hx7MuzfkiEBaH5JNyrCRa_vuzIYC4mHjq4,4452
|
|
171
171
|
reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
|
|
172
|
-
reflex/components/moment/moment.py,sha256=
|
|
173
|
-
reflex/components/moment/moment.pyi,sha256=
|
|
172
|
+
reflex/components/moment/moment.py,sha256=fhhzrun9USb8J30btpyyDD3JuXF_N7EL5Dou3x7NQYw,4080
|
|
173
|
+
reflex/components/moment/moment.pyi,sha256=CWD8P_lKdVXOVK5lJyhclZgi6BXOqbV3AU9GSiWkPgM,6143
|
|
174
174
|
reflex/components/plotly/__init__.py,sha256=6B_woBJhkrVA9O_AbOTbsA_SxWsqjicYHmLA9FLjGfU,650
|
|
175
|
-
reflex/components/plotly/plotly.py,sha256=
|
|
176
|
-
reflex/components/plotly/plotly.pyi,sha256=
|
|
175
|
+
reflex/components/plotly/plotly.py,sha256=L1J520LEpcKDXzahEZMCzPZCJL2oYlrVeQRHaG_1bjU,14953
|
|
176
|
+
reflex/components/plotly/plotly.pyi,sha256=HG0i5ZcZ8CsA3UWzaWyU2-Xv9e_COKik1aB5oqA7ZeU,47991
|
|
177
177
|
reflex/components/radix/__init__.py,sha256=fRsLvIO3MrTtPOXtmnxYDB9phvzlcbyB_utgpafYMho,474
|
|
178
|
-
reflex/components/radix/__init__.pyi,sha256=
|
|
178
|
+
reflex/components/radix/__init__.pyi,sha256=ke_dGrpFMNHd3MgQ9qiStSQDlGcJ39KVSrpIxayBU3c,3927
|
|
179
179
|
reflex/components/radix/primitives/__init__.py,sha256=R2sdZJqQCYaLScGkXnXDKAjVgV5MidceemooEUtvBt4,443
|
|
180
|
-
reflex/components/radix/primitives/__init__.pyi,sha256=
|
|
180
|
+
reflex/components/radix/primitives/__init__.pyi,sha256=kOCtVqDuSsBt5-lCcqM-3CBJsv-QokWIfkq0_iyqVDU,413
|
|
181
181
|
reflex/components/radix/primitives/accordion.py,sha256=wTg7MwVzQLG3LZHNvbSGeF3R55JKpo3LEr8QsQwxs_0,16394
|
|
182
|
-
reflex/components/radix/primitives/accordion.pyi,sha256=
|
|
182
|
+
reflex/components/radix/primitives/accordion.pyi,sha256=f9R1ZqOFl0E5oqzvcVF3XBitmSJvw7CS1JZ5e-48LF0,28942
|
|
183
183
|
reflex/components/radix/primitives/base.py,sha256=9OvGDI1to8XL_a2hr3fNBQUwTHZBUO424ea2-UTKD18,770
|
|
184
|
-
reflex/components/radix/primitives/base.pyi,sha256=
|
|
184
|
+
reflex/components/radix/primitives/base.pyi,sha256=qM7wN2OVEYJ9FvuYQ3_mT9kxFIko9AVpvl652BMV81w,4895
|
|
185
185
|
reflex/components/radix/primitives/drawer.py,sha256=Nxd745cuNFsiZIZh33gJjm5RfGwrbv-yeSEkHa6OI-8,9262
|
|
186
|
-
reflex/components/radix/primitives/drawer.pyi,sha256=
|
|
186
|
+
reflex/components/radix/primitives/drawer.pyi,sha256=lJvf6IhZER7prbTzILKicfo3M6IKFkgCe2dI2bLRJuY,31165
|
|
187
187
|
reflex/components/radix/primitives/form.py,sha256=oqyJeJNpmG3sRmHqZbI-HaYR0PDbDcJVTR96Um4HFn4,4801
|
|
188
|
-
reflex/components/radix/primitives/form.pyi,sha256=
|
|
188
|
+
reflex/components/radix/primitives/form.pyi,sha256=SVNTtuPilZ6brPGUGpIWgh1gOnSOoM1Yu1wr7CO_2wc,48484
|
|
189
189
|
reflex/components/radix/primitives/progress.py,sha256=UvuUn6eWEhnhqImDvYOwa9Z3CE5gu5EV28uPBbZAT4k,3988
|
|
190
|
-
reflex/components/radix/primitives/progress.pyi,sha256=
|
|
190
|
+
reflex/components/radix/primitives/progress.pyi,sha256=NdbKg6gygh4CETPm-8nfEK5ePXUhiSvujZR7Y__BqTA,17119
|
|
191
191
|
reflex/components/radix/primitives/slider.py,sha256=tS8tqVwoTj9hSiUktxotZBvWoItL4CuhvGnWZrnhek8,5030
|
|
192
|
-
reflex/components/radix/primitives/slider.pyi,sha256=
|
|
192
|
+
reflex/components/radix/primitives/slider.pyi,sha256=4QMe2p2M6Ywx858hPAj5zXtNdSl34UFrkKm9MsAJs44,13096
|
|
193
193
|
reflex/components/radix/themes/__init__.py,sha256=3ASzR_OrjkLXZ6CksGKIQPOcyYZ984NzXrn2UCIdxUc,492
|
|
194
|
-
reflex/components/radix/themes/__init__.pyi,sha256=
|
|
194
|
+
reflex/components/radix/themes/__init__.pyi,sha256=B_xv0vBBRsCOinQasRO3ni_g8xbpucIPXCn5xZckgww,445
|
|
195
195
|
reflex/components/radix/themes/base.py,sha256=D3d-CTeDTXSZu-vAAPZ5xn6Ojy3vvUQV8g72oIHaH_g,8320
|
|
196
|
-
reflex/components/radix/themes/base.pyi,sha256=
|
|
197
|
-
reflex/components/radix/themes/color_mode.py,sha256=
|
|
198
|
-
reflex/components/radix/themes/color_mode.pyi,sha256=
|
|
196
|
+
reflex/components/radix/themes/base.pyi,sha256=JR4QJDYbOFedqr5vwvTuLLa1b87b7gOP5ZyLKfTHgbs,25504
|
|
197
|
+
reflex/components/radix/themes/color_mode.py,sha256=G0QvwE6p_ttSt3pLdNadPh66d1Cn4b4NeRG6QiFa7gg,6513
|
|
198
|
+
reflex/components/radix/themes/color_mode.pyi,sha256=jPQZ1FiBYRBWEIT1ZAJNfMBiOQzD69jBKsni3oB9CPc,21268
|
|
199
199
|
reflex/components/radix/themes/components/__init__.py,sha256=fzc5ghmmbIQ8yaxKQQY83TINb6k2uVPX-wddyTDlQx8,423
|
|
200
|
-
reflex/components/radix/themes/components/__init__.pyi,sha256
|
|
200
|
+
reflex/components/radix/themes/components/__init__.pyi,sha256=rEo3Nzol6kJW0C5BHkNGYMCZ93DP8bUGj_qwEsrbTks,2018
|
|
201
201
|
reflex/components/radix/themes/components/alert_dialog.py,sha256=NBb8bgbF7-r4Z9xlW9yp_O783vtNgKpHZ3WsXAGR0Sw,3312
|
|
202
|
-
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=
|
|
202
|
+
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=gP7JubiVT--ati-0V-cT4c5lMm6ibtEcMrdOI5MKyYI,22577
|
|
203
203
|
reflex/components/radix/themes/components/aspect_ratio.py,sha256=3O75hhQfPvv-ssG06cQF96IXVGjSA2FdhKgyAk4sMEw,402
|
|
204
|
-
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=
|
|
204
|
+
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=TvGbkSDo9k9-mrWajI4BWR252VfwOyQpMAu8CHLU2GE,2880
|
|
205
205
|
reflex/components/radix/themes/components/avatar.py,sha256=_uKbu_xn8H5nZqryOjBaGzjQYRM3m1bWikLX6WjlseI,1092
|
|
206
|
-
reflex/components/radix/themes/components/avatar.pyi,sha256=
|
|
206
|
+
reflex/components/radix/themes/components/avatar.pyi,sha256=q5-edNw84i0JSXmh2sD3HLUA4uhvTD1zZbLwe7kTdDQ,5291
|
|
207
207
|
reflex/components/radix/themes/components/badge.py,sha256=IkTqBKC0vjPb7vFTBlI6qsUlDDDd25o1HPPAc9nqaWg,950
|
|
208
|
-
reflex/components/radix/themes/components/badge.pyi,sha256=
|
|
208
|
+
reflex/components/radix/themes/components/badge.pyi,sha256=TOk4_LFl-1iOF0fCzjO1TFQg_IHlrSYodlKwEPQpDTg,11269
|
|
209
209
|
reflex/components/radix/themes/components/button.py,sha256=j-MugUGpvGnQOU78Y1CLRygmoXXTPdX73Ig2MUH0ATw,1254
|
|
210
|
-
reflex/components/radix/themes/components/button.pyi,sha256
|
|
210
|
+
reflex/components/radix/themes/components/button.pyi,sha256=-xp06v0tykIyiVUGpgPw-wvoXrZfaisXIA6DgGF04S8,13335
|
|
211
211
|
reflex/components/radix/themes/components/callout.py,sha256=sSSLHP5JZfIbviTHd7UcTvKZFTjYhZXburtsQ_P9I6A,2493
|
|
212
|
-
reflex/components/radix/themes/components/callout.pyi,sha256=
|
|
212
|
+
reflex/components/radix/themes/components/callout.pyi,sha256=QH-JZ35u4rUv644BWD3rdbk4OIE93qa3rNB-1eFhDBQ,49615
|
|
213
213
|
reflex/components/radix/themes/components/card.py,sha256=O_n3U1eSY_r0l_Oyt_hw0N5sYoFE5TUR2nbzrFJbe0Q,774
|
|
214
|
-
reflex/components/radix/themes/components/card.pyi,sha256
|
|
214
|
+
reflex/components/radix/themes/components/card.pyi,sha256=l_BaLN2V9RfGHpRbKvwQFM97czCp0WyHaBxKFmwsE00,9746
|
|
215
215
|
reflex/components/radix/themes/components/checkbox.py,sha256=W0rWRg6GNl8qKU5tSM2fxgu-CjXXsmkWWjixrMOovG0,4367
|
|
216
|
-
reflex/components/radix/themes/components/checkbox.pyi,sha256=
|
|
216
|
+
reflex/components/radix/themes/components/checkbox.pyi,sha256=YtVw4E_fplr9O__vr5j2VL8eRdqCWX60pZJETj3znc0,16404
|
|
217
217
|
reflex/components/radix/themes/components/checkbox_cards.py,sha256=uC7BZcz9E780YzC_r8oOd-FEGSzYkeX0qbE8vsH_TsU,1409
|
|
218
|
-
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=
|
|
218
|
+
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=91_54-Cc0T17q4hJsV1aKVhhSNg-41IzvDR7K_mXHAQ,7990
|
|
219
219
|
reflex/components/radix/themes/components/checkbox_group.py,sha256=gdwe5zT2bzR6coB1kOC7fZkddWB4u6gqwLviIucWotY,1594
|
|
220
|
-
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=
|
|
220
|
+
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=4pvzRzo6scXH07WQtzfOO1Q9jig-rzYdtRVYrkncHrQ,7629
|
|
221
221
|
reflex/components/radix/themes/components/context_menu.py,sha256=nfyHrXnlaRB3nha3rl9Yzjyu8rdcd6NOgtf3VXagQkY,12886
|
|
222
|
-
reflex/components/radix/themes/components/context_menu.pyi,sha256=
|
|
222
|
+
reflex/components/radix/themes/components/context_menu.pyi,sha256=gxE1TAe6EZUqXAirTqpWiEwUCuxK_6TDrnkwdO_LJTI,49542
|
|
223
223
|
reflex/components/radix/themes/components/data_list.py,sha256=HONLbVvXZheA6-kuEdr-VM7m-euomyzcVT4ThJ9rLfw,1913
|
|
224
|
-
reflex/components/radix/themes/components/data_list.pyi,sha256=
|
|
224
|
+
reflex/components/radix/themes/components/data_list.pyi,sha256=oCVWT7VqKaimXMGbR5tzXQcUL2754QrM3w6lKsJpge0,12898
|
|
225
225
|
reflex/components/radix/themes/components/dialog.py,sha256=Mo-maY1XGvWzWcG2sAAk1BbVyGj0XJnb7XnpD_ULgoA,2737
|
|
226
|
-
reflex/components/radix/themes/components/dialog.pyi,sha256=
|
|
226
|
+
reflex/components/radix/themes/components/dialog.pyi,sha256=2zjW7Xm97tdA_wjrBsdsNreTLD3PcXdaiYIG7YKa5wE,23376
|
|
227
227
|
reflex/components/radix/themes/components/dropdown_menu.py,sha256=QQgZIhkjxmv3INgSIL4gnskJorTxYVT8eslw58N61Ys,10338
|
|
228
|
-
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=
|
|
228
|
+
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=Z653ONdRqn5tuSE_qADtELrzX7q_k2aJPGkeh4eisZM,29585
|
|
229
229
|
reflex/components/radix/themes/components/hover_card.py,sha256=kcNM2hKxNmpQ-H71DAhcsg0zzHRAQ2Ev73liTTND4xc,3252
|
|
230
|
-
reflex/components/radix/themes/components/hover_card.pyi,sha256=
|
|
230
|
+
reflex/components/radix/themes/components/hover_card.pyi,sha256=aTJHricLBT-dbJQIWAYMh5MftUMTxAsEfDTUJDW2lV0,19208
|
|
231
231
|
reflex/components/radix/themes/components/icon_button.py,sha256=YXO1dcXyw6C8Wu5RH1t_YQtwhyACAXIfL54vpSdJbOo,3151
|
|
232
|
-
reflex/components/radix/themes/components/icon_button.pyi,sha256=
|
|
232
|
+
reflex/components/radix/themes/components/icon_button.pyi,sha256=p1v5FyO1dnunF5cYqazeLQJ-3_3iXOvWhrhUiStRKG4,13413
|
|
233
233
|
reflex/components/radix/themes/components/inset.py,sha256=97IDh6uyB-b0IL_-266OTWobqDBh2HjR7KWVFtX2Ctk,1183
|
|
234
|
-
reflex/components/radix/themes/components/inset.pyi,sha256=
|
|
234
|
+
reflex/components/radix/themes/components/inset.pyi,sha256=r4Og9n2JT0nJNtdA0vLD_gtJXSjovoRLtl0OcC_Mjgo,11118
|
|
235
235
|
reflex/components/radix/themes/components/popover.py,sha256=Ss0Crkv6zdBiK-rQgsR-b5eUaI2ONNKngRc7fjkCvKc,4061
|
|
236
|
-
reflex/components/radix/themes/components/popover.pyi,sha256
|
|
236
|
+
reflex/components/radix/themes/components/popover.pyi,sha256=-tz1-HSm4h4u_r2zyP3oJljWLXbCIOMph2EiE9HkSGQ,18619
|
|
237
237
|
reflex/components/radix/themes/components/progress.py,sha256=4fFDlQ_NVH2dG6Z0aq06ccofVz3CV8IcYN0qmkeo-Wc,2403
|
|
238
|
-
reflex/components/radix/themes/components/progress.pyi,sha256=
|
|
238
|
+
reflex/components/radix/themes/components/progress.pyi,sha256=W-ytkHTErJCZsTwAPgdTTSrdTmQ84MuJXnE2BHkrkA4,5403
|
|
239
239
|
reflex/components/radix/themes/components/radio.py,sha256=mRxsFINGyIoK64sVP3M3noXhrYM8X2MN7WBGmIGeAfQ,865
|
|
240
|
-
reflex/components/radix/themes/components/radio.pyi,sha256=
|
|
240
|
+
reflex/components/radix/themes/components/radio.pyi,sha256=DoUU-9TQwwNZsQa0rNe_ReN-4fy8LZwu-q-8sbUOCdI,4670
|
|
241
241
|
reflex/components/radix/themes/components/radio_cards.py,sha256=mmO08NCVYyfSJB04IOktkDWsbNwKmEP48LdfJSor7pI,3080
|
|
242
|
-
reflex/components/radix/themes/components/radio_cards.pyi,sha256=
|
|
242
|
+
reflex/components/radix/themes/components/radio_cards.pyi,sha256=0oyW1vAL2YW5XkcORcgKjAN4iLtPwWDFuHL91qKm2jU,10145
|
|
243
243
|
reflex/components/radix/themes/components/radio_group.py,sha256=QRUZ-u_SB4F31XhelXkraK_G20nFoGjDrfEkX5s22QE,6916
|
|
244
|
-
reflex/components/radix/themes/components/radio_group.pyi,sha256=
|
|
244
|
+
reflex/components/radix/themes/components/radio_group.pyi,sha256=eipdVmxOH4A2R1ux9rrDaq6bIa_yTLDLM8JnNoq5Sgs,18941
|
|
245
245
|
reflex/components/radix/themes/components/scroll_area.py,sha256=c01UqMhM3cSZUqDrEJAtUfP1n3pz1jA07iNGBjvMB3A,945
|
|
246
|
-
reflex/components/radix/themes/components/scroll_area.pyi,sha256=
|
|
246
|
+
reflex/components/radix/themes/components/scroll_area.pyi,sha256=vBk-ZCKb3ZD26rnjDPLvvATx4WW8MIOyw_ZqLm0BirM,3562
|
|
247
247
|
reflex/components/radix/themes/components/segmented_control.py,sha256=E2kqQ8rQ45it4EeQwS_Oh_h7dIQ4sa_Ia9MFPOQ3YUs,2272
|
|
248
|
-
reflex/components/radix/themes/components/segmented_control.pyi,sha256=
|
|
248
|
+
reflex/components/radix/themes/components/segmented_control.pyi,sha256=ehTNqJjQLI7tO2uZD6s037ntbYAYe9t3w5M8jjTe6eA,8109
|
|
249
249
|
reflex/components/radix/themes/components/select.py,sha256=pHOKI3H954ZlVHK5lf074D6SuEsEglaZVeJkgPFDGPE,8083
|
|
250
|
-
reflex/components/radix/themes/components/select.pyi,sha256
|
|
250
|
+
reflex/components/radix/themes/components/select.pyi,sha256=-CdGS9Nog-kNRE6Q81GadBiciI_2MxlHeJtkwF74WxA,35724
|
|
251
251
|
reflex/components/radix/themes/components/separator.py,sha256=pD7SIh9h32esmfhzyA-9IwPb_08B5b2V0crbYcVAUd8,985
|
|
252
|
-
reflex/components/radix/themes/components/separator.pyi,sha256=
|
|
252
|
+
reflex/components/radix/themes/components/separator.pyi,sha256=m5D8nqz-x-LZWQDxOxRs3emH7SRUfAxX6UBZ46U2h0w,5006
|
|
253
253
|
reflex/components/radix/themes/components/skeleton.py,sha256=oHltF5lOzE8T0poYtIXj3f2x8O_iZ56HCtx0a9AJ_Kw,918
|
|
254
|
-
reflex/components/radix/themes/components/skeleton.pyi,sha256=
|
|
254
|
+
reflex/components/radix/themes/components/skeleton.pyi,sha256=EuDA_WY91nrzZZ50M0UWdGSc37YCmJX7SHSneQXhPVk,3944
|
|
255
255
|
reflex/components/radix/themes/components/slider.py,sha256=8t-V8XTftdSZ3M7KBwu244k8JyGp6eMCz9t3vO5yLlQ,3440
|
|
256
|
-
reflex/components/radix/themes/components/slider.pyi,sha256=
|
|
256
|
+
reflex/components/radix/themes/components/slider.pyi,sha256=vlHCAM87Bgz4nOlE0-YG-5833iSK-sS7qzMQH4yodF0,6932
|
|
257
257
|
reflex/components/radix/themes/components/spinner.py,sha256=_qDonsJKxGYxpJ0mrbbby8Yt8IllYsAkTOYUVUL6cMc,521
|
|
258
|
-
reflex/components/radix/themes/components/spinner.pyi,sha256
|
|
258
|
+
reflex/components/radix/themes/components/spinner.pyi,sha256=2XsLstwr1uvkIeLHyu505q6YO7gJW5xtC4P-moPIB0E,3183
|
|
259
259
|
reflex/components/radix/themes/components/switch.py,sha256=jlxyUeJpisCmLcslnjoP4RN1NyLTwRlQoL99utVUbJo,1795
|
|
260
|
-
reflex/components/radix/themes/components/switch.pyi,sha256=
|
|
260
|
+
reflex/components/radix/themes/components/switch.pyi,sha256=K8XUQEMtuppApAMZRwxkxZHbtDqa_Gd0cqDb1aMt6ZU,5949
|
|
261
261
|
reflex/components/radix/themes/components/table.py,sha256=x0vH4Xkz3OQ0cttD8P0WkmoMqpeqA4qIZvuE7MunqgE,3850
|
|
262
|
-
reflex/components/radix/themes/components/table.pyi,sha256=
|
|
262
|
+
reflex/components/radix/themes/components/table.pyi,sha256=N2oNuk3A5eopPVtIXIMygFbkYXWLb4850t9d2MSjr3g,70523
|
|
263
263
|
reflex/components/radix/themes/components/tabs.py,sha256=ZAG9bQOteF3QK9DI4M0OJNvKbEUTjt55kqoUzdMYDWU,4663
|
|
264
|
-
reflex/components/radix/themes/components/tabs.pyi,sha256=
|
|
264
|
+
reflex/components/radix/themes/components/tabs.pyi,sha256=vft4-1adu_r5oEXsJWdRFzW0lalWkxnufM3rLYDvk0g,16190
|
|
265
265
|
reflex/components/radix/themes/components/text_area.py,sha256=K8hvtjGF_KQyYQucUWdlLLWZRc05DtTUR0HV8PDOtqE,3468
|
|
266
|
-
reflex/components/radix/themes/components/text_area.pyi,sha256=
|
|
266
|
+
reflex/components/radix/themes/components/text_area.pyi,sha256=rFhKNFa6vX4kqiKJXT1yksGsuRcPCXrlFIVeMoAjdw0,14500
|
|
267
267
|
reflex/components/radix/themes/components/text_field.py,sha256=_KhPzL72zcemQtuW49BsQ7sOo5YXnqlYJlCS-12PlyQ,4313
|
|
268
|
-
reflex/components/radix/themes/components/text_field.pyi,sha256=
|
|
268
|
+
reflex/components/radix/themes/components/text_field.pyi,sha256=SgFB9Mfs1A_6rZiCWUhwJi82nOEnaaOKd5rAS_MYMq0,34335
|
|
269
269
|
reflex/components/radix/themes/components/tooltip.py,sha256=gltUqaPjtBKJD7TRMpqQbXkXDUIU6gmekW3ADt2zItQ,4412
|
|
270
|
-
reflex/components/radix/themes/components/tooltip.pyi,sha256=
|
|
270
|
+
reflex/components/radix/themes/components/tooltip.pyi,sha256=cxLC11hP42hGFkYFM8JoLXKVG7_qKjZywnD6KTx8nvA,6823
|
|
271
271
|
reflex/components/radix/themes/layout/__init__.py,sha256=dbRNzJ9pag7luTO3saNvgKzozrGNJ02_Vn9r3SwJHN4,406
|
|
272
|
-
reflex/components/radix/themes/layout/__init__.pyi,sha256=
|
|
272
|
+
reflex/components/radix/themes/layout/__init__.pyi,sha256=sng_WYGple1YiiYqADhuKntz5Dh3j-MkTA3XG6_kimU,785
|
|
273
273
|
reflex/components/radix/themes/layout/base.py,sha256=c3BeWnkQk2Q_tJm3zrEUBFyRaNkVE099dj2Q4w2Xcx0,931
|
|
274
|
-
reflex/components/radix/themes/layout/base.pyi,sha256=
|
|
274
|
+
reflex/components/radix/themes/layout/base.pyi,sha256=Fe-32K_gd7aITLdjHvdSKOB6qZYxwuU7HQQOiO-3D0U,7672
|
|
275
275
|
reflex/components/radix/themes/layout/box.py,sha256=vRVV01ImylfzLUSb69CXO02wxartbIuY77CCds6AimM,355
|
|
276
|
-
reflex/components/radix/themes/layout/box.pyi,sha256=
|
|
276
|
+
reflex/components/radix/themes/layout/box.pyi,sha256=RSLigPV9jby3SLYYBLDqH2k5td8__pVUIxiARHu551Q,9056
|
|
277
277
|
reflex/components/radix/themes/layout/center.py,sha256=iNGsfoVUrVtb-TH3sdOVpxUQHF-2GTVFVCX_KkRuQog,490
|
|
278
|
-
reflex/components/radix/themes/layout/center.pyi,sha256=
|
|
278
|
+
reflex/components/radix/themes/layout/center.pyi,sha256=VchA0TKJR6HS6v488LOCs7LpC6e2L5KOXC3oQDTZmms,11471
|
|
279
279
|
reflex/components/radix/themes/layout/container.py,sha256=xO2GItAa7z_eAAlMo4wk1pK29kY8vYd2jviSk35YMuU,1580
|
|
280
|
-
reflex/components/radix/themes/layout/container.pyi,sha256=
|
|
280
|
+
reflex/components/radix/themes/layout/container.pyi,sha256=r52peOCmef2zQFPawzAC56-snAvqLlzAnw9vx3k_rxA,7791
|
|
281
281
|
reflex/components/radix/themes/layout/flex.py,sha256=6eCcASb8ZVL6kXk5qYNW1FRc0SDwAK94MNN64p5kwE8,1585
|
|
282
|
-
reflex/components/radix/themes/layout/flex.pyi,sha256=
|
|
282
|
+
reflex/components/radix/themes/layout/flex.pyi,sha256=9HUsqs1VUk4AszH8702ZHouiPlmNN_MPbhcXh-Sdw6Y,11666
|
|
283
283
|
reflex/components/radix/themes/layout/grid.py,sha256=eQFrOceqCCHXDt-1M9PzA12iehsia2IxOdRsnWbK4Tg,1745
|
|
284
|
-
reflex/components/radix/themes/layout/grid.pyi,sha256=
|
|
284
|
+
reflex/components/radix/themes/layout/grid.pyi,sha256=gjPu0XGQ5P7q5-c_0BXrgN3Z0gxYwTweDS-r0O9bZh8,12450
|
|
285
285
|
reflex/components/radix/themes/layout/list.py,sha256=eMj2c8xstA8H9R9JZooPdt6jGhZv8g6HtJDukRUg6kU,5375
|
|
286
|
-
reflex/components/radix/themes/layout/list.pyi,sha256=
|
|
286
|
+
reflex/components/radix/themes/layout/list.pyi,sha256=vXDhVKgm1Ck4DNg1c0-wLdlXGxCWXDvaBgvi-kxtVy8,48281
|
|
287
287
|
reflex/components/radix/themes/layout/section.py,sha256=0GqUCgBLnfFIlzo68cp6gxfuweCyvmyV2LZGKUN5bic,652
|
|
288
|
-
reflex/components/radix/themes/layout/section.pyi,sha256=
|
|
288
|
+
reflex/components/radix/themes/layout/section.pyi,sha256=GeV3NHkJOzffEftniNqJMlvfrsruqFO2hraRpaJllFk,9384
|
|
289
289
|
reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
|
|
290
|
-
reflex/components/radix/themes/layout/spacer.pyi,sha256=
|
|
290
|
+
reflex/components/radix/themes/layout/spacer.pyi,sha256=XF8I-AgEukz6vk7NuvggVKSzRlI7t9scKW5By-4TvTE,11471
|
|
291
291
|
reflex/components/radix/themes/layout/stack.py,sha256=IhrN3M4U65quGcKF0P99BHQlNo2JeJeK01U9UoM6JuM,1672
|
|
292
|
-
reflex/components/radix/themes/layout/stack.pyi,sha256=
|
|
292
|
+
reflex/components/radix/themes/layout/stack.pyi,sha256=pcYeNWMCIiAkgFLxP22pyCx_3fdiiIUvUMfxGdNuLDI,32870
|
|
293
293
|
reflex/components/radix/themes/typography/__init__.py,sha256=dEopnJWc8cPs1oUBK3wMHQtzQ_QNM9pIblzEWbZZ4G4,422
|
|
294
|
-
reflex/components/radix/themes/typography/__init__.pyi,sha256=
|
|
294
|
+
reflex/components/radix/themes/typography/__init__.pyi,sha256=AhPSTCyPgUSm0uRi3v2TT3RLRT2nbnz4sSjHZ6bfxgE,445
|
|
295
295
|
reflex/components/radix/themes/typography/base.py,sha256=3eiAZGs_l19E3fE8KpX75llSE2FoeuD3yp84wUnBX0s,409
|
|
296
296
|
reflex/components/radix/themes/typography/blockquote.py,sha256=Fk8-SUisU71Nim2Dlk8wt1gstoLOmqP8Mod4_BSHj4o,949
|
|
297
|
-
reflex/components/radix/themes/typography/blockquote.pyi,sha256=
|
|
297
|
+
reflex/components/radix/themes/typography/blockquote.pyi,sha256=UwslTioPEdBQ_XJDsZadty5edG7kA-Qn-pSP4cDZm9Q,11497
|
|
298
298
|
reflex/components/radix/themes/typography/code.py,sha256=sSshc5GsSOsJPi_SbR7nkAeUjh53jk3EN35zTH1dGow,1151
|
|
299
|
-
reflex/components/radix/themes/typography/code.pyi,sha256=
|
|
299
|
+
reflex/components/radix/themes/typography/code.pyi,sha256=0iuE24yCemd2u__-SBcB33RJRWQiBQbCxQJMZmW6RBw,11740
|
|
300
300
|
reflex/components/radix/themes/typography/heading.py,sha256=YVoQu9cLx5SJSNkliNp5UyVhrwu7vgpIMj1X43jifd0,1575
|
|
301
|
-
reflex/components/radix/themes/typography/heading.pyi,sha256=
|
|
301
|
+
reflex/components/radix/themes/typography/heading.pyi,sha256=bfhGqJJU_MW5WRXc5hZElJmrVnKseBnKLOmefyIB_FE,12558
|
|
302
302
|
reflex/components/radix/themes/typography/link.py,sha256=-wnjg_b2xjGpyfppsqy_53Z_r0Kky2p1gxjDZAmbx84,5013
|
|
303
|
-
reflex/components/radix/themes/typography/link.pyi,sha256=
|
|
303
|
+
reflex/components/radix/themes/typography/link.pyi,sha256=uLdbyTjmc-vlxOnnj9knnP3RsMT_7WkhdiDskKVsiYM,25886
|
|
304
304
|
reflex/components/radix/themes/typography/text.py,sha256=qnpZuqyabh-VuKGBtlOmu3dfZloBXehjCtEk4AmZQLg,2843
|
|
305
|
-
reflex/components/radix/themes/typography/text.pyi,sha256=
|
|
305
|
+
reflex/components/radix/themes/typography/text.pyi,sha256=exTgSHtho1PIDMsT46dNyRmXb2kOH7x8eiryfbmHMlA,73279
|
|
306
306
|
reflex/components/react_player/__init__.py,sha256=1OTHeZkuefi-zIVXc_QZMTBg4_RsGrMaJHducUuZQCU,171
|
|
307
307
|
reflex/components/react_player/audio.py,sha256=_Qrlz5b7U4L8vtYpOOK6piKbROT6w_isnCuDYoxrOik,176
|
|
308
|
-
reflex/components/react_player/audio.pyi,sha256=
|
|
308
|
+
reflex/components/react_player/audio.pyi,sha256=q1mOIMMQqkBIe4sCEI4jKVsrFPjXFbQJODvwfBFde5Q,5814
|
|
309
309
|
reflex/components/react_player/react_player.py,sha256=_yiqTiT73p3Lig0-oVzDxzBxZ75AH7VevS1ENd_ZRBs,3980
|
|
310
|
-
reflex/components/react_player/react_player.pyi,sha256=
|
|
310
|
+
reflex/components/react_player/react_player.pyi,sha256=gAvuhIxYNj-JG9zMHveIIREi0v50f9Jh9fSCUECoAHs,5874
|
|
311
311
|
reflex/components/react_player/video.py,sha256=WmdxzLtrZNNm9Nals5IpYUGhm45P14hR7I1NCaIW-eg,176
|
|
312
|
-
reflex/components/react_player/video.pyi,sha256=
|
|
312
|
+
reflex/components/react_player/video.pyi,sha256=wdleNz97WblmeMU9qtJV77OH6urmgtiQacddc6H3lmg,5814
|
|
313
313
|
reflex/components/recharts/__init__.py,sha256=M8Xa0KVrwloklxPHqZCEBF8HaDluK4w5brXnlIrdNHI,2696
|
|
314
|
-
reflex/components/recharts/__init__.pyi,sha256=
|
|
315
|
-
reflex/components/recharts/cartesian.py,sha256=
|
|
316
|
-
reflex/components/recharts/cartesian.pyi,sha256=
|
|
314
|
+
reflex/components/recharts/__init__.pyi,sha256=MnpXChZwm3DYprV7Ufc-yOptpqKpzRT_sou3oRk11jk,4080
|
|
315
|
+
reflex/components/recharts/cartesian.py,sha256=o0PYn-EwW1UcGDM5eXBcPnzNGFgzphjis_HeQ9-5Sew,34234
|
|
316
|
+
reflex/components/recharts/cartesian.pyi,sha256=RUHfXze8i4vjMWbcExqpOQcGWRqDtHt835tNzlQSA8U,106147
|
|
317
317
|
reflex/components/recharts/charts.py,sha256=jb3017IgoVl4kpWD6SFcF3k9nMmAN67H0QNmvf7Uo0k,18903
|
|
318
|
-
reflex/components/recharts/charts.pyi,sha256=
|
|
318
|
+
reflex/components/recharts/charts.pyi,sha256=khXYNPJpDLWnsAR6LdFYkS7CxUdNeY-RNSjIsFiP0jo,50462
|
|
319
319
|
reflex/components/recharts/general.py,sha256=DuPDfccUWWehc40ji7_JSYHX_AoJyGn_-4y7QhkRxmo,9046
|
|
320
|
-
reflex/components/recharts/general.pyi,sha256
|
|
320
|
+
reflex/components/recharts/general.pyi,sha256=-FcVLHn30AR7SzbjETpfKD5mXfOcv3GJO0w9c6MBmWQ,24242
|
|
321
321
|
reflex/components/recharts/polar.py,sha256=zocHpwWQ0lbg4BTnEBwQ6J9SSJsOYRwZGf9UPzxoNKs,15682
|
|
322
|
-
reflex/components/recharts/polar.pyi,sha256=
|
|
323
|
-
reflex/components/recharts/recharts.py,sha256=
|
|
324
|
-
reflex/components/recharts/recharts.pyi,sha256=
|
|
322
|
+
reflex/components/recharts/polar.pyi,sha256=6_karFX40GH0SwJK7o_VVHu4pn4o-UKx470cxayWnfg,27717
|
|
323
|
+
reflex/components/recharts/recharts.py,sha256=WQsxVm8Aqe5rSbBsulMIMM9yCsNUxcZ8pXqI3ckRoZw,3221
|
|
324
|
+
reflex/components/recharts/recharts.pyi,sha256=9iHH1FiIGNYwn1zqyU2iqa9n71Q04AVfy9gWKkUirN0,7344
|
|
325
325
|
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
326
|
-
reflex/components/sonner/toast.py,sha256=
|
|
327
|
-
reflex/components/sonner/toast.pyi,sha256=
|
|
326
|
+
reflex/components/sonner/toast.py,sha256=W3JF5G1pXNu5FjIUDXzmPTiO6vRJ2dNjfSjaqji68do,12392
|
|
327
|
+
reflex/components/sonner/toast.pyi,sha256=uBGCcTFePImUcG0wBDu80i9fvK5RZXdtl5k9b4sorhA,7788
|
|
328
328
|
reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTkNhW_Q,152
|
|
329
329
|
reflex/components/tags/cond_tag.py,sha256=YHxqq34PD-1D88YivO7kn7FsbW8SfPS2McNg7j_nncI,588
|
|
330
330
|
reflex/components/tags/iter_tag.py,sha256=R7bOI3Xx3mHcSmr6tz8qUlBoDwXsAh2Q6Esd3nsBros,4410
|
|
@@ -338,8 +338,8 @@ reflex/constants/compiler.py,sha256=y72_HbyHGyCVv_Xqr3hB3_Nu1p8NA4gUebBqL8cxY6Y,
|
|
|
338
338
|
reflex/constants/config.py,sha256=8OIjiBdZZJrRVHsNBheMwopE9AwBFFzau0SXqXKcrPg,1715
|
|
339
339
|
reflex/constants/custom_components.py,sha256=joJt4CEt1yKy7wsBH6vYo7_QRW0O_fWXrrTf0VY2q14,1317
|
|
340
340
|
reflex/constants/event.py,sha256=tgoynWQi2L0_Kqc3XhXo7XXL76A-OKhJGHRrNjm7gFw,2885
|
|
341
|
-
reflex/constants/installer.py,sha256=
|
|
342
|
-
reflex/constants/route.py,sha256=
|
|
341
|
+
reflex/constants/installer.py,sha256=wHosh9W2kOE-u65JihEoSCuvD5qdfYIO_MERNgRKCyo,4106
|
|
342
|
+
reflex/constants/route.py,sha256=UBjqaAOxiUxlDZCSY4O2JJChKvA4MZrhUU0E5rNvKbM,2682
|
|
343
343
|
reflex/constants/state.py,sha256=uF_7-M9Gid-P3DjAOq4F1ERplyZhiNccowo_jLrdJrg,323
|
|
344
344
|
reflex/constants/utils.py,sha256=e1ChEvbHfmE_V2UJvCSUhD_qTVAIhEGPpRJSqdSd6PA,780
|
|
345
345
|
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
@@ -347,10 +347,10 @@ reflex/custom_components/custom_components.py,sha256=fSsPqqYv0T81B8LTL6yeol0Qx1e
|
|
|
347
347
|
reflex/experimental/__init__.py,sha256=P8fe8S2e2gy2HCwHFGQzr3lPMmh7qN5Ii2e8ukoPHuQ,1664
|
|
348
348
|
reflex/experimental/client_state.py,sha256=1VOe6rYhpOBOZi7-tZwfOnSNPPdX3tsXzlfgNs7aDrg,10020
|
|
349
349
|
reflex/experimental/hooks.py,sha256=CHYGrAE5t8riltrJmDFgJ4D2Vhmhw-y3B3MSGNlOQow,2366
|
|
350
|
-
reflex/istate/__init__.py,sha256=
|
|
350
|
+
reflex/istate/__init__.py,sha256=afq_pCS5B_REC-Kl3Rbaa538uWi59xNz4INeuENcWnk,2039
|
|
351
351
|
reflex/istate/data.py,sha256=igpPEXs_ZJvK7J3JJ1mLiKnLmS5iFJiMLesCaQZpgqs,5798
|
|
352
352
|
reflex/istate/dynamic.py,sha256=xOQ9upZVPf6ngqcLQZ9HdAAYmoWwJ8kRFPH34Q5HTiM,91
|
|
353
|
-
reflex/istate/manager.py,sha256=
|
|
353
|
+
reflex/istate/manager.py,sha256=te5uQN6n-ctOGrf6NbZUVy6BKgWapLlMtCzDaO6RthU,30412
|
|
354
354
|
reflex/istate/proxy.py,sha256=Q8JrV1m6drVcTNJL9JuN-nKUXclazs96OHl_fhR0UBk,25928
|
|
355
355
|
reflex/istate/storage.py,sha256=gCPoiZxuG-Rw0y-Pz3OC7rv4o08dQ_jK1fE2u8Jhxqg,4339
|
|
356
356
|
reflex/istate/wrappers.py,sha256=p8uuioXRbR5hperwbOJHUcWdu7hukLikQdoR7qrnKsI,909
|
|
@@ -359,10 +359,10 @@ reflex/middleware/hydrate_middleware.py,sha256=1ch7bx2ZhojOR15b-LHD2JztrWCnpPJjT
|
|
|
359
359
|
reflex/middleware/middleware.py,sha256=p5VVoIgQ_NwOg_GOY6g0S4fmrV76_VE1zt-HiwbMw-s,1158
|
|
360
360
|
reflex/plugins/__init__.py,sha256=RQOhlDgFTIFbaBzyKQwaLlftO9bUfWSOEsZiagzr0bk,339
|
|
361
361
|
reflex/plugins/base.py,sha256=fVez3g3OVlu0NZ-ldMMAYFxpj1avyxBoJSNH1wUdJYE,3057
|
|
362
|
-
reflex/plugins/shared_tailwind.py,sha256=
|
|
362
|
+
reflex/plugins/shared_tailwind.py,sha256=UXUndEEcYBZ02klymw-vSZv01IZVLJG3oSaBHpQ617U,6426
|
|
363
363
|
reflex/plugins/sitemap.py,sha256=dbbqIWaim4zl1LEU6Su-gyxd0BgM3E6S8gCExDfkTRo,6154
|
|
364
|
-
reflex/plugins/tailwind_v3.py,sha256=
|
|
365
|
-
reflex/plugins/tailwind_v4.py,sha256=
|
|
364
|
+
reflex/plugins/tailwind_v3.py,sha256=7bXI-zsGoS1pW27-_gskxGaUOQ7NQMPcYkoI5lnmIMA,4819
|
|
365
|
+
reflex/plugins/tailwind_v4.py,sha256=JMhP6abjmu8pRVUxHKuGYVfFDGJ3q0CbJ5b7poBhQTk,5239
|
|
366
366
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
367
367
|
reflex/utils/build.py,sha256=lk8hE69onG95dv-LxRhjtEugct1g-KcWPUDorzqeGIE,7964
|
|
368
368
|
reflex/utils/codespaces.py,sha256=kEQ-j-jclTukFpXDlYgNp95kYMGDrQmP3VNEoYGZ1u4,3052
|
|
@@ -370,22 +370,22 @@ reflex/utils/compat.py,sha256=aSJH_M6iomgHPQ4onQ153xh1MWqPi3HSYDzE68N6gZM,2635
|
|
|
370
370
|
reflex/utils/console.py,sha256=OFyXqnyhpAgXCDM7m5lokoUMjvXMohc2ftgrmcf62nc,11500
|
|
371
371
|
reflex/utils/decorator.py,sha256=DVrlVGljV5OchMs-5_y1CbbqnCWlH6lv-dFko8yHxVY,1738
|
|
372
372
|
reflex/utils/exceptions.py,sha256=Wwu7Ji2xgq521bJKtU2NgjwhmFfnG8erirEVN2h8S-g,8884
|
|
373
|
-
reflex/utils/exec.py,sha256=
|
|
373
|
+
reflex/utils/exec.py,sha256=EaJX92P2vfq29TlS7u7GR_eOrUpgqujv4p1W3F-fxyE,20884
|
|
374
374
|
reflex/utils/export.py,sha256=Z2AHuhkxGQzOi9I90BejQ4qEcD0URr2i-ZU5qTJt7eQ,2562
|
|
375
|
-
reflex/utils/format.py,sha256=
|
|
376
|
-
reflex/utils/imports.py,sha256=
|
|
375
|
+
reflex/utils/format.py,sha256=6lgPpYsArWDwGuC_BT-X9g4BnCG14vvH7-oNjrCA5Xc,21119
|
|
376
|
+
reflex/utils/imports.py,sha256=Ov-lqv-PfsPl3kTEW13r5aDauIfn6TqzEMyv42RKLOA,3761
|
|
377
377
|
reflex/utils/lazy_loader.py,sha256=UREKeql_aSusSFMn6qldyol4n8qD3Sm9Wg7LLICjJgQ,4136
|
|
378
|
-
reflex/utils/misc.py,sha256=
|
|
378
|
+
reflex/utils/misc.py,sha256=KQh1swi_FZ4a_YJOnRMWE5hikNKZXarwMY9t1MkoSoA,2973
|
|
379
379
|
reflex/utils/net.py,sha256=HEHA8L5g7L9s0fFG4dTiZzB9PFO_0WRrlbMgpZr_GAQ,4093
|
|
380
380
|
reflex/utils/path_ops.py,sha256=_RS17IQDNr5vcoLLGZx2-z1E5WP-JgDHvaRAOgqrZiU,8154
|
|
381
|
-
reflex/utils/prerequisites.py,sha256=
|
|
382
|
-
reflex/utils/processes.py,sha256=
|
|
383
|
-
reflex/utils/pyi_generator.py,sha256=
|
|
381
|
+
reflex/utils/prerequisites.py,sha256=L2tCFqqiYqygRbQ0JMMBduMdsMkKJLDvzGKZnvI1Enc,66001
|
|
382
|
+
reflex/utils/processes.py,sha256=3h93VXTpJaXcZunrqRPrPyviVsRx5o5GOt2UZrpwT8I,15847
|
|
383
|
+
reflex/utils/pyi_generator.py,sha256=Qm_og4yQcJ3-dwMfGJ2QhPxiFng3lftPJne-dMCC8C0,45532
|
|
384
384
|
reflex/utils/redir.py,sha256=3JG0cRdfIZnFIBHHN32ynD5cfbUZa7gLRxzrxRGGl5I,1751
|
|
385
385
|
reflex/utils/registry.py,sha256=DEF7csYQ5VnrZhy6ULVfMlceh7XVH0pks96lIyyThuc,1882
|
|
386
386
|
reflex/utils/serializers.py,sha256=sVLfbWIBKPpmo0CVVxoxXGu0K3R9mYMWgaI02LXZmcM,13952
|
|
387
|
-
reflex/utils/telemetry.py,sha256=
|
|
388
|
-
reflex/utils/types.py,sha256=
|
|
387
|
+
reflex/utils/telemetry.py,sha256=9k5S6dST_6rylhKyLMlnwzsxZ4p_Q0oikxOBpTckQxw,7448
|
|
388
|
+
reflex/utils/types.py,sha256=P358rXSLGXBdeE-RpT7DD6q4_YkgfNMEOHoyIJLztVU,38358
|
|
389
389
|
reflex/vars/__init__.py,sha256=85eXMt32bFoKtMdH3KxYRMD8mtnKyYiQcThPxJLoW1k,1359
|
|
390
390
|
reflex/vars/base.py,sha256=IGCU5iwZSsVMPVQqODEjmHJrskqfpfMIQ2yzcVFMoSQ,112940
|
|
391
391
|
reflex/vars/datetime.py,sha256=F2Jv_bfydipFSkIQ1F6x5MnSgFEyES9Vq5RG_uGH81E,5118
|
|
@@ -395,8 +395,8 @@ reflex/vars/number.py,sha256=tO7pnvFaBsedq1HWT4skytnSqHWMluGEhUbjAUMx8XQ,28190
|
|
|
395
395
|
reflex/vars/object.py,sha256=BDmeiwG8v97s_BnR1Egq3NxOKVjv9TfnREB3cz0zZtk,17322
|
|
396
396
|
reflex/vars/sequence.py,sha256=1kBrqihspyjyQ1XDqFPC8OpVGtZs_EVkOdIKBro5ilA,55249
|
|
397
397
|
scripts/hatch_build.py,sha256=-4pxcLSFmirmujGpQX9UUxjhIC03tQ_fIQwVbHu9kc0,1861
|
|
398
|
-
reflex-0.8.
|
|
399
|
-
reflex-0.8.
|
|
400
|
-
reflex-0.8.
|
|
401
|
-
reflex-0.8.
|
|
402
|
-
reflex-0.8.
|
|
398
|
+
reflex-0.8.0a6.dist-info/METADATA,sha256=o234MDuUTRMP6ROap8i9MnfjD2cHQuAo6lBfOIKuknA,12371
|
|
399
|
+
reflex-0.8.0a6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
400
|
+
reflex-0.8.0a6.dist-info/entry_points.txt,sha256=Rxt4dXc7MLBNt5CSHTehVPuSe9Xqow4HLX55nD9tQQ0,45
|
|
401
|
+
reflex-0.8.0a6.dist-info/licenses/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
402
|
+
reflex-0.8.0a6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|