@progress/kendo-angular-treelist 13.0.0-develop.9 → 13.0.0
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/cell/autocomplete-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +18 -1
- package/esm2020/filtering/cell/date-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/filter-cell-operators.component.mjs +21 -1
- package/esm2020/filtering/cell/filter-cell-wrapper.component.mjs +3 -1
- package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/string-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/filter-input.directive.mjs +29 -3
- package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +22 -7
- package/esm2020/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/string-filter-menu-input.component.mjs +19 -8
- package/esm2020/localization/messages.mjs +11 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/cell.component.mjs +5 -0
- package/esm2020/rendering/header/header.component.mjs +5 -0
- package/esm2020/rendering/list.component.mjs +20 -18
- package/esm2020/treelist.component.mjs +44 -10
- package/fesm2015/progress-kendo-angular-treelist.mjs +246 -67
- package/fesm2020/progress-kendo-angular-treelist.mjs +246 -67
- package/filtering/cell/autocomplete-filter-cell.component.d.ts +4 -0
- package/filtering/cell/boolean-filter-cell.component.d.ts +8 -0
- package/filtering/cell/date-filter-cell.component.d.ts +4 -0
- package/filtering/cell/filter-cell-operators.component.d.ts +14 -1
- package/filtering/cell/numeric-filter-cell.component.d.ts +4 -0
- package/filtering/cell/string-filter-cell.component.d.ts +4 -0
- package/filtering/filter-input.directive.d.ts +7 -1
- package/filtering/menu/boolean-filter-menu.component.d.ts +8 -1
- package/filtering/menu/string-filter-menu-input.component.d.ts +4 -0
- package/localization/messages.d.ts +37 -1
- package/package.json +16 -16
- package/rendering/cell.component.d.ts +1 -0
- package/rendering/header/header.component.d.ts +1 -0
- package/schematics/ngAdd/index.js +3 -3
|
@@ -28,6 +28,10 @@ export declare class AutoCompleteFilterCellComponent extends BaseFilterCellCompo
|
|
|
28
28
|
}>;
|
|
29
29
|
private _valueField;
|
|
30
30
|
constructor(filterService: FilterService, column: ColumnComponent, localization: LocalizationService);
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
get columnLabel(): string;
|
|
31
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutoCompleteFilterCellComponent, never>;
|
|
32
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<AutoCompleteFilterCellComponent, "kendo-treelist-autocomplete-filter-cell", never, { "showOperators": "showOperators"; "column": "column"; "filter": "filter"; "data": "data"; "valueField": "valueField"; }, {}, never, never>;
|
|
33
37
|
}
|
|
@@ -27,6 +27,14 @@ export declare class BooleanFilterCellComponent extends BooleanFilterComponent {
|
|
|
27
27
|
private cd;
|
|
28
28
|
constructor(filterService: FilterService, localization: LocalizationService, cd: ChangeDetectorRef);
|
|
29
29
|
protected localizationChange(): void;
|
|
30
|
+
/**
|
|
31
|
+
* @hidden
|
|
32
|
+
*/
|
|
33
|
+
messageFor(token: string): string;
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
*/
|
|
37
|
+
get columnLabel(): string;
|
|
30
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanFilterCellComponent, never>;
|
|
31
39
|
static ɵcmp: i0.ɵɵComponentDeclaration<BooleanFilterCellComponent, "kendo-treelist-boolean-filter-cell", never, {}, {}, never, never>;
|
|
32
40
|
}
|
|
@@ -31,6 +31,10 @@ export declare class DateFilterCellComponent extends DateFilterComponent {
|
|
|
31
31
|
*/
|
|
32
32
|
showOperators: boolean;
|
|
33
33
|
constructor(filterService: FilterService, localization: LocalizationService);
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
*/
|
|
37
|
+
get columnLabel(): string;
|
|
34
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateFilterCellComponent, never>;
|
|
35
39
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterCellComponent, "kendo-treelist-date-filter-cell", never, { "showOperators": "showOperators"; }, {}, never, never>;
|
|
36
40
|
}
|
|
@@ -6,6 +6,7 @@ import { EventEmitter, OnInit, OnDestroy } from '@angular/core';
|
|
|
6
6
|
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
9
|
+
import { ColumnComponent } from '../../columns/column.component';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
12
|
* Represents a component which accommodates the filter operators.
|
|
@@ -59,6 +60,10 @@ export declare class FilterCellOperatorsComponent implements OnInit, OnDestroy {
|
|
|
59
60
|
* @type {string}
|
|
60
61
|
*/
|
|
61
62
|
value: string;
|
|
63
|
+
/**
|
|
64
|
+
* @hidden
|
|
65
|
+
*/
|
|
66
|
+
column: ColumnComponent;
|
|
62
67
|
/**
|
|
63
68
|
* Fires when the operator is selected.
|
|
64
69
|
* @type {EventEmitter<string>}
|
|
@@ -89,6 +94,14 @@ export declare class FilterCellOperatorsComponent implements OnInit, OnDestroy {
|
|
|
89
94
|
dropdownKeydown(args: KeyboardEvent): void;
|
|
90
95
|
ngOnInit(): void;
|
|
91
96
|
ngOnDestroy(): void;
|
|
97
|
+
/**
|
|
98
|
+
* @hidden
|
|
99
|
+
*/
|
|
100
|
+
get columnLabel(): string;
|
|
101
|
+
/**
|
|
102
|
+
* @hidden
|
|
103
|
+
*/
|
|
104
|
+
messageFor(token: string): string;
|
|
92
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterCellOperatorsComponent, never>;
|
|
93
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterCellOperatorsComponent, "kendo-treelist-filter-cell-operators", never, { "operators": "operators"; "showButton": "showButton"; "showOperators": "showOperators"; "value": "value"; }, { "valueChange": "valueChange"; "clear": "clear"; }, never, never>;
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterCellOperatorsComponent, "kendo-treelist-filter-cell-operators", never, { "operators": "operators"; "showButton": "showButton"; "showOperators": "showOperators"; "value": "value"; "column": "column"; }, { "valueChange": "valueChange"; "clear": "clear"; }, never, never>;
|
|
94
107
|
}
|
|
@@ -37,6 +37,10 @@ export declare class NumericFilterCellComponent extends NumericFilterComponent {
|
|
|
37
37
|
*/
|
|
38
38
|
showOperators: boolean;
|
|
39
39
|
constructor(filterService: FilterService, localization: LocalizationService);
|
|
40
|
+
/**
|
|
41
|
+
* @hidden
|
|
42
|
+
*/
|
|
43
|
+
get columnLabel(): string;
|
|
40
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericFilterCellComponent, never>;
|
|
41
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<NumericFilterCellComponent, "kendo-treelist-numeric-filter-cell", never, { "filterDelay": "filterDelay"; "showOperators": "showOperators"; }, {}, never, never>;
|
|
42
46
|
}
|
|
@@ -39,6 +39,10 @@ export declare class StringFilterCellComponent extends StringFilterComponent {
|
|
|
39
39
|
*/
|
|
40
40
|
showOperators: boolean;
|
|
41
41
|
constructor(filterService: FilterService, localization: LocalizationService);
|
|
42
|
+
/**
|
|
43
|
+
* @hidden
|
|
44
|
+
*/
|
|
45
|
+
get columnLabel(): string;
|
|
42
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<StringFilterCellComponent, never>;
|
|
43
47
|
static ɵcmp: i0.ɵɵComponentDeclaration<StringFilterCellComponent, "kendo-treelist-string-filter-cell", never, { "filterDelay": "filterDelay"; "showOperators": "showOperators"; }, {}, never, never>;
|
|
44
48
|
}
|
|
@@ -9,9 +9,14 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* @hidden
|
|
10
10
|
*/
|
|
11
11
|
export declare class FilterInputDirective implements AfterViewInit, OnDestroy, OnChanges {
|
|
12
|
+
private element;
|
|
13
|
+
private renderer;
|
|
12
14
|
change: EventEmitter<string>;
|
|
13
15
|
composing: boolean;
|
|
16
|
+
kendoInput: any;
|
|
14
17
|
filterDelay: number;
|
|
18
|
+
columnLabel: string;
|
|
19
|
+
column: any;
|
|
15
20
|
set value(value: string);
|
|
16
21
|
set disabled(value: boolean);
|
|
17
22
|
private accessor;
|
|
@@ -24,6 +29,7 @@ export declare class FilterInputDirective implements AfterViewInit, OnDestroy, O
|
|
|
24
29
|
ngOnDestroy(): void;
|
|
25
30
|
private subscribeChanges;
|
|
26
31
|
private unsubscribeChanges;
|
|
32
|
+
private addAriaAttributes;
|
|
27
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterInputDirective, [{ self: true; }, null, null, null]>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FilterInputDirective, "[kendoFilterInput]", never, { "filterDelay": "filterDelay"; "value": "value"; }, {},
|
|
34
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FilterInputDirective, "[kendoFilterInput]", never, { "filterDelay": "filterDelay"; "columnLabel": "columnLabel"; "column": "column"; "value": "value"; }, {}, ["kendoInput"]>;
|
|
29
35
|
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright © 2023 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 { ElementRef, Renderer2 } from '@angular/core';
|
|
5
6
|
import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
6
7
|
import { FilterService } from '../filter.service';
|
|
7
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
@@ -24,10 +25,12 @@ import * as i0 from "@angular/core";
|
|
|
24
25
|
* ```
|
|
25
26
|
*/
|
|
26
27
|
export declare class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
28
|
+
protected renderer: Renderer2;
|
|
27
29
|
/**
|
|
28
30
|
* @hidden
|
|
29
31
|
*/
|
|
30
32
|
get hostClasses(): boolean;
|
|
33
|
+
inputElem: ElementRef;
|
|
31
34
|
/**
|
|
32
35
|
* The current menu filter.
|
|
33
36
|
* @type {CompositeFilterDescriptor}
|
|
@@ -38,7 +41,7 @@ export declare class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
|
38
41
|
*/
|
|
39
42
|
filterService: FilterService;
|
|
40
43
|
idPrefix: string;
|
|
41
|
-
constructor(localization: LocalizationService);
|
|
44
|
+
constructor(renderer: Renderer2, localization: LocalizationService);
|
|
42
45
|
/**
|
|
43
46
|
* @hidden
|
|
44
47
|
*/
|
|
@@ -51,6 +54,10 @@ export declare class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
|
51
54
|
* @hidden
|
|
52
55
|
*/
|
|
53
56
|
isSelected(radioValue: any): boolean;
|
|
57
|
+
/**
|
|
58
|
+
* @hidden
|
|
59
|
+
*/
|
|
60
|
+
columnLabel(): void;
|
|
54
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanFilterMenuComponent, never>;
|
|
55
62
|
static ɵcmp: i0.ɵɵComponentDeclaration<BooleanFilterMenuComponent, "kendo-treelist-boolean-filter-menu", never, { "filter": "filter"; "filterService": "filterService"; }, {}, never, never>;
|
|
56
63
|
}
|
|
@@ -5,11 +5,13 @@
|
|
|
5
5
|
import { FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
6
6
|
import { ColumnComponent } from "../../columns/column.component";
|
|
7
7
|
import { FilterService } from '../filter.service';
|
|
8
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
/**
|
|
10
11
|
* @hidden
|
|
11
12
|
*/
|
|
12
13
|
export declare class StringFilterMenuInputComponent {
|
|
14
|
+
private localization;
|
|
13
15
|
operators: Array<{
|
|
14
16
|
text: string;
|
|
15
17
|
value: string;
|
|
@@ -19,6 +21,8 @@ export declare class StringFilterMenuInputComponent {
|
|
|
19
21
|
operator: string;
|
|
20
22
|
currentFilter: FilterDescriptor;
|
|
21
23
|
filterService: FilterService;
|
|
24
|
+
constructor(localization: LocalizationService);
|
|
25
|
+
get columnLabel(): string;
|
|
22
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<StringFilterMenuInputComponent, never>;
|
|
23
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<StringFilterMenuInputComponent, "kendo-treelist-string-filter-menu-input", never, { "operators": "operators"; "column": "column"; "filter": "filter"; "operator": "operator"; "currentFilter": "currentFilter"; "filterService": "filterService"; }, {}, never, never>;
|
|
24
28
|
}
|
|
@@ -71,6 +71,34 @@ export declare class Messages extends ComponentMessages {
|
|
|
71
71
|
* The label of the filter cell or icon.
|
|
72
72
|
*/
|
|
73
73
|
filter: string;
|
|
74
|
+
/**
|
|
75
|
+
* The label of the filter row and menu inputs.
|
|
76
|
+
*/
|
|
77
|
+
filterInputLabel: string;
|
|
78
|
+
/**
|
|
79
|
+
* The label of the filter cell operators DropDownList.
|
|
80
|
+
*
|
|
81
|
+
* The label consists of a two-part message - the name of the column and a localizable string.
|
|
82
|
+
* For a column named **Product Name**, the default label will be **Filter cell operators for Product Name**.
|
|
83
|
+
*
|
|
84
|
+
* To allow reordering the column name and the localizable part, the `filterCellOperatorLabel` accepts a string with a
|
|
85
|
+
* placeholder for the column name, for example, **Filter operators for {columnName}**. The `{columnName}` placeholder will be replaced
|
|
86
|
+
* internally with the current column name, and the resulting label will be rendered as **Filter operators for Product Name**.
|
|
87
|
+
* [See example](slug:globalization_treelist#toc-custom-messages).
|
|
88
|
+
*/
|
|
89
|
+
filterCellOperatorLabel: string;
|
|
90
|
+
/**
|
|
91
|
+
* The label of the boolean filter cell DropDownList.
|
|
92
|
+
*
|
|
93
|
+
* The label consists of a two-part message - the name of the column and a localizable string.
|
|
94
|
+
* For a column named **Product Name**, the default label will be **Boolean filter cell for Product Name**.
|
|
95
|
+
*
|
|
96
|
+
* To allow reordering the column name and the localizable part, the `booleanFilterCellLabel` accepts a string with a
|
|
97
|
+
* placeholder for the column name, for example, **Boolean Filter operator for {columnName}**. The `{columnName}` placeholder will be replaced
|
|
98
|
+
* internally with the current column name, and the resulting label will be rendered as **Boolean Filter operator for Product Name**.
|
|
99
|
+
* [See example](slug:globalization_treelist#toc-custom-messages).
|
|
100
|
+
*/
|
|
101
|
+
booleanFilterCellLabel: string;
|
|
74
102
|
/**
|
|
75
103
|
* The text of the `Equal` (**Is equal to**) filter operator.
|
|
76
104
|
*/
|
|
@@ -240,6 +268,14 @@ export declare class Messages extends ComponentMessages {
|
|
|
240
268
|
* The label for the TreeList drag row handle.
|
|
241
269
|
*/
|
|
242
270
|
dragRowHandleLabel: string;
|
|
271
|
+
/**
|
|
272
|
+
* The label for the select row checkbox
|
|
273
|
+
*/
|
|
274
|
+
selectRowCheckboxLabel: string;
|
|
275
|
+
/**
|
|
276
|
+
* The label for the select all rows checkbox
|
|
277
|
+
*/
|
|
278
|
+
selectAllRowsCheckboxLabel: string;
|
|
243
279
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
244
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "groupPanelEmpty": "groupPanelEmpty"; "noRecords": "noRecords"; "pagerLabel": "pagerLabel"; "pagerFirstPage": "pagerFirstPage"; "pagerLastPage": "pagerLastPage"; "pagerPreviousPage": "pagerPreviousPage"; "pagerNextPage": "pagerNextPage"; "pagerPage": "pagerPage"; "pagerPageNumberInputTitle": "pagerPageNumberInputTitle"; "pagerItemsPerPage": "pagerItemsPerPage"; "pagerOf": "pagerOf"; "pagerItemsTotal": "pagerItemsTotal"; "selectPage": "selectPage"; "filter": "filter"; "filterEqOperator": "filterEqOperator"; "filterNotEqOperator": "filterNotEqOperator"; "filterIsNullOperator": "filterIsNullOperator"; "filterIsNotNullOperator": "filterIsNotNullOperator"; "filterIsEmptyOperator": "filterIsEmptyOperator"; "filterIsNotEmptyOperator": "filterIsNotEmptyOperator"; "filterStartsWithOperator": "filterStartsWithOperator"; "filterContainsOperator": "filterContainsOperator"; "filterNotContainsOperator": "filterNotContainsOperator"; "filterEndsWithOperator": "filterEndsWithOperator"; "filterGteOperator": "filterGteOperator"; "filterGtOperator": "filterGtOperator"; "filterLteOperator": "filterLteOperator"; "filterLtOperator": "filterLtOperator"; "filterIsTrue": "filterIsTrue"; "filterIsFalse": "filterIsFalse"; "filterBooleanAll": "filterBooleanAll"; "filterAfterOrEqualOperator": "filterAfterOrEqualOperator"; "filterAfterOperator": "filterAfterOperator"; "filterBeforeOperator": "filterBeforeOperator"; "filterBeforeOrEqualOperator": "filterBeforeOrEqualOperator"; "filterFilterButton": "filterFilterButton"; "filterClearButton": "filterClearButton"; "filterAndLogic": "filterAndLogic"; "filterOrLogic": "filterOrLogic"; "loading": "loading"; "columnMenu": "columnMenu"; "columns": "columns"; "lock": "lock"; "unlock": "unlock"; "sortable": "sortable"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "sortedAscending": "sortedAscending"; "sortedDescending": "sortedDescending"; "sortedDefault": "sortedDefault"; "columnsApply": "columnsApply"; "columnsReset": "columnsReset"; "topToolbarLabel": "topToolbarLabel"; "bottomToolbarLabel": "bottomToolbarLabel"; "dragRowHandleLabel": "dragRowHandleLabel"; }, {}, never>;
|
|
280
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "groupPanelEmpty": "groupPanelEmpty"; "noRecords": "noRecords"; "pagerLabel": "pagerLabel"; "pagerFirstPage": "pagerFirstPage"; "pagerLastPage": "pagerLastPage"; "pagerPreviousPage": "pagerPreviousPage"; "pagerNextPage": "pagerNextPage"; "pagerPage": "pagerPage"; "pagerPageNumberInputTitle": "pagerPageNumberInputTitle"; "pagerItemsPerPage": "pagerItemsPerPage"; "pagerOf": "pagerOf"; "pagerItemsTotal": "pagerItemsTotal"; "selectPage": "selectPage"; "filter": "filter"; "filterInputLabel": "filterInputLabel"; "filterCellOperatorLabel": "filterCellOperatorLabel"; "booleanFilterCellLabel": "booleanFilterCellLabel"; "filterEqOperator": "filterEqOperator"; "filterNotEqOperator": "filterNotEqOperator"; "filterIsNullOperator": "filterIsNullOperator"; "filterIsNotNullOperator": "filterIsNotNullOperator"; "filterIsEmptyOperator": "filterIsEmptyOperator"; "filterIsNotEmptyOperator": "filterIsNotEmptyOperator"; "filterStartsWithOperator": "filterStartsWithOperator"; "filterContainsOperator": "filterContainsOperator"; "filterNotContainsOperator": "filterNotContainsOperator"; "filterEndsWithOperator": "filterEndsWithOperator"; "filterGteOperator": "filterGteOperator"; "filterGtOperator": "filterGtOperator"; "filterLteOperator": "filterLteOperator"; "filterLtOperator": "filterLtOperator"; "filterIsTrue": "filterIsTrue"; "filterIsFalse": "filterIsFalse"; "filterBooleanAll": "filterBooleanAll"; "filterAfterOrEqualOperator": "filterAfterOrEqualOperator"; "filterAfterOperator": "filterAfterOperator"; "filterBeforeOperator": "filterBeforeOperator"; "filterBeforeOrEqualOperator": "filterBeforeOrEqualOperator"; "filterFilterButton": "filterFilterButton"; "filterClearButton": "filterClearButton"; "filterAndLogic": "filterAndLogic"; "filterOrLogic": "filterOrLogic"; "loading": "loading"; "columnMenu": "columnMenu"; "columns": "columns"; "lock": "lock"; "unlock": "unlock"; "sortable": "sortable"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "sortedAscending": "sortedAscending"; "sortedDescending": "sortedDescending"; "sortedDefault": "sortedDefault"; "columnsApply": "columnsApply"; "columnsReset": "columnsReset"; "topToolbarLabel": "topToolbarLabel"; "bottomToolbarLabel": "bottomToolbarLabel"; "dragRowHandleLabel": "dragRowHandleLabel"; "selectRowCheckboxLabel": "selectRowCheckboxLabel"; "selectAllRowsCheckboxLabel": "selectAllRowsCheckboxLabel"; }, {}, never>;
|
|
245
281
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "13.0.0
|
|
3
|
+
"version": "13.0.0",
|
|
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.0.0
|
|
34
|
-
"@progress/kendo-angular-common": "13.0.0
|
|
35
|
-
"@progress/kendo-angular-dateinputs": "13.0.0
|
|
36
|
-
"@progress/kendo-angular-dropdowns": "13.0.0
|
|
37
|
-
"@progress/kendo-angular-excel-export": "13.0.0
|
|
38
|
-
"@progress/kendo-angular-icons": "13.0.0
|
|
39
|
-
"@progress/kendo-angular-inputs": "13.0.0
|
|
40
|
-
"@progress/kendo-angular-intl": "13.0.0
|
|
41
|
-
"@progress/kendo-angular-l10n": "13.0.0
|
|
42
|
-
"@progress/kendo-angular-label": "13.0.0
|
|
43
|
-
"@progress/kendo-angular-pdf-export": "13.0.0
|
|
44
|
-
"@progress/kendo-angular-popup": "13.0.0
|
|
45
|
-
"@progress/kendo-angular-utils": "13.0.0
|
|
33
|
+
"@progress/kendo-angular-buttons": "13.0.0",
|
|
34
|
+
"@progress/kendo-angular-common": "13.0.0",
|
|
35
|
+
"@progress/kendo-angular-dateinputs": "13.0.0",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "13.0.0",
|
|
37
|
+
"@progress/kendo-angular-excel-export": "13.0.0",
|
|
38
|
+
"@progress/kendo-angular-icons": "13.0.0",
|
|
39
|
+
"@progress/kendo-angular-inputs": "13.0.0",
|
|
40
|
+
"@progress/kendo-angular-intl": "13.0.0",
|
|
41
|
+
"@progress/kendo-angular-l10n": "13.0.0",
|
|
42
|
+
"@progress/kendo-angular-label": "13.0.0",
|
|
43
|
+
"@progress/kendo-angular-pdf-export": "13.0.0",
|
|
44
|
+
"@progress/kendo-angular-popup": "13.0.0",
|
|
45
|
+
"@progress/kendo-angular-utils": "13.0.0",
|
|
46
46
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
47
|
-
"@progress/kendo-angular-listview": "13.0.0
|
|
47
|
+
"@progress/kendo-angular-listview": "13.0.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"tslib": "^2.3.1",
|
|
51
|
-
"@progress/kendo-angular-schematics": "13.0.0
|
|
51
|
+
"@progress/kendo-angular-schematics": "13.0.0",
|
|
52
52
|
"@progress/kendo-common": "^0.2.0",
|
|
53
53
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
54
54
|
},
|
|
@@ -56,6 +56,7 @@ export declare class CellComponent implements AfterContentChecked, DoCheck {
|
|
|
56
56
|
private updateTemplateContext;
|
|
57
57
|
get arrowIcon(): string;
|
|
58
58
|
get arrowSVGIcon(): SVGIcon;
|
|
59
|
+
messageFor(token: string): string;
|
|
59
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<CellComponent, never>;
|
|
60
61
|
static ɵcmp: i0.ɵɵComponentDeclaration<CellComponent, "[kendoTreeListCell]", never, { "column": "column"; "columnIndex": "columnIndex"; "isNew": "isNew"; "level": "level"; "hasChildren": "hasChildren"; "isExpanded": "isExpanded"; "loading": "loading"; "expandIcons": "expandIcons"; "selected": "selected"; "dataItem": "dataItem"; "viewItem": "viewItem"; }, {}, never, never>;
|
|
61
62
|
}
|
|
@@ -93,6 +93,7 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
|
93
93
|
selectAllClick(args: any): void;
|
|
94
94
|
sortDescriptor(field: string): SortDescriptor;
|
|
95
95
|
get leafColumns(): ColumnBase[];
|
|
96
|
+
messageFor(token: string): string;
|
|
96
97
|
private attachTargets;
|
|
97
98
|
private normalizeTarget;
|
|
98
99
|
private trackMove;
|
|
@@ -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.0.0
|
|
7
|
+
'@progress/kendo-angular-treeview': '13.0.0',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '13.0.0
|
|
9
|
+
'@progress/kendo-angular-dialog': '13.0.0',
|
|
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.0.0
|
|
13
|
+
'@progress/kendo-angular-navigation': '13.0.0',
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|