reflex 0.7.5__tar.gz → 0.7.6a0__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.5 → reflex-0.7.6a0}/.gitignore +3 -1
- {reflex-0.7.5 → reflex-0.7.6a0}/PKG-INFO +2 -11
- reflex-0.7.6a0/hatch_build.py +50 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/pyproject.toml +15 -13
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/_app.js.jinja2 +1 -1
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/__init__.py +1 -1
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/admin.py +6 -2
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/app.py +9 -3
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/compiler/compiler.py +83 -44
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/cond.py +1 -1
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/foreach.py +4 -1
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/config.py +0 -6
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/base.py +13 -1
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/compiler.py +1 -1
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/installer.py +2 -4
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/custom_components/custom_components.py +17 -387
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/event.py +17 -9
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/reflex.py +9 -2
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/state.py +13 -3
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/codespaces.py +12 -3
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/exec.py +2 -2
- reflex-0.7.6a0/reflex/utils/lazy_loader.py +91 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/prerequisites.py +39 -33
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/processes.py +13 -4
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/pyi_generator.py +96 -13
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/types.py +11 -1
- reflex-0.7.5/reflex/utils/lazy_loader.py +0 -40
- {reflex-0.7.5 → reflex-0.7.6a0}/LICENSE +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/README.md +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/apps/blank/assets/favicon.ico +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/apps/blank/code/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/apps/blank/code/blank.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/app/rxconfig.py.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/custom_components/README.md.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/custom_components/__init__.py.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/custom_components/demo_app.py.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/custom_components/pyproject.toml.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/custom_components/src.py.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/package.json.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/_document.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/base_page.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/component.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/custom_component.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/index.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/macros.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/stateful_component.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/stateful_components.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/pages/utils.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/styles/styles.css.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/tailwind.config.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/utils/context.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/jinja/web/utils/theme.js.jinja2 +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/.gitignore +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/components/shiki/code.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/jsconfig.json +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/next.config.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/postcss.config.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/styles/tailwind.css +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/utils/client_side_routing.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/utils/helpers/dataeditor.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/utils/helpers/debounce.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/utils/helpers/paste.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/utils/helpers/range.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/utils/helpers/throttle.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/.templates/web/utils/state.js +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/__main__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/app_mixins/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/app_mixins/lifespan.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/app_mixins/middleware.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/app_mixins/mixin.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/assets.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/base.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/compiler/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/compiler/templates.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/compiler/utils.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/app_wrap.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/app_wrap.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/bare.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/body.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/body.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/document.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/document.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/error_boundary.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/error_boundary.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/fragment.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/fragment.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/head.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/head.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/link.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/link.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/meta.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/meta.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/script.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/script.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/strict_mode.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/base/strict_mode.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/component.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/auto_scroll.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/auto_scroll.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/banner.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/banner.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/breakpoints.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/client_side_routing.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/client_side_routing.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/clipboard.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/clipboard.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/colors.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/debounce.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/debounce.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/html.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/html.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/layout/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/match.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/responsive.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/sticky.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/sticky.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/upload.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/core/upload.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/code.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/code.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/dataeditor.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/dataeditor.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/logo.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/shiki_code_block.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/datadisplay/shiki_code_block.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/dynamic.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/constants/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/constants/html.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/constants/react.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/constants/reflex.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/element.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/element.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/base.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/base.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/forms.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/forms.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/inline.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/inline.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/media.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/media.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/metadata.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/metadata.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/other.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/other.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/scripts.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/scripts.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/sectioning.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/sectioning.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/tables.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/tables.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/typography.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/el/elements/typography.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/gridjs/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/gridjs/datatable.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/gridjs/datatable.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/literals.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/lucide/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/lucide/icon.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/lucide/icon.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/markdown/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/markdown/markdown.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/markdown/markdown.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/moment/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/moment/moment.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/moment/moment.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/base.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/base.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/image.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/image.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/link.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/link.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/video.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/next/video.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/plotly/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/plotly/plotly.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/plotly/plotly.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/props.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/accordion.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/accordion.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/base.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/base.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/drawer.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/drawer.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/form.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/form.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/progress.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/progress.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/slider.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/primitives/slider.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/base.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/base.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/color_mode.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/color_mode.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/alert_dialog.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/alert_dialog.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/aspect_ratio.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/aspect_ratio.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/avatar.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/avatar.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/badge.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/badge.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/button.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/button.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/callout.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/callout.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/card.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/card.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/checkbox.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/checkbox.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/checkbox_cards.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/checkbox_cards.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/checkbox_group.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/checkbox_group.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/context_menu.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/context_menu.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/data_list.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/data_list.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/dialog.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/dialog.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/dropdown_menu.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/dropdown_menu.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/hover_card.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/hover_card.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/icon_button.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/icon_button.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/inset.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/inset.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/popover.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/popover.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/progress.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/progress.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/radio.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/radio.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/radio_cards.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/radio_cards.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/radio_group.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/radio_group.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/scroll_area.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/scroll_area.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/segmented_control.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/segmented_control.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/select.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/select.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/separator.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/separator.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/skeleton.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/skeleton.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/slider.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/slider.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/spinner.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/spinner.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/switch.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/switch.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/table.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/table.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/tabs.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/tabs.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/text_area.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/text_area.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/text_field.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/text_field.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/tooltip.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/components/tooltip.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/base.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/base.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/box.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/box.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/center.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/center.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/container.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/container.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/flex.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/flex.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/grid.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/grid.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/list.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/list.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/section.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/section.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/spacer.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/spacer.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/stack.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/layout/stack.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/base.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/blockquote.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/blockquote.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/code.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/code.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/heading.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/heading.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/link.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/link.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/text.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/radix/themes/typography/text.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/react_player/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/react_player/audio.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/react_player/audio.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/react_player/react_player.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/react_player/react_player.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/react_player/video.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/react_player/video.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/__init__.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/cartesian.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/cartesian.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/charts.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/charts.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/general.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/general.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/polar.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/polar.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/recharts.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/recharts/recharts.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/sonner/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/sonner/toast.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/sonner/toast.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/suneditor/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/suneditor/editor.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/suneditor/editor.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/tags/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/tags/cond_tag.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/tags/iter_tag.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/tags/match_tag.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/tags/tag.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/components/tags/tagless.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/colors.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/config.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/custom_components.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/event.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/route.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/state.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/style.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/constants/utils.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/custom_components/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/experimental/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/experimental/client_state.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/experimental/hooks.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/experimental/layout.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/experimental/layout.pyi +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/istate/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/istate/data.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/istate/dynamic.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/istate/proxy.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/istate/storage.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/istate/wrappers.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/middleware/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/middleware/hydrate_middleware.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/middleware/middleware.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/model.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/page.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/py.typed +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/route.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/style.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/testing.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/build.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/compat.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/console.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/decorator.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/exceptions.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/export.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/format.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/imports.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/misc.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/net.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/path_ops.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/redir.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/registry.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/serializers.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/utils/telemetry.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/vars/__init__.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/vars/base.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/vars/datetime.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/vars/dep_tracking.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/vars/function.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/vars/number.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/reflex/vars/object.py +0 -0
- {reflex-0.7.5 → reflex-0.7.6a0}/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.6a0
|
|
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,34 +19,25 @@ 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.11.1
|
|
22
|
-
Requires-Dist: build<2.0,>=1.0.3
|
|
23
|
-
Requires-Dist: charset-normalizer<4.0,>=3.3.2
|
|
24
22
|
Requires-Dist: distro<2.0,>=1.8.0; platform_system == 'Linux'
|
|
25
23
|
Requires-Dist: fastapi!=0.111.0,!=0.111.1,>=0.96.0
|
|
26
24
|
Requires-Dist: granian[reload]>=2.2.0
|
|
27
25
|
Requires-Dist: gunicorn<24.0.0,>=23.0.0
|
|
28
26
|
Requires-Dist: httpx<1.0,>=0.25.1
|
|
29
27
|
Requires-Dist: jinja2<4.0,>=3.1.2
|
|
30
|
-
Requires-Dist: lazy-loader>=0.4
|
|
31
28
|
Requires-Dist: packaging<25.0,>=23.1
|
|
32
29
|
Requires-Dist: platformdirs<5.0,>=3.10.0
|
|
33
30
|
Requires-Dist: psutil<8.0,>=5.9.4
|
|
34
31
|
Requires-Dist: pydantic<3.0,>=1.10.21
|
|
35
|
-
Requires-Dist: python-
|
|
36
|
-
Requires-Dist: python-multipart<0.1,>=0.0.5
|
|
32
|
+
Requires-Dist: python-multipart<1.0,>=0.0.20
|
|
37
33
|
Requires-Dist: python-socketio<6.0,>=5.7.0
|
|
38
34
|
Requires-Dist: redis<6.0,>=4.3.5
|
|
39
35
|
Requires-Dist: reflex-hosting-cli>=0.1.29
|
|
40
36
|
Requires-Dist: rich<14.0,>=13.0.0
|
|
41
|
-
Requires-Dist: setuptools>=75.0
|
|
42
37
|
Requires-Dist: sqlmodel<0.1,>=0.0.14
|
|
43
|
-
Requires-Dist: starlette-admin<1.0,>=0.11.0
|
|
44
|
-
Requires-Dist: tomlkit<1.0,>=0.12.4
|
|
45
|
-
Requires-Dist: twine<7.0,>=4.0.0
|
|
46
38
|
Requires-Dist: typer<1.0,>=0.15.1
|
|
47
39
|
Requires-Dist: typing-extensions>=4.6.0
|
|
48
40
|
Requires-Dist: uvicorn>=0.20.0
|
|
49
|
-
Requires-Dist: wheel<1.0,>=0.42.0
|
|
50
41
|
Requires-Dist: wrapt<2.0,>=1.17.0
|
|
51
42
|
Description-Content-Type: text/markdown
|
|
52
43
|
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""Custom build hook for Hatch."""
|
|
2
|
+
|
|
3
|
+
import pathlib
|
|
4
|
+
import subprocess
|
|
5
|
+
import sys
|
|
6
|
+
from typing import Any
|
|
7
|
+
|
|
8
|
+
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class CustomBuilder(BuildHookInterface):
|
|
12
|
+
"""Custom build hook for Hatch."""
|
|
13
|
+
|
|
14
|
+
PLUGIN_NAME = "custom"
|
|
15
|
+
|
|
16
|
+
def marker(self) -> pathlib.Path:
|
|
17
|
+
"""Get the marker file path.
|
|
18
|
+
|
|
19
|
+
Returns:
|
|
20
|
+
The marker file path.
|
|
21
|
+
"""
|
|
22
|
+
return (
|
|
23
|
+
pathlib.Path(self.directory)
|
|
24
|
+
/ f".reflex-{self.metadata.version}.pyi_generated"
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
def finalize(
|
|
28
|
+
self, version: str, build_data: dict[str, Any], artifact_path: str
|
|
29
|
+
) -> None:
|
|
30
|
+
"""Finalize the build process.
|
|
31
|
+
|
|
32
|
+
Args:
|
|
33
|
+
version: The version of the package.
|
|
34
|
+
build_data: The build data.
|
|
35
|
+
artifact_path: The path to the artifact.
|
|
36
|
+
"""
|
|
37
|
+
if self.marker().exists():
|
|
38
|
+
return
|
|
39
|
+
|
|
40
|
+
if not (pathlib.Path(self.root) / "scripts").exists():
|
|
41
|
+
return
|
|
42
|
+
|
|
43
|
+
for file in (pathlib.Path(self.root) / "reflex").rglob("**/*.pyi"):
|
|
44
|
+
file.unlink(missing_ok=True)
|
|
45
|
+
|
|
46
|
+
subprocess.run(
|
|
47
|
+
[sys.executable, "-m", "reflex.utils.pyi_generator"],
|
|
48
|
+
check=True,
|
|
49
|
+
)
|
|
50
|
+
self.marker().touch()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "reflex"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.6a0"
|
|
4
4
|
description = "Web apps in pure Python."
|
|
5
5
|
license = { text = "Apache-2.0" }
|
|
6
6
|
authors = [
|
|
@@ -21,34 +21,25 @@ keywords = ["web", "framework"]
|
|
|
21
21
|
requires-python = ">=3.10,<4.0"
|
|
22
22
|
dependencies = [
|
|
23
23
|
"alembic >=1.11.1,<2.0",
|
|
24
|
-
"build >=1.0.3,<2.0",
|
|
25
|
-
"charset-normalizer >=3.3.2,<4.0",
|
|
26
24
|
"distro >=1.8.0,<2.0; platform_system == 'Linux'",
|
|
27
25
|
"fastapi >=0.96.0,!=0.111.0,!=0.111.1",
|
|
28
26
|
"granian[reload] >=2.2.0",
|
|
29
27
|
"gunicorn >=23.0.0,<24.0.0",
|
|
30
28
|
"httpx >=0.25.1,<1.0",
|
|
31
29
|
"jinja2 >=3.1.2,<4.0",
|
|
32
|
-
"lazy_loader >=0.4",
|
|
33
30
|
"packaging >=23.1,<25.0",
|
|
34
31
|
"platformdirs >=3.10.0,<5.0",
|
|
35
32
|
"psutil >=5.9.4,<8.0",
|
|
36
33
|
"pydantic >=1.10.21,<3.0",
|
|
37
|
-
"python-engineio !=4.6.0",
|
|
38
|
-
"python-multipart >=0.0.5,<0.1",
|
|
39
34
|
"python-socketio >=5.7.0,<6.0",
|
|
35
|
+
"python-multipart >=0.0.20,<1.0",
|
|
40
36
|
"redis >=4.3.5,<6.0",
|
|
41
37
|
"reflex-hosting-cli >=0.1.29",
|
|
42
38
|
"rich >=13.0.0,<14.0",
|
|
43
|
-
"setuptools >=75.0",
|
|
44
|
-
"starlette-admin >=0.11.0,<1.0",
|
|
45
39
|
"sqlmodel >=0.0.14,<0.1",
|
|
46
|
-
"tomlkit >=0.12.4,<1.0",
|
|
47
|
-
"twine >=4.0.0,<7.0",
|
|
48
40
|
"typer >=0.15.1,<1.0",
|
|
49
41
|
"typing_extensions >=4.6.0",
|
|
50
42
|
"uvicorn >=0.20.0",
|
|
51
|
-
"wheel >=0.42.0,<1.0",
|
|
52
43
|
"wrapt >=1.17.0,<2.0",
|
|
53
44
|
]
|
|
54
45
|
classifiers = [
|
|
@@ -77,6 +68,16 @@ build-backend = "hatchling.build"
|
|
|
77
68
|
[tool.hatch.build]
|
|
78
69
|
include = ["reflex"]
|
|
79
70
|
|
|
71
|
+
[tool.hatch.build.targets.sdist]
|
|
72
|
+
artifacts = ["*.pyi"]
|
|
73
|
+
|
|
74
|
+
[tool.hatch.build.targets.wheel]
|
|
75
|
+
artifacts = ["*.pyi"]
|
|
76
|
+
|
|
77
|
+
[tool.hatch.build.hooks.custom]
|
|
78
|
+
dependencies = ["plotly", "ruff"]
|
|
79
|
+
require-runtime-dependencies = true
|
|
80
|
+
|
|
80
81
|
[tool.pyright]
|
|
81
82
|
reportIncompatibleMethodOverride = false
|
|
82
83
|
|
|
@@ -141,6 +142,7 @@ dev = [
|
|
|
141
142
|
"asynctest >=0.13.0,<1.0",
|
|
142
143
|
"darglint >=1.8.1,<2.0",
|
|
143
144
|
"dill >=0.3.8",
|
|
145
|
+
"hatchling >=1.27.0",
|
|
144
146
|
"libsass >=0.23.0,<1.0",
|
|
145
147
|
"numpy >=2.2.3,<3.0",
|
|
146
148
|
"pandas >=2.1.1,<3.0",
|
|
@@ -149,7 +151,7 @@ dev = [
|
|
|
149
151
|
"plotly >=5.13.0,<7.0",
|
|
150
152
|
"pre-commit >=4.1.0,<5.0",
|
|
151
153
|
"psycopg[binary] >=3.2.6,<4.0",
|
|
152
|
-
"pyright >=1.1.
|
|
154
|
+
"pyright >=1.1.398,<1.2",
|
|
153
155
|
"pytest >=7.1.2,<9.0",
|
|
154
156
|
"pytest-asyncio >=0.24.0",
|
|
155
157
|
"pytest-benchmark >=4.0.0,<6.0",
|
|
@@ -162,5 +164,5 @@ dev = [
|
|
|
162
164
|
"python-dotenv >=1,<2",
|
|
163
165
|
"ruff >=0.11.2",
|
|
164
166
|
"selenium >=4.11.0,<5.0",
|
|
165
|
-
"
|
|
167
|
+
"starlette-admin >=0.11.0,<1.0",
|
|
166
168
|
]
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
"""The Reflex Admin Dashboard."""
|
|
2
2
|
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
3
5
|
from dataclasses import dataclass, field
|
|
6
|
+
from typing import TYPE_CHECKING
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
if TYPE_CHECKING:
|
|
9
|
+
from starlette_admin.base import BaseAdmin as Admin
|
|
6
10
|
|
|
7
11
|
|
|
8
12
|
@dataclass
|
|
@@ -11,4 +15,4 @@ class AdminDash:
|
|
|
11
15
|
|
|
12
16
|
models: list = field(default_factory=list)
|
|
13
17
|
view_overrides: dict = field(default_factory=dict)
|
|
14
|
-
admin: Admin | None = None
|
|
18
|
+
admin: "Admin | None" = None
|
|
@@ -40,8 +40,6 @@ from rich.progress import MofNCompleteColumn, Progress, TimeElapsedColumn
|
|
|
40
40
|
from socketio import ASGIApp, AsyncNamespace, AsyncServer
|
|
41
41
|
from starlette.datastructures import Headers
|
|
42
42
|
from starlette.datastructures import UploadFile as StarletteUploadFile
|
|
43
|
-
from starlette_admin.contrib.sqla.admin import Admin
|
|
44
|
-
from starlette_admin.contrib.sqla.view import ModelView
|
|
45
43
|
|
|
46
44
|
from reflex import constants
|
|
47
45
|
from reflex.admin import AdminDash
|
|
@@ -445,6 +443,8 @@ class App(MiddlewareMixin, LifespanMixin):
|
|
|
445
443
|
"rx.BaseState cannot be subclassed directly. Use rx.State instead"
|
|
446
444
|
)
|
|
447
445
|
|
|
446
|
+
get_config(reload=True)
|
|
447
|
+
|
|
448
448
|
if "breakpoints" in self.style:
|
|
449
449
|
set_breakpoints(self.style.pop("breakpoints"))
|
|
450
450
|
|
|
@@ -885,6 +885,12 @@ class App(MiddlewareMixin, LifespanMixin):
|
|
|
885
885
|
|
|
886
886
|
def _setup_admin_dash(self):
|
|
887
887
|
"""Setup the admin dash."""
|
|
888
|
+
try:
|
|
889
|
+
from starlette_admin.contrib.sqla.admin import Admin
|
|
890
|
+
from starlette_admin.contrib.sqla.view import ModelView
|
|
891
|
+
except ImportError:
|
|
892
|
+
return
|
|
893
|
+
|
|
888
894
|
# Get the admin dash.
|
|
889
895
|
if not self.api:
|
|
890
896
|
return
|
|
@@ -1427,7 +1433,7 @@ class App(MiddlewareMixin, LifespanMixin):
|
|
|
1427
1433
|
async with self.state_manager.modify_state(token) as state:
|
|
1428
1434
|
# No other event handler can modify the state while in this context.
|
|
1429
1435
|
yield state
|
|
1430
|
-
delta = state.
|
|
1436
|
+
delta = await state._get_resolved_delta()
|
|
1431
1437
|
if delta:
|
|
1432
1438
|
# When the state is modified reset dirty status and emit the delta to the frontend.
|
|
1433
1439
|
state._clean()
|
|
@@ -17,6 +17,7 @@ from reflex.components.component import (
|
|
|
17
17
|
StatefulComponent,
|
|
18
18
|
)
|
|
19
19
|
from reflex.config import environment, get_config
|
|
20
|
+
from reflex.constants.compiler import PageNames
|
|
20
21
|
from reflex.state import BaseState
|
|
21
22
|
from reflex.style import SYSTEM_COLOR_MODE
|
|
22
23
|
from reflex.utils import console, path_ops
|
|
@@ -174,6 +175,42 @@ def compile_root_stylesheet(stylesheets: list[str]) -> tuple[str, str]:
|
|
|
174
175
|
return output_path, code
|
|
175
176
|
|
|
176
177
|
|
|
178
|
+
def _validate_stylesheet(stylesheet_full_path: Path, assets_app_path: Path) -> None:
|
|
179
|
+
"""Validate the stylesheet.
|
|
180
|
+
|
|
181
|
+
Args:
|
|
182
|
+
stylesheet_full_path: The stylesheet to validate.
|
|
183
|
+
assets_app_path: The path to the assets directory.
|
|
184
|
+
|
|
185
|
+
Raises:
|
|
186
|
+
ValueError: If the stylesheet is not supported.
|
|
187
|
+
FileNotFoundError: If the stylesheet is not found.
|
|
188
|
+
"""
|
|
189
|
+
suffix = stylesheet_full_path.suffix[1:] if stylesheet_full_path.suffix else ""
|
|
190
|
+
if suffix not in constants.Reflex.STYLESHEETS_SUPPORTED:
|
|
191
|
+
raise ValueError(f"Stylesheet file {stylesheet_full_path} is not supported.")
|
|
192
|
+
if not stylesheet_full_path.absolute().is_relative_to(assets_app_path.absolute()):
|
|
193
|
+
raise FileNotFoundError(
|
|
194
|
+
f"Cannot include stylesheets from outside the assets directory: {stylesheet_full_path}"
|
|
195
|
+
)
|
|
196
|
+
if not stylesheet_full_path.name:
|
|
197
|
+
raise ValueError(
|
|
198
|
+
f"Stylesheet file name cannot be empty: {stylesheet_full_path}"
|
|
199
|
+
)
|
|
200
|
+
if (
|
|
201
|
+
len(
|
|
202
|
+
stylesheet_full_path.absolute()
|
|
203
|
+
.relative_to(assets_app_path.absolute())
|
|
204
|
+
.parts
|
|
205
|
+
)
|
|
206
|
+
== 1
|
|
207
|
+
and stylesheet_full_path.stem == PageNames.STYLESHEET_ROOT
|
|
208
|
+
):
|
|
209
|
+
raise ValueError(
|
|
210
|
+
f"Stylesheet file name cannot be '{PageNames.STYLESHEET_ROOT}': {stylesheet_full_path}"
|
|
211
|
+
)
|
|
212
|
+
|
|
213
|
+
|
|
177
214
|
def _compile_root_stylesheet(stylesheets: list[str]) -> str:
|
|
178
215
|
"""Compile the root stylesheet.
|
|
179
216
|
|
|
@@ -194,10 +231,14 @@ def _compile_root_stylesheet(stylesheets: list[str]) -> str:
|
|
|
194
231
|
)
|
|
195
232
|
|
|
196
233
|
failed_to_import_sass = False
|
|
234
|
+
assets_app_path = Path.cwd() / constants.Dirs.APP_ASSETS
|
|
235
|
+
|
|
236
|
+
stylesheets_files: list[Path] = []
|
|
237
|
+
stylesheets_urls = []
|
|
238
|
+
|
|
197
239
|
for stylesheet in stylesheets:
|
|
198
240
|
if not utils.is_valid_url(stylesheet):
|
|
199
241
|
# check if stylesheet provided exists.
|
|
200
|
-
assets_app_path = Path.cwd() / constants.Dirs.APP_ASSETS
|
|
201
242
|
stylesheet_full_path = assets_app_path / stylesheet.strip("/")
|
|
202
243
|
|
|
203
244
|
if not stylesheet_full_path.exists():
|
|
@@ -206,53 +247,51 @@ def _compile_root_stylesheet(stylesheets: list[str]) -> str:
|
|
|
206
247
|
)
|
|
207
248
|
|
|
208
249
|
if stylesheet_full_path.is_dir():
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
# | dir_b/
|
|
214
|
-
# so to avoid the infinite loop, we don't include symbolic links
|
|
215
|
-
stylesheets += [
|
|
216
|
-
str(p.relative_to(assets_app_path))
|
|
217
|
-
for p in stylesheet_full_path.iterdir()
|
|
218
|
-
if not (p.is_symlink() and p.is_dir())
|
|
219
|
-
]
|
|
220
|
-
continue
|
|
221
|
-
|
|
222
|
-
if (
|
|
223
|
-
stylesheet_full_path.suffix[1:].lower()
|
|
224
|
-
in constants.Reflex.STYLESHEETS_SUPPORTED
|
|
225
|
-
):
|
|
226
|
-
target = (
|
|
227
|
-
get_web_dir()
|
|
228
|
-
/ constants.Dirs.STYLES
|
|
229
|
-
/ (stylesheet.rsplit(".", 1)[0].strip("/") + ".css")
|
|
250
|
+
all_files = (
|
|
251
|
+
file
|
|
252
|
+
for ext in constants.Reflex.STYLESHEETS_SUPPORTED
|
|
253
|
+
for file in stylesheet_full_path.rglob("*." + ext)
|
|
230
254
|
)
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
target.write_text(
|
|
240
|
-
data=sass_compile(
|
|
241
|
-
filename=str(stylesheet_full_path),
|
|
242
|
-
output_style="compressed",
|
|
243
|
-
),
|
|
244
|
-
encoding="utf8",
|
|
245
|
-
)
|
|
246
|
-
except ImportError:
|
|
247
|
-
failed_to_import_sass = True
|
|
255
|
+
for file in all_files:
|
|
256
|
+
if file.is_dir():
|
|
257
|
+
continue
|
|
258
|
+
# Validate the stylesheet.
|
|
259
|
+
_validate_stylesheet(file, assets_app_path)
|
|
260
|
+
stylesheets_files.append(file)
|
|
261
|
+
|
|
248
262
|
else:
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
)
|
|
263
|
+
# Validate the stylesheet.
|
|
264
|
+
_validate_stylesheet(stylesheet_full_path, assets_app_path)
|
|
265
|
+
stylesheets_files.append(stylesheet_full_path)
|
|
266
|
+
else:
|
|
267
|
+
stylesheets_urls.append(stylesheet)
|
|
252
268
|
|
|
253
|
-
|
|
269
|
+
sheets.extend(dict.fromkeys(stylesheets_urls))
|
|
270
|
+
|
|
271
|
+
for stylesheet in stylesheets_files:
|
|
272
|
+
target_path = stylesheet.relative_to(assets_app_path).with_suffix(".css")
|
|
273
|
+
target = get_web_dir() / constants.Dirs.STYLES / target_path
|
|
274
|
+
|
|
275
|
+
target.parent.mkdir(parents=True, exist_ok=True)
|
|
276
|
+
|
|
277
|
+
if stylesheet.suffix == ".css":
|
|
278
|
+
path_ops.cp(src=stylesheet, dest=target, overwrite=True)
|
|
279
|
+
else:
|
|
280
|
+
try:
|
|
281
|
+
from sass import compile as sass_compile
|
|
282
|
+
|
|
283
|
+
target.write_text(
|
|
284
|
+
data=sass_compile(
|
|
285
|
+
filename=str(stylesheet),
|
|
286
|
+
output_style="compressed",
|
|
287
|
+
),
|
|
288
|
+
encoding="utf8",
|
|
289
|
+
)
|
|
290
|
+
except ImportError:
|
|
291
|
+
failed_to_import_sass = True
|
|
254
292
|
|
|
255
|
-
|
|
293
|
+
str_target_path = "./" + str(target_path)
|
|
294
|
+
sheets.append(str_target_path) if str_target_path not in sheets else None
|
|
256
295
|
|
|
257
296
|
if failed_to_import_sass:
|
|
258
297
|
console.error(
|
|
@@ -151,7 +151,7 @@ def cond(condition: Any, c1: Any, c2: Any = types.Unset(), /) -> Component | Var
|
|
|
151
151
|
c1_var = Var.create(c1)
|
|
152
152
|
c2_var = Var.create(c2)
|
|
153
153
|
|
|
154
|
-
if
|
|
154
|
+
if c1_var is cond_var or c1_var.equals(cond_var):
|
|
155
155
|
c1_var = c1_var.to(types.value_inside_optional(c1_var._var_type))
|
|
156
156
|
|
|
157
157
|
# Create the conditional var.
|
|
@@ -55,6 +55,9 @@ class Foreach(Component):
|
|
|
55
55
|
ForeachVarError: If the iterable is of type Any.
|
|
56
56
|
TypeError: If the render function is a ComponentState.
|
|
57
57
|
UntypedVarError: If the iterable is of type Any without a type annotation.
|
|
58
|
+
|
|
59
|
+
# noqa: DAR401 with_traceback
|
|
60
|
+
# noqa: DAR402 UntypedVarError
|
|
58
61
|
"""
|
|
59
62
|
from reflex.vars import ArrayVar, ObjectVar, StringVar
|
|
60
63
|
|
|
@@ -107,7 +110,7 @@ class Foreach(Component):
|
|
|
107
110
|
iterable,
|
|
108
111
|
"foreach",
|
|
109
112
|
"https://reflex.dev/docs/library/dynamic-rendering/foreach/",
|
|
110
|
-
) from
|
|
113
|
+
).with_traceback(e.__traceback__) from None
|
|
111
114
|
return component
|
|
112
115
|
|
|
113
116
|
def _render(self) -> IterTag:
|
|
@@ -604,12 +604,6 @@ class EnvironmentVariables:
|
|
|
604
604
|
# Whether to use Granian for the backend. By default, the backend uses Uvicorn if available.
|
|
605
605
|
REFLEX_USE_GRANIAN: EnvVar[bool] = env_var(False)
|
|
606
606
|
|
|
607
|
-
# The username to use for authentication on python package repository. Username and password must both be provided.
|
|
608
|
-
TWINE_USERNAME: EnvVar[str | None] = env_var(None)
|
|
609
|
-
|
|
610
|
-
# The password to use for authentication on python package repository. Username and password must both be provided.
|
|
611
|
-
TWINE_PASSWORD: EnvVar[str | None] = env_var(None)
|
|
612
|
-
|
|
613
607
|
# Whether to use the system installed bun. If set to false, bun will be bundled with the app.
|
|
614
608
|
REFLEX_USE_SYSTEM_BUN: EnvVar[bool] = env_var(False)
|
|
615
609
|
|
|
@@ -61,6 +61,18 @@ class Dirs(SimpleNamespace):
|
|
|
61
61
|
UPLOAD_IS_USED = "upload_is_used"
|
|
62
62
|
|
|
63
63
|
|
|
64
|
+
def _reflex_version() -> str:
|
|
65
|
+
"""Get the Reflex version.
|
|
66
|
+
|
|
67
|
+
Returns:
|
|
68
|
+
The Reflex version.
|
|
69
|
+
"""
|
|
70
|
+
try:
|
|
71
|
+
return metadata.version("reflex")
|
|
72
|
+
except metadata.PackageNotFoundError:
|
|
73
|
+
return "unknown"
|
|
74
|
+
|
|
75
|
+
|
|
64
76
|
class Reflex(SimpleNamespace):
|
|
65
77
|
"""Base constants concerning Reflex."""
|
|
66
78
|
|
|
@@ -68,7 +80,7 @@ class Reflex(SimpleNamespace):
|
|
|
68
80
|
# The name of the Reflex package.
|
|
69
81
|
MODULE_NAME = "reflex"
|
|
70
82
|
# The current version of Reflex.
|
|
71
|
-
VERSION =
|
|
83
|
+
VERSION = _reflex_version()
|
|
72
84
|
|
|
73
85
|
# The reflex json file.
|
|
74
86
|
JSON = "reflex.json"
|
|
@@ -85,7 +85,7 @@ class PageNames(SimpleNamespace):
|
|
|
85
85
|
# The name of the app root page.
|
|
86
86
|
APP_ROOT = "_app"
|
|
87
87
|
# The root stylesheet filename.
|
|
88
|
-
STYLESHEET_ROOT = "
|
|
88
|
+
STYLESHEET_ROOT = "__reflex_global_styles"
|
|
89
89
|
# The name of the document root page.
|
|
90
90
|
DOCUMENT_ROOT = "_document"
|
|
91
91
|
# The name of the theme page.
|
|
@@ -14,10 +14,10 @@ class Bun(SimpleNamespace):
|
|
|
14
14
|
"""Bun constants."""
|
|
15
15
|
|
|
16
16
|
# The Bun version.
|
|
17
|
-
VERSION = "1.2.
|
|
17
|
+
VERSION = "1.2.8"
|
|
18
18
|
|
|
19
19
|
# Min Bun Version
|
|
20
|
-
MIN_VERSION = "1.2.
|
|
20
|
+
MIN_VERSION = "1.2.8"
|
|
21
21
|
|
|
22
22
|
# URL to bun install script.
|
|
23
23
|
INSTALL_URL = "https://raw.githubusercontent.com/reflex-dev/reflex/main/scripts/bun_install.sh"
|
|
@@ -62,8 +62,6 @@ registry = "{registry}"
|
|
|
62
62
|
class Node(SimpleNamespace):
|
|
63
63
|
"""Node/ NPM constants."""
|
|
64
64
|
|
|
65
|
-
# The Node version.
|
|
66
|
-
VERSION = "22.11.0"
|
|
67
65
|
# The minimum required node version.
|
|
68
66
|
MIN_VERSION = "18.18.0"
|
|
69
67
|
|