@progress/kendo-angular-grid 23.1.1-develop.1 → 23.1.1-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.
package/csv/csv.component.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { OnDestroy, NgZone } from '@angular/core';
|
|
5
|
+
import { ChangeDetectorRef, OnDestroy, NgZone } from '@angular/core';
|
|
6
6
|
import { Observable } from 'rxjs';
|
|
7
7
|
import { type CSVExportOptions, type CSVRow } from '@progress/kendo-csv';
|
|
8
8
|
import { DataResult } from '@progress/kendo-data-query';
|
|
@@ -29,6 +29,7 @@ export type CSVFetchDataCallback = (component: GridComponent) => CSVRow[] | Data
|
|
|
29
29
|
export declare class CSVComponent implements OnDestroy {
|
|
30
30
|
private ctx;
|
|
31
31
|
private zone;
|
|
32
|
+
private cdr;
|
|
32
33
|
/**
|
|
33
34
|
* Sets the file name for the exported CSV file.
|
|
34
35
|
* @default "Export.csv"
|
|
@@ -110,7 +111,7 @@ export declare class CSVComponent implements OnDestroy {
|
|
|
110
111
|
proxyURL: string;
|
|
111
112
|
private saveSubscription;
|
|
112
113
|
private dataSubscription;
|
|
113
|
-
constructor(csvService: CSVService, ctx: ContextService, zone: NgZone);
|
|
114
|
+
constructor(csvService: CSVService, ctx: ContextService, zone: NgZone, cdr: ChangeDetectorRef);
|
|
114
115
|
ngOnDestroy(): void;
|
|
115
116
|
/**
|
|
116
117
|
* @hidden
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { OnDestroy, QueryList, NgZone, EventEmitter } from '@angular/core';
|
|
5
|
+
import { ChangeDetectorRef, OnDestroy, QueryList, NgZone, EventEmitter } from '@angular/core';
|
|
6
6
|
import { ExcelExportData, ColumnBase, CellOptions } from '@progress/kendo-angular-excel-export';
|
|
7
7
|
import { GridComponent } from '../grid.component';
|
|
8
8
|
import { ExcelService } from './excel.service';
|
|
@@ -22,6 +22,7 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class ExcelComponent implements OnDestroy {
|
|
23
23
|
private ctx;
|
|
24
24
|
private zone;
|
|
25
|
+
private cdr;
|
|
25
26
|
/**
|
|
26
27
|
* Sets the file name for the exported Excel file.
|
|
27
28
|
* @default "Export.xlsx"
|
|
@@ -79,7 +80,7 @@ export declare class ExcelComponent implements OnDestroy {
|
|
|
79
80
|
columns: QueryList<ColumnBase>;
|
|
80
81
|
private saveSubscription;
|
|
81
82
|
private dataSubscription;
|
|
82
|
-
constructor(excelService: ExcelService, ctx: ContextService, zone: NgZone);
|
|
83
|
+
constructor(excelService: ExcelService, ctx: ContextService, zone: NgZone, cdr: ChangeDetectorRef);
|
|
83
84
|
ngOnDestroy(): void;
|
|
84
85
|
protected save(component: GridComponent): void;
|
|
85
86
|
protected exportData(component: GridComponent, result: ExcelExportData): void;
|
|
@@ -16874,6 +16874,7 @@ const componentColumns = (component) => {
|
|
|
16874
16874
|
class ExcelComponent {
|
|
16875
16875
|
ctx;
|
|
16876
16876
|
zone;
|
|
16877
|
+
cdr;
|
|
16877
16878
|
/**
|
|
16878
16879
|
* Sets the file name for the exported Excel file.
|
|
16879
16880
|
* @default "Export.xlsx"
|
|
@@ -16931,9 +16932,10 @@ class ExcelComponent {
|
|
|
16931
16932
|
columns = new QueryList();
|
|
16932
16933
|
saveSubscription;
|
|
16933
16934
|
dataSubscription;
|
|
16934
|
-
constructor(excelService, ctx, zone) {
|
|
16935
|
+
constructor(excelService, ctx, zone, cdr) {
|
|
16935
16936
|
this.ctx = ctx;
|
|
16936
16937
|
this.zone = zone;
|
|
16938
|
+
this.cdr = cdr;
|
|
16937
16939
|
this.saveSubscription = excelService.saveToExcel.subscribe(this.save.bind(this));
|
|
16938
16940
|
this.ctx.excelComponent = this;
|
|
16939
16941
|
}
|
|
@@ -16980,6 +16982,7 @@ class ExcelComponent {
|
|
|
16980
16982
|
if (!args.isDefaultPrevented()) {
|
|
16981
16983
|
this.zone.runOutsideAngular(() => this.saveFile(options));
|
|
16982
16984
|
}
|
|
16985
|
+
this.cdr.markForCheck();
|
|
16983
16986
|
}
|
|
16984
16987
|
saveFile(options) {
|
|
16985
16988
|
toDataURL(options).then((dataURL) => {
|
|
@@ -16990,7 +16993,7 @@ class ExcelComponent {
|
|
|
16990
16993
|
this.fileCreated.emit();
|
|
16991
16994
|
});
|
|
16992
16995
|
}
|
|
16993
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ExcelComponent, deps: [{ token: ExcelService }, { token: ContextService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
16996
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ExcelComponent, deps: [{ token: ExcelService }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
16994
16997
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: ExcelComponent, isStandalone: true, selector: "kendo-grid-excel", inputs: { fileName: "fileName", filterable: "filterable", creator: "creator", date: "date", forceProxy: "forceProxy", proxyURL: "proxyURL", fetchData: "fetchData", paddingCellOptions: "paddingCellOptions", headerPaddingCellOptions: "headerPaddingCellOptions", collapsible: "collapsible" }, outputs: { fileCreated: "fileCreated" }, queries: [{ propertyName: "columns", predicate: ColumnBase$1, descendants: true }], ngImport: i0, template: ``, isInline: true });
|
|
16995
16998
|
}
|
|
16996
16999
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ExcelComponent, decorators: [{
|
|
@@ -17000,7 +17003,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17000
17003
|
template: ``,
|
|
17001
17004
|
standalone: true
|
|
17002
17005
|
}]
|
|
17003
|
-
}], ctorParameters: () => [{ type: ExcelService }, { type: ContextService }, { type: i0.NgZone }], propDecorators: { fileName: [{
|
|
17006
|
+
}], ctorParameters: () => [{ type: ExcelService }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }], propDecorators: { fileName: [{
|
|
17004
17007
|
type: Input
|
|
17005
17008
|
}], filterable: [{
|
|
17006
17009
|
type: Input
|
|
@@ -17163,6 +17166,7 @@ class CSVExportEvent extends PreventableEvent {
|
|
|
17163
17166
|
class CSVComponent {
|
|
17164
17167
|
ctx;
|
|
17165
17168
|
zone;
|
|
17169
|
+
cdr;
|
|
17166
17170
|
/**
|
|
17167
17171
|
* Sets the file name for the exported CSV file.
|
|
17168
17172
|
* @default "Export.csv"
|
|
@@ -17244,9 +17248,10 @@ class CSVComponent {
|
|
|
17244
17248
|
proxyURL;
|
|
17245
17249
|
saveSubscription;
|
|
17246
17250
|
dataSubscription;
|
|
17247
|
-
constructor(csvService, ctx, zone) {
|
|
17251
|
+
constructor(csvService, ctx, zone, cdr) {
|
|
17248
17252
|
this.ctx = ctx;
|
|
17249
17253
|
this.zone = zone;
|
|
17254
|
+
this.cdr = cdr;
|
|
17250
17255
|
this.saveSubscription = csvService.saveToCSV.subscribe(this.save.bind(this));
|
|
17251
17256
|
this.ctx.csvComponent = this;
|
|
17252
17257
|
}
|
|
@@ -17318,6 +17323,7 @@ class CSVComponent {
|
|
|
17318
17323
|
if (!args.isDefaultPrevented()) {
|
|
17319
17324
|
this.saveFile(args.csv);
|
|
17320
17325
|
}
|
|
17326
|
+
this.cdr.markForCheck();
|
|
17321
17327
|
}
|
|
17322
17328
|
getCSVOptions(component) {
|
|
17323
17329
|
const options = {
|
|
@@ -17369,7 +17375,7 @@ class CSVComponent {
|
|
|
17369
17375
|
});
|
|
17370
17376
|
});
|
|
17371
17377
|
}
|
|
17372
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: CSVComponent, deps: [{ token: CSVService }, { token: ContextService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
17378
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: CSVComponent, deps: [{ token: CSVService }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
17373
17379
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: CSVComponent, isStandalone: true, selector: "kendo-grid-csv", inputs: { fileName: "fileName", fetchData: "fetchData", names: "names", keys: "keys", delimiter: "delimiter", lineSeparator: "lineSeparator", preventFormulaInjection: "preventFormulaInjection", maxCellLength: "maxCellLength", maxRows: "maxRows", maxColumns: "maxColumns", includeUTF8BOM: "includeUTF8BOM", groupHeaderFormatter: "groupHeaderFormatter", groupValueFormatter: "groupValueFormatter", forceProxy: "forceProxy", proxyURL: "proxyURL" }, ngImport: i0, template: ``, isInline: true });
|
|
17374
17380
|
}
|
|
17375
17381
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: CSVComponent, decorators: [{
|
|
@@ -17379,7 +17385,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17379
17385
|
template: ``,
|
|
17380
17386
|
standalone: true
|
|
17381
17387
|
}]
|
|
17382
|
-
}], ctorParameters: () => [{ type: CSVService }, { type: ContextService }, { type: i0.NgZone }], propDecorators: { fileName: [{
|
|
17388
|
+
}], ctorParameters: () => [{ type: CSVService }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }], propDecorators: { fileName: [{
|
|
17383
17389
|
type: Input
|
|
17384
17390
|
}], fetchData: [{
|
|
17385
17391
|
type: Input
|
|
@@ -24166,7 +24172,7 @@ const packageMetadata = {
|
|
|
24166
24172
|
productCode: 'KENDOUIANGULAR',
|
|
24167
24173
|
productCodes: ['KENDOUIANGULAR'],
|
|
24168
24174
|
publishDate: 0,
|
|
24169
|
-
version: '23.1.1-develop.
|
|
24175
|
+
version: '23.1.1-develop.3',
|
|
24170
24176
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
24171
24177
|
};
|
|
24172
24178
|
|
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.1-develop.
|
|
10
|
+
"publishDate": 1771514349,
|
|
11
|
+
"version": "23.1.1-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-grid",
|
|
3
|
-
"version": "23.1.1-develop.
|
|
3
|
+
"version": "23.1.1-develop.3",
|
|
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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"package": {
|
|
74
74
|
"productName": "Kendo UI for Angular",
|
|
75
75
|
"productCode": "KENDOUIANGULAR",
|
|
76
|
-
"publishDate":
|
|
76
|
+
"publishDate": 1771514349,
|
|
77
77
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -86,32 +86,32 @@
|
|
|
86
86
|
"@progress/kendo-data-query": "^1.7.3",
|
|
87
87
|
"@progress/kendo-drawing": "^1.24.0",
|
|
88
88
|
"@progress/kendo-licensing": "^1.10.0",
|
|
89
|
-
"@progress/kendo-angular-buttons": "23.1.1-develop.
|
|
90
|
-
"@progress/kendo-angular-common": "23.1.1-develop.
|
|
91
|
-
"@progress/kendo-angular-dateinputs": "23.1.1-develop.
|
|
92
|
-
"@progress/kendo-angular-layout": "23.1.1-develop.
|
|
93
|
-
"@progress/kendo-angular-navigation": "23.1.1-develop.
|
|
94
|
-
"@progress/kendo-angular-dropdowns": "23.1.1-develop.
|
|
95
|
-
"@progress/kendo-angular-excel-export": "23.1.1-develop.
|
|
96
|
-
"@progress/kendo-angular-icons": "23.1.1-develop.
|
|
97
|
-
"@progress/kendo-angular-indicators": "23.1.1-develop.
|
|
98
|
-
"@progress/kendo-angular-inputs": "23.1.1-develop.
|
|
99
|
-
"@progress/kendo-angular-conversational-ui": "23.1.1-develop.
|
|
100
|
-
"@progress/kendo-angular-intl": "23.1.1-develop.
|
|
101
|
-
"@progress/kendo-angular-l10n": "23.1.1-develop.
|
|
102
|
-
"@progress/kendo-angular-label": "23.1.1-develop.
|
|
103
|
-
"@progress/kendo-angular-menu": "23.1.1-develop.
|
|
104
|
-
"@progress/kendo-angular-pager": "23.1.1-develop.
|
|
105
|
-
"@progress/kendo-angular-pdf-export": "23.1.1-develop.
|
|
106
|
-
"@progress/kendo-angular-popup": "23.1.1-develop.
|
|
107
|
-
"@progress/kendo-angular-toolbar": "23.1.1-develop.
|
|
108
|
-
"@progress/kendo-angular-upload": "23.1.1-develop.
|
|
109
|
-
"@progress/kendo-angular-utils": "23.1.1-develop.
|
|
89
|
+
"@progress/kendo-angular-buttons": "23.1.1-develop.3",
|
|
90
|
+
"@progress/kendo-angular-common": "23.1.1-develop.3",
|
|
91
|
+
"@progress/kendo-angular-dateinputs": "23.1.1-develop.3",
|
|
92
|
+
"@progress/kendo-angular-layout": "23.1.1-develop.3",
|
|
93
|
+
"@progress/kendo-angular-navigation": "23.1.1-develop.3",
|
|
94
|
+
"@progress/kendo-angular-dropdowns": "23.1.1-develop.3",
|
|
95
|
+
"@progress/kendo-angular-excel-export": "23.1.1-develop.3",
|
|
96
|
+
"@progress/kendo-angular-icons": "23.1.1-develop.3",
|
|
97
|
+
"@progress/kendo-angular-indicators": "23.1.1-develop.3",
|
|
98
|
+
"@progress/kendo-angular-inputs": "23.1.1-develop.3",
|
|
99
|
+
"@progress/kendo-angular-conversational-ui": "23.1.1-develop.3",
|
|
100
|
+
"@progress/kendo-angular-intl": "23.1.1-develop.3",
|
|
101
|
+
"@progress/kendo-angular-l10n": "23.1.1-develop.3",
|
|
102
|
+
"@progress/kendo-angular-label": "23.1.1-develop.3",
|
|
103
|
+
"@progress/kendo-angular-menu": "23.1.1-develop.3",
|
|
104
|
+
"@progress/kendo-angular-pager": "23.1.1-develop.3",
|
|
105
|
+
"@progress/kendo-angular-pdf-export": "23.1.1-develop.3",
|
|
106
|
+
"@progress/kendo-angular-popup": "23.1.1-develop.3",
|
|
107
|
+
"@progress/kendo-angular-toolbar": "23.1.1-develop.3",
|
|
108
|
+
"@progress/kendo-angular-upload": "23.1.1-develop.3",
|
|
109
|
+
"@progress/kendo-angular-utils": "23.1.1-develop.3",
|
|
110
110
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
111
111
|
},
|
|
112
112
|
"dependencies": {
|
|
113
113
|
"tslib": "^2.3.1",
|
|
114
|
-
"@progress/kendo-angular-schematics": "23.1.1-develop.
|
|
114
|
+
"@progress/kendo-angular-schematics": "23.1.1-develop.3",
|
|
115
115
|
"@progress/kendo-common": "^1.0.1",
|
|
116
116
|
"@progress/kendo-file-saver": "^1.0.0",
|
|
117
117
|
"@progress/kendo-csv": "^1.0.0"
|
|
@@ -9,19 +9,19 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
11
11
|
// peer deps of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '23.1.1-develop.
|
|
13
|
-
'@progress/kendo-angular-navigation': '23.1.1-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.1.1-develop.3',
|
|
13
|
+
'@progress/kendo-angular-navigation': '23.1.1-develop.3',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '23.1.1-develop.
|
|
15
|
+
'@progress/kendo-angular-dialog': '23.1.1-develop.3',
|
|
16
16
|
// peer dependency of kendo-angular-icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
18
18
|
// peer dependency of kendo-angular-layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '23.1.1-develop.
|
|
19
|
+
'@progress/kendo-angular-progressbar': '23.1.1-develop.3',
|
|
20
20
|
// transitive peer dependencies from toolbar
|
|
21
|
-
'@progress/kendo-angular-indicators': '23.1.1-develop.
|
|
21
|
+
'@progress/kendo-angular-indicators': '23.1.1-develop.3',
|
|
22
22
|
// transitive peer dependencies from conversational-ui
|
|
23
|
-
'@progress/kendo-angular-menu': '23.1.1-develop.
|
|
24
|
-
'@progress/kendo-angular-upload': '23.1.1-develop.
|
|
23
|
+
'@progress/kendo-angular-menu': '23.1.1-develop.3',
|
|
24
|
+
'@progress/kendo-angular-upload': '23.1.1-develop.3'
|
|
25
25
|
} });
|
|
26
26
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
27
27
|
}
|