import { Directive, ElementRef, HostListener, Self } from "@angular/core"; import { NgControl } from "@angular/forms"; @Directive({ selector: "input[appInputStripSpaces]", }) export class InputStripSpacesDirective { constructor( private el: ElementRef, @Self() private ngControl: NgControl, ) {} @HostListener("input") onInput() { const value = this.el.nativeElement.value.replace(/\s+/g, ""); this.ngControl.control.setValue(value); } }