@progress/kendo-vue-treelist 8.0.3-develop.2 → 8.0.3-develop.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/ScrollMode.d.ts +8 -0
  2. package/TreeList.d.ts +194 -0
  3. package/TreeListNav.d.ts +37 -0
  4. package/cells/EditCells/TreeListBooleanEditor.d.ts +78 -0
  5. package/cells/EditCells/TreeListDateEditor.d.ts +76 -0
  6. package/cells/EditCells/TreeListNumericEditor.d.ts +75 -0
  7. package/cells/EditCells/TreeListTextEditor.d.ts +78 -0
  8. package/cells/FilterCells/TreeListBooleanFilter.d.ts +23 -0
  9. package/cells/FilterCells/TreeListDateFilter.d.ts +23 -0
  10. package/cells/FilterCells/TreeListNumericFilter.d.ts +23 -0
  11. package/cells/FilterCells/TreeListTextFilter.d.ts +26 -0
  12. package/cells/FilterCells/utils.d.ts +45 -0
  13. package/cells/FilterCells/utils.mjs +18 -18
  14. package/cells/TreeListCell.d.ts +80 -0
  15. package/cells/TreeListSelectionCell.d.ts +84 -0
  16. package/constants/main.d.ts +13 -0
  17. package/constants/main.mjs +2 -2
  18. package/dist/cdn/js/kendo-vue-treelist.js +1 -1
  19. package/index.d.mts +27 -1786
  20. package/index.d.ts +27 -1786
  21. package/interfaces/DataItemWrapper.d.ts +17 -0
  22. package/interfaces/TreeListCellProps.d.ts +62 -0
  23. package/interfaces/TreeListColumnProps.d.ts +40 -0
  24. package/interfaces/TreeListFilterCellProps.d.ts +13 -0
  25. package/interfaces/TreeListFilterOperator.d.ts +15 -0
  26. package/interfaces/TreeListHeaderCellProps.d.ts +13 -0
  27. package/interfaces/TreeListProps.d.ts +329 -0
  28. package/interfaces/TreeListRowProps.d.ts +99 -0
  29. package/interfaces/TreeListSelectableSettings.d.ts +25 -0
  30. package/interfaces/TreeListSortSettings.d.ts +16 -0
  31. package/interfaces/TreeListToolbarProps.d.ts +12 -0
  32. package/interfaces/events.d.ts +293 -0
  33. package/messages/main.d.ts +246 -0
  34. package/package-metadata.d.ts +12 -0
  35. package/package-metadata.js +1 -1
  36. package/package-metadata.mjs +2 -2
  37. package/package.json +15 -9
  38. package/rows/RowDragClue.d.ts +28 -0
  39. package/rows/TreeListDraggableRow.d.ts +26 -0
  40. package/rows/TreeListRow.d.ts +78 -0
  41. package/utils/data-operations.d.ts +122 -0
  42. package/utils/data-operations.mjs +6 -6
  43. package/utils/main.d.ts +24 -0
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ export interface DataItemWrapper {
12
+ dataItem: any;
13
+ level: number[];
14
+ height: number;
15
+ offsetTop: number;
16
+ levelCount: number;
17
+ }
@@ -0,0 +1,62 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { CellProps } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * Represents the props of the TreeListCell component.
11
+ */
12
+ export interface TreeListCellProps extends CellProps {
13
+ /**
14
+ * An array of indexes of each parent and current item in the data tree.
15
+ */
16
+ level: number[];
17
+ /**
18
+ * Indicates that the data item of the cell has subitems.
19
+ */
20
+ hasChildren?: boolean;
21
+ /**
22
+ * If set to `true`, the cell will render indentation based on its level prop and
23
+ * the icons that are used for expanding and collapsing child rows.
24
+ */
25
+ expandable?: boolean;
26
+ /**
27
+ * The index of the column. Useful for applying `aria-colindex` accessibility attribute.
28
+ */
29
+ colIndex: number;
30
+ /**
31
+ * The event that is fired when the expand or collapse icon of the cell is clicked.
32
+ */
33
+ onExpandchange?: (event: any, dataItem: any, level: number[]) => void;
34
+ /**
35
+ * A function for overriding the default rendering of the cell.
36
+ */
37
+ render?: any;
38
+ /**
39
+ * If set to true will focus the first input inside the cell.
40
+ */
41
+ focusInputOnMount?: boolean;
42
+ /**
43
+ * The dataItem of the cell.
44
+ */
45
+ dataItem: any;
46
+ /**
47
+ * The field of the cell.
48
+ */
49
+ field: string;
50
+ /**
51
+ * The format of the cell.
52
+ */
53
+ format?: string;
54
+ /**
55
+ * The column span of the cell.
56
+ */
57
+ colSpan?: number;
58
+ /**
59
+ * The expanded state of the cell.
60
+ */
61
+ expanded?: boolean;
62
+ }
@@ -0,0 +1,40 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { TreeColumnBaseProps } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * The props of the columns of the TreeList component.
11
+ */
12
+ export interface TreeListColumnProps extends TreeColumnBaseProps {
13
+ /**
14
+ * Defines the component that will be rendered as a cell. If not set, a `TreeListCell` will be rendered by default.
15
+ */
16
+ cell?: any;
17
+ /**
18
+ * Defines the component that will be rendered as an edit cell.
19
+ */
20
+ editCell?: any;
21
+ /**
22
+ * Defines the component that will be rendered as a header cell.
23
+ * If not set, a `TreeListHeaderCell` will be rendered by default.
24
+ */
25
+ headerCell?: any;
26
+ /**
27
+ * Defines the component that will be rendered as a filter cell.
28
+ */
29
+ filterCell?: any;
30
+ /**
31
+ * A collection of child columns.
32
+ */
33
+ children?: TreeListColumnProps[];
34
+ /**
35
+ * Defines if the column is locked (frozen or sticky).
36
+ * Locked columns are the columns that are visible at all times while the user scrolls the component horizontally.
37
+ * Defaults to `false`.
38
+ */
39
+ locked?: boolean;
40
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { FilterCellProps } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface TreeListFilterCellProps extends FilterCellProps {
13
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { FilterOperator } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * The filter operator for the TreeList filters.
11
+ */
12
+ export interface TreeListFilterOperator extends FilterOperator {
13
+ operator: string;
14
+ text: string;
15
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { HeaderCellProps } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * The props of the TreeListHeaderCell component.
11
+ */
12
+ export interface TreeListHeaderCellProps extends HeaderCellProps {
13
+ }
@@ -0,0 +1,329 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { SortDescriptor, FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query';
9
+ import { TreeListSortChangeEvent, TreeListFilterChangeEvent, TreeListExpandChangeEvent, TreeListSelectionChangeEvent, TreeListHeaderSelectionChangeEvent, TreeListItemChangeEvent, TreeListDataStateChangeEvent, TreeListRowClickEvent, TreeListColumnResizeEvent, TreeListColumnReorderEvent, TreeListPageChangeEvent, TreeListRowDragEvent, TreeListColumnMenuFilterChangeEvent, TreeListRowDoubleClickEvent, TreeListRowContextMenuEvent, TreeListKeyDownEvent, TreeListRowEvent } from './events';
10
+ import { ScrollMode } from '../ScrollMode';
11
+ import { SortSettings as TreeListSortSettings, FilterOperators } from '@progress/kendo-vue-data-tools';
12
+ import { TreeListColumnProps } from './TreeListColumnProps';
13
+ import { TreeListSelectableSettings } from './TreeListSelectableSettings';
14
+ /**
15
+ * Represents the props of the [Kendo UI for Vue TreeList component]({% slug get_started_treelist %}).
16
+ */
17
+ export interface TreeListProps {
18
+ /**
19
+ * Sets the TreeList row key prop to the value of this field in the dataItem.
20
+ * If not set, the dataItem index will be used for the row key, which might lead to row not updated during paging or scrolling.
21
+ */
22
+ dataItemKey?: string;
23
+ /**
24
+ * A collection of `TreeListColumnProps` for creating columns.
25
+ */
26
+ columns?: TreeListColumnProps[];
27
+ /**
28
+ * Enables the virtualization of the columns
29
+ * ([see example]({% slug virtual_columns_treelist %})).
30
+ * If enabled, the columns outside the viewport are not rendered.
31
+ */
32
+ columnVirtualization?: boolean;
33
+ /**
34
+ * Sets the data of the TreeList.
35
+ */
36
+ dataItems?: any[];
37
+ /**
38
+ * Enables sorting ([see example]({% slug sorting_treelist %})).
39
+ */
40
+ sortable?: TreeListSortSettings;
41
+ /**
42
+ * Fires when the sorting of the TreeList is changed ([see example]({% slug sorting_treelist %})).
43
+ * You have to handle the event yourself and sort the data.
44
+ */
45
+ onSortchange?: (event: TreeListSortChangeEvent) => void;
46
+ /**
47
+ * The descriptors by which the data is sorted. Applies the sorting styles and buttons to the affected columns.
48
+ */
49
+ sort?: SortDescriptor[];
50
+ /**
51
+ * If set, it will be rendered instead of the default `FilterRow` TreeList component.
52
+ */
53
+ filterRow?: any;
54
+ /**
55
+ * If set and when the data item is in edit mode, the `editRow` value will be rendered.
56
+ */
57
+ /**
58
+ * @hidden
59
+ */
60
+ editRow?: any;
61
+ /**
62
+ * Configures the `size` of the TreeList.
63
+ *
64
+ * The available options are:
65
+ * - small
66
+ * - medium
67
+ *
68
+ * @default `undefined`
69
+ */
70
+ size?: 'small' | 'medium' | string;
71
+ /**
72
+ * Represents the TreeList toolbar component.
73
+ */
74
+ toolbar?: any;
75
+ /**
76
+ * Represents the component that will be rendered when the `data` property of the TreeList is empty or undefined.
77
+ */
78
+ noRecords?: any;
79
+ /**
80
+ * The descriptors by which the data is filtered ([more information and examples]({% slug filtering_treelist %})).
81
+ * This affects the values and buttons in the `FilterRow` of the TreeList.
82
+ */
83
+ filter?: FilterDescriptor[];
84
+ /**
85
+ * Enables the filtering of the columns with their `field` option set
86
+ */
87
+ filterable?: boolean;
88
+ /**
89
+ * The filter operators for the filters.
90
+ */
91
+ filterOperators?: FilterOperators;
92
+ /**
93
+ * Fires when the TreeList filter is modified through the UI
94
+ * ([more information and examples]({% slug filtering_treelist %})).
95
+ * You have to handle the event yourself and filter the data.
96
+ */
97
+ onFilterchange?: (event: TreeListFilterChangeEvent) => void;
98
+ /**
99
+ * Fires when the user clicks on the expand or collapse icon of a row.
100
+ */
101
+ onExpandchange?: (event: TreeListExpandChangeEvent) => void;
102
+ /**
103
+ * Specifies the name of the field which will provide a Boolean representation of the expanded state of the item.
104
+ */
105
+ expandField?: string;
106
+ /**
107
+ * Specifies the name of the field which will provide an array representation of the item subitems.
108
+ */
109
+ subItemsField?: string;
110
+ /**
111
+ * The TreeList selectable settings.
112
+ */
113
+ selectable?: TreeListSelectableSettings;
114
+ /**
115
+ * Specifies the name of the field which will provide a Boolean representation of the selected state of the item
116
+ * ([see example]({% slug selection_treelist %})).
117
+ */
118
+ selectedField?: string;
119
+ /**
120
+ * Fires when the user tries to select or deselect a row or cell.
121
+ * ([more information and example]({% slug selection_treelist %})).
122
+ */
123
+ onSelectionchange?: (event: TreeListSelectionChangeEvent) => void;
124
+ /**
125
+ * Fires when the user press keyboard key.
126
+ */
127
+ onKeyDown?: (event: TreeListKeyDownEvent) => void;
128
+ /**
129
+ * Fires when the user clicks the checkbox of a column header whose `field` matches `selectedField`
130
+ * ([more information and example]({% slug selection_treelist %})).
131
+ */
132
+ /**
133
+ * @hidden
134
+ */
135
+ onHeaderselectionchange?: (event: TreeListHeaderSelectionChangeEvent) => void;
136
+ /**
137
+ * Fires when the user changes the values of the item.
138
+ * The event is not debounced and fires on every `onChange` event of the input in the current `EditCell`
139
+ * ([more information and examples]({% slug editing_inline_treelist %})).
140
+ */
141
+ onItemchange?: (event: TreeListItemChangeEvent) => void;
142
+ /**
143
+ * Fires when the user clicks a row.
144
+ */
145
+ onRowclick?: (event: TreeListRowClickEvent) => void;
146
+ /**
147
+ * Fires when the user double clicks a row.
148
+ */
149
+ /**
150
+ * @hidden
151
+ */
152
+ onRowdoubleclick?: (event: TreeListRowDoubleClickEvent) => void;
153
+ /**
154
+ * Fires when the user trigger the context menu of row.
155
+ */
156
+ onRowcontextmenu?: (event: TreeListRowContextMenuEvent) => void;
157
+ /**
158
+ * Fires when the mouse down is triggered on a row.
159
+ */
160
+ /**
161
+ * @hidden
162
+ */
163
+ onRowmousedown?: (event: TreeListRowEvent) => void;
164
+ /**
165
+ * Fires when the mouse up is triggered on a row.
166
+ */
167
+ /**
168
+ * @hidden
169
+ */
170
+ onRowmouseup?: (event: TreeListRowEvent) => void;
171
+ /**
172
+ * Fires when focus event is triggered on a row.
173
+ */
174
+ onRowfocus?: (event: TreeListRowEvent) => void;
175
+ /**
176
+ * Fires when blur event is triggered on a row.
177
+ */
178
+ onRowblur?: (event: TreeListRowEvent) => void;
179
+ /**
180
+ * Specifies the name of the field which will provide a Boolean representation of the edit state of the current item
181
+ * ([more information and examples]({% slug editing_inline_treelist %})).
182
+ */
183
+ editField?: string;
184
+ /**
185
+ * Defines the scroll mode of the TreeList.
186
+ *
187
+ * The available options are:
188
+ * - `none`—Renders no scrollbar.
189
+ * - `scrollable`—Represents the default scroll mode of the TreeList.
190
+ * Requires you to set the `overflow` and `height` (for vertical scrolling),
191
+ * or `width` (for horizontal scrolling) styles.
192
+ * - `virtual`—Enables the vertical virtual scrolling of the TreeList.
193
+ * Requires you to set the `overflow` and `height` styles and `rowHeight` prop of the TreeList.
194
+ */
195
+ scrollable?: ScrollMode | string;
196
+ /**
197
+ * If set to `true`, the user can resize columns by dragging the edges (resize handles) of their header cells.
198
+ */
199
+ /**
200
+ * @hidden
201
+ */
202
+ resizable?: boolean;
203
+ /**
204
+ * If set to `true`, the user can reorder columns by dragging their header cells.
205
+ */
206
+ reorderable?: boolean;
207
+ /**
208
+ * If set to `true`, the user can drag and drop rows.
209
+ */
210
+ /**
211
+ * @hidden
212
+ */
213
+ rowDraggable?: boolean;
214
+ /**
215
+ * Defines the row height and implements equal heights for all rows.
216
+ */
217
+ rowHeight?: number;
218
+ /**
219
+ * A props object that will be passed to the underlying HTML table.
220
+ */
221
+ tableProps?: any;
222
+ /**
223
+ * Configures the pager of the TreeList.
224
+ *
225
+ * The available options are:
226
+ * - `buttonCount: Number`—Sets the maximum numeric buttons count before the buttons are collapsed.
227
+ * - `info: Boolean`—Toggles the information about the current page and the total number of records.
228
+ * - `type: PagerType`—Accepts the `numeric` (buttons with numbers)
229
+ * and `input` (input for typing the page number) values.
230
+ * - `pageSizes: Boolean` or `Array<number>`&mdash;Shows a menu for selecting the page size.
231
+ * - `previousNext: Boolean`&mdash;Toggles the **Previous** and **Next** buttons.
232
+ */
233
+ pageable?: any;
234
+ /**
235
+ * A function that returns a custom class applied to the row.
236
+ *
237
+ * @param item - the item for the row.
238
+ */
239
+ rowClass?: Function;
240
+ /**
241
+ * @hidden
242
+ */
243
+ columnMenu?: any;
244
+ /**
245
+ * @hidden
246
+ */
247
+ columnMenuFilter?: CompositeFilterDescriptor[];
248
+ /**
249
+ * @hidden
250
+ */
251
+ onColumnmenufilterchange?: (event: TreeListColumnMenuFilterChangeEvent) => void;
252
+ /**
253
+ * The pager component that the TreeList will render.
254
+ */
255
+ pager?: any;
256
+ /**
257
+ * The number of records that will be skipped.
258
+ */
259
+ skip?: number;
260
+ /**
261
+ * The number of records that will be taken.
262
+ */
263
+ take?: number;
264
+ /**
265
+ * The styles of the wrapper component.
266
+ */
267
+ wrapperStyle?: Object;
268
+ /**
269
+ * The TreeList row component.
270
+ */
271
+ /**
272
+ * @hidden
273
+ */
274
+ row?: any;
275
+ /**
276
+ * If set to `true`, the rows of the TreeList can be reordered.
277
+ */
278
+ reordableRows?: boolean;
279
+ /**
280
+ * If set to `true`, the user can use dedicated shortcuts to interact with the TreeList.
281
+ * By default, navigation is disabled and the TreeList content is accessible in the normal tab sequence.
282
+ */
283
+ navigatable?: boolean;
284
+ /**
285
+ * Fires when the page of the TreeList is changed.
286
+ */
287
+ onPagechange?: (event: TreeListPageChangeEvent) => void;
288
+ /**
289
+ * Fires when the data state of the TreeList is changed.
290
+ */
291
+ onDatastatechange?: (event: TreeListDataStateChangeEvent) => void;
292
+ /**
293
+ * Fires when a column is resized.
294
+ */
295
+ /**
296
+ * @hidden
297
+ */
298
+ onColumnresize?: (event: TreeListColumnResizeEvent) => void;
299
+ /**
300
+ * Fires when the columns are reordered.
301
+ */
302
+ onColumnreorder?: (event: TreeListColumnReorderEvent) => void;
303
+ /**
304
+ * Fires when a row is dragged.
305
+ */
306
+ /**
307
+ * @hidden
308
+ */
309
+ onRowdrag?: (event: TreeListRowDragEvent) => void;
310
+ /**
311
+ * Fires when a row is dragged and dropped.
312
+ */
313
+ /**
314
+ * @hidden
315
+ */
316
+ onRowdrop?: (event: TreeListRowDragEvent) => void;
317
+ /**
318
+ * Fires when a row is about to be rendered. Useful for overriding the default rendering of the row.
319
+ */
320
+ rowRender?: any;
321
+ /**
322
+ * Fires when a cell is about to be rendered. Useful for overriding the default rendering of the cell.
323
+ */
324
+ cellRender?: any;
325
+ /**
326
+ * Fires when a header cell is about to be rendered. Useful for overriding the default rendering of the header cell.
327
+ */
328
+ headerCellRender?: any;
329
+ }
@@ -0,0 +1,99 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The props that the TreeList passes to the TreeListRow component when creating it.
10
+ * Accessible during the `rowRender` callback of the TreeList.
11
+ */
12
+ export interface TreeListRowProps {
13
+ /**
14
+ * The class that is applied to the row.
15
+ */
16
+ className: string;
17
+ /**
18
+ * The `data` object that represents the current row.
19
+ */
20
+ dataItem: any;
21
+ /**
22
+ * The event that is fired when the row is clicked.
23
+ */
24
+ onClick?: any;
25
+ /**
26
+ * The event that is fired when the row is double clicked.
27
+ */
28
+ onDoubleClick?: any;
29
+ /**
30
+ * The event that is fired when the row context menu is triggered.
31
+ */
32
+ onContextmenu?: any;
33
+ /**
34
+ * The name of the field which will provide a Boolean representation of the selected state of the item.
35
+ */
36
+ selectedField?: string;
37
+ /**
38
+ * Sets the height of the row.
39
+ */
40
+ rowHeight?: number;
41
+ /**
42
+ * A function for overriding the default rendering of the row.
43
+ */
44
+ render?: any;
45
+ /**
46
+ * An array of indexes of each parent and current item in the data tree.
47
+ */
48
+ level: number[];
49
+ /**
50
+ * Fires when a row is dragged.
51
+ */
52
+ onDrag?: (event: {
53
+ nativeEvent: any;
54
+ dragged: number[];
55
+ draggedOver: number[] | null;
56
+ draggedItem: any;
57
+ }) => void;
58
+ /**
59
+ * Fires when a row is dragged and dropped.
60
+ */
61
+ onDrop?: (event: {
62
+ nativeEvent: any;
63
+ dragged: number[];
64
+ draggedOver: number[] | null;
65
+ draggedItem: any;
66
+ }) => void;
67
+ /**
68
+ * The expanded state of the row. Useful for applying `aria-expanded` accessibility attribute.
69
+ */
70
+ expanded: boolean;
71
+ /**
72
+ * The index of the row. Useful for applying `aria-rowindex` accessibility attribute.
73
+ */
74
+ rowIndex: number;
75
+ /**
76
+ * @hidden
77
+ */
78
+ levels: number[][];
79
+ /**
80
+ * @hidden
81
+ */
82
+ isAltRow?: boolean;
83
+ /**
84
+ * The index to be applied to the `aria-rowindex` attribute.
85
+ */
86
+ ariaRowIndex?: number;
87
+ /**
88
+ * The count of items on current level, applied to the `aria-setsize` attribute.
89
+ */
90
+ ariaSetSize?: number;
91
+ /**
92
+ * The index of the item on current level, applied to the `aria-posinset` attribute.
93
+ */
94
+ ariaPosInSet?: number;
95
+ /**
96
+ * Indicates if the row is selected.
97
+ */
98
+ isSelected: boolean;
99
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { TableSelectableMode, TableSelectableSettings } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * Represents the available selection modes.
11
+ */
12
+ export type TreeListSelectableMode = TableSelectableMode;
13
+ /**
14
+ * Represents the TreeList selectable settings.
15
+ */
16
+ export interface TreeListSelectableSettings extends TableSelectableSettings {
17
+ /**
18
+ * The available values are:
19
+ * * `single`
20
+ * * `multiple`
21
+ *
22
+ * @default "multiple"
23
+ */
24
+ mode?: TreeListSelectableMode;
25
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ColumnSortSettings, SortSettings } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * The settings for sorting the TreeList columns.
11
+ */
12
+ export type TreeListColumnSortSettings = ColumnSortSettings;
13
+ /**
14
+ * The settings for sorting the TreeList data.
15
+ */
16
+ export type TreeListSortSettings = SortSettings;
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The props of the TreeListToolbar component.
10
+ */
11
+ export interface TreeListToolbarProps {
12
+ }