@progress/kendo-angular-treelist 13.0.0-develop.7 → 13.0.0-develop.9

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 (123) hide show
  1. package/column-menu/column-chooser.component.d.ts +10 -6
  2. package/column-menu/column-menu-chooser.component.d.ts +6 -10
  3. package/column-menu/column-menu-filter.component.d.ts +6 -10
  4. package/column-menu/column-menu-item-content-template.directive.d.ts +1 -1
  5. package/column-menu/column-menu-item.component.d.ts +8 -6
  6. package/column-menu/column-menu-lock.component.d.ts +5 -11
  7. package/column-menu/column-menu-sort.component.d.ts +5 -11
  8. package/column-menu/column-menu.component.d.ts +1 -1
  9. package/column-menu/column-menu.service.d.ts +1 -1
  10. package/columns/checkbox-column.component.d.ts +1 -1
  11. package/columns/column-group.component.d.ts +9 -6
  12. package/columns/column.component.d.ts +16 -66
  13. package/columns/command-column.component.d.ts +13 -15
  14. package/columns/span-column.component.d.ts +10 -81
  15. package/editing/add-command.directive.d.ts +1 -1
  16. package/editing/cancel-command.directive.d.ts +1 -1
  17. package/editing/edit-command.directive.d.ts +1 -1
  18. package/editing/edit-template.directive.d.ts +11 -0
  19. package/editing/remove-command.directive.d.ts +1 -1
  20. package/editing/save-command.directive.d.ts +1 -1
  21. package/esm2020/column-menu/column-chooser.component.mjs +10 -6
  22. package/esm2020/column-menu/column-menu-chooser.component.mjs +8 -12
  23. package/esm2020/column-menu/column-menu-filter.component.mjs +6 -10
  24. package/esm2020/column-menu/column-menu-item-content-template.directive.mjs +1 -1
  25. package/esm2020/column-menu/column-menu-item.component.mjs +8 -6
  26. package/esm2020/column-menu/column-menu-lock.component.mjs +5 -11
  27. package/esm2020/column-menu/column-menu-sort.component.mjs +5 -11
  28. package/esm2020/column-menu/column-menu.component.mjs +1 -1
  29. package/esm2020/column-menu/column-menu.service.mjs +1 -1
  30. package/esm2020/columns/checkbox-column.component.mjs +1 -1
  31. package/esm2020/columns/column-group.component.mjs +9 -6
  32. package/esm2020/columns/column.component.mjs +16 -39
  33. package/esm2020/columns/command-column.component.mjs +13 -15
  34. package/esm2020/columns/span-column.component.mjs +10 -81
  35. package/esm2020/editing/add-command.directive.mjs +1 -1
  36. package/esm2020/editing/cancel-command.directive.mjs +1 -1
  37. package/esm2020/editing/edit-command.directive.mjs +1 -1
  38. package/esm2020/editing/edit-template.directive.mjs +11 -0
  39. package/esm2020/editing/remove-command.directive.mjs +1 -1
  40. package/esm2020/editing/save-command.directive.mjs +1 -1
  41. package/esm2020/excel/excel-command.directive.mjs +1 -1
  42. package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +11 -11
  43. package/esm2020/filtering/cell/date-filter-cell.component.mjs +11 -11
  44. package/esm2020/filtering/cell/filter-cell-operators.component.mjs +15 -0
  45. package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +13 -12
  46. package/esm2020/filtering/cell/string-filter-cell.component.mjs +14 -13
  47. package/esm2020/filtering/date-filter.component.mjs +6 -1
  48. package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +11 -12
  49. package/esm2020/filtering/menu/date-filter-menu.component.mjs +12 -12
  50. package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +12 -12
  51. package/esm2020/filtering/menu/string-filter-menu.component.mjs +15 -0
  52. package/esm2020/filtering/numeric-filter.component.mjs +4 -1
  53. package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -5
  54. package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -5
  55. package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -5
  56. package/esm2020/filtering/operators/before-filter-operator.component.mjs +3 -6
  57. package/esm2020/filtering/operators/contains-filter-operator.component.mjs +1 -4
  58. package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +1 -4
  59. package/esm2020/filtering/operators/eq-filter-operator.component.mjs +1 -4
  60. package/esm2020/filtering/operators/gt-filter-operator.component.mjs +1 -4
  61. package/esm2020/filtering/operators/gte-filter-operator.component.mjs +1 -4
  62. package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +1 -4
  63. package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -4
  64. package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +1 -4
  65. package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +1 -4
  66. package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -5
  67. package/esm2020/filtering/operators/lte-filter-operator.component.mjs +1 -4
  68. package/esm2020/filtering/operators/neq-filter-operator.component.mjs +1 -4
  69. package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +1 -4
  70. package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +1 -4
  71. package/esm2020/filtering/string-filter.component.mjs +2 -1
  72. package/esm2020/localization/custom-messages.component.mjs +1 -1
  73. package/esm2020/package-metadata.mjs +2 -2
  74. package/esm2020/pager/pager-numeric-buttons.component.mjs +1 -1
  75. package/esm2020/pager/pager-template.directive.mjs +1 -1
  76. package/esm2020/pdf/pdf-command.directive.mjs +1 -1
  77. package/esm2020/pdf/pdf-margin.component.mjs +9 -0
  78. package/esm2020/rendering/cell-template.directive.mjs +1 -1
  79. package/esm2020/rendering/common/spacer.component.mjs +1 -1
  80. package/esm2020/treelist.component.mjs +24 -288
  81. package/excel/excel-command.directive.d.ts +1 -1
  82. package/excel/excel.component.d.ts +9 -8
  83. package/fesm2015/progress-kendo-angular-treelist.mjs +302 -667
  84. package/fesm2020/progress-kendo-angular-treelist.mjs +302 -667
  85. package/filtering/cell/boolean-filter-cell.component.d.ts +11 -11
  86. package/filtering/cell/date-filter-cell.component.d.ts +11 -11
  87. package/filtering/cell/filter-cell-operators.component.d.ts +15 -0
  88. package/filtering/cell/numeric-filter-cell.component.d.ts +13 -12
  89. package/filtering/cell/string-filter-cell.component.d.ts +12 -11
  90. package/filtering/date-filter.component.d.ts +7 -11
  91. package/filtering/menu/boolean-filter-menu.component.d.ts +11 -12
  92. package/filtering/menu/date-filter-menu.component.d.ts +12 -12
  93. package/filtering/menu/numeric-filter-menu.component.d.ts +12 -12
  94. package/filtering/menu/string-filter-menu.component.d.ts +15 -0
  95. package/filtering/numeric-filter.component.d.ts +4 -1
  96. package/filtering/operators/after-eq-filter-operator.component.d.ts +4 -0
  97. package/filtering/operators/after-filter-operator.component.d.ts +4 -0
  98. package/filtering/operators/before-eq-filter-operator.component.d.ts +4 -0
  99. package/filtering/operators/before-filter-operator.component.d.ts +4 -0
  100. package/filtering/operators/contains-filter-operator.component.d.ts +1 -4
  101. package/filtering/operators/ends-with-filter-operator.component.d.ts +1 -4
  102. package/filtering/operators/eq-filter-operator.component.d.ts +1 -4
  103. package/filtering/operators/gte-filter-operator.component.d.ts +1 -4
  104. package/filtering/operators/is-empty-filter-operator.component.d.ts +1 -4
  105. package/filtering/operators/is-not-empty-filter-operator.component.d.ts +1 -4
  106. package/filtering/operators/is-not-null-filter-operator.component.d.ts +1 -4
  107. package/filtering/operators/isnull-filter-operator.component.d.ts +1 -4
  108. package/filtering/operators/lt-filter-operator.component.d.ts +4 -0
  109. package/filtering/operators/neq-filter-operator.component.d.ts +1 -4
  110. package/filtering/operators/not-contains-filter-operator.component.d.ts +1 -4
  111. package/filtering/operators/starts-with-filter-operator.component.d.ts +1 -4
  112. package/filtering/string-filter.component.d.ts +2 -1
  113. package/localization/custom-messages.component.d.ts +1 -1
  114. package/localization/messages.d.ts +1 -1
  115. package/package.json +16 -16
  116. package/pager/pager-numeric-buttons.component.d.ts +1 -1
  117. package/pager/pager-template.directive.d.ts +1 -1
  118. package/pdf/pdf-command.directive.d.ts +1 -1
  119. package/pdf/pdf-margin.component.d.ts +9 -0
  120. package/rendering/cell-template.directive.d.ts +1 -1
  121. package/rendering/common/spacer.component.d.ts +1 -1
  122. package/schematics/ngAdd/index.js +3 -3
  123. package/treelist.component.d.ts +24 -287
@@ -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
  }
@@ -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); }
@@ -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
  }
@@ -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) {
@@ -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: 1685097058,
13
- version: '13.0.0-develop.7',
12
+ publishDate: 1685111130,
13
+ version: '13.0.0-develop.9',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -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) {
@@ -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>