@progress/kendo-angular-treelist 13.4.1-develop.3 → 13.5.0-develop.1
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.
- package/esm2020/filtering/base-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/date-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/filter-cell-template.directive.mjs +1 -1
- package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/string-filter-cell.component.mjs +1 -2
- package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/date-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/filter-menu-template.directive.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/string-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/before-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/contains-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/eq-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/gt-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/gte-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/lte-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/neq-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +2 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-treelist.mjs +49 -50
- package/fesm2020/progress-kendo-angular-treelist.mjs +49 -50
- package/filtering/base-filter-cell.component.d.ts +1 -1
- package/filtering/cell/boolean-filter-cell.component.d.ts +1 -1
- package/filtering/cell/date-filter-cell.component.d.ts +1 -1
- package/filtering/cell/filter-cell-template.directive.d.ts +1 -1
- package/filtering/cell/numeric-filter-cell.component.d.ts +1 -1
- package/filtering/cell/string-filter-cell.component.d.ts +1 -2
- package/filtering/menu/boolean-filter-menu.component.d.ts +1 -1
- package/filtering/menu/date-filter-menu.component.d.ts +1 -1
- package/filtering/menu/filter-menu-template.directive.d.ts +1 -1
- package/filtering/menu/numeric-filter-menu.component.d.ts +1 -1
- package/filtering/menu/string-filter-menu.component.d.ts +1 -1
- package/filtering/operators/after-eq-filter-operator.component.d.ts +2 -2
- package/filtering/operators/after-filter-operator.component.d.ts +2 -2
- package/filtering/operators/before-eq-filter-operator.component.d.ts +2 -2
- package/filtering/operators/before-filter-operator.component.d.ts +2 -2
- package/filtering/operators/contains-filter-operator.component.d.ts +2 -2
- package/filtering/operators/ends-with-filter-operator.component.d.ts +2 -2
- package/filtering/operators/eq-filter-operator.component.d.ts +2 -2
- package/filtering/operators/gte-filter-operator.component.d.ts +2 -2
- package/filtering/operators/is-empty-filter-operator.component.d.ts +2 -2
- package/filtering/operators/is-not-empty-filter-operator.component.d.ts +2 -2
- package/filtering/operators/is-not-null-filter-operator.component.d.ts +2 -2
- package/filtering/operators/isnull-filter-operator.component.d.ts +2 -2
- package/filtering/operators/lt-filter-operator.component.d.ts +2 -2
- package/filtering/operators/neq-filter-operator.component.d.ts +2 -2
- package/filtering/operators/not-contains-filter-operator.component.d.ts +2 -2
- package/filtering/operators/starts-with-filter-operator.component.d.ts +2 -2
- package/package.json +16 -16
- 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](
|
|
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:
|
|
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](
|
|
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
|
-
*
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
-
* [
|
|
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
|
-
* [
|
|
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
|
-
* [
|
|
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:
|
|
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
|
-
* [
|
|
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
|
-
* [
|
|
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
|
-
* [
|
|
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
|
-
* [
|
|
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:
|
|
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
|
-
* [
|
|
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
|
-
* [
|
|
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
|
-
* [
|
|
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.
|
|
3
|
+
"version": "13.5.0-develop.1",
|
|
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.
|
|
34
|
-
"@progress/kendo-angular-common": "13.
|
|
35
|
-
"@progress/kendo-angular-dateinputs": "13.
|
|
36
|
-
"@progress/kendo-angular-dropdowns": "13.
|
|
37
|
-
"@progress/kendo-angular-excel-export": "13.
|
|
38
|
-
"@progress/kendo-angular-icons": "13.
|
|
39
|
-
"@progress/kendo-angular-inputs": "13.
|
|
40
|
-
"@progress/kendo-angular-intl": "13.
|
|
41
|
-
"@progress/kendo-angular-l10n": "13.
|
|
42
|
-
"@progress/kendo-angular-label": "13.
|
|
43
|
-
"@progress/kendo-angular-pdf-export": "13.
|
|
44
|
-
"@progress/kendo-angular-popup": "13.
|
|
45
|
-
"@progress/kendo-angular-utils": "13.
|
|
33
|
+
"@progress/kendo-angular-buttons": "13.5.0-develop.1",
|
|
34
|
+
"@progress/kendo-angular-common": "13.5.0-develop.1",
|
|
35
|
+
"@progress/kendo-angular-dateinputs": "13.5.0-develop.1",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "13.5.0-develop.1",
|
|
37
|
+
"@progress/kendo-angular-excel-export": "13.5.0-develop.1",
|
|
38
|
+
"@progress/kendo-angular-icons": "13.5.0-develop.1",
|
|
39
|
+
"@progress/kendo-angular-inputs": "13.5.0-develop.1",
|
|
40
|
+
"@progress/kendo-angular-intl": "13.5.0-develop.1",
|
|
41
|
+
"@progress/kendo-angular-l10n": "13.5.0-develop.1",
|
|
42
|
+
"@progress/kendo-angular-label": "13.5.0-develop.1",
|
|
43
|
+
"@progress/kendo-angular-pdf-export": "13.5.0-develop.1",
|
|
44
|
+
"@progress/kendo-angular-popup": "13.5.0-develop.1",
|
|
45
|
+
"@progress/kendo-angular-utils": "13.5.0-develop.1",
|
|
46
46
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
47
|
-
"@progress/kendo-angular-listview": "13.
|
|
47
|
+
"@progress/kendo-angular-listview": "13.5.0-develop.1"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"tslib": "^2.3.1",
|
|
51
|
-
"@progress/kendo-angular-schematics": "13.
|
|
51
|
+
"@progress/kendo-angular-schematics": "13.5.0-develop.1",
|
|
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.
|
|
7
|
+
'@progress/kendo-angular-treeview': '13.5.0-develop.1',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '13.
|
|
9
|
+
'@progress/kendo-angular-dialog': '13.5.0-develop.1',
|
|
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.
|
|
13
|
+
'@progress/kendo-angular-navigation': '13.5.0-develop.1',
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|