From 16f9f743bbdc256d407b0555196dd4ac5d6a4212 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Wed, 10 Jan 2024 01:36:37 +0700 Subject: [PATCH] Import radix as rx.radix (#2374) --- reflex/__init__.py | 1 + reflex/__init__.pyi | 1 + 2 files changed, 2 insertions(+) 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