UNPKG

@itwin/presentation-components

Version:

React components based on iTwin.js Presentation library

25 lines 871 B
import { PureComponent } from "react"; import { PropertyEditorBase, PropertyEditorProps, TypeEditor } from "@itwin/components-react"; /** * Editor for numeric properties. * * @internal */ export declare class NumericPropertyEditorBase extends PropertyEditorBase { get containerHandlesTab(): boolean; get reactNode(): React.ReactNode; } /** * Component that renders numeric property target input for numeric value editing. * * @internal */ export declare class NumericPropertyEditor extends PureComponent<PropertyEditorProps> implements TypeEditor { private _ref; getPropertyValue(): Promise<import("@itwin/appui-abstract").PropertyValue | undefined>; get htmlElement(): HTMLElement | null; get hasFocus(): boolean; /** @internal */ render(): import("react").JSX.Element | null; } //# sourceMappingURL=NumericPropertyEditor.d.ts.map