UNPKG

@progress/kendo-angular-sortable

Version:

A Sortable Component for Angular

27 lines (26 loc) 859 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'; /** * The arguments for the `DraggableDirective` events. * @hidden */ export class DraggableEvent extends PreventableEvent { /** * The target DraggableDirective instance. */ target; /** * The browser event emitted by the target's native element. */ originalEvent; //DragEvent | TouchEvent; /** * @hidden */ constructor(options) { super(); Object.assign(this, options); } }