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
Copy file name to clipboardExpand all lines: website/docs/13.x-next/docs/api/events/user-event.mdx
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -80,9 +80,9 @@ type(
80
80
element: ReactTestInstance,
81
81
text: string,
82
82
options?: {
83
-
skipPress?: boolean
84
-
submitEditing?:boolean
83
+
skipPress?: boolean;
85
84
skipBlur?:boolean;
85
+
submitEditing?:boolean;
86
86
}
87
87
```
88
88
@@ -104,8 +104,8 @@ This function will add text to the text already present in the text input (as sp
104
104
### Options {#type-options}
105
105
106
106
- `skipPress` - if true, `pressIn` and `pressOut` events will not be triggered.
107
+
- `skipBlur` - if true, `endEditing` and `blur` events will not be triggered when typing is complete.
107
108
- `submitEditing` - if true, `submitEditing` event will be triggered after typing the text.
108
-
- `skipBlur` - if true, `endEditing` and `blur` events will not be triggered when typing is complete. This is useful in scenarios where you want to prevent the TextInput from losing focus or avoid triggering certain actions associated with blur events.
0 commit comments