Skip to content

Commit 0d53ff4

Browse files
authored
Merge pull request #14434 from IgniteUI/dpetev/exporter-api-cleanup
2 parents 445b518 + 5f40da0 commit 0d53ff4

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

projects/igniteui-angular/src/lib/grids/common/events.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface IGridCellEventArgs extends IBaseEventArgs {
2424
/** Represents the grid cell that triggered the event. */
2525
cell: CellType;
2626
/**
27-
* Represents the original event that ocurred
27+
* Represents the original event that occurred
2828
* Examples of such events include: selecting, clicking, double clicking, etc.
2929
*/
3030
event: Event;
@@ -35,7 +35,7 @@ export interface IGridRowEventArgs extends IBaseEventArgs {
3535
/** Represents the grid row that triggered the event. */
3636
row: RowType;
3737
/**
38-
* Represents the original event that ocurred
38+
* Represents the original event that occurred
3939
* Examples of such events include: selecting, clicking, double clicking, etc.
4040
*/
4141
event: Event;

projects/igniteui-angular/src/lib/grids/toolbar/grid-toolbar.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ export class IgxGridToolbarComponent implements OnDestroy {
4747
/**
4848
* Gets/sets the grid component for the toolbar component.
4949
*
50-
* @deprecated since version 17.1.0.
51-
* No longer required to be set for the Hierarchical Grid child grid template
50+
* @deprecated since version 17.1.0. No longer required to be set for the Hierarchical Grid child grid template
5251
*
5352
* @remarks
5453
* Usually you should not set this property in the context of the default grid/tree grid.

projects/igniteui-angular/src/lib/services/exporter-common/base-export-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,7 @@ export abstract class IgxBaseExporter {
12751275
return result;
12761276
}
12771277

1278-
public addPivotRowHeaders(grid: any) {
1278+
private addPivotRowHeaders(grid: any) {
12791279
if (grid?.pivotUI?.showRowHeaders) {
12801280
const headersList = this._ownersMap.get(DEFAULT_OWNER);
12811281
const enabledRows = grid.pivotConfiguration.rows.filter(r => r.enabled).map((r, index) => ({ name: r.displayName || r.memberName, level: index }));
@@ -1298,7 +1298,7 @@ export abstract class IgxBaseExporter {
12981298
}
12991299
}
13001300

1301-
public addPivotGridColumns(grid: any) {
1301+
private addPivotGridColumns(grid: any) {
13021302
if (grid.nativeElement.tagName.toLowerCase() !== 'igx-pivot-grid') {
13031303
return;
13041304
}

0 commit comments

Comments
 (0)