UNPKG

1.08 kBTypeScriptView Raw
1import * as React from 'react';
2import { IFacepileProps } from './Facepile.types';
3/**
4 * FacePile with no default styles.
5 * [Use the `styles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Component-Styling)
6 */
7export declare class FacepileBase extends React.Component<IFacepileProps, {}> {
8 static defaultProps: IFacepileProps;
9 private _ariaDescriptionId;
10 private _classNames;
11 constructor(props: IFacepileProps);
12 render(): JSX.Element;
13 protected onRenderAriaDescription(): "" | JSX.Element | undefined;
14 private _onRenderVisiblePersonas;
15 private _getPersonaControl;
16 private _getPersonaCoinControl;
17 private _getElementWithOnClickEvent;
18 private _getElementWithoutOnClickEvent;
19 private _getElementProps;
20 private _getOverflowElement;
21 private _getDescriptiveOverflowElement;
22 private _getIconElement;
23 private _getAddNewElement;
24 private _onPersonaClick;
25 private _onPersonaMouseMove;
26 private _onPersonaMouseOut;
27 private _renderInitials;
28 private _renderInitialsNotPictured;
29}