UNPKG

@jupyter-notebook/web-components

Version:

A component library for building extensions in Jupyter frontends.

21 lines (20 loc) 1.05 kB
import { NumberFieldOptions } from '@microsoft/fast-foundation'; import { numberFieldStyles as styles } from './number-field.styles'; /** * A function that returns a {@link @microsoft/fast-foundation#NumberField} registration for configuring the component with a DesignSystem. * Implements {@link @microsoft/fast-foundation#numberFieldTemplate} * * * @public * @remarks * Generates HTML Element: `<jp-number-field>` * * {@link https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/delegatesFocus | delegatesFocus} */ export declare const jpNumberField: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<NumberFieldOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<NumberFieldOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>; export { NumberField, NumberFieldAppearance } from '@microsoft/fast-components'; /** * Styles for NumberField * @public */ export { styles as numberFieldStyles };