UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

31 lines (30 loc) 999 B
/// <reference types="react" /> import { DirectionalHint } from 'office-ui-fabric-react/lib/common/DirectionalHint'; import { IStyle } from 'office-ui-fabric-react/lib/Styling'; import { BaseComponent } from 'office-ui-fabric-react/lib/Utilities'; export interface ICoachmarkBasicExampleState { isCoachmarkVisible?: boolean; coachmarkPosition: DirectionalHint; } export interface ICoachmarkBasicExampleStyles { /** * Style for the root element in the default enabled/unchecked state. */ root?: IStyle; /** * The example button container */ buttonContainer: IStyle; /** * The dropdown component container */ dropdownContainer: IStyle; } export declare class CoachmarkBasicExample extends BaseComponent<{}, ICoachmarkBasicExampleState> { private _targetButton; constructor(props: {}); render(): JSX.Element; private _onDismiss; private _onDropdownChange; private _onShowMenuClicked; }