reflex 0.7.14a6__py3-none-any.whl → 0.8.0__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/app/rxconfig.py.jinja2 +4 -1
- reflex/.templates/jinja/web/package.json.jinja2 +1 -1
- reflex/.templates/jinja/web/pages/_app.js.jinja2 +21 -11
- reflex/.templates/jinja/web/pages/_document.js.jinja2 +1 -1
- reflex/.templates/jinja/web/pages/base_page.js.jinja2 +0 -1
- reflex/.templates/jinja/web/pages/stateful_component.js.jinja2 +4 -0
- reflex/.templates/jinja/web/styles/styles.css.jinja2 +1 -0
- reflex/.templates/jinja/web/utils/context.js.jinja2 +25 -8
- reflex/.templates/web/app/entry.client.js +8 -0
- reflex/.templates/web/app/routes.js +10 -0
- reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +12 -37
- reflex/.templates/web/postcss.config.js +1 -1
- reflex/.templates/web/react-router.config.js +6 -0
- reflex/.templates/web/styles/__reflex_style_reset.css +399 -0
- reflex/.templates/web/utils/client_side_routing.js +21 -19
- reflex/.templates/web/utils/react-theme.js +92 -0
- reflex/.templates/web/utils/state.js +251 -100
- reflex/.templates/web/vite-plugin-safari-cachebust.js +160 -0
- reflex/.templates/web/vite.config.js +39 -0
- reflex/__init__.py +1 -6
- reflex/__init__.pyi +327 -192
- reflex/app.py +86 -135
- reflex/base.py +1 -87
- reflex/compiler/compiler.py +70 -19
- reflex/compiler/templates.py +3 -3
- reflex/compiler/utils.py +91 -33
- reflex/components/__init__.py +0 -2
- reflex/components/__init__.pyi +34 -18
- reflex/components/base/__init__.py +1 -5
- reflex/components/base/__init__.pyi +30 -21
- reflex/components/base/app_wrap.pyi +7 -7
- reflex/components/base/body.pyi +7 -7
- reflex/components/base/document.py +18 -14
- reflex/components/base/document.pyi +88 -38
- reflex/components/base/error_boundary.pyi +7 -7
- reflex/components/base/fragment.pyi +7 -7
- reflex/components/base/link.pyi +12 -12
- reflex/components/base/meta.py +4 -15
- reflex/components/base/meta.pyi +31 -31
- reflex/components/base/script.py +60 -58
- reflex/components/base/script.pyi +248 -34
- reflex/components/base/strict_mode.pyi +7 -7
- reflex/components/component.py +146 -217
- reflex/components/core/__init__.py +1 -0
- reflex/components/core/__init__.pyi +77 -37
- reflex/components/core/auto_scroll.pyi +7 -7
- reflex/components/core/banner.pyi +33 -33
- reflex/components/core/client_side_routing.py +7 -6
- reflex/components/core/client_side_routing.pyi +8 -59
- reflex/components/core/clipboard.pyi +7 -7
- reflex/components/core/debounce.py +1 -0
- reflex/components/core/debounce.pyi +7 -7
- reflex/components/core/foreach.py +5 -4
- reflex/components/core/helmet.py +14 -0
- reflex/components/{next/base.pyi → core/helmet.pyi} +12 -10
- reflex/components/core/html.pyi +7 -7
- reflex/components/core/match.py +3 -3
- reflex/components/core/sticky.pyi +21 -20
- reflex/components/core/upload.py +4 -2
- reflex/components/core/upload.pyi +26 -25
- reflex/components/datadisplay/__init__.pyi +13 -7
- reflex/components/datadisplay/code.py +14 -79
- reflex/components/datadisplay/code.pyi +11 -13
- reflex/components/datadisplay/dataeditor.pyi +38 -15
- reflex/components/datadisplay/shiki_code_block.py +5 -3
- reflex/components/datadisplay/shiki_code_block.pyi +16 -15
- reflex/components/dynamic.py +5 -5
- reflex/components/el/__init__.pyi +506 -246
- reflex/components/el/element.pyi +7 -7
- reflex/components/el/elements/__init__.pyi +504 -245
- reflex/components/el/elements/base.pyi +7 -7
- reflex/components/el/elements/forms.pyi +146 -101
- reflex/components/el/elements/inline.pyi +142 -142
- reflex/components/el/elements/media.pyi +131 -130
- reflex/components/el/elements/metadata.pyi +32 -32
- reflex/components/el/elements/other.pyi +37 -37
- reflex/components/el/elements/scripts.pyi +17 -17
- reflex/components/el/elements/sectioning.pyi +77 -77
- reflex/components/el/elements/tables.pyi +52 -52
- reflex/components/el/elements/typography.pyi +77 -77
- reflex/components/field.py +175 -0
- reflex/components/gridjs/datatable.py +2 -2
- reflex/components/gridjs/datatable.pyi +14 -14
- reflex/components/lucide/icon.py +6 -2
- reflex/components/lucide/icon.pyi +19 -17
- reflex/components/markdown/markdown.py +5 -3
- reflex/components/markdown/markdown.pyi +7 -7
- reflex/components/moment/moment.py +1 -1
- reflex/components/moment/moment.pyi +7 -7
- reflex/components/plotly/plotly.py +12 -6
- reflex/components/plotly/plotly.pyi +50 -49
- reflex/components/props.py +376 -27
- reflex/components/radix/__init__.pyi +123 -65
- reflex/components/radix/primitives/__init__.pyi +6 -4
- reflex/components/radix/primitives/accordion.py +8 -1
- reflex/components/radix/primitives/accordion.pyi +37 -37
- reflex/components/radix/primitives/base.pyi +12 -12
- reflex/components/radix/primitives/drawer.pyi +56 -55
- reflex/components/radix/primitives/form.pyi +63 -53
- reflex/components/radix/primitives/progress.pyi +26 -25
- reflex/components/radix/primitives/slider.pyi +27 -27
- reflex/components/radix/themes/__init__.pyi +5 -6
- reflex/components/radix/themes/base.py +3 -3
- reflex/components/radix/themes/base.pyi +42 -42
- reflex/components/radix/themes/color_mode.py +5 -6
- reflex/components/radix/themes/color_mode.pyi +17 -17
- reflex/components/radix/themes/components/__init__.pyi +75 -38
- reflex/components/radix/themes/components/alert_dialog.pyi +37 -37
- reflex/components/radix/themes/components/aspect_ratio.pyi +7 -7
- reflex/components/radix/themes/components/avatar.pyi +7 -7
- reflex/components/radix/themes/components/badge.pyi +7 -7
- reflex/components/radix/themes/components/button.pyi +7 -7
- reflex/components/radix/themes/components/callout.pyi +26 -25
- reflex/components/radix/themes/components/card.pyi +7 -7
- reflex/components/radix/themes/components/checkbox.pyi +16 -15
- reflex/components/radix/themes/components/checkbox_cards.pyi +12 -12
- reflex/components/radix/themes/components/checkbox_group.pyi +12 -12
- reflex/components/radix/themes/components/context_menu.pyi +67 -67
- reflex/components/radix/themes/components/data_list.pyi +22 -22
- reflex/components/radix/themes/components/dialog.pyi +36 -35
- reflex/components/radix/themes/components/dropdown_menu.pyi +42 -42
- reflex/components/radix/themes/components/hover_card.pyi +21 -20
- reflex/components/radix/themes/components/icon_button.pyi +7 -7
- reflex/components/radix/themes/components/inset.pyi +7 -7
- reflex/components/radix/themes/components/popover.pyi +22 -22
- reflex/components/radix/themes/components/progress.pyi +7 -7
- reflex/components/radix/themes/components/radio.pyi +7 -7
- reflex/components/radix/themes/components/radio_cards.pyi +12 -12
- reflex/components/radix/themes/components/radio_group.pyi +21 -20
- reflex/components/radix/themes/components/scroll_area.pyi +7 -7
- reflex/components/radix/themes/components/segmented_control.pyi +12 -12
- reflex/components/radix/themes/components/select.pyi +46 -45
- reflex/components/radix/themes/components/separator.pyi +7 -7
- reflex/components/radix/themes/components/skeleton.pyi +7 -7
- reflex/components/radix/themes/components/slider.pyi +17 -9
- reflex/components/radix/themes/components/spinner.pyi +7 -7
- reflex/components/radix/themes/components/switch.pyi +7 -7
- reflex/components/radix/themes/components/table.pyi +37 -37
- reflex/components/radix/themes/components/tabs.pyi +26 -25
- reflex/components/radix/themes/components/text_area.pyi +15 -9
- reflex/components/radix/themes/components/text_field.pyi +32 -19
- reflex/components/radix/themes/components/tooltip.pyi +7 -7
- reflex/components/radix/themes/layout/__init__.pyi +27 -14
- reflex/components/radix/themes/layout/base.pyi +7 -7
- reflex/components/radix/themes/layout/box.pyi +7 -7
- reflex/components/radix/themes/layout/center.pyi +7 -7
- reflex/components/radix/themes/layout/container.pyi +7 -7
- reflex/components/radix/themes/layout/flex.pyi +7 -7
- reflex/components/radix/themes/layout/grid.pyi +7 -7
- reflex/components/radix/themes/layout/list.pyi +26 -25
- reflex/components/radix/themes/layout/section.pyi +7 -7
- reflex/components/radix/themes/layout/spacer.pyi +7 -7
- reflex/components/radix/themes/layout/stack.pyi +17 -17
- reflex/components/radix/themes/typography/__init__.pyi +7 -5
- reflex/components/radix/themes/typography/blockquote.pyi +7 -7
- reflex/components/radix/themes/typography/code.pyi +7 -7
- reflex/components/radix/themes/typography/heading.pyi +7 -7
- reflex/components/radix/themes/typography/link.py +46 -11
- reflex/components/radix/themes/typography/link.pyi +312 -9
- reflex/components/radix/themes/typography/text.pyi +36 -35
- reflex/components/react_player/audio.pyi +10 -8
- reflex/components/react_player/react_player.pyi +7 -7
- reflex/components/react_player/video.pyi +10 -8
- reflex/components/recharts/__init__.pyi +208 -100
- reflex/components/recharts/cartesian.py +10 -8
- reflex/components/recharts/cartesian.pyi +90 -94
- reflex/components/recharts/charts.py +4 -2
- reflex/components/recharts/charts.pyi +49 -49
- reflex/components/recharts/general.pyi +31 -31
- reflex/components/recharts/polar.py +8 -4
- reflex/components/recharts/polar.pyi +23 -23
- reflex/components/recharts/recharts.py +2 -2
- reflex/components/recharts/recharts.pyi +12 -12
- reflex/components/sonner/toast.py +3 -3
- reflex/components/sonner/toast.pyi +9 -9
- reflex/config.py +10 -113
- reflex/constants/__init__.py +2 -2
- reflex/constants/base.py +28 -11
- reflex/constants/compiler.py +12 -3
- reflex/constants/event.py +1 -0
- reflex/constants/installer.py +26 -20
- reflex/constants/route.py +27 -8
- reflex/constants/state.py +2 -0
- reflex/custom_components/custom_components.py +0 -14
- reflex/environment.py +77 -5
- reflex/event.py +178 -81
- reflex/experimental/__init__.py +0 -30
- reflex/istate/__init__.py +69 -0
- reflex/istate/manager.py +1 -0
- reflex/istate/proxy.py +5 -3
- reflex/page.py +0 -27
- reflex/plugins/__init__.py +3 -2
- reflex/plugins/base.py +5 -1
- reflex/plugins/shared_tailwind.py +215 -0
- reflex/plugins/sitemap.py +206 -0
- reflex/plugins/tailwind_v3.py +15 -108
- reflex/plugins/tailwind_v4.py +18 -110
- reflex/reflex.py +1 -0
- reflex/route.py +157 -75
- reflex/state.py +171 -155
- reflex/testing.py +86 -16
- reflex/utils/build.py +38 -82
- reflex/utils/exec.py +83 -175
- reflex/utils/export.py +2 -2
- reflex/utils/format.py +1 -5
- reflex/utils/imports.py +5 -16
- reflex/utils/misc.py +67 -0
- reflex/utils/prerequisites.py +66 -68
- reflex/utils/processes.py +24 -47
- reflex/utils/pyi_generator.py +44 -49
- reflex/utils/serializers.py +14 -1
- reflex/utils/telemetry.py +0 -15
- reflex/utils/types.py +197 -62
- reflex/vars/__init__.py +2 -0
- reflex/vars/base.py +367 -134
- {reflex-0.7.14a6.dist-info → reflex-0.8.0.dist-info}/METADATA +15 -8
- reflex-0.8.0.dist-info/RECORD +403 -0
- reflex/.templates/web/next.config.js +0 -7
- reflex/components/base/head.py +0 -20
- reflex/components/base/head.pyi +0 -116
- reflex/components/next/__init__.py +0 -10
- reflex/components/next/base.py +0 -7
- reflex/components/next/image.py +0 -117
- reflex/components/next/image.pyi +0 -94
- reflex/components/next/link.py +0 -20
- reflex/components/next/link.pyi +0 -67
- reflex/components/next/video.py +0 -38
- reflex/components/next/video.pyi +0 -68
- reflex/components/suneditor/__init__.py +0 -5
- reflex/components/suneditor/editor.py +0 -269
- reflex/components/suneditor/editor.pyi +0 -199
- reflex/experimental/layout.py +0 -254
- reflex/experimental/layout.pyi +0 -814
- reflex-0.7.14a6.dist-info/RECORD +0 -408
- {reflex-0.7.14a6.dist-info → reflex-0.8.0.dist-info}/WHEEL +0 -0
- {reflex-0.7.14a6.dist-info → reflex-0.8.0.dist-info}/entry_points.txt +0 -0
- {reflex-0.7.14a6.dist-info → reflex-0.8.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: reflex
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: Web apps in pure Python.
|
|
5
5
|
Project-URL: homepage, https://reflex.dev
|
|
6
6
|
Project-URL: repository, https://github.com/reflex-dev/reflex
|
|
@@ -19,14 +19,14 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
20
|
Requires-Python: <4.0,>=3.10
|
|
21
21
|
Requires-Dist: alembic<2.0,>=1.15.2
|
|
22
|
-
Requires-Dist: click>=8
|
|
22
|
+
Requires-Dist: click>=8.2
|
|
23
23
|
Requires-Dist: fastapi>=0.115.0
|
|
24
|
-
Requires-Dist: granian[reload]>=2.
|
|
24
|
+
Requires-Dist: granian[reload]>=2.4.0
|
|
25
25
|
Requires-Dist: httpx<1.0,>=0.28.0
|
|
26
26
|
Requires-Dist: jinja2<4.0,>=3.1.2
|
|
27
27
|
Requires-Dist: packaging<26,>=24.2
|
|
28
28
|
Requires-Dist: platformdirs<5.0,>=4.3.7
|
|
29
|
-
Requires-Dist: psutil<8.0,>=7.0.0
|
|
29
|
+
Requires-Dist: psutil<8.0,>=7.0.0; sys_platform == 'win32'
|
|
30
30
|
Requires-Dist: pydantic<3.0,>=1.10.21
|
|
31
31
|
Requires-Dist: python-multipart<1.0,>=0.0.20
|
|
32
32
|
Requires-Dist: python-socketio<6.0,>=5.12.0
|
|
@@ -39,8 +39,7 @@ Requires-Dist: wrapt<2.0,>=1.17.0
|
|
|
39
39
|
Description-Content-Type: text/markdown
|
|
40
40
|
|
|
41
41
|
<div align="center">
|
|
42
|
-
<img src="https://raw.githubusercontent.com/reflex-dev/reflex/main/docs/images/
|
|
43
|
-
<img src="https://raw.githubusercontent.com/reflex-dev/reflex/main/docs/images/reflex_light.svg#gh-dark-mode-only" alt="Reflex Logo" width="300px">
|
|
42
|
+
<img src="https://raw.githubusercontent.com/reflex-dev/reflex/main/docs/images/reflex.svg" alt="Reflex Logo" width="300px">
|
|
44
43
|
|
|
45
44
|
<hr>
|
|
46
45
|
|
|
@@ -60,7 +59,12 @@ Description-Content-Type: text/markdown
|
|
|
60
59
|
|
|
61
60
|
---
|
|
62
61
|
|
|
63
|
-
|
|
62
|
+
> [!NOTE]
|
|
63
|
+
> 🚀 **Try [Reflex Build](https://build.reflex.dev/)** – our AI-powered app builder that generates full-stack Reflex applications in seconds.
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
# Introduction
|
|
64
68
|
|
|
65
69
|
Reflex is a library to build full-stack web apps in pure Python.
|
|
66
70
|
|
|
@@ -268,7 +272,10 @@ You can create a multi-page app by adding more pages.
|
|
|
268
272
|
|
|
269
273
|
Reflex launched in December 2022 with the name Pynecone.
|
|
270
274
|
|
|
271
|
-
|
|
275
|
+
🚀 Introducing [Reflex Build](https://build.reflex.dev/) — Our AI-Powered Builder
|
|
276
|
+
Reflex Build uses AI to generate complete full-stack Python applications. It helps you quickly create, customize, and refine your Reflex apps — from frontend components to backend logic — so you can focus on your ideas instead of boilerplate code. Whether you’re prototyping or scaling, Reflex Build accelerates development by intelligently scaffolding and optimizing your app’s entire stack.
|
|
277
|
+
|
|
278
|
+
Alongside this, [Reflex Cloud](https://cloud.reflex.dev) launched in 2025 to offer the best hosting experience for your Reflex apps. We’re continuously improving the platform with new features and capabilities.
|
|
272
279
|
|
|
273
280
|
Reflex has new releases and features coming every week! Make sure to :star: star and :eyes: watch this repository to stay up to date.
|
|
274
281
|
|
|
@@ -0,0 +1,403 @@
|
|
|
1
|
+
reflex/__init__.py,sha256=S_nJPFaTYwyxSzfOpACFxlSe2Vc8rQGr5ZDeyRSDiYQ,10264
|
|
2
|
+
reflex/__init__.pyi,sha256=LHVB-SgdoFyB5aLiqiLEezMAd-vJje79ndxDxt9HWz8,10003
|
|
3
|
+
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
4
|
+
reflex/admin.py,sha256=Nbc38y-M8iaRBvh1W6DQu_D3kEhO8JFvxrog4q2cB_E,434
|
|
5
|
+
reflex/app.py,sha256=qRyXDNd9ASIeyescIg71E08mUarppiITdh-btn1TREQ,75003
|
|
6
|
+
reflex/assets.py,sha256=l5O_mlrTprC0lF7Rc_McOe3a0OtSLnRdNl_PqCpDCBA,3431
|
|
7
|
+
reflex/base.py,sha256=Oh664QL3fZEHErhUasFqP7fE4olYf1y-9Oj6uZI2FCU,1173
|
|
8
|
+
reflex/config.py,sha256=tEUaW4oJbkCDtQ1SgsT4APtLpQ9-VknVWdqwFoYorvg,15729
|
|
9
|
+
reflex/environment.py,sha256=f9-5-XGTcI2OF02SM7DXGQMjW9YdfK0gj6IGyqOglvQ,21567
|
|
10
|
+
reflex/event.py,sha256=IDjHAbbzMo7mNUiFKvgiR7sGlQ883B00rvmncVy5I-Q,69724
|
|
11
|
+
reflex/model.py,sha256=xED7blemoiKxPFaOkCMrSayjjon7AJp8t5g459p7dGs,17646
|
|
12
|
+
reflex/page.py,sha256=Bn8FTlUtjjKwUtpQA5r5eaWE_ZUb8i4XgrQi8FWbzNA,1880
|
|
13
|
+
reflex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
reflex/reflex.py,sha256=eUP0GevShUc1nodfA5_ewB3hgefWU0_x166HGCY8QTs,21606
|
|
15
|
+
reflex/route.py,sha256=UfhKxFwe3EYto66TZv5K2Gp6ytRbcL-_v72DJ5girEs,7691
|
|
16
|
+
reflex/state.py,sha256=4qqkUu_sazxQXn526v9jItudESZuzR6vZbxqdIKcczo,91953
|
|
17
|
+
reflex/style.py,sha256=JxbXXA4MTnXrk0XHEoMBoNC7J-M2oL5Hl3W_QmXvmBg,13222
|
|
18
|
+
reflex/testing.py,sha256=6EXQN9K0tYfzEDe2aSRh4xLM_Jb_oIrI_qH2F_e0KXc,39423
|
|
19
|
+
reflex/.templates/apps/blank/assets/favicon.ico,sha256=baxxgDAQ2V4-G5Q4S2yK5uUJTUGkv-AOWBQ0xd6myUo,4286
|
|
20
|
+
reflex/.templates/apps/blank/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
reflex/.templates/apps/blank/code/blank.py,sha256=UmGz7aDxGULYINwLgotQoj-9qqpy7EOfAEpLmOT7C_k,917
|
|
22
|
+
reflex/.templates/jinja/app/rxconfig.py.jinja2,sha256=ywlCgdKvAcUzmzyW-TGIiYCF5yqIH641PD0tWr6tOTc,170
|
|
23
|
+
reflex/.templates/jinja/custom_components/README.md.jinja2,sha256=qA4XZDxOTc2gRIG7CO1VvVawOgThwZqU2RZvRTPhXwE,127
|
|
24
|
+
reflex/.templates/jinja/custom_components/__init__.py.jinja2,sha256=z5n2tvoS7iNDaM6mUGKETdpGlC0oA1_rrYURu7O_xpk,32
|
|
25
|
+
reflex/.templates/jinja/custom_components/demo_app.py.jinja2,sha256=ipbKtObNqQLcwbFowod_bSWW4bttW_8bNyTXl7JL1zg,826
|
|
26
|
+
reflex/.templates/jinja/custom_components/pyproject.toml.jinja2,sha256=HG-k3pruUlMy7xYz339hgFkNMTLqB-C_FTLKkOgfBPM,630
|
|
27
|
+
reflex/.templates/jinja/custom_components/src.py.jinja2,sha256=e80PwMI6NoeQtGJ0NXWhYrkqUe7jvvJTFuztYQe-R5w,2403
|
|
28
|
+
reflex/.templates/jinja/web/package.json.jinja2,sha256=cS9M6ADYDoYL2Kc8m5dYhV8eDaehOXb6qK_IOijT3N0,673
|
|
29
|
+
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=tG-SRR7DCP3SxLoUl_5rIRmL1uBDVnkcenSUxy459hY,1575
|
|
30
|
+
reflex/.templates/jinja/web/pages/_document.js.jinja2,sha256=v_r79GPGKnw1g9Bg4lK9o_ow5AzBnvKdz0nv3OgJyzU,166
|
|
31
|
+
reflex/.templates/jinja/web/pages/base_page.js.jinja2,sha256=nteivFZgOhgwxlPvejgaoxKTPGvDRb7_JAXhsZDZeLM,361
|
|
32
|
+
reflex/.templates/jinja/web/pages/component.js.jinja2,sha256=1Pui62uSL7LYA7FXZrh9ZmhKH8vHYu663eR134hhsAY,86
|
|
33
|
+
reflex/.templates/jinja/web/pages/custom_component.js.jinja2,sha256=xUOfUwREPp4h2kozr6mEqSAASnNLzC9b9XHCXVsUQjg,485
|
|
34
|
+
reflex/.templates/jinja/web/pages/index.js.jinja2,sha256=7sXw99TfjlcLYiLKlWvD3k-3IuFzLO4Y63mvSU97uds,360
|
|
35
|
+
reflex/.templates/jinja/web/pages/macros.js.jinja2,sha256=RtMZ6eufmMrHghNDMKpueSAhd-znKjgBbJXAAHFc7vU,901
|
|
36
|
+
reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=gAipi5MiAVgHntadfThsogunlqpmUwLk5ROLyJJGgUM,387
|
|
37
|
+
reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9u5xOliKWxjgmnia6AJbNnII97SC-dt_KSU,101
|
|
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=acb0EFvhRLLMc_EDguy1qcMq9CJ6i2tsWUzFyXi-9vk,163
|
|
40
|
+
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=l1k-H4Y0DmOdeMr8xVEwkSzeBpVc1o94cOjJJ3B2WSY,4103
|
|
41
|
+
reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=OSpBMh0Z9tTeqb10js4ZtnE9s1RV4gJfE8629csST8M,26
|
|
42
|
+
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
43
|
+
reflex/.templates/web/jsconfig.json,sha256=rhQZZRBYxBWclFYTeU6UakzbGveM4qyRQZUpEAVhyqY,118
|
|
44
|
+
reflex/.templates/web/postcss.config.js,sha256=6Hf540Ny078yfmJ_-tniZtmgHW6euyEyxO0zH-Y1EtQ,86
|
|
45
|
+
reflex/.templates/web/react-router.config.js,sha256=5K1FBryYdPusn1nE513GwB5_5UdPzoyH8ZMANUbpodQ,84
|
|
46
|
+
reflex/.templates/web/vite-plugin-safari-cachebust.js,sha256=FcyppYYBxUlZtQ-D_iyVaQIT6TBVisBH7DMzWxYm-zA,5300
|
|
47
|
+
reflex/.templates/web/vite.config.js,sha256=3aKELQMgA-Xz7Xv81UIS4IdwSW6_sCRQFmvF7Q_RfqQ,983
|
|
48
|
+
reflex/.templates/web/app/entry.client.js,sha256=2Jv-5SQWHhHmA07BP50f1ew1V-LOsX5VoLtSInnFDj8,264
|
|
49
|
+
reflex/.templates/web/app/routes.js,sha256=OPPW82B079c4FGq_p5C5OBrkVnTNRFhgG3--WKlJSy0,312
|
|
50
|
+
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=dnDHW49imtdalZJQqj7J_u7cj2z8Sve7OlhtOO0FbKE,916
|
|
51
|
+
reflex/.templates/web/components/shiki/code.js,sha256=4Es1pxsr-lX4hTQ5mglrwwC6O_SI-z-O60k03z8VFzQ,1144
|
|
52
|
+
reflex/.templates/web/styles/__reflex_style_reset.css,sha256=qbC6JIT643YEsvSQ0D7xBmWE5vXy94JGrKNihRuEjnA,8913
|
|
53
|
+
reflex/.templates/web/utils/client_side_routing.js,sha256=lRNgEGCLfTejh8W3aCuBdFuko6UI2vetk64j8wLT5Uk,1650
|
|
54
|
+
reflex/.templates/web/utils/react-theme.js,sha256=4CNLOcjLS5tiRp0TIgKK7trf8bSLWtmeDVhFP6BLe80,2349
|
|
55
|
+
reflex/.templates/web/utils/state.js,sha256=fd6ZL57lhvK2ykeuM4-ojtQOl6ym65adMLTUr2pKTIE,35549
|
|
56
|
+
reflex/.templates/web/utils/helpers/dataeditor.js,sha256=pG6MgsHuStDR7-qPipzfiK32j9bKDBa-4hZ0JSUo4JM,1623
|
|
57
|
+
reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseLgQVk-DW-eFiHJYO9As,528
|
|
58
|
+
reflex/.templates/web/utils/helpers/paste.js,sha256=ef30HsR83jRzzvZnl8yV79yqFP8TC_u8SlN99cCS_OM,1799
|
|
59
|
+
reflex/.templates/web/utils/helpers/range.js,sha256=Bjr7Ex1Mghpsopjfrcp__IVFw8F8AsMiP-0nE20ZZwk,1091
|
|
60
|
+
reflex/.templates/web/utils/helpers/throttle.js,sha256=qxeyaEojaTeX36FPGftzVWrzDsRQU4iqg3U9RJz9Vj4,566
|
|
61
|
+
reflex/app_mixins/__init__.py,sha256=Oegz3-gZLP9p2OAN5ALNbsgxuNQfS6lGZgQA8cc-9mQ,137
|
|
62
|
+
reflex/app_mixins/lifespan.py,sha256=9rrdVUY0nHyk3gj31WJm7mw6I7KHBNtvSs9tZdwUm4I,3300
|
|
63
|
+
reflex/app_mixins/middleware.py,sha256=BKhe0jUFO1_TylEC48LUZyaeYyPmAYW-NV4H5Rw221k,2848
|
|
64
|
+
reflex/app_mixins/mixin.py,sha256=R1YncalqDrbdPZvpKVbm72ZKmQZxYAWfuFq9JknzTqQ,305
|
|
65
|
+
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
66
|
+
reflex/compiler/compiler.py,sha256=p-8xacPH7kCjE6tpW1AzbfNQJsF0033yXMpu03Exti4,29923
|
|
67
|
+
reflex/compiler/templates.py,sha256=mQifVgvE7cKyzMFL9F5jxdJb9KFxucWJa7nuOp09ZUo,6002
|
|
68
|
+
reflex/compiler/utils.py,sha256=v2LGz6WAFOSRpn3H0l215E94R7r7hB3s9vseWrQiXUQ,19045
|
|
69
|
+
reflex/components/__init__.py,sha256=55uockd2mEBsaA-fmDO_R4vJewzGPZUk-6UZFNHBSdc,568
|
|
70
|
+
reflex/components/__init__.pyi,sha256=ZqnBIRh1UuLSwAk6wLFmHlexyZ-6SNGo7AGJjWI7aGQ,698
|
|
71
|
+
reflex/components/component.py,sha256=yjVYLZ4LGlfj7uV9O3QpM3-f_OKvHK9lHcNOdJI3mpo,97642
|
|
72
|
+
reflex/components/dynamic.py,sha256=AyOjAW5LQZlDShIFJ7d9P2dFTI-1pr1tZR32E2Rhr9s,7422
|
|
73
|
+
reflex/components/field.py,sha256=j5JZFzNlET3GAIW91m1L31RypXylMAxJNm0-CJbtykM,5745
|
|
74
|
+
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
75
|
+
reflex/components/props.py,sha256=BH7RiRu_EI2BRkB1PyBVp6tLeFTTV4FzGEdDIXXQ9Bk,14378
|
|
76
|
+
reflex/components/base/__init__.py,sha256=6DzVn2oVZqmsXYq3r9AN8Q40R0NAsyRpSyVzBDZndz0,690
|
|
77
|
+
reflex/components/base/__init__.pyi,sha256=CoM0dGGkZSKLNHe6KBS4Zgc6sRpRGM5dZ_EuVmZ2qkA,883
|
|
78
|
+
reflex/components/base/app_wrap.py,sha256=5K_myvYvHPeAJbm3BdEX17tKvdNEj6SV9RYahbIQBAQ,514
|
|
79
|
+
reflex/components/base/app_wrap.pyi,sha256=gpSyUuoW_WScJbqS97cfbMXV_6O0Kdq4yBJKM28FxdA,2035
|
|
80
|
+
reflex/components/base/bare.py,sha256=jv6HStlixsBTPR6Q_PQnd7MtQDz3ncktcLYUODqwog0,7733
|
|
81
|
+
reflex/components/base/body.py,sha256=KLPOhxVsKyjPwrY9AziCOOG_c9ckOqIhI4n2i3_Q3NU,129
|
|
82
|
+
reflex/components/base/body.pyi,sha256=yEILxDAFGWC4_8eF1PJzLIyAiVKEe91X1aowzW0RqrY,8785
|
|
83
|
+
reflex/components/base/document.py,sha256=Fr7y22NbeKeiz8kWPH2q5BpFjKdq-AmY-sxZilee_H8,636
|
|
84
|
+
reflex/components/base/document.pyi,sha256=lOdqJvR2BwODxfR0bOeSKjnZd175AIT3-su9qnPScrQ,12568
|
|
85
|
+
reflex/components/base/error_boundary.py,sha256=lptj-mF_-i_9UlaqDCwNun3Y8i76ME1hzsmGoQdKCOk,6289
|
|
86
|
+
reflex/components/base/error_boundary.pyi,sha256=JW4FciEY2mfV0md9EvGAdhln2SKB9n8llTdfSAhZCKA,3056
|
|
87
|
+
reflex/components/base/fragment.py,sha256=ys7wkokq-N8WBxa9fqkEaNIrBlSximyD7vqlFVe02hQ,342
|
|
88
|
+
reflex/components/base/fragment.pyi,sha256=GrpnNRRNJLEVrOeBwZmVwT7OjsiDqxF2x1wvd9vwRPY,2531
|
|
89
|
+
reflex/components/base/link.py,sha256=QZ4B5iWlw3REDBfOvLhnzu6BYwfbn2lpzwuPqaXU618,937
|
|
90
|
+
reflex/components/base/link.pyi,sha256=W92leRCCsMkDOeE-YLC8uRPz8eDJPbZd1pbMbxVUyHg,18034
|
|
91
|
+
reflex/components/base/meta.py,sha256=1WeeIn6Yo35-3LsraerhY5nMFy-OrURFCI0b3thU6lc,1280
|
|
92
|
+
reflex/components/base/meta.pyi,sha256=ciEerqP0Y8cw9Aw2oFvy-PgUHZUqgieEqaJBrJDHelc,29035
|
|
93
|
+
reflex/components/base/script.py,sha256=SqH4UIE9sZgFwvoc239qeLwzktRvNBPZbiGFRj4h9nM,2374
|
|
94
|
+
reflex/components/base/script.pyi,sha256=tE8_KuihvLyhhsi_PPmImdMFSMvlPAGDq8npHZgLfUI,10653
|
|
95
|
+
reflex/components/base/strict_mode.py,sha256=_Rl2uGzL8gXTANOpoSU7uxsUQRH5JeTk2EIceWJJa5E,251
|
|
96
|
+
reflex/components/base/strict_mode.pyi,sha256=pAgRgQJ9f6fgFrcIGpx7HahtojGxaoJ8khXpHYNxtjU,2510
|
|
97
|
+
reflex/components/core/__init__.py,sha256=81araQcvIlVNXr1h-kQHaUK46sV0lfJrAlZbishb7-g,1347
|
|
98
|
+
reflex/components/core/__init__.pyi,sha256=3IZ4XbJAHFR0aKTo3FhF3-t_qJVyfGmFK3GU_IIxLGs,1865
|
|
99
|
+
reflex/components/core/auto_scroll.py,sha256=3jtFUqMUM1R_YyxWjbNVLiLktw6HHp50EzIFTkFtgto,3616
|
|
100
|
+
reflex/components/core/auto_scroll.pyi,sha256=bZvBS6HBGMZrN8sZIuJs2jaW2efN0yIr_Pd-C0cxgO0,9019
|
|
101
|
+
reflex/components/core/banner.py,sha256=DIjy4-qydJuLYVDKJYtrIeO4HFLdbgpXDVF4o2sRkDs,18568
|
|
102
|
+
reflex/components/core/banner.pyi,sha256=WRU-jleR0jIy-yVG8Wcqraj30DQ3lj3CI2gxoumuTt0,26078
|
|
103
|
+
reflex/components/core/breakpoints.py,sha256=7nNG9Ewjvbk1hB0VoFiQxlDR333Mq2y977CNWjslAWA,2692
|
|
104
|
+
reflex/components/core/client_side_routing.py,sha256=D5LWLTVW8WEuV17nNe14RKmuDhJegam0eYvOoHxh2Ts,1893
|
|
105
|
+
reflex/components/core/client_side_routing.pyi,sha256=xTWIhAoyxtXWPf_sasPewZ1zNGk8xl50DH-K0oxbkJM,2746
|
|
106
|
+
reflex/components/core/clipboard.py,sha256=nSYYkMOmoIT0v7XAA_reKdZ4_oH-QRUaz1OBZR8XdyM,3363
|
|
107
|
+
reflex/components/core/clipboard.pyi,sha256=LZe27mWIbpqVijKl-8gyqjUfJWlJNQ2YQdJ2fcgA6FQ,3360
|
|
108
|
+
reflex/components/core/colors.py,sha256=gkT5o5OqI_BR5fGMcCmBUpaz99XRNol9zAis46WktI4,1564
|
|
109
|
+
reflex/components/core/cond.py,sha256=UjdH5nbya9BxDTzVijn4qlpYKhf09kWjPe4e0iBfq3Y,5718
|
|
110
|
+
reflex/components/core/debounce.py,sha256=P0rj23JKVsx_dzPMVI4HTOyrXhhacxh-QkI4Z9K6KNQ,5022
|
|
111
|
+
reflex/components/core/debounce.pyi,sha256=Gem-sS0yikFm-eABfLYVU9UbujTKl4vhEWEILPvt8uo,3144
|
|
112
|
+
reflex/components/core/foreach.py,sha256=U0vXz1WQjj0gnfkjhgW2cWEfi-gurbsaC5YC8GnqBq4,6269
|
|
113
|
+
reflex/components/core/helmet.py,sha256=9Fr2Tz_J2v8r5t1xeZClL0V5-fEWTiFAXTcJ6bECvAw,220
|
|
114
|
+
reflex/components/core/helmet.pyi,sha256=gbU_m3uzCFwP4IM7Mqz06TPQvBv-2WbmHqeOQ1s1_pM,2521
|
|
115
|
+
reflex/components/core/html.py,sha256=JKK3MsbuzxtcVXbzvW_Q4TZuF9yk3WwiC9LmQl34rzA,1303
|
|
116
|
+
reflex/components/core/html.pyi,sha256=iSqLZHkkS2jf09u1MPA4NWbFmzmUoVbwrrTx_tKRnzI,9074
|
|
117
|
+
reflex/components/core/match.py,sha256=syVnQw0OS2jYpqE9AsLH0uODyjmFJVBqrEPviUYf3Cw,9101
|
|
118
|
+
reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ2ty4wAc,1911
|
|
119
|
+
reflex/components/core/sticky.py,sha256=2B3TxrwG2Rtp_lv1VkMOIF2bqSiT7qYGbqbiZiMKxKY,3856
|
|
120
|
+
reflex/components/core/sticky.pyi,sha256=U3VyCnx4hWWORd4yIiIe-mu_IdsPry2iMXrGMw2tLgQ,32906
|
|
121
|
+
reflex/components/core/upload.py,sha256=z3oHPpdy9A9csuSlw9IKi61mEZJWmr37wArbDMAy02k,13460
|
|
122
|
+
reflex/components/core/upload.pyi,sha256=q88GncKmdgG9s1PQkEs0SWGEdzpxdr31UXmDIYq9qhQ,16385
|
|
123
|
+
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
124
|
+
reflex/components/datadisplay/__init__.py,sha256=L8pWWKNHWdUD2fbZRoEKjd_8c_hpDdGYO463hwkoIi4,438
|
|
125
|
+
reflex/components/datadisplay/__init__.pyi,sha256=H3LZkWdrw3RTv_csaIT8qoClgAJTonlGZ5ZMeGMV0Bs,551
|
|
126
|
+
reflex/components/datadisplay/code.py,sha256=KcCw77EzQpXMAL1m4k1_JyqhwWKD0Pvsgtku2ESto6s,12543
|
|
127
|
+
reflex/components/datadisplay/code.pyi,sha256=uTdz5sIDtmio7NijDYMxt2akALpZMyVAAo8ngBSxFi8,41535
|
|
128
|
+
reflex/components/datadisplay/dataeditor.py,sha256=SxvIDyKl9TILOlx6Zga9jCcu0LBc4E1WhrUFJGO6lKs,13496
|
|
129
|
+
reflex/components/datadisplay/dataeditor.pyi,sha256=qda-3yLFPykvMSrKk-j3EOliVXY8rJHUssL-bYlTSsE,12519
|
|
130
|
+
reflex/components/datadisplay/logo.py,sha256=xvg5TRVRSi2IKn7Kg4oYzWcaFMHfXxUaCp0cQmuKSn0,1993
|
|
131
|
+
reflex/components/datadisplay/shiki_code_block.py,sha256=qCp4jZO3Ek4mR_1Qs4oxLh-GCEo6VBlpb8B9MDDdw4Y,24503
|
|
132
|
+
reflex/components/datadisplay/shiki_code_block.pyi,sha256=FXGWyG7u3RZQIwhK4M0YAYXRaJ-Pd-Aof_wjrlG7SrY,57323
|
|
133
|
+
reflex/components/el/__init__.py,sha256=nfIjf_cyieEmxptKjA6wRjoongswXv4X3n6vDmsdarI,416
|
|
134
|
+
reflex/components/el/__init__.pyi,sha256=7P6mNFbjiPyE0vNwUO4B5i-a2cqhjNRSJ7YNL7xKa7E,6194
|
|
135
|
+
reflex/components/el/element.py,sha256=stGVO6A2waCHq2CGQqR_g798hDKkuSZerwB0tYfZpRE,582
|
|
136
|
+
reflex/components/el/element.pyi,sha256=z8WHnR-wzs3XGaqJpS6Gj02S_MMljLYp9F3fn6F3DYA,2498
|
|
137
|
+
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
138
|
+
reflex/components/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
|
|
139
|
+
reflex/components/el/constants/react.py,sha256=f1-Vo8iWn2jSrR7vy-UwGbGRvw88UUZnbb3Rb56MSS4,15554
|
|
140
|
+
reflex/components/el/constants/reflex.py,sha256=7ChVeOvzjovZLHa-4vjWEGDqHsefV3tNsa8TKHWFaXM,1697
|
|
141
|
+
reflex/components/el/elements/__init__.py,sha256=IqclwtTctrEpodT3Wulei7RiB2Q5oWTzA7xpNPc6M54,2761
|
|
142
|
+
reflex/components/el/elements/__init__.pyi,sha256=cv9TAlYcXurFWuF05zkWfVWIHw9C8P_vGdJpT51xpBQ,8540
|
|
143
|
+
reflex/components/el/elements/base.py,sha256=4jnwyCQUHvWcIfwiIWVCiIC_jbwZlkAiOgx73t7tdw8,3075
|
|
144
|
+
reflex/components/el/elements/base.pyi,sha256=-wd-cLLOx1rXdtAJ_1UlF9B4mtTJyZAs1Y1uYMcp-0M,10204
|
|
145
|
+
reflex/components/el/elements/forms.py,sha256=sPGCaCMxAgAXK3rkAKWI01Ggg8hkunkpZEgmchm5HkQ,21655
|
|
146
|
+
reflex/components/el/elements/forms.pyi,sha256=mq21H_9lIY53lWtmR2iIZMF5hOEaauFdIDU0nimSXbk,170986
|
|
147
|
+
reflex/components/el/elements/inline.py,sha256=q3Ku_x8L9NaXrYQovCfkWwZ5AfXG0VyhGN_OT73kA0Y,4126
|
|
148
|
+
reflex/components/el/elements/inline.pyi,sha256=mWgJ4a_2De__0ZpailJXDpDonEE0861zrIO9Bc039iU,235400
|
|
149
|
+
reflex/components/el/elements/media.py,sha256=3f3zJRDDp0UCzaUIJHZV4RzLrboGhAgAMsOkxgjuVGk,13647
|
|
150
|
+
reflex/components/el/elements/media.pyi,sha256=4JZS_NrxMskQZjyJLrKliI6XlbJJUpGnTafyabwms4Y,234523
|
|
151
|
+
reflex/components/el/elements/metadata.py,sha256=Uh3DEultI8j-xfbe0CB_sCJPtkX5mvbpbzxeoS9Bj-M,2258
|
|
152
|
+
reflex/components/el/elements/metadata.pyi,sha256=ml22lHUDH_K6C7kWXiNqh4eLRYg7sDM850WPlG-_KAc,40357
|
|
153
|
+
reflex/components/el/elements/other.py,sha256=WON35QviPNYsBeLQTNbeN7a6m6ixLYIVa4WsDzo9YBY,1378
|
|
154
|
+
reflex/components/el/elements/other.pyi,sha256=47cT9eZ4Vd0CLZoJpvYX5ERUQ9-MJmLWtrfjQ0n7WS8,59076
|
|
155
|
+
reflex/components/el/elements/scripts.py,sha256=7YmYlRSWH_dkBhev4ePUDEDqvQWMPWOWmELXKsJxTkk,1223
|
|
156
|
+
reflex/components/el/elements/scripts.pyi,sha256=0P-Ax_Chq1dCybVVyo0jIQMS0A55fv42Hc-FlYaftYM,27176
|
|
157
|
+
reflex/components/el/elements/sectioning.py,sha256=wVkR35dt4DMHKcJN5f0aglH16xSZzO9-Weesv6bQ_CM,1516
|
|
158
|
+
reflex/components/el/elements/sectioning.pyi,sha256=eAgzFAcXZMBJB5zpTymcSnIgp1K-7HFXN4xlkWDgtN8,125073
|
|
159
|
+
reflex/components/el/elements/tables.py,sha256=Rt-C07s39TQm_dHSMaly2J7yD0OZhx9q6G2k5k2IkMo,2176
|
|
160
|
+
reflex/components/el/elements/tables.pyi,sha256=Oum8D0o1GS7f8gqmv7uqK-H9G2onHSQDMZI9OknGX_s,85304
|
|
161
|
+
reflex/components/el/elements/typography.py,sha256=78XFCj1rzFd4a3exppmvwJ9H6UQca2Wj9oLmB1aZaaY,2460
|
|
162
|
+
reflex/components/el/elements/typography.pyi,sha256=bvzEl9aiewu7JR2PIY9UnpkZKNOBkDzAjbAcNwo-YK4,126233
|
|
163
|
+
reflex/components/gridjs/__init__.py,sha256=xJwDm1AZ70L5-t9LLqZwGUtDpijbf1KuMYDT-j8g3pM,88
|
|
164
|
+
reflex/components/gridjs/datatable.py,sha256=7JKrRw1zkpFB0_wwoaIhrVrldsm7-dyi3PASgqLq8Hc,4224
|
|
165
|
+
reflex/components/gridjs/datatable.pyi,sha256=rJZO5_kdS-JgsLyR4_vVA-b_SfieGynOW2z_DzNbKqM,5445
|
|
166
|
+
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
167
|
+
reflex/components/lucide/icon.py,sha256=9nId075KvvWEVS032vP3qDrrc2N0tOHfvVQb6w1obDQ,34709
|
|
168
|
+
reflex/components/lucide/icon.pyi,sha256=r5-UzFXp4n7ZgXEhzjLwLeiLx1VITHYWleqqPAY8aHU,37868
|
|
169
|
+
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
170
|
+
reflex/components/markdown/markdown.py,sha256=scDHnmn2n4KHXS2Imqa1jw1wTk1ewCB2MojC9NgKGHQ,15503
|
|
171
|
+
reflex/components/markdown/markdown.pyi,sha256=b1_NsT165Hx7MuzfkiEBaH5JNyrCRa_vuzIYC4mHjq4,4452
|
|
172
|
+
reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
|
|
173
|
+
reflex/components/moment/moment.py,sha256=fhhzrun9USb8J30btpyyDD3JuXF_N7EL5Dou3x7NQYw,4080
|
|
174
|
+
reflex/components/moment/moment.pyi,sha256=CWD8P_lKdVXOVK5lJyhclZgi6BXOqbV3AU9GSiWkPgM,6143
|
|
175
|
+
reflex/components/plotly/__init__.py,sha256=6B_woBJhkrVA9O_AbOTbsA_SxWsqjicYHmLA9FLjGfU,650
|
|
176
|
+
reflex/components/plotly/plotly.py,sha256=L1J520LEpcKDXzahEZMCzPZCJL2oYlrVeQRHaG_1bjU,14953
|
|
177
|
+
reflex/components/plotly/plotly.pyi,sha256=HG0i5ZcZ8CsA3UWzaWyU2-Xv9e_COKik1aB5oqA7ZeU,47991
|
|
178
|
+
reflex/components/radix/__init__.py,sha256=fRsLvIO3MrTtPOXtmnxYDB9phvzlcbyB_utgpafYMho,474
|
|
179
|
+
reflex/components/radix/__init__.pyi,sha256=ke_dGrpFMNHd3MgQ9qiStSQDlGcJ39KVSrpIxayBU3c,3927
|
|
180
|
+
reflex/components/radix/primitives/__init__.py,sha256=R2sdZJqQCYaLScGkXnXDKAjVgV5MidceemooEUtvBt4,443
|
|
181
|
+
reflex/components/radix/primitives/__init__.pyi,sha256=kOCtVqDuSsBt5-lCcqM-3CBJsv-QokWIfkq0_iyqVDU,413
|
|
182
|
+
reflex/components/radix/primitives/accordion.py,sha256=wTg7MwVzQLG3LZHNvbSGeF3R55JKpo3LEr8QsQwxs_0,16394
|
|
183
|
+
reflex/components/radix/primitives/accordion.pyi,sha256=f9R1ZqOFl0E5oqzvcVF3XBitmSJvw7CS1JZ5e-48LF0,28942
|
|
184
|
+
reflex/components/radix/primitives/base.py,sha256=9OvGDI1to8XL_a2hr3fNBQUwTHZBUO424ea2-UTKD18,770
|
|
185
|
+
reflex/components/radix/primitives/base.pyi,sha256=qM7wN2OVEYJ9FvuYQ3_mT9kxFIko9AVpvl652BMV81w,4895
|
|
186
|
+
reflex/components/radix/primitives/drawer.py,sha256=Nxd745cuNFsiZIZh33gJjm5RfGwrbv-yeSEkHa6OI-8,9262
|
|
187
|
+
reflex/components/radix/primitives/drawer.pyi,sha256=lJvf6IhZER7prbTzILKicfo3M6IKFkgCe2dI2bLRJuY,31165
|
|
188
|
+
reflex/components/radix/primitives/form.py,sha256=oqyJeJNpmG3sRmHqZbI-HaYR0PDbDcJVTR96Um4HFn4,4801
|
|
189
|
+
reflex/components/radix/primitives/form.pyi,sha256=SVNTtuPilZ6brPGUGpIWgh1gOnSOoM1Yu1wr7CO_2wc,48484
|
|
190
|
+
reflex/components/radix/primitives/progress.py,sha256=UvuUn6eWEhnhqImDvYOwa9Z3CE5gu5EV28uPBbZAT4k,3988
|
|
191
|
+
reflex/components/radix/primitives/progress.pyi,sha256=NdbKg6gygh4CETPm-8nfEK5ePXUhiSvujZR7Y__BqTA,17119
|
|
192
|
+
reflex/components/radix/primitives/slider.py,sha256=tS8tqVwoTj9hSiUktxotZBvWoItL4CuhvGnWZrnhek8,5030
|
|
193
|
+
reflex/components/radix/primitives/slider.pyi,sha256=4QMe2p2M6Ywx858hPAj5zXtNdSl34UFrkKm9MsAJs44,13096
|
|
194
|
+
reflex/components/radix/themes/__init__.py,sha256=3ASzR_OrjkLXZ6CksGKIQPOcyYZ984NzXrn2UCIdxUc,492
|
|
195
|
+
reflex/components/radix/themes/__init__.pyi,sha256=B_xv0vBBRsCOinQasRO3ni_g8xbpucIPXCn5xZckgww,445
|
|
196
|
+
reflex/components/radix/themes/base.py,sha256=D3d-CTeDTXSZu-vAAPZ5xn6Ojy3vvUQV8g72oIHaH_g,8320
|
|
197
|
+
reflex/components/radix/themes/base.pyi,sha256=JR4QJDYbOFedqr5vwvTuLLa1b87b7gOP5ZyLKfTHgbs,25504
|
|
198
|
+
reflex/components/radix/themes/color_mode.py,sha256=G0QvwE6p_ttSt3pLdNadPh66d1Cn4b4NeRG6QiFa7gg,6513
|
|
199
|
+
reflex/components/radix/themes/color_mode.pyi,sha256=jPQZ1FiBYRBWEIT1ZAJNfMBiOQzD69jBKsni3oB9CPc,21268
|
|
200
|
+
reflex/components/radix/themes/components/__init__.py,sha256=fzc5ghmmbIQ8yaxKQQY83TINb6k2uVPX-wddyTDlQx8,423
|
|
201
|
+
reflex/components/radix/themes/components/__init__.pyi,sha256=rEo3Nzol6kJW0C5BHkNGYMCZ93DP8bUGj_qwEsrbTks,2018
|
|
202
|
+
reflex/components/radix/themes/components/alert_dialog.py,sha256=NBb8bgbF7-r4Z9xlW9yp_O783vtNgKpHZ3WsXAGR0Sw,3312
|
|
203
|
+
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=gP7JubiVT--ati-0V-cT4c5lMm6ibtEcMrdOI5MKyYI,22577
|
|
204
|
+
reflex/components/radix/themes/components/aspect_ratio.py,sha256=3O75hhQfPvv-ssG06cQF96IXVGjSA2FdhKgyAk4sMEw,402
|
|
205
|
+
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=TvGbkSDo9k9-mrWajI4BWR252VfwOyQpMAu8CHLU2GE,2880
|
|
206
|
+
reflex/components/radix/themes/components/avatar.py,sha256=_uKbu_xn8H5nZqryOjBaGzjQYRM3m1bWikLX6WjlseI,1092
|
|
207
|
+
reflex/components/radix/themes/components/avatar.pyi,sha256=q5-edNw84i0JSXmh2sD3HLUA4uhvTD1zZbLwe7kTdDQ,5291
|
|
208
|
+
reflex/components/radix/themes/components/badge.py,sha256=IkTqBKC0vjPb7vFTBlI6qsUlDDDd25o1HPPAc9nqaWg,950
|
|
209
|
+
reflex/components/radix/themes/components/badge.pyi,sha256=TOk4_LFl-1iOF0fCzjO1TFQg_IHlrSYodlKwEPQpDTg,11269
|
|
210
|
+
reflex/components/radix/themes/components/button.py,sha256=j-MugUGpvGnQOU78Y1CLRygmoXXTPdX73Ig2MUH0ATw,1254
|
|
211
|
+
reflex/components/radix/themes/components/button.pyi,sha256=-xp06v0tykIyiVUGpgPw-wvoXrZfaisXIA6DgGF04S8,13335
|
|
212
|
+
reflex/components/radix/themes/components/callout.py,sha256=sSSLHP5JZfIbviTHd7UcTvKZFTjYhZXburtsQ_P9I6A,2493
|
|
213
|
+
reflex/components/radix/themes/components/callout.pyi,sha256=QH-JZ35u4rUv644BWD3rdbk4OIE93qa3rNB-1eFhDBQ,49615
|
|
214
|
+
reflex/components/radix/themes/components/card.py,sha256=O_n3U1eSY_r0l_Oyt_hw0N5sYoFE5TUR2nbzrFJbe0Q,774
|
|
215
|
+
reflex/components/radix/themes/components/card.pyi,sha256=l_BaLN2V9RfGHpRbKvwQFM97czCp0WyHaBxKFmwsE00,9746
|
|
216
|
+
reflex/components/radix/themes/components/checkbox.py,sha256=W0rWRg6GNl8qKU5tSM2fxgu-CjXXsmkWWjixrMOovG0,4367
|
|
217
|
+
reflex/components/radix/themes/components/checkbox.pyi,sha256=YtVw4E_fplr9O__vr5j2VL8eRdqCWX60pZJETj3znc0,16404
|
|
218
|
+
reflex/components/radix/themes/components/checkbox_cards.py,sha256=uC7BZcz9E780YzC_r8oOd-FEGSzYkeX0qbE8vsH_TsU,1409
|
|
219
|
+
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=91_54-Cc0T17q4hJsV1aKVhhSNg-41IzvDR7K_mXHAQ,7990
|
|
220
|
+
reflex/components/radix/themes/components/checkbox_group.py,sha256=gdwe5zT2bzR6coB1kOC7fZkddWB4u6gqwLviIucWotY,1594
|
|
221
|
+
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=4pvzRzo6scXH07WQtzfOO1Q9jig-rzYdtRVYrkncHrQ,7629
|
|
222
|
+
reflex/components/radix/themes/components/context_menu.py,sha256=nfyHrXnlaRB3nha3rl9Yzjyu8rdcd6NOgtf3VXagQkY,12886
|
|
223
|
+
reflex/components/radix/themes/components/context_menu.pyi,sha256=gxE1TAe6EZUqXAirTqpWiEwUCuxK_6TDrnkwdO_LJTI,49542
|
|
224
|
+
reflex/components/radix/themes/components/data_list.py,sha256=HONLbVvXZheA6-kuEdr-VM7m-euomyzcVT4ThJ9rLfw,1913
|
|
225
|
+
reflex/components/radix/themes/components/data_list.pyi,sha256=oCVWT7VqKaimXMGbR5tzXQcUL2754QrM3w6lKsJpge0,12898
|
|
226
|
+
reflex/components/radix/themes/components/dialog.py,sha256=Mo-maY1XGvWzWcG2sAAk1BbVyGj0XJnb7XnpD_ULgoA,2737
|
|
227
|
+
reflex/components/radix/themes/components/dialog.pyi,sha256=2zjW7Xm97tdA_wjrBsdsNreTLD3PcXdaiYIG7YKa5wE,23376
|
|
228
|
+
reflex/components/radix/themes/components/dropdown_menu.py,sha256=QQgZIhkjxmv3INgSIL4gnskJorTxYVT8eslw58N61Ys,10338
|
|
229
|
+
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=Z653ONdRqn5tuSE_qADtELrzX7q_k2aJPGkeh4eisZM,29585
|
|
230
|
+
reflex/components/radix/themes/components/hover_card.py,sha256=kcNM2hKxNmpQ-H71DAhcsg0zzHRAQ2Ev73liTTND4xc,3252
|
|
231
|
+
reflex/components/radix/themes/components/hover_card.pyi,sha256=aTJHricLBT-dbJQIWAYMh5MftUMTxAsEfDTUJDW2lV0,19208
|
|
232
|
+
reflex/components/radix/themes/components/icon_button.py,sha256=YXO1dcXyw6C8Wu5RH1t_YQtwhyACAXIfL54vpSdJbOo,3151
|
|
233
|
+
reflex/components/radix/themes/components/icon_button.pyi,sha256=p1v5FyO1dnunF5cYqazeLQJ-3_3iXOvWhrhUiStRKG4,13413
|
|
234
|
+
reflex/components/radix/themes/components/inset.py,sha256=97IDh6uyB-b0IL_-266OTWobqDBh2HjR7KWVFtX2Ctk,1183
|
|
235
|
+
reflex/components/radix/themes/components/inset.pyi,sha256=r4Og9n2JT0nJNtdA0vLD_gtJXSjovoRLtl0OcC_Mjgo,11118
|
|
236
|
+
reflex/components/radix/themes/components/popover.py,sha256=Ss0Crkv6zdBiK-rQgsR-b5eUaI2ONNKngRc7fjkCvKc,4061
|
|
237
|
+
reflex/components/radix/themes/components/popover.pyi,sha256=-tz1-HSm4h4u_r2zyP3oJljWLXbCIOMph2EiE9HkSGQ,18619
|
|
238
|
+
reflex/components/radix/themes/components/progress.py,sha256=4fFDlQ_NVH2dG6Z0aq06ccofVz3CV8IcYN0qmkeo-Wc,2403
|
|
239
|
+
reflex/components/radix/themes/components/progress.pyi,sha256=W-ytkHTErJCZsTwAPgdTTSrdTmQ84MuJXnE2BHkrkA4,5403
|
|
240
|
+
reflex/components/radix/themes/components/radio.py,sha256=mRxsFINGyIoK64sVP3M3noXhrYM8X2MN7WBGmIGeAfQ,865
|
|
241
|
+
reflex/components/radix/themes/components/radio.pyi,sha256=DoUU-9TQwwNZsQa0rNe_ReN-4fy8LZwu-q-8sbUOCdI,4670
|
|
242
|
+
reflex/components/radix/themes/components/radio_cards.py,sha256=mmO08NCVYyfSJB04IOktkDWsbNwKmEP48LdfJSor7pI,3080
|
|
243
|
+
reflex/components/radix/themes/components/radio_cards.pyi,sha256=0oyW1vAL2YW5XkcORcgKjAN4iLtPwWDFuHL91qKm2jU,10145
|
|
244
|
+
reflex/components/radix/themes/components/radio_group.py,sha256=QRUZ-u_SB4F31XhelXkraK_G20nFoGjDrfEkX5s22QE,6916
|
|
245
|
+
reflex/components/radix/themes/components/radio_group.pyi,sha256=eipdVmxOH4A2R1ux9rrDaq6bIa_yTLDLM8JnNoq5Sgs,18941
|
|
246
|
+
reflex/components/radix/themes/components/scroll_area.py,sha256=c01UqMhM3cSZUqDrEJAtUfP1n3pz1jA07iNGBjvMB3A,945
|
|
247
|
+
reflex/components/radix/themes/components/scroll_area.pyi,sha256=vBk-ZCKb3ZD26rnjDPLvvATx4WW8MIOyw_ZqLm0BirM,3562
|
|
248
|
+
reflex/components/radix/themes/components/segmented_control.py,sha256=E2kqQ8rQ45it4EeQwS_Oh_h7dIQ4sa_Ia9MFPOQ3YUs,2272
|
|
249
|
+
reflex/components/radix/themes/components/segmented_control.pyi,sha256=ehTNqJjQLI7tO2uZD6s037ntbYAYe9t3w5M8jjTe6eA,8109
|
|
250
|
+
reflex/components/radix/themes/components/select.py,sha256=pHOKI3H954ZlVHK5lf074D6SuEsEglaZVeJkgPFDGPE,8083
|
|
251
|
+
reflex/components/radix/themes/components/select.pyi,sha256=-CdGS9Nog-kNRE6Q81GadBiciI_2MxlHeJtkwF74WxA,35724
|
|
252
|
+
reflex/components/radix/themes/components/separator.py,sha256=pD7SIh9h32esmfhzyA-9IwPb_08B5b2V0crbYcVAUd8,985
|
|
253
|
+
reflex/components/radix/themes/components/separator.pyi,sha256=m5D8nqz-x-LZWQDxOxRs3emH7SRUfAxX6UBZ46U2h0w,5006
|
|
254
|
+
reflex/components/radix/themes/components/skeleton.py,sha256=oHltF5lOzE8T0poYtIXj3f2x8O_iZ56HCtx0a9AJ_Kw,918
|
|
255
|
+
reflex/components/radix/themes/components/skeleton.pyi,sha256=EuDA_WY91nrzZZ50M0UWdGSc37YCmJX7SHSneQXhPVk,3944
|
|
256
|
+
reflex/components/radix/themes/components/slider.py,sha256=8t-V8XTftdSZ3M7KBwu244k8JyGp6eMCz9t3vO5yLlQ,3440
|
|
257
|
+
reflex/components/radix/themes/components/slider.pyi,sha256=vlHCAM87Bgz4nOlE0-YG-5833iSK-sS7qzMQH4yodF0,6932
|
|
258
|
+
reflex/components/radix/themes/components/spinner.py,sha256=_qDonsJKxGYxpJ0mrbbby8Yt8IllYsAkTOYUVUL6cMc,521
|
|
259
|
+
reflex/components/radix/themes/components/spinner.pyi,sha256=2XsLstwr1uvkIeLHyu505q6YO7gJW5xtC4P-moPIB0E,3183
|
|
260
|
+
reflex/components/radix/themes/components/switch.py,sha256=jlxyUeJpisCmLcslnjoP4RN1NyLTwRlQoL99utVUbJo,1795
|
|
261
|
+
reflex/components/radix/themes/components/switch.pyi,sha256=K8XUQEMtuppApAMZRwxkxZHbtDqa_Gd0cqDb1aMt6ZU,5949
|
|
262
|
+
reflex/components/radix/themes/components/table.py,sha256=x0vH4Xkz3OQ0cttD8P0WkmoMqpeqA4qIZvuE7MunqgE,3850
|
|
263
|
+
reflex/components/radix/themes/components/table.pyi,sha256=N2oNuk3A5eopPVtIXIMygFbkYXWLb4850t9d2MSjr3g,70523
|
|
264
|
+
reflex/components/radix/themes/components/tabs.py,sha256=ZAG9bQOteF3QK9DI4M0OJNvKbEUTjt55kqoUzdMYDWU,4663
|
|
265
|
+
reflex/components/radix/themes/components/tabs.pyi,sha256=vft4-1adu_r5oEXsJWdRFzW0lalWkxnufM3rLYDvk0g,16190
|
|
266
|
+
reflex/components/radix/themes/components/text_area.py,sha256=K8hvtjGF_KQyYQucUWdlLLWZRc05DtTUR0HV8PDOtqE,3468
|
|
267
|
+
reflex/components/radix/themes/components/text_area.pyi,sha256=rFhKNFa6vX4kqiKJXT1yksGsuRcPCXrlFIVeMoAjdw0,14500
|
|
268
|
+
reflex/components/radix/themes/components/text_field.py,sha256=_KhPzL72zcemQtuW49BsQ7sOo5YXnqlYJlCS-12PlyQ,4313
|
|
269
|
+
reflex/components/radix/themes/components/text_field.pyi,sha256=SgFB9Mfs1A_6rZiCWUhwJi82nOEnaaOKd5rAS_MYMq0,34335
|
|
270
|
+
reflex/components/radix/themes/components/tooltip.py,sha256=gltUqaPjtBKJD7TRMpqQbXkXDUIU6gmekW3ADt2zItQ,4412
|
|
271
|
+
reflex/components/radix/themes/components/tooltip.pyi,sha256=cxLC11hP42hGFkYFM8JoLXKVG7_qKjZywnD6KTx8nvA,6823
|
|
272
|
+
reflex/components/radix/themes/layout/__init__.py,sha256=dbRNzJ9pag7luTO3saNvgKzozrGNJ02_Vn9r3SwJHN4,406
|
|
273
|
+
reflex/components/radix/themes/layout/__init__.pyi,sha256=sng_WYGple1YiiYqADhuKntz5Dh3j-MkTA3XG6_kimU,785
|
|
274
|
+
reflex/components/radix/themes/layout/base.py,sha256=c3BeWnkQk2Q_tJm3zrEUBFyRaNkVE099dj2Q4w2Xcx0,931
|
|
275
|
+
reflex/components/radix/themes/layout/base.pyi,sha256=Fe-32K_gd7aITLdjHvdSKOB6qZYxwuU7HQQOiO-3D0U,7672
|
|
276
|
+
reflex/components/radix/themes/layout/box.py,sha256=vRVV01ImylfzLUSb69CXO02wxartbIuY77CCds6AimM,355
|
|
277
|
+
reflex/components/radix/themes/layout/box.pyi,sha256=RSLigPV9jby3SLYYBLDqH2k5td8__pVUIxiARHu551Q,9056
|
|
278
|
+
reflex/components/radix/themes/layout/center.py,sha256=iNGsfoVUrVtb-TH3sdOVpxUQHF-2GTVFVCX_KkRuQog,490
|
|
279
|
+
reflex/components/radix/themes/layout/center.pyi,sha256=VchA0TKJR6HS6v488LOCs7LpC6e2L5KOXC3oQDTZmms,11471
|
|
280
|
+
reflex/components/radix/themes/layout/container.py,sha256=xO2GItAa7z_eAAlMo4wk1pK29kY8vYd2jviSk35YMuU,1580
|
|
281
|
+
reflex/components/radix/themes/layout/container.pyi,sha256=r52peOCmef2zQFPawzAC56-snAvqLlzAnw9vx3k_rxA,7791
|
|
282
|
+
reflex/components/radix/themes/layout/flex.py,sha256=6eCcASb8ZVL6kXk5qYNW1FRc0SDwAK94MNN64p5kwE8,1585
|
|
283
|
+
reflex/components/radix/themes/layout/flex.pyi,sha256=9HUsqs1VUk4AszH8702ZHouiPlmNN_MPbhcXh-Sdw6Y,11666
|
|
284
|
+
reflex/components/radix/themes/layout/grid.py,sha256=eQFrOceqCCHXDt-1M9PzA12iehsia2IxOdRsnWbK4Tg,1745
|
|
285
|
+
reflex/components/radix/themes/layout/grid.pyi,sha256=gjPu0XGQ5P7q5-c_0BXrgN3Z0gxYwTweDS-r0O9bZh8,12450
|
|
286
|
+
reflex/components/radix/themes/layout/list.py,sha256=eMj2c8xstA8H9R9JZooPdt6jGhZv8g6HtJDukRUg6kU,5375
|
|
287
|
+
reflex/components/radix/themes/layout/list.pyi,sha256=vXDhVKgm1Ck4DNg1c0-wLdlXGxCWXDvaBgvi-kxtVy8,48281
|
|
288
|
+
reflex/components/radix/themes/layout/section.py,sha256=0GqUCgBLnfFIlzo68cp6gxfuweCyvmyV2LZGKUN5bic,652
|
|
289
|
+
reflex/components/radix/themes/layout/section.pyi,sha256=GeV3NHkJOzffEftniNqJMlvfrsruqFO2hraRpaJllFk,9384
|
|
290
|
+
reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
|
|
291
|
+
reflex/components/radix/themes/layout/spacer.pyi,sha256=XF8I-AgEukz6vk7NuvggVKSzRlI7t9scKW5By-4TvTE,11471
|
|
292
|
+
reflex/components/radix/themes/layout/stack.py,sha256=IhrN3M4U65quGcKF0P99BHQlNo2JeJeK01U9UoM6JuM,1672
|
|
293
|
+
reflex/components/radix/themes/layout/stack.pyi,sha256=pcYeNWMCIiAkgFLxP22pyCx_3fdiiIUvUMfxGdNuLDI,32870
|
|
294
|
+
reflex/components/radix/themes/typography/__init__.py,sha256=dEopnJWc8cPs1oUBK3wMHQtzQ_QNM9pIblzEWbZZ4G4,422
|
|
295
|
+
reflex/components/radix/themes/typography/__init__.pyi,sha256=AhPSTCyPgUSm0uRi3v2TT3RLRT2nbnz4sSjHZ6bfxgE,445
|
|
296
|
+
reflex/components/radix/themes/typography/base.py,sha256=3eiAZGs_l19E3fE8KpX75llSE2FoeuD3yp84wUnBX0s,409
|
|
297
|
+
reflex/components/radix/themes/typography/blockquote.py,sha256=Fk8-SUisU71Nim2Dlk8wt1gstoLOmqP8Mod4_BSHj4o,949
|
|
298
|
+
reflex/components/radix/themes/typography/blockquote.pyi,sha256=UwslTioPEdBQ_XJDsZadty5edG7kA-Qn-pSP4cDZm9Q,11497
|
|
299
|
+
reflex/components/radix/themes/typography/code.py,sha256=sSshc5GsSOsJPi_SbR7nkAeUjh53jk3EN35zTH1dGow,1151
|
|
300
|
+
reflex/components/radix/themes/typography/code.pyi,sha256=0iuE24yCemd2u__-SBcB33RJRWQiBQbCxQJMZmW6RBw,11740
|
|
301
|
+
reflex/components/radix/themes/typography/heading.py,sha256=YVoQu9cLx5SJSNkliNp5UyVhrwu7vgpIMj1X43jifd0,1575
|
|
302
|
+
reflex/components/radix/themes/typography/heading.pyi,sha256=bfhGqJJU_MW5WRXc5hZElJmrVnKseBnKLOmefyIB_FE,12558
|
|
303
|
+
reflex/components/radix/themes/typography/link.py,sha256=-wnjg_b2xjGpyfppsqy_53Z_r0Kky2p1gxjDZAmbx84,5013
|
|
304
|
+
reflex/components/radix/themes/typography/link.pyi,sha256=uLdbyTjmc-vlxOnnj9knnP3RsMT_7WkhdiDskKVsiYM,25886
|
|
305
|
+
reflex/components/radix/themes/typography/text.py,sha256=qnpZuqyabh-VuKGBtlOmu3dfZloBXehjCtEk4AmZQLg,2843
|
|
306
|
+
reflex/components/radix/themes/typography/text.pyi,sha256=exTgSHtho1PIDMsT46dNyRmXb2kOH7x8eiryfbmHMlA,73279
|
|
307
|
+
reflex/components/react_player/__init__.py,sha256=1OTHeZkuefi-zIVXc_QZMTBg4_RsGrMaJHducUuZQCU,171
|
|
308
|
+
reflex/components/react_player/audio.py,sha256=_Qrlz5b7U4L8vtYpOOK6piKbROT6w_isnCuDYoxrOik,176
|
|
309
|
+
reflex/components/react_player/audio.pyi,sha256=q1mOIMMQqkBIe4sCEI4jKVsrFPjXFbQJODvwfBFde5Q,5814
|
|
310
|
+
reflex/components/react_player/react_player.py,sha256=_yiqTiT73p3Lig0-oVzDxzBxZ75AH7VevS1ENd_ZRBs,3980
|
|
311
|
+
reflex/components/react_player/react_player.pyi,sha256=gAvuhIxYNj-JG9zMHveIIREi0v50f9Jh9fSCUECoAHs,5874
|
|
312
|
+
reflex/components/react_player/video.py,sha256=WmdxzLtrZNNm9Nals5IpYUGhm45P14hR7I1NCaIW-eg,176
|
|
313
|
+
reflex/components/react_player/video.pyi,sha256=wdleNz97WblmeMU9qtJV77OH6urmgtiQacddc6H3lmg,5814
|
|
314
|
+
reflex/components/recharts/__init__.py,sha256=M8Xa0KVrwloklxPHqZCEBF8HaDluK4w5brXnlIrdNHI,2696
|
|
315
|
+
reflex/components/recharts/__init__.pyi,sha256=MnpXChZwm3DYprV7Ufc-yOptpqKpzRT_sou3oRk11jk,4080
|
|
316
|
+
reflex/components/recharts/cartesian.py,sha256=o0PYn-EwW1UcGDM5eXBcPnzNGFgzphjis_HeQ9-5Sew,34234
|
|
317
|
+
reflex/components/recharts/cartesian.pyi,sha256=RUHfXze8i4vjMWbcExqpOQcGWRqDtHt835tNzlQSA8U,106147
|
|
318
|
+
reflex/components/recharts/charts.py,sha256=jb3017IgoVl4kpWD6SFcF3k9nMmAN67H0QNmvf7Uo0k,18903
|
|
319
|
+
reflex/components/recharts/charts.pyi,sha256=khXYNPJpDLWnsAR6LdFYkS7CxUdNeY-RNSjIsFiP0jo,50462
|
|
320
|
+
reflex/components/recharts/general.py,sha256=DuPDfccUWWehc40ji7_JSYHX_AoJyGn_-4y7QhkRxmo,9046
|
|
321
|
+
reflex/components/recharts/general.pyi,sha256=-FcVLHn30AR7SzbjETpfKD5mXfOcv3GJO0w9c6MBmWQ,24242
|
|
322
|
+
reflex/components/recharts/polar.py,sha256=zocHpwWQ0lbg4BTnEBwQ6J9SSJsOYRwZGf9UPzxoNKs,15682
|
|
323
|
+
reflex/components/recharts/polar.pyi,sha256=6_karFX40GH0SwJK7o_VVHu4pn4o-UKx470cxayWnfg,27717
|
|
324
|
+
reflex/components/recharts/recharts.py,sha256=WQsxVm8Aqe5rSbBsulMIMM9yCsNUxcZ8pXqI3ckRoZw,3221
|
|
325
|
+
reflex/components/recharts/recharts.pyi,sha256=9iHH1FiIGNYwn1zqyU2iqa9n71Q04AVfy9gWKkUirN0,7344
|
|
326
|
+
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
327
|
+
reflex/components/sonner/toast.py,sha256=W3JF5G1pXNu5FjIUDXzmPTiO6vRJ2dNjfSjaqji68do,12392
|
|
328
|
+
reflex/components/sonner/toast.pyi,sha256=uBGCcTFePImUcG0wBDu80i9fvK5RZXdtl5k9b4sorhA,7788
|
|
329
|
+
reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTkNhW_Q,152
|
|
330
|
+
reflex/components/tags/cond_tag.py,sha256=YHxqq34PD-1D88YivO7kn7FsbW8SfPS2McNg7j_nncI,588
|
|
331
|
+
reflex/components/tags/iter_tag.py,sha256=R7bOI3Xx3mHcSmr6tz8qUlBoDwXsAh2Q6Esd3nsBros,4410
|
|
332
|
+
reflex/components/tags/match_tag.py,sha256=3lba1H5pCcKkqxEHzM6DZb5s9s0yJLN4Se3vdhzar24,580
|
|
333
|
+
reflex/components/tags/tag.py,sha256=BRPODHi1R5g4VwkYLztIUJBMyDgrGPZRqB-QP_u67jk,3665
|
|
334
|
+
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
335
|
+
reflex/constants/__init__.py,sha256=q2Jf-LBbNcGrOmx5M7QotIAYW_t3m02TsmmdtJ5_IhM,2190
|
|
336
|
+
reflex/constants/base.py,sha256=sFv9DhRZtEM2fix6U8SwTcBn05zl5Z_X8X-bqr3fh2E,9065
|
|
337
|
+
reflex/constants/colors.py,sha256=n-FN7stNrvk5rCN0TAvE28dqwUeQZHue-b5q1CO0EyQ,2048
|
|
338
|
+
reflex/constants/compiler.py,sha256=y72_HbyHGyCVv_Xqr3hB3_Nu1p8NA4gUebBqL8cxY6Y,5987
|
|
339
|
+
reflex/constants/config.py,sha256=8OIjiBdZZJrRVHsNBheMwopE9AwBFFzau0SXqXKcrPg,1715
|
|
340
|
+
reflex/constants/custom_components.py,sha256=joJt4CEt1yKy7wsBH6vYo7_QRW0O_fWXrrTf0VY2q14,1317
|
|
341
|
+
reflex/constants/event.py,sha256=tgoynWQi2L0_Kqc3XhXo7XXL76A-OKhJGHRrNjm7gFw,2885
|
|
342
|
+
reflex/constants/installer.py,sha256=wHosh9W2kOE-u65JihEoSCuvD5qdfYIO_MERNgRKCyo,4106
|
|
343
|
+
reflex/constants/route.py,sha256=UBjqaAOxiUxlDZCSY4O2JJChKvA4MZrhUU0E5rNvKbM,2682
|
|
344
|
+
reflex/constants/state.py,sha256=uF_7-M9Gid-P3DjAOq4F1ERplyZhiNccowo_jLrdJrg,323
|
|
345
|
+
reflex/constants/utils.py,sha256=e1ChEvbHfmE_V2UJvCSUhD_qTVAIhEGPpRJSqdSd6PA,780
|
|
346
|
+
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
347
|
+
reflex/custom_components/custom_components.py,sha256=fSsPqqYv0T81B8LTL6yeol0Qx1edW96o-2ibrW5ujNo,20206
|
|
348
|
+
reflex/experimental/__init__.py,sha256=P8fe8S2e2gy2HCwHFGQzr3lPMmh7qN5Ii2e8ukoPHuQ,1664
|
|
349
|
+
reflex/experimental/client_state.py,sha256=1VOe6rYhpOBOZi7-tZwfOnSNPPdX3tsXzlfgNs7aDrg,10020
|
|
350
|
+
reflex/experimental/hooks.py,sha256=CHYGrAE5t8riltrJmDFgJ4D2Vhmhw-y3B3MSGNlOQow,2366
|
|
351
|
+
reflex/istate/__init__.py,sha256=afq_pCS5B_REC-Kl3Rbaa538uWi59xNz4INeuENcWnk,2039
|
|
352
|
+
reflex/istate/data.py,sha256=igpPEXs_ZJvK7J3JJ1mLiKnLmS5iFJiMLesCaQZpgqs,5798
|
|
353
|
+
reflex/istate/dynamic.py,sha256=xOQ9upZVPf6ngqcLQZ9HdAAYmoWwJ8kRFPH34Q5HTiM,91
|
|
354
|
+
reflex/istate/manager.py,sha256=te5uQN6n-ctOGrf6NbZUVy6BKgWapLlMtCzDaO6RthU,30412
|
|
355
|
+
reflex/istate/proxy.py,sha256=Q8JrV1m6drVcTNJL9JuN-nKUXclazs96OHl_fhR0UBk,25928
|
|
356
|
+
reflex/istate/storage.py,sha256=gCPoiZxuG-Rw0y-Pz3OC7rv4o08dQ_jK1fE2u8Jhxqg,4339
|
|
357
|
+
reflex/istate/wrappers.py,sha256=p8uuioXRbR5hperwbOJHUcWdu7hukLikQdoR7qrnKsI,909
|
|
358
|
+
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
359
|
+
reflex/middleware/hydrate_middleware.py,sha256=1ch7bx2ZhojOR15b-LHD2JztrWCnpPJjTe8MWHJe-5Y,1510
|
|
360
|
+
reflex/middleware/middleware.py,sha256=p5VVoIgQ_NwOg_GOY6g0S4fmrV76_VE1zt-HiwbMw-s,1158
|
|
361
|
+
reflex/plugins/__init__.py,sha256=RQOhlDgFTIFbaBzyKQwaLlftO9bUfWSOEsZiagzr0bk,339
|
|
362
|
+
reflex/plugins/base.py,sha256=fVez3g3OVlu0NZ-ldMMAYFxpj1avyxBoJSNH1wUdJYE,3057
|
|
363
|
+
reflex/plugins/shared_tailwind.py,sha256=UXUndEEcYBZ02klymw-vSZv01IZVLJG3oSaBHpQ617U,6426
|
|
364
|
+
reflex/plugins/sitemap.py,sha256=dbbqIWaim4zl1LEU6Su-gyxd0BgM3E6S8gCExDfkTRo,6154
|
|
365
|
+
reflex/plugins/tailwind_v3.py,sha256=7bXI-zsGoS1pW27-_gskxGaUOQ7NQMPcYkoI5lnmIMA,4819
|
|
366
|
+
reflex/plugins/tailwind_v4.py,sha256=JMhP6abjmu8pRVUxHKuGYVfFDGJ3q0CbJ5b7poBhQTk,5239
|
|
367
|
+
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
368
|
+
reflex/utils/build.py,sha256=lk8hE69onG95dv-LxRhjtEugct1g-KcWPUDorzqeGIE,7964
|
|
369
|
+
reflex/utils/codespaces.py,sha256=kEQ-j-jclTukFpXDlYgNp95kYMGDrQmP3VNEoYGZ1u4,3052
|
|
370
|
+
reflex/utils/compat.py,sha256=aSJH_M6iomgHPQ4onQ153xh1MWqPi3HSYDzE68N6gZM,2635
|
|
371
|
+
reflex/utils/console.py,sha256=OFyXqnyhpAgXCDM7m5lokoUMjvXMohc2ftgrmcf62nc,11500
|
|
372
|
+
reflex/utils/decorator.py,sha256=DVrlVGljV5OchMs-5_y1CbbqnCWlH6lv-dFko8yHxVY,1738
|
|
373
|
+
reflex/utils/exceptions.py,sha256=Wwu7Ji2xgq521bJKtU2NgjwhmFfnG8erirEVN2h8S-g,8884
|
|
374
|
+
reflex/utils/exec.py,sha256=zQ4WlH80QPjFF4RnGZPOxbCYR8ly9VO0CdJsPZZOQ40,21026
|
|
375
|
+
reflex/utils/export.py,sha256=Z2AHuhkxGQzOi9I90BejQ4qEcD0URr2i-ZU5qTJt7eQ,2562
|
|
376
|
+
reflex/utils/format.py,sha256=6lgPpYsArWDwGuC_BT-X9g4BnCG14vvH7-oNjrCA5Xc,21119
|
|
377
|
+
reflex/utils/imports.py,sha256=Ov-lqv-PfsPl3kTEW13r5aDauIfn6TqzEMyv42RKLOA,3761
|
|
378
|
+
reflex/utils/lazy_loader.py,sha256=UREKeql_aSusSFMn6qldyol4n8qD3Sm9Wg7LLICjJgQ,4136
|
|
379
|
+
reflex/utils/misc.py,sha256=zbYIl7mI08is9enr851sj7PnDaNeVVvq5jDmQ4wdlCE,2879
|
|
380
|
+
reflex/utils/net.py,sha256=HEHA8L5g7L9s0fFG4dTiZzB9PFO_0WRrlbMgpZr_GAQ,4093
|
|
381
|
+
reflex/utils/path_ops.py,sha256=_RS17IQDNr5vcoLLGZx2-z1E5WP-JgDHvaRAOgqrZiU,8154
|
|
382
|
+
reflex/utils/prerequisites.py,sha256=L2tCFqqiYqygRbQ0JMMBduMdsMkKJLDvzGKZnvI1Enc,66001
|
|
383
|
+
reflex/utils/processes.py,sha256=eYzdfFhhnGnPxWN5USxdoLaYA8m8UEOOuxwxRRtLMW0,16196
|
|
384
|
+
reflex/utils/pyi_generator.py,sha256=Qm_og4yQcJ3-dwMfGJ2QhPxiFng3lftPJne-dMCC8C0,45532
|
|
385
|
+
reflex/utils/redir.py,sha256=3JG0cRdfIZnFIBHHN32ynD5cfbUZa7gLRxzrxRGGl5I,1751
|
|
386
|
+
reflex/utils/registry.py,sha256=DEF7csYQ5VnrZhy6ULVfMlceh7XVH0pks96lIyyThuc,1882
|
|
387
|
+
reflex/utils/serializers.py,sha256=sVLfbWIBKPpmo0CVVxoxXGu0K3R9mYMWgaI02LXZmcM,13952
|
|
388
|
+
reflex/utils/telemetry.py,sha256=9k5S6dST_6rylhKyLMlnwzsxZ4p_Q0oikxOBpTckQxw,7448
|
|
389
|
+
reflex/utils/types.py,sha256=P358rXSLGXBdeE-RpT7DD6q4_YkgfNMEOHoyIJLztVU,38358
|
|
390
|
+
reflex/vars/__init__.py,sha256=85eXMt32bFoKtMdH3KxYRMD8mtnKyYiQcThPxJLoW1k,1359
|
|
391
|
+
reflex/vars/base.py,sha256=IGCU5iwZSsVMPVQqODEjmHJrskqfpfMIQ2yzcVFMoSQ,112940
|
|
392
|
+
reflex/vars/datetime.py,sha256=F2Jv_bfydipFSkIQ1F6x5MnSgFEyES9Vq5RG_uGH81E,5118
|
|
393
|
+
reflex/vars/dep_tracking.py,sha256=aCIPJwCagl87hpszYI2uihFy3Xg2-RVzanaUxt5Kt7o,13775
|
|
394
|
+
reflex/vars/function.py,sha256=0i-VkxHkDJmZtfQUwUfaF0rlS6WM8azjwQ8k7rEOkyk,13944
|
|
395
|
+
reflex/vars/number.py,sha256=tO7pnvFaBsedq1HWT4skytnSqHWMluGEhUbjAUMx8XQ,28190
|
|
396
|
+
reflex/vars/object.py,sha256=BDmeiwG8v97s_BnR1Egq3NxOKVjv9TfnREB3cz0zZtk,17322
|
|
397
|
+
reflex/vars/sequence.py,sha256=1kBrqihspyjyQ1XDqFPC8OpVGtZs_EVkOdIKBro5ilA,55249
|
|
398
|
+
scripts/hatch_build.py,sha256=-4pxcLSFmirmujGpQX9UUxjhIC03tQ_fIQwVbHu9kc0,1861
|
|
399
|
+
reflex-0.8.0.dist-info/METADATA,sha256=BKGdlozPKVUs0pLDkRMhzUv9YSbN2lIBkbW_fgzE4MY,12369
|
|
400
|
+
reflex-0.8.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
401
|
+
reflex-0.8.0.dist-info/entry_points.txt,sha256=Rxt4dXc7MLBNt5CSHTehVPuSe9Xqow4HLX55nD9tQQ0,45
|
|
402
|
+
reflex-0.8.0.dist-info/licenses/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
403
|
+
reflex-0.8.0.dist-info/RECORD,,
|
reflex/components/base/head.py
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"""The head component."""
|
|
2
|
-
|
|
3
|
-
from reflex.components.component import Component, MemoizationLeaf
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class NextHeadLib(Component):
|
|
7
|
-
"""Header components."""
|
|
8
|
-
|
|
9
|
-
library = "next/head"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class Head(NextHeadLib, MemoizationLeaf):
|
|
13
|
-
"""Head Component."""
|
|
14
|
-
|
|
15
|
-
tag = "NextHead"
|
|
16
|
-
|
|
17
|
-
is_default = True
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
head = Head.create
|
reflex/components/base/head.pyi
DELETED
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
"""Stub file for reflex/components/base/head.py"""
|
|
2
|
-
|
|
3
|
-
# ------------------- DO NOT EDIT ----------------------
|
|
4
|
-
# This file was generated by `reflex/utils/pyi_generator.py`!
|
|
5
|
-
# ------------------------------------------------------
|
|
6
|
-
from collections.abc import Mapping, Sequence
|
|
7
|
-
from typing import Any, overload
|
|
8
|
-
|
|
9
|
-
from reflex.components.component import Component, MemoizationLeaf
|
|
10
|
-
from reflex.components.core.breakpoints import Breakpoints
|
|
11
|
-
from reflex.event import EventType
|
|
12
|
-
from reflex.vars.base import Var
|
|
13
|
-
|
|
14
|
-
class NextHeadLib(Component):
|
|
15
|
-
@overload
|
|
16
|
-
@classmethod
|
|
17
|
-
def create( # type: ignore
|
|
18
|
-
cls,
|
|
19
|
-
*children,
|
|
20
|
-
style: Sequence[Mapping[str, Any]]
|
|
21
|
-
| Mapping[str, Any]
|
|
22
|
-
| Var[Mapping[str, Any]]
|
|
23
|
-
| Breakpoints
|
|
24
|
-
| None = None,
|
|
25
|
-
key: Any | None = None,
|
|
26
|
-
id: Any | None = None,
|
|
27
|
-
ref: Var | None = None,
|
|
28
|
-
class_name: Any | None = None,
|
|
29
|
-
autofocus: bool | None = None,
|
|
30
|
-
custom_attrs: dict[str, Var | Any] | None = None,
|
|
31
|
-
on_blur: EventType[()] | None = None,
|
|
32
|
-
on_click: EventType[()] | None = None,
|
|
33
|
-
on_context_menu: EventType[()] | None = None,
|
|
34
|
-
on_double_click: EventType[()] | None = None,
|
|
35
|
-
on_focus: EventType[()] | None = None,
|
|
36
|
-
on_mount: EventType[()] | None = None,
|
|
37
|
-
on_mouse_down: EventType[()] | None = None,
|
|
38
|
-
on_mouse_enter: EventType[()] | None = None,
|
|
39
|
-
on_mouse_leave: EventType[()] | None = None,
|
|
40
|
-
on_mouse_move: EventType[()] | None = None,
|
|
41
|
-
on_mouse_out: EventType[()] | None = None,
|
|
42
|
-
on_mouse_over: EventType[()] | None = None,
|
|
43
|
-
on_mouse_up: EventType[()] | None = None,
|
|
44
|
-
on_scroll: EventType[()] | None = None,
|
|
45
|
-
on_unmount: EventType[()] | None = None,
|
|
46
|
-
**props,
|
|
47
|
-
) -> NextHeadLib:
|
|
48
|
-
"""Create the component.
|
|
49
|
-
|
|
50
|
-
Args:
|
|
51
|
-
*children: The children of the component.
|
|
52
|
-
style: The style of the component.
|
|
53
|
-
key: A unique key for the component.
|
|
54
|
-
id: The id for the component.
|
|
55
|
-
ref: The Var to pass as the ref to the component.
|
|
56
|
-
class_name: The class name for the component.
|
|
57
|
-
autofocus: Whether the component should take the focus once the page is loaded
|
|
58
|
-
custom_attrs: custom attribute
|
|
59
|
-
**props: The props of the component.
|
|
60
|
-
|
|
61
|
-
Returns:
|
|
62
|
-
The component.
|
|
63
|
-
"""
|
|
64
|
-
|
|
65
|
-
class Head(NextHeadLib, MemoizationLeaf):
|
|
66
|
-
@overload
|
|
67
|
-
@classmethod
|
|
68
|
-
def create( # type: ignore
|
|
69
|
-
cls,
|
|
70
|
-
*children,
|
|
71
|
-
style: Sequence[Mapping[str, Any]]
|
|
72
|
-
| Mapping[str, Any]
|
|
73
|
-
| Var[Mapping[str, Any]]
|
|
74
|
-
| Breakpoints
|
|
75
|
-
| None = None,
|
|
76
|
-
key: Any | None = None,
|
|
77
|
-
id: Any | None = None,
|
|
78
|
-
ref: Var | None = None,
|
|
79
|
-
class_name: Any | None = None,
|
|
80
|
-
autofocus: bool | None = None,
|
|
81
|
-
custom_attrs: dict[str, Var | Any] | None = None,
|
|
82
|
-
on_blur: EventType[()] | None = None,
|
|
83
|
-
on_click: EventType[()] | None = None,
|
|
84
|
-
on_context_menu: EventType[()] | None = None,
|
|
85
|
-
on_double_click: EventType[()] | None = None,
|
|
86
|
-
on_focus: EventType[()] | None = None,
|
|
87
|
-
on_mount: EventType[()] | None = None,
|
|
88
|
-
on_mouse_down: EventType[()] | None = None,
|
|
89
|
-
on_mouse_enter: EventType[()] | None = None,
|
|
90
|
-
on_mouse_leave: EventType[()] | None = None,
|
|
91
|
-
on_mouse_move: EventType[()] | None = None,
|
|
92
|
-
on_mouse_out: EventType[()] | None = None,
|
|
93
|
-
on_mouse_over: EventType[()] | None = None,
|
|
94
|
-
on_mouse_up: EventType[()] | None = None,
|
|
95
|
-
on_scroll: EventType[()] | None = None,
|
|
96
|
-
on_unmount: EventType[()] | None = None,
|
|
97
|
-
**props,
|
|
98
|
-
) -> Head:
|
|
99
|
-
"""Create a new memoization leaf component.
|
|
100
|
-
|
|
101
|
-
Args:
|
|
102
|
-
*children: The children of the component.
|
|
103
|
-
style: The style of the component.
|
|
104
|
-
key: A unique key for the component.
|
|
105
|
-
id: The id for the component.
|
|
106
|
-
ref: The Var to pass as the ref to the component.
|
|
107
|
-
class_name: The class name for the component.
|
|
108
|
-
autofocus: Whether the component should take the focus once the page is loaded
|
|
109
|
-
custom_attrs: custom attribute
|
|
110
|
-
**props: The props of the component.
|
|
111
|
-
|
|
112
|
-
Returns:
|
|
113
|
-
The memoization leaf
|
|
114
|
-
"""
|
|
115
|
-
|
|
116
|
-
head = Head.create
|