office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
30 lines (29 loc) • 1.11 kB
TypeScript
import { BaseComponent } from '../../Utilities';
import { IFacepileProps } from './Facepile.types';
/**
* FacePile with no default styles.
* [Use the `styles` API to add your own styles.](https://github.com/OfficeDev/office-ui-fabric-react/wiki/Component-Styling)
*/
export declare class FacepileBase extends BaseComponent<IFacepileProps, {}> {
static defaultProps: IFacepileProps;
private _ariaDescriptionId;
private _classNames;
constructor(props: IFacepileProps);
render(): JSX.Element;
protected onRenderAriaDescription(): "" | JSX.Element | undefined;
private _onRenderVisiblePersonas;
private _getPersonaControl;
private _getPersonaCoinControl;
private _getElementWithOnClickEvent;
private _getElementWithoutOnClickEvent;
private _getElementProps;
private _getOverflowElement;
private _getDescriptiveOverflowElement;
private _getIconElement;
private _getAddNewElement;
private _onPersonaClick;
private _onPersonaMouseMove;
private _onPersonaMouseOut;
private _renderInitials;
private _renderInitialsNotPictured;
}