UNPKG

@progress/kendo-angular-menu

Version:

Kendo UI Angular Menu component

30 lines (29 loc) 930 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PreventableEvent } from '../preventable-event'; /** * Arguments for the `popupOpen` and `popupClose` events of the ContextMenu. */ export class ContextMenuPopupEvent extends PreventableEvent { /** * The target element for which the ContextMenu is opened. */ target; /** * The DOM event that started the action. */ originalEvent; /** * The ContextMenuComponent that triggered the event. */ sender; /** * @hidden */ constructor(args) { super(); Object.assign(this, args); } }