UNPKG

azure-devops-ui

Version:

React components for building web UI in Azure DevOps

23 lines (22 loc) 776 B
import "../../CommonImports"; import "../../Core/core.css"; import "./Panel.css"; import * as React from "react"; import { ICustomPanelProps, IPanel } from '../../Components/Panel/Panel.Props'; interface ICustomPanelState { isDisplayed: boolean; } export declare class CustomPanel extends React.Component<ICustomPanelProps, ICustomPanelState> implements IPanel { static defaultProps: { escDismiss: boolean; lightDismiss: boolean; modal: boolean; }; static contextType: React.Context<import("../../Core/Util/Screen").IScreenContext>; private calloutContentRef; constructor(props: ICustomPanelProps); render(): JSX.Element; animateOut(): Promise<void>; private defaultActiveElement; } export {};