UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

16 lines 668 B
import * as React from 'react'; import { IPlaceholderWithCalloutProps, IPlaceholderWithCalloutState } from './IPlaceholderWithCallout'; /** * PlaceholderWithCallout component. * Displays a label and a callout */ export default class PlaceholderWithCallout extends React.Component<IPlaceholderWithCalloutProps, IPlaceholderWithCalloutState> { private _infoIcon; constructor(props: IPlaceholderWithCalloutProps, state: IPlaceholderWithCalloutState); render(): JSX.Element; private _onCalloutDismiss; private _onInfoIconMouseOver; private _onInfoIconMouseOut; private _onInfoIconClick; } //# sourceMappingURL=PlaceholderWithCallout.d.ts.map