UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

21 lines (20 loc) 804 B
import * as React from 'react'; export declare type HorizontalAlignment = 'start' | 'center' | 'end' | 'space-around' | 'space-between' | 'space-evenly'; export declare type VerticalAlignment = 'start' | 'center' | 'end'; export declare type Overflow = 'visible' | 'auto' | 'hidden'; export interface IExampleState { stackWidth: number; containerHeight: number; horizontalAlignment: HorizontalAlignment; verticalAlignment: VerticalAlignment; overflow: Overflow; } export declare class HorizontalStackWrapAdvancedExample extends React.Component<{}, IExampleState> { constructor(props: {}); render(): JSX.Element; private _onWidthChange; private _onHeightChange; private _onHorizontalAlignChange; private _onVerticalAlignChange; private _onOverflowChange; }