@@ -109,6 +109,7 @@ class SelectRoot(SelectBaseComponent):
109109 read_only : Var [bool ] | bool | None = None ,
110110 required : Var [bool ] | bool | None = None ,
111111 input_ref : Any | Var [Any ] | None = None ,
112+ auto_complete : Var [str ] | str | None = None ,
112113 unstyled : Var [bool ] | bool | None = None ,
113114 style : Sequence [Mapping [str , Any ]]
114115 | Mapping [str , Any ]
@@ -385,6 +386,7 @@ class SelectPopup(SelectBaseComponent):
385386 def create (
386387 cls ,
387388 * children ,
389+ final_focus : Var [str ] | str | None = None ,
388390 render_ : Component | Var [Component ] | None = None ,
389391 unstyled : Var [bool ] | bool | None = None ,
390392 style : Sequence [Mapping [str , Any ]]
@@ -858,6 +860,7 @@ class HighLevelSelect(SelectRoot):
858860 read_only : Var [bool ] | bool | None = None ,
859861 required : Var [bool ] | bool | None = None ,
860862 input_ref : Any | Var [Any ] | None = None ,
863+ auto_complete : Var [str ] | str | None = None ,
861864 unstyled : Var [bool ] | bool | None = None ,
862865 style : Sequence [Mapping [str , Any ]]
863866 | Mapping [str , Any ]
@@ -915,6 +918,7 @@ class HighLevelSelect(SelectRoot):
915918 read_only: Whether the user should be unable to choose a different option from the select popup. Defaults to False.
916919 required: Whether the user must choose a value before submitting a form. Defaults to False.
917920 input_ref: A ref to access the hidden input element.
921+ auto_complete: Enables explicit browser autofill support. Useful for select components that are part of a form.
918922 unstyled: Whether the component should be unstyled
919923 style: The style of the component.
920924 key: A unique key for the component.
@@ -972,6 +976,7 @@ class Select(ComponentNamespace):
972976 read_only : Var [bool ] | bool | None = None ,
973977 required : Var [bool ] | bool | None = None ,
974978 input_ref : Any | Var [Any ] | None = None ,
979+ auto_complete : Var [str ] | str | None = None ,
975980 unstyled : Var [bool ] | bool | None = None ,
976981 style : Sequence [Mapping [str , Any ]]
977982 | Mapping [str , Any ]
@@ -1029,6 +1034,7 @@ class Select(ComponentNamespace):
10291034 read_only: Whether the user should be unable to choose a different option from the select popup. Defaults to False.
10301035 required: Whether the user must choose a value before submitting a form. Defaults to False.
10311036 input_ref: A ref to access the hidden input element.
1037+ auto_complete: Enables explicit browser autofill support. Useful for select components that are part of a form.
10321038 unstyled: Whether the component should be unstyled
10331039 style: The style of the component.
10341040 key: A unique key for the component.
0 commit comments