office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
28 lines (27 loc) • 885 B
TypeScript
/// <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;
optionsMulti: IComboBoxOption[];
selectedOptionKeys?: string[];
valueMulti?: string;
}> {
private _testOptions;
private _fontMapping;
private scaleOptions;
private _basicCombobox;
constructor(props: {});
render(): JSX.Element;
private _onRenderFontOption;
private _getOptions;
private _getOptionsMulti;
private _onChange;
private _onChangeMulti;
private _updateSelectedOptionKeys;
private _basicComboBoxOnClick;
private _basicComboBoxComponentRef;
}