Skip to content

Commit a3790dd

Browse files
committed
update textarea
1 parent 1ae410e commit a3790dd

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

reflex_ui/components/base/context_menu.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,8 +590,8 @@ class ContextMenuRadioGroup(ContextMenuBaseComponent):
590590
on_scroll_end: EventType[()] | None = None,
591591
on_unmount: EventType[()] | None = None,
592592
on_value_change: EventType[()]
593-
| EventType[int | str]
594-
| EventType[int | str, dict]
593+
| EventType[str | int]
594+
| EventType[str | int, dict]
595595
| None = None,
596596
**props,
597597
) -> ContextMenuRadioGroup:

reflex_ui/components/base/menu.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,8 @@ class MenuRadioGroup(MenuBaseComponent):
610610
on_scroll_end: EventType[()] | None = None,
611611
on_unmount: EventType[()] | None = None,
612612
on_value_change: EventType[()]
613-
| EventType[int | str]
614-
| EventType[int | str, dict]
613+
| EventType[str | int]
614+
| EventType[str | int, dict]
615615
| None = None,
616616
**props,
617617
) -> MenuRadioGroup:

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.5 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 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.5 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 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.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ class HugeIcon(CoreComponent):
7171
7272
Returns:
7373
The created component.
74-
7574
"""
7675

7776
hi = icon = HugeIcon.create

0 commit comments

Comments
 (0)