@progress/kendo-angular-utils
Version:
Kendo UI Angular utils component
32 lines (31 loc) • 1.05 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Arguments for the dragReady event of the DragTarget and DragTargetContainer.
*/
export class DragTargetDragReadyEvent {
/**
* The normalized drag event.
*/
dragEvent;
/**
* The DOM element that is being dragged.
*/
dragTarget;
/**
* The identifier passed to the `dragTargetId` input property of the `DragTarget` or `DragTargetContainer` directive.
*/
dragTargetId;
/**
* The index of the current drag target in the collection of drag targets (applicable for the `DragTargetContainer` directive).
*/
dragTargetIndex;
/**
* @hidden
*/
constructor(args) {
Object.assign(this, args);
}
}