Mouse wheel directive is not called in Angular 13

I am trying to use mouse wheel directive. This is my first directive, and I can’t make it work. This is the directive: import { Directive, ElementRef, HostListener } from "@angular/core"; @Directive({ selector: ‘[wheel]’ }) export class MouseWheelDirective { constructor(private el: ElementRef) { console.log("directive was created"); } @HostListener(‘mousewheel’, [‘$event’]) onMousewheel(event) { console.log("event"); if (event.wheelDelta >… Read More Mouse wheel directive is not called in Angular 13