File tree Expand file tree Collapse file tree 5 files changed +6
-7
lines changed
Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 99class 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
1515class Textarea (TextareaComponent , CoreComponent ):
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ from reflex.vars.base import Var
1414from reflex_ui .components .component import CoreComponent
1515
1616class 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
1919class Textarea (TextareaComponent , CoreComponent ):
2020 @classmethod
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ class HugeIcon(CoreComponent):
7171
7272 Returns:
7373 The created component.
74-
7574 """
7675
7776hi = icon = HugeIcon .create
You can’t perform that action at this time.
0 commit comments