@progress/kendo-angular-treelist 13.0.0-develop.2 → 13.0.0-develop.20

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 (196) 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/autocomplete-filter-cell.component.mjs +12 -1
  64. package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +29 -12
  65. package/esm2020/filtering/cell/date-filter-cell.component.mjs +23 -12
  66. package/esm2020/filtering/cell/filter-cell-operators.component.mjs +36 -1
  67. package/esm2020/filtering/cell/filter-cell-wrapper.component.mjs +3 -1
  68. package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +25 -13
  69. package/esm2020/filtering/cell/string-filter-cell.component.mjs +26 -14
  70. package/esm2020/filtering/date-filter.component.mjs +6 -1
  71. package/esm2020/filtering/filter-input.directive.mjs +29 -3
  72. package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +33 -19
  73. package/esm2020/filtering/menu/date-filter-menu-input.component.mjs +1 -1
  74. package/esm2020/filtering/menu/date-filter-menu.component.mjs +12 -12
  75. package/esm2020/filtering/menu/filter-menu.component.mjs +1 -1
  76. package/esm2020/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
  77. package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +12 -12
  78. package/esm2020/filtering/menu/string-filter-menu-input.component.mjs +19 -8
  79. package/esm2020/filtering/menu/string-filter-menu.component.mjs +15 -0
  80. package/esm2020/filtering/numeric-filter.component.mjs +4 -1
  81. package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -5
  82. package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -5
  83. package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -5
  84. package/esm2020/filtering/operators/before-filter-operator.component.mjs +3 -6
  85. package/esm2020/filtering/operators/contains-filter-operator.component.mjs +1 -4
  86. package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +1 -4
  87. package/esm2020/filtering/operators/eq-filter-operator.component.mjs +1 -4
  88. package/esm2020/filtering/operators/gt-filter-operator.component.mjs +1 -4
  89. package/esm2020/filtering/operators/gte-filter-operator.component.mjs +1 -4
  90. package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +1 -4
  91. package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -4
  92. package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +1 -4
  93. package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +1 -4
  94. package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -5
  95. package/esm2020/filtering/operators/lte-filter-operator.component.mjs +1 -4
  96. package/esm2020/filtering/operators/neq-filter-operator.component.mjs +1 -4
  97. package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +1 -4
  98. package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +1 -4
  99. package/esm2020/filtering/string-filter.component.mjs +2 -1
  100. package/esm2020/index.mjs +2 -0
  101. package/esm2020/localization/custom-messages.component.mjs +1 -1
  102. package/esm2020/localization/messages.mjs +13 -1
  103. package/esm2020/package-metadata.mjs +2 -2
  104. package/esm2020/pager/pager-element.component.mjs +17 -0
  105. package/esm2020/pager/pager-next-buttons.component.mjs +8 -11
  106. package/esm2020/pager/pager-numeric-buttons.component.mjs +1 -1
  107. package/esm2020/pager/pager-page-sizes.component.mjs +1 -1
  108. package/esm2020/pager/pager-prev-buttons.component.mjs +8 -11
  109. package/esm2020/pager/pager-template.directive.mjs +1 -1
  110. package/esm2020/pdf/pdf-command.directive.mjs +2 -2
  111. package/esm2020/pdf/pdf-margin.component.mjs +9 -0
  112. package/esm2020/rendering/cell-template.directive.mjs +1 -1
  113. package/esm2020/rendering/cell.component.mjs +73 -20
  114. package/esm2020/rendering/common/spacer.component.mjs +1 -1
  115. package/esm2020/rendering/constants.mjs +4 -0
  116. package/esm2020/rendering/header/header.component.mjs +6 -1
  117. package/esm2020/rendering/list.component.mjs +20 -18
  118. package/esm2020/rendering/table-body.component.mjs +5 -3
  119. package/esm2020/row-reordering/flat-reorder.service.mjs +48 -0
  120. package/esm2020/row-reordering/hierarchical-reorder.service.mjs +55 -0
  121. package/esm2020/row-reordering/row-reorder.service.mjs +220 -0
  122. package/esm2020/row-reordering/types.mjs +5 -0
  123. package/esm2020/row-reordering/utils.mjs +129 -0
  124. package/esm2020/shared.module.mjs +8 -3
  125. package/esm2020/treelist.component.mjs +229 -321
  126. package/esm2020/treelist.module.mjs +71 -66
  127. package/excel/excel-command.directive.d.ts +1 -1
  128. package/excel/excel-export-data.interface.d.ts +1 -1
  129. package/excel/excel.component.d.ts +9 -8
  130. package/fesm2015/progress-kendo-angular-treelist.mjs +1434 -832
  131. package/fesm2020/progress-kendo-angular-treelist.mjs +1426 -833
  132. package/filtering/cell/autocomplete-filter-cell.component.d.ts +4 -0
  133. package/filtering/cell/boolean-filter-cell.component.d.ts +19 -11
  134. package/filtering/cell/date-filter-cell.component.d.ts +15 -11
  135. package/filtering/cell/filter-cell-operators.component.d.ts +29 -1
  136. package/filtering/cell/numeric-filter-cell.component.d.ts +17 -12
  137. package/filtering/cell/string-filter-cell.component.d.ts +16 -11
  138. package/filtering/date-filter.component.d.ts +7 -11
  139. package/filtering/filter-input.directive.d.ts +7 -1
  140. package/filtering/menu/boolean-filter-menu.component.d.ts +19 -13
  141. package/filtering/menu/date-filter-menu.component.d.ts +12 -12
  142. package/filtering/menu/numeric-filter-menu.component.d.ts +12 -12
  143. package/filtering/menu/string-filter-menu-input.component.d.ts +4 -0
  144. package/filtering/menu/string-filter-menu.component.d.ts +15 -0
  145. package/filtering/numeric-filter.component.d.ts +4 -1
  146. package/filtering/operators/after-eq-filter-operator.component.d.ts +4 -0
  147. package/filtering/operators/after-filter-operator.component.d.ts +4 -0
  148. package/filtering/operators/before-eq-filter-operator.component.d.ts +4 -0
  149. package/filtering/operators/before-filter-operator.component.d.ts +4 -0
  150. package/filtering/operators/contains-filter-operator.component.d.ts +1 -4
  151. package/filtering/operators/ends-with-filter-operator.component.d.ts +1 -4
  152. package/filtering/operators/eq-filter-operator.component.d.ts +1 -4
  153. package/filtering/operators/gte-filter-operator.component.d.ts +1 -4
  154. package/filtering/operators/is-empty-filter-operator.component.d.ts +1 -4
  155. package/filtering/operators/is-not-empty-filter-operator.component.d.ts +1 -4
  156. package/filtering/operators/is-not-null-filter-operator.component.d.ts +1 -4
  157. package/filtering/operators/isnull-filter-operator.component.d.ts +1 -4
  158. package/filtering/operators/lt-filter-operator.component.d.ts +4 -0
  159. package/filtering/operators/neq-filter-operator.component.d.ts +1 -4
  160. package/filtering/operators/not-contains-filter-operator.component.d.ts +1 -4
  161. package/filtering/operators/starts-with-filter-operator.component.d.ts +1 -4
  162. package/filtering/string-filter.component.d.ts +2 -1
  163. package/index.d.ts +2 -0
  164. package/localization/custom-messages.component.d.ts +1 -1
  165. package/localization/messages.d.ts +42 -2
  166. package/navigation/navigation-cell.interface.d.ts +1 -4
  167. package/navigation/navigation-row.interface.d.ts +1 -4
  168. package/package.json +16 -15
  169. package/pager/pager-element.component.d.ts +9 -0
  170. package/pager/pager-next-buttons.component.d.ts +0 -3
  171. package/pager/pager-numeric-buttons.component.d.ts +1 -1
  172. package/pager/pager-prev-buttons.component.d.ts +0 -3
  173. package/pager/pager-settings.d.ts +1 -15
  174. package/pager/pager-template.directive.d.ts +1 -1
  175. package/pdf/pdf-command.directive.d.ts +1 -1
  176. package/pdf/pdf-margin.component.d.ts +9 -0
  177. package/rendering/cell-template.directive.d.ts +1 -1
  178. package/rendering/cell.component.d.ts +10 -1
  179. package/rendering/common/spacer.component.d.ts +1 -1
  180. package/rendering/constants.d.ts +4 -0
  181. package/rendering/header/header.component.d.ts +1 -0
  182. package/row-reordering/flat-reorder.service.d.ts +16 -0
  183. package/row-reordering/hierarchical-reorder.service.d.ts +16 -0
  184. package/row-reordering/row-reorder.service.d.ts +61 -0
  185. package/row-reordering/types.d.ts +39 -0
  186. package/row-reordering/utils.d.ts +85 -0
  187. package/schematics/ngAdd/index.js +3 -3
  188. package/scrolling/content-scroll-event.d.ts +1 -1
  189. package/scrolling/scroll-bottom-event.d.ts +1 -1
  190. package/scrolling/scroll-request.service.d.ts +6 -0
  191. package/selection/selectable-settings.d.ts +5 -15
  192. package/selection/selectable.directive.d.ts +1 -1
  193. package/selection/selection-change-event.d.ts +1 -1
  194. package/shared.module.d.ts +5 -4
  195. package/treelist.component.d.ts +66 -289
  196. package/treelist.module.d.ts +68 -66
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `IsEmpty` (**Is empty**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `IsNotEmpty` (**Is not empty**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `IsNotNull` (**Is not null**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `IsNull` (**Is null**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class IsNullFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -5,6 +5,10 @@
5
5
  import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the `Less` (**Is less than**) numeric filter operator.
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
11
+ */
8
12
  export declare class LessFilterOperatorComponent extends FilterOperatorBase {
9
13
  constructor(localization: LocalizationService);
10
14
  static ɵfac: i0.ɵɵFactoryDeclaration<LessFilterOperatorComponent, never>;
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `NotEqual` (**Is not equal to**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class NotEqualFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `DoesNotContain` (**Does not contain**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `StartsWith` (**Starts with**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class StartsWithFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -25,8 +25,9 @@ export declare abstract class StringFilterComponent extends BaseFilterCellCompon
25
25
  */
26
26
  filter: CompositeFilterDescriptor;
27
27
  /**
28
- * The default filter operator. Defaults to `contains`.
28
+ * The default filter operator.
29
29
  * @type {string}
30
+ * @default 'contains'
30
31
  */
31
32
  operator: string;
32
33
  /**
package/index.d.ts CHANGED
@@ -136,6 +136,8 @@ export { ScrollRequest } from './scrolling/scroll-request.service';
136
136
  export { ExpandEvent } from './expand-state/expand-event';
137
137
  export { ExpandableDirective } from './expand-state/expandable.directive';
138
138
  export { ExpandableTreeComponent } from './expand-state/expandable-tree-component';
139
+ export { RowReorderColumnComponent } from './columns/rowreorder-column.component';
140
+ export * from './row-reordering/types';
139
141
  export { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
140
142
  export { EditCommandDirective } from './editing/edit-command.directive';
141
143
  export { CancelCommandDirective } from './editing/cancel-command.directive';
@@ -7,7 +7,7 @@ import { Messages } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Custom component messages override default component messages
10
- * ([see example]({% slug globalization_treelist %}#toc-localization)).
10
+ * ([see example](slug:globalization_treelist#toc-custom-messages)).
11
11
  */
12
12
  export declare class CustomMessagesComponent extends Messages {
13
13
  protected service: LocalizationService;
@@ -71,6 +71,34 @@ export declare class Messages extends ComponentMessages {
71
71
  * The label of the filter cell or icon.
72
72
  */
73
73
  filter: string;
74
+ /**
75
+ * The label of the filter row and menu inputs.
76
+ */
77
+ filterInputLabel: string;
78
+ /**
79
+ * The label of the filter cell operators DropDownList.
80
+ *
81
+ * The label consists of a two-part message - the name of the column and a localizable string.
82
+ * For a column named **Product Name**, the default label will be **Filter cell operators for Product Name**.
83
+ *
84
+ * To allow reordering the column name and the localizable part, the `filterCellOperatorLabel` accepts a string with a
85
+ * placeholder for the column name, for example, **Filter operators for {columnName}**. The `{columnName}` placeholder will be replaced
86
+ * internally with the current column name, and the resulting label will be rendered as **Filter operators for Product Name**.
87
+ * [See example](slug:globalization_treelist#toc-custom-messages).
88
+ */
89
+ filterCellOperatorLabel: string;
90
+ /**
91
+ * The label of the boolean filter cell DropDownList.
92
+ *
93
+ * The label consists of a two-part message - the name of the column and a localizable string.
94
+ * For a column named **Product Name**, the default label will be **Boolean filter cell for Product Name**.
95
+ *
96
+ * To allow reordering the column name and the localizable part, the `booleanFilterCellLabel` accepts a string with a
97
+ * placeholder for the column name, for example, **Boolean Filter operator for {columnName}**. The `{columnName}` placeholder will be replaced
98
+ * internally with the current column name, and the resulting label will be rendered as **Boolean Filter operator for Product Name**.
99
+ * [See example](slug:globalization_treelist#toc-custom-messages).
100
+ */
101
+ booleanFilterCellLabel: string;
74
102
  /**
75
103
  * The text of the `Equal` (**Is equal to**) filter operator.
76
104
  */
@@ -174,7 +202,7 @@ export declare class Messages extends ComponentMessages {
174
202
  /**
175
203
  * The loading text.
176
204
  *
177
- * > The `loading` property is part of the accessibility support of the TreeList.
205
+ * The `loading` property is part of the accessibility support of the TreeList.
178
206
  * Its value is detectable by screen readers and is not otherwise visible.
179
207
  */
180
208
  loading: string;
@@ -236,6 +264,18 @@ export declare class Messages extends ComponentMessages {
236
264
  * The label of the TreeList bottom toolbar.
237
265
  */
238
266
  bottomToolbarLabel: string;
267
+ /**
268
+ * The label for the TreeList drag row handle.
269
+ */
270
+ dragRowHandleLabel: string;
271
+ /**
272
+ * The label for the select row checkbox
273
+ */
274
+ selectRowCheckboxLabel: string;
275
+ /**
276
+ * The label for the select all rows checkbox
277
+ */
278
+ selectAllRowsCheckboxLabel: string;
239
279
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
240
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "groupPanelEmpty": "groupPanelEmpty"; "noRecords": "noRecords"; "pagerLabel": "pagerLabel"; "pagerFirstPage": "pagerFirstPage"; "pagerLastPage": "pagerLastPage"; "pagerPreviousPage": "pagerPreviousPage"; "pagerNextPage": "pagerNextPage"; "pagerPage": "pagerPage"; "pagerPageNumberInputTitle": "pagerPageNumberInputTitle"; "pagerItemsPerPage": "pagerItemsPerPage"; "pagerOf": "pagerOf"; "pagerItemsTotal": "pagerItemsTotal"; "selectPage": "selectPage"; "filter": "filter"; "filterEqOperator": "filterEqOperator"; "filterNotEqOperator": "filterNotEqOperator"; "filterIsNullOperator": "filterIsNullOperator"; "filterIsNotNullOperator": "filterIsNotNullOperator"; "filterIsEmptyOperator": "filterIsEmptyOperator"; "filterIsNotEmptyOperator": "filterIsNotEmptyOperator"; "filterStartsWithOperator": "filterStartsWithOperator"; "filterContainsOperator": "filterContainsOperator"; "filterNotContainsOperator": "filterNotContainsOperator"; "filterEndsWithOperator": "filterEndsWithOperator"; "filterGteOperator": "filterGteOperator"; "filterGtOperator": "filterGtOperator"; "filterLteOperator": "filterLteOperator"; "filterLtOperator": "filterLtOperator"; "filterIsTrue": "filterIsTrue"; "filterIsFalse": "filterIsFalse"; "filterBooleanAll": "filterBooleanAll"; "filterAfterOrEqualOperator": "filterAfterOrEqualOperator"; "filterAfterOperator": "filterAfterOperator"; "filterBeforeOperator": "filterBeforeOperator"; "filterBeforeOrEqualOperator": "filterBeforeOrEqualOperator"; "filterFilterButton": "filterFilterButton"; "filterClearButton": "filterClearButton"; "filterAndLogic": "filterAndLogic"; "filterOrLogic": "filterOrLogic"; "loading": "loading"; "columnMenu": "columnMenu"; "columns": "columns"; "lock": "lock"; "unlock": "unlock"; "sortable": "sortable"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "sortedAscending": "sortedAscending"; "sortedDescending": "sortedDescending"; "sortedDefault": "sortedDefault"; "columnsApply": "columnsApply"; "columnsReset": "columnsReset"; "topToolbarLabel": "topToolbarLabel"; "bottomToolbarLabel": "bottomToolbarLabel"; }, {}, never>;
280
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "groupPanelEmpty": "groupPanelEmpty"; "noRecords": "noRecords"; "pagerLabel": "pagerLabel"; "pagerFirstPage": "pagerFirstPage"; "pagerLastPage": "pagerLastPage"; "pagerPreviousPage": "pagerPreviousPage"; "pagerNextPage": "pagerNextPage"; "pagerPage": "pagerPage"; "pagerPageNumberInputTitle": "pagerPageNumberInputTitle"; "pagerItemsPerPage": "pagerItemsPerPage"; "pagerOf": "pagerOf"; "pagerItemsTotal": "pagerItemsTotal"; "selectPage": "selectPage"; "filter": "filter"; "filterInputLabel": "filterInputLabel"; "filterCellOperatorLabel": "filterCellOperatorLabel"; "booleanFilterCellLabel": "booleanFilterCellLabel"; "filterEqOperator": "filterEqOperator"; "filterNotEqOperator": "filterNotEqOperator"; "filterIsNullOperator": "filterIsNullOperator"; "filterIsNotNullOperator": "filterIsNotNullOperator"; "filterIsEmptyOperator": "filterIsEmptyOperator"; "filterIsNotEmptyOperator": "filterIsNotEmptyOperator"; "filterStartsWithOperator": "filterStartsWithOperator"; "filterContainsOperator": "filterContainsOperator"; "filterNotContainsOperator": "filterNotContainsOperator"; "filterEndsWithOperator": "filterEndsWithOperator"; "filterGteOperator": "filterGteOperator"; "filterGtOperator": "filterGtOperator"; "filterLteOperator": "filterLteOperator"; "filterLtOperator": "filterLtOperator"; "filterIsTrue": "filterIsTrue"; "filterIsFalse": "filterIsFalse"; "filterBooleanAll": "filterBooleanAll"; "filterAfterOrEqualOperator": "filterAfterOrEqualOperator"; "filterAfterOperator": "filterAfterOperator"; "filterBeforeOperator": "filterBeforeOperator"; "filterBeforeOrEqualOperator": "filterBeforeOrEqualOperator"; "filterFilterButton": "filterFilterButton"; "filterClearButton": "filterClearButton"; "filterAndLogic": "filterAndLogic"; "filterOrLogic": "filterOrLogic"; "loading": "loading"; "columnMenu": "columnMenu"; "columns": "columns"; "lock": "lock"; "unlock": "unlock"; "sortable": "sortable"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "sortedAscending": "sortedAscending"; "sortedDescending": "sortedDescending"; "sortedDefault": "sortedDefault"; "columnsApply": "columnsApply"; "columnsReset": "columnsReset"; "topToolbarLabel": "topToolbarLabel"; "bottomToolbarLabel": "bottomToolbarLabel"; "dragRowHandleLabel": "dragRowHandleLabel"; "selectRowCheckboxLabel": "selectRowCheckboxLabel"; "selectAllRowsCheckboxLabel": "selectAllRowsCheckboxLabel"; }, {}, never>;
241
281
  }
@@ -21,10 +21,7 @@ export interface NavigationCell {
21
21
  */
22
22
  colIndex: number;
23
23
  /**
24
- * The logical index of the row which contains this cell.
25
- *
26
- * * Header rows are included, starting at index 0.
27
- * * The row indexing is absolute and does not change with paging.
24
+ * The logical index of the row which contains this cell. The row indexing is absolute and does not change with paging. Header rows are included, starting at index 0.
28
25
  */
29
26
  rowIndex: number;
30
27
  /**
@@ -13,10 +13,7 @@ export interface NavigationRow {
13
13
  */
14
14
  uid: number;
15
15
  /**
16
- * The logical index of the focusable row.
17
- *
18
- * * Header rows are included, starting at index 0.
19
- * * The row indexing is absolute and does not change with paging.
16
+ * The logical index of the focusable row. The row indexing is absolute and does not change with paging. Header rows are included, starting at index 0.
20
17
  */
21
18
  index: number;
22
19
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-treelist",
3
- "version": "13.0.0-develop.2",
3
+ "version": "13.0.0-develop.20",
4
4
  "description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -30,24 +30,25 @@
30
30
  "@progress/kendo-data-query": "^1.0.0",
31
31
  "@progress/kendo-drawing": "^1.17.2",
32
32
  "@progress/kendo-licensing": "^1.0.2",
33
- "@progress/kendo-angular-buttons": "13.0.0-develop.2",
34
- "@progress/kendo-angular-common": "13.0.0-develop.2",
35
- "@progress/kendo-angular-dateinputs": "13.0.0-develop.2",
36
- "@progress/kendo-angular-dropdowns": "13.0.0-develop.2",
37
- "@progress/kendo-angular-excel-export": "13.0.0-develop.2",
38
- "@progress/kendo-angular-icons": "13.0.0-develop.2",
39
- "@progress/kendo-angular-inputs": "13.0.0-develop.2",
40
- "@progress/kendo-angular-intl": "13.0.0-develop.2",
41
- "@progress/kendo-angular-l10n": "13.0.0-develop.2",
42
- "@progress/kendo-angular-label": "13.0.0-develop.2",
43
- "@progress/kendo-angular-pdf-export": "13.0.0-develop.2",
44
- "@progress/kendo-angular-popup": "13.0.0-develop.2",
33
+ "@progress/kendo-angular-buttons": "13.0.0-develop.20",
34
+ "@progress/kendo-angular-common": "13.0.0-develop.20",
35
+ "@progress/kendo-angular-dateinputs": "13.0.0-develop.20",
36
+ "@progress/kendo-angular-dropdowns": "13.0.0-develop.20",
37
+ "@progress/kendo-angular-excel-export": "13.0.0-develop.20",
38
+ "@progress/kendo-angular-icons": "13.0.0-develop.20",
39
+ "@progress/kendo-angular-inputs": "13.0.0-develop.20",
40
+ "@progress/kendo-angular-intl": "13.0.0-develop.20",
41
+ "@progress/kendo-angular-l10n": "13.0.0-develop.20",
42
+ "@progress/kendo-angular-label": "13.0.0-develop.20",
43
+ "@progress/kendo-angular-pdf-export": "13.0.0-develop.20",
44
+ "@progress/kendo-angular-popup": "13.0.0-develop.20",
45
+ "@progress/kendo-angular-utils": "13.0.0-develop.20",
45
46
  "rxjs": "^6.5.3 || ^7.0.0",
46
- "@progress/kendo-angular-listview": "13.0.0-develop.2"
47
+ "@progress/kendo-angular-listview": "13.0.0-develop.20"
47
48
  },
48
49
  "dependencies": {
49
50
  "tslib": "^2.3.1",
50
- "@progress/kendo-angular-schematics": "13.0.0-develop.2",
51
+ "@progress/kendo-angular-schematics": "13.0.0-develop.20",
51
52
  "@progress/kendo-common": "^0.2.0",
52
53
  "@progress/kendo-file-saver": "^1.0.0"
53
54
  },
@@ -5,6 +5,7 @@
5
5
  import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
6
6
  import { PagerContextService, PagerContextChanges } from "./pager-context.service";
7
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { SVGIcon } from '@progress/kendo-svg-icons';
8
9
  import * as i0 from "@angular/core";
9
10
  /**
10
11
  * @hidden
@@ -17,6 +18,10 @@ export declare abstract class PagerElementComponent implements OnInit, OnDestroy
17
18
  skip: number;
18
19
  pageSize: number;
19
20
  allCount: number;
21
+ caretAltLeftIcon: SVGIcon;
22
+ caretAltToLeftIcon: SVGIcon;
23
+ caretAltRightIcon: SVGIcon;
24
+ caretAltToRightIcon: SVGIcon;
20
25
  /**
21
26
  * @hidden
22
27
  *
@@ -60,6 +65,10 @@ export declare abstract class PagerElementComponent implements OnInit, OnDestroy
60
65
  ngOnInit(): void;
61
66
  protected abstract onChanges(changes: PagerContextChanges): void;
62
67
  ngOnDestroy(): void;
68
+ get prevArrowIcons(): string[];
69
+ get prevArrowSVGIcons(): SVGIcon[];
70
+ get nextArrowIcons(): string[];
71
+ get nextArrowSVGIcons(): SVGIcon[];
63
72
  static ɵfac: i0.ɵɵFactoryDeclaration<PagerElementComponent, never>;
64
73
  static ɵdir: i0.ɵɵDirectiveDeclaration<PagerElementComponent, never, never, {}, {}, never>;
65
74
  }
@@ -6,7 +6,6 @@ import { ChangeDetectorRef } from '@angular/core';
6
6
  import { PagerContextService, PagerContextChanges } from "./pager-context.service";
7
7
  import { PagerElementComponent } from './pager-element.component';
8
8
  import { LocalizationService } from '@progress/kendo-angular-l10n';
9
- import { SVGIcon } from '@progress/kendo-svg-icons';
10
9
  import { NavigationService } from '../navigation/navigation.service';
11
10
  import * as i0 from "@angular/core";
12
11
  /**
@@ -26,8 +25,6 @@ export declare class PagerNextButtonsComponent extends PagerElementComponent {
26
25
  * @hidden
27
26
  */
28
27
  navigable: boolean;
29
- caretAltRightIcon: SVGIcon;
30
- caretAltToRightIcon: SVGIcon;
31
28
  constructor(localization: LocalizationService, pagerContext: PagerContextService, cd: ChangeDetectorRef, navigationService: NavigationService);
32
29
  /**
33
30
  * @hidden
@@ -8,7 +8,7 @@ import { PagerContextChanges, PagerContextService } from './pager-context.servic
8
8
  import { PagerElementComponent } from './pager-element.component';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
- * Displays numeric buttons to enable navigation between the pages.
11
+ * Displays numeric buttons to enable navigation between the pages ([see example]({% slug paging_treelist %}#toc-pager-templates)).
12
12
  */
13
13
  export declare class PagerNumericButtonsComponent extends PagerElementComponent {
14
14
  protected pagerContext: PagerContextService;
@@ -6,7 +6,6 @@ import { ChangeDetectorRef } from '@angular/core';
6
6
  import { PagerContextService, PagerContextChanges } from "./pager-context.service";
7
7
  import { PagerElementComponent } from './pager-element.component';
8
8
  import { LocalizationService } from '@progress/kendo-angular-l10n';
9
- import { SVGIcon } from '@progress/kendo-svg-icons';
10
9
  import { NavigationService } from '../navigation/navigation.service';
11
10
  import * as i0 from "@angular/core";
12
11
  /**
@@ -14,8 +13,6 @@ import * as i0 from "@angular/core";
14
13
  */
15
14
  export declare class PagerPrevButtonsComponent extends PagerElementComponent {
16
15
  navigationService: NavigationService;
17
- caretAltLeftIcon: SVGIcon;
18
- caretAltToLeftIcon: SVGIcon;
19
16
  constructor(localization: LocalizationService, pagerContext: PagerContextService, cd: ChangeDetectorRef, navigationService: NavigationService);
20
17
  /**
21
18
  * @hidden
@@ -32,45 +32,31 @@ export declare type PagerType = 'numeric' | 'input';
32
32
  export interface PagerSettings {
33
33
  /**
34
34
  * Sets the maximum numeric buttons count before the buttons are collapsed.
35
- *
36
- * @default 10
37
35
  */
38
36
  buttonCount?: number;
39
37
  /**
40
38
  * A flag that indicates if child nodes should be fetched and counted for the pager total.
41
- *
42
- * @default true
43
39
  */
44
40
  countChildren?: boolean;
45
41
  /**
46
42
  * Toggles the information about the current page and the total number of records.
47
- *
48
- * @default true
49
43
  */
50
44
  info?: boolean;
51
45
  /**
52
46
  * Defines the type of the TreeList pager.
53
- *
54
- * @default 'numeric'
55
47
  */
56
48
  type?: PagerType;
57
49
  /**
58
50
  * Shows a menu for selecting the page size.
59
- *
60
- * @default false
61
51
  */
62
52
  pageSizes?: boolean | Array<number>;
63
53
  /**
64
54
  * Toggles the **Previous** and **Next** buttons.
65
- *
66
- * @default true
67
55
  */
68
56
  previousNext?: boolean;
69
57
  /**
70
58
  * Toggles the built-in responsive behavior of the Pager.
71
- * Available in version `3.0.0` and above ([see example]({% slug paging_treelist %})).
72
- *
73
- * @default true
59
+ * Available in version `3.0.0` and above ([see example]({% slug paging_treelist#toc-responsive-pager %})).
74
60
  */
75
61
  responsive?: boolean;
76
62
  }
@@ -16,7 +16,7 @@ import * as i0 from "@angular/core";
16
16
  * * `totalPages`&mdash;The total number of available pages.
17
17
  *
18
18
  * @example
19
- * ```
19
+ * ```html
20
20
  * <kendo-treelist ...>
21
21
  * <kendo-treelist-column field="type"></kendo-treelist-column>
22
22
  * <ng-template
@@ -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 kendoTreeListPDFCommand>Export to PDF</button>
23
23
  * </ng-template>
@@ -4,6 +4,15 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PDFExportMarginComponent } from '@progress/kendo-angular-pdf-export';
6
6
  import * as i0 from "@angular/core";
7
+ /**
8
+ * Represents the Kendo UI PDFMargin component for Angular.
9
+ * The supported units are:
10
+ * `"mm"`
11
+ * `"cm"`
12
+ * `"in"`
13
+ * `"pt"` (default).
14
+ * Numbers are considered to be points (`"pt"`).
15
+ */
7
16
  export declare class PDFMarginComponent extends PDFExportMarginComponent {
8
17
  static ɵfac: i0.ɵɵFactoryDeclaration<PDFMarginComponent, never>;
9
18
  static ɵcmp: i0.ɵɵComponentDeclaration<PDFMarginComponent, "kendo-treelist-pdf-margin", never, {}, {}, never, never>;
@@ -20,7 +20,7 @@ import * as i0 from "@angular/core";
20
20
  * - `loading`&mdash;Specifies if the item children are currently loading.
21
21
  * - `rowIndex`&mdash;The current row index. Use it as an alias for a template variable by utilizing the `let-rowIndex="rowIndex"` syntax.
22
22
  *
23
- * * @example
23
+ * @example
24
24
  * ```html
25
25
  * <kendo-treelist ...>
26
26
  * <kendo-treelist-column field="ProductName">
@@ -8,16 +8,20 @@ import { ColumnComponent } from '../columns/column.component';
8
8
  import { FormGroup } from '@angular/forms';
9
9
  import { FocusGroup } from '../navigation/focus-group';
10
10
  import { SVGIcon } from '@progress/kendo-svg-icons';
11
+ import { LocalizationService } from "@progress/kendo-angular-l10n";
11
12
  import * as i0 from "@angular/core";
12
13
  /**
13
14
  * @hidden
14
15
  */
15
16
  export declare class CellComponent implements AfterContentChecked, DoCheck {
16
17
  private editService;
18
+ private localization;
17
19
  focusGroup: FocusGroup;
18
20
  get commandCellClass(): boolean;
19
21
  get isCheckboxColumn(): boolean;
20
22
  get textNoWrapClass(): boolean;
23
+ get dragHandleCellClass(): boolean;
24
+ get dragRowHandleLabel(): string;
21
25
  column: any;
22
26
  columnIndex: number;
23
27
  isNew: boolean;
@@ -40,14 +44,19 @@ export declare class CellComponent implements AfterContentChecked, DoCheck {
40
44
  get childColumns(): ColumnComponent[];
41
45
  caretAltDownIcon: SVGIcon;
42
46
  caretAltRightIcon: SVGIcon;
47
+ caretAltLeftIcon: SVGIcon;
48
+ reorderIcon: SVGIcon;
43
49
  cellContext: any;
44
50
  private _templateContext;
45
51
  private _editTemplateContext;
46
52
  private _viewItem;
47
- constructor(editService: EditService, focusGroup: FocusGroup);
53
+ constructor(editService: EditService, localization: LocalizationService, focusGroup: FocusGroup);
48
54
  ngDoCheck(): void;
49
55
  ngAfterContentChecked(): void;
50
56
  private updateTemplateContext;
57
+ get arrowIcon(): string;
58
+ get arrowSVGIcon(): SVGIcon;
59
+ messageFor(token: string): string;
51
60
  static ɵfac: i0.ɵɵFactoryDeclaration<CellComponent, never>;
52
61
  static ɵcmp: i0.ɵɵComponentDeclaration<CellComponent, "[kendoTreeListCell]", never, { "column": "column"; "columnIndex": "columnIndex"; "isNew": "isNew"; "level": "level"; "hasChildren": "hasChildren"; "isExpanded": "isExpanded"; "loading": "loading"; "expandIcons": "expandIcons"; "selected": "selected"; "dataItem": "dataItem"; "viewItem": "viewItem"; }, {}, never, never>;
53
62
  }
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
7
7
  * Represents the Kendo UI TreeListSpacer component for Angular.
8
8
  * Used to give additional white space between the Pager inner elements,
9
9
  * and provides a way for customizing the spacer width.
10
- * It can also be used in any flex container within the TreeList.
10
+ * It can also be used in any flex container within the TreeList. [See example](slug:toolbartemplate_treelist#toc-define-spacing-between-the-toolbar-elements).
11
11
  */
12
12
  export declare class TreeListSpacerComponent {
13
13
  hostClass: boolean;
@@ -22,3 +22,7 @@ export declare const ICON_CLASS = "k-icon k-svg-icon";
22
22
  * @hidden
23
23
  */
24
24
  export declare const IGNORE_CONTAINER_CLASSES = "k-treelist-ignore-click";
25
+ /**
26
+ * @hidden
27
+ */
28
+ export declare const DRAG_HANDLE_CLASS = "k-drag-cell";
@@ -93,6 +93,7 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
93
93
  selectAllClick(args: any): void;
94
94
  sortDescriptor(field: string): SortDescriptor;
95
95
  get leafColumns(): ColumnBase[];
96
+ messageFor(token: string): string;
96
97
  private attachTargets;
97
98
  private normalizeTarget;
98
99
  private trackMove;
@@ -0,0 +1,16 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { RowReorderService } from './row-reorder.service';
6
+ import { RowReorderEvent } from "./types";
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare class FlatRowReorderService extends RowReorderService {
12
+ isOverChild(targetItem: any): boolean;
13
+ reorderRows(ev: RowReorderEvent, collection: Array<any>): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FlatRowReorderService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<FlatRowReorderService>;
16
+ }
@@ -0,0 +1,16 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { RowReorderService } from './row-reorder.service';
6
+ import { RowReorderEvent } from "./types";
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare class HierarchicalRowReorderService extends RowReorderService {
12
+ isOverChild(targetItem: any): boolean;
13
+ reorderRows(ev: RowReorderEvent, collection: Array<any>, field?: string): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<HierarchicalRowReorderService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<HierarchicalRowReorderService>;
16
+ }