
* upgrade to latest ruff * try to fix dep review * try to fix dep review (2) * upgrade black * upgrade black (2) * update allowed dependencies * update allowed dependencies (2) * update allowed dependencies (3) * wait between interim and final in yield test * remove previous commit, increase delay between yield * forgot to save on the time.sleep(1) removal * fix integration (maybe?) * fix pyi? * what even is going on * what is realityi? * test another fix for app harness * try to wait even longer? * force uvloop to be optional * downpin fastapi < 0.111, remove changes to test
17 lines
443 B
Python
17 lines
443 B
Python
"""Radix primitive components (https://www.radix-ui.com/primitives)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from reflex import RADIX_PRIMITIVES_MAPPING
|
|
from reflex.utils import lazy_loader
|
|
|
|
_SUBMOD_ATTRS: dict[str, list[str]] = {
|
|
"".join(k.split("components.radix.primitives.")[-1]): v
|
|
for k, v in RADIX_PRIMITIVES_MAPPING.items()
|
|
}
|
|
|
|
__getattr__, __dir__, __all__ = lazy_loader.attach(
|
|
__name__,
|
|
submod_attrs=_SUBMOD_ATTRS,
|
|
)
|