@progress/kendo-angular-grid 16.11.0-develop.16 → 16.11.0-develop.18
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/header/header.component.mjs +20 -5
- package/fesm2015/progress-kendo-angular-grid.mjs +20 -5
- package/fesm2020/progress-kendo-angular-grid.mjs +20 -5
- package/package.json +16 -16
- package/rendering/header/header.component.d.ts +4 -2
- package/schematics/ngAdd/index.js +4 -4
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-grid',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.11.0-develop.
|
|
12
|
+
publishDate: 1728308995,
|
|
13
|
+
version: '16.11.0-develop.18',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ColumnInfoService } from './../../common/column-info.service';
|
|
6
|
-
import { Component, ChangeDetectorRef, HostBinding, Input, QueryList, ViewChildren, TemplateRef } from '@angular/core';
|
|
6
|
+
import { Component, ChangeDetectorRef, HostBinding, Input, QueryList, ViewChildren, TemplateRef, NgZone } from '@angular/core';
|
|
7
7
|
import { Subscription, of, merge } from "rxjs";
|
|
8
8
|
import { filter, map, switchMap, tap, takeUntil } from 'rxjs/operators';
|
|
9
9
|
import { isColumnComponent } from '../../columns/column.component';
|
|
@@ -16,7 +16,7 @@ import { columnsToRender, sortColumns, isInSpanColumn } from "../../columns/colu
|
|
|
16
16
|
import { SinglePopupService } from '../../common/single-popup.service';
|
|
17
17
|
import { hasFilterMenu, hasFilterRow } from '../../filtering/filterable';
|
|
18
18
|
import { IdService } from '../../common/id.service';
|
|
19
|
-
import { DraggableDirective, Keys, TemplateContextDirective } from '@progress/kendo-angular-common';
|
|
19
|
+
import { DraggableDirective, isDocumentAvailable, Keys, TemplateContextDirective } from '@progress/kendo-angular-common';
|
|
20
20
|
import { DropTargetDirective } from '../../dragdrop/drop-target.directive';
|
|
21
21
|
import { DraggableColumnDirective } from '../../dragdrop/draggable-column.directive';
|
|
22
22
|
import { DragHintService } from '../../dragdrop/drag-hint.service';
|
|
@@ -76,7 +76,7 @@ const modifierKeys = ['alt', 'ctrl', 'shift', 'meta'];
|
|
|
76
76
|
* @hidden
|
|
77
77
|
*/
|
|
78
78
|
export class HeaderComponent {
|
|
79
|
-
constructor(popupService, hint, cue, reorderService, idService, sortService, columnInfoService, cd, contextService, navigationService) {
|
|
79
|
+
constructor(popupService, hint, cue, reorderService, idService, sortService, columnInfoService, cd, contextService, navigationService, zone) {
|
|
80
80
|
this.popupService = popupService;
|
|
81
81
|
this.hint = hint;
|
|
82
82
|
this.cue = cue;
|
|
@@ -87,6 +87,7 @@ export class HeaderComponent {
|
|
|
87
87
|
this.cd = cd;
|
|
88
88
|
this.contextService = contextService;
|
|
89
89
|
this.navigationService = navigationService;
|
|
90
|
+
this.zone = zone;
|
|
90
91
|
this.columns = [];
|
|
91
92
|
this.groups = [];
|
|
92
93
|
this.sort = new Array();
|
|
@@ -104,6 +105,7 @@ export class HeaderComponent {
|
|
|
104
105
|
this.sortAscSmallIcon = sortAscSmallIcon;
|
|
105
106
|
this.sortDescSmallIcon = sortDescSmallIcon;
|
|
106
107
|
this.subscription = new Subscription();
|
|
108
|
+
this.stopSorting = false;
|
|
107
109
|
}
|
|
108
110
|
get headerClass() {
|
|
109
111
|
return !this.scrollable;
|
|
@@ -125,6 +127,10 @@ export class HeaderComponent {
|
|
|
125
127
|
return column;
|
|
126
128
|
}
|
|
127
129
|
onSortClick(column, event, link) {
|
|
130
|
+
if (this.stopSorting) {
|
|
131
|
+
this.stopSorting = false;
|
|
132
|
+
return;
|
|
133
|
+
}
|
|
128
134
|
const target = event.target;
|
|
129
135
|
if (column.headerTemplateRef && target !== link) {
|
|
130
136
|
const hasFocusableParent = Boolean(closestInScope(target, isFocusable, link));
|
|
@@ -312,6 +318,15 @@ export class HeaderComponent {
|
|
|
312
318
|
return !isNullOrEmptyString(column.field) && column.filterable === true;
|
|
313
319
|
}
|
|
314
320
|
canDrop(draggable, target) {
|
|
321
|
+
isDocumentAvailable() && this.zone.runOutsideAngular(() => {
|
|
322
|
+
document.addEventListener('pointerup', e => {
|
|
323
|
+
this.stopSorting = true;
|
|
324
|
+
setTimeout(() => this.stopSorting = false);
|
|
325
|
+
}, {
|
|
326
|
+
once: true,
|
|
327
|
+
capture: true
|
|
328
|
+
});
|
|
329
|
+
});
|
|
315
330
|
return this.reorderable && rules({ draggable, target });
|
|
316
331
|
}
|
|
317
332
|
shouldActivate(column) {
|
|
@@ -451,7 +466,7 @@ export class HeaderComponent {
|
|
|
451
466
|
});
|
|
452
467
|
}
|
|
453
468
|
}
|
|
454
|
-
HeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderComponent, deps: [{ token: i1.SinglePopupService }, { token: i2.DragHintService }, { token: i3.DropCueService }, { token: i4.ColumnReorderService }, { token: i5.IdService }, { token: i6.SortService }, { token: i7.ColumnInfoService }, { token: i0.ChangeDetectorRef }, { token: i8.ContextService }, { token: i9.NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
469
|
+
HeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderComponent, deps: [{ token: i1.SinglePopupService }, { token: i2.DragHintService }, { token: i3.DropCueService }, { token: i4.ColumnReorderService }, { token: i5.IdService }, { token: i6.SortService }, { token: i7.ColumnInfoService }, { token: i0.ChangeDetectorRef }, { token: i8.ContextService }, { token: i9.NavigationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
455
470
|
HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: HeaderComponent, isStandalone: true, selector: "[kendoGridHeader]", inputs: { totalColumnLevels: "totalColumnLevels", columns: "columns", groups: "groups", detailTemplate: "detailTemplate", scrollable: "scrollable", filterable: "filterable", sort: "sort", filter: "filter", sortable: "sortable", groupable: "groupable", lockedColumnsCount: "lockedColumnsCount", resizable: "resizable", reorderable: "reorderable", columnMenu: "columnMenu", columnMenuTemplate: "columnMenuTemplate", totalColumnsCount: "totalColumnsCount", totalColumns: "totalColumns", tabIndex: "tabIndex", size: "size" }, host: { properties: { "class.k-grid-header": "this.headerClass", "class.k-table-thead": "this.hostClass" } }, viewQueries: [{ propertyName: "dropTargets", predicate: DropTargetDirective, descendants: true }, { propertyName: "filterMenus", predicate: FilterMenuComponent, descendants: true }, { propertyName: "columnMenus", predicate: ColumnMenuComponent, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
456
471
|
<ng-container>
|
|
457
472
|
<tr *ngFor="let i of columnLevels; let levelIndex = index"
|
|
@@ -907,7 +922,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
907
922
|
FocusableDirective, ColumnHandleDirective, FilterRowComponent
|
|
908
923
|
]
|
|
909
924
|
}]
|
|
910
|
-
}], ctorParameters: function () { return [{ type: i1.SinglePopupService }, { type: i2.DragHintService }, { type: i3.DropCueService }, { type: i4.ColumnReorderService }, { type: i5.IdService }, { type: i6.SortService }, { type: i7.ColumnInfoService }, { type: i0.ChangeDetectorRef }, { type: i8.ContextService }, { type: i9.NavigationService }]; }, propDecorators: { totalColumnLevels: [{
|
|
925
|
+
}], ctorParameters: function () { return [{ type: i1.SinglePopupService }, { type: i2.DragHintService }, { type: i3.DropCueService }, { type: i4.ColumnReorderService }, { type: i5.IdService }, { type: i6.SortService }, { type: i7.ColumnInfoService }, { type: i0.ChangeDetectorRef }, { type: i8.ContextService }, { type: i9.NavigationService }, { type: i0.NgZone }]; }, propDecorators: { totalColumnLevels: [{
|
|
911
926
|
type: Input
|
|
912
927
|
}], columns: [{
|
|
913
928
|
type: Input
|
|
@@ -15065,7 +15065,7 @@ const modifierKeys = ['alt', 'ctrl', 'shift', 'meta'];
|
|
|
15065
15065
|
* @hidden
|
|
15066
15066
|
*/
|
|
15067
15067
|
class HeaderComponent {
|
|
15068
|
-
constructor(popupService, hint, cue, reorderService, idService, sortService, columnInfoService, cd, contextService, navigationService) {
|
|
15068
|
+
constructor(popupService, hint, cue, reorderService, idService, sortService, columnInfoService, cd, contextService, navigationService, zone) {
|
|
15069
15069
|
this.popupService = popupService;
|
|
15070
15070
|
this.hint = hint;
|
|
15071
15071
|
this.cue = cue;
|
|
@@ -15076,6 +15076,7 @@ class HeaderComponent {
|
|
|
15076
15076
|
this.cd = cd;
|
|
15077
15077
|
this.contextService = contextService;
|
|
15078
15078
|
this.navigationService = navigationService;
|
|
15079
|
+
this.zone = zone;
|
|
15079
15080
|
this.columns = [];
|
|
15080
15081
|
this.groups = [];
|
|
15081
15082
|
this.sort = new Array();
|
|
@@ -15093,6 +15094,7 @@ class HeaderComponent {
|
|
|
15093
15094
|
this.sortAscSmallIcon = sortAscSmallIcon;
|
|
15094
15095
|
this.sortDescSmallIcon = sortDescSmallIcon;
|
|
15095
15096
|
this.subscription = new Subscription();
|
|
15097
|
+
this.stopSorting = false;
|
|
15096
15098
|
}
|
|
15097
15099
|
get headerClass() {
|
|
15098
15100
|
return !this.scrollable;
|
|
@@ -15114,6 +15116,10 @@ class HeaderComponent {
|
|
|
15114
15116
|
return column;
|
|
15115
15117
|
}
|
|
15116
15118
|
onSortClick(column, event, link) {
|
|
15119
|
+
if (this.stopSorting) {
|
|
15120
|
+
this.stopSorting = false;
|
|
15121
|
+
return;
|
|
15122
|
+
}
|
|
15117
15123
|
const target = event.target;
|
|
15118
15124
|
if (column.headerTemplateRef && target !== link) {
|
|
15119
15125
|
const hasFocusableParent = Boolean(closestInScope(target, isFocusable, link));
|
|
@@ -15301,6 +15307,15 @@ class HeaderComponent {
|
|
|
15301
15307
|
return !isNullOrEmptyString(column.field) && column.filterable === true;
|
|
15302
15308
|
}
|
|
15303
15309
|
canDrop(draggable, target) {
|
|
15310
|
+
isDocumentAvailable() && this.zone.runOutsideAngular(() => {
|
|
15311
|
+
document.addEventListener('pointerup', e => {
|
|
15312
|
+
this.stopSorting = true;
|
|
15313
|
+
setTimeout(() => this.stopSorting = false);
|
|
15314
|
+
}, {
|
|
15315
|
+
once: true,
|
|
15316
|
+
capture: true
|
|
15317
|
+
});
|
|
15318
|
+
});
|
|
15304
15319
|
return this.reorderable && rules({ draggable, target });
|
|
15305
15320
|
}
|
|
15306
15321
|
shouldActivate(column) {
|
|
@@ -15440,7 +15455,7 @@ class HeaderComponent {
|
|
|
15440
15455
|
});
|
|
15441
15456
|
}
|
|
15442
15457
|
}
|
|
15443
|
-
HeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderComponent, deps: [{ token: SinglePopupService }, { token: DragHintService }, { token: DropCueService }, { token: ColumnReorderService }, { token: IdService }, { token: SortService }, { token: ColumnInfoService }, { token: i0.ChangeDetectorRef }, { token: ContextService }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
15458
|
+
HeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderComponent, deps: [{ token: SinglePopupService }, { token: DragHintService }, { token: DropCueService }, { token: ColumnReorderService }, { token: IdService }, { token: SortService }, { token: ColumnInfoService }, { token: i0.ChangeDetectorRef }, { token: ContextService }, { token: NavigationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
15444
15459
|
HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: HeaderComponent, isStandalone: true, selector: "[kendoGridHeader]", inputs: { totalColumnLevels: "totalColumnLevels", columns: "columns", groups: "groups", detailTemplate: "detailTemplate", scrollable: "scrollable", filterable: "filterable", sort: "sort", filter: "filter", sortable: "sortable", groupable: "groupable", lockedColumnsCount: "lockedColumnsCount", resizable: "resizable", reorderable: "reorderable", columnMenu: "columnMenu", columnMenuTemplate: "columnMenuTemplate", totalColumnsCount: "totalColumnsCount", totalColumns: "totalColumns", tabIndex: "tabIndex", size: "size" }, host: { properties: { "class.k-grid-header": "this.headerClass", "class.k-table-thead": "this.hostClass" } }, viewQueries: [{ propertyName: "dropTargets", predicate: DropTargetDirective, descendants: true }, { propertyName: "filterMenus", predicate: FilterMenuComponent, descendants: true }, { propertyName: "columnMenus", predicate: ColumnMenuComponent, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
15445
15460
|
<ng-container>
|
|
15446
15461
|
<tr *ngFor="let i of columnLevels; let levelIndex = index"
|
|
@@ -15896,7 +15911,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15896
15911
|
FocusableDirective, ColumnHandleDirective, FilterRowComponent
|
|
15897
15912
|
]
|
|
15898
15913
|
}]
|
|
15899
|
-
}], ctorParameters: function () { return [{ type: SinglePopupService }, { type: DragHintService }, { type: DropCueService }, { type: ColumnReorderService }, { type: IdService }, { type: SortService }, { type: ColumnInfoService }, { type: i0.ChangeDetectorRef }, { type: ContextService }, { type: NavigationService }]; }, propDecorators: { totalColumnLevels: [{
|
|
15914
|
+
}], ctorParameters: function () { return [{ type: SinglePopupService }, { type: DragHintService }, { type: DropCueService }, { type: ColumnReorderService }, { type: IdService }, { type: SortService }, { type: ColumnInfoService }, { type: i0.ChangeDetectorRef }, { type: ContextService }, { type: NavigationService }, { type: i0.NgZone }]; }, propDecorators: { totalColumnLevels: [{
|
|
15900
15915
|
type: Input
|
|
15901
15916
|
}], columns: [{
|
|
15902
15917
|
type: Input
|
|
@@ -19720,8 +19735,8 @@ const packageMetadata = {
|
|
|
19720
19735
|
name: '@progress/kendo-angular-grid',
|
|
19721
19736
|
productName: 'Kendo UI for Angular',
|
|
19722
19737
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
19723
|
-
publishDate:
|
|
19724
|
-
version: '16.11.0-develop.
|
|
19738
|
+
publishDate: 1728308995,
|
|
19739
|
+
version: '16.11.0-develop.18',
|
|
19725
19740
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
19726
19741
|
};
|
|
19727
19742
|
|
|
@@ -15005,7 +15005,7 @@ const modifierKeys = ['alt', 'ctrl', 'shift', 'meta'];
|
|
|
15005
15005
|
* @hidden
|
|
15006
15006
|
*/
|
|
15007
15007
|
class HeaderComponent {
|
|
15008
|
-
constructor(popupService, hint, cue, reorderService, idService, sortService, columnInfoService, cd, contextService, navigationService) {
|
|
15008
|
+
constructor(popupService, hint, cue, reorderService, idService, sortService, columnInfoService, cd, contextService, navigationService, zone) {
|
|
15009
15009
|
this.popupService = popupService;
|
|
15010
15010
|
this.hint = hint;
|
|
15011
15011
|
this.cue = cue;
|
|
@@ -15016,6 +15016,7 @@ class HeaderComponent {
|
|
|
15016
15016
|
this.cd = cd;
|
|
15017
15017
|
this.contextService = contextService;
|
|
15018
15018
|
this.navigationService = navigationService;
|
|
15019
|
+
this.zone = zone;
|
|
15019
15020
|
this.columns = [];
|
|
15020
15021
|
this.groups = [];
|
|
15021
15022
|
this.sort = new Array();
|
|
@@ -15033,6 +15034,7 @@ class HeaderComponent {
|
|
|
15033
15034
|
this.sortAscSmallIcon = sortAscSmallIcon;
|
|
15034
15035
|
this.sortDescSmallIcon = sortDescSmallIcon;
|
|
15035
15036
|
this.subscription = new Subscription();
|
|
15037
|
+
this.stopSorting = false;
|
|
15036
15038
|
}
|
|
15037
15039
|
get headerClass() {
|
|
15038
15040
|
return !this.scrollable;
|
|
@@ -15054,6 +15056,10 @@ class HeaderComponent {
|
|
|
15054
15056
|
return column;
|
|
15055
15057
|
}
|
|
15056
15058
|
onSortClick(column, event, link) {
|
|
15059
|
+
if (this.stopSorting) {
|
|
15060
|
+
this.stopSorting = false;
|
|
15061
|
+
return;
|
|
15062
|
+
}
|
|
15057
15063
|
const target = event.target;
|
|
15058
15064
|
if (column.headerTemplateRef && target !== link) {
|
|
15059
15065
|
const hasFocusableParent = Boolean(closestInScope(target, isFocusable, link));
|
|
@@ -15241,6 +15247,15 @@ class HeaderComponent {
|
|
|
15241
15247
|
return !isNullOrEmptyString(column.field) && column.filterable === true;
|
|
15242
15248
|
}
|
|
15243
15249
|
canDrop(draggable, target) {
|
|
15250
|
+
isDocumentAvailable() && this.zone.runOutsideAngular(() => {
|
|
15251
|
+
document.addEventListener('pointerup', e => {
|
|
15252
|
+
this.stopSorting = true;
|
|
15253
|
+
setTimeout(() => this.stopSorting = false);
|
|
15254
|
+
}, {
|
|
15255
|
+
once: true,
|
|
15256
|
+
capture: true
|
|
15257
|
+
});
|
|
15258
|
+
});
|
|
15244
15259
|
return this.reorderable && rules({ draggable, target });
|
|
15245
15260
|
}
|
|
15246
15261
|
shouldActivate(column) {
|
|
@@ -15380,7 +15395,7 @@ class HeaderComponent {
|
|
|
15380
15395
|
});
|
|
15381
15396
|
}
|
|
15382
15397
|
}
|
|
15383
|
-
HeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderComponent, deps: [{ token: SinglePopupService }, { token: DragHintService }, { token: DropCueService }, { token: ColumnReorderService }, { token: IdService }, { token: SortService }, { token: ColumnInfoService }, { token: i0.ChangeDetectorRef }, { token: ContextService }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
15398
|
+
HeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderComponent, deps: [{ token: SinglePopupService }, { token: DragHintService }, { token: DropCueService }, { token: ColumnReorderService }, { token: IdService }, { token: SortService }, { token: ColumnInfoService }, { token: i0.ChangeDetectorRef }, { token: ContextService }, { token: NavigationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
15384
15399
|
HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: HeaderComponent, isStandalone: true, selector: "[kendoGridHeader]", inputs: { totalColumnLevels: "totalColumnLevels", columns: "columns", groups: "groups", detailTemplate: "detailTemplate", scrollable: "scrollable", filterable: "filterable", sort: "sort", filter: "filter", sortable: "sortable", groupable: "groupable", lockedColumnsCount: "lockedColumnsCount", resizable: "resizable", reorderable: "reorderable", columnMenu: "columnMenu", columnMenuTemplate: "columnMenuTemplate", totalColumnsCount: "totalColumnsCount", totalColumns: "totalColumns", tabIndex: "tabIndex", size: "size" }, host: { properties: { "class.k-grid-header": "this.headerClass", "class.k-table-thead": "this.hostClass" } }, viewQueries: [{ propertyName: "dropTargets", predicate: DropTargetDirective, descendants: true }, { propertyName: "filterMenus", predicate: FilterMenuComponent, descendants: true }, { propertyName: "columnMenus", predicate: ColumnMenuComponent, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
15385
15400
|
<ng-container>
|
|
15386
15401
|
<tr *ngFor="let i of columnLevels; let levelIndex = index"
|
|
@@ -15836,7 +15851,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15836
15851
|
FocusableDirective, ColumnHandleDirective, FilterRowComponent
|
|
15837
15852
|
]
|
|
15838
15853
|
}]
|
|
15839
|
-
}], ctorParameters: function () { return [{ type: SinglePopupService }, { type: DragHintService }, { type: DropCueService }, { type: ColumnReorderService }, { type: IdService }, { type: SortService }, { type: ColumnInfoService }, { type: i0.ChangeDetectorRef }, { type: ContextService }, { type: NavigationService }]; }, propDecorators: { totalColumnLevels: [{
|
|
15854
|
+
}], ctorParameters: function () { return [{ type: SinglePopupService }, { type: DragHintService }, { type: DropCueService }, { type: ColumnReorderService }, { type: IdService }, { type: SortService }, { type: ColumnInfoService }, { type: i0.ChangeDetectorRef }, { type: ContextService }, { type: NavigationService }, { type: i0.NgZone }]; }, propDecorators: { totalColumnLevels: [{
|
|
15840
15855
|
type: Input
|
|
15841
15856
|
}], columns: [{
|
|
15842
15857
|
type: Input
|
|
@@ -19615,8 +19630,8 @@ const packageMetadata = {
|
|
|
19615
19630
|
name: '@progress/kendo-angular-grid',
|
|
19616
19631
|
productName: 'Kendo UI for Angular',
|
|
19617
19632
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
19618
|
-
publishDate:
|
|
19619
|
-
version: '16.11.0-develop.
|
|
19633
|
+
publishDate: 1728308995,
|
|
19634
|
+
version: '16.11.0-develop.18',
|
|
19620
19635
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
19621
19636
|
};
|
|
19622
19637
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "16.11.0-develop.
|
|
3
|
+
"version": "16.11.0-develop.18",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -33,25 +33,25 @@
|
|
|
33
33
|
"@progress/kendo-data-query": "^1.0.0",
|
|
34
34
|
"@progress/kendo-drawing": "^1.20.4",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "16.11.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "16.11.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "16.11.0-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "16.11.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "16.11.0-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "16.11.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "16.11.0-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "16.11.0-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "16.11.0-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "16.11.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "16.11.0-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "16.11.0-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "16.11.0-develop.
|
|
49
|
-
"@progress/kendo-angular-utils": "16.11.0-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "16.11.0-develop.18",
|
|
37
|
+
"@progress/kendo-angular-common": "16.11.0-develop.18",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "16.11.0-develop.18",
|
|
39
|
+
"@progress/kendo-angular-layout": "16.11.0-develop.18",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "16.11.0-develop.18",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "16.11.0-develop.18",
|
|
42
|
+
"@progress/kendo-angular-icons": "16.11.0-develop.18",
|
|
43
|
+
"@progress/kendo-angular-inputs": "16.11.0-develop.18",
|
|
44
|
+
"@progress/kendo-angular-intl": "16.11.0-develop.18",
|
|
45
|
+
"@progress/kendo-angular-l10n": "16.11.0-develop.18",
|
|
46
|
+
"@progress/kendo-angular-label": "16.11.0-develop.18",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "16.11.0-develop.18",
|
|
48
|
+
"@progress/kendo-angular-popup": "16.11.0-develop.18",
|
|
49
|
+
"@progress/kendo-angular-utils": "16.11.0-develop.18",
|
|
50
50
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1",
|
|
54
|
-
"@progress/kendo-angular-schematics": "16.11.0-develop.
|
|
54
|
+
"@progress/kendo-angular-schematics": "16.11.0-develop.18",
|
|
55
55
|
"@progress/kendo-common": "^0.2.0",
|
|
56
56
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
57
57
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ColumnInfoService } from './../../common/column-info.service';
|
|
6
|
-
import { ChangeDetectorRef, AfterViewInit, OnChanges, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
6
|
+
import { ChangeDetectorRef, AfterViewInit, OnChanges, OnDestroy, OnInit, QueryList, TemplateRef, NgZone } from '@angular/core';
|
|
7
7
|
import { ColumnComponent } from '../../columns/column.component';
|
|
8
8
|
import { ColumnBase } from '../../columns/column-base';
|
|
9
9
|
import { DetailTemplateDirective } from '../details/detail-template.directive';
|
|
@@ -42,6 +42,7 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
|
42
42
|
private cd;
|
|
43
43
|
private contextService;
|
|
44
44
|
private navigationService;
|
|
45
|
+
private zone;
|
|
45
46
|
/**
|
|
46
47
|
* @hidden
|
|
47
48
|
*/
|
|
@@ -77,8 +78,9 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
|
77
78
|
sortDescSmallIcon: SVGIcon;
|
|
78
79
|
private subscription;
|
|
79
80
|
private targetSubscription;
|
|
81
|
+
private stopSorting;
|
|
80
82
|
private _leafColumns;
|
|
81
|
-
constructor(popupService: SinglePopupService, hint: DragHintService, cue: DropCueService, reorderService: ColumnReorderService, idService: IdService, sortService: SortService, columnInfoService: ColumnInfoService, cd: ChangeDetectorRef, contextService: ContextService, navigationService: NavigationService);
|
|
83
|
+
constructor(popupService: SinglePopupService, hint: DragHintService, cue: DropCueService, reorderService: ColumnReorderService, idService: IdService, sortService: SortService, columnInfoService: ColumnInfoService, cd: ChangeDetectorRef, contextService: ContextService, navigationService: NavigationService, zone: NgZone);
|
|
82
84
|
sortColumn(descriptor: SortDescriptor[]): void;
|
|
83
85
|
getColumnComponent(column: ColumnBase): ColumnComponent;
|
|
84
86
|
onSortClick(column: ColumnComponent, event: MouseEvent, link: Element): void;
|
|
@@ -4,14 +4,14 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
6
6
|
// peer deps of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '16.11.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '16.11.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '16.11.0-develop.18',
|
|
8
|
+
'@progress/kendo-angular-navigation': '16.11.0-develop.18',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '16.11.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '16.11.0-develop.18',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^3.0.0',
|
|
13
13
|
// peer dependency of kendo-angular-layout
|
|
14
|
-
'@progress/kendo-angular-progressbar': '16.11.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '16.11.0-develop.18'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|