@progress/kendo-angular-grid 16.5.0-develop.2 → 16.5.0-develop.4
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/footer/footer.component.mjs +46 -40
- package/fesm2015/progress-kendo-angular-grid.mjs +47 -42
- package/fesm2020/progress-kendo-angular-grid.mjs +47 -42
- package/package.json +16 -16
- package/rendering/footer/footer.component.d.ts +1 -0
- 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.5.0-develop.
|
|
12
|
+
publishDate: 1721403156,
|
|
13
|
+
version: '16.5.0-develop.4',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -8,6 +8,7 @@ import { DetailTemplateDirective } from '../details/detail-template.directive';
|
|
|
8
8
|
import { columnsToRender } from '../../columns/column-common';
|
|
9
9
|
import { isPresent } from '../../utils';
|
|
10
10
|
import { ColumnsContainer } from '../../columns/columns-container';
|
|
11
|
+
import { isColumnGroupComponent } from '../../columns/column-group.component';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
import * as i1 from "./../../common/column-info.service";
|
|
13
14
|
import * as i2 from "@angular/common";
|
|
@@ -47,6 +48,9 @@ export class FooterComponent {
|
|
|
47
48
|
const stickyStyles = this.columnInfoService.stickyColumnsStyles(column);
|
|
48
49
|
return { ...column.footerStyle, ...stickyStyles };
|
|
49
50
|
}
|
|
51
|
+
isColumnGroupComponent(column) {
|
|
52
|
+
return isColumnGroupComponent(column);
|
|
53
|
+
}
|
|
50
54
|
}
|
|
51
55
|
FooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterComponent, deps: [{ token: i1.ColumnInfoService }], target: i0.ɵɵFactoryTarget.Component });
|
|
52
56
|
FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FooterComponent, selector: "[kendoGridFooter]", inputs: { columns: "columns", groups: "groups", detailTemplate: "detailTemplate", scrollable: "scrollable", lockedColumnsCount: "lockedColumnsCount", logicalRowIndex: "logicalRowIndex", totalColumns: "totalColumns" }, host: { properties: { "class.k-grid-footer": "this.footerClass", "class.k-table-tfoot": "this.hostClass", "attr.role": "this.hostRole" } }, ngImport: i0, template: `
|
|
@@ -70,26 +74,27 @@ FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
70
74
|
class="k-table-td k-hierarchy-cell"
|
|
71
75
|
*ngIf="detailTemplate?.templateRef">
|
|
72
76
|
</td>
|
|
73
|
-
<
|
|
74
|
-
*
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
77
|
+
<ng-container *ngFor="let column of columnsToRender; let columnIndex = index; trackBy: trackByIndex;">
|
|
78
|
+
<td *ngIf="!isColumnGroupComponent(column)"
|
|
79
|
+
kendoGridLogicalCell
|
|
80
|
+
class="k-table-td"
|
|
81
|
+
[logicalRowIndex]="logicalRowIndex"
|
|
82
|
+
[logicalColIndex]="logicalColumnIndex(column)"
|
|
83
|
+
role="gridcell"
|
|
84
|
+
aria-selected="false"
|
|
85
|
+
[class.k-grid-footer-sticky]="column.sticky"
|
|
86
|
+
[ngClass]="column.footerClass"
|
|
87
|
+
[ngStyle]="column.sticky ? addStickyStyles(column) : column.footerStyle">
|
|
88
|
+
<ng-template
|
|
89
|
+
[templateContext]="{
|
|
90
|
+
templateRef: column.footerTemplateRef,
|
|
91
|
+
columnIndex: column.leafIndex,
|
|
92
|
+
column: column,
|
|
93
|
+
$implicit: column
|
|
94
|
+
}">
|
|
95
|
+
</ng-template>
|
|
96
|
+
</td>
|
|
97
|
+
</ng-container>
|
|
93
98
|
</tr>
|
|
94
99
|
</ng-container>
|
|
95
100
|
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i3.LogicalCellDirective, selector: "[kendoGridLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "colIndex", "colSpan", "rowSpan", "groupItem", "dataRowIndex", "dataItem", "detailExpandCell", "headerLabelText"] }, { kind: "directive", type: i4.LogicalRowDirective, selector: "[kendoGridLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "totalColumns"] }, { kind: "directive", type: i5.TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
|
|
@@ -118,26 +123,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
118
123
|
class="k-table-td k-hierarchy-cell"
|
|
119
124
|
*ngIf="detailTemplate?.templateRef">
|
|
120
125
|
</td>
|
|
121
|
-
<
|
|
122
|
-
*
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
126
|
+
<ng-container *ngFor="let column of columnsToRender; let columnIndex = index; trackBy: trackByIndex;">
|
|
127
|
+
<td *ngIf="!isColumnGroupComponent(column)"
|
|
128
|
+
kendoGridLogicalCell
|
|
129
|
+
class="k-table-td"
|
|
130
|
+
[logicalRowIndex]="logicalRowIndex"
|
|
131
|
+
[logicalColIndex]="logicalColumnIndex(column)"
|
|
132
|
+
role="gridcell"
|
|
133
|
+
aria-selected="false"
|
|
134
|
+
[class.k-grid-footer-sticky]="column.sticky"
|
|
135
|
+
[ngClass]="column.footerClass"
|
|
136
|
+
[ngStyle]="column.sticky ? addStickyStyles(column) : column.footerStyle">
|
|
137
|
+
<ng-template
|
|
138
|
+
[templateContext]="{
|
|
139
|
+
templateRef: column.footerTemplateRef,
|
|
140
|
+
columnIndex: column.leafIndex,
|
|
141
|
+
column: column,
|
|
142
|
+
$implicit: column
|
|
143
|
+
}">
|
|
144
|
+
</ng-template>
|
|
145
|
+
</td>
|
|
146
|
+
</ng-container>
|
|
141
147
|
</tr>
|
|
142
148
|
</ng-container>
|
|
143
149
|
`
|
|
@@ -4581,8 +4581,8 @@ const packageMetadata = {
|
|
|
4581
4581
|
name: '@progress/kendo-angular-grid',
|
|
4582
4582
|
productName: 'Kendo UI for Angular',
|
|
4583
4583
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4584
|
-
publishDate:
|
|
4585
|
-
version: '16.5.0-develop.
|
|
4584
|
+
publishDate: 1721403156,
|
|
4585
|
+
version: '16.5.0-develop.4',
|
|
4586
4586
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4587
4587
|
};
|
|
4588
4588
|
|
|
@@ -17223,6 +17223,9 @@ class FooterComponent {
|
|
|
17223
17223
|
const stickyStyles = this.columnInfoService.stickyColumnsStyles(column);
|
|
17224
17224
|
return Object.assign(Object.assign({}, column.footerStyle), stickyStyles);
|
|
17225
17225
|
}
|
|
17226
|
+
isColumnGroupComponent(column) {
|
|
17227
|
+
return isColumnGroupComponent(column);
|
|
17228
|
+
}
|
|
17226
17229
|
}
|
|
17227
17230
|
FooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterComponent, deps: [{ token: ColumnInfoService }], target: i0.ɵɵFactoryTarget.Component });
|
|
17228
17231
|
FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FooterComponent, selector: "[kendoGridFooter]", inputs: { columns: "columns", groups: "groups", detailTemplate: "detailTemplate", scrollable: "scrollable", lockedColumnsCount: "lockedColumnsCount", logicalRowIndex: "logicalRowIndex", totalColumns: "totalColumns" }, host: { properties: { "class.k-grid-footer": "this.footerClass", "class.k-table-tfoot": "this.hostClass", "attr.role": "this.hostRole" } }, ngImport: i0, template: `
|
|
@@ -17246,26 +17249,27 @@ FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
17246
17249
|
class="k-table-td k-hierarchy-cell"
|
|
17247
17250
|
*ngIf="detailTemplate?.templateRef">
|
|
17248
17251
|
</td>
|
|
17249
|
-
<
|
|
17250
|
-
*
|
|
17251
|
-
|
|
17252
|
-
|
|
17253
|
-
|
|
17254
|
-
|
|
17255
|
-
|
|
17256
|
-
|
|
17257
|
-
|
|
17258
|
-
|
|
17259
|
-
|
|
17260
|
-
|
|
17261
|
-
|
|
17262
|
-
|
|
17263
|
-
|
|
17264
|
-
|
|
17265
|
-
|
|
17266
|
-
|
|
17267
|
-
|
|
17268
|
-
|
|
17252
|
+
<ng-container *ngFor="let column of columnsToRender; let columnIndex = index; trackBy: trackByIndex;">
|
|
17253
|
+
<td *ngIf="!isColumnGroupComponent(column)"
|
|
17254
|
+
kendoGridLogicalCell
|
|
17255
|
+
class="k-table-td"
|
|
17256
|
+
[logicalRowIndex]="logicalRowIndex"
|
|
17257
|
+
[logicalColIndex]="logicalColumnIndex(column)"
|
|
17258
|
+
role="gridcell"
|
|
17259
|
+
aria-selected="false"
|
|
17260
|
+
[class.k-grid-footer-sticky]="column.sticky"
|
|
17261
|
+
[ngClass]="column.footerClass"
|
|
17262
|
+
[ngStyle]="column.sticky ? addStickyStyles(column) : column.footerStyle">
|
|
17263
|
+
<ng-template
|
|
17264
|
+
[templateContext]="{
|
|
17265
|
+
templateRef: column.footerTemplateRef,
|
|
17266
|
+
columnIndex: column.leafIndex,
|
|
17267
|
+
column: column,
|
|
17268
|
+
$implicit: column
|
|
17269
|
+
}">
|
|
17270
|
+
</ng-template>
|
|
17271
|
+
</td>
|
|
17272
|
+
</ng-container>
|
|
17269
17273
|
</tr>
|
|
17270
17274
|
</ng-container>
|
|
17271
17275
|
`, isInline: true, dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoGridLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "colIndex", "colSpan", "rowSpan", "groupItem", "dataRowIndex", "dataItem", "detailExpandCell", "headerLabelText"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoGridLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "totalColumns"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
|
|
@@ -17294,26 +17298,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
17294
17298
|
class="k-table-td k-hierarchy-cell"
|
|
17295
17299
|
*ngIf="detailTemplate?.templateRef">
|
|
17296
17300
|
</td>
|
|
17297
|
-
<
|
|
17298
|
-
*
|
|
17299
|
-
|
|
17300
|
-
|
|
17301
|
-
|
|
17302
|
-
|
|
17303
|
-
|
|
17304
|
-
|
|
17305
|
-
|
|
17306
|
-
|
|
17307
|
-
|
|
17308
|
-
|
|
17309
|
-
|
|
17310
|
-
|
|
17311
|
-
|
|
17312
|
-
|
|
17313
|
-
|
|
17314
|
-
|
|
17315
|
-
|
|
17316
|
-
|
|
17301
|
+
<ng-container *ngFor="let column of columnsToRender; let columnIndex = index; trackBy: trackByIndex;">
|
|
17302
|
+
<td *ngIf="!isColumnGroupComponent(column)"
|
|
17303
|
+
kendoGridLogicalCell
|
|
17304
|
+
class="k-table-td"
|
|
17305
|
+
[logicalRowIndex]="logicalRowIndex"
|
|
17306
|
+
[logicalColIndex]="logicalColumnIndex(column)"
|
|
17307
|
+
role="gridcell"
|
|
17308
|
+
aria-selected="false"
|
|
17309
|
+
[class.k-grid-footer-sticky]="column.sticky"
|
|
17310
|
+
[ngClass]="column.footerClass"
|
|
17311
|
+
[ngStyle]="column.sticky ? addStickyStyles(column) : column.footerStyle">
|
|
17312
|
+
<ng-template
|
|
17313
|
+
[templateContext]="{
|
|
17314
|
+
templateRef: column.footerTemplateRef,
|
|
17315
|
+
columnIndex: column.leafIndex,
|
|
17316
|
+
column: column,
|
|
17317
|
+
$implicit: column
|
|
17318
|
+
}">
|
|
17319
|
+
</ng-template>
|
|
17320
|
+
</td>
|
|
17321
|
+
</ng-container>
|
|
17317
17322
|
</tr>
|
|
17318
17323
|
</ng-container>
|
|
17319
17324
|
`
|
|
@@ -4549,8 +4549,8 @@ const packageMetadata = {
|
|
|
4549
4549
|
name: '@progress/kendo-angular-grid',
|
|
4550
4550
|
productName: 'Kendo UI for Angular',
|
|
4551
4551
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4552
|
-
publishDate:
|
|
4553
|
-
version: '16.5.0-develop.
|
|
4552
|
+
publishDate: 1721403156,
|
|
4553
|
+
version: '16.5.0-develop.4',
|
|
4554
4554
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4555
4555
|
};
|
|
4556
4556
|
|
|
@@ -17141,6 +17141,9 @@ class FooterComponent {
|
|
|
17141
17141
|
const stickyStyles = this.columnInfoService.stickyColumnsStyles(column);
|
|
17142
17142
|
return { ...column.footerStyle, ...stickyStyles };
|
|
17143
17143
|
}
|
|
17144
|
+
isColumnGroupComponent(column) {
|
|
17145
|
+
return isColumnGroupComponent(column);
|
|
17146
|
+
}
|
|
17144
17147
|
}
|
|
17145
17148
|
FooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterComponent, deps: [{ token: ColumnInfoService }], target: i0.ɵɵFactoryTarget.Component });
|
|
17146
17149
|
FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FooterComponent, selector: "[kendoGridFooter]", inputs: { columns: "columns", groups: "groups", detailTemplate: "detailTemplate", scrollable: "scrollable", lockedColumnsCount: "lockedColumnsCount", logicalRowIndex: "logicalRowIndex", totalColumns: "totalColumns" }, host: { properties: { "class.k-grid-footer": "this.footerClass", "class.k-table-tfoot": "this.hostClass", "attr.role": "this.hostRole" } }, ngImport: i0, template: `
|
|
@@ -17164,26 +17167,27 @@ FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
17164
17167
|
class="k-table-td k-hierarchy-cell"
|
|
17165
17168
|
*ngIf="detailTemplate?.templateRef">
|
|
17166
17169
|
</td>
|
|
17167
|
-
<
|
|
17168
|
-
*
|
|
17169
|
-
|
|
17170
|
-
|
|
17171
|
-
|
|
17172
|
-
|
|
17173
|
-
|
|
17174
|
-
|
|
17175
|
-
|
|
17176
|
-
|
|
17177
|
-
|
|
17178
|
-
|
|
17179
|
-
|
|
17180
|
-
|
|
17181
|
-
|
|
17182
|
-
|
|
17183
|
-
|
|
17184
|
-
|
|
17185
|
-
|
|
17186
|
-
|
|
17170
|
+
<ng-container *ngFor="let column of columnsToRender; let columnIndex = index; trackBy: trackByIndex;">
|
|
17171
|
+
<td *ngIf="!isColumnGroupComponent(column)"
|
|
17172
|
+
kendoGridLogicalCell
|
|
17173
|
+
class="k-table-td"
|
|
17174
|
+
[logicalRowIndex]="logicalRowIndex"
|
|
17175
|
+
[logicalColIndex]="logicalColumnIndex(column)"
|
|
17176
|
+
role="gridcell"
|
|
17177
|
+
aria-selected="false"
|
|
17178
|
+
[class.k-grid-footer-sticky]="column.sticky"
|
|
17179
|
+
[ngClass]="column.footerClass"
|
|
17180
|
+
[ngStyle]="column.sticky ? addStickyStyles(column) : column.footerStyle">
|
|
17181
|
+
<ng-template
|
|
17182
|
+
[templateContext]="{
|
|
17183
|
+
templateRef: column.footerTemplateRef,
|
|
17184
|
+
columnIndex: column.leafIndex,
|
|
17185
|
+
column: column,
|
|
17186
|
+
$implicit: column
|
|
17187
|
+
}">
|
|
17188
|
+
</ng-template>
|
|
17189
|
+
</td>
|
|
17190
|
+
</ng-container>
|
|
17187
17191
|
</tr>
|
|
17188
17192
|
</ng-container>
|
|
17189
17193
|
`, isInline: true, dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoGridLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "colIndex", "colSpan", "rowSpan", "groupItem", "dataRowIndex", "dataItem", "detailExpandCell", "headerLabelText"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoGridLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "totalColumns"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
|
|
@@ -17212,26 +17216,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
17212
17216
|
class="k-table-td k-hierarchy-cell"
|
|
17213
17217
|
*ngIf="detailTemplate?.templateRef">
|
|
17214
17218
|
</td>
|
|
17215
|
-
<
|
|
17216
|
-
*
|
|
17217
|
-
|
|
17218
|
-
|
|
17219
|
-
|
|
17220
|
-
|
|
17221
|
-
|
|
17222
|
-
|
|
17223
|
-
|
|
17224
|
-
|
|
17225
|
-
|
|
17226
|
-
|
|
17227
|
-
|
|
17228
|
-
|
|
17229
|
-
|
|
17230
|
-
|
|
17231
|
-
|
|
17232
|
-
|
|
17233
|
-
|
|
17234
|
-
|
|
17219
|
+
<ng-container *ngFor="let column of columnsToRender; let columnIndex = index; trackBy: trackByIndex;">
|
|
17220
|
+
<td *ngIf="!isColumnGroupComponent(column)"
|
|
17221
|
+
kendoGridLogicalCell
|
|
17222
|
+
class="k-table-td"
|
|
17223
|
+
[logicalRowIndex]="logicalRowIndex"
|
|
17224
|
+
[logicalColIndex]="logicalColumnIndex(column)"
|
|
17225
|
+
role="gridcell"
|
|
17226
|
+
aria-selected="false"
|
|
17227
|
+
[class.k-grid-footer-sticky]="column.sticky"
|
|
17228
|
+
[ngClass]="column.footerClass"
|
|
17229
|
+
[ngStyle]="column.sticky ? addStickyStyles(column) : column.footerStyle">
|
|
17230
|
+
<ng-template
|
|
17231
|
+
[templateContext]="{
|
|
17232
|
+
templateRef: column.footerTemplateRef,
|
|
17233
|
+
columnIndex: column.leafIndex,
|
|
17234
|
+
column: column,
|
|
17235
|
+
$implicit: column
|
|
17236
|
+
}">
|
|
17237
|
+
</ng-template>
|
|
17238
|
+
</td>
|
|
17239
|
+
</ng-container>
|
|
17235
17240
|
</tr>
|
|
17236
17241
|
</ng-container>
|
|
17237
17242
|
`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "16.5.0-develop.
|
|
3
|
+
"version": "16.5.0-develop.4",
|
|
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.5.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "16.5.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "16.5.0-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "16.5.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "16.5.0-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "16.5.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "16.5.0-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "16.5.0-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "16.5.0-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "16.5.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "16.5.0-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "16.5.0-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "16.5.0-develop.
|
|
49
|
-
"@progress/kendo-angular-utils": "16.5.0-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "16.5.0-develop.4",
|
|
37
|
+
"@progress/kendo-angular-common": "16.5.0-develop.4",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "16.5.0-develop.4",
|
|
39
|
+
"@progress/kendo-angular-layout": "16.5.0-develop.4",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "16.5.0-develop.4",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "16.5.0-develop.4",
|
|
42
|
+
"@progress/kendo-angular-icons": "16.5.0-develop.4",
|
|
43
|
+
"@progress/kendo-angular-inputs": "16.5.0-develop.4",
|
|
44
|
+
"@progress/kendo-angular-intl": "16.5.0-develop.4",
|
|
45
|
+
"@progress/kendo-angular-l10n": "16.5.0-develop.4",
|
|
46
|
+
"@progress/kendo-angular-label": "16.5.0-develop.4",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "16.5.0-develop.4",
|
|
48
|
+
"@progress/kendo-angular-popup": "16.5.0-develop.4",
|
|
49
|
+
"@progress/kendo-angular-utils": "16.5.0-develop.4",
|
|
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.5.0-develop.
|
|
54
|
+
"@progress/kendo-angular-schematics": "16.5.0-develop.4",
|
|
55
55
|
"@progress/kendo-common": "^0.2.0",
|
|
56
56
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
57
57
|
},
|
|
@@ -31,6 +31,7 @@ export declare class FooterComponent {
|
|
|
31
31
|
addStickyStyles(column: ColumnBase): {
|
|
32
32
|
[key: string]: any;
|
|
33
33
|
};
|
|
34
|
+
isColumnGroupComponent(column: ColumnBase): boolean;
|
|
34
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
35
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "[kendoGridFooter]", never, { "columns": "columns"; "groups": "groups"; "detailTemplate": "detailTemplate"; "scrollable": "scrollable"; "lockedColumnsCount": "lockedColumnsCount"; "logicalRowIndex": "logicalRowIndex"; "totalColumns": "totalColumns"; }, {}, never, never, false, never>;
|
|
36
37
|
}
|
|
@@ -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.5.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '16.5.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '16.5.0-develop.4',
|
|
8
|
+
'@progress/kendo-angular-navigation': '16.5.0-develop.4',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '16.5.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '16.5.0-develop.4',
|
|
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.5.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '16.5.0-develop.4'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|