diff --git a/reflex/__init__.py b/reflex/__init__.py index 8866cae70..a66cc968c 100644 --- a/reflex/__init__.py +++ b/reflex/__init__.py @@ -253,6 +253,7 @@ _MAPPING = { "reflex.compiler.utils": ["get_asset_path"], "reflex.components": _ALL_COMPONENTS + ["chakra", "next"], "reflex.components.component": ["memo"], + "reflex.components.radix": ["radix"], "reflex.components.recharts": ["recharts"], "reflex.components.moment.moment": ["MomentDelta"], "reflex.config": ["config", "Config", "DBConfig"], diff --git a/reflex/__init__.pyi b/reflex/__init__.pyi index 3681dcad8..d5eb40e88 100644 --- a/reflex/__init__.pyi +++ b/reflex/__init__.pyi @@ -447,6 +447,7 @@ from reflex.components import NoSSRComponent as NoSSRComponent from reflex.components import chakra as chakra from reflex.components import next as next from reflex.components.component import memo as memo +from reflex.components import radix as radix from reflex.components import recharts as recharts from reflex.components.moment.moment import MomentDelta as MomentDelta from reflex import config as config