Skip to content

Commit 4499d4d

Browse files
committed
Merge branch 'main' into lendemor/pointer_events
2 parents add0cb6 + 3636018 commit 4499d4d

3 files changed

Lines changed: 1 addition & 286 deletions

File tree

pyi_hashes.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,5 @@
121121
"reflex/components/recharts/polar.pyi": "ea2066a0cbd6e7cae236045575b19289",
122122
"reflex/components/recharts/recharts.pyi": "05e61639ed173cd9cd9574a0782d7f2f",
123123
"reflex/components/sonner/toast.pyi": "092f9f15c9d9b9559ba2e30c8e186566",
124-
"reflex/components/suneditor/editor.pyi": "bc792d59c55ab9041d5772eb920478e1",
125-
"reflex/experimental/layout.pyi": "d9600a3e75dbd09cf1eb4a2decfd571a"
124+
"reflex/components/suneditor/editor.pyi": "bc792d59c55ab9041d5772eb920478e1"
126125
}

reflex/experimental/__init__.py

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,11 @@
33
from types import SimpleNamespace
44

55
from reflex.components.datadisplay.shiki_code_block import code_block as code_block
6-
from reflex.components.props import PropsBase
7-
from reflex.components.radix.themes.components.progress import progress as progress
8-
from reflex.components.sonner.toast import toast as toast
96
from reflex.utils.console import warn
107
from reflex.utils.misc import run_in_thread
118

129
from . import hooks as hooks
1310
from .client_state import ClientStateVar as ClientStateVar
14-
from .layout import layout as layout
1511

1612

1713
class ExperimentalNamespace(SimpleNamespace):
@@ -32,30 +28,6 @@ def __getattribute__(self, item: str):
3228
)
3329
return super().__getattribute__(item)
3430

35-
@property
36-
def toast(self):
37-
"""Temporary property returning the toast namespace.
38-
39-
Remove this property when toast is fully promoted.
40-
41-
Returns:
42-
The toast namespace.
43-
"""
44-
self.register_component_warning("toast")
45-
return toast
46-
47-
@property
48-
def progress(self):
49-
"""Temporary property returning the progress component.
50-
51-
Remove this property when progress is fully promoted.
52-
53-
Returns:
54-
The progress component.
55-
"""
56-
self.register_component_warning("progress")
57-
return progress
58-
5931
@property
6032
def run_in_thread(self):
6133
"""Temporary property returning the run_in_thread helper function.
@@ -85,7 +57,5 @@ def register_component_warning(component_name: str):
8557
_x = ExperimentalNamespace(
8658
client_state=ClientStateVar.create,
8759
hooks=hooks,
88-
layout=layout,
89-
PropsBase=PropsBase,
9060
code_block=code_block,
9161
)

reflex/experimental/layout.py

Lines changed: 0 additions & 254 deletions
This file was deleted.

0 commit comments

Comments
 (0)