@progress/kendo-angular-treelist 23.1.0-develop.2 → 23.1.0-develop.3
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.
|
@@ -50,7 +50,7 @@ const packageMetadata = {
|
|
|
50
50
|
productCode: 'KENDOUIANGULAR',
|
|
51
51
|
productCodes: ['KENDOUIANGULAR'],
|
|
52
52
|
publishDate: 0,
|
|
53
|
-
version: '23.1.0-develop.
|
|
53
|
+
version: '23.1.0-develop.3',
|
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -1015,6 +1015,7 @@ class SpanColumnComponent extends ColumnBase {
|
|
|
1015
1015
|
* added for backwards compitability
|
|
1016
1016
|
*/
|
|
1017
1017
|
set width(_value) {
|
|
1018
|
+
// Intentionally empty - width is computed from child columns
|
|
1018
1019
|
}
|
|
1019
1020
|
get width() {
|
|
1020
1021
|
return this.childColumns.reduce((total, column) => total + column.width, 0);
|
|
@@ -1442,7 +1443,8 @@ class ViewRange {
|
|
|
1442
1443
|
return true;
|
|
1443
1444
|
}
|
|
1444
1445
|
includeParents(_children) {
|
|
1445
|
-
//
|
|
1446
|
+
// Intentionally empty - basic TreeList handles parent inclusion differently,
|
|
1447
|
+
// while PagerRange needs to mark parents in range when child is in range.
|
|
1446
1448
|
}
|
|
1447
1449
|
}
|
|
1448
1450
|
function isPagerSettings(pageable) {
|
|
@@ -3119,7 +3121,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
3119
3121
|
type: Injectable
|
|
3120
3122
|
}], ctorParameters: () => [{ type: i1.PopupService }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: ScrollSyncService }, { type: i1$1.LocalizationService }] });
|
|
3121
3123
|
|
|
3122
|
-
/* eslint-disable no-bitwise */
|
|
3123
3124
|
/**
|
|
3124
3125
|
* @hidden
|
|
3125
3126
|
*/
|
|
@@ -6030,7 +6031,6 @@ const IGNORE_CONTAINER_CLASSES = 'k-treelist-ignore-click';
|
|
|
6030
6031
|
*/
|
|
6031
6032
|
const DRAG_HANDLE_CLASS = 'k-drag-cell';
|
|
6032
6033
|
|
|
6033
|
-
/* eslint-disable @angular-eslint/pipe-prefix */
|
|
6034
6034
|
/**
|
|
6035
6035
|
* @hidden
|
|
6036
6036
|
*/
|
|
@@ -6260,7 +6260,6 @@ class FieldAccessorPipe {
|
|
|
6260
6260
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: FieldAccessorPipe, decorators: [{
|
|
6261
6261
|
type: Pipe,
|
|
6262
6262
|
args: [{
|
|
6263
|
-
// eslint-disable-next-line @angular-eslint/pipe-prefix
|
|
6264
6263
|
name: 'valueOf',
|
|
6265
6264
|
pure: false,
|
|
6266
6265
|
standalone: true
|
|
@@ -8282,7 +8281,6 @@ class ListComponent {
|
|
|
8282
8281
|
}
|
|
8283
8282
|
updateViewportColumns(range) {
|
|
8284
8283
|
const columns = this.columns.nonLockedLeafColumns.toArray();
|
|
8285
|
-
// eslint-disable-next-line prefer-const
|
|
8286
8284
|
let { startIdx, endIdx, offset } = range || this.calculateViewportColumns();
|
|
8287
8285
|
const start = Math.max(0, startIdx - bufferSize);
|
|
8288
8286
|
const end = Math.min(endIdx + bufferSize, columns.length - 1);
|
|
@@ -15270,7 +15268,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
15270
15268
|
}]
|
|
15271
15269
|
}], ctorParameters: () => [{ type: i1$6.CheckBoxComponent }, { type: i0.ElementRef }, { type: SelectionService }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }] });
|
|
15272
15270
|
|
|
15273
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
15274
15271
|
const mergeObjects = (...args) => Object.assign.apply(null, [{}].concat(args));
|
|
15275
15272
|
const directions = initialDirection => initialDirection === "asc" ? ["asc", "desc"] : ["desc", "asc"];
|
|
15276
15273
|
/**
|
|
@@ -16201,7 +16198,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
16201
16198
|
args: [ColumnMenuComponent]
|
|
16202
16199
|
}] } });
|
|
16203
16200
|
|
|
16204
|
-
/* eslint-disable @typescript-eslint/no-inferrable-types */
|
|
16205
16201
|
/**
|
|
16206
16202
|
* @hidden
|
|
16207
16203
|
*/
|
|
@@ -16846,7 +16842,6 @@ const normalizeSettings = ({ buttonCount = 10, info = true, type = 'numeric', pa
|
|
|
16846
16842
|
*/
|
|
16847
16843
|
const normalize = (settings) => normalizeSettings(settings === true ? {} : settings);
|
|
16848
16844
|
|
|
16849
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
16850
16845
|
const createControl = (source) => (acc, key) => {
|
|
16851
16846
|
acc[key] = new FormControl(source[key]);
|
|
16852
16847
|
return acc;
|
|
@@ -18349,7 +18344,6 @@ class TreeListComponent {
|
|
|
18349
18344
|
.changes.subscribe(this.emitCRUDEvent.bind(this)));
|
|
18350
18345
|
}
|
|
18351
18346
|
emitCRUDEvent(args) {
|
|
18352
|
-
// eslint-disable-next-line prefer-const
|
|
18353
18347
|
let { action, formGroup, dataItem } = args;
|
|
18354
18348
|
if (action !== 'add' && !dataItem) {
|
|
18355
18349
|
dataItem = formGroup.value;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.1.0-develop.
|
|
10
|
+
"publishDate": 1771356068,
|
|
11
|
+
"version": "23.1.0-develop.3",
|
|
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": "23.1.0-develop.
|
|
3
|
+
"version": "23.1.0-develop.3",
|
|
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",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"package": {
|
|
25
25
|
"productName": "Kendo UI for Angular",
|
|
26
26
|
"productCode": "KENDOUIANGULAR",
|
|
27
|
-
"publishDate":
|
|
27
|
+
"publishDate": 1771356068,
|
|
28
28
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
@@ -37,26 +37,26 @@
|
|
|
37
37
|
"@progress/kendo-data-query": "^1.7.3",
|
|
38
38
|
"@progress/kendo-drawing": "^1.24.0",
|
|
39
39
|
"@progress/kendo-licensing": "^1.10.0",
|
|
40
|
-
"@progress/kendo-angular-buttons": "23.1.0-develop.
|
|
41
|
-
"@progress/kendo-angular-common": "23.1.0-develop.
|
|
42
|
-
"@progress/kendo-angular-dateinputs": "23.1.0-develop.
|
|
43
|
-
"@progress/kendo-angular-dropdowns": "23.1.0-develop.
|
|
44
|
-
"@progress/kendo-angular-excel-export": "23.1.0-develop.
|
|
45
|
-
"@progress/kendo-angular-icons": "23.1.0-develop.
|
|
46
|
-
"@progress/kendo-angular-inputs": "23.1.0-develop.
|
|
47
|
-
"@progress/kendo-angular-intl": "23.1.0-develop.
|
|
48
|
-
"@progress/kendo-angular-l10n": "23.1.0-develop.
|
|
49
|
-
"@progress/kendo-angular-label": "23.1.0-develop.
|
|
50
|
-
"@progress/kendo-angular-pager": "23.1.0-develop.
|
|
51
|
-
"@progress/kendo-angular-pdf-export": "23.1.0-develop.
|
|
52
|
-
"@progress/kendo-angular-popup": "23.1.0-develop.
|
|
53
|
-
"@progress/kendo-angular-toolbar": "23.1.0-develop.
|
|
54
|
-
"@progress/kendo-angular-utils": "23.1.0-develop.
|
|
40
|
+
"@progress/kendo-angular-buttons": "23.1.0-develop.3",
|
|
41
|
+
"@progress/kendo-angular-common": "23.1.0-develop.3",
|
|
42
|
+
"@progress/kendo-angular-dateinputs": "23.1.0-develop.3",
|
|
43
|
+
"@progress/kendo-angular-dropdowns": "23.1.0-develop.3",
|
|
44
|
+
"@progress/kendo-angular-excel-export": "23.1.0-develop.3",
|
|
45
|
+
"@progress/kendo-angular-icons": "23.1.0-develop.3",
|
|
46
|
+
"@progress/kendo-angular-inputs": "23.1.0-develop.3",
|
|
47
|
+
"@progress/kendo-angular-intl": "23.1.0-develop.3",
|
|
48
|
+
"@progress/kendo-angular-l10n": "23.1.0-develop.3",
|
|
49
|
+
"@progress/kendo-angular-label": "23.1.0-develop.3",
|
|
50
|
+
"@progress/kendo-angular-pager": "23.1.0-develop.3",
|
|
51
|
+
"@progress/kendo-angular-pdf-export": "23.1.0-develop.3",
|
|
52
|
+
"@progress/kendo-angular-popup": "23.1.0-develop.3",
|
|
53
|
+
"@progress/kendo-angular-toolbar": "23.1.0-develop.3",
|
|
54
|
+
"@progress/kendo-angular-utils": "23.1.0-develop.3",
|
|
55
55
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"tslib": "^2.3.1",
|
|
59
|
-
"@progress/kendo-angular-schematics": "23.1.0-develop.
|
|
59
|
+
"@progress/kendo-angular-schematics": "23.1.0-develop.3",
|
|
60
60
|
"@progress/kendo-common": "^1.0.1",
|
|
61
61
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
62
62
|
},
|
|
@@ -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': '23.1.0-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.1.0-develop.3',
|
|
13
13
|
// peer dependency of kendo-angular-inputs
|
|
14
|
-
'@progress/kendo-angular-dialog': '23.1.0-develop.
|
|
14
|
+
'@progress/kendo-angular-dialog': '23.1.0-develop.3',
|
|
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': '23.1.0-develop.
|
|
18
|
+
'@progress/kendo-angular-navigation': '23.1.0-develop.3',
|
|
19
19
|
} });
|
|
20
20
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
21
21
|
}
|