Skip to content

Commit 678d23f

Browse files
committed
bump hugeicon version
1 parent e420fb2 commit 678d23f

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

demo/assets/css/globals.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@import "tailwindcss";
22

3+
@custom-variant dark (&:where(.dark, .dark *));
4+
35
:root {
46
/* Primary */
57
--primary-1: var(--violet-1);

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,6 @@ reportIncompatibleMethodOverride = false
7575
reportMissingImports = false
7676
reportInconsistentOverload = false
7777
exclude = ["**/alembic/*", "demo/*", "reflex_ui/**/*.pyi"]
78+
79+
[tool.uv]
80+
required-version = ">=0.7.0"

reflex_ui/components/base/textarea.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class ClassNames:
1010
"""Class names for textarea components."""
1111

12-
ROOT = "focus:shadow-[0px_0px_0px_2px_var(--primary-4)] focus:border-primary-7 focus:hover:border-primary-7 bg-secondary-1 shrink-0 border border-secondary-a4 hover:border-secondary-a6 transition-all disabled:border-secondary-4 disabled:bg-secondary-3 disabled:text-secondary-8 disabled:cursor-not-allowed cursor-text min-h-24 rounded-ui-md text-secondary-12 placeholder:text-secondary-9 text-sm disabled:placeholder:text-secondary-8 w-full outline-none max-h-[15rem] resize-none overflow-y-auto px-3 py-2 font-medium"
12+
ROOT = "focus:shadow-[0px_0px_0px_2px_var(--primary-4)] focus:border-primary-7 focus:hover:border-primary-7 bg-secondary-1 shrink-0 border border-secondary-a4 hover:border-secondary-a6 transition-all disabled:border-secondary-4 disabled:bg-secondary-3 disabled:text-secondary-8 disabled:cursor-not-allowed cursor-text min-h-24 rounded-ui-md text-secondary-12 placeholder:text-secondary-9 text-sm disabled:placeholder:text-secondary-8 w-full outline-none max-h-[15rem] resize-none overflow-y-auto px-3 py-2.5 font-medium"
1313

1414

1515
class Textarea(TextareaComponent, CoreComponent):

reflex_ui/components/base/textarea.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ from reflex.vars.base import Var
1414
from reflex_ui.components.component import CoreComponent
1515

1616
class ClassNames:
17-
ROOT = "focus:shadow-[0px_0px_0px_2px_var(--primary-4)] focus:border-primary-7 focus:hover:border-primary-7 bg-secondary-1 shrink-0 border border-secondary-a4 hover:border-secondary-a6 transition-all disabled:border-secondary-4 disabled:bg-secondary-3 disabled:text-secondary-8 disabled:cursor-not-allowed cursor-text min-h-24 rounded-ui-md text-secondary-12 placeholder:text-secondary-9 text-sm disabled:placeholder:text-secondary-8 w-full outline-none max-h-[15rem] resize-none overflow-y-auto px-3 py-2 font-medium"
17+
ROOT = "focus:shadow-[0px_0px_0px_2px_var(--primary-4)] focus:border-primary-7 focus:hover:border-primary-7 bg-secondary-1 shrink-0 border border-secondary-a4 hover:border-secondary-a6 transition-all disabled:border-secondary-4 disabled:bg-secondary-3 disabled:text-secondary-8 disabled:cursor-not-allowed cursor-text min-h-24 rounded-ui-md text-secondary-12 placeholder:text-secondary-9 text-sm disabled:placeholder:text-secondary-8 w-full outline-none max-h-[15rem] resize-none overflow-y-auto px-3 py-2.5 font-medium"
1818

1919
class Textarea(TextareaComponent, CoreComponent):
2020
@classmethod

reflex_ui/components/icons/hugeicon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def create(cls, *children, **props) -> Component:
5151
icon_name,
5252
_var_data=VarData(
5353
imports={
54-
"@hugeicons/[email protected].14": ImportVar(
54+
"@hugeicons/[email protected].16": ImportVar(
5555
tag=icon_name
5656
)
5757
}

0 commit comments

Comments
 (0)