igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
80 lines (52 loc) • 1.92 kB
TypeScript
import { IgcGridActionsBaseDirective } from './igc-grid-actions-base-directive';
import { IgcActionStripResourceStrings } from './igc-action-strip-resource-strings';
/* blazorElement */
/* jsonAPIManageItemInMarkup */
/* jsonAPIManageCollectionInMarkup */
/* wcElementTag: igc-action-strip */
/* blazorIndirectRender */
/* singleInstanceIdentifier */
/* contentParent: GridBaseDirective */
/* contentParent: RowIsland */
/* contentParent: HierarchicalGrid */
/**
* Action Strip provides templatable area for one or more actions.
*/
export declare class IgcActionStripComponent extends HTMLElement
{
/* blazorSuppress */
static readonly tagName: string;
/* blazorSuppress */
static register(): void;
/* blazorInclude */
/* contentChildren */
/* blazorTreatAsCollection */
/* blazorCollectionName: GridActionsBaseDirectiveCollection */
/**
* ActionButton as ContentChildren inside the Action Strip
* @hidden
* @internal
*/
public set actionButtons(value: IgcGridActionsBaseDirective[]);
public get actionButtons(): IgcGridActionsBaseDirective[];
/**
* Gets/Sets the visibility of the Action Strip.
* Could be used to set if the Action Strip will be initially hidden.
*/
public set hidden(value: boolean);
public get hidden(): boolean;
/**
* Gets/Sets the resource strings.
*/
public set resourceStrings(value: IgcActionStripResourceStrings);
public get resourceStrings(): IgcActionStripResourceStrings;
/**
* Showing the Action Strip and appending it the specified context element.
* @param context
*/
public show(context?: any): void;
/**
* Hiding the Action Strip and removing it from its current context element.
*/
public hide(): void;
}