office-ui-fabric-react
Version: 
Reusable React components for building experiences for Office 365.
21 lines (20 loc) • 761 B
TypeScript
import { BaseComponent } from 'office-ui-fabric-react/lib/Utilities';
import { IContextualMenuItem } from 'office-ui-fabric-react/lib/ContextualMenu';
export interface IOverflowData {
    primary: IContextualMenuItem[];
    overflow: IContextualMenuItem[];
    cacheKey?: string;
}
export interface IResizeGroupOverflowSetExampleState {
    short: boolean;
    numberOfItems: number;
    buttonsChecked: boolean;
    cachingEnabled: boolean;
}
export declare class ResizeGroupOverflowSetExample extends BaseComponent<any, IResizeGroupOverflowSetExampleState> {
    constructor(props: any);
    render(): JSX.Element;
    private onCachingEnabledChanged(_, checked);
    private onButtonsCheckedChanged(_, checked);
    private onNumberOfItemsChanged(option);
}