@progress/kendo-angular-treelist 13.0.0-develop.1 → 13.0.0-develop.11

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 (185) hide show
  1. package/binding-directives/base-binding.directive.d.ts +5 -1
  2. package/binding-directives/data-bound-tree-component.d.ts +9 -0
  3. package/binding-directives/flat-binding.directive.d.ts +14 -3
  4. package/binding-directives/hierarchy-binding.directive.d.ts +12 -3
  5. package/column-menu/column-chooser.component.d.ts +10 -6
  6. package/column-menu/column-menu-chooser.component.d.ts +6 -10
  7. package/column-menu/column-menu-filter.component.d.ts +6 -10
  8. package/column-menu/column-menu-item-content-template.directive.d.ts +1 -1
  9. package/column-menu/column-menu-item.component.d.ts +8 -6
  10. package/column-menu/column-menu-lock.component.d.ts +5 -11
  11. package/column-menu/column-menu-settings.interface.d.ts +7 -10
  12. package/column-menu/column-menu-sort.component.d.ts +5 -11
  13. package/column-menu/column-menu.component.d.ts +1 -1
  14. package/column-menu/column-menu.service.d.ts +1 -1
  15. package/column-resizing/column-resize.interface.d.ts +1 -1
  16. package/columns/checkbox-column.component.d.ts +1 -1
  17. package/columns/column-base.d.ts +4 -0
  18. package/columns/column-group.component.d.ts +9 -6
  19. package/columns/column.component.d.ts +16 -66
  20. package/columns/command-column.component.d.ts +13 -15
  21. package/columns/rowreorder-column.component.d.ts +19 -0
  22. package/columns/span-column.component.d.ts +10 -81
  23. package/data/change-event-args.interface.d.ts +2 -2
  24. package/data/data.collection.d.ts +6 -0
  25. package/dragdrop/column-reorder-config.d.ts +1 -1
  26. package/editing/add-command.directive.d.ts +1 -1
  27. package/editing/cancel-command.directive.d.ts +1 -1
  28. package/editing/edit-command.directive.d.ts +1 -1
  29. package/editing/edit-event-args.interface.d.ts +1 -1
  30. package/editing/edit-template.directive.d.ts +11 -0
  31. package/editing/remove-command.directive.d.ts +1 -1
  32. package/editing/remove-event-args.interface.d.ts +1 -1
  33. package/editing/save-command.directive.d.ts +1 -1
  34. package/editing/save-event-args.interface.d.ts +1 -1
  35. package/esm2020/binding-directives/base-binding.directive.mjs +9 -3
  36. package/esm2020/binding-directives/flat-binding.directive.mjs +56 -6
  37. package/esm2020/binding-directives/hierarchy-binding.directive.mjs +46 -6
  38. package/esm2020/column-menu/column-chooser.component.mjs +10 -6
  39. package/esm2020/column-menu/column-menu-chooser.component.mjs +8 -12
  40. package/esm2020/column-menu/column-menu-filter.component.mjs +6 -10
  41. package/esm2020/column-menu/column-menu-item-content-template.directive.mjs +1 -1
  42. package/esm2020/column-menu/column-menu-item.component.mjs +9 -7
  43. package/esm2020/column-menu/column-menu-lock.component.mjs +5 -11
  44. package/esm2020/column-menu/column-menu-sort.component.mjs +5 -11
  45. package/esm2020/column-menu/column-menu.component.mjs +2 -2
  46. package/esm2020/column-menu/column-menu.service.mjs +1 -1
  47. package/esm2020/columns/checkbox-column.component.mjs +1 -1
  48. package/esm2020/columns/column-base.mjs +4 -0
  49. package/esm2020/columns/column-group.component.mjs +9 -6
  50. package/esm2020/columns/column.component.mjs +16 -39
  51. package/esm2020/columns/command-column.component.mjs +13 -15
  52. package/esm2020/columns/rowreorder-column.component.mjs +47 -0
  53. package/esm2020/columns/span-column.component.mjs +10 -81
  54. package/esm2020/data/data.collection.mjs +41 -28
  55. package/esm2020/editing/add-command.directive.mjs +2 -2
  56. package/esm2020/editing/base-command.directive.mjs +1 -1
  57. package/esm2020/editing/cancel-command.directive.mjs +2 -2
  58. package/esm2020/editing/edit-command.directive.mjs +2 -2
  59. package/esm2020/editing/edit-template.directive.mjs +11 -0
  60. package/esm2020/editing/remove-command.directive.mjs +2 -2
  61. package/esm2020/editing/save-command.directive.mjs +2 -2
  62. package/esm2020/excel/excel-command.directive.mjs +2 -2
  63. package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +11 -11
  64. package/esm2020/filtering/cell/date-filter-cell.component.mjs +11 -11
  65. package/esm2020/filtering/cell/filter-cell-operators.component.mjs +15 -0
  66. package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +13 -12
  67. package/esm2020/filtering/cell/string-filter-cell.component.mjs +14 -13
  68. package/esm2020/filtering/date-filter.component.mjs +6 -1
  69. package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +11 -12
  70. package/esm2020/filtering/menu/date-filter-menu.component.mjs +12 -12
  71. package/esm2020/filtering/menu/filter-menu.component.mjs +1 -1
  72. package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +12 -12
  73. package/esm2020/filtering/menu/string-filter-menu.component.mjs +15 -0
  74. package/esm2020/filtering/numeric-filter.component.mjs +4 -1
  75. package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -5
  76. package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -5
  77. package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -5
  78. package/esm2020/filtering/operators/before-filter-operator.component.mjs +3 -6
  79. package/esm2020/filtering/operators/contains-filter-operator.component.mjs +1 -4
  80. package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +1 -4
  81. package/esm2020/filtering/operators/eq-filter-operator.component.mjs +1 -4
  82. package/esm2020/filtering/operators/gt-filter-operator.component.mjs +1 -4
  83. package/esm2020/filtering/operators/gte-filter-operator.component.mjs +1 -4
  84. package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +1 -4
  85. package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -4
  86. package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +1 -4
  87. package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +1 -4
  88. package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -5
  89. package/esm2020/filtering/operators/lte-filter-operator.component.mjs +1 -4
  90. package/esm2020/filtering/operators/neq-filter-operator.component.mjs +1 -4
  91. package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +1 -4
  92. package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +1 -4
  93. package/esm2020/filtering/string-filter.component.mjs +2 -1
  94. package/esm2020/index.mjs +2 -0
  95. package/esm2020/localization/custom-messages.component.mjs +1 -1
  96. package/esm2020/localization/messages.mjs +3 -1
  97. package/esm2020/package-metadata.mjs +2 -2
  98. package/esm2020/pager/pager-element.component.mjs +17 -0
  99. package/esm2020/pager/pager-next-buttons.component.mjs +8 -11
  100. package/esm2020/pager/pager-numeric-buttons.component.mjs +1 -1
  101. package/esm2020/pager/pager-page-sizes.component.mjs +1 -1
  102. package/esm2020/pager/pager-prev-buttons.component.mjs +8 -11
  103. package/esm2020/pager/pager-template.directive.mjs +1 -1
  104. package/esm2020/pdf/pdf-command.directive.mjs +2 -2
  105. package/esm2020/pdf/pdf-margin.component.mjs +9 -0
  106. package/esm2020/rendering/cell-template.directive.mjs +1 -1
  107. package/esm2020/rendering/cell.component.mjs +68 -20
  108. package/esm2020/rendering/common/spacer.component.mjs +1 -1
  109. package/esm2020/rendering/constants.mjs +4 -0
  110. package/esm2020/rendering/header/header.component.mjs +1 -1
  111. package/esm2020/rendering/table-body.component.mjs +5 -3
  112. package/esm2020/row-reordering/flat-reorder.service.mjs +48 -0
  113. package/esm2020/row-reordering/hierarchical-reorder.service.mjs +55 -0
  114. package/esm2020/row-reordering/row-reorder.service.mjs +220 -0
  115. package/esm2020/row-reordering/types.mjs +5 -0
  116. package/esm2020/row-reordering/utils.mjs +129 -0
  117. package/esm2020/shared.module.mjs +8 -3
  118. package/esm2020/treelist.component.mjs +185 -311
  119. package/esm2020/treelist.module.mjs +71 -66
  120. package/excel/excel-command.directive.d.ts +1 -1
  121. package/excel/excel-export-data.interface.d.ts +1 -1
  122. package/excel/excel.component.d.ts +9 -8
  123. package/fesm2015/progress-kendo-angular-treelist.mjs +1215 -792
  124. package/fesm2020/progress-kendo-angular-treelist.mjs +1205 -791
  125. package/filtering/cell/boolean-filter-cell.component.d.ts +11 -11
  126. package/filtering/cell/date-filter-cell.component.d.ts +11 -11
  127. package/filtering/cell/filter-cell-operators.component.d.ts +15 -0
  128. package/filtering/cell/numeric-filter-cell.component.d.ts +13 -12
  129. package/filtering/cell/string-filter-cell.component.d.ts +12 -11
  130. package/filtering/date-filter.component.d.ts +7 -11
  131. package/filtering/menu/boolean-filter-menu.component.d.ts +11 -12
  132. package/filtering/menu/date-filter-menu.component.d.ts +12 -12
  133. package/filtering/menu/numeric-filter-menu.component.d.ts +12 -12
  134. package/filtering/menu/string-filter-menu.component.d.ts +15 -0
  135. package/filtering/numeric-filter.component.d.ts +4 -1
  136. package/filtering/operators/after-eq-filter-operator.component.d.ts +4 -0
  137. package/filtering/operators/after-filter-operator.component.d.ts +4 -0
  138. package/filtering/operators/before-eq-filter-operator.component.d.ts +4 -0
  139. package/filtering/operators/before-filter-operator.component.d.ts +4 -0
  140. package/filtering/operators/contains-filter-operator.component.d.ts +1 -4
  141. package/filtering/operators/ends-with-filter-operator.component.d.ts +1 -4
  142. package/filtering/operators/eq-filter-operator.component.d.ts +1 -4
  143. package/filtering/operators/gte-filter-operator.component.d.ts +1 -4
  144. package/filtering/operators/is-empty-filter-operator.component.d.ts +1 -4
  145. package/filtering/operators/is-not-empty-filter-operator.component.d.ts +1 -4
  146. package/filtering/operators/is-not-null-filter-operator.component.d.ts +1 -4
  147. package/filtering/operators/isnull-filter-operator.component.d.ts +1 -4
  148. package/filtering/operators/lt-filter-operator.component.d.ts +4 -0
  149. package/filtering/operators/neq-filter-operator.component.d.ts +1 -4
  150. package/filtering/operators/not-contains-filter-operator.component.d.ts +1 -4
  151. package/filtering/operators/starts-with-filter-operator.component.d.ts +1 -4
  152. package/filtering/string-filter.component.d.ts +2 -1
  153. package/index.d.ts +2 -0
  154. package/localization/custom-messages.component.d.ts +1 -1
  155. package/localization/messages.d.ts +6 -2
  156. package/navigation/navigation-cell.interface.d.ts +1 -4
  157. package/navigation/navigation-row.interface.d.ts +1 -4
  158. package/package.json +16 -15
  159. package/pager/pager-element.component.d.ts +9 -0
  160. package/pager/pager-next-buttons.component.d.ts +0 -3
  161. package/pager/pager-numeric-buttons.component.d.ts +1 -1
  162. package/pager/pager-prev-buttons.component.d.ts +0 -3
  163. package/pager/pager-settings.d.ts +1 -15
  164. package/pager/pager-template.directive.d.ts +1 -1
  165. package/pdf/pdf-command.directive.d.ts +1 -1
  166. package/pdf/pdf-margin.component.d.ts +9 -0
  167. package/rendering/cell-template.directive.d.ts +1 -1
  168. package/rendering/cell.component.d.ts +9 -1
  169. package/rendering/common/spacer.component.d.ts +1 -1
  170. package/rendering/constants.d.ts +4 -0
  171. package/row-reordering/flat-reorder.service.d.ts +16 -0
  172. package/row-reordering/hierarchical-reorder.service.d.ts +16 -0
  173. package/row-reordering/row-reorder.service.d.ts +61 -0
  174. package/row-reordering/types.d.ts +39 -0
  175. package/row-reordering/utils.d.ts +85 -0
  176. package/schematics/ngAdd/index.js +3 -3
  177. package/scrolling/content-scroll-event.d.ts +1 -1
  178. package/scrolling/scroll-bottom-event.d.ts +1 -1
  179. package/scrolling/scroll-request.service.d.ts +6 -0
  180. package/selection/selectable-settings.d.ts +5 -15
  181. package/selection/selectable.directive.d.ts +1 -1
  182. package/selection/selection-change-event.d.ts +1 -1
  183. package/shared.module.d.ts +5 -4
  184. package/treelist.component.d.ts +66 -289
  185. package/treelist.module.d.ts +68 -66
@@ -28,72 +28,74 @@ import { ExpandableDirective } from './expand-state/expandable.directive';
28
28
  import { SelectableDirective } from './selection/selectable.directive';
29
29
  import { MarqueeDirective } from './selection/marquee.directive';
30
30
  import { TreeListSpacerComponent } from './rendering/common/spacer.component';
31
+ import { DragAndDropModule } from '@progress/kendo-angular-utils';
31
32
  import * as i0 from "@angular/core";
32
33
  import * as i1 from "./columns/column.component";
33
34
  import * as i2 from "./columns/span-column.component";
34
35
  import * as i3 from "./columns/checkbox-column.component";
35
- import * as i4 from "./columns/column-group.component";
36
- import * as i5 from "./navigation/focusable.directive";
37
- import * as i6 from "./columns/command-column.component";
38
- import * as i7 from "./rendering/cell-template.directive";
39
- import * as i8 from "./rendering/no-records-template.directive";
40
- import * as i9 from "./editing/edit-template.directive";
41
- import * as i10 from "./editing/edit-command.directive";
42
- import * as i11 from "./editing/cancel-command.directive";
43
- import * as i12 from "./editing/save-command.directive";
44
- import * as i13 from "./editing/remove-command.directive";
45
- import * as i14 from "./editing/add-command.directive";
46
- import * as i15 from "./rendering/footer-template.directive";
47
- import * as i16 from "./rendering/header/header-template.directive";
48
- import * as i17 from "./pager/pager.component";
49
- import * as i18 from "./pager/pager-prev-buttons.component";
50
- import * as i19 from "./pager/pager-next-buttons.component";
51
- import * as i20 from "./pager/pager-numeric-buttons.component";
52
- import * as i21 from "./pager/pager-input.component";
53
- import * as i22 from "./pager/pager-info.component";
54
- import * as i23 from "./pager/pager-page-sizes.component";
55
- import * as i24 from "./pager/pager-template.directive";
56
- import * as i25 from "./filtering/filter-row.component";
57
- import * as i26 from "./filtering/cell/filter-cell.component";
58
- import * as i27 from "./filtering/cell/filter-cell-template.directive";
59
- import * as i28 from "./filtering/cell/filter-cell-operators.component";
60
- import * as i29 from "./filtering/cell/string-filter-cell.component";
61
- import * as i30 from "./filtering/cell/numeric-filter-cell.component";
62
- import * as i31 from "./filtering/cell/autocomplete-filter-cell.component";
63
- import * as i32 from "./filtering/cell/boolean-filter-cell.component";
64
- import * as i33 from "./filtering/cell/date-filter-cell.component";
65
- import * as i34 from "./filtering/operators/contains-filter-operator.component";
66
- import * as i35 from "./filtering/operators/not-contains-filter-operator.component";
67
- import * as i36 from "./filtering/operators/ends-with-filter-operator.component";
68
- import * as i37 from "./filtering/operators/eq-filter-operator.component";
69
- import * as i38 from "./filtering/operators/is-empty-filter-operator.component";
70
- import * as i39 from "./filtering/operators/is-not-empty-filter-operator.component";
71
- import * as i40 from "./filtering/operators/is-not-null-filter-operator.component";
72
- import * as i41 from "./filtering/operators/isnull-filter-operator.component";
73
- import * as i42 from "./filtering/operators/neq-filter-operator.component";
74
- import * as i43 from "./filtering/operators/starts-with-filter-operator.component";
75
- import * as i44 from "./filtering/operators/gt-filter-operator.component";
76
- import * as i45 from "./filtering/operators/gte-filter-operator.component";
77
- import * as i46 from "./filtering/operators/lt-filter-operator.component";
78
- import * as i47 from "./filtering/operators/lte-filter-operator.component";
79
- import * as i48 from "./filtering/operators/after-filter-operator.component";
80
- import * as i49 from "./filtering/operators/after-eq-filter-operator.component";
81
- import * as i50 from "./filtering/operators/before-eq-filter-operator.component";
82
- import * as i51 from "./filtering/operators/before-filter-operator.component";
83
- import * as i52 from "./filtering/menu/string-filter-menu.component";
84
- import * as i53 from "./filtering/menu/filter-menu-template.directive";
85
- import * as i54 from "./filtering/menu/numeric-filter-menu.component";
86
- import * as i55 from "./filtering/menu/date-filter-menu.component";
87
- import * as i56 from "./filtering/menu/boolean-filter-menu.component";
88
- import * as i57 from "./column-menu/column-chooser.component";
89
- import * as i58 from "./column-menu/column-menu-filter.component";
90
- import * as i59 from "./column-menu/column-menu-item.component";
91
- import * as i60 from "./column-menu/column-menu-item-content-template.directive";
92
- import * as i61 from "./column-menu/column-menu-sort.component";
93
- import * as i62 from "./column-menu/column-menu-lock.component";
94
- import * as i63 from "./column-menu/column-menu-chooser.component";
95
- import * as i64 from "./column-menu/column-menu-template.directive";
96
- import * as i65 from "./column-menu/column-menu.component";
36
+ import * as i4 from "./columns/rowreorder-column.component";
37
+ import * as i5 from "./columns/column-group.component";
38
+ import * as i6 from "./navigation/focusable.directive";
39
+ import * as i7 from "./columns/command-column.component";
40
+ import * as i8 from "./rendering/cell-template.directive";
41
+ import * as i9 from "./rendering/no-records-template.directive";
42
+ import * as i10 from "./editing/edit-template.directive";
43
+ import * as i11 from "./editing/edit-command.directive";
44
+ import * as i12 from "./editing/cancel-command.directive";
45
+ import * as i13 from "./editing/save-command.directive";
46
+ import * as i14 from "./editing/remove-command.directive";
47
+ import * as i15 from "./editing/add-command.directive";
48
+ import * as i16 from "./rendering/footer-template.directive";
49
+ import * as i17 from "./rendering/header/header-template.directive";
50
+ import * as i18 from "./pager/pager.component";
51
+ import * as i19 from "./pager/pager-prev-buttons.component";
52
+ import * as i20 from "./pager/pager-next-buttons.component";
53
+ import * as i21 from "./pager/pager-numeric-buttons.component";
54
+ import * as i22 from "./pager/pager-input.component";
55
+ import * as i23 from "./pager/pager-info.component";
56
+ import * as i24 from "./pager/pager-page-sizes.component";
57
+ import * as i25 from "./pager/pager-template.directive";
58
+ import * as i26 from "./filtering/filter-row.component";
59
+ import * as i27 from "./filtering/cell/filter-cell.component";
60
+ import * as i28 from "./filtering/cell/filter-cell-template.directive";
61
+ import * as i29 from "./filtering/cell/filter-cell-operators.component";
62
+ import * as i30 from "./filtering/cell/string-filter-cell.component";
63
+ import * as i31 from "./filtering/cell/numeric-filter-cell.component";
64
+ import * as i32 from "./filtering/cell/autocomplete-filter-cell.component";
65
+ import * as i33 from "./filtering/cell/boolean-filter-cell.component";
66
+ import * as i34 from "./filtering/cell/date-filter-cell.component";
67
+ import * as i35 from "./filtering/operators/contains-filter-operator.component";
68
+ import * as i36 from "./filtering/operators/not-contains-filter-operator.component";
69
+ import * as i37 from "./filtering/operators/ends-with-filter-operator.component";
70
+ import * as i38 from "./filtering/operators/eq-filter-operator.component";
71
+ import * as i39 from "./filtering/operators/is-empty-filter-operator.component";
72
+ import * as i40 from "./filtering/operators/is-not-empty-filter-operator.component";
73
+ import * as i41 from "./filtering/operators/is-not-null-filter-operator.component";
74
+ import * as i42 from "./filtering/operators/isnull-filter-operator.component";
75
+ import * as i43 from "./filtering/operators/neq-filter-operator.component";
76
+ import * as i44 from "./filtering/operators/starts-with-filter-operator.component";
77
+ import * as i45 from "./filtering/operators/gt-filter-operator.component";
78
+ import * as i46 from "./filtering/operators/gte-filter-operator.component";
79
+ import * as i47 from "./filtering/operators/lt-filter-operator.component";
80
+ import * as i48 from "./filtering/operators/lte-filter-operator.component";
81
+ import * as i49 from "./filtering/operators/after-filter-operator.component";
82
+ import * as i50 from "./filtering/operators/after-eq-filter-operator.component";
83
+ import * as i51 from "./filtering/operators/before-eq-filter-operator.component";
84
+ import * as i52 from "./filtering/operators/before-filter-operator.component";
85
+ import * as i53 from "./filtering/menu/string-filter-menu.component";
86
+ import * as i54 from "./filtering/menu/filter-menu-template.directive";
87
+ import * as i55 from "./filtering/menu/numeric-filter-menu.component";
88
+ import * as i56 from "./filtering/menu/date-filter-menu.component";
89
+ import * as i57 from "./filtering/menu/boolean-filter-menu.component";
90
+ import * as i58 from "./column-menu/column-chooser.component";
91
+ import * as i59 from "./column-menu/column-menu-filter.component";
92
+ import * as i60 from "./column-menu/column-menu-item.component";
93
+ import * as i61 from "./column-menu/column-menu-item-content-template.directive";
94
+ import * as i62 from "./column-menu/column-menu-sort.component";
95
+ import * as i63 from "./column-menu/column-menu-lock.component";
96
+ import * as i64 from "./column-menu/column-menu-chooser.component";
97
+ import * as i65 from "./column-menu/column-menu-template.directive";
98
+ import * as i66 from "./column-menu/column-menu.component";
97
99
  const exportedModules = [
98
100
  TreeListComponent,
99
101
  ToolbarTemplateDirective,
@@ -181,7 +183,8 @@ TreeListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
181
183
  RowFilterModule,
182
184
  FilterMenuModule,
183
185
  ResizeSensorModule,
184
- ColumnMenuModule], exports: [TreeListComponent,
186
+ ColumnMenuModule,
187
+ DragAndDropModule], exports: [TreeListComponent,
185
188
  ToolbarTemplateDirective,
186
189
  ToolbarComponent,
187
190
  TreeListSpacerComponent,
@@ -193,7 +196,7 @@ TreeListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
193
196
  FlatBindingDirective,
194
197
  ExpandableDirective,
195
198
  SelectableDirective,
196
- TreeListToolbarFocusableDirective, i1.ColumnComponent, i2.SpanColumnComponent, i3.CheckboxColumnComponent, i4.ColumnGroupComponent, i5.FocusableDirective, i6.CommandColumnComponent, i7.CellTemplateDirective, i8.NoRecordsTemplateDirective, i9.EditTemplateDirective, i10.EditCommandDirective, i11.CancelCommandDirective, i12.SaveCommandDirective, i13.RemoveCommandDirective, i14.AddCommandDirective, i15.FooterTemplateDirective, i16.HeaderTemplateDirective, i17.PagerComponent, i18.PagerPrevButtonsComponent, i19.PagerNextButtonsComponent, i20.PagerNumericButtonsComponent, i21.PagerInputComponent, i22.PagerInfoComponent, i23.PagerPageSizesComponent, i24.PagerTemplateDirective, i25.FilterRowComponent, i26.FilterCellComponent, i27.FilterCellTemplateDirective, i28.FilterCellOperatorsComponent, i29.StringFilterCellComponent, i30.NumericFilterCellComponent, i31.AutoCompleteFilterCellComponent, i32.BooleanFilterCellComponent, i33.DateFilterCellComponent, i28.FilterCellOperatorsComponent, i34.ContainsFilterOperatorComponent, i35.DoesNotContainFilterOperatorComponent, i36.EndsWithFilterOperatorComponent, i37.EqualFilterOperatorComponent, i38.IsEmptyFilterOperatorComponent, i39.IsNotEmptyFilterOperatorComponent, i40.IsNotNullFilterOperatorComponent, i41.IsNullFilterOperatorComponent, i42.NotEqualFilterOperatorComponent, i43.StartsWithFilterOperatorComponent, i44.GreaterFilterOperatorComponent, i45.GreaterOrEqualToFilterOperatorComponent, i46.LessFilterOperatorComponent, i47.LessOrEqualToFilterOperatorComponent, i48.AfterFilterOperatorComponent, i49.AfterEqFilterOperatorComponent, i50.BeforeEqFilterOperatorComponent, i51.BeforeFilterOperatorComponent, i52.StringFilterMenuComponent, i53.FilterMenuTemplateDirective, i54.NumericFilterMenuComponent, i55.DateFilterMenuComponent, i56.BooleanFilterMenuComponent, i28.FilterCellOperatorsComponent, i34.ContainsFilterOperatorComponent, i35.DoesNotContainFilterOperatorComponent, i36.EndsWithFilterOperatorComponent, i37.EqualFilterOperatorComponent, i38.IsEmptyFilterOperatorComponent, i39.IsNotEmptyFilterOperatorComponent, i40.IsNotNullFilterOperatorComponent, i41.IsNullFilterOperatorComponent, i42.NotEqualFilterOperatorComponent, i43.StartsWithFilterOperatorComponent, i44.GreaterFilterOperatorComponent, i45.GreaterOrEqualToFilterOperatorComponent, i46.LessFilterOperatorComponent, i47.LessOrEqualToFilterOperatorComponent, i48.AfterFilterOperatorComponent, i49.AfterEqFilterOperatorComponent, i50.BeforeEqFilterOperatorComponent, i51.BeforeFilterOperatorComponent, i57.ColumnChooserComponent, i58.ColumnMenuFilterComponent, i59.ColumnMenuItemComponent, i60.ColumnMenuItemContentTemplateDirective, i61.ColumnMenuSortComponent, i62.ColumnMenuLockComponent, i63.ColumnMenuChooserComponent, i64.ColumnMenuTemplateDirective, i65.ColumnMenuComponent] });
199
+ TreeListToolbarFocusableDirective, i1.ColumnComponent, i2.SpanColumnComponent, i3.CheckboxColumnComponent, i4.RowReorderColumnComponent, i5.ColumnGroupComponent, i6.FocusableDirective, i7.CommandColumnComponent, i8.CellTemplateDirective, i9.NoRecordsTemplateDirective, i10.EditTemplateDirective, i11.EditCommandDirective, i12.CancelCommandDirective, i13.SaveCommandDirective, i14.RemoveCommandDirective, i15.AddCommandDirective, i16.FooterTemplateDirective, i17.HeaderTemplateDirective, i18.PagerComponent, i19.PagerPrevButtonsComponent, i20.PagerNextButtonsComponent, i21.PagerNumericButtonsComponent, i22.PagerInputComponent, i23.PagerInfoComponent, i24.PagerPageSizesComponent, i25.PagerTemplateDirective, i26.FilterRowComponent, i27.FilterCellComponent, i28.FilterCellTemplateDirective, i29.FilterCellOperatorsComponent, i30.StringFilterCellComponent, i31.NumericFilterCellComponent, i32.AutoCompleteFilterCellComponent, i33.BooleanFilterCellComponent, i34.DateFilterCellComponent, i29.FilterCellOperatorsComponent, i35.ContainsFilterOperatorComponent, i36.DoesNotContainFilterOperatorComponent, i37.EndsWithFilterOperatorComponent, i38.EqualFilterOperatorComponent, i39.IsEmptyFilterOperatorComponent, i40.IsNotEmptyFilterOperatorComponent, i41.IsNotNullFilterOperatorComponent, i42.IsNullFilterOperatorComponent, i43.NotEqualFilterOperatorComponent, i44.StartsWithFilterOperatorComponent, i45.GreaterFilterOperatorComponent, i46.GreaterOrEqualToFilterOperatorComponent, i47.LessFilterOperatorComponent, i48.LessOrEqualToFilterOperatorComponent, i49.AfterFilterOperatorComponent, i50.AfterEqFilterOperatorComponent, i51.BeforeEqFilterOperatorComponent, i52.BeforeFilterOperatorComponent, i53.StringFilterMenuComponent, i54.FilterMenuTemplateDirective, i55.NumericFilterMenuComponent, i56.DateFilterMenuComponent, i57.BooleanFilterMenuComponent, i29.FilterCellOperatorsComponent, i35.ContainsFilterOperatorComponent, i36.DoesNotContainFilterOperatorComponent, i37.EndsWithFilterOperatorComponent, i38.EqualFilterOperatorComponent, i39.IsEmptyFilterOperatorComponent, i40.IsNotEmptyFilterOperatorComponent, i41.IsNotNullFilterOperatorComponent, i42.IsNullFilterOperatorComponent, i43.NotEqualFilterOperatorComponent, i44.StartsWithFilterOperatorComponent, i45.GreaterFilterOperatorComponent, i46.GreaterOrEqualToFilterOperatorComponent, i47.LessFilterOperatorComponent, i48.LessOrEqualToFilterOperatorComponent, i49.AfterFilterOperatorComponent, i50.AfterEqFilterOperatorComponent, i51.BeforeEqFilterOperatorComponent, i52.BeforeFilterOperatorComponent, i58.ColumnChooserComponent, i59.ColumnMenuFilterComponent, i60.ColumnMenuItemComponent, i61.ColumnMenuItemContentTemplateDirective, i62.ColumnMenuSortComponent, i63.ColumnMenuLockComponent, i64.ColumnMenuChooserComponent, i65.ColumnMenuTemplateDirective, i66.ColumnMenuComponent] });
197
200
  TreeListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TreeListModule, imports: [[
198
201
  CommonModule,
199
202
  SharedModule,
@@ -203,7 +206,8 @@ TreeListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version:
203
206
  RowFilterModule,
204
207
  FilterMenuModule,
205
208
  ResizeSensorModule,
206
- ColumnMenuModule
209
+ ColumnMenuModule,
210
+ DragAndDropModule
207
211
  ]] });
208
212
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TreeListModule, decorators: [{
209
213
  type: NgModule,
@@ -219,7 +223,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
219
223
  RowFilterModule,
220
224
  FilterMenuModule,
221
225
  ResizeSensorModule,
222
- ColumnMenuModule
226
+ ColumnMenuModule,
227
+ DragAndDropModule
223
228
  ]
224
229
  }]
225
230
  }] });
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
17
17
  *
18
18
  * @example
19
19
  * ```html
20
- * <kendo-treelist>
20
+ * <kendo-treelist ...>
21
21
  * <ng-template kendoTreeListToolbarTemplate>
22
22
  * <button kendoTreeListExcelCommand>Export to PDF</button>
23
23
  * </ng-template>
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Observable } from "rxjs";
6
6
  /**
7
- * The expected type of result for the treelist excel export fetchData function.
7
+ * The expected type of result for the treelist excel export [`fetchData function`](slug:api_treelist_excelcomponent#toc-fetchdata).
8
8
  */
9
9
  export interface ExcelExportData {
10
10
  /**
@@ -39,15 +39,17 @@ export declare class ExcelComponent implements OnDestroy {
39
39
  forceProxy: boolean;
40
40
  /**
41
41
  * The URL of the server-side proxy which streams the file to the end user.
42
- * You need to use a proxy if the browser is not capable of saving files locally&mdash;for example,
43
- * Internet Explorer 9 and Safari. The responsibility for implementing the server-side proxy is yours.
42
+ * Using a proxy is required if the browser is not capable of saving files locally.
44
43
  *
45
- * In the request body, the proxy receives a POST request with the following parameters:
46
- * - `contentType`&mdash;The MIME type of the file.
47
- * - `base64`&mdash;The base-64 encoded file content.
48
- * - `fileName`&mdash;The file name, as requested by the caller.
44
+ * Optionally, set up a proxy to reduce memory usage. This avoids copying the file contents into memory,
45
+ * but transmits it over the network instead. For this use case, set [forceProxy](#toc-forceproxy) to `true`
46
+ * to skip client-side saving even in browsers that support it.
49
47
  *
48
+ * In the request body, the proxy receives a POST request with the specific parameters. [See example](slug:server_proxy#toc-implementations).
50
49
  * The proxy returns the decoded file with the `"Content-Disposition"` header set to `attachment; filename="<fileName.xslx>"`.
50
+ *
51
+ * For details on the server-side proxy usage and implementation, see the [File Saver]({% slug overview_filesaver %}) documentation.
52
+ *
51
53
  */
52
54
  proxyURL: string;
53
55
  /**
@@ -56,8 +58,7 @@ export declare class ExcelComponent implements OnDestroy {
56
58
  */
57
59
  fetchData: (component: TreeListComponent) => ExcelExportData;
58
60
  /**
59
- * Specifies if the item levels in the Excel file are collapsible.
60
- * > Applicable only if the treelist has footers.
61
+ * Specifies if the item levels in the Excel file are collapsible. Applicable only if the treelist has footers.
61
62
  */
62
63
  collapsible: boolean;
63
64
  /**