@progress/kendo-angular-treelist 17.0.0-develop.3 → 17.0.0-develop.31

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 (384) hide show
  1. package/README.md +48 -19
  2. package/binding-directives/base-binding.directive.d.ts +1 -1
  3. package/binding-directives/flat-binding.directive.d.ts +1 -1
  4. package/binding-directives/hierarchy-binding.directive.d.ts +1 -1
  5. package/column-menu/column-chooser.component.d.ts +1 -1
  6. package/column-menu/column-list.component.d.ts +1 -1
  7. package/column-menu/column-menu-chooser.component.d.ts +1 -1
  8. package/column-menu/column-menu-filter.component.d.ts +1 -1
  9. package/column-menu/column-menu-item-base.d.ts +1 -1
  10. package/column-menu/column-menu-item.component.d.ts +1 -1
  11. package/column-menu/column-menu.component.d.ts +1 -1
  12. package/column-resizing/column-handle.directive.d.ts +1 -1
  13. package/column-resizing/column-resize.interface.d.ts +3 -3
  14. package/column-resizing/table.directive.d.ts +1 -1
  15. package/columns/checkbox-column.component.d.ts +1 -1
  16. package/columns/column-base.d.ts +1 -1
  17. package/columns/column.component.d.ts +1 -1
  18. package/columns/sort-settings.d.ts +2 -2
  19. package/columns/span-column.component.d.ts +13 -13
  20. package/common/create-form-group.d.ts +1 -1
  21. package/common/provider.service.d.ts +0 -1
  22. package/common/remove-confirmation.d.ts +1 -1
  23. package/data/treelist-item.interface.d.ts +1 -1
  24. package/directives.d.ts +7 -4
  25. package/dragdrop/context-types.d.ts +1 -1
  26. package/dragdrop/draggable-column.directive.d.ts +1 -1
  27. package/dragdrop/drop-target.directive.d.ts +1 -1
  28. package/editing/add-command-tool.directive.d.ts +38 -0
  29. package/editing/add-command.directive.d.ts +1 -1
  30. package/editing/cancel-command.directive.d.ts +1 -1
  31. package/editing/cancel-event-args.interface.d.ts +1 -1
  32. package/editing/edit-command.directive.d.ts +1 -1
  33. package/editing/edit.service.d.ts +3 -3
  34. package/editing/remove-command.directive.d.ts +1 -1
  35. package/editing/save-command.directive.d.ts +1 -1
  36. package/editing-directives/create-form-group-args.interface.d.ts +1 -1
  37. package/editing-directives/editing-directive-base.d.ts +1 -1
  38. package/editing-directives/in-cell-editing.directive.d.ts +1 -1
  39. package/editing-directives/reactive-editing.directive.d.ts +1 -1
  40. package/editing-directives/row-editing-directive-base.d.ts +0 -1
  41. package/editing-directives/template-editing.directive.d.ts +1 -2
  42. package/{esm2020 → esm2022}/binding-directives/base-binding.directive.mjs +17 -13
  43. package/{esm2020 → esm2022}/binding-directives/data-bound-tree-component.mjs +3 -3
  44. package/{esm2020 → esm2022}/binding-directives/flat-binding.directive.mjs +29 -21
  45. package/{esm2020 → esm2022}/binding-directives/hierarchy-binding.directive.mjs +26 -19
  46. package/{esm2020 → esm2022}/column-menu/column-chooser.component.mjs +27 -19
  47. package/{esm2020 → esm2022}/column-menu/column-list.component.mjs +28 -16
  48. package/{esm2020 → esm2022}/column-menu/column-locked-change-event.mjs +4 -0
  49. package/{esm2020 → esm2022}/column-menu/column-menu-chooser.component.mjs +28 -25
  50. package/{esm2020 → esm2022}/column-menu/column-menu-filter.component.mjs +23 -22
  51. package/{esm2020 → esm2022}/column-menu/column-menu-item-base.mjs +9 -6
  52. package/{esm2020 → esm2022}/column-menu/column-menu-item-content-template.directive.mjs +4 -3
  53. package/{esm2020 → esm2022}/column-menu/column-menu-item.component.mjs +67 -42
  54. package/{esm2020 → esm2022}/column-menu/column-menu-lock.component.mjs +9 -6
  55. package/{esm2020 → esm2022}/column-menu/column-menu-sort.component.mjs +8 -6
  56. package/{esm2020 → esm2022}/column-menu/column-menu-template.directive.mjs +4 -3
  57. package/{esm2020 → esm2022}/column-menu/column-menu.component.mjs +49 -25
  58. package/{esm2020 → esm2022}/column-menu/column-menu.service.mjs +23 -9
  59. package/{esm2020 → esm2022}/column-menu/column-visibility-change-event.mjs +4 -0
  60. package/{esm2020 → esm2022}/column-resizing/column-handle.directive.mjs +21 -14
  61. package/{esm2020 → esm2022}/column-resizing/column-resizing.service.mjs +8 -8
  62. package/{esm2020 → esm2022}/column-resizing/table.directive.mjs +17 -8
  63. package/{esm2020 → esm2022}/columns/checkbox-column.component.mjs +27 -12
  64. package/{esm2020 → esm2022}/columns/column-base.mjs +140 -72
  65. package/{esm2020 → esm2022}/columns/column-group.component.mjs +24 -20
  66. package/{esm2020 → esm2022}/columns/column-list.mjs +4 -3
  67. package/{esm2020 → esm2022}/columns/column.component.mjs +56 -38
  68. package/{esm2020 → esm2022}/columns/columns-container.mjs +14 -13
  69. package/{esm2020 → esm2022}/columns/command-column.component.mjs +11 -9
  70. package/{esm2020 → esm2022}/columns/rowreorder-column.component.mjs +13 -12
  71. package/{esm2020 → esm2022}/columns/span-column.component.mjs +64 -29
  72. package/{esm2020 → esm2022}/common/column-info.service.mjs +8 -9
  73. package/esm2022/common/dom-events.service.mjs +24 -0
  74. package/{esm2020 → esm2022}/common/id.service.mjs +4 -3
  75. package/{esm2020 → esm2022}/common/option-changes.service.mjs +5 -7
  76. package/{esm2020 → esm2022}/common/preventable-event.mjs +1 -3
  77. package/{esm2020 → esm2022}/common/provider.service.mjs +8 -6
  78. package/{esm2020 → esm2022}/common/single-popup.service.mjs +19 -8
  79. package/{esm2020 → esm2022}/common/sort.service.mjs +1 -3
  80. package/{esm2020 → esm2022}/data/change-notification.service.mjs +6 -4
  81. package/{esm2020 → esm2022}/data/data.collection.mjs +45 -23
  82. package/{esm2020 → esm2022}/directives.mjs +8 -2
  83. package/{esm2020 → esm2022}/dragdrop/column-reorder-event.mjs +14 -0
  84. package/{esm2020 → esm2022}/dragdrop/column-reorder.service.mjs +4 -6
  85. package/{esm2020 → esm2022}/dragdrop/drag-and-drop.service.mjs +6 -8
  86. package/{esm2020 → esm2022}/dragdrop/drag-hint.service.mjs +7 -4
  87. package/{esm2020 → esm2022}/dragdrop/draggable-column.directive.mjs +22 -13
  88. package/{esm2020 → esm2022}/dragdrop/drop-cue.service.mjs +4 -3
  89. package/{esm2020 → esm2022}/dragdrop/drop-target.directive.mjs +10 -8
  90. package/esm2022/editing/add-command-tool.directive.mjs +63 -0
  91. package/{esm2020 → esm2022}/editing/add-command.directive.mjs +10 -6
  92. package/{esm2020 → esm2022}/editing/base-command.directive.mjs +9 -8
  93. package/{esm2020 → esm2022}/editing/cancel-command.directive.mjs +10 -6
  94. package/{esm2020 → esm2022}/editing/cell-close-event.mjs +20 -4
  95. package/{esm2020 → esm2022}/editing/edit-command.directive.mjs +10 -6
  96. package/{esm2020 → esm2022}/editing/edit-template.directive.mjs +4 -3
  97. package/{esm2020 → esm2022}/editing/edit.service.mjs +18 -13
  98. package/{esm2020 → esm2022}/editing/remove-command.directive.mjs +10 -6
  99. package/{esm2020 → esm2022}/editing/save-command.directive.mjs +10 -6
  100. package/{esm2020 → esm2022}/editing-directives/editing-directive-base.mjs +17 -7
  101. package/{esm2020 → esm2022}/editing-directives/flat-edit.service.mjs +1 -0
  102. package/{esm2020 → esm2022}/editing-directives/hierarchy-edit.service.mjs +1 -0
  103. package/{esm2020 → esm2022}/editing-directives/in-cell-editing.directive.mjs +8 -3
  104. package/{esm2020 → esm2022}/editing-directives/reactive-editing.directive.mjs +8 -3
  105. package/{esm2020 → esm2022}/editing-directives/row-editing-directive-base.mjs +3 -3
  106. package/{esm2020 → esm2022}/editing-directives/template-editing.directive.mjs +9 -3
  107. package/esm2022/excel/excel-command-tool.directive.mjs +66 -0
  108. package/{esm2020 → esm2022}/excel/excel-command.directive.mjs +10 -9
  109. package/{esm2020 → esm2022}/excel/excel-export-event.mjs +1 -0
  110. package/{esm2020 → esm2022}/excel/excel.component.mjs +71 -22
  111. package/{esm2020 → esm2022}/excel/excel.module.mjs +5 -4
  112. package/{esm2020 → esm2022}/excel/excel.service.mjs +7 -8
  113. package/{esm2020 → esm2022}/expand-state/expand-event.mjs +12 -0
  114. package/{esm2020 → esm2022}/expand-state/expand-state.service.mjs +5 -7
  115. package/{esm2020 → esm2022}/expand-state/expandable-tree-component.mjs +3 -3
  116. package/{esm2020 → esm2022}/expand-state/expandable.directive.mjs +23 -19
  117. package/{esm2020 → esm2022}/filtering/base-filter-cell.component.mjs +18 -7
  118. package/{esm2020 → esm2022}/filtering/boolean-filter.component.mjs +31 -24
  119. package/{esm2020 → esm2022}/filtering/cell/autocomplete-filter-cell.component.mjs +15 -13
  120. package/{esm2020 → esm2022}/filtering/cell/boolean-filter-cell.component.mjs +5 -4
  121. package/{esm2020 → esm2022}/filtering/cell/date-filter-cell.component.mjs +11 -10
  122. package/{esm2020 → esm2022}/filtering/cell/filter-cell-host.directive.mjs +3 -3
  123. package/{esm2020 → esm2022}/filtering/cell/filter-cell-operators.component.mjs +54 -34
  124. package/{esm2020 → esm2022}/filtering/cell/filter-cell-template.directive.mjs +4 -3
  125. package/{esm2020 → esm2022}/filtering/cell/filter-cell-wrapper.component.mjs +8 -8
  126. package/{esm2020 → esm2022}/filtering/cell/filter-cell.component.mjs +11 -8
  127. package/{esm2020 → esm2022}/filtering/cell/numeric-filter-cell.component.mjs +23 -17
  128. package/esm2022/filtering/cell/row-filtering.module.mjs +77 -0
  129. package/{esm2020 → esm2022}/filtering/cell/string-filter-cell.component.mjs +23 -18
  130. package/{esm2020 → esm2022}/filtering/date-filter.component.mjs +64 -39
  131. package/{esm2020 → esm2022}/filtering/filter-host.directive.mjs +8 -3
  132. package/{esm2020 → esm2022}/filtering/filter-input-wrapper.component.mjs +11 -8
  133. package/{esm2020 → esm2022}/filtering/filter-input.directive.mjs +21 -13
  134. package/{esm2020 → esm2022}/filtering/filter-row.component.mjs +11 -8
  135. package/{esm2020 → esm2022}/filtering/filter.service.mjs +7 -9
  136. package/{esm2020 → esm2022}/filtering/menu/boolean-filter-menu.component.mjs +22 -15
  137. package/{esm2020 → esm2022}/filtering/menu/date-filter-menu-input.component.mjs +21 -5
  138. package/{esm2020 → esm2022}/filtering/menu/date-filter-menu.component.mjs +22 -21
  139. package/{esm2020 → esm2022}/filtering/menu/filter-menu-container.component.mjs +28 -16
  140. package/{esm2020 → esm2022}/filtering/menu/filter-menu-host.directive.mjs +4 -3
  141. package/{esm2020 → esm2022}/filtering/menu/filter-menu-input-wrapper.component.mjs +9 -7
  142. package/{esm2020 → esm2022}/filtering/menu/filter-menu-template.directive.mjs +4 -3
  143. package/{esm2020 → esm2022}/filtering/menu/filter-menu.component.mjs +20 -8
  144. package/esm2022/filtering/menu/filter-menu.module.mjs +80 -0
  145. package/{esm2020 → esm2022}/filtering/menu/filter-radio-button.directive.mjs +7 -3
  146. package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu-input.component.mjs +43 -17
  147. package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu.component.mjs +32 -31
  148. package/{esm2020 → esm2022}/filtering/menu/string-filter-menu-input.component.mjs +12 -5
  149. package/{esm2020 → esm2022}/filtering/menu/string-filter-menu.component.mjs +32 -21
  150. package/{esm2020 → esm2022}/filtering/numeric-filter.component.mjs +51 -28
  151. package/{esm2020 → esm2022}/filtering/operators/after-eq-filter-operator.component.mjs +8 -8
  152. package/{esm2020 → esm2022}/filtering/operators/after-filter-operator.component.mjs +8 -8
  153. package/{esm2020 → esm2022}/filtering/operators/before-eq-filter-operator.component.mjs +8 -8
  154. package/{esm2020 → esm2022}/filtering/operators/before-filter-operator.component.mjs +8 -8
  155. package/{esm2020 → esm2022}/filtering/operators/contains-filter-operator.component.mjs +8 -8
  156. package/{esm2020 → esm2022}/filtering/operators/ends-with-filter-operator.component.mjs +8 -8
  157. package/{esm2020 → esm2022}/filtering/operators/eq-filter-operator.component.mjs +8 -8
  158. package/{esm2020 → esm2022}/filtering/operators/filter-operator.base.mjs +15 -10
  159. package/{esm2020 → esm2022}/filtering/operators/gt-filter-operator.component.mjs +8 -8
  160. package/{esm2020 → esm2022}/filtering/operators/gte-filter-operator.component.mjs +8 -8
  161. package/{esm2020 → esm2022}/filtering/operators/is-empty-filter-operator.component.mjs +8 -8
  162. package/{esm2020 → esm2022}/filtering/operators/is-not-empty-filter-operator.component.mjs +8 -8
  163. package/{esm2020 → esm2022}/filtering/operators/is-not-null-filter-operator.component.mjs +8 -8
  164. package/{esm2020 → esm2022}/filtering/operators/isnull-filter-operator.component.mjs +8 -8
  165. package/{esm2020 → esm2022}/filtering/operators/lt-filter-operator.component.mjs +8 -8
  166. package/{esm2020 → esm2022}/filtering/operators/lte-filter-operator.component.mjs +8 -8
  167. package/{esm2020 → esm2022}/filtering/operators/neq-filter-operator.component.mjs +8 -8
  168. package/{esm2020 → esm2022}/filtering/operators/not-contains-filter-operator.component.mjs +8 -8
  169. package/{esm2020 → esm2022}/filtering/operators/starts-with-filter-operator.component.mjs +8 -8
  170. package/{esm2020 → esm2022}/filtering/shared-filtering.module.mjs +18 -18
  171. package/{esm2020 → esm2022}/filtering/string-filter.component.mjs +20 -15
  172. package/{esm2020 → esm2022}/index.mjs +3 -0
  173. package/{esm2020 → esm2022}/layout/browser-support.service.mjs +7 -4
  174. package/{esm2020 → esm2022}/layout/resizable.directive.mjs +16 -10
  175. package/{esm2020 → esm2022}/layout/resize.service.mjs +6 -8
  176. package/{esm2020 → esm2022}/layout/responsive.service.mjs +7 -9
  177. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  178. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  179. package/esm2022/localization/messages.mjs +410 -0
  180. package/{esm2020 → esm2022}/navigation/default-focusable-element.mjs +8 -5
  181. package/{esm2020 → esm2022}/navigation/focus-group.mjs +12 -11
  182. package/{esm2020 → esm2022}/navigation/focus-root.mjs +5 -4
  183. package/{esm2020 → esm2022}/navigation/focusable.directive.mjs +18 -10
  184. package/{esm2020 → esm2022}/navigation/item-map.mjs +2 -4
  185. package/{esm2020 → esm2022}/navigation/logical-cell.directive.mjs +35 -22
  186. package/{esm2020 → esm2022}/navigation/logical-row.directive.mjs +19 -13
  187. package/{esm2020 → esm2022}/navigation/model-cell.mjs +11 -0
  188. package/{esm2020 → esm2022}/navigation/navigation-cursor.mjs +10 -8
  189. package/{esm2020 → esm2022}/navigation/navigation-metadata.mjs +13 -6
  190. package/{esm2020 → esm2022}/navigation/navigation-model.mjs +1 -3
  191. package/{esm2020 → esm2022}/navigation/navigation.service.mjs +44 -24
  192. package/{esm2020 → esm2022}/navigation/treelist-focusable-element.mjs +1 -0
  193. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  194. package/{esm2020 → esm2022}/pager/pager-context.service.mjs +6 -4
  195. package/{esm2020 → esm2022}/pager/pager-element.component.mjs +24 -16
  196. package/{esm2020 → esm2022}/pager/pager-info.component.mjs +8 -7
  197. package/{esm2020 → esm2022}/pager/pager-input.component.mjs +43 -39
  198. package/{esm2020 → esm2022}/pager/pager-next-buttons.component.mjs +14 -9
  199. package/{esm2020 → esm2022}/pager/pager-numeric-buttons.component.mjs +19 -9
  200. package/{esm2020 → esm2022}/pager/pager-page-sizes.component.mjs +12 -10
  201. package/{esm2020 → esm2022}/pager/pager-prev-buttons.component.mjs +6 -5
  202. package/{esm2020 → esm2022}/pager/pager-template.directive.mjs +4 -3
  203. package/{esm2020 → esm2022}/pager/pager.component.mjs +84 -70
  204. package/esm2022/pager/pager.module.mjs +43 -0
  205. package/esm2022/pdf/pdf-command-tool.directive.mjs +66 -0
  206. package/{esm2020 → esm2022}/pdf/pdf-command.directive.mjs +10 -9
  207. package/{esm2020 → esm2022}/pdf/pdf-margin.component.mjs +3 -3
  208. package/{esm2020 → esm2022}/pdf/pdf-template.directive.mjs +3 -3
  209. package/{esm2020 → esm2022}/pdf/pdf.component.mjs +24 -4
  210. package/{esm2020 → esm2022}/pdf/pdf.module.mjs +6 -5
  211. package/{esm2020 → esm2022}/pdf/pdf.service.mjs +8 -9
  212. package/{esm2020 → esm2022}/pdf/treelist-query.mjs +4 -0
  213. package/esm2022/rendering/body.module.mjs +41 -0
  214. package/{esm2020 → esm2022}/rendering/cell-template.directive.mjs +4 -3
  215. package/{esm2020 → esm2022}/rendering/cell.component.mjs +41 -25
  216. package/{esm2020 → esm2022}/rendering/common/col-group.component.mjs +5 -7
  217. package/{esm2020 → esm2022}/rendering/common/field-accessor.pipe.mjs +4 -3
  218. package/{esm2020 → esm2022}/rendering/common/level-items.pipe.mjs +3 -3
  219. package/{esm2020 → esm2022}/rendering/common/loading.component.mjs +9 -8
  220. package/{esm2020 → esm2022}/rendering/common/spacer.component.mjs +11 -6
  221. package/{esm2020 → esm2022}/rendering/footer-template.directive.mjs +4 -3
  222. package/{esm2020 → esm2022}/rendering/header/header-template.directive.mjs +4 -3
  223. package/{esm2020 → esm2022}/rendering/header/header.component.mjs +47 -28
  224. package/{esm2020 → esm2022}/rendering/header/header.module.mjs +4 -4
  225. package/{esm2020 → esm2022}/rendering/list.component.mjs +80 -40
  226. package/{esm2020 → esm2022}/rendering/no-records-template.directive.mjs +4 -3
  227. package/{esm2020 → esm2022}/rendering/table-body.component.mjs +45 -19
  228. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-focusable.directive.mjs +9 -7
  229. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-navigation.service.mjs +9 -8
  230. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-template.directive.mjs +10 -8
  231. package/{esm2020 → esm2022}/rendering/toolbar/toolbar.component.mjs +18 -13
  232. package/{esm2020 → esm2022}/row-reordering/flat-reorder.service.mjs +3 -3
  233. package/{esm2020 → esm2022}/row-reordering/hierarchical-reorder.service.mjs +3 -3
  234. package/{esm2020 → esm2022}/row-reordering/row-reorder.service.mjs +14 -9
  235. package/{esm2020 → esm2022}/scrolling/row-height.service.mjs +2 -0
  236. package/{esm2020 → esm2022}/scrolling/scroll-request.service.mjs +4 -6
  237. package/{esm2020 → esm2022}/scrolling/scroll-sync.service.mjs +10 -8
  238. package/{esm2020 → esm2022}/scrolling/scroller.service.mjs +12 -2
  239. package/{esm2020 → esm2022}/scrolling/suspend.service.mjs +4 -6
  240. package/{esm2020 → esm2022}/selection/marquee.directive.mjs +18 -7
  241. package/{esm2020 → esm2022}/selection/selectable.directive.mjs +23 -17
  242. package/{esm2020 → esm2022}/selection/selection-change-event.mjs +12 -0
  243. package/{esm2020 → esm2022}/selection/selection-state.mjs +2 -6
  244. package/{esm2020 → esm2022}/selection/selection.service.mjs +15 -14
  245. package/{esm2020 → esm2022}/shared.module.mjs +4 -4
  246. package/{esm2020 → esm2022}/treelist.component.mjs +474 -394
  247. package/esm2022/treelist.module.mjs +178 -0
  248. package/excel/excel-command-tool.directive.d.ts +41 -0
  249. package/excel/excel.component.d.ts +1 -1
  250. package/excel/excel.module.d.ts +3 -2
  251. package/expand-state/expandable.directive.d.ts +1 -1
  252. package/{fesm2020 → fesm2022}/progress-kendo-angular-treelist.mjs +4012 -2474
  253. package/filtering/base-filter-cell.component.d.ts +5 -1
  254. package/filtering/boolean-filter.component.d.ts +2 -7
  255. package/filtering/cell/autocomplete-filter-cell.component.d.ts +2 -7
  256. package/filtering/cell/date-filter-cell.component.d.ts +1 -1
  257. package/filtering/cell/filter-cell-operators.component.d.ts +1 -1
  258. package/filtering/cell/filter-cell-wrapper.component.d.ts +1 -1
  259. package/filtering/cell/filter-cell.component.d.ts +1 -1
  260. package/filtering/cell/numeric-filter-cell.component.d.ts +1 -1
  261. package/filtering/cell/string-filter-cell.component.d.ts +1 -1
  262. package/filtering/date-filter.component.d.ts +2 -11
  263. package/filtering/filter-host.directive.d.ts +2 -2
  264. package/filtering/filter-input-wrapper.component.d.ts +1 -2
  265. package/filtering/filter-input.directive.d.ts +1 -1
  266. package/filtering/filter-row.component.d.ts +1 -2
  267. package/filtering/filterable.d.ts +1 -1
  268. package/filtering/menu/boolean-filter-menu.component.d.ts +1 -1
  269. package/filtering/menu/date-filter-menu-input.component.d.ts +1 -1
  270. package/filtering/menu/date-filter-menu.component.d.ts +1 -7
  271. package/filtering/menu/filter-menu-container.component.d.ts +1 -1
  272. package/filtering/menu/filter-menu-host.directive.d.ts +1 -1
  273. package/filtering/menu/filter-menu-input-wrapper.component.d.ts +1 -1
  274. package/filtering/menu/filter-menu.component.d.ts +1 -4
  275. package/filtering/menu/filter-radio-button.directive.d.ts +1 -1
  276. package/filtering/menu/numeric-filter-menu-input.component.d.ts +1 -1
  277. package/filtering/menu/numeric-filter-menu.component.d.ts +1 -7
  278. package/filtering/menu/string-filter-menu-input.component.d.ts +1 -1
  279. package/filtering/menu/string-filter-menu.component.d.ts +1 -7
  280. package/filtering/numeric-filter.component.d.ts +2 -11
  281. package/filtering/operators/filter-operator.base.d.ts +1 -1
  282. package/filtering/string-filter.component.d.ts +2 -11
  283. package/index.d.ts +3 -0
  284. package/layout/resizable.directive.d.ts +1 -1
  285. package/localization/messages.d.ts +1 -1
  286. package/navigation/focusable.directive.d.ts +1 -1
  287. package/navigation/logical-cell.directive.d.ts +1 -1
  288. package/navigation/logical-row.directive.d.ts +1 -1
  289. package/package.json +27 -32
  290. package/pager/pager-context.service.d.ts +1 -1
  291. package/pager/pager-next-buttons.component.d.ts +1 -1
  292. package/pager/pager-numeric-buttons.component.d.ts +1 -1
  293. package/pager/pager-page-sizes.component.d.ts +1 -1
  294. package/pager/pager-settings.d.ts +1 -1
  295. package/pager/pager.component.d.ts +1 -1
  296. package/pdf/pdf-command-tool.directive.d.ts +41 -0
  297. package/pdf/pdf-margin.interface.d.ts +1 -1
  298. package/pdf/pdf.component.d.ts +1 -7
  299. package/pdf/pdf.module.d.ts +3 -2
  300. package/rendering/body.module.d.ts +6 -5
  301. package/rendering/cell.component.d.ts +2 -1
  302. package/rendering/common/col-group.component.d.ts +1 -1
  303. package/rendering/common/row-class.d.ts +2 -2
  304. package/rendering/common/spacer.component.d.ts +1 -1
  305. package/rendering/header/header.component.d.ts +1 -1
  306. package/rendering/list.component.d.ts +1 -1
  307. package/rendering/table-body.component.d.ts +1 -1
  308. package/rendering/toolbar/toolbar-template.directive.d.ts +1 -1
  309. package/rendering/toolbar/toolbar.component.d.ts +1 -1
  310. package/row-reordering/types.d.ts +1 -1
  311. package/schematics/ngAdd/index.js +3 -3
  312. package/scrolling/scroll-sync.service.d.ts +1 -1
  313. package/scrolling/scroller.service.d.ts +1 -1
  314. package/scrolling/scrollmode.d.ts +1 -1
  315. package/selection/is-selected.d.ts +1 -1
  316. package/selection/selectable.directive.d.ts +1 -1
  317. package/treelist.component.d.ts +1 -1
  318. package/treelist.module.d.ts +67 -65
  319. package/utils.d.ts +1 -1
  320. package/esm2020/common/dom-events.service.mjs +0 -26
  321. package/esm2020/filtering/cell/row-filtering.module.mjs +0 -77
  322. package/esm2020/filtering/menu/filter-menu.module.mjs +0 -80
  323. package/esm2020/localization/messages.mjs +0 -138
  324. package/esm2020/pager/pager.module.mjs +0 -43
  325. package/esm2020/rendering/body.module.mjs +0 -40
  326. package/esm2020/treelist.module.mjs +0 -176
  327. package/fesm2015/progress-kendo-angular-treelist.mjs +0 -21537
  328. /package/{esm2020 → esm2022}/column-menu/column-menu-settings.interface.mjs +0 -0
  329. /package/{esm2020 → esm2022}/column-menu/utils.mjs +0 -0
  330. /package/{esm2020 → esm2022}/column-resizing/column-resize.interface.mjs +0 -0
  331. /package/{esm2020 → esm2022}/columns/column-common.mjs +0 -0
  332. /package/{esm2020 → esm2022}/columns/sort-settings.mjs +0 -0
  333. /package/{esm2020 → esm2022}/common/cell-click-event-args.interface.mjs +0 -0
  334. /package/{esm2020 → esm2022}/common/create-form-group.mjs +0 -0
  335. /package/{esm2020 → esm2022}/common/default-track-by.mjs +0 -0
  336. /package/{esm2020 → esm2022}/common/filter-descriptor-differ.mjs +0 -0
  337. /package/{esm2020 → esm2022}/common/filter-operator.interface.mjs +0 -0
  338. /package/{esm2020 → esm2022}/common/remove-confirmation.mjs +0 -0
  339. /package/{esm2020 → esm2022}/constants.mjs +0 -0
  340. /package/{esm2020 → esm2022}/data/change-event-args.interface.mjs +0 -0
  341. /package/{esm2020 → esm2022}/data/data-item.interface.mjs +0 -0
  342. /package/{esm2020 → esm2022}/data/treelist-item.interface.mjs +0 -0
  343. /package/{esm2020 → esm2022}/dragdrop/column-reorder-config.mjs +0 -0
  344. /package/{esm2020 → esm2022}/dragdrop/common.mjs +0 -0
  345. /package/{esm2020 → esm2022}/dragdrop/context-types.mjs +0 -0
  346. /package/{esm2020 → esm2022}/editing/add-event-args.interface.mjs +0 -0
  347. /package/{esm2020 → esm2022}/editing/cancel-event-args.interface.mjs +0 -0
  348. /package/{esm2020 → esm2022}/editing/edit-event-args.interface.mjs +0 -0
  349. /package/{esm2020 → esm2022}/editing/remove-event-args.interface.mjs +0 -0
  350. /package/{esm2020 → esm2022}/editing/save-event-args.interface.mjs +0 -0
  351. /package/{esm2020 → esm2022}/editing-directives/create-form-group-args.interface.mjs +0 -0
  352. /package/{esm2020 → esm2022}/editing-directives/edit-service.interface.mjs +0 -0
  353. /package/{esm2020 → esm2022}/editing-directives/local-edit.service.mjs +0 -0
  354. /package/{esm2020 → esm2022}/editing-directives/utils.mjs +0 -0
  355. /package/{esm2020 → esm2022}/excel/excel-export-data.interface.mjs +0 -0
  356. /package/{esm2020 → esm2022}/filtering/cell/filter-cell-component.factory.mjs +0 -0
  357. /package/{esm2020 → esm2022}/filtering/filter-component.interface.mjs +0 -0
  358. /package/{esm2020 → esm2022}/filtering/filterable.mjs +0 -0
  359. /package/{esm2020 → esm2022}/filtering/menu/filter-menu-component.factory.mjs +0 -0
  360. /package/{esm2020 → esm2022}/layout/row-sync.mjs +0 -0
  361. /package/{esm2020 → esm2022}/navigation/focusable-element.interface.mjs +0 -0
  362. /package/{esm2020 → esm2022}/navigation/logical-cell.interface.mjs +0 -0
  363. /package/{esm2020 → esm2022}/navigation/logical-row.interface.mjs +0 -0
  364. /package/{esm2020 → esm2022}/navigation/navigation-cell.interface.mjs +0 -0
  365. /package/{esm2020 → esm2022}/navigation/navigation-change.interface.mjs +0 -0
  366. /package/{esm2020 → esm2022}/navigation/navigation-mode.mjs +0 -0
  367. /package/{esm2020 → esm2022}/navigation/navigation-row.interface.mjs +0 -0
  368. /package/{esm2020 → esm2022}/pager/pager-settings.mjs +0 -0
  369. /package/{esm2020 → esm2022}/pager/pagesize-item.interface.mjs +0 -0
  370. /package/{esm2020 → esm2022}/pdf/export-element.mjs +0 -0
  371. /package/{esm2020 → esm2022}/pdf/pdf-export-event.mjs +0 -0
  372. /package/{esm2020 → esm2022}/pdf/pdf-margin.interface.mjs +0 -0
  373. /package/{esm2020 → esm2022}/progress-kendo-angular-treelist.mjs +0 -0
  374. /package/{esm2020 → esm2022}/rendering/common/dom-queries.mjs +0 -0
  375. /package/{esm2020 → esm2022}/rendering/common/row-class.mjs +0 -0
  376. /package/{esm2020 → esm2022}/rendering/constants.mjs +0 -0
  377. /package/{esm2020 → esm2022}/row-reordering/types.mjs +0 -0
  378. /package/{esm2020 → esm2022}/row-reordering/utils.mjs +0 -0
  379. /package/{esm2020 → esm2022}/scrolling/content-scroll-event.mjs +0 -0
  380. /package/{esm2020 → esm2022}/scrolling/scroll-bottom-event.mjs +0 -0
  381. /package/{esm2020 → esm2022}/scrolling/scrollmode.mjs +0 -0
  382. /package/{esm2020 → esm2022}/selection/is-selected.mjs +0 -0
  383. /package/{esm2020 → esm2022}/selection/selectable-settings.mjs +0 -0
  384. /package/{esm2020 → esm2022}/utils.mjs +0 -0
package/README.md CHANGED
@@ -2,34 +2,63 @@
2
2
  <img [width]="631" src="https://www.telerik.com/kendo-angular-ui/npm-banner.svg">
3
3
  </a>
4
4
 
5
- ## Kendo UI for Angular TreeList Component
5
+ ## Kendo UI for Angular TreeList
6
6
 
7
- > **Important**
8
- > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)&mdash;a commercial library.
9
- > * You will need to install a license key when adding the package to your project. For more information, please refer to the [Kendo UI for Angular My License page](https://www.telerik.com/kendo-angular-ui/my-license?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist).
10
- > * To receive a license key, you need to either [purchase a license](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist). Doing so indicates that you [accept the Kendo UI for Angular License Agreement](https://www.telerik.com/purchase/license-agreement/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist).
7
+ > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui)&mdash;a commercial library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
8
+ > * You must [install a license key](https://www.telerik.com/kendo-angular-ui/my-license) when adding the package to your project. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
11
9
  > * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular dev team!
12
10
  >
13
- > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist) and speed up your development process!
11
+ > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
14
12
 
15
- Kendo UI for Angular is a commercial UI library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
13
+ ## Angular TreeList Component
16
14
 
17
- The Kendo UI for Angular Tree List component is one of the most powerful and flexible data components designed for Angular developers looking to display relational data. The Angular Tree Grid is perfect for data that is homogenous and hierarchical, which means all data items have the same fields and each level aligns its columns with the parent and child elements. The Angular Tree Grid comes with critical features, including sorting, filtering, paging, editing and row and column virtualization to assist with handling large datasets. Each column of the Angular TreeList can be resized, reordered by dragging and dropping and hidden through the dedicated column menu. Moreover, users can customize the cells of the Angular TreeList with Angular templates to provide a custom look and feel.
15
+ The [Kendo UI for Angular TreeList](https://www.telerik.com/kendo-angular-ui/treelist) is one of the most powerful and flexible data components designed for Angular developers looking to display relational data. The TreeList displays hierarchical data in a tabular format and comes with an extensive set of built-in features including paging, sorting, filtering, as well as row and column virtualization to assist with handling large datasets.
18
16
 
19
- ## Resources
17
+ ## Key Features
18
+
19
+ Among the many features which the Kendo UI for Angular TreeList delivers are:
20
+
21
+ * [Data Binding](https://www.telerik.com/kendo-angular-ui/components/treelist/data-binding/basics)&mdash;The TreeList features built-in and custom data-binding directives, which encapsulate the logic for handling data operations such as sorting and filtering out-of-the-box.
22
+ * [Editing](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/)&mdash;Depending on your users' requirements, you can opt for the inline or the in-cell edit modes, provide editing from an external form or Redux Form, and also further customize the TreeList.
23
+ * [Paging](https://www.telerik.com/kendo-angular-ui/components/treelist/paging/basics)&mdash;Enables you to split its content into pages by adding a pager and using its extensive set of configuration options such as implementing a responsive behavior, customizing its appearance, defining the space between its elements, and more.
24
+ * [Sorting](https://www.telerik.com/kendo-angular-ui/components/treelist/sorting/basics)&mdash;Supports a number of sorting options including sorting and unsorting single and multiple columns, pre-sorting its data records, setting the sorting direction, and more.
25
+ * [Filtering](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics)&mdash;Provides options for displaying only those data records which meet specified criteria and also for additionally customizing its filtering behavior by using its built-in filter templates or reusable custom filter components.
26
+ * Export to [PDF](https://www.telerik.com/kendo-angular-ui/components/treelist/export/pdf-export) and [Excel](https://www.telerik.com/kendo-angular-ui/components/treelist/export/excel-export)&mdash;When implementing the TreeList export to PDF, you can set the fonts, the exact portion and layout of the exported content, also customize the columns and other elements of the output result. When exporting to Excel, you can export specific data and customize the exported columns.
27
+ * [Columns Options](https://www.telerik.com/kendo-angular-ui/components/treelist/columns/define-columns)&mdash;The TreeList provides an extensive collection of column configuration options, such as:
28
+ - [Hiding columns](https://www.telerik.com/kendo-angular-ui/components/treelist/columns/hidden)&mdash;Allows you to show or hide columns.
29
+ - [Spanning columns](https://www.telerik.com/kendo-angular-ui/components/treelist/columns/spanned) &mdash;Spanning of the row content over multiple cells of data.
30
+ - [Setting multi-column headers](https://www.telerik.com/kendo-angular-ui/components/treelist/columns/headers)&mdash;Grouping columns under a common header.
31
+ - [Column menu for quick actions](https://www.telerik.com/kendo-angular-ui/components/treelist/accessories/column-menu)&mdash;You can show or hide columns, filter, sort, and group them.
32
+ - [Locking (freezing) columns](https://www.telerik.com/kendo-angular-ui/components/treelist/columns/locked)&mdash;Allows you to display specific column data at all times.
33
+ - [Reordering columns](https://www.telerik.com/kendo-angular-ui/components/treelist/columns/reordering)&mdash;You can reorder any column and with any available TreeList feature, including locked columns.
34
+ - [Resizing columns](https://www.telerik.com/kendo-angular-ui/components/treelist/columns/resizing)&mdash;Allows you to resize columns in real-time by dragging the edges of the column headers.
35
+ - [Customizing columns](https://www.telerik.com/kendo-angular-ui/components/treelist/columns/templates)&mdash;Allows you to customize the columns of the TreeList using the available template directives.
36
+ * [Row Reordering](https://www.telerik.com/kendo-angular-ui/components/treelist/row-reordering)&mdash;Enables quick and easy row reordering via dragging specified hint element and dropping it at the desired position.
37
+ * [Selection](https://www.telerik.com/kendo-angular-ui/components/treelist/selection)&mdash;Allows the user to select single or multiple cells and rows. It offers various ways to select data items, including directly clicking on a row or via a checkbox column. You can also customize the selection logic and persist the selected items based on specific requirements.
38
+ * [Virtualization](https://www.telerik.com/kendo-angular-ui/components/treelist/scroll-modes/virtual)&mdash;Supports a virtual scroll mode for its row data, which means that the component dynamically renders only a portion of the rows, which boosts the performance of the component when it has to display large data tables.
39
+ * [Styling](https://www.telerik.com/kendo-angular-ui/components/treelist/styling/columns)&mdash;Provides built-in options for customizing the appearance and changing the default layout of its columns and rows, as well as the individual cells.
40
+ * [Globalization](https://www.telerik.com/kendo-angular-ui/components/treelist/globalization/)&mdash;By using the available globalization options in Kendo UI for Angular, you can translate the TreeList messages by adapting them to specific culture locales. Additionally, the TreeList supports rendering in a right-to-left (RTL) direction.
41
+ * [Accessibility](https://www.telerik.com/kendo-angular-ui/components/treelist/accessibility/)&mdash;The Kendo UI for Angular TreeList is compliant with the Section 508 requirements. The TreeList is accessible by screen readers and provides WAI-ARIA support.
42
+ * [Keyboard Navigation](https://www.telerik.com/kendo-angular-ui/components/treelist/keyboard-navigation)&mdash;The Kendo UI for Angular TreeList supports a number of keyboard shortcuts which allow users to accomplish various commands.
20
43
 
21
- * [Get Started with Kendo UI for Angular (requires trial registration)](https://www.telerik.com/kendo-angular-ui/getting-started?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)
22
- * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)
23
- * [Blogs](http://www.telerik.com/blogs/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)
24
- * [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)
44
+ ## Support Options
25
45
 
26
- ## Questions and Feedback
46
+ For any issues you might encounter while working with the Kendo UI for Angular TreeList, you have the following support channels available:
47
+
48
+ * Industry-leading technical support&mdash;Kendo UI for Angular paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use the [dedicated Kendo UI for Angular support system](https://www.telerik.com/account/support-tickets).
49
+ * Product forums&mdash;The [Kendo UI for Angular forums](https://www.telerik.com/forums/kendo-angular-ui) are part of the free support you can get from the community and from the Kendo UI for Angular team.
50
+ * Feedback portal&mdash;The [Kendo UI for Angular feedback portal](https://feedback.telerik.com/kendo-angular-ui) is where you can request and vote for new features to be added.
51
+
52
+ ## Resources
27
53
 
28
- * [Official Forums](https://www.telerik.com/forums/kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)
29
- * [GitHub Issues](https://github.com/telerik/kendo-angular/issues?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)
30
- * [Feedback Portal](https://feedback.telerik.com/kendo-angular-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)
31
- * [StackOverflow](https://stackoverflow.com/questions/tagged/kendo-ui-angular2?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-treelist)
54
+ * [Getting Started with Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/getting-started)
55
+ * [Getting Started with the Kendo UI for Angular TreeList](https://www.telerik.com/kendo-angular-ui/components/treelist/installation/getting-started)
56
+ * [TreeList Overview page](https://www.telerik.com/kendo-angular-ui/components/treelist) and [TreeList API reference](https://www.telerik.com/kendo-angular-ui/components/treelist/api)
57
+ * [Kendo UI for Angular roadmap](https://www.telerik.com/kendo-angular-ui/roadmap)
58
+ * [Blogs](http://www.telerik.com/blogs/kendo-ui)
59
+ * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components)
60
+ * [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui)
32
61
 
33
- *Copyright © 2021 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
62
+ *Copyright © 2024 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
34
63
 
35
64
  *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
@@ -65,5 +65,5 @@ export declare abstract class BaseBindingDirective implements OnInit, OnDestroy,
65
65
  protected calculateAggregates(items: any): any;
66
66
  protected updateData(value: any[]): void;
67
67
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseBindingDirective, never>;
68
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseBindingDirective, never, never, { "sort": "sort"; "filter": "filter"; "aggregate": "aggregate"; }, {}, never, never, false, never>;
68
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseBindingDirective, never, never, { "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "aggregate": { "alias": "aggregate"; "required": false; }; }, {}, never, never, false, never>;
69
69
  }
@@ -46,5 +46,5 @@ export declare class FlatBindingDirective extends BaseBindingDirective {
46
46
  protected itemKey(item: any): void;
47
47
  protected onRowReorder(ev: RowReorderEvent): void;
48
48
  static ɵfac: i0.ɵɵFactoryDeclaration<FlatBindingDirective, [null, { optional: true; }]>;
49
- static ɵdir: i0.ɵɵDirectiveDeclaration<FlatBindingDirective, "[kendoTreeListFlatBinding]", ["kendoTreeListFlatBinding"], { "parentIdField": "parentIdField"; "idField": "idField"; "data": "kendoTreeListFlatBinding"; }, {}, never, never, true, never>;
49
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FlatBindingDirective, "[kendoTreeListFlatBinding]", ["kendoTreeListFlatBinding"], { "parentIdField": { "alias": "parentIdField"; "required": false; }; "idField": { "alias": "idField"; "required": false; }; "data": { "alias": "kendoTreeListFlatBinding"; "required": false; }; }, {}, never, never, true, never>;
50
50
  }
@@ -37,5 +37,5 @@ export declare class HierarchyBindingDirective extends BaseBindingDirective {
37
37
  protected itemKey(item: any): void;
38
38
  protected onRowReorder(ev: RowReorderEvent): void;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<HierarchyBindingDirective, [null, { optional: true; }]>;
40
- static ɵdir: i0.ɵɵDirectiveDeclaration<HierarchyBindingDirective, "[kendoTreeListHierarchyBinding]", ["kendoTreeListHierarchyBinding"], { "childrenField": "childrenField"; "data": "kendoTreeListHierarchyBinding"; }, {}, never, never, true, never>;
40
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HierarchyBindingDirective, "[kendoTreeListHierarchyBinding]", ["kendoTreeListHierarchyBinding"], { "childrenField": { "alias": "childrenField"; "required": false; }; "data": { "alias": "kendoTreeListHierarchyBinding"; "required": false; }; }, {}, never, never, true, never>;
41
41
  }
@@ -60,5 +60,5 @@ export declare class ColumnChooserComponent implements OnDestroy {
60
60
  private close;
61
61
  private detachClose;
62
62
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnChooserComponent, never>;
63
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnChooserComponent, "kendo-treelist-column-chooser", never, { "autoSync": "autoSync"; "allowHideAll": "allowHideAll"; }, {}, never, never, true, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnChooserComponent, "kendo-treelist-column-chooser", never, { "autoSync": { "alias": "autoSync"; "required": false; }; "allowHideAll": { "alias": "allowHideAll"; "required": false; }; }, {}, never, never, true, never>;
64
64
  }
@@ -40,5 +40,5 @@ export declare class ColumnListComponent implements OnInit, OnDestroy {
40
40
  private updateDisabled;
41
41
  private updateColumnState;
42
42
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnListComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnListComponent, "kendo-treelist-columnlist", never, { "columns": "columns"; "autoSync": "autoSync"; "allowHideAll": "allowHideAll"; "applyText": "applyText"; "resetText": "resetText"; "actionsClass": "actionsClass"; }, { "reset": "reset"; "apply": "apply"; "columnChange": "columnChange"; }, never, never, true, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnListComponent, "kendo-treelist-columnlist", never, { "columns": { "alias": "columns"; "required": false; }; "autoSync": { "alias": "autoSync"; "required": false; }; "allowHideAll": { "alias": "allowHideAll"; "required": false; }; "applyText": { "alias": "applyText"; "required": false; }; "resetText": { "alias": "resetText"; "required": false; }; "actionsClass": { "alias": "actionsClass"; "required": false; }; }, { "reset": "reset"; "apply": "apply"; "columnChange": "columnChange"; }, never, never, true, never>;
44
44
  }
@@ -46,5 +46,5 @@ export declare class ColumnMenuChooserComponent extends ColumnMenuItemBase {
46
46
  */
47
47
  onApply(changed: any[]): void;
48
48
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnMenuChooserComponent, never>;
49
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuChooserComponent, "kendo-treelist-columnmenu-chooser", never, { "expanded": "expanded"; }, { "expand": "expand"; "collapse": "collapse"; }, never, never, true, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuChooserComponent, "kendo-treelist-columnmenu-chooser", never, { "expanded": { "alias": "expanded"; "required": false; }; }, { "expand": "expand"; "collapse": "collapse"; }, never, never, true, never>;
50
50
  }
@@ -38,5 +38,5 @@ export declare class ColumnMenuFilterComponent extends ColumnMenuItemBase {
38
38
  filterIcon: SVGIcon;
39
39
  constructor(localization: LocalizationService);
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnMenuFilterComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuFilterComponent, "kendo-treelist-columnmenu-filter", never, { "expanded": "expanded"; }, { "expand": "expand"; "collapse": "collapse"; }, never, never, true, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuFilterComponent, "kendo-treelist-columnmenu-filter", never, { "expanded": { "alias": "expanded"; "required": false; }; }, { "expand": "expand"; "collapse": "collapse"; }, never, never, true, never>;
42
42
  }
@@ -21,5 +21,5 @@ export declare class ColumnMenuItemBase implements OnInit {
21
21
  */
22
22
  close(): void;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnMenuItemBase, never>;
24
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnMenuItemBase, never, never, { "service": "service"; }, {}, never, never, false, never>;
24
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnMenuItemBase, never, never, { "service": { "alias": "service"; "required": false; }; }, {}, never, never, false, never>;
25
25
  }
@@ -71,5 +71,5 @@ export declare class ColumnMenuItemComponent implements OnChanges {
71
71
  onClick(e: any): void;
72
72
  private updateContentState;
73
73
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnMenuItemComponent, never>;
74
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuItemComponent, "kendo-treelist-columnmenu-item", never, { "icon": "icon"; "svgIcon": "svgIcon"; "text": "text"; "selected": "selected"; "disabled": "disabled"; "expanded": "expanded"; }, { "itemClick": "itemClick"; "expand": "expand"; "collapse": "collapse"; }, ["contentTemplate"], never, true, never>;
74
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuItemComponent, "kendo-treelist-columnmenu-item", never, { "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; }, { "itemClick": "itemClick"; "expand": "expand"; "collapse": "collapse"; }, ["contentTemplate"], never, true, never>;
75
75
  }
@@ -98,5 +98,5 @@ export declare class ColumnMenuComponent implements OnChanges, OnDestroy {
98
98
  */
99
99
  onFilterExpand(): void;
100
100
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnMenuComponent, never>;
101
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuComponent, "kendo-treelist-column-menu", never, { "standalone": "standalone"; "column": "column"; "settings": "settings"; "sort": "sort"; "filter": "filter"; "sortable": "sortable"; "columnMenuTemplate": "columnMenuTemplate"; }, {}, never, never, true, never>;
101
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnMenuComponent, "kendo-treelist-column-menu", never, { "standalone": { "alias": "standalone"; "required": false; }; "column": { "alias": "column"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "columnMenuTemplate": { "alias": "columnMenuTemplate"; "required": false; }; }, {}, never, never, true, never>;
102
102
  }
@@ -37,5 +37,5 @@ export declare class ColumnHandleDirective implements OnInit, OnDestroy {
37
37
  private updateWidth;
38
38
  private columnsForLevel;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnHandleDirective, [{ host: true; }, null, null, null, null, null]>;
40
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnHandleDirective, "[kendoTreeListColumnHandle]", never, { "columns": "columns"; "column": "column"; }, {}, never, never, true, never>;
40
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnHandleDirective, "[kendoTreeListColumnHandle]", never, { "columns": { "alias": "columns"; "required": false; }; "column": { "alias": "column"; "required": false; }; }, {}, never, never, true, never>;
41
41
  }
@@ -24,7 +24,7 @@ export interface ColumnResizeArgs {
24
24
  /**
25
25
  * @hidden
26
26
  */
27
- export declare type ActionType = 'start' | 'resizeColumn' | 'resizeTable' | 'end' | 'autoFitComplete' | 'triggerAutoFit';
27
+ export type ActionType = 'start' | 'resizeColumn' | 'resizeTable' | 'end' | 'autoFitComplete' | 'triggerAutoFit';
28
28
  /**
29
29
  * @hidden
30
30
  */
@@ -51,8 +51,8 @@ export interface AutoFitInfo {
51
51
  /**
52
52
  * @hidden
53
53
  */
54
- export declare type AutoFitObservable = Observable<Array<number>>;
54
+ export type AutoFitObservable = Observable<Array<number>>;
55
55
  /**
56
56
  * @hidden
57
57
  */
58
- export declare type AutoFitFn = (columns: Array<AutoFitInfo>) => AutoFitObservable;
58
+ export type AutoFitFn = (columns: Array<AutoFitInfo>) => AutoFitObservable;
@@ -29,5 +29,5 @@ export declare class TableDirective implements OnInit, OnDestroy {
29
29
  private autoFitObservable;
30
30
  private measureColumn;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<TableDirective, never>;
32
- static ɵdir: i0.ɵɵDirectiveDeclaration<TableDirective, "[kendoTreeListResizableTable]", never, { "locked": "locked"; "virtualColumns": "virtualColumns"; }, {}, never, never, true, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableDirective, "[kendoTreeListResizableTable]", never, { "locked": { "alias": "locked"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; }, {}, never, never, true, never>;
33
33
  }
@@ -29,5 +29,5 @@ export declare class CheckboxColumnComponent extends ColumnBase {
29
29
  constructor(parent?: ColumnBase);
30
30
  get templateRef(): TemplateRef<any>;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxColumnComponent, [{ optional: true; host: true; skipSelf: true; }]>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxColumnComponent, "kendo-treelist-checkbox-column", never, { "showSelectAll": "showSelectAll"; "checkChildren": "checkChildren"; "expandable": "expandable"; }, {}, ["template"], never, true, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxColumnComponent, "kendo-treelist-checkbox-column", never, { "showSelectAll": { "alias": "showSelectAll"; "required": false; }; "checkChildren": { "alias": "checkChildren"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; }, {}, ["template"], never, true, never>;
33
33
  }
@@ -232,5 +232,5 @@ export declare class ColumnBase implements OnChanges {
232
232
  constructor(parent?: ColumnBase, optionChanges?: OptionChangesService);
233
233
  ngOnChanges(_changes: any): void;
234
234
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnBase, never>;
235
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnBase, never, never, { "resizable": "resizable"; "reorderable": "reorderable"; "minResizableWidth": "minResizableWidth"; "title": "title"; "width": "width"; "autoSize": "autoSize"; "locked": "locked"; "hidden": "hidden"; "media": "media"; "lockable": "lockable"; "columnMenu": "columnMenu"; "includeInChooser": "includeInChooser"; "tableCellsRole": "tableCellsRole"; "style": "style"; "headerStyle": "headerStyle"; "footerStyle": "footerStyle"; "cssClass": "class"; "headerClass": "headerClass"; "footerClass": "footerClass"; }, {}, ["footerTemplate", "headerTemplates", "columnMenuTemplates"], never, false, never>;
235
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnBase, never, never, { "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "minResizableWidth": { "alias": "minResizableWidth"; "required": false; }; "title": { "alias": "title"; "required": false; }; "width": { "alias": "width"; "required": false; }; "autoSize": { "alias": "autoSize"; "required": false; }; "locked": { "alias": "locked"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "media": { "alias": "media"; "required": false; }; "lockable": { "alias": "lockable"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "includeInChooser": { "alias": "includeInChooser"; "required": false; }; "tableCellsRole": { "alias": "tableCellsRole"; "required": false; }; "style": { "alias": "style"; "required": false; }; "headerStyle": { "alias": "headerStyle"; "required": false; }; "footerStyle": { "alias": "footerStyle"; "required": false; }; "cssClass": { "alias": "class"; "required": false; }; "headerClass": { "alias": "headerClass"; "required": false; }; "footerClass": { "alias": "footerClass"; "required": false; }; }, {}, ["footerTemplate", "headerTemplates", "columnMenuTemplates"], never, false, never>;
236
236
  }
@@ -86,5 +86,5 @@ export declare class ColumnComponent extends ColumnBase {
86
86
  */
87
87
  get isEditable(): boolean;
88
88
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnComponent, [{ optional: true; host: true; skipSelf: true; }, null]>;
89
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnComponent, "kendo-treelist-column", never, { "expandable": "expandable"; "field": "field"; "format": "format"; "sortable": "sortable"; "editor": "editor"; "filter": "filter"; "filterable": "filterable"; "editable": "editable"; }, {}, ["template", "editTemplate", "filterCellTemplate", "filterMenuTemplate"], never, true, never>;
89
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnComponent, "kendo-treelist-column", never, { "expandable": { "alias": "expandable"; "required": false; }; "field": { "alias": "field"; "required": false; }; "format": { "alias": "format"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "editor": { "alias": "editor"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; }, {}, ["template", "editTemplate", "filterCellTemplate", "filterMenuTemplate"], never, true, never>;
90
90
  }
@@ -13,7 +13,7 @@
13
13
  * </kendo-treelist>
14
14
  * ```
15
15
  */
16
- export declare type ColumnSortSettings = boolean | {
16
+ export type ColumnSortSettings = boolean | {
17
17
  /**
18
18
  * Enables the removal of the column sorting.
19
19
  */
@@ -35,7 +35,7 @@ export declare type ColumnSortSettings = boolean | {
35
35
  * <kendo-treelist [sortable]="{ mode: 'multiple', allowUnsort: false}"></kendo-treelist>
36
36
  * ```
37
37
  */
38
- export declare type SortSettings = boolean | ColumnSortSettings & {
38
+ export type SortSettings = boolean | ColumnSortSettings & {
39
39
  /**
40
40
  * The sort mode of the TreeList.
41
41
  *
@@ -38,40 +38,40 @@ export declare class SpanColumnComponent extends ColumnBase {
38
38
  */
39
39
  expandable: boolean;
40
40
  readonly isSpanColumn: boolean;
41
- template: QueryList<CellTemplateDirective>;
42
- editTemplate: QueryList<EditTemplateDirective>;
43
41
  /**
44
42
  * @hidden
45
43
  */
46
- childColumns: QueryList<ColumnComponent>;
44
+ title: string;
47
45
  /**
48
46
  * @hidden
49
47
  */
50
- title: string;
48
+ headerClass: string | string[] | Set<string> | {
49
+ [key: string]: any;
50
+ };
51
51
  /**
52
52
  * @hidden
53
53
  */
54
- headerStyle: {
55
- [key: string]: string;
54
+ footerClass: string | string[] | Set<string> | {
55
+ [key: string]: any;
56
56
  };
57
57
  /**
58
58
  * @hidden
59
59
  */
60
- footerStyle: {
60
+ headerStyle: {
61
61
  [key: string]: string;
62
62
  };
63
63
  /**
64
64
  * @hidden
65
65
  */
66
- headerClass: string | string[] | Set<string> | {
67
- [key: string]: any;
66
+ footerStyle: {
67
+ [key: string]: string;
68
68
  };
69
+ template: QueryList<CellTemplateDirective>;
70
+ editTemplate: QueryList<EditTemplateDirective>;
69
71
  /**
70
72
  * @hidden
71
73
  */
72
- footerClass: string | string[] | Set<string> | {
73
- [key: string]: any;
74
- };
74
+ childColumns: QueryList<ColumnComponent>;
75
75
  /**
76
76
  * @hidden
77
77
  */
@@ -120,5 +120,5 @@ export declare class SpanColumnComponent extends ColumnBase {
120
120
  get childrenArray(): any[];
121
121
  get hasChildren(): boolean;
122
122
  static ɵfac: i0.ɵɵFactoryDeclaration<SpanColumnComponent, [{ optional: true; host: true; skipSelf: true; }, null]>;
123
- static ɵcmp: i0.ɵɵComponentDeclaration<SpanColumnComponent, "kendo-treelist-span-column", never, { "expandable": "expandable"; "editable": "editable"; "locked": "locked"; }, {}, ["template", "editTemplate", "childColumns"], never, true, never>;
123
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpanColumnComponent, "kendo-treelist-span-column", never, { "expandable": { "alias": "expandable"; "required": false; }; "title": { "alias": "title"; "required": false; }; "headerClass": { "alias": "headerClass"; "required": false; }; "footerClass": { "alias": "footerClass"; "required": false; }; "headerStyle": { "alias": "headerStyle"; "required": false; }; "footerStyle": { "alias": "footerStyle"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "locked": { "alias": "locked"; "required": false; }; }, {}, ["template", "editTemplate", "childColumns"], never, true, never>;
124
124
  }
@@ -7,4 +7,4 @@ import { CreateFormGroupArgs } from "../editing-directives/create-form-group-arg
7
7
  /**
8
8
  * The function that creates the `FormGroup` for the edited model.
9
9
  */
10
- export declare type CreateFormGroup = (args: CreateFormGroupArgs) => FormGroup;
10
+ export type CreateFormGroup = (args: CreateFormGroupArgs) => FormGroup;
@@ -16,7 +16,6 @@ import * as i0 from "@angular/core";
16
16
  * and a avoids dependency cycles between components.
17
17
  */
18
18
  export declare class ContextService {
19
- private renderer;
20
19
  treelist: TreeListComponent;
21
20
  topToolbarNavigation: TreeListToolbarNavigationService;
22
21
  bottomToolbarNavigation: TreeListToolbarNavigationService;
@@ -6,4 +6,4 @@ import { Observable } from "rxjs";
6
6
  /**
7
7
  * A function that is called to confirm if the `dataItem` will be removed.
8
8
  */
9
- export declare type RemoveConfirmationCallback = (dataItem: any, parent: any) => Promise<boolean> | Observable<boolean> | boolean;
9
+ export type RemoveConfirmationCallback = (dataItem: any, parent: any) => Promise<boolean> | Observable<boolean> | boolean;
@@ -7,4 +7,4 @@ import { DataItem } from './data-item.interface';
7
7
  * Represents an item that will be rendered by the TreeList.
8
8
  * Can be a [`DataItem`]({% slug api_treelist_dataitem %}). ([See example]({% slug api_treelist_treelistcomponent %}#toc-trackby))
9
9
  */
10
- export declare type TreeListItem = DataItem;
10
+ export type TreeListItem = DataItem;
package/directives.d.ts CHANGED
@@ -108,6 +108,9 @@ import { HeaderComponent } from './rendering/header/header.component';
108
108
  import { ColumnHandleDirective } from './column-resizing/column-handle.directive';
109
109
  import { CellComponent } from './rendering/cell.component';
110
110
  import { BooleanFilterRadioButtonDirective } from './filtering/menu/filter-radio-button.directive';
111
+ import { AddCommandToolbarDirective } from './editing/add-command-tool.directive';
112
+ import { ExcelCommandToolbarDirective } from './excel/excel-command-tool.directive';
113
+ import { PDFCommandToolbarDirective } from './pdf/pdf-command-tool.directive';
111
114
  /**
112
115
  * @hidden
113
116
  * Utility array that contains the former Shared module exports
@@ -117,7 +120,7 @@ export declare const SHARED_EXPORTS: readonly [typeof ColumnComponent, typeof Co
117
120
  * @hidden
118
121
  * Utility array that contains the Body module exports
119
122
  */
120
- export declare const BODY_EXPORTS: readonly [typeof CommandColumnComponent, typeof CellTemplateDirective, typeof CellComponent, typeof NoRecordsTemplateDirective, typeof EditTemplateDirective, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof FooterTemplateDirective];
123
+ export declare const BODY_EXPORTS: readonly [typeof CommandColumnComponent, typeof CellTemplateDirective, typeof CellComponent, typeof NoRecordsTemplateDirective, typeof EditTemplateDirective, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof FooterTemplateDirective];
121
124
  /**
122
125
  * @hidden
123
126
  * Utility array that contains the Header module exports
@@ -152,13 +155,13 @@ export declare const COLUMN_MENU_EXPORTS: readonly [typeof ColumnChooserComponen
152
155
  * @hidden
153
156
  * Utility array that contains the Excel module exports
154
157
  */
155
- export declare const EXCEL_EXPORTS: readonly [typeof ExcelComponent, typeof ExcelCommandDirective];
158
+ export declare const EXCEL_EXPORTS: readonly [typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective];
156
159
  /**
157
160
  * @hidden
158
161
  * Utility array that contains the PDF module exports
159
162
  */
160
- export declare const PDF_EXPORTS: readonly [typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective];
163
+ export declare const PDF_EXPORTS: readonly [typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
161
164
  /**
162
165
  * Utility array that contains all `@progress/kendo-angular-treelist` related components and directives
163
166
  */
164
- export declare const KENDO_TREELIST: readonly [typeof TreeListComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof TreeListSpacerComponent, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof HierarchyBindingDirective, typeof FlatBindingDirective, typeof ExpandableDirective, typeof SelectableDirective, typeof TreeListToolbarFocusableDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent, typeof CommandColumnComponent, typeof CellTemplateDirective, typeof CellComponent, typeof NoRecordsTemplateDirective, typeof EditTemplateDirective, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof FooterTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof PagerComponent, typeof PagerPrevButtonsComponent, typeof PagerNextButtonsComponent, typeof PagerNumericButtonsComponent, typeof PagerInputComponent, typeof PagerInfoComponent, typeof PagerPageSizesComponent, typeof PagerTemplateDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuTemplateDirective];
167
+ export declare const KENDO_TREELIST: readonly [typeof TreeListComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof TreeListSpacerComponent, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof HierarchyBindingDirective, typeof FlatBindingDirective, typeof ExpandableDirective, typeof SelectableDirective, typeof TreeListToolbarFocusableDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent, typeof CommandColumnComponent, typeof CellTemplateDirective, typeof CellComponent, typeof NoRecordsTemplateDirective, typeof EditTemplateDirective, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof FooterTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof PagerComponent, typeof PagerPrevButtonsComponent, typeof PagerNextButtonsComponent, typeof PagerNumericButtonsComponent, typeof PagerInputComponent, typeof PagerInfoComponent, typeof PagerPageSizesComponent, typeof PagerTemplateDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuTemplateDirective];
@@ -6,7 +6,7 @@ import { ColumnBase } from '../columns/column-base';
6
6
  /**
7
7
  * @hidden
8
8
  */
9
- export declare type DragAndDropContext = {
9
+ export type DragAndDropContext = {
10
10
  field?: string;
11
11
  hint?: string;
12
12
  lastTarget?: boolean;
@@ -36,5 +36,5 @@ export declare class DraggableColumnDirective implements OnInit, OnDestroy {
36
36
  private elementUnderCursor;
37
37
  private updateTouchAction;
38
38
  static ɵfac: i0.ɵɵFactoryDeclaration<DraggableColumnDirective, [{ host: true; }, null, null, null, null, null, null, null]>;
39
- static ɵdir: i0.ɵɵDirectiveDeclaration<DraggableColumnDirective, "[kendoDraggableColumn]", never, { "context": "context"; "enableDrag": "enableDrag"; }, { "drag": "drag"; }, never, never, true, never>;
39
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DraggableColumnDirective, "[kendoDraggableColumn]", never, { "context": { "alias": "context"; "required": false; }; "enableDrag": { "alias": "enableDrag"; "required": false; }; }, { "drag": "drag"; }, never, never, true, never>;
40
40
  }
@@ -22,5 +22,5 @@ export declare class DropTargetDirective implements OnInit, OnDestroy {
22
22
  ngOnDestroy(): void;
23
23
  private eventArgs;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<DropTargetDirective, never>;
25
- static ɵdir: i0.ɵɵDirectiveDeclaration<DropTargetDirective, "[kendoDropTarget]", never, { "context": "context"; }, { "enter": "enter"; "leave": "leave"; "drop": "drop"; }, never, never, true, never>;
25
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropTargetDirective, "[kendoDropTarget]", never, { "context": { "alias": "context"; "required": false; }; }, { "enter": "enter"; "leave": "leave"; "drop": "drop"; }, never, never, true, never>;
26
26
  }
@@ -0,0 +1,38 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { EditService } from './edit.service';
6
+ import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the command for adding a new item to the TreeList.
10
+ * You can apply this directive to any `kendo-toolbar-button` element inside a
11
+ * ToolbarComponent used in the TreeList.
12
+ *
13
+ * When the user clicks the toolbar button that is associated with the directive, the
14
+ * [add]({% slug api_treelist_treelistcomponent %}#toc-add) event is triggered.
15
+ *
16
+ * @example
17
+ * ```html-no-run
18
+ * <kendo-grid>
19
+ * <kendo-toolbar>
20
+ * <kendo-toolbar-button text="Add new" kendoTreeListAddTool></kendo-toolbar-button>
21
+ * </kendo-toolbar>
22
+ * </kendo-grid>
23
+ * ```
24
+ */
25
+ export declare class AddCommandToolbarDirective {
26
+ private editService;
27
+ private host;
28
+ private clickSub;
29
+ constructor(editService: EditService, host: ToolBarButtonComponent);
30
+ ngOnInit(): void;
31
+ ngOnDestroy(): void;
32
+ /**
33
+ * @hidden
34
+ */
35
+ onClick(e: any): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddCommandToolbarDirective, never>;
37
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AddCommandToolbarDirective, "[kendoTreeListAddTool]", never, {}, {}, never, never, true, never>;
38
+ }
@@ -41,5 +41,5 @@ export declare class AddCommandDirective extends BaseCommandDirective {
41
41
  constructor(editService: EditService, element: ElementRef, renderer: Renderer2, localization: LocalizationService, ngZone: NgZone);
42
42
  protected onClick(): void;
43
43
  static ɵfac: i0.ɵɵFactoryDeclaration<AddCommandDirective, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<AddCommandDirective, "[kendoTreeListAddCommand]", never, { "cellContext": "kendoTreeListAddCommand"; }, {}, never, ["*"], true, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddCommandDirective, "[kendoTreeListAddCommand]", never, { "cellContext": { "alias": "kendoTreeListAddCommand"; "required": false; }; }, {}, never, ["*"], true, never>;
45
45
  }
@@ -38,5 +38,5 @@ export declare class CancelCommandDirective extends BaseCommandDirective {
38
38
  constructor(editService: EditService, element: ElementRef, renderer: Renderer2, localization: LocalizationService, ngZone: NgZone);
39
39
  protected onClick(): void;
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<CancelCommandDirective, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<CancelCommandDirective, "[kendoTreeListCancelCommand]", never, { "cellContext": "kendoTreeListCancelCommand"; }, {}, never, ["*"], true, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<CancelCommandDirective, "[kendoTreeListCancelCommand]", never, { "cellContext": { "alias": "kendoTreeListCancelCommand"; "required": false; }; }, {}, never, ["*"], true, never>;
42
42
  }
@@ -6,4 +6,4 @@ import { SaveEvent } from "./save-event-args.interface";
6
6
  /**
7
7
  * Arguments for the `cancel` event. [See example](slug:editing_reactive_forms_treelist#toc-cancelling-editing).
8
8
  */
9
- export declare type CancelEvent = SaveEvent;
9
+ export type CancelEvent = SaveEvent;
@@ -39,5 +39,5 @@ export declare class EditCommandDirective extends BaseCommandDirective {
39
39
  constructor(editService: EditService, element: ElementRef, renderer: Renderer2, localization: LocalizationService, ngZone: NgZone);
40
40
  protected onClick(): void;
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<EditCommandDirective, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<EditCommandDirective, "[kendoTreeListEditCommand]", never, { "cellContext": "kendoTreeListEditCommand"; }, {}, never, ["*"], true, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditCommandDirective, "[kendoTreeListEditCommand]", never, { "cellContext": { "alias": "kendoTreeListEditCommand"; "required": false; }; }, {}, never, ["*"], true, never>;
43
43
  }
@@ -10,18 +10,18 @@ import * as i0 from "@angular/core";
10
10
  /**
11
11
  * @hidden
12
12
  */
13
- export declare type Entity = {
13
+ export type Entity = {
14
14
  index: number;
15
15
  group: any;
16
16
  };
17
17
  /**
18
18
  * @hidden
19
19
  */
20
- export declare type CommandAction = 'edit' | 'remove' | 'cancel' | 'save' | 'add';
20
+ export type CommandAction = 'edit' | 'remove' | 'cancel' | 'save' | 'add';
21
21
  /**
22
22
  * @hidden
23
23
  */
24
- export declare type CommandEvent = {
24
+ export type CommandEvent = {
25
25
  action: CommandAction;
26
26
  formGroup?: FormGroup;
27
27
  isNew?: boolean;
@@ -38,5 +38,5 @@ export declare class RemoveCommandDirective extends BaseCommandDirective {
38
38
  constructor(editService: EditService, element: ElementRef, renderer: Renderer2, localization: LocalizationService, ngZone: NgZone);
39
39
  protected onClick(): void;
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<RemoveCommandDirective, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<RemoveCommandDirective, "[kendoTreeListRemoveCommand]", never, { "cellContext": "kendoTreeListRemoveCommand"; }, {}, never, ["*"], true, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<RemoveCommandDirective, "[kendoTreeListRemoveCommand]", never, { "cellContext": { "alias": "kendoTreeListRemoveCommand"; "required": false; }; }, {}, never, ["*"], true, never>;
42
42
  }
@@ -38,5 +38,5 @@ export declare class SaveCommandDirective extends BaseCommandDirective {
38
38
  constructor(editService: EditService, element: ElementRef, renderer: Renderer2, localization: LocalizationService, ngZone: NgZone);
39
39
  protected onClick(): void;
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<SaveCommandDirective, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<SaveCommandDirective, "[kendoTreeListSaveCommand]", never, { "cellContext": "kendoTreeListSaveCommand"; }, {}, never, ["*"], true, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<SaveCommandDirective, "[kendoTreeListSaveCommand]", never, { "cellContext": { "alias": "kendoTreeListSaveCommand"; "required": false; }; }, {}, never, ["*"], true, never>;
42
42
  }
@@ -6,4 +6,4 @@ import { EditEvent } from "../editing/edit-event-args.interface";
6
6
  /**
7
7
  * The argument that is passed to the `createFormGroup` function.
8
8
  */
9
- export declare type CreateFormGroupArgs = EditEvent;
9
+ export type CreateFormGroupArgs = EditEvent;
@@ -55,5 +55,5 @@ export declare abstract class EditingDirectiveBase implements OnInit, OnDestroy
55
55
  protected clean(): void;
56
56
  protected onStateChange(): void;
57
57
  static ɵfac: i0.ɵɵFactoryDeclaration<EditingDirectiveBase, never>;
58
- static ɵdir: i0.ɵɵDirectiveDeclaration<EditingDirectiveBase, never, never, { "editService": "editService"; "newItemId": "newItemId"; "removeConfirmation": "removeConfirmation"; }, {}, never, never, false, never>;
58
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditingDirectiveBase, never, never, { "editService": { "alias": "editService"; "required": false; }; "newItemId": { "alias": "newItemId"; "required": false; }; "removeConfirmation": { "alias": "removeConfirmation"; "required": false; }; }, {}, never, never, false, never>;
59
59
  }