igniteui-angular 13.0.6 → 13.0.7
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/lib/combo/combo.common.mjs +2 -2
- package/esm2020/lib/grids/common/grid.interface.mjs +1 -1
- package/esm2020/lib/grids/grid-public-row.mjs +14 -2
- package/esm2020/lib/grids/summaries/grid-summary.service.mjs +2 -1
- package/esm2020/lib/grids/tree-grid/tree-grid.grouping.pipe.mjs +8 -4
- package/esm2020/lib/services/excel/excel-files.mjs +3 -3
- package/esm2020/lib/services/excel/worksheet-data.mjs +7 -3
- package/fesm2015/igniteui-angular.mjs +29 -8
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +29 -8
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/grids/common/grid.interface.d.ts +1 -1
- package/lib/grids/grid-public-row.d.ts +8 -0
- package/lib/services/excel/worksheet-data.d.ts +2 -0
- package/package.json +1 -1
|
@@ -25,6 +25,14 @@ declare abstract class BaseRow implements RowType {
|
|
|
25
25
|
* ```
|
|
26
26
|
*/
|
|
27
27
|
get key(): any;
|
|
28
|
+
/**
|
|
29
|
+
* Gets if this represents add row UI
|
|
30
|
+
*
|
|
31
|
+
* ```typescript
|
|
32
|
+
* let isAddRow = row.addRowUI;
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
get addRowUI(): boolean;
|
|
28
36
|
/**
|
|
29
37
|
* The data record that populates the row.
|
|
30
38
|
*
|
|
@@ -15,11 +15,13 @@ export declare class WorksheetData {
|
|
|
15
15
|
private _rowCount;
|
|
16
16
|
private _dataDictionary;
|
|
17
17
|
private _isSpecialData;
|
|
18
|
+
private _hasMultiColumnHeader;
|
|
18
19
|
constructor(_data: IExportRecord[], options: IgxExcelExporterOptions, sort: any, columnCount: number, rootKeys: string[], indexOfLastPinnedColumn: number, columnWidths: number[], owner: IColumnList, owners: Map<any, IColumnList>);
|
|
19
20
|
get data(): IExportRecord[];
|
|
20
21
|
get rowCount(): number;
|
|
21
22
|
get isEmpty(): boolean;
|
|
22
23
|
get isSpecialData(): boolean;
|
|
23
24
|
get dataDictionary(): WorksheetDataDictionary;
|
|
25
|
+
get hasMultiColumnHeader(): boolean;
|
|
24
26
|
private initializeData;
|
|
25
27
|
}
|
package/package.json
CHANGED