Skip to content

Commit dc06112

Browse files
author
Kuldeep Saxena
authored
Update FormControl.md
1 parent 34af660 commit dc06112

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

docs/api/FormControl.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,16 @@ onBlur: () => void;
116116
Function needs to be called whenever a blur event triggers.
117117
##
118118
```ts
119+
onValueChanges: Observable<any>;
120+
```
121+
Emits an event every time the value of the control changes, in the UI by onChange event.
122+
##
123+
```ts
124+
onBlurChanges: Observable<any>;
125+
```
126+
Emits an event every time whenever a blur event triggers.
127+
##
128+
```ts
119129
handler: (inputType?: InputType, value?: string) => Handler;
120130
```
121131
Returns the props required to bind a control to a native input element.

0 commit comments

Comments
 (0)