
* Remove deprecations * remove prop conversion * fix tests * fix slight issue * fix darglint
19 lines
416 B
Python
19 lines
416 B
Python
"""The el package exports raw HTML elements."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from reflex.utils import lazy_loader
|
|
|
|
from . import elements
|
|
|
|
_SUBMODULES: set[str] = {"elements"}
|
|
_SUBMOD_ATTRS: dict[str, list[str]] = {
|
|
f"elements.{k}": v for k, v in elements._MAPPING.items()
|
|
}
|
|
|
|
__getattr__, __dir__, __all__ = lazy_loader.attach(
|
|
__name__,
|
|
submodules=_SUBMODULES,
|
|
submod_attrs=_SUBMOD_ATTRS,
|
|
)
|