@progress/kendo-react-excel-export 13.3.0-develop.9 → 13.4.0-develop.1

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.
@@ -0,0 +1,27 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ExcelExportColumnProps } from '../ExcelExportColumn.js';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the props that will be passed to the ExcelExportFooter component when the template is rendered.
12
+ */
13
+ export interface ExcelExportFooterProps {
14
+ /**
15
+ * The column configuration object for the current column.
16
+ */
17
+ column: ExcelExportColumnProps;
18
+ /**
19
+ * The index of the current column within the grid.
20
+ */
21
+ columnIndex: number;
22
+ }
23
+ /**
24
+ * Represents the footer of column.
25
+ */
26
+ export declare class ExcelExportFooter extends React.PureComponent<ExcelExportFooterProps> {
27
+ }
@@ -0,0 +1,36 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ExcelExportColumnProps } from '../ExcelExportColumn.js';
9
+ import { AggregateResult, GroupResult } from '@progress/kendo-data-query';
10
+ import * as React from 'react';
11
+ /**
12
+ * Represents the props that will be passed to the ExcelExportGroupFooter component when the template is rendered.
13
+ */
14
+ export interface ExcelExportGroupFooterProps {
15
+ /**
16
+ * The field name by which the data is grouped.
17
+ */
18
+ field: string;
19
+ /**
20
+ * The column configuration object for the current column.
21
+ */
22
+ column: ExcelExportColumnProps;
23
+ /**
24
+ * The aggregate calculation results for the current group.
25
+ */
26
+ aggregates: AggregateResult;
27
+ /**
28
+ * The group data and metadata for the current group.
29
+ */
30
+ group: GroupResult;
31
+ }
32
+ /**
33
+ * Represents the footer of the column group.
34
+ */
35
+ export declare class ExcelExportGroupFooter extends React.PureComponent<ExcelExportGroupFooterProps> {
36
+ }
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { AggregateResult, GroupResult } from '@progress/kendo-data-query';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the props that will be passed to the ExcelExportGroupHeader component when the template is rendered.
12
+ */
13
+ export interface ExcelExportGroupHeaderProps {
14
+ /**
15
+ * The field name by which the data is grouped.
16
+ */
17
+ field: string;
18
+ /**
19
+ * The aggregate calculation results for the current group.
20
+ */
21
+ aggregates: AggregateResult;
22
+ /**
23
+ * The group data and metadata for the current group.
24
+ */
25
+ group: GroupResult;
26
+ /**
27
+ * The value that identifies the current group.
28
+ */
29
+ value: any;
30
+ }
31
+ /**
32
+ * Represents the header of the column group.
33
+ */
34
+ export declare class ExcelExportGroupHeader extends React.PureComponent<ExcelExportGroupHeaderProps> {
35
+ }