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 radio.
2268
2268
*/
2269
2269
"disabled": boolean;
2270
+
/**
2271
+
* Text that is placed under the radio and displayed when an error is detected.
2272
+
*/
2273
+
"errorText"?: string;
2274
+
/**
2275
+
* Text that is placed under the radio and displayed when no error is detected.
2276
+
*/
2277
+
"helperText"?: string;
2270
2278
/**
2271
2279
* How to pack the label and radio within a line. `"start"`: The label and radio will appear on the left in LTR and on the right in RTL. `"end"`: The label and radio will appear on the right in LTR and on the left in RTL. `"space-between"`: The label and radio will appear on opposite ends of the line with space between the two elements. Setting this property will change the radio `display` to `block`.
* If `true`, the user cannot interact with the radio.
7018
7026
*/
7019
7027
"disabled"?: boolean;
7028
+
/**
7029
+
* Text that is placed under the radio and displayed when an error is detected.
7030
+
*/
7031
+
"errorText"?: string;
7032
+
/**
7033
+
* Text that is placed under the radio and displayed when no error is detected.
7034
+
*/
7035
+
"helperText"?: string;
7020
7036
/**
7021
7037
* How to pack the label and radio within a line. `"start"`: The label and radio will appear on the left in LTR and on the right in RTL. `"end"`: The label and radio will appear on the right in LTR and on the left in RTL. `"space-between"`: The label and radio will appear on opposite ends of the line with space between the two elements. Setting this property will change the radio `display` to `block`.
0 commit comments