@progress/kendo-react-treelist
Version:
React TreeList enables the display of self-referencing tabular data. KendoReact TreeList package
26 lines (25 loc) • 875 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { TableSelectableMode, TableSelectableSettings } from '@progress/kendo-react-data-tools';
/**
* Represents the available selection modes.
*/
export type TreeListSelectableMode = TableSelectableMode;
/**
* Represents the TreeList selectable settings.
*/
export interface TreeListSelectableSettings extends TableSelectableSettings {
/**
* The available values are:
* * `single`
* * `multiple`
*
* @default "multiple"
*/
mode?: TreeListSelectableMode;
}