UNPKG

@jupyter/web-components

Version:

A component library for building extensions in Jupyter frontends.

22 lines (21 loc) 1.02 kB
import { BaseProgress, ProgressRingOptions } from '@microsoft/fast-foundation'; import { progressRingStyles as styles } from './progress-ring.styles.js'; /** * Progress ring class * * @public * @tagname jp-progress-ring */ declare class JupyterProgressRing extends BaseProgress { } /** * A function that returns a {@link @microsoft/fast-foundation#BaseProgress} registration for configuring the component with a DesignSystem. * Implements {@link @microsoft/fast-foundation#progressRingTemplate} * * * @public * @remarks * Generates HTML Element: `<jp-progress-ring>` */ export declare const jpProgressRing: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<ProgressRingOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<ProgressRingOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>; export { JupyterProgressRing as ProgressRing, styles as progressRingStyles };