UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

34 lines 855 B
import { ISpinnerProps } from '@fluentui/react/lib/Spinner'; export interface IPropertyPaneSpinner { /** * Spinner background color */ bgColor?: string; /** * Class name */ className?: string; /** * Office UI Fabric spinner properties */ spinnerProps?: ISpinnerProps; } export declare class PropertyPaneHelpers { private static propertyPaneElm; private static spinnerElm; /** * Add a spinner for the `loadPropertyPaneResources` method */ static setSpinner(props?: IPropertyPaneSpinner): void; /** * Clear the spinner from the property pane */ static clearSpinner(delay?: number): void; /** * Waiting until an element exists * * @param selector */ private static waitForElement; } //# sourceMappingURL=PropertyPaneHelpers.d.ts.map