Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include resize and radius props to the text area component #3383

Merged
merged 3 commits into from
Jun 1, 2024
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
9 changes: 9 additions & 0 deletions reflex/components/radix/themes/components/text_area.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@

from ..base import (
LiteralAccentColor,
LiteralRadius,
RadixThemesComponent,
)

LiteralTextAreaSize = Literal["1", "2", "3"]

LiteralTextAreaResize = Literal["none", "vertical", "horizontal", "both"]


class TextArea(RadixThemesComponent, el.Textarea):
"""The input part of a TextArea, may be used by itself."""
Expand All @@ -26,9 +29,15 @@ class TextArea(RadixThemesComponent, el.Textarea):
# The variant of the text area
variant: Var[Literal["classic", "surface", "soft"]]

# The resize behavior of the text area: "none" | "vertical" | "horizontal" | "both"
resize: Var[LiteralTextAreaResize]

# The color of the text area
color_scheme: Var[LiteralAccentColor]

# The radius of the text area: "none" | "small" | "medium" | "large" | "full"
radius: Var[LiteralRadius]

# Whether the form control should have autocomplete enabled
auto_complete: Var[bool]

Expand Down
17 changes: 16 additions & 1 deletion reflex/components/radix/themes/components/text_area.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ from reflex.components.component import Component
from reflex.components.core.debounce import DebounceInput
from reflex.constants import EventTriggers
from reflex.vars import Var
from ..base import LiteralAccentColor, RadixThemesComponent
from ..base import LiteralAccentColor, LiteralRadius, RadixThemesComponent

LiteralTextAreaSize = Literal["1", "2", "3"]
LiteralTextAreaResize = Literal["none", "vertical", "horizontal", "both"]

class TextArea(RadixThemesComponent, el.Textarea):
@overload
Expand All @@ -32,6 +33,12 @@ class TextArea(RadixThemesComponent, el.Textarea):
Literal["classic", "surface", "soft"],
]
] = None,
resize: Optional[
Union[
Var[Literal["none", "vertical", "horizontal", "both"]],
Literal["none", "vertical", "horizontal", "both"],
]
] = None,
color_scheme: Optional[
Union[
Var[
Expand Down Expand Up @@ -94,6 +101,12 @@ class TextArea(RadixThemesComponent, el.Textarea):
],
]
] = None,
radius: Optional[
Union[
Var[Literal["none", "small", "medium", "large", "full"]],
Literal["none", "small", "medium", "large", "full"],
]
] = None,
auto_complete: Optional[Union[Var[bool], bool]] = None,
auto_focus: Optional[Union[Var[bool], bool]] = None,
dirname: Optional[Union[Var[str], str]] = None,
Expand Down Expand Up @@ -219,7 +232,9 @@ class TextArea(RadixThemesComponent, el.Textarea):
*children: The children of the component.
size: The size of the text area: "1" | "2" | "3"
variant: The variant of the text area
resize: The resize behavior of the text area: "none" | "vertical" | "horizontal" | "both"
color_scheme: The color of the text area
radius: The radius of the text area: "none" | "small" | "medium" | "large" | "full"
auto_complete: Whether the form control should have autocomplete enabled
auto_focus: Automatically focuses the textarea when the page loads
dirname: Name part of the textarea to submit in 'dir' and 'name' pair when form is submitted
Expand Down
Loading