UNPKG

@progress/kendo-angular-treelist

Version:

Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.

29 lines (28 loc) 812 B
/**----------------------------------------------------------------------------------------- * 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 TreeList `selectionChange` event. */ export class SelectionChangeEvent { /** * Specifies how the selection was changed. */ action; /** * Specifies which items were changed. */ items; /** * The TreeList component that triggered the event. */ sender; /** * @hidden */ constructor(action, items) { this.action = action; this.items = items; } }