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
* If `true`, the user cannot interact with the select.
2756
2756
*/
2757
2757
"disabled": boolean;
2758
+
/**
2759
+
* Text that is placed under the select and displayed when an error is detected.
2760
+
*/
2761
+
"errorText"?: string;
2758
2762
/**
2759
2763
* The toggle icon to show when the select is open. If defined, the icon rotation behavior in `md` mode will be disabled. If undefined, `toggleIcon` will be used for when the select is both open and closed.
* The fill for the item. If `"solid"` the item will have a background. If `"outline"` the item will be transparent with a border. Only available in `md` mode.
2764
2768
*/
2765
2769
"fill"?: 'outline'|'solid';
2770
+
/**
2771
+
* Text that is placed under the select and displayed when no error is detected.
2772
+
*/
2773
+
"helperText"?: string;
2766
2774
/**
2767
2775
* The interface the select should use: `action-sheet`, `popover`, `alert`, or `modal`.
* If `true`, the user cannot interact with the select.
7569
7577
*/
7570
7578
"disabled"?: boolean;
7579
+
/**
7580
+
* Text that is placed under the select and displayed when an error is detected.
7581
+
*/
7582
+
"errorText"?: string;
7571
7583
/**
7572
7584
* The toggle icon to show when the select is open. If defined, the icon rotation behavior in `md` mode will be disabled. If undefined, `toggleIcon` will be used for when the select is both open and closed.
* The fill for the item. If `"solid"` the item will have a background. If `"outline"` the item will be transparent with a border. Only available in `md` mode.
7577
7589
*/
7578
7590
"fill"?: 'outline'|'solid';
7591
+
/**
7592
+
* Text that is placed under the select and displayed when no error is detected.
7593
+
*/
7594
+
"helperText"?: string;
7579
7595
/**
7580
7596
* The interface the select should use: `action-sheet`, `popover`, `alert`, or `modal`.
0 commit comments