Skip to content
2 changes: 2 additions & 0 deletions projects/igniteui-angular-elements/src/lib/state.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export interface IGridStateInfo {
/* blazorIndirectRender */
/* singleInstanceIdentifier */
/* contentParent: GridBaseDirective */
/* contentParent: Grid */
/* contentParent: TreeGrid */
/* contentParent: HierarchicalGrid */
/* jsonAPIManageCollectionInMarkup */
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ export class IgxActionStripMenuItemDirective {
/* wcElementTag: igc-action-strip */
/* blazorIndirectRender */
/* singleInstanceIdentifier */
/* contentParent: GridBaseDirective */
/* contentParent: Grid */
/* contentParent: TreeGrid */
/* contentParent: RowIsland */
/* contentParent: HierarchicalGrid */
/**
Expand Down
1 change: 1 addition & 0 deletions projects/igniteui-angular/grids/core/src/common/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ export interface IGridEditDoneEventArgs extends IBaseEventArgs {
* Indicates if the editing consists of adding a new row
*/
isAddRow?: boolean;
/* blazorSuppress */
/**
* Optional
* Indicates if the new value would be valid.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export class IgxPivotDateDimension implements IPivotDimension {
fullDate: true
};

/* treatAsRef */
/**
* Gets/Sets the resource strings.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import { IgxIconService } from 'igniteui-angular/icon';
/* wcElementTag: igc-grid-toolbar */
/* blazorIndirectRender */
/* singleInstanceIdentifier */
/* contentParent: GridBaseDirective */
/* contentParent: Grid */
/* contentParent: TreeGrid */
/* contentParent: RowIsland */
/* contentParent: HierarchicalGrid */
/* jsonAPIManageItemInMarkup */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ import { IgxRowIslandComponent } from './row-island.component';


export interface IGridCreatedEventArgs extends IBaseEventArgs {
/* alternateType: RowIsland */
owner: IgxRowIslandComponent;
parentID: any;
/* alternateType: HierarchicalGrid */
grid: IgxHierarchicalGridComponent;
parentRowData?: any;
}
Original file line number Diff line number Diff line change
Expand Up @@ -326,11 +326,6 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
@HostBinding('attr.role')
public role = 'grid';

/* contentChildren */
/* blazorInclude */
/* blazorTreatAsCollection */
/* blazorCollectionName: RowIslandCollection */
/* ngQueryListName: childLayoutList */
/**
* @hidden
*/
Expand Down Expand Up @@ -564,6 +559,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
return this._hGridSchema;
}

/* blazorSuppress */
/**
* Gets/Sets the resource strings.
*
Expand All @@ -580,7 +576,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
}
}

/* blazorCSSuppress */
/* blazorSuppress */
public override get resourceStrings(): IGridResourceStrings {
return super.resourceStrings;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export class IgxPaginatorContentDirective {
/* wcElementTag: igc-paginator */
/* blazorIndirectRender */
/* singleInstanceIdentifier */
/* contentParent: GridBaseDirective */
/* contentParent: Grid */
/* contentParent: TreeGrid */
/* contentParent: RowIsland */
/* contentParent: HierarchicalGrid */
/* jsonAPIManageCollectionInMarkup */
Expand Down
Loading