@progress/kendo-angular-grid 16.9.0-develop.1 → 16.9.0-develop.10
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 +9 -9
- package/fesm2015/progress-kendo-angular-grid.mjs +11 -11
- package/fesm2020/progress-kendo-angular-grid.mjs +11 -11
- package/package.json +16 -16
- package/rendering/header/header.component.d.ts +1 -1
- 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.9.0-develop.
|
|
12
|
+
publishDate: 1724927337,
|
|
13
|
+
version: '16.9.0-develop.10',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -210,7 +210,7 @@ export class HeaderComponent {
|
|
|
210
210
|
+ 1;
|
|
211
211
|
}
|
|
212
212
|
sortState(column) {
|
|
213
|
-
if (!this.
|
|
213
|
+
if (!this.isInteractive(column, 'sortable')) {
|
|
214
214
|
return;
|
|
215
215
|
}
|
|
216
216
|
const state = this.sortDescriptor(column.field);
|
|
@@ -322,9 +322,9 @@ export class HeaderComponent {
|
|
|
322
322
|
const groupable = this.isGroupable(column);
|
|
323
323
|
return groupable || canReorder;
|
|
324
324
|
}
|
|
325
|
-
|
|
325
|
+
isInteractive(column, prop) {
|
|
326
326
|
return !isNullOrEmptyString(column.field)
|
|
327
|
-
&& isTruthy(this
|
|
327
|
+
&& isTruthy(this[prop]) && isTruthy(column[prop]);
|
|
328
328
|
}
|
|
329
329
|
isCheckboxColumn(column) {
|
|
330
330
|
return isCheckboxColumn(column) && !column.templateRef;
|
|
@@ -507,9 +507,9 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
507
507
|
[attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
|
|
508
508
|
[attr.aria-keyshortcuts]="isNavigable ? 'Alt + ArrowDown' : undefined">
|
|
509
509
|
|
|
510
|
-
<ng-container *ngIf="!
|
|
510
|
+
<ng-container *ngIf="!isInteractive(getColumnComponent(column), 'sortable')">
|
|
511
511
|
<span class="k-cell-inner">
|
|
512
|
-
<span class="k-link
|
|
512
|
+
<span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'groupable') && !isInteractive(getColumnComponent(column), 'reorderable')">
|
|
513
513
|
<ng-template
|
|
514
514
|
[templateContext]="{
|
|
515
515
|
templateRef: column.headerTemplateRef,
|
|
@@ -541,7 +541,7 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
541
541
|
</span>
|
|
542
542
|
</ng-container>
|
|
543
543
|
|
|
544
|
-
<ng-container *ngIf="
|
|
544
|
+
<ng-container *ngIf="isInteractive(getColumnComponent(column), 'sortable')">
|
|
545
545
|
<span class="k-cell-inner">
|
|
546
546
|
<span #link class="k-link" (click)="onSortClick(getColumnComponent(column), $event, link)">
|
|
547
547
|
<ng-template
|
|
@@ -733,9 +733,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
733
733
|
[attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
|
|
734
734
|
[attr.aria-keyshortcuts]="isNavigable ? 'Alt + ArrowDown' : undefined">
|
|
735
735
|
|
|
736
|
-
<ng-container *ngIf="!
|
|
736
|
+
<ng-container *ngIf="!isInteractive(getColumnComponent(column), 'sortable')">
|
|
737
737
|
<span class="k-cell-inner">
|
|
738
|
-
<span class="k-link
|
|
738
|
+
<span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'groupable') && !isInteractive(getColumnComponent(column), 'reorderable')">
|
|
739
739
|
<ng-template
|
|
740
740
|
[templateContext]="{
|
|
741
741
|
templateRef: column.headerTemplateRef,
|
|
@@ -767,7 +767,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
767
767
|
</span>
|
|
768
768
|
</ng-container>
|
|
769
769
|
|
|
770
|
-
<ng-container *ngIf="
|
|
770
|
+
<ng-container *ngIf="isInteractive(getColumnComponent(column), 'sortable')">
|
|
771
771
|
<span class="k-cell-inner">
|
|
772
772
|
<span #link class="k-link" (click)="onSortClick(getColumnComponent(column), $event, link)">
|
|
773
773
|
<ng-template
|
|
@@ -14677,7 +14677,7 @@ class HeaderComponent {
|
|
|
14677
14677
|
+ 1;
|
|
14678
14678
|
}
|
|
14679
14679
|
sortState(column) {
|
|
14680
|
-
if (!this.
|
|
14680
|
+
if (!this.isInteractive(column, 'sortable')) {
|
|
14681
14681
|
return;
|
|
14682
14682
|
}
|
|
14683
14683
|
const state = this.sortDescriptor(column.field);
|
|
@@ -14789,9 +14789,9 @@ class HeaderComponent {
|
|
|
14789
14789
|
const groupable = this.isGroupable(column);
|
|
14790
14790
|
return groupable || canReorder;
|
|
14791
14791
|
}
|
|
14792
|
-
|
|
14792
|
+
isInteractive(column, prop) {
|
|
14793
14793
|
return !isNullOrEmptyString(column.field)
|
|
14794
|
-
&& isTruthy(this
|
|
14794
|
+
&& isTruthy(this[prop]) && isTruthy(column[prop]);
|
|
14795
14795
|
}
|
|
14796
14796
|
isCheckboxColumn(column) {
|
|
14797
14797
|
return isCheckboxColumn(column) && !column.templateRef;
|
|
@@ -14974,9 +14974,9 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
14974
14974
|
[attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
|
|
14975
14975
|
[attr.aria-keyshortcuts]="isNavigable ? 'Alt + ArrowDown' : undefined">
|
|
14976
14976
|
|
|
14977
|
-
<ng-container *ngIf="!
|
|
14977
|
+
<ng-container *ngIf="!isInteractive(getColumnComponent(column), 'sortable')">
|
|
14978
14978
|
<span class="k-cell-inner">
|
|
14979
|
-
<span class="k-link
|
|
14979
|
+
<span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'groupable') && !isInteractive(getColumnComponent(column), 'reorderable')">
|
|
14980
14980
|
<ng-template
|
|
14981
14981
|
[templateContext]="{
|
|
14982
14982
|
templateRef: column.headerTemplateRef,
|
|
@@ -15008,7 +15008,7 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
15008
15008
|
</span>
|
|
15009
15009
|
</ng-container>
|
|
15010
15010
|
|
|
15011
|
-
<ng-container *ngIf="
|
|
15011
|
+
<ng-container *ngIf="isInteractive(getColumnComponent(column), 'sortable')">
|
|
15012
15012
|
<span class="k-cell-inner">
|
|
15013
15013
|
<span #link class="k-link" (click)="onSortClick(getColumnComponent(column), $event, link)">
|
|
15014
15014
|
<ng-template
|
|
@@ -15200,9 +15200,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15200
15200
|
[attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
|
|
15201
15201
|
[attr.aria-keyshortcuts]="isNavigable ? 'Alt + ArrowDown' : undefined">
|
|
15202
15202
|
|
|
15203
|
-
<ng-container *ngIf="!
|
|
15203
|
+
<ng-container *ngIf="!isInteractive(getColumnComponent(column), 'sortable')">
|
|
15204
15204
|
<span class="k-cell-inner">
|
|
15205
|
-
<span class="k-link
|
|
15205
|
+
<span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'groupable') && !isInteractive(getColumnComponent(column), 'reorderable')">
|
|
15206
15206
|
<ng-template
|
|
15207
15207
|
[templateContext]="{
|
|
15208
15208
|
templateRef: column.headerTemplateRef,
|
|
@@ -15234,7 +15234,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15234
15234
|
</span>
|
|
15235
15235
|
</ng-container>
|
|
15236
15236
|
|
|
15237
|
-
<ng-container *ngIf="
|
|
15237
|
+
<ng-container *ngIf="isInteractive(getColumnComponent(column), 'sortable')">
|
|
15238
15238
|
<span class="k-cell-inner">
|
|
15239
15239
|
<span #link class="k-link" (click)="onSortClick(getColumnComponent(column), $event, link)">
|
|
15240
15240
|
<ng-template
|
|
@@ -19432,8 +19432,8 @@ const packageMetadata = {
|
|
|
19432
19432
|
name: '@progress/kendo-angular-grid',
|
|
19433
19433
|
productName: 'Kendo UI for Angular',
|
|
19434
19434
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
19435
|
-
publishDate:
|
|
19436
|
-
version: '16.9.0-develop.
|
|
19435
|
+
publishDate: 1724927337,
|
|
19436
|
+
version: '16.9.0-develop.10',
|
|
19437
19437
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
19438
19438
|
};
|
|
19439
19439
|
|
|
@@ -14621,7 +14621,7 @@ class HeaderComponent {
|
|
|
14621
14621
|
+ 1;
|
|
14622
14622
|
}
|
|
14623
14623
|
sortState(column) {
|
|
14624
|
-
if (!this.
|
|
14624
|
+
if (!this.isInteractive(column, 'sortable')) {
|
|
14625
14625
|
return;
|
|
14626
14626
|
}
|
|
14627
14627
|
const state = this.sortDescriptor(column.field);
|
|
@@ -14733,9 +14733,9 @@ class HeaderComponent {
|
|
|
14733
14733
|
const groupable = this.isGroupable(column);
|
|
14734
14734
|
return groupable || canReorder;
|
|
14735
14735
|
}
|
|
14736
|
-
|
|
14736
|
+
isInteractive(column, prop) {
|
|
14737
14737
|
return !isNullOrEmptyString(column.field)
|
|
14738
|
-
&& isTruthy(this
|
|
14738
|
+
&& isTruthy(this[prop]) && isTruthy(column[prop]);
|
|
14739
14739
|
}
|
|
14740
14740
|
isCheckboxColumn(column) {
|
|
14741
14741
|
return isCheckboxColumn(column) && !column.templateRef;
|
|
@@ -14918,9 +14918,9 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
14918
14918
|
[attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
|
|
14919
14919
|
[attr.aria-keyshortcuts]="isNavigable ? 'Alt + ArrowDown' : undefined">
|
|
14920
14920
|
|
|
14921
|
-
<ng-container *ngIf="!
|
|
14921
|
+
<ng-container *ngIf="!isInteractive(getColumnComponent(column), 'sortable')">
|
|
14922
14922
|
<span class="k-cell-inner">
|
|
14923
|
-
<span class="k-link
|
|
14923
|
+
<span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'groupable') && !isInteractive(getColumnComponent(column), 'reorderable')">
|
|
14924
14924
|
<ng-template
|
|
14925
14925
|
[templateContext]="{
|
|
14926
14926
|
templateRef: column.headerTemplateRef,
|
|
@@ -14952,7 +14952,7 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
14952
14952
|
</span>
|
|
14953
14953
|
</ng-container>
|
|
14954
14954
|
|
|
14955
|
-
<ng-container *ngIf="
|
|
14955
|
+
<ng-container *ngIf="isInteractive(getColumnComponent(column), 'sortable')">
|
|
14956
14956
|
<span class="k-cell-inner">
|
|
14957
14957
|
<span #link class="k-link" (click)="onSortClick(getColumnComponent(column), $event, link)">
|
|
14958
14958
|
<ng-template
|
|
@@ -15144,9 +15144,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15144
15144
|
[attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
|
|
15145
15145
|
[attr.aria-keyshortcuts]="isNavigable ? 'Alt + ArrowDown' : undefined">
|
|
15146
15146
|
|
|
15147
|
-
<ng-container *ngIf="!
|
|
15147
|
+
<ng-container *ngIf="!isInteractive(getColumnComponent(column), 'sortable')">
|
|
15148
15148
|
<span class="k-cell-inner">
|
|
15149
|
-
<span class="k-link
|
|
15149
|
+
<span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'groupable') && !isInteractive(getColumnComponent(column), 'reorderable')">
|
|
15150
15150
|
<ng-template
|
|
15151
15151
|
[templateContext]="{
|
|
15152
15152
|
templateRef: column.headerTemplateRef,
|
|
@@ -15178,7 +15178,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
15178
15178
|
</span>
|
|
15179
15179
|
</ng-container>
|
|
15180
15180
|
|
|
15181
|
-
<ng-container *ngIf="
|
|
15181
|
+
<ng-container *ngIf="isInteractive(getColumnComponent(column), 'sortable')">
|
|
15182
15182
|
<span class="k-cell-inner">
|
|
15183
15183
|
<span #link class="k-link" (click)="onSortClick(getColumnComponent(column), $event, link)">
|
|
15184
15184
|
<ng-template
|
|
@@ -19334,8 +19334,8 @@ const packageMetadata = {
|
|
|
19334
19334
|
name: '@progress/kendo-angular-grid',
|
|
19335
19335
|
productName: 'Kendo UI for Angular',
|
|
19336
19336
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
19337
|
-
publishDate:
|
|
19338
|
-
version: '16.9.0-develop.
|
|
19337
|
+
publishDate: 1724927337,
|
|
19338
|
+
version: '16.9.0-develop.10',
|
|
19339
19339
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
19340
19340
|
};
|
|
19341
19341
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "16.9.0-develop.
|
|
3
|
+
"version": "16.9.0-develop.10",
|
|
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.19.0",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "16.9.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "16.9.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "16.9.0-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "16.9.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "16.9.0-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "16.9.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "16.9.0-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "16.9.0-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "16.9.0-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "16.9.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "16.9.0-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "16.9.0-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "16.9.0-develop.
|
|
49
|
-
"@progress/kendo-angular-utils": "16.9.0-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "16.9.0-develop.10",
|
|
37
|
+
"@progress/kendo-angular-common": "16.9.0-develop.10",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "16.9.0-develop.10",
|
|
39
|
+
"@progress/kendo-angular-layout": "16.9.0-develop.10",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "16.9.0-develop.10",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "16.9.0-develop.10",
|
|
42
|
+
"@progress/kendo-angular-icons": "16.9.0-develop.10",
|
|
43
|
+
"@progress/kendo-angular-inputs": "16.9.0-develop.10",
|
|
44
|
+
"@progress/kendo-angular-intl": "16.9.0-develop.10",
|
|
45
|
+
"@progress/kendo-angular-l10n": "16.9.0-develop.10",
|
|
46
|
+
"@progress/kendo-angular-label": "16.9.0-develop.10",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "16.9.0-develop.10",
|
|
48
|
+
"@progress/kendo-angular-popup": "16.9.0-develop.10",
|
|
49
|
+
"@progress/kendo-angular-utils": "16.9.0-develop.10",
|
|
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.9.0-develop.
|
|
54
|
+
"@progress/kendo-angular-schematics": "16.9.0-develop.10",
|
|
55
55
|
"@progress/kendo-common": "^0.2.0",
|
|
56
56
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
57
57
|
},
|
|
@@ -115,7 +115,7 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
|
115
115
|
isFilterable(column: ColumnComponent): boolean;
|
|
116
116
|
canDrop(draggable: DraggableColumnDirective, target: DropTargetDirective): boolean;
|
|
117
117
|
shouldActivate(column: ColumnBase): boolean;
|
|
118
|
-
|
|
118
|
+
isInteractive(column: ColumnComponent, prop: string): boolean;
|
|
119
119
|
isCheckboxColumn(column: any): boolean;
|
|
120
120
|
trackByIndex(index: number, _item: any): any;
|
|
121
121
|
addStickyStyles(column: ColumnBase): {
|
|
@@ -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.9.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '16.9.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '16.9.0-develop.10',
|
|
8
|
+
'@progress/kendo-angular-navigation': '16.9.0-develop.10',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '16.9.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '16.9.0-develop.10',
|
|
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.9.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '16.9.0-develop.10'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|