@progress/kendo-angular-treelist 24.2.0-develop.9 → 24.2.1-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.
|
@@ -49,8 +49,8 @@ const packageMetadata = {
|
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCode: 'KENDOUIANGULAR',
|
|
51
51
|
productCodes: ['KENDOUIANGULAR'],
|
|
52
|
-
publishDate:
|
|
53
|
-
version: '24.2.
|
|
52
|
+
publishDate: 1782832732,
|
|
53
|
+
version: '24.2.1-develop.1',
|
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -6890,7 +6890,11 @@ class TableBodyComponent {
|
|
|
6890
6890
|
return this.columnsSpan;
|
|
6891
6891
|
}
|
|
6892
6892
|
get footerColumns() {
|
|
6893
|
-
|
|
6893
|
+
const colsToRender = Array.from(this.columns).reduce((cols, col) => {
|
|
6894
|
+
const newCols = (col instanceof SpanColumnComponent) ? Array.from(col.childColumns) : [col];
|
|
6895
|
+
return [...cols, ...newCols];
|
|
6896
|
+
}, []);
|
|
6897
|
+
return colsToRender;
|
|
6894
6898
|
}
|
|
6895
6899
|
logicalRowIndex(rowIndex) {
|
|
6896
6900
|
return 1 + rowIndex + this.headerOffset;
|
|
@@ -6899,7 +6903,11 @@ class TableBodyComponent {
|
|
|
6899
6903
|
return this.selection.isCellSelected(dataItem, column, columnIndex);
|
|
6900
6904
|
}
|
|
6901
6905
|
targetArgs(target, skipFocusable) {
|
|
6902
|
-
const
|
|
6906
|
+
const targetElementsResult = this.targetElements(target);
|
|
6907
|
+
if (!targetElementsResult) {
|
|
6908
|
+
return;
|
|
6909
|
+
}
|
|
6910
|
+
const { cell, row } = targetElementsResult;
|
|
6903
6911
|
if (cell && (!skipFocusable || target === cell || !isFocusableWithTabKey(target, false))) {
|
|
6904
6912
|
const index = columnCellIndex(cell, row.cells);
|
|
6905
6913
|
const column = this.columns.toArray()[index];
|
|
@@ -7040,6 +7048,9 @@ class TableBodyComponent {
|
|
|
7040
7048
|
if (eventArg.type === 'click' && isCheckbox && isCheckboxCell &&
|
|
7041
7049
|
this.selection.enabled && this.selection.rowSelection) {
|
|
7042
7050
|
const args = this.cellClickArgs(cell, row, eventArg);
|
|
7051
|
+
if (!args) {
|
|
7052
|
+
return;
|
|
7053
|
+
}
|
|
7043
7054
|
this.ngZone.run(() => {
|
|
7044
7055
|
this.selection.checkboxClick(args);
|
|
7045
7056
|
});
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.2.
|
|
10
|
+
"publishDate": 1782832732,
|
|
11
|
+
"version": "24.2.1-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "24.2.
|
|
3
|
+
"version": "24.2.1-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",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"package": {
|
|
40
40
|
"productName": "Kendo UI for Angular",
|
|
41
41
|
"productCode": "KENDOUIANGULAR",
|
|
42
|
-
"publishDate":
|
|
42
|
+
"publishDate": 1782832732,
|
|
43
43
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
@@ -52,26 +52,26 @@
|
|
|
52
52
|
"@progress/kendo-data-query": "^1.7.3",
|
|
53
53
|
"@progress/kendo-drawing": "^1.25.0",
|
|
54
54
|
"@progress/kendo-licensing": "^1.11.0",
|
|
55
|
-
"@progress/kendo-angular-buttons": "24.2.
|
|
56
|
-
"@progress/kendo-angular-common": "24.2.
|
|
57
|
-
"@progress/kendo-angular-dateinputs": "24.2.
|
|
58
|
-
"@progress/kendo-angular-dropdowns": "24.2.
|
|
59
|
-
"@progress/kendo-angular-excel-export": "24.2.
|
|
60
|
-
"@progress/kendo-angular-icons": "24.2.
|
|
61
|
-
"@progress/kendo-angular-inputs": "24.2.
|
|
62
|
-
"@progress/kendo-angular-intl": "24.2.
|
|
63
|
-
"@progress/kendo-angular-l10n": "24.2.
|
|
64
|
-
"@progress/kendo-angular-label": "24.2.
|
|
65
|
-
"@progress/kendo-angular-pager": "24.2.
|
|
66
|
-
"@progress/kendo-angular-pdf-export": "24.2.
|
|
67
|
-
"@progress/kendo-angular-popup": "24.2.
|
|
68
|
-
"@progress/kendo-angular-toolbar": "24.2.
|
|
69
|
-
"@progress/kendo-angular-utils": "24.2.
|
|
55
|
+
"@progress/kendo-angular-buttons": "24.2.1-develop.1",
|
|
56
|
+
"@progress/kendo-angular-common": "24.2.1-develop.1",
|
|
57
|
+
"@progress/kendo-angular-dateinputs": "24.2.1-develop.1",
|
|
58
|
+
"@progress/kendo-angular-dropdowns": "24.2.1-develop.1",
|
|
59
|
+
"@progress/kendo-angular-excel-export": "24.2.1-develop.1",
|
|
60
|
+
"@progress/kendo-angular-icons": "24.2.1-develop.1",
|
|
61
|
+
"@progress/kendo-angular-inputs": "24.2.1-develop.1",
|
|
62
|
+
"@progress/kendo-angular-intl": "24.2.1-develop.1",
|
|
63
|
+
"@progress/kendo-angular-l10n": "24.2.1-develop.1",
|
|
64
|
+
"@progress/kendo-angular-label": "24.2.1-develop.1",
|
|
65
|
+
"@progress/kendo-angular-pager": "24.2.1-develop.1",
|
|
66
|
+
"@progress/kendo-angular-pdf-export": "24.2.1-develop.1",
|
|
67
|
+
"@progress/kendo-angular-popup": "24.2.1-develop.1",
|
|
68
|
+
"@progress/kendo-angular-toolbar": "24.2.1-develop.1",
|
|
69
|
+
"@progress/kendo-angular-utils": "24.2.1-develop.1",
|
|
70
70
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"tslib": "^2.3.1",
|
|
74
|
-
"@progress/kendo-angular-schematics": "24.2.
|
|
74
|
+
"@progress/kendo-angular-schematics": "24.2.1-develop.1",
|
|
75
75
|
"@progress/kendo-common": "^1.0.1",
|
|
76
76
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
77
77
|
},
|
|
@@ -9,13 +9,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
|
11
11
|
// peer dep of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '24.2.
|
|
12
|
+
'@progress/kendo-angular-treeview': '24.2.1-develop.1',
|
|
13
13
|
// peer dependency of kendo-angular-inputs
|
|
14
|
-
'@progress/kendo-angular-dialog': '24.2.
|
|
14
|
+
'@progress/kendo-angular-dialog': '24.2.1-develop.1',
|
|
15
15
|
// peer dependency of kendo-angular-icons
|
|
16
16
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
17
17
|
// peer dependency of kendo-angular-dateinputs
|
|
18
|
-
'@progress/kendo-angular-navigation': '24.2.
|
|
18
|
+
'@progress/kendo-angular-navigation': '24.2.1-develop.1',
|
|
19
19
|
} });
|
|
20
20
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
21
21
|
}
|