Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyi_hashes.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"reflex/components/base/strict_mode.pyi": "13d91eb9ac0a097c20f95cd3aaa2e703",
"reflex/components/core/__init__.pyi": "44bcee7bc4e27e2f4f4707b843acf291",
"reflex/components/core/auto_scroll.pyi": "6f8a2089b8810e08ff1609c616b9e1b1",
"reflex/components/core/banner.pyi": "be040b74446dbeee79849cdd4abfb472",
"reflex/components/core/banner.pyi": "1608a30ac68b749c13ba38d8088b3d1b",
"reflex/components/core/client_side_routing.pyi": "dd0bfc63117ef5f214e3c66dfc4ff1a2",
"reflex/components/core/clipboard.pyi": "8ef2e904caeceb9ce386f9938ab00269",
"reflex/components/core/debounce.pyi": "a6416b52e2857994861f6f90e2f29391",
"reflex/components/core/html.pyi": "d49588c2f04191cbbf1b4ac1c0bf855d",
"reflex/components/core/sticky.pyi": "6c7d85617f8e85f2aacc6aef90b553a5",
"reflex/components/core/upload.pyi": "794d5e242e8506b68934b1dc2bf02c64",
"reflex/components/core/upload.pyi": "aae4f9a95ad5b6f8c596508145839473",
"reflex/components/datadisplay/__init__.pyi": "cf087efa8b3960decc6b231cc986cfa9",
"reflex/components/datadisplay/code.pyi": "651fc3d417b998eb1c3d072328f505d0",
"reflex/components/datadisplay/dataeditor.pyi": "601c59f3ced6ab94fcf5527b90472a4f",
Expand Down
3 changes: 2 additions & 1 deletion reflex/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
from reflex.components.core.upload import Upload, get_upload_dir
from reflex.components.radix import themes
from reflex.components.sonner.toast import toast
from reflex.config import ExecutorType, environment, get_config
from reflex.config import get_config
from reflex.environment import ExecutorType, environment
from reflex.event import (
_EVENT_FIELDS,
Event,
Expand Down
2 changes: 1 addition & 1 deletion reflex/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from pathlib import Path

from reflex import constants
from reflex.config import EnvironmentVariables
from reflex.environment import EnvironmentVariables


def asset(
Expand Down
3 changes: 2 additions & 1 deletion reflex/compiler/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
CustomComponent,
StatefulComponent,
)
from reflex.config import environment, get_config
from reflex.config import get_config
from reflex.constants.compiler import PageNames
from reflex.environment import environment
from reflex.state import BaseState
from reflex.style import SYSTEM_COLOR_MODE
from reflex.utils import console, path_ops
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/base/bare.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from reflex.components.component import BaseComponent, Component, ComponentStyle
from reflex.components.tags import Tag
from reflex.components.tags.tagless import Tagless
from reflex.config import PerformanceMode, environment
from reflex.environment import PerformanceMode, environment
from reflex.utils import console
from reflex.utils.decorator import once
from reflex.utils.imports import ParsedImportDict
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/core/banner.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
from reflex.components.radix.themes.layout.flex import Flex
from reflex.components.radix.themes.typography.text import Text
from reflex.components.sonner.toast import ToastProps, toast_ref
from reflex.config import environment
from reflex.constants import Dirs, Hooks, Imports
from reflex.constants.compiler import CompileVars
from reflex.environment import environment
from reflex.utils.imports import ImportVar
from reflex.vars import VarData
from reflex.vars.base import LiteralVar, Var
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/core/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
from reflex.components.core.cond import cond
from reflex.components.el.elements.forms import Input
from reflex.components.radix.themes.layout.box import Box
from reflex.config import environment
from reflex.constants import Dirs
from reflex.constants.compiler import Hooks, Imports
from reflex.environment import environment
from reflex.event import (
CallableEventSpec,
EventChain,
Expand Down
Loading