@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
@@ -9,19 +9,19 @@ import { BooleanFilterComponent } from '../boolean-filter.component';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
11
  * Represents a Boolean filter-cell component.
12
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-default-filter-operator).
12
13
  *
13
14
  * @example
14
- *
15
- * ```html-no-run
16
- * <kendo-treelist-column field="ProductName" title="Product Name">
17
- * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
18
- * <kendo-treelist-boolean-filter-cell
19
- * [column]="column"
20
- * [filter]="filter">
21
- * </kendo-treelist-boolean-filter-cell>
22
- * </ng-template>
23
- * </kendo-treelist-column>
24
- * ```
15
+ * ```html
16
+ * <kendo-treelist-column field="ProductName" title="Product Name">
17
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
18
+ * <kendo-treelist-boolean-filter-cell
19
+ * [column]="column"
20
+ * [filter]="filter">
21
+ * </kendo-treelist-boolean-filter-cell>
22
+ * </ng-template>
23
+ * </kendo-treelist-column>
24
+ * ```
25
25
  */
26
26
  export declare class BooleanFilterCellComponent extends BooleanFilterComponent {
27
27
  private cd;
@@ -11,23 +11,23 @@ import * as i0 from "@angular/core";
11
11
  *
12
12
  * @example
13
13
  *
14
- * ```html-no-run
15
- * <kendo-treelist-column field="OrderDate" title="Order Date">
16
- * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
17
- * <kendo-treelist-date-filter-cell
18
- * [showOperators]="false"
19
- * [column]="column"
20
- * [filter]="filter">
21
- * </kendo-treelist-date-filter-cell>
22
- * </ng-template>
23
- * </kendo-treelist-column>
24
- * ```
14
+ * ```html
15
+ * <kendo-treelist-column field="OrderDate">
16
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
17
+ * <kendo-treelist-date-filter-cell
18
+ * [column]="column"
19
+ * [filter]="filter">
20
+ * </kendo-treelist-date-filter-cell>
21
+ * </ng-template>
22
+ * </kendo-treelist-column>
23
+ * ```
25
24
  */
26
25
  export declare class DateFilterCellComponent extends DateFilterComponent {
27
26
  protected localization: LocalizationService;
28
27
  /**
29
28
  * Determines if the drop-down filter operators will be displayed. The default value is `true`.
30
29
  * @type {boolean}
30
+ * @default true
31
31
  */
32
32
  showOperators: boolean;
33
33
  constructor(filterService: FilterService, localization: LocalizationService);
@@ -9,6 +9,20 @@ import { SVGIcon } from '@progress/kendo-svg-icons';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
11
  * Represents a component which accommodates the filter operators.
12
+ *
13
+ * @example
14
+ * ```html
15
+ * <kendo-treelist ...>
16
+ * <kendo-treelist-column field="ProductName">
17
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
18
+ * <input />
19
+ * <kendo-treelist-filter-cell-operators
20
+ * [operators]="[{text: 'Equals', value: 'eq'}]">
21
+ * </kendo-treelist-filter-cell-operators>
22
+ * </ng-template>
23
+ * </kendo-treelist-column>
24
+ * </kendo-treelist>
25
+ * ```
12
26
  */
13
27
  export declare class FilterCellOperatorsComponent implements OnInit, OnDestroy {
14
28
  protected localization: LocalizationService;
@@ -37,6 +51,7 @@ export declare class FilterCellOperatorsComponent implements OnInit, OnDestroy {
37
51
  /**
38
52
  * Determines if the list of operators will be displayed.
39
53
  * @type {boolean}
54
+ * @default true
40
55
  */
41
56
  showOperators: boolean;
42
57
  /**
@@ -10,29 +10,30 @@ import * as i0 from "@angular/core";
10
10
  * Represents a numeric filter cell.
11
11
  *
12
12
  * @example
13
- * ```html-no-run
14
- * <kendo-treelist-column field="ProductName" title="Product Name">
15
- * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
16
- * <kendo-treelist-numeric-filter-cell
17
- * [column]="column"
18
- * [filter]="filter">
19
- * </kendo-treelist-numeric-filter-cell>
20
- * </ng-template>
21
- * </kendo-treelist-column>
22
- * ```
13
+ * ```html
14
+ * <kendo-treelist-column field="ProductName" title="Product Name">
15
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
16
+ * <kendo-treelist-numeric-filter-cell
17
+ * [column]="column"
18
+ * [filter]="filter">
19
+ * </kendo-treelist-numeric-filter-cell>
20
+ * </ng-template>
21
+ * </kendo-treelist-column>
22
+ * ```
23
23
  */
24
24
  export declare class NumericFilterCellComponent extends NumericFilterComponent {
25
25
  protected localization: LocalizationService;
26
26
  /**
27
27
  * Determines the delay time (in milliseconds) before the filter value is submitted.
28
- * A value of `0` indicates no delay. The default value is `500`.
28
+ * A value of `0` indicates no delay.
29
29
  * @type {boolean}
30
+ * @default 500
30
31
  */
31
32
  filterDelay: number;
32
33
  /**
33
34
  * Determines if the drop-down filter operators will be displayed.
34
- * The default value is `true`.
35
35
  * @type {boolean}
36
+ * @default true
36
37
  */
37
38
  showOperators: boolean;
38
39
  constructor(filterService: FilterService, localization: LocalizationService);
@@ -12,29 +12,30 @@ import * as i0 from "@angular/core";
12
12
  *
13
13
  * @example
14
14
  *
15
- * ```html-no-run
16
- * <kendo-treelist-column field="ProductName" title="Product Name">
17
- * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
18
- * <kendo-treelist-string-filter-cell
19
- * [showOperators]="false"
20
- * [column]="column"
21
- * [filter]="filter">
22
- * </kendo-treelist-string-filter-cell>
23
- * </ng-template>
24
- * </kendo-treelist-column>
25
- * ```
15
+ * ```html
16
+ * <kendo-treelist-column field="ProductName">
17
+ * <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
18
+ * <kendo-treelist-string-filter-cell
19
+ * [column]="column"
20
+ * [filter]="filter">
21
+ * </kendo-treelist-string-filter-cell>
22
+ * </ng-template>
23
+ * </kendo-treelist-column>
24
+ * ```
26
25
  */
27
26
  export declare class StringFilterCellComponent extends StringFilterComponent {
28
27
  /**
29
28
  * Determines the delay time (in milliseconds) before the filter value is submitted.
30
29
  * A value of `0` indicates no delay. The default value is `500`.
31
30
  * @type {boolean}
31
+ * @default 500
32
32
  */
33
33
  filterDelay: number;
34
34
  /**
35
35
  * Determines if the drop-down filter operators will be displayed.
36
36
  * The default value is `true`.
37
37
  * @type {boolean}
38
+ * @default true
38
39
  */
39
40
  showOperators: boolean;
40
41
  constructor(filterService: FilterService, localization: LocalizationService);
@@ -29,6 +29,7 @@ export declare class DateFilterComponent extends BaseFilterCellComponent impleme
29
29
  /**
30
30
  * The default filter operator. Defaults to `contains`.
31
31
  * @type {string}
32
+ * @default 'gte'
32
33
  */
33
34
  operator: string;
34
35
  /**
@@ -62,16 +63,7 @@ export declare class DateFilterComponent extends BaseFilterCellComponent impleme
62
63
  max: Date;
63
64
  /**
64
65
  * Defines the descriptions of the format sections in the input field.
65
- * * `wide`&mdash;Displays the full description of the format section. For example, turns `MM` into `month`.
66
- * Retrieved from [CLDR](https://github.com/telerik/kendo-intl/blob/develop/docs/cldr/index.md).
67
- * * `narrow`&mdash;Displays the narrow description of the format section. For example, turns `MM` into `mo.`.
68
- * Retrieved from [CLDR](https://github.com/telerik/kendo-intl/blob/develop/docs/cldr/index.md).
69
- * * `short`&mdash;Displays the short description of the format section. For example, turns `MM` into `mo.`.
70
- * Retrieved from [CLDR](https://github.com/telerik/kendo-intl/blob/develop/docs/cldr/index.md).
71
- * * `formatPattern`&mdash;Directly displays the format section.
72
- * * [`CustomFormatPlaceholder`]({% slug api_dateinputs_dateinputcustomformatplaceholder %})&mdash;
73
- * An object that defines the description of the format sections.
74
- * For example, `{ day: 'd.', month: 'M.', year: 'y', hour: 'h.' }`.
66
+ * [See possible format options](slug:placeholders_dateinput#toc-format-sections-description).
75
67
  */
76
68
  formatPlaceholder: DateInputFormatPlaceholder;
77
69
  /**
@@ -82,19 +74,23 @@ export declare class DateFilterComponent extends BaseFilterCellComponent impleme
82
74
  * Defines the active view that the calendar initially renders.
83
75
  * By default, the active view is `month`.
84
76
  *
85
- * > You have to set `activeView` within the `topView`-`bottomView` range.
77
+ * You have to set `activeView` within the `topView`-`bottomView` range.
78
+ * @default 'month'
86
79
  */
87
80
  activeView: CalendarView;
88
81
  /**
89
82
  * Defines the bottommost calendar view, to which the user can navigate.
83
+ * @default 'month'
90
84
  */
91
85
  bottomView: CalendarView;
92
86
  /**
93
87
  * Defines the topmost calendar view, to which the user can navigate.
88
+ * @default 'century'
94
89
  */
95
90
  topView: CalendarView;
96
91
  /**
97
92
  * Determines whether to display a week number column in the `month` view of the Calendar.
93
+ * @default false
98
94
  */
99
95
  weekNumber: boolean;
100
96
  private get columnFormat();
@@ -8,20 +8,19 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { BooleanFilterComponent } from '../boolean-filter.component';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
- * Represents a Boolean-filter menu component.
11
+ * Represents a Boolean-filter menu component. [See example](slug:columnmenu_treelist#toc-customizing-the-content).
12
12
  *
13
13
  * @example
14
- * ```html-no-run
15
- * <kendo-treelist-column field="Discontinued" title="Discontinued">
16
- * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
17
- * <kendo-treelist-boolean-filter-menu
18
- * [column]="column"
19
- * [filter]="filter"
20
- * [filterService]="filterService"
21
- * >
22
- * </kendo-treelist-boolean-filter-menu>
23
- * </ng-template>
24
- * </kendo-treelist-column>
14
+ * ```html
15
+ * <kendo-treelist-column field="Discontinued" title="Discontinued">
16
+ * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
17
+ * <kendo-treelist-boolean-filter-menu
18
+ * [column]="column"
19
+ * [filter]="filter"
20
+ * [filterService]="filterService">
21
+ * </kendo-treelist-boolean-filter-menu>
22
+ * </ng-template>
23
+ * </kendo-treelist-column>
25
24
  * ```
26
25
  */
27
26
  export declare class BooleanFilterMenuComponent extends BooleanFilterComponent {
@@ -12,18 +12,17 @@ import * as i0 from "@angular/core";
12
12
  * Represents a date-filter menu component.
13
13
  *
14
14
  * @example
15
- * ```html-no-run
16
- * <kendo-treelist-column field="OrderDate" title="Order Date">
17
- * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
18
- * <kendo-treelist-date-filter-menu
19
- * [column]="column"
20
- * [filter]="filter"
21
- * [filterService]="filterService"
22
- * >
23
- * </kendo-treelist-date-filter-menu>
24
- * </ng-template>
25
- * </kendo-treelist-column>
26
- * ```
15
+ * ```html
16
+ * <kendo-treelist-column field="OrderDate" title="Order Date">
17
+ * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
18
+ * <kendo-treelist-date-filter-menu
19
+ * [column]="column"
20
+ * [filter]="filter"
21
+ * [filterService]="filterService">
22
+ * </kendo-treelist-date-filter-menu>
23
+ * </ng-template>
24
+ * </kendo-treelist-column>
25
+ * ```
27
26
  */
28
27
  export declare class DateFilterMenuComponent extends DateFilterComponent {
29
28
  logicOperators: Array<{
@@ -46,6 +45,7 @@ export declare class DateFilterMenuComponent extends DateFilterComponent {
46
45
  filter: CompositeFilterDescriptor;
47
46
  /**
48
47
  * Determines if the inputs of second criteria will be displayed.
48
+ * @default true
49
49
  */
50
50
  extra: boolean;
51
51
  /**
@@ -12,18 +12,17 @@ import * as i0 from "@angular/core";
12
12
  * Represents a numeric-filter menu component.
13
13
  *
14
14
  * @example
15
- * ```html-no-run
16
- * <kendo-treelist-column field="UnitPrice" title="Unit Price">
17
- * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
18
- * <kendo-treelist-numeric-filter-menu
19
- * [column]="column"
20
- * [filter]="filter"
21
- * [filterService]="filterService"
22
- * >
23
- * </kendo-treelist-numeric-filter-menu>
24
- * </ng-template>
25
- * </kendo-treelist-column>
26
- * ```
15
+ * ```html
16
+ * <kendo-treelist-column field="UnitPrice">
17
+ * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
18
+ * <kendo-treelist-numeric-filter-menu
19
+ * [column]="column"
20
+ * [filter]="filter"
21
+ * [filterService]="filterService">
22
+ * </kendo-treelist-numeric-filter-menu>
23
+ * </ng-template>
24
+ * </kendo-treelist-column>
25
+ * ```
27
26
  */
28
27
  export declare class NumericFilterMenuComponent extends NumericFilterComponent {
29
28
  logicOperators: Array<{
@@ -46,6 +45,7 @@ export declare class NumericFilterMenuComponent extends NumericFilterComponent {
46
45
  filter: CompositeFilterDescriptor;
47
46
  /**
48
47
  * Determines if the inputs of second criteria will displayed.
48
+ * @default true
49
49
  */
50
50
  extra: boolean;
51
51
  /**
@@ -11,6 +11,20 @@ import * as i0 from "@angular/core";
11
11
  /**
12
12
  * Represents a string-filter menu component.
13
13
  * ([see example]({% slug builtinfiltertemplate_treelist %}#toc-configuration-components-for-filter-templates)).
14
+ *
15
+ * @example
16
+ * ```html
17
+ * <kendo-treelist-column field="name">
18
+ * <ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
19
+ * <kendo-treelist-string-filter-menu
20
+ * [column]="column"
21
+ * [filter]="filter"
22
+ * [filterService]="filterService">
23
+ * </kendo-treelist-string-filter-menu>
24
+ * </ng-template>
25
+ * </kendo-treelist-column>
26
+ * ```
27
+ *
14
28
  */
15
29
  export declare class StringFilterMenuComponent extends StringFilterComponent {
16
30
  logicOperators: Array<{
@@ -33,6 +47,7 @@ export declare class StringFilterMenuComponent extends StringFilterComponent {
33
47
  filter: CompositeFilterDescriptor;
34
48
  /**
35
49
  * Determines if the inputs of second criteria will displayed.
50
+ * @default true
36
51
  */
37
52
  extra: boolean;
38
53
  /**
@@ -26,13 +26,15 @@ export declare abstract class NumericFilterComponent extends BaseFilterCellCompo
26
26
  */
27
27
  filter: CompositeFilterDescriptor;
28
28
  /**
29
- * The default filter operator. Defaults to `eq`.
29
+ * The default filter operator.
30
30
  * @type {string}
31
+ * @default 'eq'
31
32
  */
32
33
  operator: string;
33
34
  /**
34
35
  * Specifies the value that is used to increment or decrement the component value.
35
36
  * @type {numeric}
37
+ * @default 1
36
38
  */
37
39
  step: number;
38
40
  /**
@@ -48,6 +50,7 @@ export declare abstract class NumericFilterComponent extends BaseFilterCellCompo
48
50
  /**
49
51
  * Specifies whether the **Up** and **Down** spin buttons will be rendered.
50
52
  * @type {boolean}
53
+ * @default true
51
54
  */
52
55
  spinners: boolean;
53
56
  /**
@@ -5,6 +5,10 @@
5
5
  import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the `GreaterOrEqualTo` (**Is after or equal to**) date filter operator.
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
11
+ */
8
12
  export declare class AfterEqFilterOperatorComponent extends FilterOperatorBase {
9
13
  constructor(localization: LocalizationService);
10
14
  /**
@@ -5,6 +5,10 @@
5
5
  import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the `Greater` (**Is after**) date filter operator.
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
11
+ */
8
12
  export declare class AfterFilterOperatorComponent extends FilterOperatorBase {
9
13
  constructor(localization: LocalizationService);
10
14
  /**
@@ -5,6 +5,10 @@
5
5
  import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the `LessOrEqualTo` (**Is before or equal to**) date filter operator.
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
11
+ */
8
12
  export declare class BeforeEqFilterOperatorComponent extends FilterOperatorBase {
9
13
  constructor(localization: LocalizationService);
10
14
  /**
@@ -5,6 +5,10 @@
5
5
  import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the `Less than` (**Is before**) date filter operator.
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
11
+ */
8
12
  export declare class BeforeFilterOperatorComponent extends FilterOperatorBase {
9
13
  constructor(localization: LocalizationService);
10
14
  /**
@@ -7,10 +7,7 @@ import { FilterOperatorBase } from './filter-operator.base';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `Contains` (**Contains**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class ContainsFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { FilterOperatorBase } from './filter-operator.base';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `EndsWith` (**Ends with**) string filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class EndsWithFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `Equal` (**Is equal to**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class EqualFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `IsEmpty` (**Is empty**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `IsNotEmpty` (**Is not empty**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `IsNotNull` (**Is not null**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `IsNull` (**Is null**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class IsNullFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -5,6 +5,10 @@
5
5
  import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the `Less` (**Is less than**) numeric filter operator.
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
11
+ */
8
12
  export declare class LessFilterOperatorComponent extends FilterOperatorBase {
9
13
  constructor(localization: LocalizationService);
10
14
  static ɵfac: i0.ɵɵFactoryDeclaration<LessFilterOperatorComponent, never>;
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `NotEqual` (**Is not equal to**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class NotEqualFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `DoesNotContain` (**Does not contain**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -7,10 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `StartsWith` (**Starts with**) filter operator.
10
- *
11
- * For more information and examples, refer to:
12
- * * [Setting the default filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-default-filter-operator)
13
- * * [Setting the order of the filter operators]({% slug builtinfiltertemplate_treelist %}#toc-setting-the-order-of-the-filter-operators)
10
+ * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
14
11
  */
15
12
  export declare class StartsWithFilterOperatorComponent extends FilterOperatorBase {
16
13
  constructor(localization: LocalizationService);
@@ -25,8 +25,9 @@ export declare abstract class StringFilterComponent extends BaseFilterCellCompon
25
25
  */
26
26
  filter: CompositeFilterDescriptor;
27
27
  /**
28
- * The default filter operator. Defaults to `contains`.
28
+ * The default filter operator.
29
29
  * @type {string}
30
+ * @default 'contains'
30
31
  */
31
32
  operator: string;
32
33
  /**
@@ -7,7 +7,7 @@ import { Messages } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Custom component messages override default component messages
10
- * ([see example]({% slug globalization_treelist %}#toc-localization)).
10
+ * ([see example](slug:globalization_treelist#toc-custom-messages)).
11
11
  */
12
12
  export declare class CustomMessagesComponent extends Messages {
13
13
  protected service: LocalizationService;