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
* The ID of the component to control when this component is activated. Pair with the `command` property to specify what action to perform on the target component. Learn more about the [`commandFor` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#commandfor).
1415
+
*
1416
+
* When both `commandFor` and `href` are set, `commandFor` takes precedence. The command runs and the link doesn't navigate.
* An array of `value` attributes for the currently selected options.
1538
1542
*
1539
1543
* This is a convenience prop for setting the `selected` prop on child options.
1544
+
*
1545
+
* Form data captures the selected value strings only. Complex nested content inside choices is for display purposes and isn't included in form submissions.
* If you want to present an error when this field is empty, you can do
1806
1812
* so with the `error` property.
1807
1813
*
1814
+
* Adds semantic meaning for accessibility. Doesn't trigger automatic validation or display an error. Implement validation logic yourself and use the `error` prop to show results.
* If the chip is not `removable`, it can still be hidden by setting this property.
1971
1981
*
1982
+
* When using the `removable` variant, keep `hidden` synced with your app state. If `hidden` isn't updated after the chip is removed, the chip can become permanently hidden.
1983
+
*
1972
1984
* @default false
1973
1985
*/
1974
1986
hidden?: boolean;
@@ -2051,6 +2063,8 @@ export type ConsentPolicy = "sms-marketing";
* The type of phone number to collect. Specific styling may be applied to each type to provide extra guidance to users. No additional validation is performed based on the type.
2061
2075
*
2076
+
* Styling hint for the input keyboard. Doesn't validate the phone number format. Implement validation in your extension and use the `error` prop to show results.
0 commit comments