@progress/kendo-angular-excel-export 24.2.2 → 25.0.0-develop.12

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/index.d.ts CHANGED
@@ -2,17 +2,510 @@
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
- export { ExcelExportComponent } from './excel-export.component';
6
- export { ExcelExportModule } from './excel-export.module';
7
- export { ColumnBase } from './columns/column-base';
8
- export { ColumnComponent } from './columns/column.component';
9
- export { ColumnGroupComponent } from './columns/column-group.component';
10
- export { FooterTemplateDirective } from './columns/footer-template.directive';
11
- export { GroupFooterTemplateDirective } from './columns/group-footer-template.directive';
12
- export { GroupHeaderTemplateDirective } from './columns/group-header-template.directive';
13
- export { GroupHeaderColumnTemplateDirective } from './columns/group-header-column-template.directive';
14
- export { ExcelExportData } from './excel-export-data';
15
- export { CellOptions } from './ooxml/cell-options.interface';
16
- export * from './ooxml/workbook';
5
+ import * as i0 from '@angular/core';
6
+ import { QueryList, NgZone, TemplateRef } from '@angular/core';
7
+ import { WorkbookSheetRowCellBorderBottom, WorkbookSheetRowCellBorderLeft, WorkbookSheetRowCellBorderTop, WorkbookSheetRowCellBorderRight, WorkbookOptions } from '@progress/kendo-ooxml';
17
8
  export * from '@progress/kendo-ooxml';
18
- export * from './directives';
9
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
10
+
11
+ /**
12
+ * The options for the Excel Export cell.
13
+ */
14
+ interface CellOptions {
15
+ /**
16
+ * Sets the background color of the cell.
17
+ * Supports hex CSS-like values that start with `"#"`. For example, `"#ff00ff"`.
18
+ */
19
+ background?: string;
20
+ /**
21
+ * The style information for the bottom border of the cell.
22
+ */
23
+ borderBottom?: WorkbookSheetRowCellBorderBottom;
24
+ /**
25
+ * The style information for the left border of the cell.
26
+ */
27
+ borderLeft?: WorkbookSheetRowCellBorderLeft;
28
+ /**
29
+ * The style information for the top border of the cell.
30
+ */
31
+ borderTop?: WorkbookSheetRowCellBorderTop;
32
+ /**
33
+ * The style information for the right border of the cell.
34
+ */
35
+ borderRight?: WorkbookSheetRowCellBorderRight;
36
+ /**
37
+ * If set to `true`, renders the cell value in bold.
38
+ */
39
+ bold?: boolean;
40
+ /**
41
+ * The text color of the cell.
42
+ * Supports hex CSS-like values that start with `"#"`. For example, `"#ff00ff"`.
43
+ */
44
+ color?: string;
45
+ /**
46
+ * Sets the font that is used to display the cell value.
47
+ */
48
+ fontFamily?: string;
49
+ /**
50
+ * Sets the font size in pixels.
51
+ */
52
+ fontSize?: number;
53
+ /**
54
+ * Sets the format that Excel uses to display the cell value.
55
+ * For more information, refer to the page on
56
+ * [supported Excel formats](https://support.office.com/en-us/article/Create-or-delete-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4?ui=en-US&rs=en-US&ad=US).
57
+ */
58
+ format?: string;
59
+ /**
60
+ * If `italics` is set to `true`, the cell value is rendered in italics.
61
+ */
62
+ italic?: boolean;
63
+ /**
64
+ * Sets the horizontal alignment of the cell value.
65
+ *
66
+ * The supported values are:
67
+ * * `"left"`
68
+ * * `"center"`
69
+ * * `"right"`
70
+ */
71
+ textAlign?: 'left' | 'center' | 'right';
72
+ /**
73
+ * If `underline` is set to `true`, the cell value is underlined.
74
+ */
75
+ underline?: boolean;
76
+ /**
77
+ * If `wrap` is set to `true`, the cell value is wrapped.
78
+ */
79
+ wrap?: boolean;
80
+ /**
81
+ * Sets the vertical alignment of the cell value.
82
+ *
83
+ * The supported values are:
84
+ * * `"top"`
85
+ * * `"center"`
86
+ * * `"bottom"`
87
+ */
88
+ verticalAlign?: 'top' | 'center' | 'bottom';
89
+ }
90
+
91
+ /**
92
+ * Represents the expected type for the `ExcelExportComponent` data.
93
+ *
94
+ * Use this interface to specify the data and groups for export.
95
+ */
96
+ interface ExcelExportData {
97
+ /**
98
+ * Specifies the exported data.
99
+ * When the data is grouped, structure it as described by the
100
+ * [`GroupResult`](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupresult) option of the Kendo UI Data Query component.
101
+ */
102
+ data?: any[];
103
+ /**
104
+ * Specifies the exported data groups.
105
+ * The groups must match the
106
+ * [`GroupDescriptor`](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupdescriptor) option of the Kendo UI Data Query component.
107
+ */
108
+ group?: any[];
109
+ }
110
+
111
+ /**
112
+ * @hidden
113
+ */
114
+ declare class ColumnBase {
115
+ parent?: ColumnBase;
116
+ /**
117
+ * The title of the column.
118
+ */
119
+ set title(value: string);
120
+ get title(): string;
121
+ /**
122
+ * The width of the column in pixels.
123
+ */
124
+ set width(value: number);
125
+ get width(): number;
126
+ /**
127
+ * Toggles the locked (frozen) state of the column ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/columns#locked-state)).
128
+ *
129
+ * @default false
130
+ */
131
+ set locked(value: boolean);
132
+ get locked(): boolean;
133
+ /**
134
+ * Sets the visibility of the column ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/columns#hidden-state)).
135
+ *
136
+ * @default false
137
+ */
138
+ set hidden(value: boolean);
139
+ get hidden(): boolean;
140
+ /**
141
+ * The options of the column header cell.
142
+ */
143
+ set headerCellOptions(value: CellOptions);
144
+ get headerCellOptions(): CellOptions;
145
+ /**
146
+ * @hidden
147
+ */
148
+ children: QueryList<ColumnBase>;
149
+ /**
150
+ * @hidden
151
+ */
152
+ get level(): number;
153
+ private _title;
154
+ private _width;
155
+ private _locked;
156
+ private _hidden;
157
+ private _headerCellOptions;
158
+ constructor(parent?: ColumnBase);
159
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnBase, never>;
160
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBase, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "width": { "alias": "width"; "required": false; }; "locked": { "alias": "locked"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "headerCellOptions": { "alias": "headerCellOptions"; "required": false; }; }, {}, ["children"], never, true, never>;
161
+ }
162
+
163
+ /**
164
+ * Represents the [Kendo UI Excel Export component for Angular](https://www.telerik.com/kendo-angular-ui/components/excel-export).
165
+ * Use this component to export data to Excel format.
166
+ *
167
+ * @example
168
+ * ```html
169
+ * <kendo-excelexport [data]="gridData" fileName="MyExport.xlsx">
170
+ * <kendo-excelexport-column field="ProductID" title="Product ID"></kendo-excelexport-column>
171
+ * <kendo-excelexport-column field="ProductName" title="Product Name"></kendo-excelexport-column>
172
+ * </kendo-excelexport>
173
+ * ```
174
+ *
175
+ * @remarks
176
+ * Supported children components are: {@link ColumnComponent}, {@link ColumnGroupComponent}.
177
+ */
178
+ declare class ExcelExportComponent {
179
+ private localization;
180
+ private zone;
181
+ /**
182
+ * Specifies the name of the exported Excel file.
183
+ *
184
+ * @default "Export.xlsx"
185
+ */
186
+ set fileName(value: string);
187
+ get fileName(): string;
188
+ /**
189
+ * Determines whether to enable column filtering in the exported Excel file
190
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/filtering)).
191
+ */
192
+ set filterable(value: boolean);
193
+ get filterable(): boolean;
194
+ /**
195
+ * Determines whether groups in the Excel file are collapsible.
196
+ */
197
+ set collapsible(value: boolean);
198
+ get collapsible(): boolean;
199
+ /**
200
+ * Specifies the author of the workbook.
201
+ */
202
+ set creator(value: string);
203
+ get creator(): string;
204
+ /**
205
+ * Specifies the creation date of the workbook.
206
+ * The default value is `new Date()`.
207
+ *
208
+ * @default `new Date()`
209
+ */
210
+ set date(value: Date);
211
+ get date(): Date;
212
+ /**
213
+ * Determines whether to force the use of a proxy server for file downloads.
214
+ * When set to `true`, the component sends content to `proxyURL` even if the browser supports local file saving.
215
+ */
216
+ set forceProxy(value: boolean);
217
+ get forceProxy(): boolean;
218
+ /**
219
+ * Specifies the URL of the server-side proxy that streams the file to the user.
220
+ * When the browser cannot save files locally (for example, Internet Explorer 9 and earlier, and Safari), the component uses a proxy.
221
+ * You must implement the server-side proxy.
222
+ *
223
+ * The proxy receives a `POST` request with these parameters in the request body:
224
+ * - `contentType`&mdash;The `MIME` type of the file.
225
+ * - `base64`&mdash;The `base-64` encoded file content.
226
+ * - `fileName`&mdash;The requested file name.
227
+ * The proxy must return the decoded file with the `Content-Disposition` header set to `attachment; filename="<fileName.xslx>"`.
228
+ */
229
+ set proxyURL(value: string);
230
+ get proxyURL(): string;
231
+ /**
232
+ * Specifies the data to export.
233
+ * When the data is grouped, structure it as described by the
234
+ * [`GroupResult`](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupresult) option of the Kendo UI Data Query component.
235
+ */
236
+ set data(value: any[]);
237
+ get data(): any[];
238
+ /**
239
+ * Specifies the exported data groups.
240
+ * The groups must match the
241
+ * [`GroupDescriptor`](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupdescriptor) option of the Kendo UI Data Query component.
242
+ */
243
+ set group(value: any[]);
244
+ get group(): any[];
245
+ /**
246
+ * Specifies the options for cells inserted before data, group, and footer cells
247
+ * to show group hierarchy when the data is grouped
248
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/cells#padding-cells)).
249
+ */
250
+ set paddingCellOptions(value: CellOptions);
251
+ get paddingCellOptions(): CellOptions;
252
+ /**
253
+ * Specifies the options for cells inserted before header cells
254
+ * to align headers and column values when the data is grouped
255
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/cells#header-padding-cells)).
256
+ */
257
+ set headerPaddingCellOptions(value: CellOptions);
258
+ get headerPaddingCellOptions(): CellOptions;
259
+ /**
260
+ * @hidden
261
+ */
262
+ columns: QueryList<ColumnBase>;
263
+ private _fileName;
264
+ private _filterable;
265
+ private _collapsible;
266
+ private _creator;
267
+ private _date;
268
+ private _forceProxy;
269
+ private _proxyURL;
270
+ private _data;
271
+ private _group;
272
+ private _paddingCellOptions;
273
+ private _headerPaddingCellOptions;
274
+ constructor(localization: LocalizationService, zone: NgZone);
275
+ /**
276
+ * Exports the data to Excel.
277
+ *
278
+ * @param exportData - Optional. The data to export or [`WorkbookOptions`](https://www.telerik.com/kendo-angular-ui/components/excel-export/api/workbookoptions).
279
+ */
280
+ save(exportData?: any[] | ExcelExportData | WorkbookOptions): void;
281
+ /**
282
+ * Returns [`WorkbookOptions`](https://www.telerik.com/kendo-angular-ui/components/excel-export/api/workbookoptions) based on the specified columns and data.
283
+ * Use this method to customize the workbook options.
284
+ *
285
+ * @param exportData - Optional. The data to export.
286
+ * @returns {WorkbookOptions} The workbook options.
287
+ */
288
+ workbookOptions(exportData?: any[] | ExcelExportData): WorkbookOptions;
289
+ /**
290
+ * Returns a promise that resolves with the file data URI.
291
+ * Use this method to get the Excel file as a data URI.
292
+ *
293
+ * @param exportData - Optional. The data or [`WorkbookOptions`](https://www.telerik.com/kendo-angular-ui/components/excel-export/api/workbookoptions) to use for generating the data URI.
294
+ * @returns {Promise<string>} A promise that resolves with the file data URI.
295
+ */
296
+ toDataURL(exportData?: any[] | ExcelExportData | WorkbookOptions): Promise<string>;
297
+ protected getExportData(exportData?: ExcelExportData | any[]): ExcelExportData;
298
+ protected saveFile(dataURL: string): void;
299
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExcelExportComponent, never>;
300
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExcelExportComponent, "kendo-excelexport", ["kendoExcelExport"], { "fileName": { "alias": "fileName"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "collapsible": { "alias": "collapsible"; "required": false; }; "creator": { "alias": "creator"; "required": false; }; "date": { "alias": "date"; "required": false; }; "forceProxy": { "alias": "forceProxy"; "required": false; }; "proxyURL": { "alias": "proxyURL"; "required": false; }; "data": { "alias": "data"; "required": false; }; "group": { "alias": "group"; "required": false; }; "paddingCellOptions": { "alias": "paddingCellOptions"; "required": false; }; "headerPaddingCellOptions": { "alias": "headerPaddingCellOptions"; "required": false; }; }, {}, ["columns"], never, true, never>;
301
+ }
302
+
303
+ /**
304
+ * Represents the group header cell template of the Excel Export column component
305
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/columns#group-header-template)).
306
+ * Use this directive to customize the content of the group header item.
307
+ *
308
+ * @example
309
+ * ```html
310
+ * <ng-template kendoExcelExportGroupHeaderTemplate let-group let-field="field">
311
+ * Group Header for {{ field }}
312
+ * </ng-template>
313
+ * ```
314
+ */
315
+ declare class GroupHeaderTemplateDirective {
316
+ templateRef: TemplateRef<any>;
317
+ constructor(templateRef: TemplateRef<any>);
318
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupHeaderTemplateDirective, [{ optional: true; }]>;
319
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GroupHeaderTemplateDirective, "[kendoExcelExportGroupHeaderTemplate]", never, {}, {}, never, never, true, never>;
320
+ }
321
+
322
+ /**
323
+ * Represents the group header column template of the Excel Export column component
324
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/columns#group-header-column-template)).
325
+ * Use this directive to customize the group header column.
326
+ *
327
+ * @example
328
+ * ```html
329
+ * <ng-template kendoExcelExportGroupHeaderColumnTemplate let-group let-field="field">
330
+ * Group Header Column for {{ field }}
331
+ * </ng-template>
332
+ * ```
333
+ */
334
+ declare class GroupHeaderColumnTemplateDirective {
335
+ templateRef: TemplateRef<any>;
336
+ constructor(templateRef: TemplateRef<any>);
337
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupHeaderColumnTemplateDirective, [{ optional: true; }]>;
338
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GroupHeaderColumnTemplateDirective, "[kendoExcelExportGroupHeaderColumnTemplate]", never, {}, {}, never, never, true, never>;
339
+ }
340
+
341
+ /**
342
+ * Represents the group footer cell template of the Excel Export column component
343
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/columns#group-footer-template)).
344
+ * Use this directive to customize the group footer cell of a column.
345
+ *
346
+ * @example
347
+ * ```html
348
+ * <ng-template kendoExcelExportGroupFooterTemplate let-group let-field="field">
349
+ * Group Footer for {{ field }}
350
+ * </ng-template>
351
+ * ```
352
+ */
353
+ declare class GroupFooterTemplateDirective {
354
+ templateRef: TemplateRef<any>;
355
+ constructor(templateRef: TemplateRef<any>);
356
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupFooterTemplateDirective, [{ optional: true; }]>;
357
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GroupFooterTemplateDirective, "[kendoExcelExportGroupFooterTemplate]", never, {}, {}, never, never, true, never>;
358
+ }
359
+
360
+ /**
361
+ * Represents the footer cell template of the Excel Export column component
362
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/columns#footer-template)).
363
+ * Use this directive to customize the footer cell of a column.
364
+ *
365
+ * @example
366
+ * ```html
367
+ * <ng-template kendoExcelExportFooterTemplate let-column let-columnIndex="columnIndex">
368
+ * Footer for {{ column.field }}
369
+ * </ng-template>
370
+ * ```
371
+ */
372
+ declare class FooterTemplateDirective {
373
+ templateRef: TemplateRef<any>;
374
+ constructor(templateRef: TemplateRef<any>);
375
+ static ɵfac: i0.ɵɵFactoryDeclaration<FooterTemplateDirective, [{ optional: true; }]>;
376
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FooterTemplateDirective, "[kendoExcelExportFooterTemplate]", never, {}, {}, never, never, true, never>;
377
+ }
378
+
379
+ /**
380
+ * Represents a column in the Kendo UI Excel Export component for Angular.
381
+ * Use this component to define the structure and options for each column.
382
+ *
383
+ * @example
384
+ * ```html
385
+ * <kendo-excelexport-column field="ProductName"></kendo-excelexport-column>
386
+ * ```
387
+ */
388
+ declare class ColumnComponent extends ColumnBase {
389
+ /**
390
+ * Specifies the field that the column displays.
391
+ */
392
+ set field(value: string);
393
+ get field(): string;
394
+ /**
395
+ * Specifies options for the column's data cells
396
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/cells#data-cells)).
397
+ */
398
+ set cellOptions(value: CellOptions);
399
+ get cellOptions(): CellOptions;
400
+ /**
401
+ * Specifies options for the group header cells of the column
402
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/cells#header-cells)).
403
+ */
404
+ set groupHeaderCellOptions(value: CellOptions);
405
+ get groupHeaderCellOptions(): CellOptions;
406
+ /**
407
+ * Specifies options for the group footer cells of the column
408
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/cells#group-footer-cells)).
409
+ */
410
+ set groupFooterCellOptions(value: CellOptions);
411
+ get groupFooterCellOptions(): CellOptions;
412
+ /**
413
+ * Specifies options for the footer cell of the column
414
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/cells#footer-cells)).
415
+ */
416
+ set footerCellOptions(value: CellOptions);
417
+ get footerCellOptions(): CellOptions;
418
+ /**
419
+ * @hidden
420
+ */
421
+ groupHeaderTemplate: GroupHeaderTemplateDirective;
422
+ /**
423
+ * @hidden
424
+ */
425
+ groupHeaderColumnTemplate: GroupHeaderColumnTemplateDirective;
426
+ /**
427
+ * @hidden
428
+ */
429
+ groupFooterTemplate: GroupFooterTemplateDirective;
430
+ /**
431
+ * @hidden
432
+ */
433
+ footerTemplate: FooterTemplateDirective;
434
+ private _field;
435
+ private _cellOptions;
436
+ private _groupHeaderCellOptions;
437
+ private _groupFooterCellOptions;
438
+ private _footerCellOptions;
439
+ constructor(parent?: ColumnBase);
440
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnComponent, [{ optional: true; host: true; skipSelf: true; }]>;
441
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnComponent, "kendo-excelexport-column", never, { "field": { "alias": "field"; "required": false; }; "cellOptions": { "alias": "cellOptions"; "required": false; }; "groupHeaderCellOptions": { "alias": "groupHeaderCellOptions"; "required": false; }; "groupFooterCellOptions": { "alias": "groupFooterCellOptions"; "required": false; }; "footerCellOptions": { "alias": "footerCellOptions"; "required": false; }; }, {}, ["groupHeaderTemplate", "groupHeaderColumnTemplate", "groupFooterTemplate", "footerTemplate"], never, true, never>;
442
+ }
443
+
444
+ /**
445
+ * Represents a group of columns in the Kendo UI Excel Export component.
446
+ * Use this component to organize columns into groups.
447
+ *
448
+ * @example
449
+ * ```html
450
+ * <kendo-excelexport-column-group>
451
+ * <kendo-excelexport-column field="ProductName"></kendo-excelexport-column>
452
+ * <kendo-excelexport-column field="UnitPrice"></kendo-excelexport-column>
453
+ * </kendo-excelexport-column-group>
454
+ * ```
455
+ */
456
+ declare class ColumnGroupComponent extends ColumnBase {
457
+ parent?: ColumnBase;
458
+ constructor(parent?: ColumnBase);
459
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnGroupComponent, [{ optional: true; host: true; skipSelf: true; }]>;
460
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnGroupComponent, "kendo-excelexport-column-group", never, {}, {}, never, never, true, never>;
461
+ }
462
+
463
+ /**
464
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi']) definition for the Excel Export component.
465
+ *
466
+ * Use this module to enable Excel export features in your application.
467
+ *
468
+ * @example
469
+ * ```typescript
470
+ * import { ExcelExportModule } from '@progress/kendo-angular-excel-export';
471
+ * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
472
+ * import { NgModule } from '@angular/core';
473
+ * import { AppComponent } from './app.component';
474
+ *
475
+ * @NgModule({
476
+ * declarations: [AppComponent],
477
+ * imports: [BrowserModule, ExcelExportModule],
478
+ * bootstrap: [AppComponent]
479
+ * })
480
+ * export class AppModule {}
481
+ *
482
+ * platformBrowserDynamic().bootstrapModule(AppModule);
483
+ * ```
484
+ */
485
+ declare class ExcelExportModule {
486
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExcelExportModule, never>;
487
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ExcelExportModule, never, [typeof ExcelExportComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof FooterTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupHeaderTemplateDirective], [typeof ExcelExportComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof FooterTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupHeaderTemplateDirective]>;
488
+ static ɵinj: i0.ɵɵInjectorDeclaration<ExcelExportModule>;
489
+ }
490
+
491
+ /**
492
+ *
493
+ * @hidden
494
+ */
495
+ declare const workbookOptions: (options: any) => WorkbookOptions;
496
+ /**
497
+ * @hidden
498
+ */
499
+ declare const toDataURL: (options: WorkbookOptions) => Promise<string>;
500
+ /**
501
+ * @hidden
502
+ */
503
+ declare const isWorkbookOptions: (value: any) => boolean;
504
+
505
+ /**
506
+ * Use this utility array to access all `@progress/kendo-angular-excel-export` related components and directives.
507
+ */
508
+ declare const KENDO_EXCELEXPORT: readonly [typeof ExcelExportComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof FooterTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupHeaderTemplateDirective];
509
+
510
+ export { ColumnBase, ColumnComponent, ColumnGroupComponent, ExcelExportComponent, ExcelExportModule, FooterTemplateDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderTemplateDirective, KENDO_EXCELEXPORT, isWorkbookOptions, toDataURL, workbookOptions };
511
+ export type { CellOptions, ExcelExportData };
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1783511515,
11
- "version": "24.2.2",
10
+ "publishDate": 1785317873,
11
+ "version": "25.0.0-develop.12",
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-excel-export",
3
- "version": "24.2.2",
3
+ "version": "25.0.0-develop.12",
4
4
  "description": "Kendo UI for Angular Excel Export component",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,23 +19,23 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1783511515,
22
+ "publishDate": 1785317873,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
26
26
  "peerDependencies": {
27
- "@angular/animations": "19 - 22",
28
- "@angular/common": "19 - 22",
29
- "@angular/core": "19 - 22",
30
- "@angular/platform-browser": "19 - 22",
27
+ "@angular/animations": "20 - 22",
28
+ "@angular/common": "20 - 22",
29
+ "@angular/core": "20 - 22",
30
+ "@angular/platform-browser": "20 - 22",
31
31
  "@progress/kendo-licensing": "^1.11.0",
32
- "@progress/kendo-angular-common": "24.2.2",
33
- "@progress/kendo-angular-l10n": "24.2.2",
32
+ "@progress/kendo-angular-common": "25.0.0-develop.12",
33
+ "@progress/kendo-angular-l10n": "25.0.0-develop.12",
34
34
  "rxjs": "^6.5.3 || ^7.0.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "tslib": "^2.3.1",
38
- "@progress/kendo-angular-schematics": "24.2.2",
38
+ "@progress/kendo-angular-schematics": "25.0.0-develop.12",
39
39
  "@progress/kendo-file-saver": "^1.0.0",
40
40
  "@progress/kendo-intl": "^3.0.0",
41
41
  "@progress/kendo-ooxml": "^1.9.0"
@@ -1,48 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { QueryList } from '@angular/core';
6
- import { CellOptions } from '../ooxml/cell-options.interface';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export declare class ColumnBase {
12
- parent?: ColumnBase;
13
- /**
14
- * The title of the column.
15
- */
16
- title: string;
17
- /**
18
- * The width of the column in pixels.
19
- */
20
- width: number;
21
- /**
22
- * Toggles the locked (frozen) state of the column ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/columns#locked-state)).
23
- *
24
- * @default false
25
- */
26
- locked: boolean;
27
- /**
28
- * Sets the visibility of the column ([see example](https://www.telerik.com/kendo-angular-ui/components/excel-export/columns#hidden-state)).
29
- *
30
- * @default false
31
- */
32
- hidden: boolean;
33
- /**
34
- * The options of the column header cell.
35
- */
36
- headerCellOptions: CellOptions;
37
- /**
38
- * @hidden
39
- */
40
- children: QueryList<ColumnBase>;
41
- /**
42
- * @hidden
43
- */
44
- get level(): number;
45
- constructor(parent?: ColumnBase);
46
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnBase, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBase, "ng-component", never, { "title": { "alias": "title"; "required": false; }; "width": { "alias": "width"; "required": false; }; "locked": { "alias": "locked"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "headerCellOptions": { "alias": "headerCellOptions"; "required": false; }; }, {}, ["children"], never, true, never>;
48
- }
@@ -1,24 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ColumnBase } from './column-base';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * Represents a group of columns in the Kendo UI Excel Export component.
9
- * Use this component to organize columns into groups.
10
- *
11
- * @example
12
- * ```html
13
- * <kendo-excelexport-column-group>
14
- * <kendo-excelexport-column field="ProductName"></kendo-excelexport-column>
15
- * <kendo-excelexport-column field="UnitPrice"></kendo-excelexport-column>
16
- * </kendo-excelexport-column-group>
17
- * ```
18
- */
19
- export declare class ColumnGroupComponent extends ColumnBase {
20
- parent?: ColumnBase;
21
- constructor(parent?: ColumnBase);
22
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnGroupComponent, [{ optional: true; host: true; skipSelf: true; }]>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnGroupComponent, "kendo-excelexport-column-group", never, {}, {}, never, never, true, never>;
24
- }