@progress/kendo-angular-treelist 13.4.1-develop.4 → 13.5.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 (61) hide show
  1. package/esm2020/filtering/base-filter-cell.component.mjs +1 -1
  2. package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +1 -1
  3. package/esm2020/filtering/cell/date-filter-cell.component.mjs +1 -1
  4. package/esm2020/filtering/cell/filter-cell-template.directive.mjs +1 -1
  5. package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +1 -1
  6. package/esm2020/filtering/cell/string-filter-cell.component.mjs +1 -2
  7. package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +1 -1
  8. package/esm2020/filtering/menu/date-filter-menu.component.mjs +1 -1
  9. package/esm2020/filtering/menu/filter-menu-template.directive.mjs +1 -1
  10. package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +1 -1
  11. package/esm2020/filtering/menu/string-filter-menu.component.mjs +1 -1
  12. package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -2
  13. package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -2
  14. package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -2
  15. package/esm2020/filtering/operators/before-filter-operator.component.mjs +2 -2
  16. package/esm2020/filtering/operators/contains-filter-operator.component.mjs +2 -2
  17. package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +2 -2
  18. package/esm2020/filtering/operators/eq-filter-operator.component.mjs +2 -2
  19. package/esm2020/filtering/operators/gt-filter-operator.component.mjs +2 -2
  20. package/esm2020/filtering/operators/gte-filter-operator.component.mjs +2 -2
  21. package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +2 -2
  22. package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +2 -2
  23. package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +2 -2
  24. package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +2 -2
  25. package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -2
  26. package/esm2020/filtering/operators/lte-filter-operator.component.mjs +2 -2
  27. package/esm2020/filtering/operators/neq-filter-operator.component.mjs +2 -2
  28. package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +2 -2
  29. package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +2 -2
  30. package/esm2020/package-metadata.mjs +2 -2
  31. package/fesm2015/progress-kendo-angular-treelist.mjs +49 -50
  32. package/fesm2020/progress-kendo-angular-treelist.mjs +49 -50
  33. package/filtering/base-filter-cell.component.d.ts +1 -1
  34. package/filtering/cell/boolean-filter-cell.component.d.ts +1 -1
  35. package/filtering/cell/date-filter-cell.component.d.ts +1 -1
  36. package/filtering/cell/filter-cell-template.directive.d.ts +1 -1
  37. package/filtering/cell/numeric-filter-cell.component.d.ts +1 -1
  38. package/filtering/cell/string-filter-cell.component.d.ts +1 -2
  39. package/filtering/menu/boolean-filter-menu.component.d.ts +1 -1
  40. package/filtering/menu/date-filter-menu.component.d.ts +1 -1
  41. package/filtering/menu/filter-menu-template.directive.d.ts +1 -1
  42. package/filtering/menu/numeric-filter-menu.component.d.ts +1 -1
  43. package/filtering/menu/string-filter-menu.component.d.ts +1 -1
  44. package/filtering/operators/after-eq-filter-operator.component.d.ts +2 -2
  45. package/filtering/operators/after-filter-operator.component.d.ts +2 -2
  46. package/filtering/operators/before-eq-filter-operator.component.d.ts +2 -2
  47. package/filtering/operators/before-filter-operator.component.d.ts +2 -2
  48. package/filtering/operators/contains-filter-operator.component.d.ts +2 -2
  49. package/filtering/operators/ends-with-filter-operator.component.d.ts +2 -2
  50. package/filtering/operators/eq-filter-operator.component.d.ts +2 -2
  51. package/filtering/operators/gte-filter-operator.component.d.ts +2 -2
  52. package/filtering/operators/is-empty-filter-operator.component.d.ts +2 -2
  53. package/filtering/operators/is-not-empty-filter-operator.component.d.ts +2 -2
  54. package/filtering/operators/is-not-null-filter-operator.component.d.ts +2 -2
  55. package/filtering/operators/isnull-filter-operator.component.d.ts +2 -2
  56. package/filtering/operators/lt-filter-operator.component.d.ts +2 -2
  57. package/filtering/operators/neq-filter-operator.component.d.ts +2 -2
  58. package/filtering/operators/not-contains-filter-operator.component.d.ts +2 -2
  59. package/filtering/operators/starts-with-filter-operator.component.d.ts +2 -2
  60. package/package.json +16 -16
  61. package/schematics/ngAdd/index.js +3 -3
@@ -5,7 +5,7 @@
5
5
  import { TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
- * Represents the filter-cell template ([see example]({% slug builtinfiltertemplate_treelist %}#toc-customizing-filter-rows)).
8
+ * Represents the filter-cell template ([see example](slug:filter_row_treelist#toc-custom-filter-row-components).
9
9
  *
10
10
  * The template context is set to the filter descriptor and the following additional fields are passed:
11
11
  * - `column`—The current column instance. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
@@ -7,7 +7,7 @@ import { FilterService } from '../filter.service';
7
7
  import { NumericFilterComponent } from '../numeric-filter.component';
8
8
  import * as i0 from "@angular/core";
9
9
  /**
10
- * Represents a numeric filter cell.
10
+ * Represents a numeric filter cell. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
11
11
  *
12
12
  * @example
13
13
  * ```html
@@ -7,8 +7,7 @@ import { FilterService } from '../filter.service';
7
7
  import { StringFilterComponent } from '../string-filter.component';
8
8
  import * as i0 from "@angular/core";
9
9
  /**
10
- * Represents a string-filter cell component
11
- * ([see example]({% slug builtinfiltertemplate_treelist %}#toc-configuration-components-for-filter-templates)).
10
+ * Represents a string-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
12
11
  *
13
12
  * @example
14
13
  *
@@ -9,7 +9,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
9
9
  import { BooleanFilterComponent } from '../boolean-filter.component';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * Represents a Boolean-filter menu component. [See example](slug:columnmenu_treelist#toc-customizing-the-content).
12
+ * Represents a Boolean-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
13
13
  *
14
14
  * @example
15
15
  * ```html
@@ -9,7 +9,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
9
9
  import { DateFilterComponent } from '../date-filter.component';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * Represents a date-filter menu component.
12
+ * Represents a date-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
13
13
  *
14
14
  * @example
15
15
  * ```html
@@ -6,7 +6,7 @@ import { TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Represents the filter-menu template
9
- * ([see example]({% slug builtinfiltertemplate_treelist %}#toc-customizing-filter-menus)).
9
+ * ([see example](slug:filter_menu_treelist#toc-custom-filter-menu-components).
10
10
  */
11
11
  export declare class FilterMenuTemplateDirective {
12
12
  templateRef: TemplateRef<any>;
@@ -9,7 +9,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
9
9
  import { NumericFilterComponent } from '../numeric-filter.component';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * Represents a numeric-filter menu component.
12
+ * Represents a numeric-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
13
13
  *
14
14
  * @example
15
15
  * ```html
@@ -10,7 +10,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
12
  * Represents a string-filter menu component.
13
- * ([see example]({% slug builtinfiltertemplate_treelist %}#toc-configuration-components-for-filter-templates)).
13
+ * [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
14
14
  *
15
15
  * @example
16
16
  * ```html
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `GreaterOrEqualTo` (**Is after or equal to**) date filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `GreaterOrEqualTo` (**Is after or equal to**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
10
+ * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class AfterEqFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `Greater` (**Is after**) date filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `Greater` (**Is after**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
10
+ * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class AfterFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `LessOrEqualTo` (**Is before or equal to**) date filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `LessOrEqualTo` (**Is before or equal to**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
10
+ * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class BeforeEqFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `Less than` (**Is before**) date filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `Less than` (**Is before**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
10
+ * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class BeforeFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
6
  import { FilterOperatorBase } from './filter-operator.base';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `Contains` (**Contains**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `Contains` (**Contains**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class ContainsFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
6
  import { FilterOperatorBase } from './filter-operator.base';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `EndsWith` (**Ends with**) string filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `EndsWith` (**Ends with**) string filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class EndsWithFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `Equal` (**Is equal to**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `Equal` (**Is equal to**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class EqualFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
10
+ * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `IsEmpty` (**Is empty**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `IsEmpty` (**Is empty**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `IsNotEmpty` (**Is not empty**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `IsNotEmpty` (**Is not empty**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `IsNotNull` (**Is not null**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `IsNotNull` (**Is not null**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `IsNull` (**Is null**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `IsNull` (**Is null**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class IsNullFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `Less` (**Is less than**) numeric filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `Less` (**Is less than**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
10
+ * [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class LessFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `NotEqual` (**Is not equal to**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `NotEqual` (**Is not equal to**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class NotEqualFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `DoesNotContain` (**Does not contain**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `DoesNotContain` (**Does not contain**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
@@ -6,8 +6,8 @@ import { FilterOperatorBase } from './filter-operator.base';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the `StartsWith` (**Starts with**) filter operator.
10
- * [See example](slug:builtinfiltertemplate_treelist#toc-setting-the-order-of-the-filter-operators).
9
+ * Represents the `StartsWith` (**Starts with**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
10
+ * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
11
11
  */
12
12
  export declare class StartsWithFilterOperatorComponent extends FilterOperatorBase {
13
13
  constructor(localization: LocalizationService);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-treelist",
3
- "version": "13.4.1-develop.4",
3
+ "version": "13.5.0-develop.2",
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",
@@ -30,25 +30,25 @@
30
30
  "@progress/kendo-data-query": "^1.0.0",
31
31
  "@progress/kendo-drawing": "^1.17.2",
32
32
  "@progress/kendo-licensing": "^1.0.2",
33
- "@progress/kendo-angular-buttons": "13.4.1-develop.4",
34
- "@progress/kendo-angular-common": "13.4.1-develop.4",
35
- "@progress/kendo-angular-dateinputs": "13.4.1-develop.4",
36
- "@progress/kendo-angular-dropdowns": "13.4.1-develop.4",
37
- "@progress/kendo-angular-excel-export": "13.4.1-develop.4",
38
- "@progress/kendo-angular-icons": "13.4.1-develop.4",
39
- "@progress/kendo-angular-inputs": "13.4.1-develop.4",
40
- "@progress/kendo-angular-intl": "13.4.1-develop.4",
41
- "@progress/kendo-angular-l10n": "13.4.1-develop.4",
42
- "@progress/kendo-angular-label": "13.4.1-develop.4",
43
- "@progress/kendo-angular-pdf-export": "13.4.1-develop.4",
44
- "@progress/kendo-angular-popup": "13.4.1-develop.4",
45
- "@progress/kendo-angular-utils": "13.4.1-develop.4",
33
+ "@progress/kendo-angular-buttons": "13.5.0-develop.2",
34
+ "@progress/kendo-angular-common": "13.5.0-develop.2",
35
+ "@progress/kendo-angular-dateinputs": "13.5.0-develop.2",
36
+ "@progress/kendo-angular-dropdowns": "13.5.0-develop.2",
37
+ "@progress/kendo-angular-excel-export": "13.5.0-develop.2",
38
+ "@progress/kendo-angular-icons": "13.5.0-develop.2",
39
+ "@progress/kendo-angular-inputs": "13.5.0-develop.2",
40
+ "@progress/kendo-angular-intl": "13.5.0-develop.2",
41
+ "@progress/kendo-angular-l10n": "13.5.0-develop.2",
42
+ "@progress/kendo-angular-label": "13.5.0-develop.2",
43
+ "@progress/kendo-angular-pdf-export": "13.5.0-develop.2",
44
+ "@progress/kendo-angular-popup": "13.5.0-develop.2",
45
+ "@progress/kendo-angular-utils": "13.5.0-develop.2",
46
46
  "rxjs": "^6.5.3 || ^7.0.0",
47
- "@progress/kendo-angular-listview": "13.4.1-develop.4"
47
+ "@progress/kendo-angular-listview": "13.5.0-develop.2"
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.3.1",
51
- "@progress/kendo-angular-schematics": "13.4.1-develop.4",
51
+ "@progress/kendo-angular-schematics": "13.5.0-develop.2",
52
52
  "@progress/kendo-common": "^0.2.0",
53
53
  "@progress/kendo-file-saver": "^1.0.0"
54
54
  },
@@ -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': '13.4.1-develop.4',
7
+ '@progress/kendo-angular-treeview': '13.5.0-develop.2',
8
8
  // peer dependency of kendo-angular-inputs
9
- '@progress/kendo-angular-dialog': '13.4.1-develop.4',
9
+ '@progress/kendo-angular-dialog': '13.5.0-develop.2',
10
10
  // peer dependency of kendo-angular-icons
11
11
  '@progress/kendo-svg-icons': '^1.0.0',
12
12
  // peer dependency of kendo-angular-dateinputs
13
- '@progress/kendo-angular-navigation': '13.4.1-develop.4',
13
+ '@progress/kendo-angular-navigation': '13.5.0-develop.2',
14
14
  } });
15
15
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
16
16
  }