You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).
14
+
*/
15
+
autoComplete?: string;
16
+
17
+
/** The text label for the select. */
18
+
label?: PropsOf<'label'>;
19
+
20
+
/** HTML form input name. */
21
+
name?: string;
22
+
23
+
/** Sets the disabled state of the select and input. */
24
+
disabled?: boolean;
25
+
}
26
+
27
+
// export function useHiddenSelect(props: AriaHiddenSelectProps) {
0 commit comments