UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

22 lines (21 loc) 743 B
/// <reference types="react" /> import * as React from 'react'; import { IComboBoxOption } from 'office-ui-fabric-react/lib/ComboBox'; import './ComboBox.Basic.Example.scss'; export declare class ComboBoxBasicExample extends React.Component<{}, { options: IComboBoxOption[]; selectedOptionKey?: string | number; value?: string; }> { private _testOptions; private _fontMapping; private scaleOptions; private _basicCombobox; constructor(props: {}); render(): JSX.Element; private _onRenderFontOption(item); private _getOptions(currentOptions); private _onChanged(option, index, value); private _basicComboBoxOnClick(); private _basicComboBoxComponentRef(component); }