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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/binding-directives/base-binding.directive.d.ts +5 -1
  2. package/binding-directives/data-bound-tree-component.d.ts +9 -0
  3. package/binding-directives/flat-binding.directive.d.ts +14 -3
  4. package/binding-directives/hierarchy-binding.directive.d.ts +12 -3
  5. package/column-menu/column-chooser.component.d.ts +10 -6
  6. package/column-menu/column-menu-chooser.component.d.ts +6 -10
  7. package/column-menu/column-menu-filter.component.d.ts +6 -10
  8. package/column-menu/column-menu-item-content-template.directive.d.ts +1 -1
  9. package/column-menu/column-menu-item.component.d.ts +8 -6
  10. package/column-menu/column-menu-lock.component.d.ts +5 -11
  11. package/column-menu/column-menu-settings.interface.d.ts +7 -10
  12. package/column-menu/column-menu-sort.component.d.ts +5 -11
  13. package/column-menu/column-menu.component.d.ts +1 -1
  14. package/column-menu/column-menu.service.d.ts +1 -1
  15. package/column-resizing/column-resize.interface.d.ts +1 -1
  16. package/columns/checkbox-column.component.d.ts +1 -1
  17. package/columns/column-base.d.ts +4 -0
  18. package/columns/column-group.component.d.ts +9 -6
  19. package/columns/column.component.d.ts +16 -66
  20. package/columns/command-column.component.d.ts +13 -15
  21. package/columns/rowreorder-column.component.d.ts +19 -0
  22. package/columns/span-column.component.d.ts +10 -81
  23. package/data/change-event-args.interface.d.ts +2 -2
  24. package/data/data.collection.d.ts +6 -0
  25. package/dragdrop/column-reorder-config.d.ts +1 -1
  26. package/editing/add-command.directive.d.ts +1 -1
  27. package/editing/cancel-command.directive.d.ts +1 -1
  28. package/editing/edit-command.directive.d.ts +1 -1
  29. package/editing/edit-event-args.interface.d.ts +1 -1
  30. package/editing/edit-template.directive.d.ts +11 -0
  31. package/editing/remove-command.directive.d.ts +1 -1
  32. package/editing/remove-event-args.interface.d.ts +1 -1
  33. package/editing/save-command.directive.d.ts +1 -1
  34. package/editing/save-event-args.interface.d.ts +1 -1
  35. package/esm2020/binding-directives/base-binding.directive.mjs +9 -3
  36. package/esm2020/binding-directives/flat-binding.directive.mjs +56 -6
  37. package/esm2020/binding-directives/hierarchy-binding.directive.mjs +46 -6
  38. package/esm2020/column-menu/column-chooser.component.mjs +10 -6
  39. package/esm2020/column-menu/column-menu-chooser.component.mjs +8 -12
  40. package/esm2020/column-menu/column-menu-filter.component.mjs +6 -10
  41. package/esm2020/column-menu/column-menu-item-content-template.directive.mjs +1 -1
  42. package/esm2020/column-menu/column-menu-item.component.mjs +9 -7
  43. package/esm2020/column-menu/column-menu-lock.component.mjs +5 -11
  44. package/esm2020/column-menu/column-menu-sort.component.mjs +5 -11
  45. package/esm2020/column-menu/column-menu.component.mjs +2 -2
  46. package/esm2020/column-menu/column-menu.service.mjs +1 -1
  47. package/esm2020/columns/checkbox-column.component.mjs +1 -1
  48. package/esm2020/columns/column-base.mjs +4 -0
  49. package/esm2020/columns/column-group.component.mjs +9 -6
  50. package/esm2020/columns/column.component.mjs +16 -39
  51. package/esm2020/columns/command-column.component.mjs +13 -15
  52. package/esm2020/columns/rowreorder-column.component.mjs +47 -0
  53. package/esm2020/columns/span-column.component.mjs +10 -81
  54. package/esm2020/data/data.collection.mjs +41 -28
  55. package/esm2020/editing/add-command.directive.mjs +2 -2
  56. package/esm2020/editing/base-command.directive.mjs +1 -1
  57. package/esm2020/editing/cancel-command.directive.mjs +2 -2
  58. package/esm2020/editing/edit-command.directive.mjs +2 -2
  59. package/esm2020/editing/edit-template.directive.mjs +11 -0
  60. package/esm2020/editing/remove-command.directive.mjs +2 -2
  61. package/esm2020/editing/save-command.directive.mjs +2 -2
  62. package/esm2020/excel/excel-command.directive.mjs +2 -2
  63. package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +11 -11
  64. package/esm2020/filtering/cell/date-filter-cell.component.mjs +11 -11
  65. package/esm2020/filtering/cell/filter-cell-operators.component.mjs +15 -0
  66. package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +13 -12
  67. package/esm2020/filtering/cell/string-filter-cell.component.mjs +14 -13
  68. package/esm2020/filtering/date-filter.component.mjs +6 -1
  69. package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +11 -12
  70. package/esm2020/filtering/menu/date-filter-menu.component.mjs +12 -12
  71. package/esm2020/filtering/menu/filter-menu.component.mjs +1 -1
  72. package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +12 -12
  73. package/esm2020/filtering/menu/string-filter-menu.component.mjs +15 -0
  74. package/esm2020/filtering/numeric-filter.component.mjs +4 -1
  75. package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -5
  76. package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -5
  77. package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -5
  78. package/esm2020/filtering/operators/before-filter-operator.component.mjs +3 -6
  79. package/esm2020/filtering/operators/contains-filter-operator.component.mjs +1 -4
  80. package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +1 -4
  81. package/esm2020/filtering/operators/eq-filter-operator.component.mjs +1 -4
  82. package/esm2020/filtering/operators/gt-filter-operator.component.mjs +1 -4
  83. package/esm2020/filtering/operators/gte-filter-operator.component.mjs +1 -4
  84. package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +1 -4
  85. package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -4
  86. package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +1 -4
  87. package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +1 -4
  88. package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -5
  89. package/esm2020/filtering/operators/lte-filter-operator.component.mjs +1 -4
  90. package/esm2020/filtering/operators/neq-filter-operator.component.mjs +1 -4
  91. package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +1 -4
  92. package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +1 -4
  93. package/esm2020/filtering/string-filter.component.mjs +2 -1
  94. package/esm2020/index.mjs +2 -0
  95. package/esm2020/localization/custom-messages.component.mjs +1 -1
  96. package/esm2020/localization/messages.mjs +3 -1
  97. package/esm2020/package-metadata.mjs +2 -2
  98. package/esm2020/pager/pager-element.component.mjs +17 -0
  99. package/esm2020/pager/pager-next-buttons.component.mjs +8 -11
  100. package/esm2020/pager/pager-numeric-buttons.component.mjs +1 -1
  101. package/esm2020/pager/pager-page-sizes.component.mjs +1 -1
  102. package/esm2020/pager/pager-prev-buttons.component.mjs +8 -11
  103. package/esm2020/pager/pager-template.directive.mjs +1 -1
  104. package/esm2020/pdf/pdf-command.directive.mjs +2 -2
  105. package/esm2020/pdf/pdf-margin.component.mjs +9 -0
  106. package/esm2020/rendering/cell-template.directive.mjs +1 -1
  107. package/esm2020/rendering/cell.component.mjs +68 -20
  108. package/esm2020/rendering/common/spacer.component.mjs +1 -1
  109. package/esm2020/rendering/constants.mjs +4 -0
  110. package/esm2020/rendering/header/header.component.mjs +1 -1
  111. package/esm2020/rendering/table-body.component.mjs +5 -3
  112. package/esm2020/row-reordering/flat-reorder.service.mjs +48 -0
  113. package/esm2020/row-reordering/hierarchical-reorder.service.mjs +55 -0
  114. package/esm2020/row-reordering/row-reorder.service.mjs +220 -0
  115. package/esm2020/row-reordering/types.mjs +5 -0
  116. package/esm2020/row-reordering/utils.mjs +129 -0
  117. package/esm2020/shared.module.mjs +8 -3
  118. package/esm2020/treelist.component.mjs +185 -311
  119. package/esm2020/treelist.module.mjs +71 -66
  120. package/excel/excel-command.directive.d.ts +1 -1
  121. package/excel/excel-export-data.interface.d.ts +1 -1
  122. package/excel/excel.component.d.ts +9 -8
  123. package/fesm2015/progress-kendo-angular-treelist.mjs +1215 -792
  124. package/fesm2020/progress-kendo-angular-treelist.mjs +1205 -791
  125. package/filtering/cell/boolean-filter-cell.component.d.ts +11 -11
  126. package/filtering/cell/date-filter-cell.component.d.ts +11 -11
  127. package/filtering/cell/filter-cell-operators.component.d.ts +15 -0
  128. package/filtering/cell/numeric-filter-cell.component.d.ts +13 -12
  129. package/filtering/cell/string-filter-cell.component.d.ts +12 -11
  130. package/filtering/date-filter.component.d.ts +7 -11
  131. package/filtering/menu/boolean-filter-menu.component.d.ts +11 -12
  132. package/filtering/menu/date-filter-menu.component.d.ts +12 -12
  133. package/filtering/menu/numeric-filter-menu.component.d.ts +12 -12
  134. package/filtering/menu/string-filter-menu.component.d.ts +15 -0
  135. package/filtering/numeric-filter.component.d.ts +4 -1
  136. package/filtering/operators/after-eq-filter-operator.component.d.ts +4 -0
  137. package/filtering/operators/after-filter-operator.component.d.ts +4 -0
  138. package/filtering/operators/before-eq-filter-operator.component.d.ts +4 -0
  139. package/filtering/operators/before-filter-operator.component.d.ts +4 -0
  140. package/filtering/operators/contains-filter-operator.component.d.ts +1 -4
  141. package/filtering/operators/ends-with-filter-operator.component.d.ts +1 -4
  142. package/filtering/operators/eq-filter-operator.component.d.ts +1 -4
  143. package/filtering/operators/gte-filter-operator.component.d.ts +1 -4
  144. package/filtering/operators/is-empty-filter-operator.component.d.ts +1 -4
  145. package/filtering/operators/is-not-empty-filter-operator.component.d.ts +1 -4
  146. package/filtering/operators/is-not-null-filter-operator.component.d.ts +1 -4
  147. package/filtering/operators/isnull-filter-operator.component.d.ts +1 -4
  148. package/filtering/operators/lt-filter-operator.component.d.ts +4 -0
  149. package/filtering/operators/neq-filter-operator.component.d.ts +1 -4
  150. package/filtering/operators/not-contains-filter-operator.component.d.ts +1 -4
  151. package/filtering/operators/starts-with-filter-operator.component.d.ts +1 -4
  152. package/filtering/string-filter.component.d.ts +2 -1
  153. package/index.d.ts +2 -0
  154. package/localization/custom-messages.component.d.ts +1 -1
  155. package/localization/messages.d.ts +6 -2
  156. package/navigation/navigation-cell.interface.d.ts +1 -4
  157. package/navigation/navigation-row.interface.d.ts +1 -4
  158. package/package.json +16 -15
  159. package/pager/pager-element.component.d.ts +9 -0
  160. package/pager/pager-next-buttons.component.d.ts +0 -3
  161. package/pager/pager-numeric-buttons.component.d.ts +1 -1
  162. package/pager/pager-prev-buttons.component.d.ts +0 -3
  163. package/pager/pager-settings.d.ts +1 -15
  164. package/pager/pager-template.directive.d.ts +1 -1
  165. package/pdf/pdf-command.directive.d.ts +1 -1
  166. package/pdf/pdf-margin.component.d.ts +9 -0
  167. package/rendering/cell-template.directive.d.ts +1 -1
  168. package/rendering/cell.component.d.ts +9 -1
  169. package/rendering/common/spacer.component.d.ts +1 -1
  170. package/rendering/constants.d.ts +4 -0
  171. package/row-reordering/flat-reorder.service.d.ts +16 -0
  172. package/row-reordering/hierarchical-reorder.service.d.ts +16 -0
  173. package/row-reordering/row-reorder.service.d.ts +61 -0
  174. package/row-reordering/types.d.ts +39 -0
  175. package/row-reordering/utils.d.ts +85 -0
  176. package/schematics/ngAdd/index.js +3 -3
  177. package/scrolling/content-scroll-event.d.ts +1 -1
  178. package/scrolling/scroll-bottom-event.d.ts +1 -1
  179. package/scrolling/scroll-request.service.d.ts +6 -0
  180. package/selection/selectable-settings.d.ts +5 -15
  181. package/selection/selectable.directive.d.ts +1 -1
  182. package/selection/selection-change-event.d.ts +1 -1
  183. package/shared.module.d.ts +5 -4
  184. package/treelist.component.d.ts +66 -289
  185. package/treelist.module.d.ts +68 -66
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `Contains` (**Contains**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class ContainsFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("contains", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `EndsWith` (**Ends with**) string filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class EndsWithFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("endswith", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `Equal` (**Is equal to**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class EqualFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("eq", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /*
11
11
  * Represents the `Greater` (**Is greater than**) numeric filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class GreaterFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("gt", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("gte", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `IsEmpty` (**Is empty**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("isempty", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `IsNotEmpty` (**Is not empty**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("isnotempty", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `IsNotNull` (**Is not null**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("isnotnull", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `IsNull` (**Is null**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class IsNullFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("isnull", localization); }
@@ -7,12 +7,9 @@ import { FilterOperatorBase } from './filter-operator.base';
7
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
- /*
10
+ /**
11
11
  * Represents the `Less` (**Is less than**) numeric filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class LessFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("lt", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /*
11
11
  * Represents the `LessOrEqualTo` (**Is less than or equal to**) numeric filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class LessOrEqualToFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("lte", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `NotEqual` (**Is not equal to**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class NotEqualFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("neq", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `DoesNotContain` (**Does not contain**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("doesnotcontain", localization); }
@@ -9,10 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Represents the `StartsWith` (**Starts with**) filter operator.
12
- *
13
- * For more information and examples, refer to:
14
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
15
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class StartsWithFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("startswith", localization); }
@@ -32,8 +32,9 @@ export class StringFilterComponent extends BaseFilterCellComponent {
32
32
  super(filterService);
33
33
  this.localization = localization;
34
34
  /**
35
- * The default filter operator. Defaults to `contains`.
35
+ * The default filter operator.
36
36
  * @type {string}
37
+ * @default 'contains'
37
38
  */
38
39
  this.operator = "contains";
39
40
  }
package/esm2020/index.mjs CHANGED
@@ -107,6 +107,8 @@ export { SinglePopupService, PopupCloseEvent } from './common/single-popup.servi
107
107
  export { ExpandEvent } from './expand-state/expand-event';
108
108
  export { ExpandableDirective } from './expand-state/expandable.directive';
109
109
  export { ExpandableTreeComponent } from './expand-state/expandable-tree-component';
110
+ export { RowReorderColumnComponent } from './columns/rowreorder-column.component';
111
+ export * from './row-reordering/types';
110
112
  // addresses error NG3001: Unsupported private class
111
113
  export { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
112
114
  export { EditCommandDirective } from './editing/edit-command.directive';
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Custom component messages override default component messages
12
- * ([see example]({% slug globalization_treelist %}#toc-localization)).
12
+ * ([see example](slug:globalization_treelist#toc-custom-messages)).
13
13
  */
14
14
  export class CustomMessagesComponent extends Messages {
15
15
  constructor(service) {
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
11
11
  export class Messages extends ComponentMessages {
12
12
  }
13
13
  Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
14
- Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { 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" }, usesInheritance: true, ngImport: i0 });
14
+ Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { 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", dragRowHandleLabel: "dragRowHandleLabel" }, usesInheritance: true, ngImport: i0 });
15
15
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
16
16
  type: Directive,
17
17
  args: [{}]
@@ -123,4 +123,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
123
123
  type: Input
124
124
  }], bottomToolbarLabel: [{
125
125
  type: Input
126
+ }], dragRowHandleLabel: [{
127
+ type: Input
126
128
  }] } });
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-treelist',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1684845530,
13
- version: '13.0.0-develop.1',
12
+ publishDate: 1685352105,
13
+ version: '13.0.0-develop.11',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -5,6 +5,7 @@
5
5
  import { ChangeDetectorRef, Directive } from '@angular/core';
6
6
  import { PagerContextService } from "./pager-context.service";
7
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { caretAltLeftIcon, caretAltRightIcon, caretAltToLeftIcon, caretAltToRightIcon } from '@progress/kendo-svg-icons';
8
9
  import * as i0 from "@angular/core";
9
10
  import * as i1 from "@progress/kendo-angular-l10n";
10
11
  import * as i2 from "./pager-context.service";
@@ -20,6 +21,10 @@ export class PagerElementComponent {
20
21
  this.skip = this.pagerContext.skip;
21
22
  this.pageSize = this.pagerContext.pageSize;
22
23
  this.allCount = this.pagerContext.allCount;
24
+ this.caretAltLeftIcon = caretAltLeftIcon;
25
+ this.caretAltToLeftIcon = caretAltToLeftIcon;
26
+ this.caretAltRightIcon = caretAltRightIcon;
27
+ this.caretAltToRightIcon = caretAltToRightIcon;
23
28
  }
24
29
  /**
25
30
  * @hidden
@@ -77,6 +82,18 @@ export class PagerElementComponent {
77
82
  this.subscriptions.unsubscribe();
78
83
  }
79
84
  }
85
+ get prevArrowIcons() {
86
+ return !this.localization.rtl ? ['caret-alt-to-left', 'caret-alt-left'] : ['caret-alt-to-right', 'caret-alt-right'];
87
+ }
88
+ get prevArrowSVGIcons() {
89
+ return !this.localization.rtl ? [this.caretAltToLeftIcon, this.caretAltLeftIcon] : [this.caretAltToRightIcon, this.caretAltRightIcon];
90
+ }
91
+ get nextArrowIcons() {
92
+ return !this.localization.rtl ? ['caret-alt-right', 'caret-alt-to-right'] : ['caret-alt-left', 'caret-alt-to-left'];
93
+ }
94
+ get nextArrowSVGIcons() {
95
+ return !this.localization.rtl ? [this.caretAltRightIcon, this.caretAltToRightIcon] : [this.caretAltLeftIcon, this.caretAltToLeftIcon];
96
+ }
80
97
  }
81
98
  PagerElementComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerElementComponent, deps: [{ token: i1.LocalizationService }, { token: i2.PagerContextService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
82
99
  PagerElementComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: PagerElementComponent, ngImport: i0 });
@@ -7,7 +7,6 @@ import { Component, ChangeDetectionStrategy, ChangeDetectorRef, Input } from '@a
7
7
  import { PagerContextService } from "./pager-context.service";
8
8
  import { PagerElementComponent } from './pager-element.component';
9
9
  import { LocalizationService } from '@progress/kendo-angular-l10n';
10
- import { caretAltRightIcon, caretAltToRightIcon } from '@progress/kendo-svg-icons';
11
10
  import { NavigationService } from '../navigation/navigation.service';
12
11
  import * as i0 from "@angular/core";
13
12
  import * as i1 from "@progress/kendo-angular-l10n";
@@ -22,8 +21,6 @@ export class PagerNextButtonsComponent extends PagerElementComponent {
22
21
  constructor(localization, pagerContext, cd, navigationService) {
23
22
  super(localization, pagerContext, cd);
24
23
  this.navigationService = navigationService;
25
- this.caretAltRightIcon = caretAltRightIcon;
26
- this.caretAltToRightIcon = caretAltToRightIcon;
27
24
  }
28
25
  /**
29
26
  * @hidden
@@ -58,8 +55,8 @@ PagerNextButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
58
55
  type="button"
59
56
  kendoTreeListFocusable
60
57
  [enabled]="!disabled"
61
- icon="caret-alt-right"
62
- [svgIcon]="caretAltRightIcon"
58
+ [icon]="nextArrowIcons[0]"
59
+ [svgIcon]="nextArrowSVGIcons[0]"
63
60
  fillMode="flat"
64
61
  rounded="none"
65
62
  class="k-pager-nav"
@@ -73,8 +70,8 @@ PagerNextButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
73
70
  type="button"
74
71
  kendoTreeListFocusable
75
72
  [enabled]="!disabled"
76
- icon="caret-alt-to-right"
77
- [svgIcon]="caretAltToRightIcon"
73
+ [icon]="nextArrowIcons[1]"
74
+ [svgIcon]="nextArrowSVGIcons[1]"
78
75
  fillMode="flat"
79
76
  rounded="none"
80
77
  class="k-pager-nav k-pager-last"
@@ -95,8 +92,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
95
92
  type="button"
96
93
  kendoTreeListFocusable
97
94
  [enabled]="!disabled"
98
- icon="caret-alt-right"
99
- [svgIcon]="caretAltRightIcon"
95
+ [icon]="nextArrowIcons[0]"
96
+ [svgIcon]="nextArrowSVGIcons[0]"
100
97
  fillMode="flat"
101
98
  rounded="none"
102
99
  class="k-pager-nav"
@@ -110,8 +107,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
110
107
  type="button"
111
108
  kendoTreeListFocusable
112
109
  [enabled]="!disabled"
113
- icon="caret-alt-to-right"
114
- [svgIcon]="caretAltToRightIcon"
110
+ [icon]="nextArrowIcons[1]"
111
+ [svgIcon]="nextArrowSVGIcons[1]"
115
112
  fillMode="flat"
116
113
  rounded="none"
117
114
  class="k-pager-nav k-pager-last"
@@ -14,7 +14,7 @@ import * as i3 from "@progress/kendo-angular-buttons";
14
14
  import * as i4 from "../navigation/focusable.directive";
15
15
  import * as i5 from "@angular/common";
16
16
  /**
17
- * Displays numeric buttons to enable navigation between the pages.
17
+ * Displays numeric buttons to enable navigation between the pages ([see example]({% slug paging_treelist %}#toc-pager-templates)).
18
18
  */
19
19
  export class PagerNumericButtonsComponent extends PagerElementComponent {
20
20
  constructor(localization, cd, pagerContext) {
@@ -105,7 +105,7 @@ PagerPageSizesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
105
105
  [attr.aria-label]="textFor('pagerItemsPerPage')"
106
106
  (valueChange)="pageSizeChange($event)"></kendo-dropdownlist>
107
107
  <kendo-label [for]="dropdownlist" [text]="textFor('pagerItemsPerPage')"></kendo-label>
108
- `, isInline: true, components: [{ type: i3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional"], exportAs: ["kendoLabel"] }], directives: [{ type: i5.FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
108
+ `, isInline: true, components: [{ type: i3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }], directives: [{ type: i5.FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
109
109
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPageSizesComponent, decorators: [{
110
110
  type: Component,
111
111
  args: [{
@@ -7,7 +7,6 @@ import { Component, ChangeDetectionStrategy, ChangeDetectorRef, } from '@angular
7
7
  import { PagerContextService } from "./pager-context.service";
8
8
  import { PagerElementComponent } from './pager-element.component';
9
9
  import { LocalizationService } from '@progress/kendo-angular-l10n';
10
- import { caretAltLeftIcon, caretAltToLeftIcon } from '@progress/kendo-svg-icons';
11
10
  import { NavigationService } from '../navigation/navigation.service';
12
11
  import * as i0 from "@angular/core";
13
12
  import * as i1 from "@progress/kendo-angular-l10n";
@@ -22,8 +21,6 @@ export class PagerPrevButtonsComponent extends PagerElementComponent {
22
21
  constructor(localization, pagerContext, cd, navigationService) {
23
22
  super(localization, pagerContext, cd);
24
23
  this.navigationService = navigationService;
25
- this.caretAltLeftIcon = caretAltLeftIcon;
26
- this.caretAltToLeftIcon = caretAltToLeftIcon;
27
24
  }
28
25
  /**
29
26
  * @hidden
@@ -62,8 +59,8 @@ PagerPrevButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
62
59
  [attr.aria-label]="textFor('pagerFirstPage')"
63
60
  (click)="onButtonClick('firstPage')"
64
61
  role="button"
65
- icon="caret-alt-to-left"
66
- [svgIcon]="caretAltToLeftIcon"
62
+ [icon]="prevArrowIcons[0]"
63
+ [svgIcon]="prevArrowSVGIcons[0]"
67
64
  class="k-pager-nav k-pager-first"
68
65
  [disabled]="disabled"
69
66
  fillMode="flat"
@@ -76,8 +73,8 @@ PagerPrevButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
76
73
  [enabled]="!disabled"
77
74
  class="k-pager-nav"
78
75
  [disabled]="disabled"
79
- icon="caret-alt-left"
80
- [svgIcon]="caretAltLeftIcon"
76
+ [icon]="prevArrowIcons[1]"
77
+ [svgIcon]="prevArrowSVGIcons[1]"
81
78
  fillMode="flat"
82
79
  rounded="none"
83
80
  [title]="textFor('pagerPreviousPage')"
@@ -100,8 +97,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
100
97
  [attr.aria-label]="textFor('pagerFirstPage')"
101
98
  (click)="onButtonClick('firstPage')"
102
99
  role="button"
103
- icon="caret-alt-to-left"
104
- [svgIcon]="caretAltToLeftIcon"
100
+ [icon]="prevArrowIcons[0]"
101
+ [svgIcon]="prevArrowSVGIcons[0]"
105
102
  class="k-pager-nav k-pager-first"
106
103
  [disabled]="disabled"
107
104
  fillMode="flat"
@@ -114,8 +111,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
114
111
  [enabled]="!disabled"
115
112
  class="k-pager-nav"
116
113
  [disabled]="disabled"
117
- icon="caret-alt-left"
118
- [svgIcon]="caretAltLeftIcon"
114
+ [icon]="prevArrowIcons[1]"
115
+ [svgIcon]="prevArrowSVGIcons[1]"
119
116
  fillMode="flat"
120
117
  rounded="none"
121
118
  [title]="textFor('pagerPreviousPage')"
@@ -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
@@ -21,7 +21,7 @@ import * as i4 from "@angular/common";
21
21
  *
22
22
  * @example
23
23
  * ```html
24
- * <kendo-treelist>
24
+ * <kendo-treelist ...>
25
25
  * <ng-template kendoTreeListToolbarTemplate>
26
26
  * <button kendoTreeListPDFCommand>Export to PDF</button>
27
27
  * </ng-template>
@@ -61,7 +61,7 @@ PDFCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
61
61
  </span>
62
62
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
63
63
  <span class="k-button-text"><ng-content></ng-content></span>
64
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
64
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
65
65
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, decorators: [{
66
66
  type: Component,
67
67
  args: [{
@@ -5,6 +5,15 @@
5
5
  import { Component } from '@angular/core';
6
6
  import { PDFExportMarginComponent } from '@progress/kendo-angular-pdf-export';
7
7
  import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the Kendo UI PDFMargin component for Angular.
10
+ * The supported units are:
11
+ * `"mm"`
12
+ * `"cm"`
13
+ * `"in"`
14
+ * `"pt"` (default).
15
+ * Numbers are considered to be points (`"pt"`).
16
+ */
8
17
  export class PDFMarginComponent extends PDFExportMarginComponent {
9
18
  }
10
19
  PDFMarginComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFMarginComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
@@ -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">