Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ConnectionModel and ConnectionBanner to lazy components #2167

Merged
merged 1 commit into from
Nov 14, 2023
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
2 changes: 2 additions & 0 deletions reflex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@
"ColorModeSwitch",
"Component",
"Cond",
"ConnectionBanner",
"ConnectionModal",
"Container",
"DataTable",
"DataEditor",
Expand Down
4 changes: 4 additions & 0 deletions reflex/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ from reflex.components import ColorModeIcon as ColorModeIcon
from reflex.components import ColorModeSwitch as ColorModeSwitch
from reflex.components import Component as Component
from reflex.components import Cond as Cond
from reflex.components import ConnectionBanner as ConnectionBanner
from reflex.components import ConnectionModal as ConnectionModal
from reflex.components import Container as Container
from reflex.components import DataTable as DataTable
from reflex.components import DataEditor as DataEditor
Expand Down Expand Up @@ -258,6 +260,8 @@ from reflex.components import color_mode_icon as color_mode_icon
from reflex.components import color_mode_switch as color_mode_switch
from reflex.components import component as component
from reflex.components import cond as cond
from reflex.components import connection_banner as connection_banner
from reflex.components import connection_modal as connection_modal
from reflex.components import container as container
from reflex.components import data_table as data_table
from reflex.components import data_editor as data_editor
Expand Down
Loading