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.14.8
rev: v0.14.10
hooks:
- id: ruff-check
files: ^reflex_ui/
Expand Down
2 changes: 1 addition & 1 deletion reflex_ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"components": ["base"],
"components.icons.hugeicon": ["hi", "icon"],
"components.icons.simple_icon": ["simple_icon"],
"components.icons.others": ["spinner"],
"components.icons.others": ["spinner", "select_arrow", "arrow_svg"],
"utils.twmerge": ["cn"],
}

Expand Down
6 changes: 4 additions & 2 deletions reflex_ui/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ from .components.base.toggle import toggle
from .components.base.toggle_group import toggle_group
from .components.base.tooltip import tooltip
from .components.icons.hugeicon import hi, icon
from .components.icons.others import spinner
from .components.icons.others import arrow_svg, select_arrow, spinner
from .components.icons.simple_icon import simple_icon
from .utils.twmerge import cn

Expand Down Expand Up @@ -74,12 +74,13 @@ _SUBMOD_ATTRS = {
"components": ["base"],
"components.icons.hugeicon": ["hi", "icon"],
"components.icons.simple_icon": ["simple_icon"],
"components.icons.others": ["spinner"],
"components.icons.others": ["spinner", "select_arrow", "arrow_svg"],
"utils.twmerge": ["cn"],
}

__all__ = [
"accordion",
"arrow_svg",
"avatar",
"badge",
"base",
Expand All @@ -103,6 +104,7 @@ __all__ = [
"preview_card",
"scroll_area",
"select",
"select_arrow",
"simple_icon",
"skeleton",
"slider",
Expand Down
4 changes: 2 additions & 2 deletions reflex_ui/components/icons/hugeicon.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class HugeIcon(CoreComponent):
"""A HugeIcon component."""

library = "@hugeicons/react@1.1.1"
library = "@hugeicons/react@1.1.3"

tag = "HugeiconsIcon"

Expand Down Expand Up @@ -51,7 +51,7 @@ def create(cls, *children, **props) -> Component:
icon_name,
_var_data=VarData(
imports={
"@hugeicons/core-free-icons@1.2.1": ImportVar(tag=icon_name)
"@hugeicons/core-free-icons@3.1.0": ImportVar(tag=icon_name)
}
),
)
Expand Down
Loading