I'm using reactive forms. Inside my directive I have access to the element thanks to `ElementRef.
However when I try to set the value of my textarea element using this.element.nativeElement.value = 'new text' the value doesn't get updated and the formGroupName doesn't trigger any changeValues.
How can I properly set the value of a textarea element that uses formGroupName?