FoTextInputComponent constructor

FoTextInputComponent(
  1. @Self() @Optional() NgControl? control,
  2. Element host,
  3. ChangeDetectorRef _changeDetectorRef
)

Implementation

FoTextInputComponent(
    @Self() @Optional() this.control, this.host, this._changeDetectorRef) {
  control?.valueAccessor = this;

  _windowResizeSub = html.window.onResize.listen(
      (_) => dropdownWidth = host.getBoundingClientRect().width.toInt() - 2);
}