Skip to content

Commit e4fada2

Browse files
committed
fix(row-island): change actionStripComponents visibility to public.
1 parent e350400 commit e4fada2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,16 @@ export class IgxRowIslandComponent extends IgxRowIsland {
5555
@Output()
5656
public columnsAutogenerated = new EventEmitter<IColumnsAutoGeneratedEventArgs>();
5757

58+
/** @hidden @internal */
59+
/* blazorInclude */
5860
// TODO(api-analyzer): Shouldn't need all tags to copy from base or hidden/internal due to include tag
5961
/* contentChildren */
6062
/* blazorTreatAsCollection */
6163
/* blazorCollectionName: ActionStripCollection */
6264
/* blazorCollectionItemName: ActionStrip */
6365
/* ngQueryListName: actionStripComponents */
6466
@ContentChildren(IgxActionStripToken, { read: IgxActionStripToken, descendants: false })
65-
protected override actionStripComponents: QueryList<IgxActionStripToken>;
67+
public override actionStripComponents: QueryList<IgxActionStripToken>;
6668

6769
protected override autogenerateColumns() {
6870
super.autogenerateColumns();

0 commit comments

Comments
 (0)