@progress/kendo-angular-treelist 18.5.0-develop.6 → 18.5.0-develop.8

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.
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Directive, ViewContainerRef, ComponentFactoryResolver } from "@angular/core";
5
+ import { Directive, ViewContainerRef } from "@angular/core";
6
6
  import { FilterHostDirective } from "../filter-host.directive";
7
7
  import { isNullOrEmptyString } from "../../utils";
8
8
  import { filterComponentFactory } from "./filter-cell-component.factory";
@@ -12,8 +12,8 @@ import * as i0 from "@angular/core";
12
12
  * @hidden
13
13
  */
14
14
  export class FilterCellHostDirective extends FilterHostDirective {
15
- constructor(host, resolver) {
16
- super(host, resolver);
15
+ constructor(host) {
16
+ super(host);
17
17
  }
18
18
  componentType() {
19
19
  if (!isNullOrEmptyString(this.column.filter)) {
@@ -21,7 +21,7 @@ export class FilterCellHostDirective extends FilterHostDirective {
21
21
  }
22
22
  return StringFilterCellComponent;
23
23
  }
24
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Directive });
24
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
25
25
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterCellHostDirective, isStandalone: true, selector: "[kendoFilterCellHost]", usesInheritance: true, ngImport: i0 });
26
26
  }
27
27
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, decorators: [{
@@ -30,4 +30,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
30
30
  selector: '[kendoFilterCellHost]',
31
31
  standalone: true
32
32
  }]
33
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }]; } });
33
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Directive, Input, ViewContainerRef, ComponentFactoryResolver } from '@angular/core';
5
+ import { Directive, Input, ViewContainerRef } from '@angular/core';
6
6
  import { ColumnComponent } from '../columns/column.component';
7
7
  import { anyChanged } from '../utils';
8
8
  import * as i0 from "@angular/core";
@@ -11,16 +11,14 @@ import * as i0 from "@angular/core";
11
11
  */
12
12
  export class FilterHostDirective {
13
13
  host;
14
- resolver;
15
14
  column;
16
15
  filter;
17
16
  component;
18
- constructor(host, resolver) {
17
+ constructor(host) {
19
18
  this.host = host;
20
- this.resolver = resolver;
21
19
  }
22
20
  ngOnInit() {
23
- this.component = this.host.createComponent(this.resolver.resolveComponentFactory(this.componentType()));
21
+ this.component = this.host.createComponent(this.componentType());
24
22
  this.initComponent({
25
23
  column: this.column,
26
24
  filter: this.filter
@@ -45,13 +43,13 @@ export class FilterHostDirective {
45
43
  instance.column = column;
46
44
  instance.filter = filter;
47
45
  }
48
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Directive });
46
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
49
47
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterHostDirective, inputs: { column: "column", filter: "filter" }, usesOnChanges: true, ngImport: i0 });
50
48
  }
51
49
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, decorators: [{
52
50
  type: Directive,
53
51
  args: [{}]
54
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { column: [{
52
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { column: [{
55
53
  type: Input
56
54
  }], filter: [{
57
55
  type: Input
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Directive, ViewContainerRef, ComponentFactoryResolver, Input } from "@angular/core";
5
+ import { Directive, ViewContainerRef, Input } from "@angular/core";
6
6
  import { FilterHostDirective } from "../filter-host.directive";
7
7
  import { isNullOrEmptyString, isPresent } from "../../utils";
8
8
  import { filterMenuComponentFactory } from "./filter-menu-component.factory";
@@ -16,8 +16,8 @@ import * as i0 from "@angular/core";
16
16
  export class FilterMenuHostDirective extends FilterHostDirective {
17
17
  filterService;
18
18
  menuTabbingService;
19
- constructor(host, resolver) {
20
- super(host, resolver);
19
+ constructor(host) {
20
+ super(host);
21
21
  }
22
22
  componentType() {
23
23
  if (isPresent(this.column) && !isNullOrEmptyString(this.column.filter)) {
@@ -30,7 +30,7 @@ export class FilterMenuHostDirective extends FilterHostDirective {
30
30
  this.component.instance.filterService = this.filterService;
31
31
  this.component.instance.menuTabbingService = this.menuTabbingService;
32
32
  }
33
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Directive });
33
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
34
34
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterMenuHostDirective, isStandalone: true, selector: "[kendoFilterMenuHost]", inputs: { filterService: "filterService", menuTabbingService: "menuTabbingService" }, usesInheritance: true, ngImport: i0 });
35
35
  }
36
36
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, decorators: [{
@@ -39,7 +39,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
39
39
  selector: '[kendoFilterMenuHost]',
40
40
  standalone: true
41
41
  }]
42
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { filterService: [{
42
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { filterService: [{
43
43
  type: Input
44
44
  }], menuTabbingService: [{
45
45
  type: Input
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1743780188,
14
- version: '18.5.0-develop.6',
13
+ publishDate: 1744029122,
14
+ version: '18.5.0-develop.8',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -49,8 +49,8 @@ const packageMetadata = {
49
49
  productName: 'Kendo UI for Angular',
50
50
  productCode: 'KENDOUIANGULAR',
51
51
  productCodes: ['KENDOUIANGULAR'],
52
- publishDate: 1743780188,
53
- version: '18.5.0-develop.6',
52
+ publishDate: 1744029122,
53
+ version: '18.5.0-develop.8',
54
54
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
55
55
  };
56
56
 
@@ -8785,16 +8785,14 @@ const diffFilters = (a, b) => {
8785
8785
  */
8786
8786
  class FilterHostDirective {
8787
8787
  host;
8788
- resolver;
8789
8788
  column;
8790
8789
  filter;
8791
8790
  component;
8792
- constructor(host, resolver) {
8791
+ constructor(host) {
8793
8792
  this.host = host;
8794
- this.resolver = resolver;
8795
8793
  }
8796
8794
  ngOnInit() {
8797
- this.component = this.host.createComponent(this.resolver.resolveComponentFactory(this.componentType()));
8795
+ this.component = this.host.createComponent(this.componentType());
8798
8796
  this.initComponent({
8799
8797
  column: this.column,
8800
8798
  filter: this.filter
@@ -8819,13 +8817,13 @@ class FilterHostDirective {
8819
8817
  instance.column = column;
8820
8818
  instance.filter = filter;
8821
8819
  }
8822
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Directive });
8820
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
8823
8821
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterHostDirective, inputs: { column: "column", filter: "filter" }, usesOnChanges: true, ngImport: i0 });
8824
8822
  }
8825
8823
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterHostDirective, decorators: [{
8826
8824
  type: Directive,
8827
8825
  args: [{}]
8828
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { column: [{
8826
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { column: [{
8829
8827
  type: Input
8830
8828
  }], filter: [{
8831
8829
  type: Input
@@ -10464,8 +10462,8 @@ const filterComponentFactory = (type) => ({
10464
10462
  * @hidden
10465
10463
  */
10466
10464
  class FilterCellHostDirective extends FilterHostDirective {
10467
- constructor(host, resolver) {
10468
- super(host, resolver);
10465
+ constructor(host) {
10466
+ super(host);
10469
10467
  }
10470
10468
  componentType() {
10471
10469
  if (!isNullOrEmptyString(this.column.filter)) {
@@ -10473,7 +10471,7 @@ class FilterCellHostDirective extends FilterHostDirective {
10473
10471
  }
10474
10472
  return StringFilterCellComponent;
10475
10473
  }
10476
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Directive });
10474
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
10477
10475
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterCellHostDirective, isStandalone: true, selector: "[kendoFilterCellHost]", usesInheritance: true, ngImport: i0 });
10478
10476
  }
10479
10477
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellHostDirective, decorators: [{
@@ -10482,7 +10480,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
10482
10480
  selector: '[kendoFilterCellHost]',
10483
10481
  standalone: true
10484
10482
  }]
10485
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }]; } });
10483
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
10486
10484
 
10487
10485
  /**
10488
10486
  * @hidden
@@ -12237,8 +12235,8 @@ const filterMenuComponentFactory = (type) => ({
12237
12235
  class FilterMenuHostDirective extends FilterHostDirective {
12238
12236
  filterService;
12239
12237
  menuTabbingService;
12240
- constructor(host, resolver) {
12241
- super(host, resolver);
12238
+ constructor(host) {
12239
+ super(host);
12242
12240
  }
12243
12241
  componentType() {
12244
12242
  if (isPresent(this.column) && !isNullOrEmptyString(this.column.filter)) {
@@ -12251,7 +12249,7 @@ class FilterMenuHostDirective extends FilterHostDirective {
12251
12249
  this.component.instance.filterService = this.filterService;
12252
12250
  this.component.instance.menuTabbingService = this.menuTabbingService;
12253
12251
  }
12254
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Directive });
12252
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
12255
12253
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterMenuHostDirective, isStandalone: true, selector: "[kendoFilterMenuHost]", inputs: { filterService: "filterService", menuTabbingService: "menuTabbingService" }, usesInheritance: true, ngImport: i0 });
12256
12254
  }
12257
12255
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuHostDirective, decorators: [{
@@ -12260,7 +12258,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
12260
12258
  selector: '[kendoFilterMenuHost]',
12261
12259
  standalone: true
12262
12260
  }]
12263
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { filterService: [{
12261
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { filterService: [{
12264
12262
  type: Input
12265
12263
  }], menuTabbingService: [{
12266
12264
  type: Input
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Type, ViewContainerRef, ComponentFactoryResolver } from "@angular/core";
5
+ import { Type, ViewContainerRef } from "@angular/core";
6
6
  import { FilterHostDirective } from "../filter-host.directive";
7
7
  import { FilterComponent } from "../filter-component.interface";
8
8
  import * as i0 from "@angular/core";
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
10
10
  * @hidden
11
11
  */
12
12
  export declare class FilterCellHostDirective extends FilterHostDirective {
13
- constructor(host: ViewContainerRef, resolver: ComponentFactoryResolver);
13
+ constructor(host: ViewContainerRef);
14
14
  protected componentType(): Type<FilterComponent>;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterCellHostDirective, never>;
16
16
  static ɵdir: i0.ɵɵDirectiveDeclaration<FilterCellHostDirective, "[kendoFilterCellHost]", never, {}, {}, never, never, true, never>;
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Type, ViewContainerRef, OnInit, OnDestroy, OnChanges, ComponentRef, ComponentFactoryResolver, SimpleChange } from '@angular/core';
5
+ import { Type, ViewContainerRef, OnInit, OnDestroy, OnChanges, ComponentRef, SimpleChange } from '@angular/core';
6
6
  import { ColumnComponent } from '../columns/column.component';
7
7
  import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
8
8
  import { FilterComponent } from './filter-component.interface';
@@ -19,11 +19,10 @@ export type Context = {
19
19
  */
20
20
  export declare abstract class FilterHostDirective implements OnInit, OnDestroy, OnChanges {
21
21
  private host;
22
- private resolver;
23
22
  column: ColumnComponent;
24
23
  filter: CompositeFilterDescriptor;
25
24
  protected component: ComponentRef<FilterComponent>;
26
- constructor(host: ViewContainerRef, resolver: ComponentFactoryResolver);
25
+ constructor(host: ViewContainerRef);
27
26
  ngOnInit(): void;
28
27
  ngOnDestroy(): void;
29
28
  ngOnChanges(changes: {
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Type, ViewContainerRef, ComponentFactoryResolver } from "@angular/core";
5
+ import { Type, ViewContainerRef } from "@angular/core";
6
6
  import { FilterHostDirective, Context } from "../filter-host.directive";
7
7
  import { FilterComponent } from "../filter-component.interface";
8
8
  import { FilterService } from "../filter.service";
@@ -14,7 +14,7 @@ import * as i0 from "@angular/core";
14
14
  export declare class FilterMenuHostDirective extends FilterHostDirective {
15
15
  filterService: FilterService;
16
16
  menuTabbingService: MenuTabbingService;
17
- constructor(host: ViewContainerRef, resolver: ComponentFactoryResolver);
17
+ constructor(host: ViewContainerRef);
18
18
  protected componentType(): Type<FilterComponent>;
19
19
  protected initComponent(ctx: Context): void;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuHostDirective, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-treelist",
3
- "version": "18.5.0-develop.6",
3
+ "version": "18.5.0-develop.8",
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",
@@ -24,7 +24,7 @@
24
24
  "package": {
25
25
  "productName": "Kendo UI for Angular",
26
26
  "productCode": "KENDOUIANGULAR",
27
- "publishDate": 1743780188,
27
+ "publishDate": 1744029122,
28
28
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
29
29
  }
30
30
  },
@@ -37,26 +37,26 @@
37
37
  "@progress/kendo-data-query": "^1.0.0",
38
38
  "@progress/kendo-drawing": "^1.21.0",
39
39
  "@progress/kendo-licensing": "^1.5.0",
40
- "@progress/kendo-angular-buttons": "18.5.0-develop.6",
41
- "@progress/kendo-angular-common": "18.5.0-develop.6",
42
- "@progress/kendo-angular-dateinputs": "18.5.0-develop.6",
43
- "@progress/kendo-angular-dropdowns": "18.5.0-develop.6",
44
- "@progress/kendo-angular-excel-export": "18.5.0-develop.6",
45
- "@progress/kendo-angular-icons": "18.5.0-develop.6",
46
- "@progress/kendo-angular-inputs": "18.5.0-develop.6",
47
- "@progress/kendo-angular-intl": "18.5.0-develop.6",
48
- "@progress/kendo-angular-l10n": "18.5.0-develop.6",
49
- "@progress/kendo-angular-label": "18.5.0-develop.6",
50
- "@progress/kendo-angular-pager": "18.5.0-develop.6",
51
- "@progress/kendo-angular-pdf-export": "18.5.0-develop.6",
52
- "@progress/kendo-angular-popup": "18.5.0-develop.6",
53
- "@progress/kendo-angular-toolbar": "18.5.0-develop.6",
54
- "@progress/kendo-angular-utils": "18.5.0-develop.6",
40
+ "@progress/kendo-angular-buttons": "18.5.0-develop.8",
41
+ "@progress/kendo-angular-common": "18.5.0-develop.8",
42
+ "@progress/kendo-angular-dateinputs": "18.5.0-develop.8",
43
+ "@progress/kendo-angular-dropdowns": "18.5.0-develop.8",
44
+ "@progress/kendo-angular-excel-export": "18.5.0-develop.8",
45
+ "@progress/kendo-angular-icons": "18.5.0-develop.8",
46
+ "@progress/kendo-angular-inputs": "18.5.0-develop.8",
47
+ "@progress/kendo-angular-intl": "18.5.0-develop.8",
48
+ "@progress/kendo-angular-l10n": "18.5.0-develop.8",
49
+ "@progress/kendo-angular-label": "18.5.0-develop.8",
50
+ "@progress/kendo-angular-pager": "18.5.0-develop.8",
51
+ "@progress/kendo-angular-pdf-export": "18.5.0-develop.8",
52
+ "@progress/kendo-angular-popup": "18.5.0-develop.8",
53
+ "@progress/kendo-angular-toolbar": "18.5.0-develop.8",
54
+ "@progress/kendo-angular-utils": "18.5.0-develop.8",
55
55
  "rxjs": "^6.5.3 || ^7.0.0"
56
56
  },
57
57
  "dependencies": {
58
58
  "tslib": "^2.3.1",
59
- "@progress/kendo-angular-schematics": "18.5.0-develop.6",
59
+ "@progress/kendo-angular-schematics": "18.5.0-develop.8",
60
60
  "@progress/kendo-common": "^1.0.1",
61
61
  "@progress/kendo-file-saver": "^1.0.0"
62
62
  },
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
6
6
  // peer dep of the dropdowns
7
- '@progress/kendo-angular-treeview': '18.5.0-develop.6',
7
+ '@progress/kendo-angular-treeview': '18.5.0-develop.8',
8
8
  // peer dependency of kendo-angular-inputs
9
- '@progress/kendo-angular-dialog': '18.5.0-develop.6',
9
+ '@progress/kendo-angular-dialog': '18.5.0-develop.8',
10
10
  // peer dependency of kendo-angular-icons
11
11
  '@progress/kendo-svg-icons': '^4.0.0',
12
12
  // peer dependency of kendo-angular-dateinputs
13
- '@progress/kendo-angular-navigation': '18.5.0-develop.6',
13
+ '@progress/kendo-angular-navigation': '18.5.0-develop.8',
14
14
  } });
15
15
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
16
16
  }