reflex 0.6.8a2__py3-none-any.whl → 0.7.0a2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of reflex might be problematic. Click here for more details.
- reflex/.templates/jinja/custom_components/pyproject.toml.jinja2 +1 -1
- reflex/.templates/jinja/web/pages/_app.js.jinja2 +7 -7
- reflex/.templates/jinja/web/pages/utils.js.jinja2 +3 -3
- reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +1 -4
- reflex/.templates/web/utils/state.js +65 -36
- reflex/__init__.py +4 -17
- reflex/__init__.pyi +1 -2
- reflex/app.py +249 -116
- reflex/app_mixins/lifespan.py +9 -9
- reflex/app_mixins/middleware.py +6 -6
- reflex/app_module_for_backend.py +3 -7
- reflex/base.py +7 -7
- reflex/compiler/compiler.py +8 -0
- reflex/compiler/utils.py +35 -6
- reflex/components/base/app_wrap.pyi +16 -16
- reflex/components/base/bare.py +1 -1
- reflex/components/base/body.pyi +16 -16
- reflex/components/base/document.pyi +76 -76
- reflex/components/base/error_boundary.py +2 -1
- reflex/components/base/error_boundary.pyi +19 -22
- reflex/components/base/fragment.pyi +16 -16
- reflex/components/base/head.pyi +31 -31
- reflex/components/base/link.pyi +31 -31
- reflex/components/base/meta.py +2 -2
- reflex/components/base/meta.pyi +61 -61
- reflex/components/base/script.pyi +19 -19
- reflex/components/base/strict_mode.py +10 -0
- reflex/components/base/strict_mode.pyi +57 -0
- reflex/components/component.py +38 -77
- reflex/components/core/banner.py +159 -4
- reflex/components/core/banner.pyi +162 -76
- reflex/components/core/breakpoints.py +3 -1
- reflex/components/core/client_side_routing.py +1 -1
- reflex/components/core/client_side_routing.pyi +32 -32
- reflex/components/core/clipboard.pyi +17 -20
- reflex/components/core/cond.py +9 -10
- reflex/components/core/debounce.py +1 -1
- reflex/components/core/debounce.pyi +17 -17
- reflex/components/core/foreach.py +28 -3
- reflex/components/core/html.py +1 -1
- reflex/components/core/html.pyi +16 -16
- reflex/components/core/match.py +5 -5
- reflex/components/core/sticky.py +160 -0
- reflex/components/core/sticky.pyi +449 -0
- reflex/components/core/upload.py +2 -2
- reflex/components/core/upload.pyi +80 -88
- reflex/components/datadisplay/code.py +5 -14
- reflex/components/datadisplay/code.pyi +31 -31
- reflex/components/datadisplay/dataeditor.py +7 -4
- reflex/components/datadisplay/dataeditor.pyi +40 -54
- reflex/components/datadisplay/logo.py +13 -8
- reflex/components/datadisplay/shiki_code_block.py +14 -9
- reflex/components/datadisplay/shiki_code_block.pyi +46 -46
- reflex/components/dynamic.py +22 -3
- reflex/components/el/constants/reflex.py +1 -1
- reflex/components/el/element.py +1 -1
- reflex/components/el/element.pyi +16 -16
- reflex/components/el/elements/base.pyi +16 -16
- reflex/components/el/elements/forms.py +4 -4
- reflex/components/el/elements/forms.pyi +224 -258
- reflex/components/el/elements/inline.pyi +421 -421
- reflex/components/el/elements/media.pyi +376 -376
- reflex/components/el/elements/metadata.pyi +91 -91
- reflex/components/el/elements/other.pyi +106 -106
- reflex/components/el/elements/scripts.pyi +46 -46
- reflex/components/el/elements/sectioning.pyi +226 -226
- reflex/components/el/elements/tables.pyi +151 -151
- reflex/components/el/elements/typography.pyi +226 -226
- reflex/components/gridjs/datatable.pyi +31 -31
- reflex/components/lucide/icon.py +46 -8
- reflex/components/lucide/icon.pyi +85 -31
- reflex/components/markdown/markdown.py +10 -8
- reflex/components/markdown/markdown.pyi +16 -16
- reflex/components/moment/moment.py +2 -2
- reflex/components/moment/moment.pyi +17 -19
- reflex/components/next/base.pyi +16 -16
- reflex/components/next/image.py +16 -4
- reflex/components/next/image.pyi +22 -20
- reflex/components/next/link.py +1 -1
- reflex/components/next/link.pyi +16 -16
- reflex/components/next/video.pyi +16 -16
- reflex/components/plotly/plotly.py +5 -5
- reflex/components/plotly/plotly.pyi +34 -44
- reflex/components/props.py +3 -3
- reflex/components/radix/__init__.pyi +1 -1
- reflex/components/radix/primitives/accordion.py +9 -5
- reflex/components/radix/primitives/accordion.pyi +110 -108
- reflex/components/radix/primitives/base.pyi +31 -31
- reflex/components/radix/primitives/drawer.py +5 -2
- reflex/components/radix/primitives/drawer.pyi +179 -187
- reflex/components/radix/primitives/form.pyi +160 -172
- reflex/components/radix/primitives/progress.py +1 -1
- reflex/components/radix/primitives/progress.pyi +76 -76
- reflex/components/radix/primitives/slider.py +1 -1
- reflex/components/radix/primitives/slider.pyi +78 -82
- reflex/components/radix/themes/base.pyi +121 -121
- reflex/components/radix/themes/color_mode.py +11 -9
- reflex/components/radix/themes/color_mode.pyi +47 -49
- reflex/components/radix/themes/components/alert_dialog.py +3 -0
- reflex/components/radix/themes/components/alert_dialog.pyi +110 -112
- reflex/components/radix/themes/components/aspect_ratio.pyi +16 -16
- reflex/components/radix/themes/components/avatar.pyi +16 -16
- reflex/components/radix/themes/components/badge.pyi +16 -16
- reflex/components/radix/themes/components/button.pyi +16 -16
- reflex/components/radix/themes/components/callout.pyi +76 -76
- reflex/components/radix/themes/components/card.py +1 -1
- reflex/components/radix/themes/components/card.pyi +17 -17
- reflex/components/radix/themes/components/checkbox.pyi +49 -55
- reflex/components/radix/themes/components/checkbox_cards.pyi +31 -31
- reflex/components/radix/themes/components/checkbox_group.pyi +31 -31
- reflex/components/radix/themes/components/context_menu.py +5 -0
- reflex/components/radix/themes/components/context_menu.pyi +149 -155
- reflex/components/radix/themes/components/data_list.pyi +61 -61
- reflex/components/radix/themes/components/dialog.py +3 -0
- reflex/components/radix/themes/components/dialog.pyi +113 -117
- reflex/components/radix/themes/components/dropdown_menu.py +5 -0
- reflex/components/radix/themes/components/dropdown_menu.pyi +133 -137
- reflex/components/radix/themes/components/hover_card.py +3 -0
- reflex/components/radix/themes/components/hover_card.pyi +63 -67
- reflex/components/radix/themes/components/icon_button.py +2 -2
- reflex/components/radix/themes/components/icon_button.pyi +17 -16
- reflex/components/radix/themes/components/inset.pyi +16 -16
- reflex/components/radix/themes/components/popover.py +3 -0
- reflex/components/radix/themes/components/popover.pyi +68 -70
- reflex/components/radix/themes/components/progress.pyi +16 -16
- reflex/components/radix/themes/components/radio.pyi +16 -16
- reflex/components/radix/themes/components/radio_cards.py +2 -0
- reflex/components/radix/themes/components/radio_cards.pyi +32 -34
- reflex/components/radix/themes/components/radio_group.py +1 -1
- reflex/components/radix/themes/components/radio_group.pyi +62 -64
- reflex/components/radix/themes/components/scroll_area.pyi +16 -16
- reflex/components/radix/themes/components/segmented_control.pyi +32 -35
- reflex/components/radix/themes/components/select.py +4 -0
- reflex/components/radix/themes/components/select.pyi +145 -157
- reflex/components/radix/themes/components/separator.pyi +16 -16
- reflex/components/radix/themes/components/skeleton.py +3 -0
- reflex/components/radix/themes/components/skeleton.pyi +16 -16
- reflex/components/radix/themes/components/slider.pyi +22 -28
- reflex/components/radix/themes/components/spinner.pyi +16 -16
- reflex/components/radix/themes/components/switch.pyi +17 -19
- reflex/components/radix/themes/components/table.pyi +106 -106
- reflex/components/radix/themes/components/tabs.py +3 -0
- reflex/components/radix/themes/components/tabs.pyi +78 -82
- reflex/components/radix/themes/components/text_area.py +12 -0
- reflex/components/radix/themes/components/text_area.pyi +21 -33
- reflex/components/radix/themes/components/text_field.py +1 -1
- reflex/components/radix/themes/components/text_field.pyi +52 -80
- reflex/components/radix/themes/components/tooltip.py +6 -1
- reflex/components/radix/themes/components/tooltip.pyi +20 -21
- reflex/components/radix/themes/layout/__init__.pyi +1 -1
- reflex/components/radix/themes/layout/base.pyi +16 -16
- reflex/components/radix/themes/layout/box.pyi +16 -16
- reflex/components/radix/themes/layout/center.pyi +16 -16
- reflex/components/radix/themes/layout/container.pyi +16 -16
- reflex/components/radix/themes/layout/flex.pyi +16 -16
- reflex/components/radix/themes/layout/grid.pyi +16 -16
- reflex/components/radix/themes/layout/list.py +2 -2
- reflex/components/radix/themes/layout/list.pyi +76 -76
- reflex/components/radix/themes/layout/section.pyi +16 -16
- reflex/components/radix/themes/layout/spacer.pyi +16 -16
- reflex/components/radix/themes/layout/stack.py +2 -2
- reflex/components/radix/themes/layout/stack.pyi +46 -46
- reflex/components/radix/themes/typography/blockquote.pyi +16 -16
- reflex/components/radix/themes/typography/code.pyi +16 -16
- reflex/components/radix/themes/typography/heading.pyi +16 -16
- reflex/components/radix/themes/typography/link.py +1 -1
- reflex/components/radix/themes/typography/link.pyi +16 -16
- reflex/components/radix/themes/typography/text.py +2 -2
- reflex/components/radix/themes/typography/text.pyi +106 -106
- reflex/components/react_player/audio.pyi +33 -39
- reflex/components/react_player/react_player.py +1 -1
- reflex/components/react_player/react_player.pyi +32 -38
- reflex/components/react_player/video.pyi +33 -39
- reflex/components/recharts/__init__.py +2 -0
- reflex/components/recharts/__init__.pyi +2 -0
- reflex/components/recharts/cartesian.pyi +282 -282
- reflex/components/recharts/charts.py +15 -15
- reflex/components/recharts/charts.pyi +164 -164
- reflex/components/recharts/general.py +19 -4
- reflex/components/recharts/general.pyi +132 -81
- reflex/components/recharts/polar.py +2 -2
- reflex/components/recharts/polar.pyi +55 -55
- reflex/components/recharts/recharts.py +4 -4
- reflex/components/recharts/recharts.pyi +31 -31
- reflex/components/sonner/toast.py +15 -13
- reflex/components/sonner/toast.pyi +22 -22
- reflex/components/suneditor/editor.py +6 -4
- reflex/components/suneditor/editor.pyi +26 -40
- reflex/components/tags/iter_tag.py +3 -3
- reflex/components/tags/tag.py +25 -3
- reflex/config.py +48 -15
- reflex/constants/__init__.py +1 -0
- reflex/constants/base.py +4 -1
- reflex/constants/compiler.py +5 -2
- reflex/constants/config.py +8 -1
- reflex/constants/installer.py +9 -9
- reflex/constants/style.py +1 -1
- reflex/custom_components/custom_components.py +9 -7
- reflex/event.py +215 -208
- reflex/experimental/__init__.py +19 -11
- reflex/experimental/client_state.py +53 -28
- reflex/experimental/hooks.py +5 -5
- reflex/experimental/layout.py +8 -5
- reflex/experimental/layout.pyi +79 -83
- reflex/experimental/misc.py +3 -3
- reflex/istate/wrappers.py +1 -1
- reflex/middleware/hydrate_middleware.py +2 -2
- reflex/model.py +11 -6
- reflex/page.py +5 -5
- reflex/reflex.py +90 -19
- reflex/route.py +1 -1
- reflex/state.py +358 -401
- reflex/style.py +27 -3
- reflex/testing.py +29 -23
- reflex/utils/build.py +6 -2
- reflex/utils/codespaces.py +1 -4
- reflex/utils/compat.py +6 -5
- reflex/utils/console.py +52 -16
- reflex/utils/exceptions.py +89 -26
- reflex/utils/exec.py +69 -74
- reflex/utils/export.py +6 -1
- reflex/utils/format.py +8 -40
- reflex/utils/imports.py +2 -2
- reflex/utils/lazy_loader.py +7 -1
- reflex/utils/path_ops.py +28 -14
- reflex/utils/prerequisites.py +326 -67
- reflex/utils/processes.py +45 -32
- reflex/utils/pyi_generator.py +39 -33
- reflex/utils/registry.py +4 -4
- reflex/utils/serializers.py +1 -1
- reflex/utils/telemetry.py +5 -4
- reflex/utils/types.py +42 -18
- reflex/vars/base.py +656 -333
- reflex/vars/datetime.py +6 -7
- reflex/vars/dep_tracking.py +344 -0
- reflex/vars/function.py +11 -5
- reflex/vars/number.py +31 -43
- reflex/vars/object.py +63 -62
- reflex/vars/sequence.py +79 -67
- {reflex-0.6.8a2.dist-info → reflex-0.7.0a2.dist-info}/METADATA +7 -8
- reflex-0.7.0a2.dist-info/RECORD +401 -0
- {reflex-0.6.8a2.dist-info → reflex-0.7.0a2.dist-info}/WHEEL +1 -1
- reflex/experimental/assets.py +0 -37
- reflex-0.6.8a2.dist-info/RECORD +0 -397
- {reflex-0.6.8a2.dist-info → reflex-0.7.0a2.dist-info}/LICENSE +0 -0
- {reflex-0.6.8a2.dist-info → reflex-0.7.0a2.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,401 @@
|
|
|
1
|
+
reflex/.templates/apps/blank/assets/favicon.ico,sha256=baxxgDAQ2V4-G5Q4S2yK5uUJTUGkv-AOWBQ0xd6myUo,4286
|
|
2
|
+
reflex/.templates/apps/blank/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
reflex/.templates/apps/blank/code/blank.py,sha256=oKnsBBZM1-_RFAuwGKgfiCzgsrHlN_m_XP0-Fpnld7k,926
|
|
4
|
+
reflex/.templates/jinja/app/rxconfig.py.jinja2,sha256=Scfnv_vZXIPQcz8zNIa4FmjEym1U5VMMWX4lryUMi10,74
|
|
5
|
+
reflex/.templates/jinja/custom_components/README.md.jinja2,sha256=qA4XZDxOTc2gRIG7CO1VvVawOgThwZqU2RZvRTPhXwE,127
|
|
6
|
+
reflex/.templates/jinja/custom_components/__init__.py.jinja2,sha256=z5n2tvoS7iNDaM6mUGKETdpGlC0oA1_rrYURu7O_xpk,32
|
|
7
|
+
reflex/.templates/jinja/custom_components/demo_app.py.jinja2,sha256=ipbKtObNqQLcwbFowod_bSWW4bttW_8bNyTXl7JL1zg,826
|
|
8
|
+
reflex/.templates/jinja/custom_components/pyproject.toml.jinja2,sha256=HG-k3pruUlMy7xYz339hgFkNMTLqB-C_FTLKkOgfBPM,630
|
|
9
|
+
reflex/.templates/jinja/custom_components/src.py.jinja2,sha256=e80PwMI6NoeQtGJ0NXWhYrkqUe7jvvJTFuztYQe-R5w,2403
|
|
10
|
+
reflex/.templates/jinja/web/package.json.jinja2,sha256=YU9PF8WgiQ8OPlG3oLDX31t2R0o6DFntCh698NTiDK8,548
|
|
11
|
+
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=s0pSHZAZB9SUI3PabTB8uB4I3kehMc-L2DXBxSW6iQY,1375
|
|
12
|
+
reflex/.templates/jinja/web/pages/_document.js.jinja2,sha256=E2r3MWp-gimAa6DdRs9ErQpPEyjS_yV5fdid_wdOOlA,182
|
|
13
|
+
reflex/.templates/jinja/web/pages/base_page.js.jinja2,sha256=-Jykv29ZqzsQyyRe_iR2gUD5ac-X5RhDrGs0-diOMOA,400
|
|
14
|
+
reflex/.templates/jinja/web/pages/component.js.jinja2,sha256=1Pui62uSL7LYA7FXZrh9ZmhKH8vHYu663eR134hhsAY,86
|
|
15
|
+
reflex/.templates/jinja/web/pages/custom_component.js.jinja2,sha256=2yj6YbuxHy3ztrbh8iB5cngB5pClQmD2ke4pS2Uq0BI,454
|
|
16
|
+
reflex/.templates/jinja/web/pages/index.js.jinja2,sha256=1Vh4XCF8-ekVgiqwZzO7ekcY-tTKmS8FUjPrmKyhJJo,376
|
|
17
|
+
reflex/.templates/jinja/web/pages/macros.js.jinja2,sha256=RtMZ6eufmMrHghNDMKpueSAhd-znKjgBbJXAAHFc7vU,901
|
|
18
|
+
reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=E_CwG5o4pKteF1-Qjltkx9-8QGNSDoB-HvFgmgA4CJA,337
|
|
19
|
+
reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9u5xOliKWxjgmnia6AJbNnII97SC-dt_KSU,101
|
|
20
|
+
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=RRsAXc5VM5SJ5jgxc0M6XSDxRUGefUdK85TTEEZ1d3I,3653
|
|
21
|
+
reflex/.templates/jinja/web/styles/styles.css.jinja2,sha256=4-CvqGR8-nRzkuCOSp_PdqmhPEmOs_kOhskOlhLMEUg,141
|
|
22
|
+
reflex/.templates/jinja/web/tailwind.config.js.jinja2,sha256=uZMIvtL94OZh6h8zsduv3ox6EXnnYgfVXB_5moOe86E,761
|
|
23
|
+
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=p2aENgsP71xZ5mSfT0QjTfLSd4odtmAJu7GTvddgfhs,3983
|
|
24
|
+
reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=OSpBMh0Z9tTeqb10js4ZtnE9s1RV4gJfE8629csST8M,26
|
|
25
|
+
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
26
|
+
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=vW3ZdBg1e02u34U0ZcAKXgBjsXcTwgQ8lhxVw2YBIHo,1589
|
|
27
|
+
reflex/.templates/web/components/shiki/code.js,sha256=ohs-hdDvNSnlK_wEG4wzneIBh4arP1ETHikyJCeSBVk,1158
|
|
28
|
+
reflex/.templates/web/jsconfig.json,sha256=rhQZZRBYxBWclFYTeU6UakzbGveM4qyRQZUpEAVhyqY,118
|
|
29
|
+
reflex/.templates/web/next.config.js,sha256=ZpGOqo9wHEbt0S08G70VfUNUjFe79UXo7Cde8X8V10E,118
|
|
30
|
+
reflex/.templates/web/postcss.config.js,sha256=oEjUS1dzudKcmoPCD_B1ss2m1K14VDM0S6GAyrs1Ric,108
|
|
31
|
+
reflex/.templates/web/styles/tailwind.css,sha256=wGOoICTy1G0e5bWZ4LYOVgRa3ZT7M44tC4g6CKh6ZPo,112
|
|
32
|
+
reflex/.templates/web/utils/client_side_routing.js,sha256=za3bslTR0cKLC4h-bxAr48nJFj0nPwrj28Dlv2A3dV4,1431
|
|
33
|
+
reflex/.templates/web/utils/helpers/dataeditor.js,sha256=anZgi8RJ_J0yqDez1Ks51fNDIQOvP3WkIm1QRDwccSk,1622
|
|
34
|
+
reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseLgQVk-DW-eFiHJYO9As,528
|
|
35
|
+
reflex/.templates/web/utils/helpers/paste.js,sha256=ef30HsR83jRzzvZnl8yV79yqFP8TC_u8SlN99cCS_OM,1799
|
|
36
|
+
reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
|
|
37
|
+
reflex/.templates/web/utils/helpers/throttle.js,sha256=qxeyaEojaTeX36FPGftzVWrzDsRQU4iqg3U9RJz9Vj4,566
|
|
38
|
+
reflex/.templates/web/utils/state.js,sha256=Xd6nlwJ0B8FXvWbEm0Csv-CpJo7NiFBUO03oByQgaak,29766
|
|
39
|
+
reflex/__init__.py,sha256=vaj8MEv0GwrvMzAYQeayyMvRE4TuAD1Xx3pDpjiY3sA,10289
|
|
40
|
+
reflex/__init__.pyi,sha256=fOSkQZ2RHNzoLXqoVy-2gC5ys45Erxia1yPp34UFk_k,11235
|
|
41
|
+
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
42
|
+
reflex/admin.py,sha256=_3pkkauMiTGJJ0kwAEBnsUWAgZZ_1WNnCaaObbhpmUI,374
|
|
43
|
+
reflex/app.py,sha256=Kdt-6MRvnSvi8aPjNUdKc5Elwp3vYESEDMZYrICV3oU,61428
|
|
44
|
+
reflex/app_mixins/__init__.py,sha256=Oegz3-gZLP9p2OAN5ALNbsgxuNQfS6lGZgQA8cc-9mQ,137
|
|
45
|
+
reflex/app_mixins/lifespan.py,sha256=Xs5KiidoyO921oaBuEg7zaR8B1_SPYDZLouel6u9PRo,3298
|
|
46
|
+
reflex/app_mixins/middleware.py,sha256=lB8I67SEbqcJhp3aqMLZFIZekCYKeMby-Ph2sedIYJI,3349
|
|
47
|
+
reflex/app_mixins/mixin.py,sha256=si0Pa0U1EtJc-a6iZntqU9B7_NrPILwrGFxk9mKHBCE,317
|
|
48
|
+
reflex/app_module_for_backend.py,sha256=iuEYcJNRai59vReNUIZgixtYlFHYcYp_LNFB9DPQnKs,1134
|
|
49
|
+
reflex/assets.py,sha256=M3pT3phlwIBUr4r44jj2zLJUVUzLAdYex2rpU98-Pq8,3395
|
|
50
|
+
reflex/base.py,sha256=2ft5udkFRgZpSA8WbkkCk4tUumj6YsGOUM-RDYDCa20,4236
|
|
51
|
+
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
52
|
+
reflex/compiler/compiler.py,sha256=8fa-IvHJKpk3URrfEjY049Zv220o4BEZ8Kokdkd4QhY,21046
|
|
53
|
+
reflex/compiler/templates.py,sha256=XsimfIuF-aYnk7r1LfLVJWW8447Lra32cxZBrw20YnU,5900
|
|
54
|
+
reflex/compiler/utils.py,sha256=6UfBj9I8Y_kZ1HQj6j-wWAV2FoSuPTbI-n0REs6iWs4,15902
|
|
55
|
+
reflex/components/__init__.py,sha256=zbIXThv1WPI0FdIGf9G9RAmGoCRoGy7nHcSZ8K5D5bA,624
|
|
56
|
+
reflex/components/__init__.pyi,sha256=qoj1zIWaitcZOGcJ6k7wuGJk_GAJCE9Xtx8CeRVrvoE,861
|
|
57
|
+
reflex/components/base/__init__.py,sha256=QIOxOPT87WrSE4TSHAsZ-358VzvUXAe1w8vWogQ3Uuo,730
|
|
58
|
+
reflex/components/base/__init__.pyi,sha256=c-8lUF9MAgAo9OHMjKIrV2ScM5S0fg8gTXp3iYFwVKU,1055
|
|
59
|
+
reflex/components/base/app_wrap.py,sha256=5K_myvYvHPeAJbm3BdEX17tKvdNEj6SV9RYahbIQBAQ,514
|
|
60
|
+
reflex/components/base/app_wrap.pyi,sha256=9bDJa0lirUFyG32TdhnpugW5hj-vef3NwotVpyhKDxM,1802
|
|
61
|
+
reflex/components/base/bare.py,sha256=leGVclR5Fp9Gb1vBUGX9oX4SDxTUTDiP-DhX5PPjwD0,3995
|
|
62
|
+
reflex/components/base/body.py,sha256=QHOGMr98I6bUXsQKXcY0PzJdhopH6gQ8AESrDSgJV6I,151
|
|
63
|
+
reflex/components/base/body.pyi,sha256=5GbDQyfPefw9I2qgeV9IQ2k6ZcOxTyFzURqbNiRgJys,2196
|
|
64
|
+
reflex/components/base/document.py,sha256=_Cl9iMXwXdxGMrCLAT20v35FX3MGtbqh2dfWenDtSKc,583
|
|
65
|
+
reflex/components/base/document.pyi,sha256=4Yedk123T659hhJmzGBXAtW3wm3TNwGjfklHh8yK5l0,9358
|
|
66
|
+
reflex/components/base/error_boundary.py,sha256=PbIFRH60GALATzEh_JCfHbNO3zGuJoFVlhRKj2-Afgk,6315
|
|
67
|
+
reflex/components/base/error_boundary.pyi,sha256=8L_C1SYOJrcCVtRNUeh0azP1G70sYHnC-nX35VeM9rQ,2807
|
|
68
|
+
reflex/components/base/fragment.py,sha256=ys7wkokq-N8WBxa9fqkEaNIrBlSximyD7vqlFVe02hQ,342
|
|
69
|
+
reflex/components/base/fragment.pyi,sha256=cgVDUFaOdc2usGYHuFP6URvnXLPwd5dli5O2Rcx0H9E,2236
|
|
70
|
+
reflex/components/base/head.py,sha256=BGjOksNZEo_AZcYEuxNH7onsRnfyxJkJzl4cTd_EwiQ,318
|
|
71
|
+
reflex/components/base/head.pyi,sha256=0hPI8M4aVY0u-F7p0kg9hv42kvMKICh6oxjarsd_IEM,4053
|
|
72
|
+
reflex/components/base/link.py,sha256=1QHgptz6QBX6YH0C5KssGAOvVGL0RAFN7GqUrdM8Ers,933
|
|
73
|
+
reflex/components/base/link.pyi,sha256=qJZq5cnXB09zdMhI1a4TFZZYb64wZlQglhLDWLcb3uw,4993
|
|
74
|
+
reflex/components/base/meta.py,sha256=pJ9vOk1cYque8p-HjIRUZvl_F8k9XTwcd4SGkULXnv4,1537
|
|
75
|
+
reflex/components/base/meta.pyi,sha256=XUb9bL2bvDMwXDQqGk2wkEQPTKRZtDV9gUxq0uZqedA,8844
|
|
76
|
+
reflex/components/base/script.py,sha256=OZ2ZOWiEmzHRC0-OgH4qj_Dv6X-JSsX5OgaqLXld0VA,2433
|
|
77
|
+
reflex/components/base/script.pyi,sha256=ZhAUiGvzN6WvtO2ml8bN3Oq9s20wxtgPaAKrGjp7umw,3613
|
|
78
|
+
reflex/components/base/strict_mode.py,sha256=_Rl2uGzL8gXTANOpoSU7uxsUQRH5JeTk2EIceWJJa5E,251
|
|
79
|
+
reflex/components/base/strict_mode.pyi,sha256=3JSap5xIYQqzbhO_3crfbuwl2J9DXGSWVoBLOeMBiWU,2215
|
|
80
|
+
reflex/components/component.py,sha256=zAaA8h-WUkKS1PsEjZ-lJUpByrrW-bQcuYV1yuxj-kg,84987
|
|
81
|
+
reflex/components/core/__init__.py,sha256=msAsWb_6bmZGSei4gEpyYczuJ0VNEZtg20fRtyb3wwM,1285
|
|
82
|
+
reflex/components/core/__init__.pyi,sha256=hmng2kT4e3iBSSI_x9t7g2-58G6Cb4rhuwz_APJ-UZM,1994
|
|
83
|
+
reflex/components/core/banner.py,sha256=6wrKN7bNYXK-dBmDjKGlUDfpXz9EWFykm3J-mScCUqA,17182
|
|
84
|
+
reflex/components/core/banner.pyi,sha256=vdGW6A76NZNd5wvP-4v0wcGuy1Q1jAEnaFYfSxF0NGs,20126
|
|
85
|
+
reflex/components/core/breakpoints.py,sha256=c-6gqMzIXAsTLN4ZTGMcL3DNkiHn_NyCO8v2c5dwyVM,2771
|
|
86
|
+
reflex/components/core/client_side_routing.py,sha256=z2WD2jT9U-xDOyHTLjCs0mf5HkwSEJpMmUeXzl4S7ZU,1897
|
|
87
|
+
reflex/components/core/client_side_routing.pyi,sha256=iSugaj073JtHey6oUOj5dGgDHB5PoyOHC6A_r_R5N9Q,4252
|
|
88
|
+
reflex/components/core/clipboard.py,sha256=knmLnwLx5c3iqejsCUw3z8pIBOTgBunr6LjJxxa8MNA,3372
|
|
89
|
+
reflex/components/core/clipboard.pyi,sha256=wsUnimvf8skgSVyuUgYncERPA8untZ3swYWfraKlh-Q,3130
|
|
90
|
+
reflex/components/core/colors.py,sha256=-hzVGLEq3TiqroqzMi_YzGBCPXMvkNsen3pS_NzIQNk,590
|
|
91
|
+
reflex/components/core/cond.py,sha256=7ZlNRIlQZdYEXff3J-jq5Y1D9DDWJC-jEXE4YPnpHZE,5936
|
|
92
|
+
reflex/components/core/debounce.py,sha256=pRrjHcKz9U0V1bIypuC6V67KzOl0VZr91k8udUGtJlc,4926
|
|
93
|
+
reflex/components/core/debounce.pyi,sha256=5u-sW2EBxws8EPfLCYpNb0r8k5fh6hqpOTt1TXgZc4I,2986
|
|
94
|
+
reflex/components/core/foreach.py,sha256=CFtm4lfALukNJj6TVvb7h8Gmy2Sj4ryjATUPOL90nIU,5339
|
|
95
|
+
reflex/components/core/html.py,sha256=Yqe48AJilMQlXEq6snbdHIVh-JDChvOBdU2ZFCnetk8,1324
|
|
96
|
+
reflex/components/core/html.pyi,sha256=Gh5bJ3x88302rvIysfsrPb-Rc4tLmlqaDpoJYa0g4ys,5285
|
|
97
|
+
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
98
|
+
reflex/components/core/match.py,sha256=Dp_kAwkJwT8TvBiaLK-OwQyGl24sian8k_o7bK-P-54,9281
|
|
99
|
+
reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ2ty4wAc,1911
|
|
100
|
+
reflex/components/core/sticky.py,sha256=F5IFacgyadaOz4WoO6SxzdPuCWZKYb_1Qvcw6qcq0Dw,4932
|
|
101
|
+
reflex/components/core/sticky.pyi,sha256=x2ruBp6OhVR68npFhbdtw9saH3oo6To2JvG7y8jLTY4,18947
|
|
102
|
+
reflex/components/core/upload.py,sha256=0cq0HGpSsrL1mbvG1GtUCcZUnv6QJwZH1CnexnU8Jhw,11948
|
|
103
|
+
reflex/components/core/upload.pyi,sha256=llY-VTV6qrbcN9csj2UAfEv_uHo3am_NJaXc9k--E1Q,15011
|
|
104
|
+
reflex/components/datadisplay/__init__.py,sha256=L8pWWKNHWdUD2fbZRoEKjd_8c_hpDdGYO463hwkoIi4,438
|
|
105
|
+
reflex/components/datadisplay/__init__.pyi,sha256=rYMwO_X4NvUex6IL2MMTnhdFRp8Lz5zweMwXaW_l7nc,588
|
|
106
|
+
reflex/components/datadisplay/code.py,sha256=YL0vfRsuYfybo7p9ZZDrtwziOXtp2mBSabAqcArk-3o,13906
|
|
107
|
+
reflex/components/datadisplay/code.pyi,sha256=sPIu9-Th86K4zlOOWMRurVYxIcvN78IUDkbuWgfgmF8,50368
|
|
108
|
+
reflex/components/datadisplay/dataeditor.py,sha256=vkLfC4FsLk5-5scGEN73ScShmxk5ugZJ6hbZe2SjBYU,13674
|
|
109
|
+
reflex/components/datadisplay/dataeditor.pyi,sha256=o8F4UuIb0imP-nQJiOFzSK9-aFx1mGhIFjx0vGQUhic,13248
|
|
110
|
+
reflex/components/datadisplay/logo.py,sha256=esYECFQAZWlkM1KNTMKPEFCCzSyUF_0WBzUkKJYe8nk,2017
|
|
111
|
+
reflex/components/datadisplay/shiki_code_block.py,sha256=yctAUYXioWpTzI63FZWVR7Y8h6LKw5Tr87sSIRsJeTU,23810
|
|
112
|
+
reflex/components/datadisplay/shiki_code_block.pyi,sha256=1oM0zNLXyDAQHTDcZybS3nFN6QURbvd_cgv_eN5OqnY,70327
|
|
113
|
+
reflex/components/dynamic.py,sha256=W-jNbNzll1w6YoMcoF-LMjHqP4UtoQHPV-NamXs-eAY,7220
|
|
114
|
+
reflex/components/el/__init__.py,sha256=nfIjf_cyieEmxptKjA6wRjoongswXv4X3n6vDmsdarI,416
|
|
115
|
+
reflex/components/el/__init__.pyi,sha256=8XE7IflK45ShTh4jhoUnDtz8yT8cuO5Xa11xkibUh68,9876
|
|
116
|
+
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
117
|
+
reflex/components/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
|
|
118
|
+
reflex/components/el/constants/react.py,sha256=f1-Vo8iWn2jSrR7vy-UwGbGRvw88UUZnbb3Rb56MSS4,15554
|
|
119
|
+
reflex/components/el/constants/reflex.py,sha256=7ChVeOvzjovZLHa-4vjWEGDqHsefV3tNsa8TKHWFaXM,1697
|
|
120
|
+
reflex/components/el/element.py,sha256=CFUa_6Dz4WsIdP11MzqlW9GBDhJcSU6lJSmWA9zap0c,501
|
|
121
|
+
reflex/components/el/element.pyi,sha256=7vL65KBHeb3BNrSZPbmJUQLAkO_1QariMpNqndBVOsI,2203
|
|
122
|
+
reflex/components/el/elements/__init__.py,sha256=Slx-rO0DOJeHTUbhocKyYm2wb570MJOXnRf7AI7uxjk,2342
|
|
123
|
+
reflex/components/el/elements/__init__.pyi,sha256=0D3Iw6gktb0vio95VVR69WNY7HXwULQdsy8YMIam9xk,9900
|
|
124
|
+
reflex/components/el/elements/base.py,sha256=Wn8NANdEIsZD3Rexf_Rtd5OhuA23jzeH9ZOq8tFhAWY,1912
|
|
125
|
+
reflex/components/el/elements/base.pyi,sha256=qmdx5rFlUTJJ7ooQaNqWRkq-DlQ7zPZYEzBwgWiZ-Qk,4981
|
|
126
|
+
reflex/components/el/elements/forms.py,sha256=XCfuiS74D7yKAR9gbEkN90J94Viu8gYIgc1h_-HPb6Y,21412
|
|
127
|
+
reflex/components/el/elements/forms.pyi,sha256=1qJPzIBmoraAZGJT5OQAlRKZfQxuo3rXuHZ8z6SzboY,81476
|
|
128
|
+
reflex/components/el/elements/inline.py,sha256=83JivMuTiangYcomgMXC_xRUZ27Sl-DsW3rTpvbSX1Y,4024
|
|
129
|
+
reflex/components/el/elements/inline.pyi,sha256=xkamesMQsX6nCDC9Ww75bCTmwqhZv8ig-NdL5jRYnYc,129795
|
|
130
|
+
reflex/components/el/elements/media.py,sha256=PNhSo7ECZFN6nQQwWmc5i4_adjnG5vrMRhIET19QzzI,14568
|
|
131
|
+
reflex/components/el/elements/media.pyi,sha256=Zf9JgOEVWAIjFhisnGvl2STpvBbamTJzziSeqqGgx70,133061
|
|
132
|
+
reflex/components/el/elements/metadata.py,sha256=uCYwUa8TlNYxi8TzChBR29XOqv8Fc6bQXDCbt2iRfQs,2465
|
|
133
|
+
reflex/components/el/elements/metadata.pyi,sha256=kXy42bdq30vkt72-WPCTW17CanouvNAN_a9U_vz-j68,24637
|
|
134
|
+
reflex/components/el/elements/other.py,sha256=_okS2oLQ0QvwYypSXZIJbaIbvf2hZ9qRNsf8h_oAiYM,1456
|
|
135
|
+
reflex/components/el/elements/other.pyi,sha256=GxM0DjypoA83Lc3j65bhX2KqFwnry8n2GngBZH-L1Ds,32854
|
|
136
|
+
reflex/components/el/elements/scripts.py,sha256=hxSCmW9_jCO-ACz400wYM1gmTGjtQ-BqcEQFYNE-H-Y,1356
|
|
137
|
+
reflex/components/el/elements/scripts.pyi,sha256=hIUkJO-zKRQuDXg8lz6RYcMEe0q2pz-FGklOQweNOIM,15608
|
|
138
|
+
reflex/components/el/elements/sectioning.py,sha256=wVkR35dt4DMHKcJN5f0aglH16xSZzO9-Weesv6bQ_CM,1516
|
|
139
|
+
reflex/components/el/elements/sectioning.pyi,sha256=Os16Y2OnNqcdchwpPvjLBbqUmoCsK88Azew5Tmws3Sc,68725
|
|
140
|
+
reflex/components/el/elements/tables.py,sha256=F2mto9No2vrX9EKqdSME6RlLKbbjBd2AkB9KbY2DL_c,2900
|
|
141
|
+
reflex/components/el/elements/tables.pyi,sha256=QHfQ5mDdcUW3QKCLjkhIvVK7u810KNVWQ-CSXrf8kgk,48922
|
|
142
|
+
reflex/components/el/elements/typography.py,sha256=_JzybZAfYcmDMCq1EsF3x-AKneXkDnnGN0Mng4NDDrY,2661
|
|
143
|
+
reflex/components/el/elements/typography.pyi,sha256=BhUoan2JZIRhfWhmC3iZBBRONCtGaVze87fcqGk-Mv4,70355
|
|
144
|
+
reflex/components/gridjs/__init__.py,sha256=xJwDm1AZ70L5-t9LLqZwGUtDpijbf1KuMYDT-j8g3pM,88
|
|
145
|
+
reflex/components/gridjs/datatable.py,sha256=Fjd605rDMvZinMfWjefUwv_eOr33OeWvalOrQWkFhY4,4202
|
|
146
|
+
reflex/components/gridjs/datatable.pyi,sha256=Juv16lMY60cWqSjM7RzPHQIo6MhUYiv9TrcEuulyG8A,4955
|
|
147
|
+
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
148
|
+
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
149
|
+
reflex/components/lucide/icon.py,sha256=Tjf-sH-dHu7Evs50m54vvZypN3N52BNOHNH3_dYyTqY,32905
|
|
150
|
+
reflex/components/lucide/icon.pyi,sha256=lRxdsyzcaiE80vGvmQtd-UXIPFx-56bIngIa-W76URw,36039
|
|
151
|
+
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
152
|
+
reflex/components/markdown/markdown.py,sha256=nfQgUidp8JXm_qZDMb_5oktfSd7S_50S38LToyYGx-4,15543
|
|
153
|
+
reflex/components/markdown/markdown.pyi,sha256=YdxMoYwa1hiVVORYZHj3kJq7CcbWKsejsVg4p1Kdto0,4128
|
|
154
|
+
reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
|
|
155
|
+
reflex/components/moment/moment.py,sha256=bSFs3h5VAp6AhnkmKPAQzU8VKMLVb_IR00iJ9Zq3JHo,4138
|
|
156
|
+
reflex/components/moment/moment.pyi,sha256=6AIaKCUt4zs92OQ6lTq6nejXPAUzHIx2Jtv_5iT4W6s,6157
|
|
157
|
+
reflex/components/next/__init__.py,sha256=jqYJK6QOAUS2PHpFy8xI6qDGn9h1aT0inNWYX_rZFM8,239
|
|
158
|
+
reflex/components/next/base.py,sha256=uo5Xehc_9U3JkVdH4b_fRYFjLYkFKcfFlmX_rtQbwxk,190
|
|
159
|
+
reflex/components/next/base.pyi,sha256=bFkCYWF5m0ZWubSTRR6Dhem9bLpoOrGOWVj88SWTdcI,2223
|
|
160
|
+
reflex/components/next/image.py,sha256=GVIhEfhOFcLyMUiQcR1v4InY7C8Hzqyf95Gq-4xSyrM,3973
|
|
161
|
+
reflex/components/next/image.pyi,sha256=ayzAALKNbVp0EGr-Eh_9D2xocvYDX6z9XYa1YN9aIkw,4557
|
|
162
|
+
reflex/components/next/link.py,sha256=YYhkgkHGqvyf5JGv-ujatzp_nOqEUAxWY9FIWk7r39A,504
|
|
163
|
+
reflex/components/next/link.pyi,sha256=E63U9yoAHdtlvucg-mX1O58j4uWpIW8433DFxFH6YBI,2423
|
|
164
|
+
reflex/components/next/video.py,sha256=GngxgHvAfGwRHkPUBNp6_GfGarP5mMN6KFA_-VizDOI,735
|
|
165
|
+
reflex/components/next/video.pyi,sha256=OqvLHkAzgF7-7lb7uaE-8Mfg60XZXdkU4jFnUMapXi4,2364
|
|
166
|
+
reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
|
|
167
|
+
reflex/components/plotly/plotly.py,sha256=fG4rGIjOgaYD_0V9JW_5jVezMOZf_MGEuxFZ_V5Zf8s,8775
|
|
168
|
+
reflex/components/plotly/plotly.pyi,sha256=hQN2kTFTalVe-5lTtxmLdEDvk4fVUo0ovbrcaNjJT1E,6695
|
|
169
|
+
reflex/components/props.py,sha256=8F2ZNeF16BDiTh-E4F-U_vks41BMJgmkTM7xbjGvfOA,2593
|
|
170
|
+
reflex/components/radix/__init__.py,sha256=fRsLvIO3MrTtPOXtmnxYDB9phvzlcbyB_utgpafYMho,474
|
|
171
|
+
reflex/components/radix/__init__.pyi,sha256=YpWw_k35yv_Yq_0RZNCb52fJZ3dANWAnQllhVoVCWEE,3988
|
|
172
|
+
reflex/components/radix/primitives/__init__.py,sha256=R2sdZJqQCYaLScGkXnXDKAjVgV5MidceemooEUtvBt4,443
|
|
173
|
+
reflex/components/radix/primitives/__init__.pyi,sha256=C3ryDDEVq8kZp2PBm-_onHKXumFnKD__B2puDbO4WjE,401
|
|
174
|
+
reflex/components/radix/primitives/accordion.py,sha256=39uwYpqMYg8mmR60LYAMOmKcZNN2NZ19V17nUBUIzlc,16052
|
|
175
|
+
reflex/components/radix/primitives/accordion.pyi,sha256=SPKKZjAT6xPGjWshwiJPOJg5VIeRw3AAiXUCN2W2usU,31068
|
|
176
|
+
reflex/components/radix/primitives/base.py,sha256=Jbg_KbxnjofunHkmsMzJRJrJ8NZbRZrgktlWd_zTrOs,904
|
|
177
|
+
reflex/components/radix/primitives/base.pyi,sha256=1X2AkFLvVsRPRierX-144K8RO6UEyfPBpJnRtzSPmZQ,4382
|
|
178
|
+
reflex/components/radix/primitives/drawer.py,sha256=k7qZ7cXV3fgPP8XEF7X2oATv3_144-XWqh-mG4YcdCM,9247
|
|
179
|
+
reflex/components/radix/primitives/drawer.pyi,sha256=8SIwf7zouigJC3zlzQzY2GFz_cA3QDCapPVBFDEkr68,28950
|
|
180
|
+
reflex/components/radix/primitives/form.py,sha256=JS632HHaqPoMbZ-sD4wldj8SXGgtU_UkJusG9W56NvE,4832
|
|
181
|
+
reflex/components/radix/primitives/form.pyi,sha256=KAVzYRUtdSGeNGochOTw_O0Y471d5pTO3KWSw280lc0,37284
|
|
182
|
+
reflex/components/radix/primitives/progress.py,sha256=bEqG-W8YwFfI8dKQUVsa5j4S7BfRC3SbWqzpWYEq1tM,4011
|
|
183
|
+
reflex/components/radix/primitives/progress.pyi,sha256=1bK7D2sNVHoROObnuFiLjCxAUvfqJ3VA5IyyIxMFeMY,17683
|
|
184
|
+
reflex/components/radix/primitives/slider.py,sha256=DLquoUEXVRH9xSmoaWf3PghT9YZ5O_wj7pK5_00RR7M,4999
|
|
185
|
+
reflex/components/radix/primitives/slider.pyi,sha256=jMxsHX6MCKOJAVOQLN7q2Ia0pYJGf1wJqxZ-b72TCRY,12069
|
|
186
|
+
reflex/components/radix/themes/__init__.py,sha256=3ASzR_OrjkLXZ6CksGKIQPOcyYZ984NzXrn2UCIdxUc,492
|
|
187
|
+
reflex/components/radix/themes/__init__.pyi,sha256=RVeS7TipR51MgmsWJStZwh4QxKBtOMtCguBtVbUJqX8,476
|
|
188
|
+
reflex/components/radix/themes/base.py,sha256=WNv2RfriXqfdTr9AIHCjLN7Tr_yYFGAk7WPUAsna2SU,8781
|
|
189
|
+
reflex/components/radix/themes/base.pyi,sha256=ZYVIKldh9_pH_agY7fypFHe-PXr-hArYkm-Dtnt_aw4,26815
|
|
190
|
+
reflex/components/radix/themes/color_mode.py,sha256=KQ3t0VHC9drjwcr2LswWDR-Y-Mhl8pmObNdsSWhvYLs,6532
|
|
191
|
+
reflex/components/radix/themes/color_mode.pyi,sha256=Qwf24sm76BTagUHSjX9R1LkGnNhBsSXMdMmHqflfulQ,19413
|
|
192
|
+
reflex/components/radix/themes/components/__init__.py,sha256=fzc5ghmmbIQ8yaxKQQY83TINb6k2uVPX-wddyTDlQx8,423
|
|
193
|
+
reflex/components/radix/themes/components/__init__.pyi,sha256=-yTF7ROfG_qxrRL-lmCIidPJtFY5StumKB7VfWsDqSw,1946
|
|
194
|
+
reflex/components/radix/themes/components/alert_dialog.py,sha256=UDSU4eHsJ-O40Zc1myVnZn3KkJmL1ByOeyu71h6M7PA,3271
|
|
195
|
+
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=Asb1caYbOtuIc9OazYFipCbv-9l6Kk-wspkUaN-6hXc,17761
|
|
196
|
+
reflex/components/radix/themes/components/aspect_ratio.py,sha256=puyjBq6NLVpRPp_Zn2x0mSI8ipOIBlUa7fcP1btblx0,406
|
|
197
|
+
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=cnqOys0CUmGQKSH81ugJJGjhvx_qYiA_jmd894C6FgY,2571
|
|
198
|
+
reflex/components/radix/themes/components/avatar.py,sha256=MGaTj0AlIlE6L-waXnedRxgUc-aR_xopnjVvPKMp7nY,1047
|
|
199
|
+
reflex/components/radix/themes/components/avatar.pyi,sha256=BpJg0TcVjVs4DEXXBc4d2xGHFX2DFEYvfvRKpyL5qw8,5861
|
|
200
|
+
reflex/components/radix/themes/components/badge.py,sha256=A5wcKVi7hcjBGhzqNmOngAbIu5ZB1esYGtgnaszN1eg,905
|
|
201
|
+
reflex/components/radix/themes/components/badge.pyi,sha256=ux5xa71GeQ-uPeobAvPXJaAI0mxaXxlTqKdCYfOi-Ko,8291
|
|
202
|
+
reflex/components/radix/themes/components/button.py,sha256=6bYyYTbewA-fxooZCsLw3Hz_8qfHxAZh5V_4GOSsYlc,1226
|
|
203
|
+
reflex/components/radix/themes/components/button.pyi,sha256=AcGz0EMqan76ugfHIsUysdUxzFFZ2QU-gytivipQuaw,10697
|
|
204
|
+
reflex/components/radix/themes/components/callout.py,sha256=9JHrSF9rRRQtDq-n4ZGTickLF0mmo7uIqWPfxrRhIYM,2478
|
|
205
|
+
reflex/components/radix/themes/components/callout.pyi,sha256=DyjuWP37KB8Ga1nUW7SwBkgbDlgWM3bewHg9x5hVLE4,33080
|
|
206
|
+
reflex/components/radix/themes/components/card.py,sha256=56EoJDKKrpU_Hawc4RW_ayRUVohebFJojnUa4FihrRY,746
|
|
207
|
+
reflex/components/radix/themes/components/card.pyi,sha256=IgcPcSL50Yq2jrCws-N4GG2Y356fAZWy5IfiIoQFyBs,6187
|
|
208
|
+
reflex/components/radix/themes/components/checkbox.py,sha256=eDL_D-oU3HloHPA10lEdSGPZrhnSVFcMIAnyoof22k0,4341
|
|
209
|
+
reflex/components/radix/themes/components/checkbox.pyi,sha256=BdVWfMRRwt6HhsukAmsV9m9DzDxpc3U_LKUFVvSKn4s,17960
|
|
210
|
+
reflex/components/radix/themes/components/checkbox_cards.py,sha256=EP_WAUlyBBigQvih60woL6OIM_t5c78wAyZWmgNVHAM,1428
|
|
211
|
+
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=oHDE27k-NsaOucg17_9_mxOEx197KDmsHRzfFq1OfJM,8973
|
|
212
|
+
reflex/components/radix/themes/components/checkbox_group.py,sha256=AtKll0dgTfFSkZ-E9U_NL3-9B6KTMdADW3O2kOwAHTU,1531
|
|
213
|
+
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=bE01uRDqE3tNwTbynvI-zZ9LvM1r-azTN-KpT8sFbOg,7903
|
|
214
|
+
reflex/components/radix/themes/components/context_menu.py,sha256=YcxKi8RaYowGsLYWPPr4Elm2VAjKHyvDIXj7m-Fcqao,10118
|
|
215
|
+
reflex/components/radix/themes/components/context_menu.pyi,sha256=kBJ5vaMVJqT1u9OJiqxMJbBfZq0kfzDI-sJqeQD-onY,36353
|
|
216
|
+
reflex/components/radix/themes/components/data_list.py,sha256=fRrwrYBsUNLeAmch6Y57AS5MDnlKTq4P2J4nsezHq4k,1885
|
|
217
|
+
reflex/components/radix/themes/components/data_list.pyi,sha256=Fx4USBrybfBxbIDQ-N_fTjRIIm1cnacPujzeuWcdtn8,13180
|
|
218
|
+
reflex/components/radix/themes/components/dialog.py,sha256=djRrVXacMJndS4fkMOKdZL2_fPf1Igo9MzOoFKpbT84,2696
|
|
219
|
+
reflex/components/radix/themes/components/dialog.pyi,sha256=fnZuByVqLtf1rkfd9tgF-NISTvFGr20CU7eIN0AtQKQ,18492
|
|
220
|
+
reflex/components/radix/themes/components/dropdown_menu.py,sha256=Z8VNP9fv2cPLzgNPDN0J4XrS_wTsr0P4xykRcYRo_W0,10265
|
|
221
|
+
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=zNtDas_PuQksaI-mQzAM0QFJwoVpgOwH1FiO-jCkhMs,29575
|
|
222
|
+
reflex/components/radix/themes/components/hover_card.py,sha256=J9ljfRtukG5B7YT_LTL6ptb4V-mr65dq1kkSctuGp28,3235
|
|
223
|
+
reflex/components/radix/themes/components/hover_card.pyi,sha256=Aazb51SGc1EGwWi9K6FF4BbzG117aSS_0QPBn0ujJBw,15344
|
|
224
|
+
reflex/components/radix/themes/components/icon_button.py,sha256=_4cj_NIqtIIzEOdv8QbrHaSEjEQW6ThwHX0lpuHe40k,3007
|
|
225
|
+
reflex/components/radix/themes/components/icon_button.pyi,sha256=uvezEie8axukOTwxWPKv2v03ICtvSkk-nHB3OCJIiCw,10775
|
|
226
|
+
reflex/components/radix/themes/components/inset.py,sha256=F2Gb7jrUK8y0hFSOX7CICPIresEgwkDtOH8lDrclM6o,1204
|
|
227
|
+
reflex/components/radix/themes/components/inset.pyi,sha256=7TqFmw_p6DZv1Vu3MAvuqk6I-r7sC6KGxPjD8AtoyjI,8343
|
|
228
|
+
reflex/components/radix/themes/components/popover.py,sha256=lOvtNL_Rpbvkrc2HnNVdFODmbIttcz7LgxE_Os5tMBI,4044
|
|
229
|
+
reflex/components/radix/themes/components/popover.pyi,sha256=xMHXjFuCca8IeLBE79fAwm2CROHf9_yQhiuR5KxVWRs,14726
|
|
230
|
+
reflex/components/radix/themes/components/progress.py,sha256=OTqA0GEZY7OtvIqSc8LdHITtISLPRkXgoeWll6zVyd4,2375
|
|
231
|
+
reflex/components/radix/themes/components/progress.pyi,sha256=VukpnjzJWMsqVL0DfRDTwle18o8YXmtir4VkTNEZP5Q,5977
|
|
232
|
+
reflex/components/radix/themes/components/radio.py,sha256=mcX2l2TbhXxqRPVlPnxPgpNmY_VWHqXQEs1frCdHeeU,837
|
|
233
|
+
reflex/components/radix/themes/components/radio.pyi,sha256=lSqogn6xFQ5YV8DSNLnQhKjxlDpLFCDh0bZteHMCqKA,5146
|
|
234
|
+
reflex/components/radix/themes/components/radio_cards.py,sha256=lVOcEivgvO37M2uBPliDeiMbEE4pt4xB5kck5lWhXis,3079
|
|
235
|
+
reflex/components/radix/themes/components/radio_cards.pyi,sha256=9JkvpFVLRP8tsDlmRjulVsMMpF3GClVQ4i8wgxIqZSA,11307
|
|
236
|
+
reflex/components/radix/themes/components/radio_group.py,sha256=fdie5Vo6csq07scJ_URyqmGOu5EyKeNvucUjyxy4cvU,6812
|
|
237
|
+
reflex/components/radix/themes/components/radio_group.pyi,sha256=NkhfYUyFJYqO4mov4rj_8PnyBwLQ4BbSEEpopPIWaVI,20330
|
|
238
|
+
reflex/components/radix/themes/components/scroll_area.py,sha256=EfKfx6KCKG--mznWAJ_2SMCer8uFLQWZa5JndKD92e8,917
|
|
239
|
+
reflex/components/radix/themes/components/scroll_area.pyi,sha256=wXJ6KysrhmK2b5nRIlurycSjFf4VBTzn08x8nMP4FxI,3372
|
|
240
|
+
reflex/components/radix/themes/components/segmented_control.py,sha256=6R5dCG9L0OTcQHUrhJEBLjq0MaxLmNj7PPqnQ62zFVs,2223
|
|
241
|
+
reflex/components/radix/themes/components/segmented_control.pyi,sha256=o_B_Yq9VuoLv-8rW2sVR9L8VDI7fiZ_AfNcueUVeMik,8482
|
|
242
|
+
reflex/components/radix/themes/components/select.py,sha256=Z_Zo3eLXjnYYMgMB3szV789iNlbvD-vpvL-wixWQaOI,7966
|
|
243
|
+
reflex/components/radix/themes/components/select.pyi,sha256=K27Rceg6Z9BBjyy3AWMP1sHh1mUwnUwKptKQdKPF9xg,37158
|
|
244
|
+
reflex/components/radix/themes/components/separator.py,sha256=JqdQAEuPol1mwYKmMuUAFEpWldqeu4UC2LzXkDNNxko,957
|
|
245
|
+
reflex/components/radix/themes/components/separator.pyi,sha256=uD2HtPYpoj5s8q246kTy3saR3H34ZNNREwJm7nyRVWI,5573
|
|
246
|
+
reflex/components/radix/themes/components/skeleton.py,sha256=v_nFTShDBLJHeN_y4leMv7KWDPFZrYDbRFrJwNItJrw,890
|
|
247
|
+
reflex/components/radix/themes/components/skeleton.pyi,sha256=LS6BPaXAVL6AnI-f98lphh2C7P-omh_kpK7f1L_CpNk,3761
|
|
248
|
+
reflex/components/radix/themes/components/slider.py,sha256=JS9YnxZuogU9lPSWLjjB2_dy5IppqjzuCJqmgUAAYDA,3375
|
|
249
|
+
reflex/components/radix/themes/components/slider.pyi,sha256=p0ji6fJQNSYFF48_EiDaplEIl-DVOoNVcwtwhSwgz54,7890
|
|
250
|
+
reflex/components/radix/themes/components/spinner.py,sha256=8kO7e4EEGaXm-J4YFkLPUuph3QLY82memrQQFrvUPyk,493
|
|
251
|
+
reflex/components/radix/themes/components/spinner.pyi,sha256=yYpRN7KGAMkqq8OdboAcjup9RlQ_E3so3t3YuqRIjv8,3087
|
|
252
|
+
reflex/components/radix/themes/components/switch.py,sha256=cfj9xvbYRdmMwF6HqXxCK7YrlVg0rLhGVies119EJsc,1767
|
|
253
|
+
reflex/components/radix/themes/components/switch.pyi,sha256=ll7cosjp3irr7uOBLeWeUXo3_OI_hUDOdPDNanPLF9Q,6542
|
|
254
|
+
reflex/components/radix/themes/components/table.py,sha256=dIMrHTggykG87M0T5Pp77QC-9DeuIdyX88vQh8Ux8jU,3738
|
|
255
|
+
reflex/components/radix/themes/components/table.pyi,sha256=aVfbm_HxARBusB_1885lbeejOzAEC2KjV7rShC_ZxkY,49022
|
|
256
|
+
reflex/components/radix/themes/components/tabs.py,sha256=BAamAm2RQxBwstuIXyQ6Eo-4nQTRtb3T_pIg2B9BS4Y,4627
|
|
257
|
+
reflex/components/radix/themes/components/tabs.pyi,sha256=Pk9k3K0FcmvwxdmooUNJXKfD-Jr69UWnKpFxkM0-4PA,15808
|
|
258
|
+
reflex/components/radix/themes/components/text_area.py,sha256=IszPH-R9CYkPIkIWnRPD4nacDGkzHjJ6pJ6deLYdSBU,3448
|
|
259
|
+
reflex/components/radix/themes/components/text_area.pyi,sha256=Sj5UTXkWXk7ra5WQT81Lz1-PwTNXk0QU_wtPyIY4HGM,11958
|
|
260
|
+
reflex/components/radix/themes/components/text_field.py,sha256=6BqyNN3zdOnOOLEgm8Eo2L_9hKfxqEojUAv8a2OdVLU,4132
|
|
261
|
+
reflex/components/radix/themes/components/text_field.pyi,sha256=d4IHbSBRojXK6FwCa7u6hwMK9f96nxfcSh7mo53gdIA,30514
|
|
262
|
+
reflex/components/radix/themes/components/tooltip.py,sha256=cTYJxkYrNZbQrbGh4-qMo7HthF7TgHuJrTORJP69WwU,4432
|
|
263
|
+
reflex/components/radix/themes/components/tooltip.pyi,sha256=Aj-jKDtQccmDMIZwuCfVQV1U0BlADjBdvZeB0bOAO7k,6875
|
|
264
|
+
reflex/components/radix/themes/layout/__init__.py,sha256=dbRNzJ9pag7luTO3saNvgKzozrGNJ02_Vn9r3SwJHN4,406
|
|
265
|
+
reflex/components/radix/themes/layout/__init__.pyi,sha256=qyTauwdNy4ZxSBDg6K0QXIEiNAsKZ200qyGgWePKyaA,790
|
|
266
|
+
reflex/components/radix/themes/layout/base.py,sha256=Mvyti40XT2kFfrU3FvQIR2GRIYZNyF2qojGe8Tqq-TE,886
|
|
267
|
+
reflex/components/radix/themes/layout/base.pyi,sha256=jEIRfTIzrsr5_Guoe-BYOk9b7n1Anh0grnvmfQeg6h4,9872
|
|
268
|
+
reflex/components/radix/themes/layout/box.py,sha256=7BAGnOYX5HMiftVQmYG5_kWYmy_0rbexLrwREbSbAT4,327
|
|
269
|
+
reflex/components/radix/themes/layout/box.pyi,sha256=8Ms3Z6yKaACOOL06yLuZFM-E5jrytfHXK2JIeSueCok,5208
|
|
270
|
+
reflex/components/radix/themes/layout/center.py,sha256=iNGsfoVUrVtb-TH3sdOVpxUQHF-2GTVFVCX_KkRuQog,490
|
|
271
|
+
reflex/components/radix/themes/layout/center.pyi,sha256=2HM4czmwFvO9V8gERQtHDliUOe_Ik0RvpEKYSFlf1Cw,8775
|
|
272
|
+
reflex/components/radix/themes/layout/container.py,sha256=gpWV6uqeXFcfG539YHn3nDm1T7M9_3eYptWCGJAEjEU,1552
|
|
273
|
+
reflex/components/radix/themes/layout/container.pyi,sha256=Q_EZ0vu-aDAjqo7j-oaYISWOBeHjPPpLjdj7ojvFDiI,4241
|
|
274
|
+
reflex/components/radix/themes/layout/flex.py,sha256=A6gflxUH7lI-kRthQZrrVDCozBKbFQELEZc5ArldOmU,1522
|
|
275
|
+
reflex/components/radix/themes/layout/flex.pyi,sha256=w32ciQxWEJFt9ltGehrmLZkDOYKOFI1cHXi0chiYz2g,8942
|
|
276
|
+
reflex/components/radix/themes/layout/grid.py,sha256=biFoJFzu9OLPd5A4_CUwcpTyF7_bKoH8jxjON884stQ,1682
|
|
277
|
+
reflex/components/radix/themes/layout/grid.pyi,sha256=bhsrx7gJNMOls378sfc8dOrLy_mG6ap7XU_ShXSyG1Q,10130
|
|
278
|
+
reflex/components/radix/themes/layout/list.py,sha256=EtsdHOuHjDFsn511qItlKVfLxx0VGcz4lLsUy9YA1Jw,5252
|
|
279
|
+
reflex/components/radix/themes/layout/list.pyi,sha256=smnQDqNzDiBy6ytGdzotoYtq521nD0G3fySj5HrumZM,25716
|
|
280
|
+
reflex/components/radix/themes/layout/section.py,sha256=ZSVYvC4Pq0z3oQMUBdhC4Hn8qZ__N86vifag3ZO99bs,624
|
|
281
|
+
reflex/components/radix/themes/layout/section.pyi,sha256=LCvOptYzrqqMrNPosvqx3o5mD4zrF72Lnrx82N0y-fo,5763
|
|
282
|
+
reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
|
|
283
|
+
reflex/components/radix/themes/layout/spacer.pyi,sha256=Zid__sUxIZgBQyxdhmZBvfQ5HnU-jxJsRglmmEeTYUo,8775
|
|
284
|
+
reflex/components/radix/themes/layout/stack.py,sha256=DZFVCCanV9NOWdkG_pfKrzlUGe7xHS37iUuhRpTn4MM,1537
|
|
285
|
+
reflex/components/radix/themes/layout/stack.pyi,sha256=uykteQhWEdOQpJ97-Pjry4dMCJxZnNaSp7mFGhaftjs,21532
|
|
286
|
+
reflex/components/radix/themes/typography/__init__.py,sha256=dEopnJWc8cPs1oUBK3wMHQtzQ_QNM9pIblzEWbZZ4G4,422
|
|
287
|
+
reflex/components/radix/themes/typography/__init__.pyi,sha256=cXYgQJIXjO3arJXf0SLjHUqC62lNrRk9Ra68SEwo4QY,433
|
|
288
|
+
reflex/components/radix/themes/typography/base.py,sha256=3eiAZGs_l19E3fE8KpX75llSE2FoeuD3yp84wUnBX0s,409
|
|
289
|
+
reflex/components/radix/themes/typography/blockquote.py,sha256=QhzpjPr53r58lpIsLZyywseXT0OBqpRON651jftm9yk,920
|
|
290
|
+
reflex/components/radix/themes/typography/blockquote.pyi,sha256=wzka1YVcslgG3UI3Km6HOeQR5YkxqeeCWFFiPr0toSA,8628
|
|
291
|
+
reflex/components/radix/themes/typography/code.py,sha256=9tatKTGiDNgrIS2uoX6vf0uCLuvRhC_gLmNb225bPNM,1105
|
|
292
|
+
reflex/components/radix/themes/typography/code.pyi,sha256=kxqqChF2FNg1WlMtC2GUW-DcEpd9RegY7H1azB6Aag4,8895
|
|
293
|
+
reflex/components/radix/themes/typography/heading.py,sha256=qWR7bUD24SkoQ5rTLV14jLGYr0gpJk6QVX_HhsKeZZ0,1546
|
|
294
|
+
reflex/components/radix/themes/typography/heading.pyi,sha256=bu5Y55phkFLcaDC_W-wSTmHahHXpdp3_VPNO4n_WsW4,9969
|
|
295
|
+
reflex/components/radix/themes/typography/link.py,sha256=Q6Np8xej_9PIoKcPPRxaiSCitQq62cO_GPujw18U33o,3655
|
|
296
|
+
reflex/components/radix/themes/typography/link.pyi,sha256=M-UUocnNbxWCHzJWM8UNaUdBsnqCyL6wKVfNK12svpU,11505
|
|
297
|
+
reflex/components/radix/themes/typography/text.py,sha256=g2YVFj32lIWYcGswUhAOsWMcoiuPm8kj07B4rqai1rE,2814
|
|
298
|
+
reflex/components/radix/themes/typography/text.pyi,sha256=WUFsWMUayRzK6z8Dr6X-jdNnU5PO7XlimxPSu2f0M_I,51749
|
|
299
|
+
reflex/components/react_player/__init__.py,sha256=1OTHeZkuefi-zIVXc_QZMTBg4_RsGrMaJHducUuZQCU,171
|
|
300
|
+
reflex/components/react_player/audio.py,sha256=qw_H2_W0AyMsHehA_Q9jskN4_N5TYgkzeisOxhepkPs,186
|
|
301
|
+
reflex/components/react_player/audio.pyi,sha256=wveeBuMX9MxKiedKaAhWy75B5JemGII1Khiwfehtm9U,5936
|
|
302
|
+
reflex/components/react_player/react_player.py,sha256=WtiJ5gxXM8kQ_XUnayTC_h21USmktAOvTRx2Pq34tGQ,3547
|
|
303
|
+
reflex/components/react_player/react_player.pyi,sha256=hcUz6F0A0ryP0G3BX9mABGDABzc8c6ltTBQm__GSZFo,5963
|
|
304
|
+
reflex/components/react_player/video.py,sha256=2V6tiwCwrzu9WPI1Wmuepk8kQ6M6K8nnMdLLjEbrxrw,186
|
|
305
|
+
reflex/components/react_player/video.pyi,sha256=BdGVjG867prxrv0fU8jjulhlcKM25EfY5tLDqb9v-IA,5936
|
|
306
|
+
reflex/components/recharts/__init__.py,sha256=Ke5NLICmT2J_mGIUBZcFMUJOXGYgFSG3xRs2v7YjN6I,2676
|
|
307
|
+
reflex/components/recharts/__init__.pyi,sha256=-oVJHVWtQ4kvRoM0SoouWdpWeN1CfvqdjF8Jjx749Bo,5144
|
|
308
|
+
reflex/components/recharts/cartesian.py,sha256=e-2fE4AkOHNpKDAML9_fdq5NVNhRllCqAJ8izbRcj78,34703
|
|
309
|
+
reflex/components/recharts/cartesian.pyi,sha256=_YUpVNNRobDxkKcDjT10CiJjrviTS4LsbNeXbQ5DyQU,110355
|
|
310
|
+
reflex/components/recharts/charts.py,sha256=1cGqspOsY5RM0FTvu2EWI_f7n5T-LSV3VPzIYJ4-AJY,18849
|
|
311
|
+
reflex/components/recharts/charts.pyi,sha256=pF8DMmSBJb0pnQQVzvDIX5FL4zemNljo0oOJYVdFtfw,49782
|
|
312
|
+
reflex/components/recharts/general.py,sha256=i8UpW6ZzRgETFvb-KRmcC51lG9VR55UPOYmMWOOuJrw,9011
|
|
313
|
+
reflex/components/recharts/general.pyi,sha256=And9oyhsJrOV8GD1cCAvYyaInaNoUQJl5C2XwBisCO0,24481
|
|
314
|
+
reflex/components/recharts/polar.py,sha256=Gp8nobLr2XQk8wHmv039rUz7NrTaKCwl8fQqT_iASLI,15715
|
|
315
|
+
reflex/components/recharts/polar.pyi,sha256=EbciHhTcRZb7Z_2X5ikunr_49dj0wu-hzOzXvWEuGps,28792
|
|
316
|
+
reflex/components/recharts/recharts.py,sha256=pWwrKtEcHbGaeqaDAZH1FQgPuPKj7PE6DT_df_OeIio,3176
|
|
317
|
+
reflex/components/recharts/recharts.pyi,sha256=Hb5IW-qiodffHtEZZpq_GzyeQUJB_0S8WW_vEpfNgaE,6772
|
|
318
|
+
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
319
|
+
reflex/components/sonner/toast.py,sha256=_09iRIcE2eDobFjgBPL0K4muVDWwvnhqwBRHwuDJ_nE,11591
|
|
320
|
+
reflex/components/sonner/toast.pyi,sha256=kfitY_2jRdd74kuFUCKthx4NIRBRrwpTvI7aGWg6XFw,7385
|
|
321
|
+
reflex/components/suneditor/__init__.py,sha256=htkPzy0O_1ro1nw8w8gFPjYhg5xywMpsUfc4Dl3OHuw,109
|
|
322
|
+
reflex/components/suneditor/editor.py,sha256=W1_Yu3UwqQFsFxFdJalKls2RMUjFfboy2FLiNw_xZYw,8061
|
|
323
|
+
reflex/components/suneditor/editor.pyi,sha256=tIJQikzW3LE3p8fPdy1O5X0Ma__UWnUPcGYGvK2Q9J0,9304
|
|
324
|
+
reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTkNhW_Q,152
|
|
325
|
+
reflex/components/tags/cond_tag.py,sha256=oYsiTxANrByBg7NwuXVk2yGN5n2u7FHreeG1PdmfzIo,607
|
|
326
|
+
reflex/components/tags/iter_tag.py,sha256=ZTqCM-iF_JCeTWjQkHBzx-j83BAQQD4a6yyPhG8H0gM,4508
|
|
327
|
+
reflex/components/tags/match_tag.py,sha256=mqQF6fHhOSGSMdiaJ7YlwXSMhRtDmmIBu1Gw-VQQ324,586
|
|
328
|
+
reflex/components/tags/tag.py,sha256=ALYXjj7oaDIqeHcsGwUys9qfhSE8t6nPB-3MjTaLqRk,3695
|
|
329
|
+
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
330
|
+
reflex/config.py,sha256=ZPsehIuPNxKWm2OHTJZcgf5EP-jLXPTTkxQDPkUHrd8,28548
|
|
331
|
+
reflex/constants/__init__.py,sha256=NLRc-Hb2BwmABdVmSaXlIuBQKsPS8KM9TWaUrhE330k,1996
|
|
332
|
+
reflex/constants/base.py,sha256=5N5ls3Z6dv9xSWTl0BVPDQqCHkEgmhRgxDiAPkX5jfA,7512
|
|
333
|
+
reflex/constants/colors.py,sha256=cgLn8iEWtlpjQgbhhlCOGjbhfOULKnzqqzPph63SJoI,1613
|
|
334
|
+
reflex/constants/compiler.py,sha256=p-BPecWEXiHi5FtumcbCDUo8wuQNyICDFyn2w7xPzzo,5496
|
|
335
|
+
reflex/constants/config.py,sha256=4EljK_fD1Nf4-OfJ9HLYeHSW5xTfNPN6AGjzJ5ARZSY,1579
|
|
336
|
+
reflex/constants/custom_components.py,sha256=joJt4CEt1yKy7wsBH6vYo7_QRW0O_fWXrrTf0VY2q14,1317
|
|
337
|
+
reflex/constants/event.py,sha256=1gKAwNoYyvZs3vNvfynF0SeFWnRGXZX0A_2iPhqUyu8,2818
|
|
338
|
+
reflex/constants/installer.py,sha256=OpnHqCFfLtaZlUaeJYj-NuIMA0zngrK3rZkF_hq0LCI,4740
|
|
339
|
+
reflex/constants/route.py,sha256=J4QVdeeYz9wX0lYT1sgx0m3kLSArDHzmGCDZ2sqy854,2139
|
|
340
|
+
reflex/constants/state.py,sha256=6Mfr7xVcAZOj5aSy7kp0W6r8oTs7K30URgGDAAFLfPQ,294
|
|
341
|
+
reflex/constants/style.py,sha256=EPgRYHhAlcrPUBc2HkDTdTj-Q0uDAXHlq8Sp6D35Zf4,475
|
|
342
|
+
reflex/constants/utils.py,sha256=HGOSq9c-xGbCb1xoLAGLBdc-FOE8iuBzvuU24zSfsV0,789
|
|
343
|
+
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
344
|
+
reflex/custom_components/custom_components.py,sha256=lAalybJ4yzJvXZ1wh362YsG3nmIr5QxKC8T8cdpwuGg,33142
|
|
345
|
+
reflex/event.py,sha256=aXVTgP8jFcd8G4-X2JviOQTcQc0B-dGz6mu7ocyPRqY,61225
|
|
346
|
+
reflex/experimental/__init__.py,sha256=bvJ6qFeO3xT3L-8IBtk4ecoi5rda3EDvblgNP60yhEo,2206
|
|
347
|
+
reflex/experimental/client_state.py,sha256=5lmCM7fzEtJp5eegUCoygJRYXf6f1U9UiFyuWxsznbs,9906
|
|
348
|
+
reflex/experimental/hooks.py,sha256=CHYGrAE5t8riltrJmDFgJ4D2Vhmhw-y3B3MSGNlOQow,2366
|
|
349
|
+
reflex/experimental/layout.py,sha256=v44TTIZdZ6ERj1dPsp_u_GUex6l29n6zcQAgro6nnC4,7539
|
|
350
|
+
reflex/experimental/layout.pyi,sha256=JbQfMfLZNUNCR-6m9zsvMLdV04GBJoeelPqdO6Bo5eI,14336
|
|
351
|
+
reflex/experimental/misc.py,sha256=X0vgTWn72VduWi6p2hMU-gGksRkhu7isDJNJ0kNVaAo,704
|
|
352
|
+
reflex/istate/__init__.py,sha256=LDu_3-31ZI1Jn9NWp4mM0--fDiXI0x8x3gR4-kdrziY,57
|
|
353
|
+
reflex/istate/data.py,sha256=BFqcdRqVegouoHWWMFOvMvZU_LXe9lCNSWgQEzYNWbI,4324
|
|
354
|
+
reflex/istate/dynamic.py,sha256=xOQ9upZVPf6ngqcLQZ9HdAAYmoWwJ8kRFPH34Q5HTiM,91
|
|
355
|
+
reflex/istate/proxy.py,sha256=ttfcMFBNOYnRT48U2fzkyo55Gr-Z8hkoulzPr0tD5VU,1059
|
|
356
|
+
reflex/istate/storage.py,sha256=hcuXcbJcz5k8WeB5s3VuSBvbz_OIRaAVrtFRLh_MNEM,4343
|
|
357
|
+
reflex/istate/wrappers.py,sha256=p8uuioXRbR5hperwbOJHUcWdu7hukLikQdoR7qrnKsI,909
|
|
358
|
+
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
359
|
+
reflex/middleware/hydrate_middleware.py,sha256=QJBEZI-4Jtn3345WgZDQ-twIbJzfiHKvULc5z9Xi0IA,1523
|
|
360
|
+
reflex/middleware/middleware.py,sha256=9eASK3MrbK1AvT2Sx5GFxXNwSuNW8_LTRGvPY1JccU4,1171
|
|
361
|
+
reflex/model.py,sha256=yOLkxNOgi3GY9mT2E-6rkK-uLv8Av-kYSJ7I19y9JzE,17559
|
|
362
|
+
reflex/page.py,sha256=lbI5Sd4RzZadPV6cYBSNRDIlNlRwEnOv1snF2RGKH04,2392
|
|
363
|
+
reflex/reflex.py,sha256=YZrdis1e2ubQoyZBhcAbSJePxgL4UZ1h4uzIQM6qKBE,19716
|
|
364
|
+
reflex/route.py,sha256=nn_hJwtQdjiqH_dHXfqMGWKllnyPQZTSR-KWdHDhoOs,4210
|
|
365
|
+
reflex/state.py,sha256=W6JeXxj9p5EgtpSAbnpOqTH0liOVZykzt6Nu8A10Nvw,139638
|
|
366
|
+
reflex/style.py,sha256=LXQjo6YhmdqUA59dV9OUxWuScyuYEqnE0rbWYkZ_ogI,13277
|
|
367
|
+
reflex/testing.py,sha256=iJ41rsJAzkS_poOw-ztlCGHbO2tEihBNRhoBhjKDTx4,35645
|
|
368
|
+
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
369
|
+
reflex/utils/build.py,sha256=5S8zQYiSp2czardXzwY060qScxNDiYWabUzs8elQivE,8522
|
|
370
|
+
reflex/utils/codespaces.py,sha256=TzDK--pHwP4r8Nzl0iB_8r-cOFmmL6nHfZ9xRQHA-KY,2754
|
|
371
|
+
reflex/utils/compat.py,sha256=aSJH_M6iomgHPQ4onQ153xh1MWqPi3HSYDzE68N6gZM,2635
|
|
372
|
+
reflex/utils/console.py,sha256=UeapvxGOcISv77tylHxech5F5R53mmNk4cnwcTseD8Q,8948
|
|
373
|
+
reflex/utils/exceptions.py,sha256=qL5E6F-lKcY7FrYJwKg-LjdvuugYnjszdnbfWkLemsE,7844
|
|
374
|
+
reflex/utils/exec.py,sha256=bc966tpJ8rUh9J8vhZc3txLGp8nAdmUCn76IKLmY1hU,16066
|
|
375
|
+
reflex/utils/export.py,sha256=wsyC6Atsu8LBZlrX0PhjnisMwhFycf4a3WH8DG1dam0,2567
|
|
376
|
+
reflex/utils/format.py,sha256=j56pM45c_-nq8Fnw8Q1z20Y0wFJ32fPpCPFLgH_xCQM,19876
|
|
377
|
+
reflex/utils/imports.py,sha256=CreBXamunK4I8BcBY-ET0P3kHLDZim1hV8ESoOBkOwo,3899
|
|
378
|
+
reflex/utils/lazy_loader.py,sha256=-3DcwIqHNft2fb1ikgDYAMiEwNfbiWfrTBAf1gEVX2o,1367
|
|
379
|
+
reflex/utils/net.py,sha256=0Yd9OLK8R_px2sqnqrDkTky6hYHtG2pEDvvilOjDfjc,1219
|
|
380
|
+
reflex/utils/path_ops.py,sha256=iX92VuUD0xu0FTtF8_azWELF33n9P6C0mOT0WFfThCw,6137
|
|
381
|
+
reflex/utils/prerequisites.py,sha256=19rcXlTUBhqVnYIFVnYcwgRQTie6_5lFyAU9OHVeQSA,65652
|
|
382
|
+
reflex/utils/processes.py,sha256=h_vXmQdInVCaCQ1cGgIQd4x5CbzYRSFy6n1U4iWkMy8,13729
|
|
383
|
+
reflex/utils/pyi_generator.py,sha256=6BVJ1KrLH8WvfYjBVm5-zjI6-Zdhzngp5ubkixsCIl4,41240
|
|
384
|
+
reflex/utils/redir.py,sha256=bmQGAgoNWwySeLRQTpoMpmKInwIOCW77wkXT61fwcj8,1868
|
|
385
|
+
reflex/utils/registry.py,sha256=bseD0bIO8b3pctHKpD5J2MRdDzcf7eWKtHEZVutVNJ0,1401
|
|
386
|
+
reflex/utils/serializers.py,sha256=xQjEiIqZS0tjxuEjqETXikePzSAbCxC6g_JnzNYk2s4,12554
|
|
387
|
+
reflex/utils/telemetry.py,sha256=PfbtZKtAaP_ufad5ZNqJYrtvkjDrqEFUGy9We9-B0pg,5804
|
|
388
|
+
reflex/utils/types.py,sha256=kZHLmRibRnTRex5cbjlnFqsYpi2CSbfsfOQ_vS70cxU,27124
|
|
389
|
+
reflex/vars/__init__.py,sha256=2Kv6Oh9g3ISZFESjL1al8KiO7QBZUXmLKGMCBsP-DoY,1243
|
|
390
|
+
reflex/vars/base.py,sha256=Oo64H7jFYCokld1Fh4vPQw1kWmdVHmIqAjZJOTD5wbs,99245
|
|
391
|
+
reflex/vars/datetime.py,sha256=6j63p5uZiWLldiIl3VVh9jWghuW1_GyBevyy2b4rdr4,5803
|
|
392
|
+
reflex/vars/dep_tracking.py,sha256=kluvF4Pfbpdqf0GcpmYHjT1yP-D1erAzaSQP6qIxjB0,13846
|
|
393
|
+
reflex/vars/function.py,sha256=v2W5JHgCK9Afu2mobFeoj03G6tbih1Y-wM7LQBwA9vU,14777
|
|
394
|
+
reflex/vars/number.py,sha256=rVybcAoMOOFsWAbA_BZN3GVx9p4W_YPLHVYRCJqti04,27861
|
|
395
|
+
reflex/vars/object.py,sha256=bolalu-v36VT_vwVrX5dh_o6x_zkvAUZlYZbrDrNHag,14841
|
|
396
|
+
reflex/vars/sequence.py,sha256=GiSXbOIcoy7VSrecuBjbhg5G4QTjFV0Rcfn5T0EsecA,52032
|
|
397
|
+
reflex-0.7.0a2.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
398
|
+
reflex-0.7.0a2.dist-info/METADATA,sha256=PizdjOchY8w-f20v4KQnbPaSL5ko45SwsP2_OOKSpp8,12073
|
|
399
|
+
reflex-0.7.0a2.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
400
|
+
reflex-0.7.0a2.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
401
|
+
reflex-0.7.0a2.dist-info/RECORD,,
|
reflex/experimental/assets.py
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"""Helper functions for adding assets to the app."""
|
|
2
|
-
|
|
3
|
-
from typing import Optional
|
|
4
|
-
|
|
5
|
-
from reflex import assets
|
|
6
|
-
from reflex.utils import console
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
def asset(relative_filename: str, subfolder: Optional[str] = None) -> str:
|
|
10
|
-
"""DEPRECATED: use `rx.asset` with `shared=True` instead.
|
|
11
|
-
|
|
12
|
-
Add an asset to the app.
|
|
13
|
-
Place the file next to your including python file.
|
|
14
|
-
Copies the file to the app's external assets directory.
|
|
15
|
-
|
|
16
|
-
Example:
|
|
17
|
-
```python
|
|
18
|
-
rx.script(src=rx._x.asset("my_custom_javascript.js"))
|
|
19
|
-
rx.image(src=rx._x.asset("test_image.png","subfolder"))
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
Args:
|
|
23
|
-
relative_filename: The relative filename of the asset.
|
|
24
|
-
subfolder: The directory to place the asset in.
|
|
25
|
-
|
|
26
|
-
Returns:
|
|
27
|
-
The relative URL to the copied asset.
|
|
28
|
-
"""
|
|
29
|
-
console.deprecate(
|
|
30
|
-
feature_name="rx._x.asset",
|
|
31
|
-
reason="Use `rx.asset` with `shared=True` instead of `rx._x.asset`.",
|
|
32
|
-
deprecation_version="0.6.6",
|
|
33
|
-
removal_version="0.7.0",
|
|
34
|
-
)
|
|
35
|
-
return assets.asset(
|
|
36
|
-
relative_filename, shared=True, subfolder=subfolder, _stack_level=2
|
|
37
|
-
)
|