UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

55 lines (54 loc) 1.69 kB
import * as React from 'react'; import { IRefObject, IRenderFunction } from '../../Utilities'; import { IKeytipProps } from '../../Keytip'; export interface IPivotItemProps extends React.HTMLAttributes<HTMLDivElement> { /** * Gets the component ref. */ componentRef?: IRefObject<{}>; /** * The text displayed of each pivot link - renaming to 'headerText'. * @deprecated */ linkText?: string; /** * The text displayed of each pivot link. */ headerText?: string; /** * Props for the header command button supporting native props - data-* and aria-* - for each pivot header/link element */ headerButtonProps?: { [key: string]: string | number | boolean; }; /** * An required key to uniquely identify a pivot item. * * Note: The 'key' from react props cannot be used inside component. */ itemKey?: string; /** * The aria label of each pivot link which will read by screen reader instead of linkText. * * Note that unless you have compelling requirements you should not override aria-label. */ ariaLabel?: string; /** * An optional item count that gets displayed just after the linkText(itemCount) * * Example: completed(4) */ itemCount?: number; /** * An optional icon to show next to the pivot link. */ itemIcon?: string; /** * Optional custom renderer for the pivot item link */ onRenderItemLink?: IRenderFunction<IPivotItemProps>; /** * Optional keytip for this PivotItem */ keytipProps?: IKeytipProps; }