|
@@ -864,6 +864,12 @@ class HighLevelSelect(SelectRoot):
|
|
]
|
|
]
|
|
] = None,
|
|
] = None,
|
|
width: Optional[Union[Var[str], str]] = None,
|
|
width: Optional[Union[Var[str], str]] = None,
|
|
|
|
+ position: Optional[
|
|
|
|
+ Union[
|
|
|
|
+ Var[Literal["item-aligned", "popper"]],
|
|
|
|
+ Literal["item-aligned", "popper"],
|
|
|
|
+ ]
|
|
|
|
+ ] = None,
|
|
size: Optional[
|
|
size: Optional[
|
|
Union[Var[Literal["1", "2", "3"]], Literal["1", "2", "3"]]
|
|
Union[Var[Literal["1", "2", "3"]], Literal["1", "2", "3"]]
|
|
] = None,
|
|
] = None,
|
|
@@ -945,6 +951,7 @@ class HighLevelSelect(SelectRoot):
|
|
variant: The variant of the select.
|
|
variant: The variant of the select.
|
|
radius: The radius of the select.
|
|
radius: The radius of the select.
|
|
width: The width 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"
|
|
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.
|
|
default_value: The value of the select when initially rendered. Use when you do not need to control the state of the select.
|
|
value: The controlled value of the select. Should be used in conjunction with on_change.
|
|
value: The controlled value of the select. Should be used in conjunction with on_change.
|
|
@@ -1057,6 +1064,12 @@ class Select(ComponentNamespace):
|
|
]
|
|
]
|
|
] = None,
|
|
] = None,
|
|
width: Optional[Union[Var[str], str]] = None,
|
|
width: Optional[Union[Var[str], str]] = None,
|
|
|
|
+ position: Optional[
|
|
|
|
+ Union[
|
|
|
|
+ Var[Literal["item-aligned", "popper"]],
|
|
|
|
+ Literal["item-aligned", "popper"],
|
|
|
|
+ ]
|
|
|
|
+ ] = None,
|
|
size: Optional[
|
|
size: Optional[
|
|
Union[Var[Literal["1", "2", "3"]], Literal["1", "2", "3"]]
|
|
Union[Var[Literal["1", "2", "3"]], Literal["1", "2", "3"]]
|
|
] = None,
|
|
] = None,
|
|
@@ -1138,6 +1151,7 @@ class Select(ComponentNamespace):
|
|
variant: The variant of the select.
|
|
variant: The variant of the select.
|
|
radius: The radius of the select.
|
|
radius: The radius of the select.
|
|
width: The width 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"
|
|
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.
|
|
default_value: The value of the select when initially rendered. Use when you do not need to control the state of the select.
|
|
value: The controlled value of the select. Should be used in conjunction with on_change.
|
|
value: The controlled value of the select. Should be used in conjunction with on_change.
|