Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ fail_fast: true

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.10
rev: v0.12.11
hooks:
- id: ruff-check
files: ^reflex_ui/
Expand Down
1 change: 1 addition & 0 deletions reflex_ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"components.base.card": ["card"],
"components.base.checkbox": ["checkbox"],
"components.base.collapsible": ["collapsible"],
"components.base.context_menu": ["context_menu"],
"components.base.dialog": ["dialog"],
"components.base.drawer": ["drawer"],
"components.base.gradient_profile": ["gradient_profile"],
Expand Down
3 changes: 3 additions & 0 deletions reflex_ui/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ from .components.base.button import button
from .components.base.card import card
from .components.base.checkbox import checkbox
from .components.base.collapsible import collapsible
from .components.base.context_menu import context_menu
from .components.base.dialog import dialog
from .components.base.drawer import drawer
from .components.base.gradient_profile import gradient_profile
Expand Down Expand Up @@ -44,6 +45,7 @@ _REFLEX_UI_MAPPING = {
"components.base.card": ["card"],
"components.base.checkbox": ["checkbox"],
"components.base.collapsible": ["collapsible"],
"components.base.context_menu": ["context_menu"],
"components.base.dialog": ["dialog"],
"components.base.drawer": ["drawer"],
"components.base.gradient_profile": ["gradient_profile"],
Expand Down Expand Up @@ -85,6 +87,7 @@ __all__ = [
"cn",
"collapsible",
"components",
"context_menu",
"dialog",
"drawer",
"gradient_profile",
Expand Down
2 changes: 2 additions & 0 deletions reflex_ui/components/base/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ from .button import button
from .card import card
from .checkbox import checkbox
from .collapsible import collapsible
from .context_menu import context_menu
from .dialog import dialog
from .drawer import drawer
from .gradient_profile import gradient_profile
Expand Down Expand Up @@ -46,6 +47,7 @@ __all__ = [
"card",
"checkbox",
"collapsible",
"context_menu",
"dialog",
"drawer",
"gradient_profile",
Expand Down
Loading