@progress/kendo-angular-treelist 18.2.1-develop.3 → 18.3.0-develop.2

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 (109) hide show
  1. package/column-menu/column-chooser-item-checked.directive.d.ts +21 -0
  2. package/column-menu/column-chooser.component.d.ts +14 -3
  3. package/column-menu/column-list-kb-nav.service.d.ts +22 -0
  4. package/column-menu/column-list.component.d.ts +20 -5
  5. package/column-menu/column-menu-autosize-all.component.d.ts +39 -0
  6. package/column-menu/column-menu-autosize.component.d.ts +43 -0
  7. package/column-menu/column-menu-chooser.component.d.ts +16 -4
  8. package/column-menu/column-menu-container.component.d.ts +21 -0
  9. package/column-menu/column-menu-expandable-item.interface.d.ts +14 -0
  10. package/column-menu/column-menu-filter.component.d.ts +16 -3
  11. package/column-menu/column-menu-item.component.d.ts +11 -3
  12. package/column-menu/column-menu-item.directive.d.ts +45 -0
  13. package/column-menu/column-menu-settings.interface.d.ts +11 -2
  14. package/column-menu/column-menu.component.d.ts +40 -15
  15. package/column-menu/column-menu.service.d.ts +14 -0
  16. package/column-menu/utils.d.ts +13 -0
  17. package/columns/sort-settings.d.ts +12 -0
  18. package/common/error-messages.d.ts +8 -0
  19. package/common/id.service.d.ts +3 -0
  20. package/common/provider.service.d.ts +3 -1
  21. package/esm2022/column-menu/column-chooser-item-checked.directive.mjs +45 -0
  22. package/esm2022/column-menu/column-chooser.component.mjs +69 -14
  23. package/esm2022/column-menu/column-list-kb-nav.service.mjs +40 -0
  24. package/esm2022/column-menu/column-list.component.mjs +172 -50
  25. package/esm2022/column-menu/column-menu-autosize-all.component.mjs +79 -0
  26. package/esm2022/column-menu/column-menu-autosize.component.mjs +87 -0
  27. package/esm2022/column-menu/column-menu-chooser.component.mjs +44 -12
  28. package/esm2022/column-menu/column-menu-container.component.mjs +58 -0
  29. package/esm2022/column-menu/column-menu-expandable-item.interface.mjs +5 -0
  30. package/esm2022/column-menu/column-menu-filter.component.mjs +58 -25
  31. package/esm2022/column-menu/column-menu-item-base.mjs +2 -1
  32. package/esm2022/column-menu/column-menu-item.component.mjs +34 -5
  33. package/esm2022/column-menu/column-menu-item.directive.mjs +125 -0
  34. package/esm2022/column-menu/column-menu-lock.component.mjs +1 -1
  35. package/esm2022/column-menu/column-menu-sort.component.mjs +1 -1
  36. package/esm2022/column-menu/column-menu.component.mjs +264 -67
  37. package/esm2022/column-menu/column-menu.service.mjs +18 -2
  38. package/esm2022/column-menu/utils.mjs +21 -1
  39. package/esm2022/common/error-messages.mjs +15 -0
  40. package/esm2022/common/id.service.mjs +9 -0
  41. package/esm2022/common/provider.service.mjs +7 -3
  42. package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +5 -2
  43. package/esm2022/filtering/cell/date-filter-cell.component.mjs +20 -3
  44. package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +17 -3
  45. package/esm2022/filtering/filter-row.component.mjs +1 -1
  46. package/esm2022/filtering/filter.service.mjs +17 -3
  47. package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +40 -14
  48. package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +47 -17
  49. package/esm2022/filtering/menu/date-filter-menu.component.mjs +27 -7
  50. package/esm2022/filtering/menu/filter-menu-container.component.mjs +83 -31
  51. package/esm2022/filtering/menu/filter-menu-dropdownlist.directive.mjs +44 -0
  52. package/esm2022/filtering/menu/filter-menu-host.directive.mjs +6 -1
  53. package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +52 -9
  54. package/esm2022/filtering/menu/filter-menu.component.mjs +111 -16
  55. package/esm2022/filtering/menu/menu-tabbing.service.mjs +22 -0
  56. package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +49 -35
  57. package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +37 -7
  58. package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +13 -4
  59. package/esm2022/filtering/menu/string-filter-menu.component.mjs +27 -8
  60. package/esm2022/filtering/operators/after-eq-filter-operator.component.mjs +2 -2
  61. package/esm2022/filtering/operators/after-filter-operator.component.mjs +2 -2
  62. package/esm2022/filtering/operators/before-eq-filter-operator.component.mjs +2 -2
  63. package/esm2022/filtering/operators/before-filter-operator.component.mjs +2 -2
  64. package/esm2022/filtering/operators/contains-filter-operator.component.mjs +1 -1
  65. package/esm2022/filtering/operators/ends-with-filter-operator.component.mjs +1 -1
  66. package/esm2022/filtering/operators/eq-filter-operator.component.mjs +1 -1
  67. package/esm2022/filtering/operators/filter-operator.base.mjs +18 -18
  68. package/esm2022/filtering/operators/gt-filter-operator.component.mjs +1 -1
  69. package/esm2022/filtering/operators/gte-filter-operator.component.mjs +1 -1
  70. package/esm2022/filtering/operators/is-empty-filter-operator.component.mjs +1 -1
  71. package/esm2022/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -1
  72. package/esm2022/filtering/operators/is-not-null-filter-operator.component.mjs +1 -1
  73. package/esm2022/filtering/operators/isnull-filter-operator.component.mjs +1 -1
  74. package/esm2022/filtering/operators/lt-filter-operator.component.mjs +1 -1
  75. package/esm2022/filtering/operators/lte-filter-operator.component.mjs +1 -1
  76. package/esm2022/filtering/operators/neq-filter-operator.component.mjs +1 -1
  77. package/esm2022/filtering/operators/not-contains-filter-operator.component.mjs +1 -1
  78. package/esm2022/filtering/operators/starts-with-filter-operator.component.mjs +1 -1
  79. package/esm2022/localization/messages.mjs +97 -3
  80. package/esm2022/navigation/logical-cell.directive.mjs +4 -1
  81. package/esm2022/navigation/navigation.service.mjs +4 -4
  82. package/esm2022/package-metadata.mjs +2 -2
  83. package/esm2022/rendering/header/header.component.mjs +336 -178
  84. package/esm2022/rendering/table-body.component.mjs +1 -1
  85. package/esm2022/selection/selection.service.mjs +2 -2
  86. package/esm2022/treelist.component.mjs +73 -9
  87. package/fesm2022/progress-kendo-angular-treelist.mjs +2231 -628
  88. package/filtering/cell/date-filter-cell.component.d.ts +4 -0
  89. package/filtering/cell/numeric-filter-cell.component.d.ts +4 -0
  90. package/filtering/filter.service.d.ts +10 -1
  91. package/filtering/menu/boolean-filter-menu.component.d.ts +19 -7
  92. package/filtering/menu/date-filter-menu-input.component.d.ts +10 -3
  93. package/filtering/menu/date-filter-menu.component.d.ts +7 -1
  94. package/filtering/menu/filter-menu-container.component.d.ts +23 -6
  95. package/filtering/menu/filter-menu-dropdownlist.directive.d.ts +19 -0
  96. package/filtering/menu/filter-menu-host.directive.d.ts +3 -1
  97. package/filtering/menu/filter-menu-input-wrapper.component.d.ts +12 -2
  98. package/filtering/menu/filter-menu.component.d.ts +30 -7
  99. package/filtering/menu/menu-tabbing.service.d.ts +18 -0
  100. package/filtering/menu/numeric-filter-menu-input.component.d.ts +12 -26
  101. package/filtering/menu/numeric-filter-menu.component.d.ts +13 -1
  102. package/filtering/menu/string-filter-menu-input.component.d.ts +4 -1
  103. package/filtering/menu/string-filter-menu.component.d.ts +7 -1
  104. package/index.d.ts +1 -0
  105. package/localization/messages.d.ts +79 -3
  106. package/navigation/logical-cell.directive.d.ts +2 -1
  107. package/package.json +18 -18
  108. package/rendering/header/header.component.d.ts +43 -10
  109. package/schematics/ngAdd/index.js +3 -3
@@ -0,0 +1,22 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Injectable } from "@angular/core";
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * @hidden
9
+ */
10
+ export class MenuTabbingService {
11
+ firstFocusable;
12
+ lastFocusable;
13
+ isColumnMenu = false;
14
+ isPopupOpen = false;
15
+ lastMenuItem;
16
+ isTabbedInterface = false;
17
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuTabbingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
18
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuTabbingService });
19
+ }
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuTabbingService, decorators: [{
21
+ type: Injectable
22
+ }] });
@@ -3,16 +3,21 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input } from '@angular/core';
6
- import { NumericTextBoxComponent } from '@progress/kendo-angular-inputs';
6
+ import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent } from '@progress/kendo-angular-inputs';
7
7
  import { ColumnComponent } from "../../columns/column.component";
8
8
  import { FilterService } from '../filter.service';
9
9
  import { FilterInputDirective } from '../filter-input.directive';
10
10
  import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
11
+ import { MenuTabbingService } from './menu-tabbing.service';
12
+ import { ContextService } from '../../common/provider.service';
13
+ import { replaceMessagePlaceholder } from '../../utils';
11
14
  import * as i0 from "@angular/core";
15
+ import * as i1 from "../../common/provider.service";
12
16
  /**
13
17
  * @hidden
14
18
  */
15
19
  export class NumericFilterMenuInputComponent {
20
+ ctx;
16
21
  operators = [];
17
22
  column;
18
23
  filter;
@@ -20,40 +25,31 @@ export class NumericFilterMenuInputComponent {
20
25
  currentFilter;
21
26
  filterService;
22
27
  placeholder;
23
- /**
24
- * Specifies the value which is used to increment or decrement the component value.
25
- * @type {numeric}
26
- */
28
+ filterDelay;
29
+ isFirstDropDown;
30
+ menuTabbingService;
27
31
  step = 1;
28
- /**
29
- * Specifies the smallest value that is valid.
30
- * @type {number}
31
- */
32
32
  min;
33
- /**
34
- * Specifies the greatest value that is valid.
35
- * @type {number}
36
- */
37
33
  max;
38
- /**
39
- * Specifies whether the **Up** and **Down** spin buttons will be rendered.
40
- * @type {boolean}
41
- */
42
34
  spinners = true;
43
- /**
44
- * Specifies the number precision tat is applied to the component value when it is focused.
45
- * If the user enters a number with a greater precision than is currently configured, the component value is rounded.
46
- *
47
- * @type {number}
48
- */
49
35
  decimals;
36
+ format;
37
+ constructor(ctx) {
38
+ this.ctx = ctx;
39
+ }
40
+ messageFor(key) {
41
+ return this.ctx.localization.get(key);
42
+ }
50
43
  /**
51
- * Specifies the number format that is used when the component is not focused.
52
- * By default, the `column.format` value is used (if set).
44
+ * @hidden
53
45
  */
54
- format;
55
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterMenuInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NumericFilterMenuInputComponent, isStandalone: true, selector: "kendo-treelist-numeric-filter-menu-input", inputs: { operators: "operators", column: "column", filter: "filter", operator: "operator", currentFilter: "currentFilter", filterService: "filterService", placeholder: "placeholder", step: "step", min: "min", max: "max", spinners: "spinners", decimals: "decimals", format: "format" }, ngImport: i0, template: `
46
+ get columnLabel() {
47
+ const localizationMsg = this.ctx.localization.get('filterInputLabel') || '';
48
+ const columnName = this.column ? this.column.title || this.column.field : '';
49
+ return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
50
+ }
51
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterMenuInputComponent, deps: [{ token: i1.ContextService }], target: i0.ɵɵFactoryTarget.Component });
52
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NumericFilterMenuInputComponent, isStandalone: true, selector: "kendo-treelist-numeric-filter-menu-input", inputs: { operators: "operators", column: "column", filter: "filter", operator: "operator", currentFilter: "currentFilter", filterService: "filterService", placeholder: "placeholder", filterDelay: "filterDelay", isFirstDropDown: "isFirstDropDown", menuTabbingService: "menuTabbingService", step: "step", min: "min", max: "max", spinners: "spinners", decimals: "decimals", format: "format" }, ngImport: i0, template: `
57
53
  <kendo-treelist-filter-menu-input-wrapper
58
54
  [column]="column"
59
55
  [filter]="filter"
@@ -61,10 +57,12 @@ export class NumericFilterMenuInputComponent {
61
57
  [defaultOperator]="operator"
62
58
  [currentFilter]="currentFilter"
63
59
  [filterService]="filterService"
64
- >
60
+ [isFirstDropDown]="isFirstDropDown"
61
+ [menuTabbingService]="menuTabbingService">
65
62
  <kendo-numerictextbox
66
63
  kendoFilterInput
67
- [filterDelay]="0"
64
+ [columnLabel]="columnLabel"
65
+ [filterDelay]="filterDelay"
68
66
  [autoCorrect]="true"
69
67
  [value]="currentFilter?.value"
70
68
  [format]="format"
@@ -74,9 +72,13 @@ export class NumericFilterMenuInputComponent {
74
72
  [max]="max"
75
73
  [step]="step"
76
74
  [placeholder]="placeholder">
75
+ <kendo-numerictextbox-messages
76
+ [increment]="messageFor('filterNumericIncrement')"
77
+ [decrement]="messageFor('filterNumericDecrement')"
78
+ ></kendo-numerictextbox-messages>
77
79
  </kendo-numerictextbox>
78
80
  </kendo-treelist-filter-menu-input-wrapper>
79
- `, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { kind: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
81
+ `, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "isFirstDropDown", "menuTabbingService", "currentFilter"] }, { kind: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }, { kind: "component", type: NumericTextBoxCustomMessagesComponent, selector: "kendo-numerictextbox-messages" }] });
80
82
  }
81
83
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterMenuInputComponent, decorators: [{
82
84
  type: Component,
@@ -90,10 +92,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
90
92
  [defaultOperator]="operator"
91
93
  [currentFilter]="currentFilter"
92
94
  [filterService]="filterService"
93
- >
95
+ [isFirstDropDown]="isFirstDropDown"
96
+ [menuTabbingService]="menuTabbingService">
94
97
  <kendo-numerictextbox
95
98
  kendoFilterInput
96
- [filterDelay]="0"
99
+ [columnLabel]="columnLabel"
100
+ [filterDelay]="filterDelay"
97
101
  [autoCorrect]="true"
98
102
  [value]="currentFilter?.value"
99
103
  [format]="format"
@@ -103,13 +107,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
103
107
  [max]="max"
104
108
  [step]="step"
105
109
  [placeholder]="placeholder">
110
+ <kendo-numerictextbox-messages
111
+ [increment]="messageFor('filterNumericIncrement')"
112
+ [decrement]="messageFor('filterNumericDecrement')"
113
+ ></kendo-numerictextbox-messages>
106
114
  </kendo-numerictextbox>
107
115
  </kendo-treelist-filter-menu-input-wrapper>
108
116
  `,
109
117
  standalone: true,
110
- imports: [FilterMenuInputWrapperComponent, NumericTextBoxComponent, FilterInputDirective]
118
+ imports: [FilterMenuInputWrapperComponent, NumericTextBoxComponent, FilterInputDirective, NumericTextBoxCustomMessagesComponent]
111
119
  }]
112
- }], propDecorators: { operators: [{
120
+ }], ctorParameters: function () { return [{ type: i1.ContextService }]; }, propDecorators: { operators: [{
113
121
  type: Input
114
122
  }], column: [{
115
123
  type: Input
@@ -123,6 +131,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
123
131
  type: Input
124
132
  }], placeholder: [{
125
133
  type: Input
134
+ }], filterDelay: [{
135
+ type: Input
136
+ }], isFirstDropDown: [{
137
+ type: Input
138
+ }], menuTabbingService: [{
139
+ type: Input
126
140
  }], step: [{
127
141
  type: Input
128
142
  }], min: [{
@@ -10,6 +10,9 @@ import { FilterService } from '../filter.service';
10
10
  import { NumericFilterComponent } from '../numeric-filter.component';
11
11
  import { setFilter, logicOperators } from '../base-filter-cell.component';
12
12
  import { NumericFilterMenuInputComponent } from './numeric-filter-menu-input.component';
13
+ import { MenuTabbingService } from './menu-tabbing.service';
14
+ import { replaceMessagePlaceholder } from '../../utils';
15
+ import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
13
16
  import * as i0 from "@angular/core";
14
17
  import * as i1 from "@progress/kendo-angular-l10n";
15
18
  /**
@@ -50,6 +53,12 @@ export class NumericFilterMenuComponent extends NumericFilterComponent {
50
53
  * The `FilterService` instance which is responsible for handling the changes in the filter descriptor.
51
54
  */
52
55
  filterService;
56
+ /**
57
+ * Determines the delay (in milliseconds) before creating a filter descriptor based on the value. A value of 0 indicates no delay. The default value is 500.
58
+ *
59
+ * @default 500
60
+ */
61
+ filterDelay = 500;
53
62
  /**
54
63
  * The placeholder text for the filter input.
55
64
  * @type {string}
@@ -60,6 +69,10 @@ export class NumericFilterMenuComponent extends NumericFilterComponent {
60
69
  * @type {string}
61
70
  */
62
71
  extraPlaceholder = '';
72
+ /**
73
+ * @hidden
74
+ */
75
+ menuTabbingService;
63
76
  constructor(localization) {
64
77
  super(null, localization);
65
78
  }
@@ -76,12 +89,18 @@ export class NumericFilterMenuComponent extends NumericFilterComponent {
76
89
  this.logicOperators = logicOperators(this.localization);
77
90
  super.localizationChange();
78
91
  }
92
+ get filterMenuDropDownLabel() {
93
+ const localizationMsg = this.localization.get('filterMenuLogicDropDownLabel') || '';
94
+ const columnName = this.column ? this.column.title || this.column.field : '';
95
+ return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
96
+ }
79
97
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterMenuComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
80
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NumericFilterMenuComponent, isStandalone: true, selector: "kendo-treelist-numeric-filter-menu", inputs: { filter: "filter", extra: "extra", filterService: "filterService", placeholder: "placeholder", extraPlaceholder: "extraPlaceholder" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
98
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NumericFilterMenuComponent, isStandalone: true, selector: "kendo-treelist-numeric-filter-menu", inputs: { filter: "filter", extra: "extra", filterService: "filterService", filterDelay: "filterDelay", placeholder: "placeholder", extraPlaceholder: "extraPlaceholder", menuTabbingService: "menuTabbingService" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
81
99
  <kendo-treelist-numeric-filter-menu-input
82
100
  [currentFilter]="firstFilter"
83
101
  [operators]="operators"
84
102
  [filterService]="filterService"
103
+ [filterDelay]="filterDelay"
85
104
  [column]="column"
86
105
  [filter]="filter"
87
106
  [format]="format"
@@ -91,10 +110,13 @@ export class NumericFilterMenuComponent extends NumericFilterComponent {
91
110
  [max]="max"
92
111
  [step]="step"
93
112
  [placeholder]="placeholder"
94
- >
113
+ [menuTabbingService]="menuTabbingService"
114
+ [isFirstDropDown]="true">
95
115
  </kendo-treelist-numeric-filter-menu-input>
96
116
  <kendo-dropdownlist
97
117
  *ngIf="extra"
118
+ kendoFilterMenuDropDown
119
+ [filterMenuDropDownLabel]="filterMenuDropDownLabel"
98
120
  class="k-filter-and"
99
121
  [data]="logicOperators"
100
122
  [valuePrimitive]="true"
@@ -117,9 +139,9 @@ export class NumericFilterMenuComponent extends NumericFilterComponent {
117
139
  [max]="max"
118
140
  [step]="step"
119
141
  [placeholder]="extraPlaceholder"
120
- >
142
+ [menuTabbingService]="menuTabbingService">
121
143
  </kendo-treelist-numeric-filter-menu-input>
122
- `, isInline: true, dependencies: [{ kind: "component", type: NumericFilterMenuInputComponent, selector: "kendo-treelist-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "placeholder", "step", "min", "max", "spinners", "decimals", "format"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }] });
144
+ `, isInline: true, dependencies: [{ kind: "component", type: NumericFilterMenuInputComponent, selector: "kendo-treelist-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "placeholder", "filterDelay", "isFirstDropDown", "menuTabbingService", "step", "min", "max", "spinners", "decimals", "format"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }] });
123
145
  }
124
146
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterMenuComponent, decorators: [{
125
147
  type: Component,
@@ -130,6 +152,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
130
152
  [currentFilter]="firstFilter"
131
153
  [operators]="operators"
132
154
  [filterService]="filterService"
155
+ [filterDelay]="filterDelay"
133
156
  [column]="column"
134
157
  [filter]="filter"
135
158
  [format]="format"
@@ -139,10 +162,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
139
162
  [max]="max"
140
163
  [step]="step"
141
164
  [placeholder]="placeholder"
142
- >
165
+ [menuTabbingService]="menuTabbingService"
166
+ [isFirstDropDown]="true">
143
167
  </kendo-treelist-numeric-filter-menu-input>
144
168
  <kendo-dropdownlist
145
169
  *ngIf="extra"
170
+ kendoFilterMenuDropDown
171
+ [filterMenuDropDownLabel]="filterMenuDropDownLabel"
146
172
  class="k-filter-and"
147
173
  [data]="logicOperators"
148
174
  [valuePrimitive]="true"
@@ -165,11 +191,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
165
191
  [max]="max"
166
192
  [step]="step"
167
193
  [placeholder]="extraPlaceholder"
168
- >
194
+ [menuTabbingService]="menuTabbingService">
169
195
  </kendo-treelist-numeric-filter-menu-input>
170
196
  `,
171
197
  standalone: true,
172
- imports: [NumericFilterMenuInputComponent, NgIf, DropDownListComponent]
198
+ imports: [NumericFilterMenuInputComponent, NgIf, DropDownListComponent, FilterMenuDropDownListDirective]
173
199
  }]
174
200
  }], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { hostClasses: [{
175
201
  type: HostBinding,
@@ -180,8 +206,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
180
206
  type: Input
181
207
  }], filterService: [{
182
208
  type: Input
209
+ }], filterDelay: [{
210
+ type: Input
183
211
  }], placeholder: [{
184
212
  type: Input
185
213
  }], extraPlaceholder: [{
186
214
  type: Input
215
+ }], menuTabbingService: [{
216
+ type: Input
187
217
  }] } });
@@ -11,6 +11,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
11
11
  import { replaceMessagePlaceholder } from '../../utils';
12
12
  import { FilterInputDirective } from '../filter-input.directive';
13
13
  import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
14
+ import { MenuTabbingService } from './menu-tabbing.service';
14
15
  import * as i0 from "@angular/core";
15
16
  import * as i1 from "@progress/kendo-angular-l10n";
16
17
  import * as i2 from "@angular/forms";
@@ -26,6 +27,8 @@ export class StringFilterMenuInputComponent {
26
27
  currentFilter;
27
28
  filterService;
28
29
  placeholder;
30
+ isFirstDropDown;
31
+ menuTabbingService;
29
32
  constructor(localization) {
30
33
  this.localization = localization;
31
34
  }
@@ -35,7 +38,7 @@ export class StringFilterMenuInputComponent {
35
38
  return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
36
39
  }
37
40
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuInputComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
38
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StringFilterMenuInputComponent, isStandalone: true, selector: "kendo-treelist-string-filter-menu-input", inputs: { operators: "operators", column: "column", filter: "filter", operator: "operator", currentFilter: "currentFilter", filterService: "filterService", placeholder: "placeholder" }, ngImport: i0, template: `
41
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StringFilterMenuInputComponent, isStandalone: true, selector: "kendo-treelist-string-filter-menu-input", inputs: { operators: "operators", column: "column", filter: "filter", operator: "operator", currentFilter: "currentFilter", filterService: "filterService", placeholder: "placeholder", isFirstDropDown: "isFirstDropDown", menuTabbingService: "menuTabbingService" }, ngImport: i0, template: `
39
42
  <kendo-treelist-filter-menu-input-wrapper
40
43
  [column]="column"
41
44
  [filter]="filter"
@@ -43,7 +46,8 @@ export class StringFilterMenuInputComponent {
43
46
  [defaultOperator]="operator"
44
47
  [currentFilter]="currentFilter"
45
48
  [filterService]="filterService"
46
- >
49
+ [isFirstDropDown]="isFirstDropDown"
50
+ [menuTabbingService]="menuTabbingService">
47
51
  <kendo-textbox
48
52
  kendoFilterInput
49
53
  [columnLabel]="columnLabel"
@@ -52,7 +56,7 @@ export class StringFilterMenuInputComponent {
52
56
  [ngModel]="currentFilter?.value ?? null"
53
57
  ></kendo-textbox>
54
58
  </kendo-treelist-filter-menu-input-wrapper>
55
- `, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
59
+ `, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "isFirstDropDown", "menuTabbingService", "currentFilter"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
56
60
  }
57
61
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuInputComponent, decorators: [{
58
62
  type: Component,
@@ -66,7 +70,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
66
70
  [defaultOperator]="operator"
67
71
  [currentFilter]="currentFilter"
68
72
  [filterService]="filterService"
69
- >
73
+ [isFirstDropDown]="isFirstDropDown"
74
+ [menuTabbingService]="menuTabbingService">
70
75
  <kendo-textbox
71
76
  kendoFilterInput
72
77
  [columnLabel]="columnLabel"
@@ -93,4 +98,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
93
98
  type: Input
94
99
  }], placeholder: [{
95
100
  type: Input
101
+ }], isFirstDropDown: [{
102
+ type: Input
103
+ }], menuTabbingService: [{
104
+ type: Input
96
105
  }] } });
@@ -10,6 +10,8 @@ import { FilterService } from '../filter.service';
10
10
  import { LocalizationService } from '@progress/kendo-angular-l10n';
11
11
  import { setFilter, logicOperators } from '../base-filter-cell.component';
12
12
  import { StringFilterMenuInputComponent } from './string-filter-menu-input.component';
13
+ import { MenuTabbingService } from './menu-tabbing.service';
14
+ import { replaceMessagePlaceholder } from '../../utils';
13
15
  import * as i0 from "@angular/core";
14
16
  import * as i1 from "@progress/kendo-angular-l10n";
15
17
  /**
@@ -62,6 +64,10 @@ export class StringFilterMenuComponent extends StringFilterComponent {
62
64
  * @type {string}
63
65
  */
64
66
  extraPlaceholder;
67
+ /**
68
+ * @hidden
69
+ */
70
+ menuTabbingService;
65
71
  constructor(localization) {
66
72
  super(null, localization);
67
73
  }
@@ -78,15 +84,22 @@ export class StringFilterMenuComponent extends StringFilterComponent {
78
84
  this.logicOperators = logicOperators(this.localization);
79
85
  super.localizationChange();
80
86
  }
87
+ get filterMenuDropDownLabel() {
88
+ const localizationMsg = this.localization.get('filterMenuLogicDropDownLabel') || '';
89
+ const columnName = this.column ? this.column.title || this.column.field : '';
90
+ return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
91
+ }
81
92
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
82
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StringFilterMenuComponent, isStandalone: true, selector: "kendo-treelist-string-filter-menu", inputs: { filter: "filter", extra: "extra", filterService: "filterService", placeholder: "placeholder", extraPlaceholder: "extraPlaceholder" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
93
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StringFilterMenuComponent, isStandalone: true, selector: "kendo-treelist-string-filter-menu", inputs: { filter: "filter", extra: "extra", filterService: "filterService", placeholder: "placeholder", extraPlaceholder: "extraPlaceholder", menuTabbingService: "menuTabbingService" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
83
94
  <kendo-treelist-string-filter-menu-input
84
95
  [currentFilter]="firstFilter"
85
96
  [operators]="operators"
86
97
  [filterService]="filterService"
87
98
  [column]="column"
88
99
  [filter]="filter"
89
- [placeholder]="placeholder">
100
+ [isFirstDropDown]="true"
101
+ [placeholder]="placeholder"
102
+ [menuTabbingService]="menuTabbingService">
90
103
  </kendo-treelist-string-filter-menu-input>
91
104
  <kendo-dropdownlist
92
105
  *ngIf="extra"
@@ -98,15 +111,16 @@ export class StringFilterMenuComponent extends StringFilterComponent {
98
111
  valueField="value">
99
112
  </kendo-dropdownlist>
100
113
  <kendo-treelist-string-filter-menu-input
101
- *ngIf="extra"
114
+ *ngIf="extra"
102
115
  [operators]="operators"
103
116
  [currentFilter]="secondFilter"
104
117
  [filterService]="filterService"
105
118
  [column]="column"
106
119
  [filter]="filter"
107
- [placeholder]="extraPlaceholder">
120
+ [placeholder]="extraPlaceholder"
121
+ [menuTabbingService]="menuTabbingService">
108
122
  </kendo-treelist-string-filter-menu-input>
109
- `, isInline: true, dependencies: [{ kind: "component", type: StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "placeholder"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }] });
123
+ `, isInline: true, dependencies: [{ kind: "component", type: StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "placeholder", "isFirstDropDown", "menuTabbingService"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }] });
110
124
  }
111
125
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
112
126
  type: Component,
@@ -119,7 +133,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
119
133
  [filterService]="filterService"
120
134
  [column]="column"
121
135
  [filter]="filter"
122
- [placeholder]="placeholder">
136
+ [isFirstDropDown]="true"
137
+ [placeholder]="placeholder"
138
+ [menuTabbingService]="menuTabbingService">
123
139
  </kendo-treelist-string-filter-menu-input>
124
140
  <kendo-dropdownlist
125
141
  *ngIf="extra"
@@ -131,13 +147,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
131
147
  valueField="value">
132
148
  </kendo-dropdownlist>
133
149
  <kendo-treelist-string-filter-menu-input
134
- *ngIf="extra"
150
+ *ngIf="extra"
135
151
  [operators]="operators"
136
152
  [currentFilter]="secondFilter"
137
153
  [filterService]="filterService"
138
154
  [column]="column"
139
155
  [filter]="filter"
140
- [placeholder]="extraPlaceholder">
156
+ [placeholder]="extraPlaceholder"
157
+ [menuTabbingService]="menuTabbingService">
141
158
  </kendo-treelist-string-filter-menu-input>
142
159
  `,
143
160
  standalone: true,
@@ -156,4 +173,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
156
173
  type: Input
157
174
  }], extraPlaceholder: [{
158
175
  type: Input
176
+ }], menuTabbingService: [{
177
+ type: Input
159
178
  }] } });
@@ -12,14 +12,14 @@ import * as i1 from "@progress/kendo-angular-l10n";
12
12
  * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
13
13
  */
14
14
  export class AfterEqFilterOperatorComponent extends FilterOperatorBase {
15
- constructor(localization) { super("after-eq", localization); }
15
+ constructor(localization) { super('after-eq', localization); }
16
16
  /**
17
17
  * @hidden
18
18
  */
19
19
  toJSON() {
20
20
  return {
21
21
  text: this.text,
22
- value: "gte"
22
+ value: 'gte'
23
23
  };
24
24
  }
25
25
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AfterEqFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
@@ -12,14 +12,14 @@ import * as i1 from "@progress/kendo-angular-l10n";
12
12
  * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
13
13
  */
14
14
  export class AfterFilterOperatorComponent extends FilterOperatorBase {
15
- constructor(localization) { super("after", localization); }
15
+ constructor(localization) { super('after', localization); }
16
16
  /**
17
17
  * @hidden
18
18
  */
19
19
  toJSON() {
20
20
  return {
21
21
  text: this.text,
22
- value: "gt"
22
+ value: 'gt'
23
23
  };
24
24
  }
25
25
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AfterFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
@@ -12,14 +12,14 @@ import * as i1 from "@progress/kendo-angular-l10n";
12
12
  * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
13
13
  */
14
14
  export class BeforeEqFilterOperatorComponent extends FilterOperatorBase {
15
- constructor(localization) { super("before-eq", localization); }
15
+ constructor(localization) { super('before-eq', localization); }
16
16
  /**
17
17
  * @hidden
18
18
  */
19
19
  toJSON() {
20
20
  return {
21
21
  text: this.text,
22
- value: "lte"
22
+ value: 'lte'
23
23
  };
24
24
  }
25
25
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BeforeEqFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
@@ -12,14 +12,14 @@ import * as i1 from "@progress/kendo-angular-l10n";
12
12
  * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
13
13
  */
14
14
  export class BeforeFilterOperatorComponent extends FilterOperatorBase {
15
- constructor(localization) { super("before", localization); }
15
+ constructor(localization) { super('before', localization); }
16
16
  /**
17
17
  * @hidden
18
18
  */
19
19
  toJSON() {
20
20
  return {
21
21
  text: this.text,
22
- value: "lt"
22
+ value: 'lt'
23
23
  };
24
24
  }
25
25
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BeforeFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
@@ -12,7 +12,7 @@ import * as i1 from "@progress/kendo-angular-l10n";
12
12
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
13
13
  */
14
14
  export class ContainsFilterOperatorComponent extends FilterOperatorBase {
15
- constructor(localization) { super("contains", localization); }
15
+ constructor(localization) { super('contains', localization); }
16
16
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ContainsFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17
17
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ContainsFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-contains-operator", providers: [
18
18
  {
@@ -12,7 +12,7 @@ import * as i1 from "@progress/kendo-angular-l10n";
12
12
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
13
13
  */
14
14
  export class EndsWithFilterOperatorComponent extends FilterOperatorBase {
15
- constructor(localization) { super("endswith", localization); }
15
+ constructor(localization) { super('endswith', localization); }
16
16
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EndsWithFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17
17
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: EndsWithFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-endswith-operator", providers: [
18
18
  {
@@ -12,7 +12,7 @@ import * as i1 from "@progress/kendo-angular-l10n";
12
12
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
13
13
  */
14
14
  export class EqualFilterOperatorComponent extends FilterOperatorBase {
15
- constructor(localization) { super("eq", localization); }
15
+ constructor(localization) { super('eq', localization); }
16
16
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EqualFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17
17
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: EqualFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-eq-operator", providers: [
18
18
  {