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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. package/fesm2022/progress-kendo-angular-treelist.mjs +26 -22
  2. package/filtering/operators/after-eq-filter-operator.component.d.ts +1 -1
  3. package/filtering/operators/after-filter-operator.component.d.ts +1 -1
  4. package/filtering/operators/before-eq-filter-operator.component.d.ts +1 -1
  5. package/filtering/operators/before-filter-operator.component.d.ts +1 -1
  6. package/filtering/operators/contains-filter-operator.component.d.ts +1 -1
  7. package/filtering/operators/ends-with-filter-operator.component.d.ts +1 -1
  8. package/filtering/operators/eq-filter-operator.component.d.ts +1 -1
  9. package/filtering/operators/gt-filter-operator.component.d.ts +1 -1
  10. package/filtering/operators/gte-filter-operator.component.d.ts +1 -1
  11. package/filtering/operators/is-empty-filter-operator.component.d.ts +1 -1
  12. package/filtering/operators/is-not-empty-filter-operator.component.d.ts +1 -1
  13. package/filtering/operators/is-not-null-filter-operator.component.d.ts +1 -1
  14. package/filtering/operators/isnull-filter-operator.component.d.ts +1 -1
  15. package/filtering/operators/lt-filter-operator.component.d.ts +1 -1
  16. package/filtering/operators/lte-filter-operator.component.d.ts +1 -1
  17. package/filtering/operators/neq-filter-operator.component.d.ts +1 -1
  18. package/filtering/operators/not-contains-filter-operator.component.d.ts +1 -1
  19. package/filtering/operators/starts-with-filter-operator.component.d.ts +1 -1
  20. package/package-metadata.mjs +2 -2
  21. package/package.json +18 -18
  22. package/schematics/ngAdd/index.js +3 -3
@@ -49,8 +49,8 @@ const packageMetadata = {
49
49
  productName: 'Kendo UI for Angular',
50
50
  productCode: 'KENDOUIANGULAR',
51
51
  productCodes: ['KENDOUIANGULAR'],
52
- publishDate: 1781868600,
53
- version: '24.2.0-develop.1',
52
+ publishDate: 1782467636,
53
+ version: '24.2.0-develop.11',
54
54
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
55
55
  };
56
56
 
@@ -4694,7 +4694,7 @@ class NavigationService {
4694
4694
  const columnGroup = column.parent;
4695
4695
  const columnGroupChildren = Array.from(columnGroup.children).sort((a, b) => a.orderIndex - b.orderIndex);
4696
4696
  const columnIndexInsideGroup = columnGroupChildren.indexOf(column);
4697
- if (column.isReordered || column.orderIndex > 0 || (column.isReordered && column.orderIndex === 0)) {
4697
+ if (column.isReordered || column.orderIndex > 0) {
4698
4698
  return (column.orderIndex - columnGroupChildren[0]['orderIndex']) !== columnGroupChildren.length - 1;
4699
4699
  }
4700
4700
  return columnIndexInsideGroup !== columnGroupChildren.length - 1;
@@ -6890,7 +6890,11 @@ class TableBodyComponent {
6890
6890
  return this.columnsSpan;
6891
6891
  }
6892
6892
  get footerColumns() {
6893
- return this.isLocked ? this.columnsContainer.lockedColumnsToRender : this.columnsContainer.nonLockedColumnsToRender;
6893
+ const colsToRender = Array.from(this.columns).reduce((cols, col) => {
6894
+ const newCols = (col instanceof SpanColumnComponent) ? Array.from(col.childColumns) : [col];
6895
+ return [...cols, ...newCols];
6896
+ }, []);
6897
+ return colsToRender;
6894
6898
  }
6895
6899
  logicalRowIndex(rowIndex) {
6896
6900
  return 1 + rowIndex + this.headerOffset;
@@ -22111,7 +22115,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22111
22115
  * Represents the `Contains` (**Contains**) filter operator for the TreeList.
22112
22116
  * Use this operator to filter values that contain a specific substring.
22113
22117
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22114
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22118
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22115
22119
  *
22116
22120
  * @example
22117
22121
  * ```html Filter Cell
@@ -22167,7 +22171,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22167
22171
  * Represents the `DoesNotContain` (**Does not contain**) filter operator for the TreeList.
22168
22172
  * Use this operator to filter values that do not contain a specific substring.
22169
22173
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22170
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22174
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22171
22175
  *
22172
22176
  * @example
22173
22177
  * ```html Filter Cell
@@ -22223,7 +22227,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22223
22227
  * Represents the `EndsWith` (**Ends with**) string filter operator for the TreeList.
22224
22228
  * Use this operator to filter values that end with a specific substring.
22225
22229
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22226
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22230
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22227
22231
  *
22228
22232
  * @example
22229
22233
  * ```html Filter Cell
@@ -22279,7 +22283,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22279
22283
  * Represents the `Equal` (**Is equal to**) filter operator for the TreeList.
22280
22284
  * Use this operator to filter values that are equal to a specific value.
22281
22285
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22282
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22286
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22283
22287
  *
22284
22288
  * @example
22285
22289
  * ```html String Filter Cell
@@ -22383,7 +22387,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22383
22387
  * Represents the `IsEmpty` (**Is empty**) filter operator for the TreeList.
22384
22388
  * Use this operator to filter values that are empty.
22385
22389
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22386
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22390
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22387
22391
  *
22388
22392
  * @example
22389
22393
  * ```html Filter Cell
@@ -22439,7 +22443,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22439
22443
  * Represents the `IsNotEmpty` (**Is not empty**) filter operator for the TreeList.
22440
22444
  * Use this operator to filter values that are not empty.
22441
22445
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22442
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22446
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22443
22447
  *
22444
22448
  * @example
22445
22449
  * ```html Filter Cell
@@ -22495,7 +22499,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22495
22499
  * Represents the `IsNotNull` (**Is not null**) filter operator for the TreeList.
22496
22500
  * Use this operator to filter values that are not null.
22497
22501
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22498
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22502
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22499
22503
  *
22500
22504
  * @example
22501
22505
  * ```html String Filter Cell
@@ -22599,7 +22603,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22599
22603
  * Represents the `IsNull` (**Is null**) filter operator for the TreeList.
22600
22604
  * Use this operator to filter values that are null.
22601
22605
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22602
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22606
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22603
22607
  *
22604
22608
  * @example
22605
22609
  * ```html String Filter Cell
@@ -22703,7 +22707,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22703
22707
  * Represents the `NotEqual` (**Is not equal to**) filter operator for the TreeList.
22704
22708
  * Use this operator to filter values that are not equal to a specific value.
22705
22709
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22706
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22710
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22707
22711
  *
22708
22712
  * @example
22709
22713
  * ```html String Filter Cell
@@ -22807,7 +22811,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22807
22811
  * Represents the `StartsWith` (**Starts with**) filter operator for the TreeList.
22808
22812
  * Use this operator to filter values that start with a specific substring.
22809
22813
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
22810
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22814
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22811
22815
  *
22812
22816
  * @example
22813
22817
  * ```html Filter Cell
@@ -22862,7 +22866,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22862
22866
  /**
22863
22867
  * Represents the `Greater` (**Is greater than**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
22864
22868
  * Use this operator to filter values that are greater than a specific value.
22865
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22869
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22866
22870
  *
22867
22871
  * @example
22868
22872
  * ```html Filter Cell
@@ -22917,7 +22921,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22917
22921
  /**
22918
22922
  * Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
22919
22923
  * Use this operator to filter values that are greater than or equal to a specific value.
22920
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22924
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22921
22925
  *
22922
22926
  * @example
22923
22927
  * ```html Filter Cell
@@ -22972,7 +22976,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
22972
22976
  /**
22973
22977
  * Represents the `Less` (**Is less than**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
22974
22978
  * Use this operator to filter values that are less than a specific value.
22975
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
22979
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
22976
22980
  *
22977
22981
  * @example
22978
22982
  * ```html Filter Cell
@@ -23027,7 +23031,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
23027
23031
  /**
23028
23032
  * Represents the `LessOrEqualTo` (**Is less than or equal to**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
23029
23033
  * Use this operator to filter values that are less than or equal to a specific value.
23030
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
23034
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
23031
23035
  *
23032
23036
  * @example
23033
23037
  * ```html Filter Cell
@@ -23082,7 +23086,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
23082
23086
  /**
23083
23087
  * Represents the `Greater` (**Is after**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
23084
23088
  * Use this operator to filter dates that are after a specific value.
23085
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
23089
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
23086
23090
  *
23087
23091
  * @example
23088
23092
  * ```html Filter Cell
@@ -23146,7 +23150,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
23146
23150
  /**
23147
23151
  * Represents the `GreaterOrEqualTo` (**Is after or equal to**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
23148
23152
  * Use this operator to filter dates that are after or equal to a specific value.
23149
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
23153
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
23150
23154
  *
23151
23155
  * @example
23152
23156
  * ```html Filter Cell
@@ -23210,7 +23214,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
23210
23214
  /**
23211
23215
  * Represents the `LessOrEqualTo` (**Is before or equal to**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
23212
23216
  * Use this operator to filter dates that are before or equal to a specific value.
23213
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
23217
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
23214
23218
  *
23215
23219
  * @example
23216
23220
  * ```html Filter Cell
@@ -23274,7 +23278,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
23274
23278
  /**
23275
23279
  * Represents the `Less than` (**Is before**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
23276
23280
  * Use this operator to filter dates that are before a specific value.
23277
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
23281
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
23278
23282
  *
23279
23283
  * @example
23280
23284
  * ```html Filer Cell
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `GreaterOrEqualTo` (**Is after or equal to**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
10
10
  * Use this operator to filter dates that are after or equal to a specific value.
11
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
11
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
12
12
  *
13
13
  * @example
14
14
  * ```html Filter Cell
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `Greater` (**Is after**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
10
10
  * Use this operator to filter dates that are after a specific value.
11
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
11
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
12
12
  *
13
13
  * @example
14
14
  * ```html Filter Cell
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `LessOrEqualTo` (**Is before or equal to**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
10
10
  * Use this operator to filter dates that are before or equal to a specific value.
11
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
11
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
12
12
  *
13
13
  * @example
14
14
  * ```html Filter Cell
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `Less than` (**Is before**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
10
10
  * Use this operator to filter dates that are before a specific value.
11
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
11
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
12
12
  *
13
13
  * @example
14
14
  * ```html Filer Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `Contains` (**Contains**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that contain a specific substring.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `EndsWith` (**Ends with**) string filter operator for the TreeList.
10
10
  * Use this operator to filter values that end with a specific substring.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `Equal` (**Is equal to**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that are equal to a specific value.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html String Filter Cell
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `Greater` (**Is greater than**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
10
10
  * Use this operator to filter values that are greater than a specific value.
11
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
11
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
12
12
  *
13
13
  * @example
14
14
  * ```html Filter Cell
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
10
10
  * Use this operator to filter values that are greater than or equal to a specific value.
11
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
11
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
12
12
  *
13
13
  * @example
14
14
  * ```html Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `IsEmpty` (**Is empty**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that are empty.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `IsNotEmpty` (**Is not empty**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that are not empty.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `IsNotNull` (**Is not null**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that are not null.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html String Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `IsNull` (**Is null**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that are null.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html String Filter Cell
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `Less` (**Is less than**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
10
10
  * Use this operator to filter values that are less than a specific value.
11
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
11
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
12
12
  *
13
13
  * @example
14
14
  * ```html Filter Cell
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Represents the `LessOrEqualTo` (**Is less than or equal to**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
10
10
  * Use this operator to filter values that are less than or equal to a specific value.
11
- * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
11
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
12
12
  *
13
13
  * @example
14
14
  * ```html Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `NotEqual` (**Is not equal to**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that are not equal to a specific value.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html String Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `DoesNotContain` (**Does not contain**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that do not contain a specific substring.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html Filter Cell
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
9
9
  * Represents the `StartsWith` (**Starts with**) filter operator for the TreeList.
10
10
  * Use this operator to filter values that start with a specific substring.
11
11
  * [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
12
- * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#setting-the-default-filter-operator).
12
+ * For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
13
13
  *
14
14
  * @example
15
15
  * ```html Filter Cell
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1781868600,
11
- "version": "24.2.0-develop.1",
10
+ "publishDate": 1782467636,
11
+ "version": "24.2.0-develop.11",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-treelist",
3
- "version": "24.2.0-develop.1",
3
+ "version": "24.2.0-develop.11",
4
4
  "description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -39,7 +39,7 @@
39
39
  "package": {
40
40
  "productName": "Kendo UI for Angular",
41
41
  "productCode": "KENDOUIANGULAR",
42
- "publishDate": 1781868600,
42
+ "publishDate": 1782467636,
43
43
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
44
44
  }
45
45
  },
@@ -52,26 +52,26 @@
52
52
  "@progress/kendo-data-query": "^1.7.3",
53
53
  "@progress/kendo-drawing": "^1.25.0",
54
54
  "@progress/kendo-licensing": "^1.11.0",
55
- "@progress/kendo-angular-buttons": "24.2.0-develop.1",
56
- "@progress/kendo-angular-common": "24.2.0-develop.1",
57
- "@progress/kendo-angular-dateinputs": "24.2.0-develop.1",
58
- "@progress/kendo-angular-dropdowns": "24.2.0-develop.1",
59
- "@progress/kendo-angular-excel-export": "24.2.0-develop.1",
60
- "@progress/kendo-angular-icons": "24.2.0-develop.1",
61
- "@progress/kendo-angular-inputs": "24.2.0-develop.1",
62
- "@progress/kendo-angular-intl": "24.2.0-develop.1",
63
- "@progress/kendo-angular-l10n": "24.2.0-develop.1",
64
- "@progress/kendo-angular-label": "24.2.0-develop.1",
65
- "@progress/kendo-angular-pager": "24.2.0-develop.1",
66
- "@progress/kendo-angular-pdf-export": "24.2.0-develop.1",
67
- "@progress/kendo-angular-popup": "24.2.0-develop.1",
68
- "@progress/kendo-angular-toolbar": "24.2.0-develop.1",
69
- "@progress/kendo-angular-utils": "24.2.0-develop.1",
55
+ "@progress/kendo-angular-buttons": "24.2.0-develop.11",
56
+ "@progress/kendo-angular-common": "24.2.0-develop.11",
57
+ "@progress/kendo-angular-dateinputs": "24.2.0-develop.11",
58
+ "@progress/kendo-angular-dropdowns": "24.2.0-develop.11",
59
+ "@progress/kendo-angular-excel-export": "24.2.0-develop.11",
60
+ "@progress/kendo-angular-icons": "24.2.0-develop.11",
61
+ "@progress/kendo-angular-inputs": "24.2.0-develop.11",
62
+ "@progress/kendo-angular-intl": "24.2.0-develop.11",
63
+ "@progress/kendo-angular-l10n": "24.2.0-develop.11",
64
+ "@progress/kendo-angular-label": "24.2.0-develop.11",
65
+ "@progress/kendo-angular-pager": "24.2.0-develop.11",
66
+ "@progress/kendo-angular-pdf-export": "24.2.0-develop.11",
67
+ "@progress/kendo-angular-popup": "24.2.0-develop.11",
68
+ "@progress/kendo-angular-toolbar": "24.2.0-develop.11",
69
+ "@progress/kendo-angular-utils": "24.2.0-develop.11",
70
70
  "rxjs": "^6.5.3 || ^7.0.0"
71
71
  },
72
72
  "dependencies": {
73
73
  "tslib": "^2.3.1",
74
- "@progress/kendo-angular-schematics": "24.2.0-develop.1",
74
+ "@progress/kendo-angular-schematics": "24.2.0-develop.11",
75
75
  "@progress/kendo-common": "^1.0.1",
76
76
  "@progress/kendo-file-saver": "^1.0.0"
77
77
  },
@@ -9,13 +9,13 @@ const schematics_1 = require("@angular-devkit/schematics");
9
9
  function default_1(options) {
10
10
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
11
11
  // peer dep of the dropdowns
12
- '@progress/kendo-angular-treeview': '24.2.0-develop.1',
12
+ '@progress/kendo-angular-treeview': '24.2.0-develop.11',
13
13
  // peer dependency of kendo-angular-inputs
14
- '@progress/kendo-angular-dialog': '24.2.0-develop.1',
14
+ '@progress/kendo-angular-dialog': '24.2.0-develop.11',
15
15
  // peer dependency of kendo-angular-icons
16
16
  '@progress/kendo-svg-icons': '^4.0.0',
17
17
  // peer dependency of kendo-angular-dateinputs
18
- '@progress/kendo-angular-navigation': '24.2.0-develop.1',
18
+ '@progress/kendo-angular-navigation': '24.2.0-develop.11',
19
19
  } });
20
20
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
21
21
  }