office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
25 lines (24 loc) • 917 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;
onGrowDataEnabled: boolean;
}
export declare class ResizeGroupOverflowSetExample extends BaseComponent<{}, IResizeGroupOverflowSetExampleState> {
constructor(props: {});
render(): JSX.Element;
private onReduceData(currentData);
private onGrowData(currentData);
private onCachingEnabledChanged(_, checked);
private onGrowDataEnabledChanged(_, checked);
private onButtonsCheckedChanged(_, checked);
private onNumberOfItemsChanged(option);
}