reflex 0.7.6a0__tar.gz → 0.7.7a1__tar.gz
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-0.7.6a0 → reflex-0.7.7a1}/PKG-INFO +16 -16
- {reflex-0.7.6a0 → reflex-0.7.7a1}/pyproject.toml +42 -42
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/utils/state.js +9 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/app.py +7 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/component.py +2 -1
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/forms.py +62 -18
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/forms.pyi +1132 -4
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/__init__.py +1 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/__init__.pyi +1 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/general.py +1 -1
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/general.pyi +1 -1
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/event.py +37 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/reflex.py +17 -13
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/state.py +3 -2
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/decorator.py +21 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/export.py +2 -2
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/prerequisites.py +28 -19
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/pyi_generator.py +13 -7
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/telemetry.py +82 -21
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/types.py +12 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/vars/base.py +15 -1
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/vars/number.py +21 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/.gitignore +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/LICENSE +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/README.md +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/hatch_build.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/apps/blank/assets/favicon.ico +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/apps/blank/code/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/apps/blank/code/blank.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/app/rxconfig.py.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/custom_components/README.md.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/custom_components/__init__.py.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/custom_components/demo_app.py.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/custom_components/pyproject.toml.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/custom_components/src.py.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/package.json.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/_app.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/_document.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/base_page.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/component.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/custom_component.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/index.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/macros.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/stateful_component.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/stateful_components.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/pages/utils.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/styles/styles.css.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/tailwind.config.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/utils/context.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/jinja/web/utils/theme.js.jinja2 +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/.gitignore +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/components/shiki/code.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/jsconfig.json +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/next.config.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/postcss.config.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/styles/tailwind.css +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/utils/client_side_routing.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/utils/helpers/dataeditor.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/utils/helpers/debounce.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/utils/helpers/paste.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/utils/helpers/range.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/.templates/web/utils/helpers/throttle.js +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/__main__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/admin.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/app_mixins/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/app_mixins/lifespan.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/app_mixins/middleware.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/app_mixins/mixin.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/assets.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/base.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/compiler/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/compiler/compiler.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/compiler/templates.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/compiler/utils.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/app_wrap.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/app_wrap.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/bare.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/body.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/body.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/document.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/document.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/error_boundary.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/error_boundary.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/fragment.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/fragment.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/head.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/head.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/link.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/link.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/meta.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/meta.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/script.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/script.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/strict_mode.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/base/strict_mode.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/auto_scroll.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/auto_scroll.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/banner.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/banner.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/breakpoints.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/client_side_routing.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/client_side_routing.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/clipboard.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/clipboard.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/colors.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/cond.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/debounce.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/debounce.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/foreach.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/html.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/html.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/layout/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/match.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/responsive.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/sticky.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/sticky.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/upload.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/core/upload.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/code.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/code.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/dataeditor.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/dataeditor.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/logo.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/shiki_code_block.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/datadisplay/shiki_code_block.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/dynamic.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/constants/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/constants/html.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/constants/react.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/constants/reflex.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/element.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/element.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/base.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/base.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/inline.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/inline.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/media.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/media.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/metadata.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/metadata.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/other.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/other.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/scripts.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/scripts.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/sectioning.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/sectioning.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/tables.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/tables.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/typography.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/el/elements/typography.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/gridjs/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/gridjs/datatable.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/gridjs/datatable.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/literals.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/lucide/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/lucide/icon.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/lucide/icon.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/markdown/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/markdown/markdown.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/markdown/markdown.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/moment/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/moment/moment.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/moment/moment.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/base.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/base.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/image.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/image.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/link.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/link.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/video.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/next/video.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/plotly/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/plotly/plotly.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/plotly/plotly.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/props.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/accordion.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/accordion.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/base.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/base.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/drawer.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/drawer.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/form.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/form.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/progress.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/progress.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/slider.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/primitives/slider.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/base.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/base.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/color_mode.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/color_mode.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/alert_dialog.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/alert_dialog.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/aspect_ratio.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/aspect_ratio.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/avatar.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/avatar.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/badge.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/badge.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/button.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/button.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/callout.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/callout.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/card.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/card.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/checkbox.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/checkbox.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/checkbox_cards.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/checkbox_cards.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/checkbox_group.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/checkbox_group.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/context_menu.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/context_menu.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/data_list.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/data_list.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/dialog.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/dialog.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/dropdown_menu.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/dropdown_menu.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/hover_card.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/hover_card.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/icon_button.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/icon_button.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/inset.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/inset.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/popover.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/popover.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/progress.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/progress.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/radio.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/radio.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/radio_cards.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/radio_cards.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/radio_group.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/radio_group.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/scroll_area.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/scroll_area.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/segmented_control.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/segmented_control.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/select.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/select.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/separator.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/separator.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/skeleton.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/skeleton.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/slider.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/slider.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/spinner.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/spinner.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/switch.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/switch.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/table.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/table.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/tabs.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/tabs.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/text_area.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/text_area.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/text_field.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/text_field.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/tooltip.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/components/tooltip.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/base.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/base.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/box.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/box.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/center.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/center.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/container.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/container.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/flex.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/flex.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/grid.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/grid.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/list.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/list.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/section.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/section.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/spacer.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/spacer.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/stack.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/layout/stack.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/__init__.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/base.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/blockquote.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/blockquote.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/code.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/code.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/heading.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/heading.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/link.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/link.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/text.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/radix/themes/typography/text.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/react_player/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/react_player/audio.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/react_player/audio.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/react_player/react_player.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/react_player/react_player.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/react_player/video.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/react_player/video.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/cartesian.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/cartesian.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/charts.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/charts.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/polar.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/polar.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/recharts.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/recharts/recharts.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/sonner/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/sonner/toast.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/sonner/toast.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/suneditor/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/suneditor/editor.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/suneditor/editor.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/tags/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/tags/cond_tag.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/tags/iter_tag.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/tags/match_tag.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/tags/tag.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/components/tags/tagless.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/config.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/base.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/colors.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/compiler.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/config.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/custom_components.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/event.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/installer.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/route.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/state.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/style.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/constants/utils.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/custom_components/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/custom_components/custom_components.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/experimental/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/experimental/client_state.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/experimental/hooks.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/experimental/layout.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/experimental/layout.pyi +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/istate/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/istate/data.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/istate/dynamic.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/istate/proxy.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/istate/storage.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/istate/wrappers.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/middleware/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/middleware/hydrate_middleware.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/middleware/middleware.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/model.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/page.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/py.typed +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/route.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/style.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/testing.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/build.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/codespaces.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/compat.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/console.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/exceptions.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/exec.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/format.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/imports.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/lazy_loader.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/misc.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/net.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/path_ops.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/processes.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/redir.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/registry.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/utils/serializers.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/vars/__init__.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/vars/datetime.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/vars/dep_tracking.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/vars/function.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/vars/object.py +0 -0
- {reflex-0.7.6a0 → reflex-0.7.7a1}/reflex/vars/sequence.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: reflex
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.7a1
|
|
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
|
|
@@ -18,26 +18,26 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
20
|
Requires-Python: <4.0,>=3.10
|
|
21
|
-
Requires-Dist: alembic<2.0,>=1.
|
|
22
|
-
Requires-Dist: distro<2.0,>=1.
|
|
23
|
-
Requires-Dist: fastapi
|
|
24
|
-
Requires-Dist: granian[reload]>=2.2.
|
|
21
|
+
Requires-Dist: alembic<2.0,>=1.15.2
|
|
22
|
+
Requires-Dist: distro<2.0,>=1.9.0; platform_system == 'Linux'
|
|
23
|
+
Requires-Dist: fastapi>=0.115.0
|
|
24
|
+
Requires-Dist: granian[reload]>=2.2.3
|
|
25
25
|
Requires-Dist: gunicorn<24.0.0,>=23.0.0
|
|
26
|
-
Requires-Dist: httpx<1.0,>=0.
|
|
26
|
+
Requires-Dist: httpx<1.0,>=0.28.0
|
|
27
27
|
Requires-Dist: jinja2<4.0,>=3.1.2
|
|
28
|
-
Requires-Dist: packaging<25.0,>=
|
|
29
|
-
Requires-Dist: platformdirs<5.0,>=3.
|
|
30
|
-
Requires-Dist: psutil<8.0,>=
|
|
28
|
+
Requires-Dist: packaging<25.0,>=24.2
|
|
29
|
+
Requires-Dist: platformdirs<5.0,>=4.3.7
|
|
30
|
+
Requires-Dist: psutil<8.0,>=7.0.0
|
|
31
31
|
Requires-Dist: pydantic<3.0,>=1.10.21
|
|
32
32
|
Requires-Dist: python-multipart<1.0,>=0.0.20
|
|
33
|
-
Requires-Dist: python-socketio<6.0,>=5.
|
|
34
|
-
Requires-Dist: redis<6.0,>=
|
|
35
|
-
Requires-Dist: reflex-hosting-cli>=0.1.
|
|
33
|
+
Requires-Dist: python-socketio<6.0,>=5.12.0
|
|
34
|
+
Requires-Dist: redis<6.0,>=5.2.1
|
|
35
|
+
Requires-Dist: reflex-hosting-cli>=0.1.38
|
|
36
36
|
Requires-Dist: rich<14.0,>=13.0.0
|
|
37
|
-
Requires-Dist: sqlmodel<0.1,>=0.0.
|
|
38
|
-
Requires-Dist: typer<1.0,>=0.15.
|
|
39
|
-
Requires-Dist: typing-extensions>=4.
|
|
40
|
-
Requires-Dist: uvicorn>=0.
|
|
37
|
+
Requires-Dist: sqlmodel<0.1,>=0.0.24
|
|
38
|
+
Requires-Dist: typer<1.0,>=0.15.2
|
|
39
|
+
Requires-Dist: typing-extensions>=4.13.0
|
|
40
|
+
Requires-Dist: uvicorn>=0.34.0
|
|
41
41
|
Requires-Dist: wrapt<2.0,>=1.17.0
|
|
42
42
|
Description-Content-Type: text/markdown
|
|
43
43
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "reflex"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.7a1"
|
|
4
4
|
description = "Web apps in pure Python."
|
|
5
5
|
license = { text = "Apache-2.0" }
|
|
6
6
|
authors = [
|
|
@@ -20,26 +20,26 @@ readme = "README.md"
|
|
|
20
20
|
keywords = ["web", "framework"]
|
|
21
21
|
requires-python = ">=3.10,<4.0"
|
|
22
22
|
dependencies = [
|
|
23
|
-
"alembic >=1.
|
|
24
|
-
"distro >=1.
|
|
25
|
-
"fastapi >=0.
|
|
26
|
-
"granian[reload] >=2.2.
|
|
23
|
+
"alembic >=1.15.2,<2.0",
|
|
24
|
+
"distro >=1.9.0,<2.0; platform_system == 'Linux'",
|
|
25
|
+
"fastapi >=0.115.0",
|
|
26
|
+
"granian[reload] >=2.2.3",
|
|
27
27
|
"gunicorn >=23.0.0,<24.0.0",
|
|
28
|
-
"httpx >=0.
|
|
28
|
+
"httpx >=0.28.0,<1.0",
|
|
29
29
|
"jinja2 >=3.1.2,<4.0",
|
|
30
|
-
"packaging >=
|
|
31
|
-
"platformdirs >=3.
|
|
32
|
-
"psutil >=
|
|
30
|
+
"packaging >=24.2,<25.0",
|
|
31
|
+
"platformdirs >=4.3.7,<5.0",
|
|
32
|
+
"psutil >=7.0.0,<8.0",
|
|
33
33
|
"pydantic >=1.10.21,<3.0",
|
|
34
|
-
"python-socketio >=5.
|
|
34
|
+
"python-socketio >=5.12.0,<6.0",
|
|
35
35
|
"python-multipart >=0.0.20,<1.0",
|
|
36
|
-
"redis >=
|
|
37
|
-
"reflex-hosting-cli >=0.1.
|
|
36
|
+
"redis >=5.2.1,<6.0",
|
|
37
|
+
"reflex-hosting-cli >=0.1.38",
|
|
38
38
|
"rich >=13.0.0,<14.0",
|
|
39
|
-
"sqlmodel >=0.0.
|
|
40
|
-
"typer >=0.15.
|
|
41
|
-
"typing_extensions >=4.
|
|
42
|
-
"uvicorn >=0.
|
|
39
|
+
"sqlmodel >=0.0.24,<0.1",
|
|
40
|
+
"typer >=0.15.2,<1.0",
|
|
41
|
+
"typing_extensions >=4.13.0",
|
|
42
|
+
"uvicorn >=0.34.0",
|
|
43
43
|
"wrapt >=1.17.0,<2.0",
|
|
44
44
|
]
|
|
45
45
|
classifiers = [
|
|
@@ -139,30 +139,30 @@ ignore-words-list = "te, TreeE"
|
|
|
139
139
|
|
|
140
140
|
[dependency-groups]
|
|
141
141
|
dev = [
|
|
142
|
-
"asynctest >=0.13
|
|
143
|
-
"darglint >=1.8
|
|
144
|
-
"dill >=0.3
|
|
145
|
-
"hatchling >=1.27
|
|
146
|
-
"libsass >=0.23
|
|
147
|
-
"numpy >=2.2
|
|
148
|
-
"pandas >=2.
|
|
149
|
-
"pillow >=
|
|
150
|
-
"playwright >=1.
|
|
151
|
-
"plotly >=
|
|
152
|
-
"pre-commit >=4.
|
|
153
|
-
"psycopg[binary] >=3.2
|
|
154
|
-
"pyright >=1.1.
|
|
155
|
-
"pytest >=
|
|
156
|
-
"pytest-asyncio >=0.
|
|
157
|
-
"pytest-benchmark >=
|
|
158
|
-
"pytest-codspeed >=3.
|
|
159
|
-
"pytest-cov >=
|
|
160
|
-
"pytest-mock >=3.
|
|
161
|
-
"pytest-playwright >=0.
|
|
162
|
-
"pytest-retry >=1.7
|
|
163
|
-
"pytest-split >=0.10
|
|
164
|
-
"python-dotenv >=1
|
|
165
|
-
"ruff >=0.11
|
|
166
|
-
"selenium >=4.
|
|
167
|
-
"starlette-admin >=0.
|
|
142
|
+
"asynctest >=0.13",
|
|
143
|
+
"darglint >=1.8",
|
|
144
|
+
"dill >=0.3",
|
|
145
|
+
"hatchling >=1.27",
|
|
146
|
+
"libsass >=0.23",
|
|
147
|
+
"numpy >=2.2",
|
|
148
|
+
"pandas >=2.2",
|
|
149
|
+
"pillow >=11",
|
|
150
|
+
"playwright >=1.51",
|
|
151
|
+
"plotly >=6.0",
|
|
152
|
+
"pre-commit >=4.2",
|
|
153
|
+
"psycopg[binary] >=3.2",
|
|
154
|
+
"pyright >=1.1.399",
|
|
155
|
+
"pytest >=8.3",
|
|
156
|
+
"pytest-asyncio >=0.26",
|
|
157
|
+
"pytest-benchmark >=5.1",
|
|
158
|
+
"pytest-codspeed >=3.2",
|
|
159
|
+
"pytest-cov >=6.1",
|
|
160
|
+
"pytest-mock >=3.14",
|
|
161
|
+
"pytest-playwright >=0.7",
|
|
162
|
+
"pytest-retry >=1.7",
|
|
163
|
+
"pytest-split >=0.10",
|
|
164
|
+
"python-dotenv >=1",
|
|
165
|
+
"ruff >=0.11",
|
|
166
|
+
"selenium >=4.31",
|
|
167
|
+
"starlette-admin >=0.14",
|
|
168
168
|
]
|
|
@@ -948,6 +948,15 @@ export const isTrue = (val) => {
|
|
|
948
948
|
return Boolean(val);
|
|
949
949
|
};
|
|
950
950
|
|
|
951
|
+
/***
|
|
952
|
+
* Check if a value is not null or undefined.
|
|
953
|
+
* @param val The value to check.
|
|
954
|
+
* @returns True if the value is not null or undefined, false otherwise.
|
|
955
|
+
*/
|
|
956
|
+
export const isNotNullOrUndefined = (val) => {
|
|
957
|
+
return val ?? undefined !== undefined;
|
|
958
|
+
};
|
|
959
|
+
|
|
951
960
|
/**
|
|
952
961
|
* Get the value from a ref.
|
|
953
962
|
* @param ref The ref to get the value from.
|
|
@@ -293,6 +293,7 @@ class UnevaluatedPage:
|
|
|
293
293
|
image: str
|
|
294
294
|
on_load: EventType[()] | None
|
|
295
295
|
meta: list[dict[str, str]]
|
|
296
|
+
context: dict[str, Any] | None
|
|
296
297
|
|
|
297
298
|
|
|
298
299
|
@dataclasses.dataclass()
|
|
@@ -681,6 +682,7 @@ class App(MiddlewareMixin, LifespanMixin):
|
|
|
681
682
|
image: str = constants.DefaultPage.IMAGE,
|
|
682
683
|
on_load: EventType[()] | None = None,
|
|
683
684
|
meta: list[dict[str, str]] = constants.DefaultPage.META_LIST,
|
|
685
|
+
context: dict[str, Any] | None = None,
|
|
684
686
|
):
|
|
685
687
|
"""Add a page to the app.
|
|
686
688
|
|
|
@@ -695,6 +697,7 @@ class App(MiddlewareMixin, LifespanMixin):
|
|
|
695
697
|
image: The image to display on the page.
|
|
696
698
|
on_load: The event handler(s) that will be called each time the page load.
|
|
697
699
|
meta: The metadata of the page.
|
|
700
|
+
context: Values passed to page for custom page-specific logic.
|
|
698
701
|
|
|
699
702
|
Raises:
|
|
700
703
|
PageValueError: When the component is not set for a non-404 page.
|
|
@@ -762,6 +765,7 @@ class App(MiddlewareMixin, LifespanMixin):
|
|
|
762
765
|
image=image,
|
|
763
766
|
on_load=on_load,
|
|
764
767
|
meta=meta,
|
|
768
|
+
context=context,
|
|
765
769
|
)
|
|
766
770
|
|
|
767
771
|
def _compile_page(self, route: str, save_page: bool = True):
|
|
@@ -933,6 +937,9 @@ class App(MiddlewareMixin, LifespanMixin):
|
|
|
933
937
|
and i != ""
|
|
934
938
|
and any(tag.install for tag in tags)
|
|
935
939
|
}
|
|
940
|
+
pinned = {i.rpartition("@")[0] for i in page_imports if "@" in i}
|
|
941
|
+
page_imports = {i for i in page_imports if i not in pinned}
|
|
942
|
+
|
|
936
943
|
frontend_packages = get_config().frontend_packages
|
|
937
944
|
_frontend_packages = []
|
|
938
945
|
for package in frontend_packages:
|
|
@@ -30,6 +30,7 @@ from typing import (
|
|
|
30
30
|
)
|
|
31
31
|
|
|
32
32
|
import pydantic.v1
|
|
33
|
+
from rich.markup import escape
|
|
33
34
|
|
|
34
35
|
import reflex.state
|
|
35
36
|
from reflex.base import Base
|
|
@@ -217,7 +218,7 @@ def satisfies_type_hint(obj: Any, type_hint: Any) -> bool:
|
|
|
217
218
|
console.deprecate(
|
|
218
219
|
"implicit-none-for-component-fields",
|
|
219
220
|
reason="Passing Vars with possible None values to component fields not explicitly marked as Optional is deprecated. "
|
|
220
|
-
+ f"Passed {obj!s} of type {type(obj) if not isinstance(obj, Var) else obj._var_type} to {type_hint}.",
|
|
221
|
+
+ f"Passed {obj!s} of type {escape(str(type(obj) if not isinstance(obj, Var) else obj._var_type))} to {escape(str(type_hint))}.",
|
|
221
222
|
deprecation_version="0.7.2",
|
|
222
223
|
removal_version="0.8.0",
|
|
223
224
|
)
|
|
@@ -13,14 +13,17 @@ from reflex.constants import Dirs, EventTriggers
|
|
|
13
13
|
from reflex.event import (
|
|
14
14
|
EventChain,
|
|
15
15
|
EventHandler,
|
|
16
|
+
checked_input_event,
|
|
17
|
+
float_input_event,
|
|
16
18
|
input_event,
|
|
19
|
+
int_input_event,
|
|
17
20
|
key_event,
|
|
18
21
|
prevent_default,
|
|
19
22
|
)
|
|
20
23
|
from reflex.utils.imports import ImportDict
|
|
21
|
-
from reflex.utils.types import is_optional
|
|
22
24
|
from reflex.vars import VarData
|
|
23
25
|
from reflex.vars.base import LiteralVar, Var
|
|
26
|
+
from reflex.vars.number import ternary_operation
|
|
24
27
|
|
|
25
28
|
from .base import BaseHTML
|
|
26
29
|
|
|
@@ -294,8 +297,8 @@ HTMLInputTypeAttribute = Literal[
|
|
|
294
297
|
]
|
|
295
298
|
|
|
296
299
|
|
|
297
|
-
class
|
|
298
|
-
"""
|
|
300
|
+
class BaseInput(BaseHTML):
|
|
301
|
+
"""A base class for input elements."""
|
|
299
302
|
|
|
300
303
|
tag = "input"
|
|
301
304
|
|
|
@@ -392,6 +395,42 @@ class Input(BaseHTML):
|
|
|
392
395
|
# Value of the input
|
|
393
396
|
value: Var[str | int | float]
|
|
394
397
|
|
|
398
|
+
# Fired when a key is pressed down
|
|
399
|
+
on_key_down: EventHandler[key_event]
|
|
400
|
+
|
|
401
|
+
# Fired when a key is released
|
|
402
|
+
on_key_up: EventHandler[key_event]
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
class CheckboxInput(BaseInput):
|
|
406
|
+
"""Display the input element."""
|
|
407
|
+
|
|
408
|
+
# Fired when the input value changes
|
|
409
|
+
on_change: EventHandler[checked_input_event]
|
|
410
|
+
|
|
411
|
+
# Fired when the input gains focus
|
|
412
|
+
on_focus: EventHandler[checked_input_event]
|
|
413
|
+
|
|
414
|
+
# Fired when the input loses focus
|
|
415
|
+
on_blur: EventHandler[checked_input_event]
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
class ValueNumberInput(BaseInput):
|
|
419
|
+
"""Display the input element."""
|
|
420
|
+
|
|
421
|
+
# Fired when the input value changes
|
|
422
|
+
on_change: EventHandler[float_input_event, int_input_event, input_event]
|
|
423
|
+
|
|
424
|
+
# Fired when the input gains focus
|
|
425
|
+
on_focus: EventHandler[float_input_event, int_input_event, input_event]
|
|
426
|
+
|
|
427
|
+
# Fired when the input loses focus
|
|
428
|
+
on_blur: EventHandler[float_input_event, int_input_event, input_event]
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
class Input(BaseInput):
|
|
432
|
+
"""Display the input element."""
|
|
433
|
+
|
|
395
434
|
# Fired when the input value changes
|
|
396
435
|
on_change: EventHandler[input_event]
|
|
397
436
|
|
|
@@ -401,12 +440,6 @@ class Input(BaseHTML):
|
|
|
401
440
|
# Fired when the input loses focus
|
|
402
441
|
on_blur: EventHandler[input_event]
|
|
403
442
|
|
|
404
|
-
# Fired when a key is pressed down
|
|
405
|
-
on_key_down: EventHandler[key_event]
|
|
406
|
-
|
|
407
|
-
# Fired when a key is released
|
|
408
|
-
on_key_up: EventHandler[key_event]
|
|
409
|
-
|
|
410
443
|
@classmethod
|
|
411
444
|
def create(cls, *children, **props):
|
|
412
445
|
"""Create an Input component.
|
|
@@ -418,20 +451,25 @@ class Input(BaseHTML):
|
|
|
418
451
|
Returns:
|
|
419
452
|
The component.
|
|
420
453
|
"""
|
|
421
|
-
from reflex.vars.number import ternary_operation
|
|
422
|
-
|
|
423
454
|
value = props.get("value")
|
|
424
455
|
|
|
425
456
|
# React expects an empty string(instead of null) for controlled inputs.
|
|
426
|
-
if value is not None
|
|
427
|
-
|
|
428
|
-
):
|
|
457
|
+
if value is not None:
|
|
458
|
+
value_var = Var.create(value)
|
|
429
459
|
props["value"] = ternary_operation(
|
|
430
|
-
(value_var
|
|
431
|
-
& (value_var != Var(_js_expr="undefined")),
|
|
432
|
-
value,
|
|
433
|
-
Var.create(""),
|
|
460
|
+
value_var.is_not_none(), value_var, Var.create("")
|
|
434
461
|
)
|
|
462
|
+
|
|
463
|
+
input_type = props.get("type")
|
|
464
|
+
|
|
465
|
+
if input_type == "checkbox":
|
|
466
|
+
# Checkbox inputs should use the CheckboxInput class
|
|
467
|
+
return CheckboxInput.create(*children, **props)
|
|
468
|
+
|
|
469
|
+
if input_type == "number" or input_type == "range":
|
|
470
|
+
# Number inputs should use the ValueNumberInput class
|
|
471
|
+
return ValueNumberInput.create(*children, **props)
|
|
472
|
+
|
|
435
473
|
return super().create(*children, **props)
|
|
436
474
|
|
|
437
475
|
|
|
@@ -572,6 +610,12 @@ class Select(BaseHTML):
|
|
|
572
610
|
# Fired when the select value changes
|
|
573
611
|
on_change: EventHandler[input_event]
|
|
574
612
|
|
|
613
|
+
# The controlled value of the select, read only unless used with on_change
|
|
614
|
+
value: Var[str]
|
|
615
|
+
|
|
616
|
+
# The default value of the select when initially rendered
|
|
617
|
+
default_value: Var[str]
|
|
618
|
+
|
|
575
619
|
|
|
576
620
|
AUTO_HEIGHT_JS = """
|
|
577
621
|
const autoHeightOnInput = (e, is_enabled) => {
|