@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
@@ -26,7 +26,7 @@ import * as i4 from "@angular/common";
26
26
  *
27
27
  * @example
28
28
  * ```html
29
- * <kendo-treelist>
29
+ * <kendo-treelist ...>
30
30
  * <kendo-treelist-command-column title="command">
31
31
  * <ng-template kendoTreeListCellTemplate let-cellContext="cellContext">
32
32
  * <button [kendoTreeListAddCommand]="cellContext" class="k-primary">Edit</button>
@@ -57,7 +57,7 @@ AddCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
57
57
  </span>
58
58
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
59
59
  <span class="k-button-text"><ng-content></ng-content></span>
60
- `, 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"] }] });
60
+ `, 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"] }] });
61
61
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AddCommandDirective, decorators: [{
62
62
  type: Component,
63
63
  args: [{
@@ -55,7 +55,7 @@ BaseCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
55
55
  </span>
56
56
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
57
57
  <span class="k-button-text"><ng-content></ng-content></span>
58
- `, 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"] }] });
58
+ `, 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"] }] });
59
59
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseCommandDirective, decorators: [{
60
60
  type: Component,
61
61
  args: [{
@@ -23,7 +23,7 @@ import * as i4 from "@angular/common";
23
23
  *
24
24
  * @example
25
25
  * ```html
26
- * <kendo-treelist>
26
+ * <kendo-treelist ...>
27
27
  * <kendo-treelist-command-column title="command">
28
28
  * <ng-template kendoTreeListCellTemplate let-cellContext="cellContext">
29
29
  * <button [kendoTreeListCancelCommand]="cellContext">Cancel changes</button>
@@ -57,7 +57,7 @@ CancelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
57
57
  </span>
58
58
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
59
59
  <span class="k-button-text"><ng-content></ng-content></span>
60
- `, 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"] }] });
60
+ `, 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"] }] });
61
61
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CancelCommandDirective, decorators: [{
62
62
  type: Component,
63
63
  args: [{
@@ -23,7 +23,7 @@ import * as i4 from "@angular/common";
23
23
  *
24
24
  * @example
25
25
  * ```html
26
- * <kendo-treelist>
26
+ * <kendo-treelist ...>
27
27
  * <kendo-treelist-command-column title="command">
28
28
  * <ng-template kendoTreeListCellTemplate let-cellContext="cellContext">
29
29
  * <button [kendoTreeListEditCommand]="cellContext">Edit</button>
@@ -57,7 +57,7 @@ EditCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
57
57
  </span>
58
58
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
59
59
  <span class="k-button-text"><ng-content></ng-content></span>
60
- `, 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"] }] });
60
+ `, 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"] }] });
61
61
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditCommandDirective, decorators: [{
62
62
  type: Component,
63
63
  args: [{
@@ -16,6 +16,17 @@ import * as i0 from "@angular/core";
16
16
  * - `formGroup`&mdash;The current [`FormGroup`](link:site.data.urls.angular['formgroupapi']). If you use the TreeList inside [Template-Driven Forms](link:site.data.urls.angular['forms']), `formGroup` will be `undefined`.
17
17
  * - `isNew`&mdash;The state of the current item.
18
18
  * - `rowIndex`&mdash;The current row index. If inside a new item row, `rowIndex` is `-1`.
19
+ *
20
+ * * @example
21
+ * ```html
22
+ * <kendo-treelist ...>
23
+ * <kendo-treelist-command-column title="command">
24
+ * <ng-template kendoTreeListEditTemplate let-rowIndex="rowIndex">
25
+ * {{rowIndex}}
26
+ * </ng-template>
27
+ * </kendo-treelist-command-column>
28
+ * </kendo-treelist>
29
+ * ```
19
30
  */
20
31
  export class EditTemplateDirective {
21
32
  constructor(templateRef) {
@@ -23,7 +23,7 @@ import * as i4 from "@angular/common";
23
23
  *
24
24
  * @example
25
25
  * ```html
26
- * <kendo-treelist>
26
+ * <kendo-treelist ...>
27
27
  * <kendo-treelist-command-column title="command">
28
28
  * <ng-template kendoTreeListCellTemplate let-cellContext="cellContext">
29
29
  * <button [kendoTreeListRemoveCommand]="cellContext">Remove row</button>
@@ -56,7 +56,7 @@ RemoveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
56
56
  </span>
57
57
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
58
58
  <span class="k-button-text"><ng-content></ng-content></span>
59
- `, 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"] }] });
59
+ `, 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"] }] });
60
60
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RemoveCommandDirective, decorators: [{
61
61
  type: Component,
62
62
  args: [{
@@ -23,7 +23,7 @@ import * as i4 from "@angular/common";
23
23
  *
24
24
  * @example
25
25
  * ```html
26
- * <kendo-treelist>
26
+ * <kendo-treelist ...>
27
27
  * <kendo-treelist-command-column title="command">
28
28
  * <ng-template kendoTreeListCellTemplate let-cellContext="cellContext">
29
29
  * <button [kendoTreeListSaveCommand]="cellContext">Save changes</button>
@@ -56,7 +56,7 @@ SaveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
56
56
  </span>
57
57
  <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
58
58
  <span class="k-button-text"><ng-content></ng-content></span>
59
- `, 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"] }] });
59
+ `, 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"] }] });
60
60
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SaveCommandDirective, decorators: [{
61
61
  type: Component,
62
62
  args: [{
@@ -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 kendoTreeListExcelCommand>Export to PDF</button>
27
27
  * </ng-template>
@@ -61,7 +61,7 @@ ExcelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
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: ExcelCommandDirective, decorators: [{
66
66
  type: Component,
67
67
  args: [{
@@ -14,19 +14,19 @@ import * as i4 from "@progress/kendo-angular-dropdowns";
14
14
  import * as i5 from "../filter-input.directive";
15
15
  /**
16
16
  * Represents a Boolean filter-cell component.
17
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-default-filter-operator).
17
18
  *
18
19
  * @example
19
- *
20
- * ```html-no-run
21
- * <kendo-treelist-column field="ProductName" title="Product Name">
22
- * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
23
- * <kendo-treelist-boolean-filter-cell
24
- * [column]="column"
25
- * [filter]="filter">
26
- * </kendo-treelist-boolean-filter-cell>
27
- * </ng-template>
28
- * </kendo-treelist-column>
29
- * ```
20
+ * ```html
21
+ * <kendo-treelist-column field="ProductName" title="Product Name">
22
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
23
+ * <kendo-treelist-boolean-filter-cell
24
+ * [column]="column"
25
+ * [filter]="filter">
26
+ * </kendo-treelist-boolean-filter-cell>
27
+ * </ng-template>
28
+ * </kendo-treelist-column>
29
+ * ```
30
30
  */
31
31
  export class BooleanFilterCellComponent extends BooleanFilterComponent {
32
32
  constructor(filterService, localization, cd) {
@@ -17,17 +17,16 @@ import * as i5 from "../filter-input.directive";
17
17
  *
18
18
  * @example
19
19
  *
20
- * ```html-no-run
21
- * <kendo-treelist-column field="OrderDate" title="Order Date">
22
- * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
23
- * <kendo-treelist-date-filter-cell
24
- * [showOperators]="false"
25
- * [column]="column"
26
- * [filter]="filter">
27
- * </kendo-treelist-date-filter-cell>
28
- * </ng-template>
29
- * </kendo-treelist-column>
30
- * ```
20
+ * ```html
21
+ * <kendo-treelist-column field="OrderDate">
22
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
23
+ * <kendo-treelist-date-filter-cell
24
+ * [column]="column"
25
+ * [filter]="filter">
26
+ * </kendo-treelist-date-filter-cell>
27
+ * </ng-template>
28
+ * </kendo-treelist-column>
29
+ * ```
31
30
  */
32
31
  export class DateFilterCellComponent extends DateFilterComponent {
33
32
  constructor(filterService, localization) {
@@ -36,6 +35,7 @@ export class DateFilterCellComponent extends DateFilterComponent {
36
35
  /**
37
36
  * Determines if the drop-down filter operators will be displayed. The default value is `true`.
38
37
  * @type {boolean}
38
+ * @default true
39
39
  */
40
40
  this.showOperators = true;
41
41
  }
@@ -15,6 +15,20 @@ import * as i4 from "@angular/common";
15
15
  import * as i5 from "../../navigation/focusable.directive";
16
16
  /**
17
17
  * Represents a component which accommodates the filter operators.
18
+ *
19
+ * @example
20
+ * ```html
21
+ * <kendo-treelist ...>
22
+ * <kendo-treelist-column field="ProductName">
23
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
24
+ * <input />
25
+ * <kendo-treelist-filter-cell-operators
26
+ * [operators]="[{text: 'Equals', value: 'eq'}]">
27
+ * </kendo-treelist-filter-cell-operators>
28
+ * </ng-template>
29
+ * </kendo-treelist-column>
30
+ * </kendo-treelist>
31
+ * ```
18
32
  */
19
33
  export class FilterCellOperatorsComponent {
20
34
  constructor(localization) {
@@ -28,6 +42,7 @@ export class FilterCellOperatorsComponent {
28
42
  /**
29
43
  * Determines if the list of operators will be displayed.
30
44
  * @type {boolean}
45
+ * @default true
31
46
  */
32
47
  this.showOperators = true;
33
48
  /**
@@ -17,16 +17,16 @@ import * as i6 from "../filter-input.directive";
17
17
  * Represents a numeric filter cell.
18
18
  *
19
19
  * @example
20
- * ```html-no-run
21
- * <kendo-treelist-column field="ProductName" title="Product Name">
22
- * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
23
- * <kendo-treelist-numeric-filter-cell
24
- * [column]="column"
25
- * [filter]="filter">
26
- * </kendo-treelist-numeric-filter-cell>
27
- * </ng-template>
28
- * </kendo-treelist-column>
29
- * ```
20
+ * ```html
21
+ * <kendo-treelist-column field="ProductName" title="Product Name">
22
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
23
+ * <kendo-treelist-numeric-filter-cell
24
+ * [column]="column"
25
+ * [filter]="filter">
26
+ * </kendo-treelist-numeric-filter-cell>
27
+ * </ng-template>
28
+ * </kendo-treelist-column>
29
+ * ```
30
30
  */
31
31
  export class NumericFilterCellComponent extends NumericFilterComponent {
32
32
  constructor(filterService, localization) {
@@ -34,14 +34,15 @@ export class NumericFilterCellComponent extends NumericFilterComponent {
34
34
  this.localization = localization;
35
35
  /**
36
36
  * Determines the delay time (in milliseconds) before the filter value is submitted.
37
- * A value of `0` indicates no delay. The default value is `500`.
37
+ * A value of `0` indicates no delay.
38
38
  * @type {boolean}
39
+ * @default 500
39
40
  */
40
41
  this.filterDelay = 500;
41
42
  /**
42
43
  * Determines if the drop-down filter operators will be displayed.
43
- * The default value is `true`.
44
44
  * @type {boolean}
45
+ * @default true
45
46
  */
46
47
  this.showOperators = true;
47
48
  }
@@ -19,17 +19,16 @@ import * as i6 from "../filter-input.directive";
19
19
  *
20
20
  * @example
21
21
  *
22
- * ```html-no-run
23
- * <kendo-treelist-column field="ProductName" title="Product Name">
24
- * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
25
- * <kendo-treelist-string-filter-cell
26
- * [showOperators]="false"
27
- * [column]="column"
28
- * [filter]="filter">
29
- * </kendo-treelist-string-filter-cell>
30
- * </ng-template>
31
- * </kendo-treelist-column>
32
- * ```
22
+ * ```html
23
+ * <kendo-treelist-column field="ProductName">
24
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
25
+ * <kendo-treelist-string-filter-cell
26
+ * [column]="column"
27
+ * [filter]="filter">
28
+ * </kendo-treelist-string-filter-cell>
29
+ * </ng-template>
30
+ * </kendo-treelist-column>
31
+ * ```
33
32
  */
34
33
  export class StringFilterCellComponent extends StringFilterComponent {
35
34
  constructor(filterService, localization) {
@@ -38,12 +37,14 @@ export class StringFilterCellComponent extends StringFilterComponent {
38
37
  * Determines the delay time (in milliseconds) before the filter value is submitted.
39
38
  * A value of `0` indicates no delay. The default value is `500`.
40
39
  * @type {boolean}
40
+ * @default 500
41
41
  */
42
42
  this.filterDelay = 500;
43
43
  /**
44
44
  * Determines if the drop-down filter operators will be displayed.
45
45
  * The default value is `true`.
46
46
  * @type {boolean}
47
+ * @default true
47
48
  */
48
49
  this.showOperators = true;
49
50
  }
@@ -56,7 +57,7 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
56
57
  [operators]="operators"
57
58
  [defaultOperator]="operator"
58
59
  [showOperators]="showOperators">
59
- <input
60
+ <input
60
61
  class="k-textbox k-input k-input-md k-rounded-md k-input-solid"
61
62
  kendoTreeListFocusable
62
63
  kendoFilterInput
@@ -75,7 +76,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
75
76
  [operators]="operators"
76
77
  [defaultOperator]="operator"
77
78
  [showOperators]="showOperators">
78
- <input
79
+ <input
79
80
  class="k-textbox k-input k-input-md k-rounded-md k-input-solid"
80
81
  kendoTreeListFocusable
81
82
  kendoFilterInput
@@ -33,25 +33,30 @@ export class DateFilterComponent extends BaseFilterCellComponent {
33
33
  /**
34
34
  * The default filter operator. Defaults to `contains`.
35
35
  * @type {string}
36
+ * @default 'gte'
36
37
  */
37
38
  this.operator = "gte";
38
39
  /**
39
40
  * Defines the active view that the calendar initially renders.
40
41
  * By default, the active view is `month`.
41
42
  *
42
- * > You have to set `activeView` within the `topView`-`bottomView` range.
43
+ * You have to set `activeView` within the `topView`-`bottomView` range.
44
+ * @default 'month'
43
45
  */
44
46
  this.activeView = "month";
45
47
  /**
46
48
  * Defines the bottommost calendar view, to which the user can navigate.
49
+ * @default 'month'
47
50
  */
48
51
  this.bottomView = "month";
49
52
  /**
50
53
  * Defines the topmost calendar view, to which the user can navigate.
54
+ * @default 'century'
51
55
  */
52
56
  this.topView = "century";
53
57
  /**
54
58
  * Determines whether to display a week number column in the `month` view of the Calendar.
59
+ * @default false
55
60
  */
56
61
  this.weekNumber = false;
57
62
  this.defaultOperators = dateOperators(this.localization);
@@ -12,20 +12,19 @@ import * as i1 from "@progress/kendo-angular-l10n";
12
12
  import * as i2 from "@angular/common";
13
13
  import * as i3 from "@progress/kendo-angular-inputs";
14
14
  /**
15
- * Represents a Boolean-filter menu component.
15
+ * Represents a Boolean-filter menu component. [See example](slug:columnmenu_treelist#toc-customizing-the-content).
16
16
  *
17
17
  * @example
18
- * ```html-no-run
19
- * <kendo-treelist-column field="Discontinued" title="Discontinued">
20
- * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
21
- * <kendo-treelist-boolean-filter-menu
22
- * [column]="column"
23
- * [filter]="filter"
24
- * [filterService]="filterService"
25
- * >
26
- * </kendo-treelist-boolean-filter-menu>
27
- * </ng-template>
28
- * </kendo-treelist-column>
18
+ * ```html
19
+ * <kendo-treelist-column field="Discontinued" title="Discontinued">
20
+ * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
21
+ * <kendo-treelist-boolean-filter-menu
22
+ * [column]="column"
23
+ * [filter]="filter"
24
+ * [filterService]="filterService">
25
+ * </kendo-treelist-boolean-filter-menu>
26
+ * </ng-template>
27
+ * </kendo-treelist-column>
29
28
  * ```
30
29
  */
31
30
  export class BooleanFilterMenuComponent extends BooleanFilterComponent {
@@ -17,18 +17,17 @@ import * as i4 from "@angular/common";
17
17
  * Represents a date-filter menu component.
18
18
  *
19
19
  * @example
20
- * ```html-no-run
21
- * <kendo-treelist-column field="OrderDate" title="Order Date">
22
- * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
23
- * <kendo-treelist-date-filter-menu
24
- * [column]="column"
25
- * [filter]="filter"
26
- * [filterService]="filterService"
27
- * >
28
- * </kendo-treelist-date-filter-menu>
29
- * </ng-template>
30
- * </kendo-treelist-column>
31
- * ```
20
+ * ```html
21
+ * <kendo-treelist-column field="OrderDate" title="Order Date">
22
+ * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
23
+ * <kendo-treelist-date-filter-menu
24
+ * [column]="column"
25
+ * [filter]="filter"
26
+ * [filterService]="filterService">
27
+ * </kendo-treelist-date-filter-menu>
28
+ * </ng-template>
29
+ * </kendo-treelist-column>
30
+ * ```
32
31
  */
33
32
  export class DateFilterMenuComponent extends DateFilterComponent {
34
33
  constructor(localization) {
@@ -41,6 +40,7 @@ export class DateFilterMenuComponent extends DateFilterComponent {
41
40
  this.filter = { filters: [], logic: "and" };
42
41
  /**
43
42
  * Determines if the inputs of second criteria will be displayed.
43
+ * @default true
44
44
  */
45
45
  this.extra = true;
46
46
  }
@@ -60,7 +60,7 @@ FilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
60
60
  >
61
61
  </kendo-treelist-filter-menu-container>
62
62
  </ng-template>
63
- `, isInline: true, components: [{ type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i5.FilterMenuContainerComponent, selector: "kendo-treelist-filter-menu-container", inputs: ["column", "filter", "actionsClass"], outputs: ["close"] }] });
63
+ `, isInline: true, components: [{ type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i5.FilterMenuContainerComponent, selector: "kendo-treelist-filter-menu-container", inputs: ["column", "filter", "actionsClass"], outputs: ["close"] }] });
64
64
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterMenuComponent, decorators: [{
65
65
  type: Component,
66
66
  args: [{
@@ -17,18 +17,17 @@ import * as i4 from "@angular/common";
17
17
  * Represents a numeric-filter menu component.
18
18
  *
19
19
  * @example
20
- * ```html-no-run
21
- * <kendo-treelist-column field="UnitPrice" title="Unit Price">
22
- * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
23
- * <kendo-treelist-numeric-filter-menu
24
- * [column]="column"
25
- * [filter]="filter"
26
- * [filterService]="filterService"
27
- * >
28
- * </kendo-treelist-numeric-filter-menu>
29
- * </ng-template>
30
- * </kendo-treelist-column>
31
- * ```
20
+ * ```html
21
+ * <kendo-treelist-column field="UnitPrice">
22
+ * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
23
+ * <kendo-treelist-numeric-filter-menu
24
+ * [column]="column"
25
+ * [filter]="filter"
26
+ * [filterService]="filterService">
27
+ * </kendo-treelist-numeric-filter-menu>
28
+ * </ng-template>
29
+ * </kendo-treelist-column>
30
+ * ```
32
31
  */
33
32
  export class NumericFilterMenuComponent extends NumericFilterComponent {
34
33
  constructor(localization) {
@@ -41,6 +40,7 @@ export class NumericFilterMenuComponent extends NumericFilterComponent {
41
40
  this.filter = { filters: [], logic: "and" };
42
41
  /**
43
42
  * Determines if the inputs of second criteria will displayed.
43
+ * @default true
44
44
  */
45
45
  this.extra = true;
46
46
  }
@@ -16,6 +16,20 @@ import * as i4 from "@angular/common";
16
16
  /**
17
17
  * Represents a string-filter menu component.
18
18
  * ([see example]({% slug builtinfiltertemplate_treelist %}#toc-configuration-components-for-filter-templates)).
19
+ *
20
+ * @example
21
+ * ```html
22
+ * <kendo-treelist-column field="name">
23
+ * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
24
+ * <kendo-treelist-string-filter-menu
25
+ * [column]="column"
26
+ * [filter]="filter"
27
+ * [filterService]="filterService">
28
+ * </kendo-treelist-string-filter-menu>
29
+ * </ng-template>
30
+ * </kendo-treelist-column>
31
+ * ```
32
+ *
19
33
  */
20
34
  export class StringFilterMenuComponent extends StringFilterComponent {
21
35
  constructor(localization) {
@@ -28,6 +42,7 @@ export class StringFilterMenuComponent extends StringFilterComponent {
28
42
  this.filter = { filters: [], logic: "and" };
29
43
  /**
30
44
  * Determines if the inputs of second criteria will displayed.
45
+ * @default true
31
46
  */
32
47
  this.extra = true;
33
48
  }
@@ -30,18 +30,21 @@ export class NumericFilterComponent extends BaseFilterCellComponent {
30
30
  super(filterService);
31
31
  this.localization = localization;
32
32
  /**
33
- * The default filter operator. Defaults to `eq`.
33
+ * The default filter operator.
34
34
  * @type {string}
35
+ * @default 'eq'
35
36
  */
36
37
  this.operator = "eq";
37
38
  /**
38
39
  * Specifies the value that is used to increment or decrement the component value.
39
40
  * @type {numeric}
41
+ * @default 1
40
42
  */
41
43
  this.step = 1;
42
44
  /**
43
45
  * Specifies whether the **Up** and **Down** spin buttons will be rendered.
44
46
  * @type {boolean}
47
+ * @default true
45
48
  */
46
49
  this.spinners = true;
47
50
  this.defaultOperators = numericOperators(this.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 `GreaterOrEqualTo` (**Is after or equal to**) date 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 AfterEqFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("after-eq", 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 `Greater` (**Is after**) date 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 AfterFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("after", 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 `LessOrEqualTo` (**Is before or equal to**) date 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 BeforeEqFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("before-eq", 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
- /*
11
- * Represents the `Less then` (**Is before**) date 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)
10
+ /**
11
+ * Represents the `Less than` (**Is before**) date filter operator.
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
16
13
  */
17
14
  export class BeforeFilterOperatorComponent extends FilterOperatorBase {
18
15
  constructor(localization) { super("before", localization); }