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
* A string of all className you want applied to the component. [docs]
5
+
*/
6
+
className?: string;
7
+
/**
8
+
* Toggle the disabled state for the component. [docs]
9
+
*/
10
+
disabled?: boolean;
11
+
/**
12
+
* Set component validation state to invalid. [docs]
13
+
*/
14
+
invalid?: boolean;
15
+
/**
16
+
* Method called immediately after the `value` prop changes. [docs]
17
+
*/
18
+
onChange?: ChangeEventHandler<HTMLInputElement>;
19
+
/**
20
+
* Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use only along side `readonly` [docs]
21
+
*/
22
+
plainText?: boolean;
23
+
/**
24
+
* Toggle the readonly state for the component. [docs]
* Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use only along side `readonly` [docs]
21
+
*/
22
+
plainText?: boolean;
23
+
/**
24
+
* Toggle the readonly state for the component. [docs]
0 commit comments