Added custom_attrs to the list of trigger props (#2980)
This commit is contained in:
parent
bf0ebb8d09
commit
ae3dfc6412
@ -198,6 +198,15 @@ class HighLevelSelect(SelectRoot):
|
|||||||
Returns:
|
Returns:
|
||||||
The select component.
|
The select component.
|
||||||
"""
|
"""
|
||||||
|
trigger_prop_list = [
|
||||||
|
"placeholder",
|
||||||
|
"variant",
|
||||||
|
"radius",
|
||||||
|
"width",
|
||||||
|
"flex_shrink",
|
||||||
|
"custom_attrs",
|
||||||
|
]
|
||||||
|
|
||||||
content_props = {
|
content_props = {
|
||||||
prop: props.pop(prop)
|
prop: props.pop(prop)
|
||||||
for prop in ["high_contrast", "position"]
|
for prop in ["high_contrast", "position"]
|
||||||
@ -205,9 +214,7 @@ class HighLevelSelect(SelectRoot):
|
|||||||
}
|
}
|
||||||
|
|
||||||
trigger_props = {
|
trigger_props = {
|
||||||
prop: props.pop(prop)
|
prop: props.pop(prop) for prop in trigger_prop_list if prop in props
|
||||||
for prop in ["placeholder", "variant", "radius", "width", "flex_shrink"]
|
|
||||||
if prop in props
|
|
||||||
}
|
}
|
||||||
|
|
||||||
color_scheme = props.pop("color_scheme", None)
|
color_scheme = props.pop("color_scheme", None)
|
||||||
|
Loading…
Reference in New Issue
Block a user