@progress/kendo-angular-treelist 11.4.1-develop.9 → 11.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.
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/cell.component.mjs +2 -2
- package/esm2020/rendering/table-body.component.mjs +19 -14
- package/fesm2015/progress-kendo-angular-treelist.mjs +23 -18
- package/fesm2020/progress-kendo-angular-treelist.mjs +23 -18
- package/package.json +15 -15
- package/rendering/table-body.component.d.ts +1 -0
- package/schematics/ngAdd/index.js +3 -3
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-treelist',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '11.
|
|
12
|
+
publishDate: 1680080055,
|
|
13
|
+
version: '11.5.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -176,7 +176,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
176
176
|
<input
|
|
177
177
|
*ngSwitchDefault
|
|
178
178
|
type="text"
|
|
179
|
-
class="k-textbox k-input k-rounded-md"
|
|
179
|
+
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
180
180
|
[formControl]="$any(formGroup.get(column.field))"
|
|
181
181
|
kendoTreeListFocusable
|
|
182
182
|
/>
|
|
@@ -249,7 +249,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
249
249
|
<input
|
|
250
250
|
*ngSwitchDefault
|
|
251
251
|
type="text"
|
|
252
|
-
class="k-textbox k-input k-rounded-md"
|
|
252
|
+
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
253
253
|
[formControl]="$any(formGroup.get(column.field))"
|
|
254
254
|
kendoTreeListFocusable
|
|
255
255
|
/>
|
|
@@ -113,6 +113,9 @@ export class TableBodyComponent {
|
|
|
113
113
|
}
|
|
114
114
|
return true;
|
|
115
115
|
}
|
|
116
|
+
ariaRowExpanded(item) {
|
|
117
|
+
return Boolean(item.expanded);
|
|
118
|
+
}
|
|
116
119
|
ariaExpanded(item, column) {
|
|
117
120
|
if (!column.expandable || !item.hasChildren) {
|
|
118
121
|
return;
|
|
@@ -334,13 +337,14 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
334
337
|
<ng-container *ngFor="let item of view?.data;let rowIndex = index;trackBy: trackByWrapper;">
|
|
335
338
|
<tr *ngIf="item.type === 'data'"
|
|
336
339
|
kendoTreeListLogicalRow
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
340
|
+
[dataRowIndex]="$any(item).index"
|
|
341
|
+
[dataItem]="item.data"
|
|
342
|
+
[logicalRowIndex]="logicalRowIndex(item.rowIndex)"
|
|
343
|
+
[logicalSlaveRow]="lockedColumnsCount > 0"
|
|
344
|
+
[logicalCellsCount]="columns.length"
|
|
345
|
+
[logicalSlaveCellsCount]="unlockedColumnsCount"
|
|
346
|
+
[isNew]="item.isNew"
|
|
347
|
+
[attr.aria-expanded]="ariaRowExpanded(item)"
|
|
344
348
|
[ngClass]="rowClass({ dataItem: item.data, index: $any(item).index })"
|
|
345
349
|
class="k-table-row{{isOdd(item) ? ' k-alt k-table-alt-row' : ''}}"
|
|
346
350
|
[class.k-grid-edit-row]="isEditingRow(item)"
|
|
@@ -433,13 +437,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
433
437
|
<ng-container *ngFor="let item of view?.data;let rowIndex = index;trackBy: trackByWrapper;">
|
|
434
438
|
<tr *ngIf="item.type === 'data'"
|
|
435
439
|
kendoTreeListLogicalRow
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
440
|
+
[dataRowIndex]="$any(item).index"
|
|
441
|
+
[dataItem]="item.data"
|
|
442
|
+
[logicalRowIndex]="logicalRowIndex(item.rowIndex)"
|
|
443
|
+
[logicalSlaveRow]="lockedColumnsCount > 0"
|
|
444
|
+
[logicalCellsCount]="columns.length"
|
|
445
|
+
[logicalSlaveCellsCount]="unlockedColumnsCount"
|
|
446
|
+
[isNew]="item.isNew"
|
|
447
|
+
[attr.aria-expanded]="ariaRowExpanded(item)"
|
|
443
448
|
[ngClass]="rowClass({ dataItem: item.data, index: $any(item).index })"
|
|
444
449
|
class="k-table-row{{isOdd(item) ? ' k-alt k-table-alt-row' : ''}}"
|
|
445
450
|
[class.k-grid-edit-row]="isEditingRow(item)"
|
|
@@ -46,8 +46,8 @@ const packageMetadata = {
|
|
|
46
46
|
name: '@progress/kendo-angular-treelist',
|
|
47
47
|
productName: 'Kendo UI for Angular',
|
|
48
48
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
49
|
-
publishDate:
|
|
50
|
-
version: '11.
|
|
49
|
+
publishDate: 1680080055,
|
|
50
|
+
version: '11.5.0-develop.2',
|
|
51
51
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -10730,7 +10730,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
10730
10730
|
<input
|
|
10731
10731
|
*ngSwitchDefault
|
|
10732
10732
|
type="text"
|
|
10733
|
-
class="k-textbox k-input k-rounded-md"
|
|
10733
|
+
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
10734
10734
|
[formControl]="$any(formGroup.get(column.field))"
|
|
10735
10735
|
kendoTreeListFocusable
|
|
10736
10736
|
/>
|
|
@@ -10803,7 +10803,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
10803
10803
|
<input
|
|
10804
10804
|
*ngSwitchDefault
|
|
10805
10805
|
type="text"
|
|
10806
|
-
class="k-textbox k-input k-rounded-md"
|
|
10806
|
+
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
10807
10807
|
[formControl]="$any(formGroup.get(column.field))"
|
|
10808
10808
|
kendoTreeListFocusable
|
|
10809
10809
|
/>
|
|
@@ -10925,6 +10925,9 @@ class TableBodyComponent {
|
|
|
10925
10925
|
}
|
|
10926
10926
|
return true;
|
|
10927
10927
|
}
|
|
10928
|
+
ariaRowExpanded(item) {
|
|
10929
|
+
return Boolean(item.expanded);
|
|
10930
|
+
}
|
|
10928
10931
|
ariaExpanded(item, column) {
|
|
10929
10932
|
if (!column.expandable || !item.hasChildren) {
|
|
10930
10933
|
return;
|
|
@@ -11146,13 +11149,14 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
11146
11149
|
<ng-container *ngFor="let item of view?.data;let rowIndex = index;trackBy: trackByWrapper;">
|
|
11147
11150
|
<tr *ngIf="item.type === 'data'"
|
|
11148
11151
|
kendoTreeListLogicalRow
|
|
11149
|
-
|
|
11150
|
-
|
|
11151
|
-
|
|
11152
|
-
|
|
11153
|
-
|
|
11154
|
-
|
|
11155
|
-
|
|
11152
|
+
[dataRowIndex]="$any(item).index"
|
|
11153
|
+
[dataItem]="item.data"
|
|
11154
|
+
[logicalRowIndex]="logicalRowIndex(item.rowIndex)"
|
|
11155
|
+
[logicalSlaveRow]="lockedColumnsCount > 0"
|
|
11156
|
+
[logicalCellsCount]="columns.length"
|
|
11157
|
+
[logicalSlaveCellsCount]="unlockedColumnsCount"
|
|
11158
|
+
[isNew]="item.isNew"
|
|
11159
|
+
[attr.aria-expanded]="ariaRowExpanded(item)"
|
|
11156
11160
|
[ngClass]="rowClass({ dataItem: item.data, index: $any(item).index })"
|
|
11157
11161
|
class="k-table-row{{isOdd(item) ? ' k-alt k-table-alt-row' : ''}}"
|
|
11158
11162
|
[class.k-grid-edit-row]="isEditingRow(item)"
|
|
@@ -11245,13 +11249,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11245
11249
|
<ng-container *ngFor="let item of view?.data;let rowIndex = index;trackBy: trackByWrapper;">
|
|
11246
11250
|
<tr *ngIf="item.type === 'data'"
|
|
11247
11251
|
kendoTreeListLogicalRow
|
|
11248
|
-
|
|
11249
|
-
|
|
11250
|
-
|
|
11251
|
-
|
|
11252
|
-
|
|
11253
|
-
|
|
11254
|
-
|
|
11252
|
+
[dataRowIndex]="$any(item).index"
|
|
11253
|
+
[dataItem]="item.data"
|
|
11254
|
+
[logicalRowIndex]="logicalRowIndex(item.rowIndex)"
|
|
11255
|
+
[logicalSlaveRow]="lockedColumnsCount > 0"
|
|
11256
|
+
[logicalCellsCount]="columns.length"
|
|
11257
|
+
[logicalSlaveCellsCount]="unlockedColumnsCount"
|
|
11258
|
+
[isNew]="item.isNew"
|
|
11259
|
+
[attr.aria-expanded]="ariaRowExpanded(item)"
|
|
11255
11260
|
[ngClass]="rowClass({ dataItem: item.data, index: $any(item).index })"
|
|
11256
11261
|
class="k-table-row{{isOdd(item) ? ' k-alt k-table-alt-row' : ''}}"
|
|
11257
11262
|
[class.k-grid-edit-row]="isEditingRow(item)"
|
|
@@ -46,8 +46,8 @@ const packageMetadata = {
|
|
|
46
46
|
name: '@progress/kendo-angular-treelist',
|
|
47
47
|
productName: 'Kendo UI for Angular',
|
|
48
48
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
49
|
-
publishDate:
|
|
50
|
-
version: '11.
|
|
49
|
+
publishDate: 1680080055,
|
|
50
|
+
version: '11.5.0-develop.2',
|
|
51
51
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -10687,7 +10687,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
10687
10687
|
<input
|
|
10688
10688
|
*ngSwitchDefault
|
|
10689
10689
|
type="text"
|
|
10690
|
-
class="k-textbox k-input k-rounded-md"
|
|
10690
|
+
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
10691
10691
|
[formControl]="$any(formGroup.get(column.field))"
|
|
10692
10692
|
kendoTreeListFocusable
|
|
10693
10693
|
/>
|
|
@@ -10760,7 +10760,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
10760
10760
|
<input
|
|
10761
10761
|
*ngSwitchDefault
|
|
10762
10762
|
type="text"
|
|
10763
|
-
class="k-textbox k-input k-rounded-md"
|
|
10763
|
+
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
10764
10764
|
[formControl]="$any(formGroup.get(column.field))"
|
|
10765
10765
|
kendoTreeListFocusable
|
|
10766
10766
|
/>
|
|
@@ -10882,6 +10882,9 @@ class TableBodyComponent {
|
|
|
10882
10882
|
}
|
|
10883
10883
|
return true;
|
|
10884
10884
|
}
|
|
10885
|
+
ariaRowExpanded(item) {
|
|
10886
|
+
return Boolean(item.expanded);
|
|
10887
|
+
}
|
|
10885
10888
|
ariaExpanded(item, column) {
|
|
10886
10889
|
if (!column.expandable || !item.hasChildren) {
|
|
10887
10890
|
return;
|
|
@@ -11103,13 +11106,14 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
11103
11106
|
<ng-container *ngFor="let item of view?.data;let rowIndex = index;trackBy: trackByWrapper;">
|
|
11104
11107
|
<tr *ngIf="item.type === 'data'"
|
|
11105
11108
|
kendoTreeListLogicalRow
|
|
11106
|
-
|
|
11107
|
-
|
|
11108
|
-
|
|
11109
|
-
|
|
11110
|
-
|
|
11111
|
-
|
|
11112
|
-
|
|
11109
|
+
[dataRowIndex]="$any(item).index"
|
|
11110
|
+
[dataItem]="item.data"
|
|
11111
|
+
[logicalRowIndex]="logicalRowIndex(item.rowIndex)"
|
|
11112
|
+
[logicalSlaveRow]="lockedColumnsCount > 0"
|
|
11113
|
+
[logicalCellsCount]="columns.length"
|
|
11114
|
+
[logicalSlaveCellsCount]="unlockedColumnsCount"
|
|
11115
|
+
[isNew]="item.isNew"
|
|
11116
|
+
[attr.aria-expanded]="ariaRowExpanded(item)"
|
|
11113
11117
|
[ngClass]="rowClass({ dataItem: item.data, index: $any(item).index })"
|
|
11114
11118
|
class="k-table-row{{isOdd(item) ? ' k-alt k-table-alt-row' : ''}}"
|
|
11115
11119
|
[class.k-grid-edit-row]="isEditingRow(item)"
|
|
@@ -11202,13 +11206,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11202
11206
|
<ng-container *ngFor="let item of view?.data;let rowIndex = index;trackBy: trackByWrapper;">
|
|
11203
11207
|
<tr *ngIf="item.type === 'data'"
|
|
11204
11208
|
kendoTreeListLogicalRow
|
|
11205
|
-
|
|
11206
|
-
|
|
11207
|
-
|
|
11208
|
-
|
|
11209
|
-
|
|
11210
|
-
|
|
11211
|
-
|
|
11209
|
+
[dataRowIndex]="$any(item).index"
|
|
11210
|
+
[dataItem]="item.data"
|
|
11211
|
+
[logicalRowIndex]="logicalRowIndex(item.rowIndex)"
|
|
11212
|
+
[logicalSlaveRow]="lockedColumnsCount > 0"
|
|
11213
|
+
[logicalCellsCount]="columns.length"
|
|
11214
|
+
[logicalSlaveCellsCount]="unlockedColumnsCount"
|
|
11215
|
+
[isNew]="item.isNew"
|
|
11216
|
+
[attr.aria-expanded]="ariaRowExpanded(item)"
|
|
11212
11217
|
[ngClass]="rowClass({ dataItem: item.data, index: $any(item).index })"
|
|
11213
11218
|
class="k-table-row{{isOdd(item) ? ' k-alt k-table-alt-row' : ''}}"
|
|
11214
11219
|
[class.k-grid-edit-row]="isEditingRow(item)"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.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,24 +30,24 @@
|
|
|
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": "11.
|
|
34
|
-
"@progress/kendo-angular-common": "11.
|
|
35
|
-
"@progress/kendo-angular-dateinputs": "11.
|
|
36
|
-
"@progress/kendo-angular-dropdowns": "11.
|
|
37
|
-
"@progress/kendo-angular-excel-export": "11.
|
|
38
|
-
"@progress/kendo-angular-icons": "11.
|
|
39
|
-
"@progress/kendo-angular-inputs": "11.
|
|
40
|
-
"@progress/kendo-angular-intl": "11.
|
|
41
|
-
"@progress/kendo-angular-l10n": "11.
|
|
42
|
-
"@progress/kendo-angular-label": "11.
|
|
43
|
-
"@progress/kendo-angular-pdf-export": "11.
|
|
44
|
-
"@progress/kendo-angular-popup": "11.
|
|
33
|
+
"@progress/kendo-angular-buttons": "11.5.0-develop.2",
|
|
34
|
+
"@progress/kendo-angular-common": "11.5.0-develop.2",
|
|
35
|
+
"@progress/kendo-angular-dateinputs": "11.5.0-develop.2",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "11.5.0-develop.2",
|
|
37
|
+
"@progress/kendo-angular-excel-export": "11.5.0-develop.2",
|
|
38
|
+
"@progress/kendo-angular-icons": "11.5.0-develop.2",
|
|
39
|
+
"@progress/kendo-angular-inputs": "11.5.0-develop.2",
|
|
40
|
+
"@progress/kendo-angular-intl": "11.5.0-develop.2",
|
|
41
|
+
"@progress/kendo-angular-l10n": "11.5.0-develop.2",
|
|
42
|
+
"@progress/kendo-angular-label": "11.5.0-develop.2",
|
|
43
|
+
"@progress/kendo-angular-pdf-export": "11.5.0-develop.2",
|
|
44
|
+
"@progress/kendo-angular-popup": "11.5.0-develop.2",
|
|
45
45
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
46
|
-
"@progress/kendo-angular-listview": "11.
|
|
46
|
+
"@progress/kendo-angular-listview": "11.5.0-develop.2"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"tslib": "^2.3.1",
|
|
50
|
-
"@progress/kendo-angular-schematics": "11.
|
|
50
|
+
"@progress/kendo-angular-schematics": "11.5.0-develop.2",
|
|
51
51
|
"@progress/kendo-common": "^0.2.0",
|
|
52
52
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
53
53
|
},
|
|
@@ -65,6 +65,7 @@ export declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges
|
|
|
65
65
|
addRowLogicalIndex(): number;
|
|
66
66
|
logicalColIndex(column: any): number;
|
|
67
67
|
cellExpandable(item: any, column: any): any;
|
|
68
|
+
ariaRowExpanded(item: any): boolean;
|
|
68
69
|
ariaExpanded(item: any, column: any): any;
|
|
69
70
|
ariaSelected(item: any, column: any, columnIndex: number): any;
|
|
70
71
|
ngOnInit(): void;
|
|
@@ -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': '11.
|
|
7
|
+
'@progress/kendo-angular-treeview': '11.5.0-develop.2',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '11.
|
|
9
|
+
'@progress/kendo-angular-dialog': '11.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': '11.
|
|
13
|
+
'@progress/kendo-angular-navigation': '11.5.0-develop.2',
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|