@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
25 lines (24 loc) • 1.03 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { GanttComponent } from '../gantt.component';
/**
* Provides the arguments for the Gantt [`selectionChange`]({% slug api_gantt_ganttcomponent %}#toc-selectionchange) event.
*/
export interface SelectionChangeEvent {
/**
* Describes how the selection was changed.
* - `select`—Selects all specified `items` and removes all other persisted ones.
* - `remove`—Removes only the specified `items` and leaves all others unchanged.
*/
action: 'select' | 'remove';
/**
* Lists the items that change.
*/
items: any[];
/**
* The Gantt component that triggers the event.
*/
sender: GanttComponent;
}