Isaac Mann
Isaac Mann
Maybe that's better.
Yes, I've been meaning to add this for a while. I want to use the `@angular/cdk` [a11y](https://material.angular.io/cdk/a11y/api) utilities to handle this. If you want to tackle this (more difficult) PR,...
https://github.com/isaacplmann/ngx-contextmenu#triggering-the-context-menu-with-a-different-event
I'm not sure what you're asking for. You can browse through all the [code](https://github.com/isaacplmann/ngx-contextmenu).
You don't need to have asset card context menu extend ContextMenuComponent. Just have it include the `` element in the template like you already are. Then, you need to make...
Try the solution here: https://github.com/isaacplmann/ngx-contextmenu/issues/113
The context menu is attached in a `.cdk-overlay-pane` just above the `` tag, so it may not be inside the `debugElement`. Let me do a little research on how to...
The material team gets a reference to the `.cdk-overlay-container` (which contains all the `.cdk-overlay-pane`s) like this: ```ts expect(document.querySelector('.cdk-overlay-container')) ``` [Reference](https://github.com/angular/material2/blob/master/src/cdk/overlay/overlay-container.spec.ts) That should get you what you need.
Yes, that sounds like a nice PR. Go for it.
[visible] is not a property of . It’s an Input for the contextMenuItem directive. That directive needs to be available in whatever module you’re using. On May 20, 2019, 6:47...