|
@@ -863,6 +863,7 @@ class HighLevelSelect(SelectRoot):
|
|
|
Literal["none", "small", "medium", "large", "full"],
|
|
|
]
|
|
|
] = None,
|
|
|
+ width: Optional[Union[Var[str], str]] = None,
|
|
|
position: Optional[
|
|
|
Union[
|
|
|
Var[Literal["item-aligned", "popper"]],
|
|
@@ -949,6 +950,7 @@ class HighLevelSelect(SelectRoot):
|
|
|
high_contrast: Whether to render the select with higher contrast color against background.
|
|
|
variant: The variant of the select.
|
|
|
radius: The radius of the select.
|
|
|
+ width: The width of the select.
|
|
|
position: The positioning mode to use. Default is "item-aligned".
|
|
|
size: The size of the select: "1" | "2" | "3"
|
|
|
default_value: The value of the select when initially rendered. Use when you do not need to control the state of the select.
|
|
@@ -1061,6 +1063,7 @@ class Select(ComponentNamespace):
|
|
|
Literal["none", "small", "medium", "large", "full"],
|
|
|
]
|
|
|
] = None,
|
|
|
+ width: Optional[Union[Var[str], str]] = None,
|
|
|
position: Optional[
|
|
|
Union[
|
|
|
Var[Literal["item-aligned", "popper"]],
|
|
@@ -1147,6 +1150,7 @@ class Select(ComponentNamespace):
|
|
|
high_contrast: Whether to render the select with higher contrast color against background.
|
|
|
variant: The variant of the select.
|
|
|
radius: The radius of the select.
|
|
|
+ width: The width of the select.
|
|
|
position: The positioning mode to use. Default is "item-aligned".
|
|
|
size: The size of the select: "1" | "2" | "3"
|
|
|
default_value: The value of the select when initially rendered. Use when you do not need to control the state of the select.
|