skip to Main Content

Listen to keypress from service Angular – Javascript

I have service for dialog Here it is @Injectable() export class HomeDialogService { public constructor(private readonly dialogService: DialogService, private readonly userAgent: UserAgentService) {} @HostListener('document:keydown.escape', ['$event']) onKeydownHandler(event: KeyboardEvent) { console.log(event); } public open<TComponentParams, TResult>( content: Type<DialogBaseComponent<TComponentParams, TResult>>, params?: TComponentParams, dialogOptions?: HomeDialogSettings…

VIEW QUESTION

Running Scully in an Angular 15 Project? – Javascript

I'm upgrading a Angular 12 project to an Angular 15 project and attempting to run scully on it again. Before this worked fine. ng add @scullyio/init --skip-confirmation --defaults ng build npx scully -- Now it produces this error: ===================================================================================================== Config…

VIEW QUESTION
Back To Top
Search