Skip to content

Commit ee911cf

Browse files
committed
chore(grid): apply review comments
1 parent 8c12f6b commit ee911cf

File tree

3 files changed

+5
-48
lines changed

3 files changed

+5
-48
lines changed

projects/igniteui-angular/src/lib/grids/columns/column.component.ts

Lines changed: 3 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -430,42 +430,15 @@ export class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnTy
430430
@Output()
431431
public expandedChange = new EventEmitter<boolean>();
432432

433-
/**
434-
* Emitted when the column property `collapsible` changes.
435-
*
436-
* ```html
437-
* <igx-column (collapsibleChange)="collapsibleChange($event)">
438-
* </igx-column>
439-
* ```
440-
*
441-
* @memberof IgxColumnComponent
442-
*/
433+
/** @hidden */
443434
@Output()
444435
public collapsibleChange = new EventEmitter<boolean>();
445436

446-
/**
447-
* Emitted when the column property `visibleWhenCollapsed` changes.
448-
*
449-
* ```html
450-
* <igx-column (visibleWhenCollapsedChange)="visibleWhenCollapsedChange($event)">
451-
* </igx-column>
452-
* ```
453-
*
454-
* @memberof IgxColumnComponent
455-
*/
437+
/** @hidden */
456438
@Output()
457439
public visibleWhenCollapsedChange = new EventEmitter<boolean>();
458440

459-
/**
460-
* Emitted when the column changed.
461-
*
462-
* ```html
463-
* <igx-column (columnChange)="columnChange($event)">
464-
* </igx-column>
465-
* ```
466-
*
467-
* @memberof IgxColumnComponent
468-
*/
441+
/** @hidden @internal */
469442
@Output()
470443
public columnChange = new EventEmitter<void>();
471444

projects/igniteui-angular/src/lib/grids/filtering/excel-style/excel-style-filtering.component.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,7 @@ export class IgxGridExcelStyleFilteringComponent extends BaseFilteringComponent
116116
public sortingChanged = new EventEmitter();
117117

118118
/**
119-
* Emitted when the column changed.
120-
*
121-
* ```html
122-
* <igx-grid-excel-style-filtering (columnChange)="columnChange($event)">
123-
* </igx-grid-excel-style-filtering>
124-
* ```
125-
*
126-
* @memberof IgxGridExcelStyleFilteringComponent
119+
* @hidden @internal
127120
*/
128121
@Output()
129122
public columnChange = new EventEmitter<ColumnType>();

projects/igniteui-angular/src/lib/grids/hierarchical-grid/row-island.component.ts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -184,16 +184,7 @@ export class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirective
184184
protected override actionStripComponents: QueryList<IgxActionStripToken>;
185185

186186
/**
187-
* Event emitted when a layout of the row island is changed.
188-
* ```html
189-
* <igx-hierarchical-grid [data]="Data" [autoGenerate]="true">
190-
* <igx-row-island [key]="'childData'" (layoutChange)="layoutChange($event)" #rowIsland>
191-
* <!-- ... -->
192-
* </igx-row-island>
193-
* </igx-hierarchical-grid>
194-
* ```
195-
*
196-
* @memberof IgxRowIslandComponent
187+
* @hidden
197188
*/
198189
@Output()
199190
public layoutChange = new EventEmitter<any>();

0 commit comments

Comments
 (0)