We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34af660 commit dc06112Copy full SHA for dc06112
docs/api/FormControl.md
@@ -116,6 +116,16 @@ onBlur: () => void;
116
Function needs to be called whenever a blur event triggers.
117
##
118
```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
129
handler: (inputType?: InputType, value?: string) => Handler;
130
```
131
Returns the props required to bind a control to a native input element.
0 commit comments