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.
@@ -87,7 +87,7 @@ export interface RowType {
87
87
  parent?: RowType;
88
88
  hasChildren?: boolean;
89
89
  treeRow?: ITreeGridRecord;
90
- addRowUI?: any;
90
+ addRowUI?: boolean;
91
91
  focused?: boolean;
92
92
  grid: GridType;
93
93
  onRowSelectorClick?: (event: MouseEvent) => void;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "13.0.6",
3
+ "version": "13.0.7",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",