UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

56 lines (55 loc) 2.43 kB
import * as React from 'react'; import { GridActionsBaseDirective } from "./GridActionsBaseDirective"; import { ReactRenderer, PortalManager } from "igniteui-react-core"; import { ContentChildrenManager } from "igniteui-react-core"; export declare class IgrGridActionsBaseDirective<P extends IIgrGridActionsBaseDirectiveProps = IIgrGridActionsBaseDirectiveProps> extends React.Component<P & Omit<React.HTMLAttributes<HTMLElement>, keyof P>, {}> { protected createImplementation(): GridActionsBaseDirective; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): GridActionsBaseDirective; /** * @hidden */ static _createFromInternal(internal: any): IgrGridActionsBaseDirective; protected _renderer: ReactRenderer; protected _portalManager: PortalManager; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(props: P & Omit<React.HTMLAttributes<HTMLElement>, keyof P>); componentDidMount(): void; shouldComponentUpdate(nextProps: any, nextState: any): boolean; render(): React.DOMElement<{ ref: (ref: any) => void; id: (P & Omit<React.HTMLAttributes<HTMLElement>, keyof P>)["id"]; class: (P & Omit<React.HTMLAttributes<HTMLElement>, keyof P>)["className"]; style: {}; children: any[]; }, any>; protected _elRef: HTMLElement; protected _getMainRef(ref: any): void; get asMenuItems(): boolean; set asMenuItems(v: boolean); get name(): string; set name(v: string); findByName(name: string): any; protected __p: string; protected _hasUserValues: Set<string>; protected get hasUserValues(): Set<string>; protected __m(propertyName: string): void; protected _stylingContainer: any; protected _stylingParent: any; protected _inStyling: boolean; protected _styling(container: any, component: any, parent?: any): void; setNativeElement(element: any): void; } export interface IIgrGridActionsBaseDirectiveProps { children?: React.ReactNode; id?: string | undefined; className?: string | undefined; style?: React.CSSProperties | undefined; asMenuItems?: boolean | string; name?: string; }