UNPKG

@jupyter/web-components

Version:

A component library for building extensions in Jupyter frontends.

33 lines (32 loc) 1.73 kB
import { AnchoredRegion } from '@microsoft/fast-foundation'; import { anchoredRegionStyles as styles } from './anchored-region.styles.js'; /** * Anchored region class * * @public * @tagname jp-anchored-region */ declare class JupyterAnchoredRegion extends AnchoredRegion { } /** * A function that returns a {@link @microsoft/fast-foundation#AnchoredRegion} registration for configuring the component with a DesignSystem. * Implements {@link @microsoft/fast-foundation#anchoredRegionTemplate} * * * @beta * @remarks * Generates HTML Element: `<jp-anchored-region>` */ export declare const jpAnchoredRegion: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ baseName: string; baseClass: typeof AnchoredRegion; template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<AnchoredRegion, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>; styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles>; }> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{ baseName: string; baseClass: typeof AnchoredRegion; template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<AnchoredRegion, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>; styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles>; }, typeof JupyterAnchoredRegion>; export { JupyterAnchoredRegion as AnchoredRegion }; export { styles as anchoredRegionStyles };