Change the defalut direction of radio group (#4070). (#4146)

- The default direction of radio groups is column.
- Since most use cases are horizontal, change the default direction from
  column to row.
This commit is contained in:
Manoj Bhat 2024-10-14 21:17:38 +05:30 committed by GitHub
parent 1d268f8b13
commit d6797a1f1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,7 @@ class HighLevelRadioGroup(RadixThemesComponent):
items: Var[List[str]]
# The direction of the radio group.
direction: Var[LiteralFlexDirection] = LiteralVar.create("column")
direction: Var[LiteralFlexDirection] = LiteralVar.create("row")
# The gap between the items of the radio group.
spacing: Var[LiteralSpacing] = LiteralVar.create("2")
@ -137,7 +137,7 @@ class HighLevelRadioGroup(RadixThemesComponent):
Raises:
TypeError: If the type of items is invalid.
"""
direction = props.pop("direction", "column")
direction = props.pop("direction", "row")
spacing = props.pop("spacing", "2")
size = props.pop("size", "2")
variant = props.pop("variant", "classic")