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
/** Value to overwrite the randomly generated data-ouia-component-id.*/
21
+
ouiaId?: number|string;
22
+
/** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */
/** Anything that can be rendered as FormGroup content. */
9
9
children?: React.ReactNode;
10
10
/** Additional classes added to the FormGroup. */
@@ -31,6 +31,10 @@ export interface FormGroupProps extends Omit<React.HTMLProps<HTMLDivElement>, 'l
31
31
* radio inputs, or pass in "group" when the form group contains multiple of any other input type.
32
32
*/
33
33
role?: string;
34
+
/** Value to overwrite the randomly generated data-ouia-component-id.*/
35
+
ouiaId?: number|string;
36
+
/** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */
0 commit comments