Skip to content

Commit

Permalink
docs: add skipBlur option to doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpmohiburrahman committed Nov 14, 2024
1 parent 25005ae commit 9849971
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions website/docs/13.x-alpha/docs/api/events/user-event.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ type(
options?: {
skipPress?: boolean
submitEditing?: boolean
skipBlur?: boolean;
}
```
Expand All @@ -104,6 +105,7 @@ This function will add text to the text already present in the text input (as sp
- `skipPress` - if true, `pressIn` and `pressOut` events will not be triggered.
- `submitEditing` - if true, `submitEditing` event will be triggered after typing the text.
- `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.
### Sequence of events {#type-sequence}
Expand Down Expand Up @@ -134,6 +136,7 @@ The `pressIn` and `pressOut` events are sent by default but can be skipped by pa
- `blur`
The `submitEditing` event is skipped by default. It can sent by setting the `submitEditing: true` option.
The `endEditing` and `blur` events can also be skipped by passing the `skipBlur: true` option.
## `clear()`
Expand Down

0 comments on commit 9849971

Please sign in to comment.